← Back to team overview

openlp-core team mailing list archive

[Merge] lp:~crichter/openlp/i18n into lp:openlp

 

rimach has proposed merging lp:~crichter/openlp/i18n into lp:openlp.

Requested reviews:
  OpenLP Core (openlp-core)


implementation of i18n
-- 
https://code.launchpad.net/~crichter/openlp/i18n/+merge/24524
Your team OpenLP Core is subscribed to branch lp:openlp.
=== modified file 'openlp.pyw'
--- openlp.pyw	2010-04-28 17:07:36 +0000
+++ openlp.pyw	2010-04-30 20:10:34 +0000
@@ -37,7 +37,7 @@
 from openlp.core.lib import Receiver
 from openlp.core.resources import qInitResources
 from openlp.core.ui import MainWindow, SplashScreen, ScreenList
-from openlp.core.utils import AppLocation
+from openlp.core.utils import AppLocation, LanguageManager
 
 application_stylesheet = u"""
 QMainWindow::separator
@@ -190,6 +190,11 @@
     qInitResources()
     # Now create and actually run the application.
     app = OpenLP(qt_args)
+    #i18n Set Language
+    language = LanguageManager.get_language()
+    appTranslator = LanguageManager.get_translator(language)
+    app.installTranslator(appTranslator)
+
     sys.exit(app.run())
 
 if __name__ == u'__main__':

=== modified file 'openlp/core/lib/__init__.py'
--- openlp/core/lib/__init__.py	2010-04-27 16:27:57 +0000
+++ openlp/core/lib/__init__.py	2010-04-30 20:10:34 +0000
@@ -35,7 +35,7 @@
 
 log = logging.getLogger(__name__)
 
-def translate(context, text):
+def translate(context, text, comment=None):
     """
     A special shortcut method to wrap around the Qt4 translation functions.
     This abstracts the translation procedure so that we can change it if at a
@@ -48,8 +48,8 @@
     ``text``
         The text to put into the translation tables for translation.
     """
-    return QtGui.QApplication.translate(
-        context, text, None, QtGui.QApplication.UnicodeUTF8)
+    return QtCore.QCoreApplication.translate(context, text,
+                                                     comment)
 
 def get_text_file_string(text_file):
     """

=== modified file 'openlp/core/lib/toolbar.py'
--- openlp/core/lib/toolbar.py	2010-03-21 23:58:01 +0000
+++ openlp/core/lib/toolbar.py	2010-04-30 20:10:34 +0000
@@ -117,10 +117,13 @@
             The title of the icon to search for.
         """
         title = QtCore.QString(title)
-        if self.icons[title]:
-            return self.icons[title]
-        else:
-            log.error(u'getIconFromTitle - no icon for %s' % title)
+        try:
+            if self.icons[title]:
+                return self.icons[title]
+            else:
+                log.error(u'getIconFromTitle - no icon for %s' % title)
+                return QtGui.QIcon()
+        except:
             return QtGui.QIcon()
 
     def makeWidgetsInvisible(self, widgets):

=== modified file 'openlp/core/ui/aboutdialog.py'
--- openlp/core/ui/aboutdialog.py	2010-03-27 16:46:52 +0000
+++ openlp/core/ui/aboutdialog.py	2010-04-30 20:10:34 +0000
@@ -24,27 +24,28 @@
 ###############################################################################
 
 from PyQt4 import QtCore, QtGui
+from openlp.core.lib import translate
 
 class Ui_AboutDialog(object):
-    def setupUi(self, AboutDialog):
-        AboutDialog.setObjectName(u'AboutDialog')
-        AboutDialog.resize(516, 481)
+    def setupUi(self, AboutForm):
+        AboutForm.setObjectName(u'AboutDialog')
+        AboutForm.resize(516, 481)
         LogoIcon = QtGui.QIcon()
         LogoIcon.addPixmap(QtGui.QPixmap(u':/icon/openlp-logo-16x16.png'),
             QtGui.QIcon.Normal, QtGui.QIcon.Off)
-        AboutDialog.setWindowIcon(LogoIcon)
-        self.AboutDialogLayout = QtGui.QVBoxLayout(AboutDialog)
-        self.AboutDialogLayout.setSpacing(8)
-        self.AboutDialogLayout.setMargin(8)
-        self.AboutDialogLayout.setObjectName(u'AboutDialogLayout')
-        self.LogoLabel = QtGui.QLabel(AboutDialog)
+        AboutForm.setWindowIcon(LogoIcon)
+        self.AboutFormLayout = QtGui.QVBoxLayout(AboutForm)
+        self.AboutFormLayout.setSpacing(8)
+        self.AboutFormLayout.setMargin(8)
+        self.AboutFormLayout.setObjectName(u'AboutFormLayout')
+        self.LogoLabel = QtGui.QLabel(AboutForm)
         self.LogoLabel.setPixmap(
             QtGui.QPixmap(u':/graphics/openlp-about-logo.png'))
         self.LogoLabel.setScaledContents(False)
         self.LogoLabel.setIndent(0)
         self.LogoLabel.setObjectName(u'LogoLabel')
-        self.AboutDialogLayout.addWidget(self.LogoLabel)
-        self.AboutNotebook = QtGui.QTabWidget(AboutDialog)
+        self.AboutFormLayout.addWidget(self.LogoLabel)
+        self.AboutNotebook = QtGui.QTabWidget(AboutForm)
         self.AboutNotebook.setObjectName(u'AboutNotebook')
         self.AboutTab = QtGui.QWidget()
         self.AboutTab.setObjectName(u'AboutTab')
@@ -79,8 +80,8 @@
         self.LicenseTextEdit.setObjectName(u'LicenseTextEdit')
         self.LicenseTabLayout.addWidget(self.LicenseTextEdit)
         self.AboutNotebook.addTab(self.LicenseTab, '')
-        self.AboutDialogLayout.addWidget(self.AboutNotebook)
-        self.ButtonWidget = QtGui.QWidget(AboutDialog)
+        self.AboutFormLayout.addWidget(self.AboutNotebook)
+        self.ButtonWidget = QtGui.QWidget(AboutForm)
         self.ButtonWidget.setObjectName(u'ButtonWidget')
         self.ButtonWidgetLayout = QtGui.QHBoxLayout(self.ButtonWidget)
         self.ButtonWidgetLayout.setSpacing(8)
@@ -104,17 +105,17 @@
         self.CloseButton.setIcon(CloseIcon)
         self.CloseButton.setObjectName(u'CloseButton')
         self.ButtonWidgetLayout.addWidget(self.CloseButton)
-        self.AboutDialogLayout.addWidget(self.ButtonWidget)
+        self.AboutFormLayout.addWidget(self.ButtonWidget)
 
-        self.retranslateUi(AboutDialog)
+        self.retranslateUi(AboutForm)
         self.AboutNotebook.setCurrentIndex(0)
         QtCore.QObject.connect(self.CloseButton, QtCore.SIGNAL(u'clicked()'),
-            AboutDialog.close)
-        QtCore.QMetaObject.connectSlotsByName(AboutDialog)
+            AboutForm.close)
+        QtCore.QMetaObject.connectSlotsByName(AboutForm)
 
-    def retranslateUi(self, AboutDialog):
-        AboutDialog.setWindowTitle(self.trUtf8('About OpenLP'))
-        self.AboutTextEdit.setPlainText(self.trUtf8(
+    def retranslateUi(self, AboutForm):
+        AboutForm.setWindowTitle(translate('AboutForm', 'About OpenLP'))
+        self.AboutTextEdit.setPlainText(translate('AboutForm', 
             'OpenLP <version><revision> - Open Source Lyrics '
             'Projection\n'
             '\n'
@@ -131,8 +132,8 @@
             'consider contributing by using the button below.'
         ))
         self.AboutNotebook.setTabText(
-            self.AboutNotebook.indexOf(self.AboutTab), self.trUtf8('About'))
-        self.CreditsTextEdit.setPlainText(self.trUtf8(
+            self.AboutNotebook.indexOf(self.AboutTab), translate('AboutForm', 'About'))
+        self.CreditsTextEdit.setPlainText(translate('AboutForm', 
             'Project Lead\n'
             '    Raoul "superfly" Snyman\n'
             '\n'
@@ -164,11 +165,11 @@
         ))
         self.AboutNotebook.setTabText(
             self.AboutNotebook.indexOf(self.CreditsTab),
-            self.trUtf8('Credits'))
-        self.LicenseTextEdit.setPlainText(self.trUtf8(
-            'Copyright ' + u'\u00a9'.encode('utf8') + ' 2004-2010 Raoul '
+            translate('AboutForm', 'Credits'))
+        self.LicenseTextEdit.setPlainText(translate('AboutForm', 
+            'Copyright \xa9 2004-2010 Raoul '
             'Snyman\n'
-            'Portions copyright ' + u'\u00a9'.encode('utf8') + ' 2004-2010 '
+            'Portions copyright \xa9 2004-2010 '
             'Tim Bentley, Jonathan Corwin, Michael Gorven, Scott Guerrieri, '
             'Christian Richter, Maikel Stuivenberg, Martin Thompson, Jon '
             'Tibble, Carsten Tinggaard\n'
@@ -557,6 +558,6 @@
             'instead of this License.'))
         self.AboutNotebook.setTabText(
             self.AboutNotebook.indexOf(self.LicenseTab),
-            self.trUtf8('License'))
-        self.ContributeButton.setText(self.trUtf8('Contribute'))
-        self.CloseButton.setText(self.trUtf8('Close'))
+            translate('AboutForm', 'License'))
+        self.ContributeButton.setText(translate('AboutForm', 'Contribute'))
+        self.CloseButton.setText(translate('AboutForm', 'Close'))

=== modified file 'openlp/core/ui/aboutform.py'
--- openlp/core/ui/aboutform.py	2010-03-27 12:37:21 +0000
+++ openlp/core/ui/aboutform.py	2010-04-30 20:10:34 +0000
@@ -26,6 +26,7 @@
 from PyQt4 import QtCore, QtGui
 
 from aboutdialog import Ui_AboutDialog
+from openlp.core.lib import translate
 
 class AboutForm(QtGui.QDialog, Ui_AboutDialog):
     """

=== modified file 'openlp/core/ui/amendthemedialog.py'
--- openlp/core/ui/amendthemedialog.py	2010-04-24 18:42:01 +0000
+++ openlp/core/ui/amendthemedialog.py	2010-04-30 20:10:34 +0000
@@ -25,20 +25,21 @@
 
 from PyQt4 import QtCore, QtGui
 from openlp.core.lib import build_icon
+from openlp.core.lib import translate
 
 class Ui_AmendThemeDialog(object):
-    def setupUi(self, AmendThemeDialog):
-        AmendThemeDialog.setObjectName(u'AmendThemeDialog')
-        AmendThemeDialog.setWindowModality(QtCore.Qt.ApplicationModal)
-        AmendThemeDialog.resize(586, 651)
+    def setupUi(self, AmendThemeForm):
+        AmendThemeForm.setObjectName(u'AmendThemeDialog')
+        AmendThemeForm.setWindowModality(QtCore.Qt.ApplicationModal)
+        AmendThemeForm.resize(586, 651)
         icon = build_icon(u':/icon/openlp-logo-16x16.png')
-        AmendThemeDialog.setWindowIcon(icon)
-        AmendThemeDialog.setModal(True)
-        self.AmendThemeLayout = QtGui.QVBoxLayout(AmendThemeDialog)
+        AmendThemeForm.setWindowIcon(icon)
+        AmendThemeForm.setModal(True)
+        self.AmendThemeLayout = QtGui.QVBoxLayout(AmendThemeForm)
         self.AmendThemeLayout.setSpacing(8)
         self.AmendThemeLayout.setMargin(8)
         self.AmendThemeLayout.setObjectName(u'AmendThemeLayout')
-        self.ThemeNameWidget = QtGui.QWidget(AmendThemeDialog)
+        self.ThemeNameWidget = QtGui.QWidget(AmendThemeForm)
         self.ThemeNameWidget.setObjectName(u'ThemeNameWidget')
         self.ThemeNameLayout = QtGui.QHBoxLayout(self.ThemeNameWidget)
         self.ThemeNameLayout.setSpacing(8)
@@ -51,7 +52,7 @@
         self.ThemeNameEdit.setObjectName(u'ThemeNameEdit')
         self.ThemeNameLayout.addWidget(self.ThemeNameEdit)
         self.AmendThemeLayout.addWidget(self.ThemeNameWidget)
-        self.ContentWidget = QtGui.QWidget(AmendThemeDialog)
+        self.ContentWidget = QtGui.QWidget(AmendThemeForm)
         self.ContentWidget.setObjectName(u'ContentWidget')
         self.ContentLayout = QtGui.QHBoxLayout(self.ContentWidget)
         self.ContentLayout.setSpacing(8)
@@ -531,7 +532,7 @@
         self.ThemeTabWidget.addTab(self.OtherOptionsTab, u'')
         self.ContentLayout.addWidget(self.ThemeTabWidget)
         self.AmendThemeLayout.addWidget(self.ContentWidget)
-        self.PreviewGroupBox = QtGui.QGroupBox(AmendThemeDialog)
+        self.PreviewGroupBox = QtGui.QGroupBox(AmendThemeForm)
         self.PreviewGroupBox.setObjectName(u'PreviewGroupBox')
         self.ThemePreviewLayout = QtGui.QHBoxLayout(self.PreviewGroupBox)
         self.ThemePreviewLayout.setSpacing(8)
@@ -555,141 +556,141 @@
         spacerItem8 = QtGui.QSpacerItem(40, 20, QtGui.QSizePolicy.Expanding, QtGui.QSizePolicy.Expanding)
         self.ThemePreviewLayout.addItem(spacerItem8)
         self.AmendThemeLayout.addWidget(self.PreviewGroupBox)
-        self.ThemeButtonBox = QtGui.QDialogButtonBox(AmendThemeDialog)
+        self.ThemeButtonBox = QtGui.QDialogButtonBox(AmendThemeForm)
         self.ThemeButtonBox.setStandardButtons(QtGui.QDialogButtonBox.Cancel|QtGui.QDialogButtonBox.Ok)
         self.ThemeButtonBox.setObjectName(u'ThemeButtonBox')
         self.AmendThemeLayout.addWidget(self.ThemeButtonBox)
 
-        self.retranslateUi(AmendThemeDialog)
+        self.retranslateUi(AmendThemeForm)
         self.ThemeTabWidget.setCurrentIndex(0)
-        QtCore.QObject.connect(self.ThemeButtonBox, QtCore.SIGNAL(u'accepted()'), AmendThemeDialog.accept)
-        QtCore.QObject.connect(self.ThemeButtonBox, QtCore.SIGNAL(u'rejected()'), AmendThemeDialog.reject)
-        QtCore.QMetaObject.connectSlotsByName(AmendThemeDialog)
-        AmendThemeDialog.setTabOrder(self.ThemeButtonBox, self.ThemeNameEdit)
-        AmendThemeDialog.setTabOrder(self.ThemeNameEdit, self.ThemeTabWidget)
-        AmendThemeDialog.setTabOrder(self.ThemeTabWidget, self.BackgroundComboBox)
-        AmendThemeDialog.setTabOrder(self.BackgroundComboBox, self.BackgroundTypeComboBox)
-        AmendThemeDialog.setTabOrder(self.BackgroundTypeComboBox, self.Color1PushButton)
-        AmendThemeDialog.setTabOrder(self.Color1PushButton, self.Color2PushButton)
-        AmendThemeDialog.setTabOrder(self.Color2PushButton, self.ImageLineEdit)
-        AmendThemeDialog.setTabOrder(self.ImageLineEdit, self.ImageToolButton)
-        AmendThemeDialog.setTabOrder(self.ImageToolButton, self.GradientComboBox)
-        AmendThemeDialog.setTabOrder(self.GradientComboBox, self.FontMainComboBox)
-        AmendThemeDialog.setTabOrder(self.FontMainComboBox, self.FontMainColorPushButton)
-        AmendThemeDialog.setTabOrder(self.FontMainColorPushButton, self.FontMainSizeSpinBox)
-        AmendThemeDialog.setTabOrder(self.FontMainSizeSpinBox, self.FontMainWeightComboBox)
-        AmendThemeDialog.setTabOrder(self.FontMainWeightComboBox, self.FontMainLineSpacingSpinBox)
-        AmendThemeDialog.setTabOrder(self.FontMainLineSpacingSpinBox, self.FontMainDefaultCheckBox)
-        AmendThemeDialog.setTabOrder(self.FontMainDefaultCheckBox, self.FontMainXSpinBox)
-        AmendThemeDialog.setTabOrder(self.FontMainXSpinBox, self.FontMainYSpinBox)
-        AmendThemeDialog.setTabOrder(self.FontMainYSpinBox, self.FontMainWidthSpinBox)
-        AmendThemeDialog.setTabOrder(self.FontMainWidthSpinBox, self.FontMainHeightSpinBox)
-        AmendThemeDialog.setTabOrder(self.FontMainHeightSpinBox, self.FontFooterComboBox)
-        AmendThemeDialog.setTabOrder(self.FontFooterComboBox, self.FontFooterColorPushButton)
-        AmendThemeDialog.setTabOrder(self.FontFooterColorPushButton, self.FontFooterSizeSpinBox)
-        AmendThemeDialog.setTabOrder(self.FontFooterSizeSpinBox, self.FontFooterWeightComboBox)
-        AmendThemeDialog.setTabOrder(self.FontFooterWeightComboBox, self.FontFooterDefaultCheckBox)
-        AmendThemeDialog.setTabOrder(self.FontFooterDefaultCheckBox, self.FontFooterXSpinBox)
-        AmendThemeDialog.setTabOrder(self.FontFooterXSpinBox, self.FontFooterYSpinBox)
-        AmendThemeDialog.setTabOrder(self.FontFooterYSpinBox, self.FontFooterWidthSpinBox)
-        AmendThemeDialog.setTabOrder(self.FontFooterWidthSpinBox, self.FontFooterHeightSpinBox)
-        AmendThemeDialog.setTabOrder(self.FontFooterHeightSpinBox, self.OutlineCheckBox)
-        AmendThemeDialog.setTabOrder(self.OutlineCheckBox, self.OutlineColorPushButton)
-        AmendThemeDialog.setTabOrder(self.OutlineColorPushButton, self.ShadowCheckBox)
-        AmendThemeDialog.setTabOrder(self.ShadowCheckBox, self.ShadowColorPushButton)
-        AmendThemeDialog.setTabOrder(self.ShadowColorPushButton, self.HorizontalComboBox)
-        AmendThemeDialog.setTabOrder(self.HorizontalComboBox, self.VerticalComboBox)
+        QtCore.QObject.connect(self.ThemeButtonBox, QtCore.SIGNAL(u'accepted()'), AmendThemeForm.accept)
+        QtCore.QObject.connect(self.ThemeButtonBox, QtCore.SIGNAL(u'rejected()'), AmendThemeForm.reject)
+        QtCore.QMetaObject.connectSlotsByName(AmendThemeForm)
+        AmendThemeForm.setTabOrder(self.ThemeButtonBox, self.ThemeNameEdit)
+        AmendThemeForm.setTabOrder(self.ThemeNameEdit, self.ThemeTabWidget)
+        AmendThemeForm.setTabOrder(self.ThemeTabWidget, self.BackgroundComboBox)
+        AmendThemeForm.setTabOrder(self.BackgroundComboBox, self.BackgroundTypeComboBox)
+        AmendThemeForm.setTabOrder(self.BackgroundTypeComboBox, self.Color1PushButton)
+        AmendThemeForm.setTabOrder(self.Color1PushButton, self.Color2PushButton)
+        AmendThemeForm.setTabOrder(self.Color2PushButton, self.ImageLineEdit)
+        AmendThemeForm.setTabOrder(self.ImageLineEdit, self.ImageToolButton)
+        AmendThemeForm.setTabOrder(self.ImageToolButton, self.GradientComboBox)
+        AmendThemeForm.setTabOrder(self.GradientComboBox, self.FontMainComboBox)
+        AmendThemeForm.setTabOrder(self.FontMainComboBox, self.FontMainColorPushButton)
+        AmendThemeForm.setTabOrder(self.FontMainColorPushButton, self.FontMainSizeSpinBox)
+        AmendThemeForm.setTabOrder(self.FontMainSizeSpinBox, self.FontMainWeightComboBox)
+        AmendThemeForm.setTabOrder(self.FontMainWeightComboBox, self.FontMainLineSpacingSpinBox)
+        AmendThemeForm.setTabOrder(self.FontMainLineSpacingSpinBox, self.FontMainDefaultCheckBox)
+        AmendThemeForm.setTabOrder(self.FontMainDefaultCheckBox, self.FontMainXSpinBox)
+        AmendThemeForm.setTabOrder(self.FontMainXSpinBox, self.FontMainYSpinBox)
+        AmendThemeForm.setTabOrder(self.FontMainYSpinBox, self.FontMainWidthSpinBox)
+        AmendThemeForm.setTabOrder(self.FontMainWidthSpinBox, self.FontMainHeightSpinBox)
+        AmendThemeForm.setTabOrder(self.FontMainHeightSpinBox, self.FontFooterComboBox)
+        AmendThemeForm.setTabOrder(self.FontFooterComboBox, self.FontFooterColorPushButton)
+        AmendThemeForm.setTabOrder(self.FontFooterColorPushButton, self.FontFooterSizeSpinBox)
+        AmendThemeForm.setTabOrder(self.FontFooterSizeSpinBox, self.FontFooterWeightComboBox)
+        AmendThemeForm.setTabOrder(self.FontFooterWeightComboBox, self.FontFooterDefaultCheckBox)
+        AmendThemeForm.setTabOrder(self.FontFooterDefaultCheckBox, self.FontFooterXSpinBox)
+        AmendThemeForm.setTabOrder(self.FontFooterXSpinBox, self.FontFooterYSpinBox)
+        AmendThemeForm.setTabOrder(self.FontFooterYSpinBox, self.FontFooterWidthSpinBox)
+        AmendThemeForm.setTabOrder(self.FontFooterWidthSpinBox, self.FontFooterHeightSpinBox)
+        AmendThemeForm.setTabOrder(self.FontFooterHeightSpinBox, self.OutlineCheckBox)
+        AmendThemeForm.setTabOrder(self.OutlineCheckBox, self.OutlineColorPushButton)
+        AmendThemeForm.setTabOrder(self.OutlineColorPushButton, self.ShadowCheckBox)
+        AmendThemeForm.setTabOrder(self.ShadowCheckBox, self.ShadowColorPushButton)
+        AmendThemeForm.setTabOrder(self.ShadowColorPushButton, self.HorizontalComboBox)
+        AmendThemeForm.setTabOrder(self.HorizontalComboBox, self.VerticalComboBox)
 
-    def retranslateUi(self, AmendThemeDialog):
-        AmendThemeDialog.setWindowTitle(self.trUtf8('Theme Maintenance'))
-        self.ThemeNameLabel.setText(self.trUtf8('Theme Name:'))
-        self.BackgroundLabel.setText(self.trUtf8('Background:'))
-        self.BackgroundComboBox.setItemText(0, self.trUtf8('Opaque'))
-        self.BackgroundComboBox.setItemText(1, self.trUtf8('Transparent'))
-        self.BackgroundTypeLabel.setText(self.trUtf8('Background Type:'))
-        self.BackgroundTypeComboBox.setItemText(0, self.trUtf8('Solid Color'))
-        self.BackgroundTypeComboBox.setItemText(1, self.trUtf8('Gradient'))
-        self.BackgroundTypeComboBox.setItemText(2, self.trUtf8('Image'))
-        self.Color1Label.setText(self.trUtf8('<Color1>'))
-        self.Color2Label.setText(self.trUtf8('<Color2>'))
-        self.ImageLabel.setText(self.trUtf8('Image:'))
-        self.GradientLabel.setText(self.trUtf8('Gradient :'))
-        self.GradientComboBox.setItemText(0, self.trUtf8('Horizontal'))
-        self.GradientComboBox.setItemText(1, self.trUtf8('Vertical'))
-        self.GradientComboBox.setItemText(2, self.trUtf8('Circular'))
+    def retranslateUi(self, AmendThemeForm):
+        AmendThemeForm.setWindowTitle(translate('AmendThemeForm', 'Theme Maintenance'))
+        self.ThemeNameLabel.setText(translate('AmendThemeForm', 'Theme Name:'))
+        self.BackgroundLabel.setText(translate('AmendThemeForm', 'Background:'))
+        self.BackgroundComboBox.setItemText(0, translate('AmendThemeForm', 'Opaque'))
+        self.BackgroundComboBox.setItemText(1, translate('AmendThemeForm', 'Transparent'))
+        self.BackgroundTypeLabel.setText(translate('AmendThemeForm', 'Background Type:'))
+        self.BackgroundTypeComboBox.setItemText(0, translate('AmendThemeForm', 'Solid Color'))
+        self.BackgroundTypeComboBox.setItemText(1, translate('AmendThemeForm', 'Gradient'))
+        self.BackgroundTypeComboBox.setItemText(2, translate('AmendThemeForm', 'Image'))
+        self.Color1Label.setText(translate('AmendThemeForm', '<Color1>'))
+        self.Color2Label.setText(translate('AmendThemeForm', '<Color2>'))
+        self.ImageLabel.setText(translate('AmendThemeForm', 'Image:'))
+        self.GradientLabel.setText(translate('AmendThemeForm', 'Gradient :'))
+        self.GradientComboBox.setItemText(0, translate('AmendThemeForm', 'Horizontal'))
+        self.GradientComboBox.setItemText(1, translate('AmendThemeForm', 'Vertical'))
+        self.GradientComboBox.setItemText(2, translate('AmendThemeForm', 'Circular'))
         self.ThemeTabWidget.setTabText(
             self.ThemeTabWidget.indexOf(self.BackgroundTab),
-            self.trUtf8('Background'))
-        self.FontMainGroupBox.setTitle(self.trUtf8('Main Font'))
-        self.FontMainlabel.setText(self.trUtf8('Font:'))
-        self.FontMainColorLabel.setText(self.trUtf8('Font Color:'))
-        self.FontMainSize.setText(self.trUtf8('Size:'))
-        self.FontMainSizeSpinBox.setSuffix(self.trUtf8('pt'))
-        self.FontMainWrapIndentationLabel.setText(self.trUtf8('Wrap Indentation'))
-        self.FontMainWrapLineAdjustmentLabel.setText(self.trUtf8('Adjust Line Spacing'))
-        self.FontMainWeightComboBox.setItemText(0, self.trUtf8('Normal'))
-        self.FontMainWeightComboBox.setItemText(1, self.trUtf8('Bold'))
-        self.FontMainWeightComboBox.setItemText(2, self.trUtf8('Italics'))
-        self.FontMainWeightComboBox.setItemText(3, self.trUtf8('Bold/Italics'))
-        self.FontMainWeightLabel.setText(self.trUtf8('Font Weight:'))
-        self.MainLocationGroupBox.setTitle(self.trUtf8('Display Location'))
-        self.DefaultLocationLabel.setText(self.trUtf8('Use Default Location:'))
-        self.FontMainXLabel.setText(self.trUtf8('X Position:'))
-        self.FontMainYLabel.setText(self.trUtf8('Y Position:'))
-        self.FontMainWidthLabel.setText(self.trUtf8('Width:'))
-        self.FontMainHeightLabel.setText(self.trUtf8('Height:'))
-        self.FontMainXSpinBox.setSuffix(self.trUtf8('px'))
-        self.FontMainYSpinBox.setSuffix(self.trUtf8('px'))
-        self.FontMainWidthSpinBox.setSuffix(self.trUtf8('px'))
-        self.FontMainHeightSpinBox.setSuffix(self.trUtf8('px'))
+            translate('AmendThemeForm', 'Background'))
+        self.FontMainGroupBox.setTitle(translate('AmendThemeForm', 'Main Font'))
+        self.FontMainlabel.setText(translate('AmendThemeForm', 'Font:'))
+        self.FontMainColorLabel.setText(translate('AmendThemeForm', 'Font Color:'))
+        self.FontMainSize.setText(translate('AmendThemeForm', 'Size:'))
+        self.FontMainSizeSpinBox.setSuffix(translate('AmendThemeForm', 'pt'))
+        self.FontMainWrapIndentationLabel.setText(translate('AmendThemeForm', 'Wrap Indentation'))
+        self.FontMainWrapLineAdjustmentLabel.setText(translate('AmendThemeForm', 'Adjust Line Spacing'))
+        self.FontMainWeightComboBox.setItemText(0, translate('AmendThemeForm', 'Normal'))
+        self.FontMainWeightComboBox.setItemText(1, translate('AmendThemeForm', 'Bold'))
+        self.FontMainWeightComboBox.setItemText(2, translate('AmendThemeForm', 'Italics'))
+        self.FontMainWeightComboBox.setItemText(3, translate('AmendThemeForm', 'Bold/Italics'))
+        self.FontMainWeightLabel.setText(translate('AmendThemeForm', 'Font Weight:'))
+        self.MainLocationGroupBox.setTitle(translate('AmendThemeForm', 'Display Location'))
+        self.DefaultLocationLabel.setText(translate('AmendThemeForm', 'Use Default Location:'))
+        self.FontMainXLabel.setText(translate('AmendThemeForm', 'X Position:'))
+        self.FontMainYLabel.setText(translate('AmendThemeForm', 'Y Position:'))
+        self.FontMainWidthLabel.setText(translate('AmendThemeForm', 'Width:'))
+        self.FontMainHeightLabel.setText(translate('AmendThemeForm', 'Height:'))
+        self.FontMainXSpinBox.setSuffix(translate('AmendThemeForm', 'px'))
+        self.FontMainYSpinBox.setSuffix(translate('AmendThemeForm', 'px'))
+        self.FontMainWidthSpinBox.setSuffix(translate('AmendThemeForm', 'px'))
+        self.FontMainHeightSpinBox.setSuffix(translate('AmendThemeForm', 'px'))
         self.ThemeTabWidget.setTabText(
             self.ThemeTabWidget.indexOf(self.FontMainTab),
-            self.trUtf8('Font Main'))
-        self.FooterFontGroupBox.setTitle(self.trUtf8('Footer Font'))
-        self.FontFooterLabel.setText(self.trUtf8('Font:'))
-        self.FontFooterColorLabel.setText(self.trUtf8('Font Color:'))
-        self.FontFooterSizeLabel.setText(self.trUtf8('Size:'))
-        self.FontFooterSizeSpinBox.setSuffix(self.trUtf8('pt'))
-        self.FontFooterWeightComboBox.setItemText(0, self.trUtf8('Normal'))
-        self.FontFooterWeightComboBox.setItemText(1, self.trUtf8('Bold'))
-        self.FontFooterWeightComboBox.setItemText(2, self.trUtf8('Italics'))
-        self.FontFooterWeightComboBox.setItemText(3, self.trUtf8('Bold/Italics'))
-        self.FontFooterWeightLabel.setText(self.trUtf8('Font Weight:'))
-        self.LocationFooterGroupBox.setTitle(self.trUtf8('Display Location'))
-        self.FontFooterDefaultLabel.setText(self.trUtf8('Use Default Location:'))
-        self.FontFooterXLabel.setText(self.trUtf8('X Position:'))
-        self.FontFooterYLabel.setText(self.trUtf8('Y Position:'))
-        self.FontFooterWidthLabel.setText(self.trUtf8('Width:'))
-        self.FontFooterHeightLabel.setText(self.trUtf8('Height:'))
-        self.FontFooterXSpinBox.setSuffix(self.trUtf8('px'))
-        self.FontFooterYSpinBox.setSuffix(self.trUtf8('px'))
-        self.FontFooterWidthSpinBox.setSuffix(self.trUtf8('px'))
-        self.FontFooterHeightSpinBox.setSuffix(self.trUtf8('px'))
+            translate('AmendThemeForm', 'Font Main'))
+        self.FooterFontGroupBox.setTitle(translate('AmendThemeForm', 'Footer Font'))
+        self.FontFooterLabel.setText(translate('AmendThemeForm', 'Font:'))
+        self.FontFooterColorLabel.setText(translate('AmendThemeForm', 'Font Color:'))
+        self.FontFooterSizeLabel.setText(translate('AmendThemeForm', 'Size:'))
+        self.FontFooterSizeSpinBox.setSuffix(translate('AmendThemeForm', 'pt'))
+        self.FontFooterWeightComboBox.setItemText(0, translate('AmendThemeForm', 'Normal'))
+        self.FontFooterWeightComboBox.setItemText(1, translate('AmendThemeForm', 'Bold'))
+        self.FontFooterWeightComboBox.setItemText(2, translate('AmendThemeForm', 'Italics'))
+        self.FontFooterWeightComboBox.setItemText(3, translate('AmendThemeForm', 'Bold/Italics'))
+        self.FontFooterWeightLabel.setText(translate('AmendThemeForm', 'Font Weight:'))
+        self.LocationFooterGroupBox.setTitle(translate('AmendThemeForm', 'Display Location'))
+        self.FontFooterDefaultLabel.setText(translate('AmendThemeForm', 'Use Default Location:'))
+        self.FontFooterXLabel.setText(translate('AmendThemeForm', 'X Position:'))
+        self.FontFooterYLabel.setText(translate('AmendThemeForm', 'Y Position:'))
+        self.FontFooterWidthLabel.setText(translate('AmendThemeForm', 'Width:'))
+        self.FontFooterHeightLabel.setText(translate('AmendThemeForm', 'Height:'))
+        self.FontFooterXSpinBox.setSuffix(translate('AmendThemeForm', 'px'))
+        self.FontFooterYSpinBox.setSuffix(translate('AmendThemeForm', 'px'))
+        self.FontFooterWidthSpinBox.setSuffix(translate('AmendThemeForm', 'px'))
+        self.FontFooterHeightSpinBox.setSuffix(translate('AmendThemeForm', 'px'))
         self.ThemeTabWidget.setTabText(
             self.ThemeTabWidget.indexOf(self.FontFooterTab),
-            self.trUtf8('Font Footer'))
-        self.OutlineGroupBox.setTitle(self.trUtf8('Outline'))
-        self.OutlineSpinBoxLabel.setText(self.trUtf8('Outline Size:'))
-        self.OutlineSpinBox.setSuffix(self.trUtf8('px'))
-        self.OutlineColorLabel.setText(self.trUtf8('Outline Color:'))
-        self.OutlineEnabledLabel.setText(self.trUtf8('Show Outline:'))
-        self.ShadowGroupBox.setTitle(self.trUtf8('Shadow'))
-        self.ShadowSpinBoxLabel.setText(self.trUtf8('Shadow Size:'))
-        self.ShadowSpinBox.setSuffix(self.trUtf8('px'))
-        self.ShadowColorLabel.setText(self.trUtf8('Shadow Color:'))
-        self.ShadowEnabledLabel.setText(self.trUtf8('Show Shadow:'))
-        self.AlignmentGroupBox.setTitle(self.trUtf8('Alignment'))
-        self.HorizontalLabel.setText(self.trUtf8('Horizontal Align:'))
-        self.HorizontalComboBox.setItemText(0, self.trUtf8('Left'))
-        self.HorizontalComboBox.setItemText(1, self.trUtf8('Right'))
-        self.HorizontalComboBox.setItemText(2, self.trUtf8('Center'))
-        self.VerticalLabel.setText(self.trUtf8('Vertical Align:'))
-        self.VerticalComboBox.setItemText(0, self.trUtf8('Top'))
-        self.VerticalComboBox.setItemText(1, self.trUtf8('Middle'))
-        self.VerticalComboBox.setItemText(2, self.trUtf8('Bottom'))
-        self.TransitionGroupBox.setTitle(self.trUtf8('Slide Transition'))
-        self.SlideTransitionCheckedBoxLabel.setText(self.trUtf8('Transition Active:'))
+            translate('AmendThemeForm', 'Font Footer'))
+        self.OutlineGroupBox.setTitle(translate('AmendThemeForm', 'Outline'))
+        self.OutlineSpinBoxLabel.setText(translate('AmendThemeForm', 'Outline Size:'))
+        self.OutlineSpinBox.setSuffix(translate('AmendThemeForm', 'px'))
+        self.OutlineColorLabel.setText(translate('AmendThemeForm', 'Outline Color:'))
+        self.OutlineEnabledLabel.setText(translate('AmendThemeForm', 'Show Outline:'))
+        self.ShadowGroupBox.setTitle(translate('AmendThemeForm', 'Shadow'))
+        self.ShadowSpinBoxLabel.setText(translate('AmendThemeForm', 'Shadow Size:'))
+        self.ShadowSpinBox.setSuffix(translate('AmendThemeForm', 'px'))
+        self.ShadowColorLabel.setText(translate('AmendThemeForm', 'Shadow Color:'))
+        self.ShadowEnabledLabel.setText(translate('AmendThemeForm', 'Show Shadow:'))
+        self.AlignmentGroupBox.setTitle(translate('AmendThemeForm', 'Alignment'))
+        self.HorizontalLabel.setText(translate('AmendThemeForm', 'Horizontal Align:'))
+        self.HorizontalComboBox.setItemText(0, translate('AmendThemeForm', 'Left'))
+        self.HorizontalComboBox.setItemText(1, translate('AmendThemeForm', 'Right'))
+        self.HorizontalComboBox.setItemText(2, translate('AmendThemeForm', 'Center'))
+        self.VerticalLabel.setText(translate('AmendThemeForm', 'Vertical Align:'))
+        self.VerticalComboBox.setItemText(0, translate('AmendThemeForm', 'Top'))
+        self.VerticalComboBox.setItemText(1, translate('AmendThemeForm', 'Middle'))
+        self.VerticalComboBox.setItemText(2, translate('AmendThemeForm', 'Bottom'))
+        self.TransitionGroupBox.setTitle(translate('AmendThemeForm', 'Slide Transition'))
+        self.SlideTransitionCheckedBoxLabel.setText(translate('AmendThemeForm', 'Transition Active:'))
         self.ThemeTabWidget.setTabText(
             self.ThemeTabWidget.indexOf(self.OtherOptionsTab),
-            self.trUtf8('Other Options'))
-        self.PreviewGroupBox.setTitle(self.trUtf8('Preview'))
+            translate('AmendThemeForm', 'Other Options'))
+        self.PreviewGroupBox.setTitle(translate('AmendThemeForm', 'Preview'))

=== modified file 'openlp/core/ui/mainwindow.py'
--- openlp/core/ui/mainwindow.py	2010-04-30 14:27:05 +0000
+++ openlp/core/ui/mainwindow.py	2010-04-30 20:10:34 +0000
@@ -31,8 +31,8 @@
 from openlp.core.ui import AboutForm, SettingsForm, ServiceManager, \
     ThemeManager, SlideController, PluginForm, MediaDockManager, DisplayManager
 from openlp.core.lib import RenderManager, build_icon, OpenLPDockWidget, \
-    SettingsManager, PluginManager, Receiver
-from openlp.core.utils import check_latest_version, AppLocation, add_actions
+    SettingsManager, PluginManager, Receiver, translate
+from openlp.core.utils import check_latest_version, AppLocation, add_actions, LanguageManager
 
 log = logging.getLogger(__name__)
 
@@ -252,10 +252,23 @@
         self.HelpOnlineHelpItem.setEnabled(False)
         self.HelpWebSiteItem = QtGui.QAction(MainWindow)
         self.HelpWebSiteItem.setObjectName(u'HelpWebSiteItem')
-        self.LanguageTranslateItem = QtGui.QAction(MainWindow)
-        self.LanguageTranslateItem.setObjectName(u'LanguageTranslateItem')
-        self.LanguageEnglishItem = QtGui.QAction(MainWindow)
-        self.LanguageEnglishItem.setObjectName(u'LanguageEnglishItem')
+        #i18n Language Items
+        self.AutoLanguageItem = QtGui.QAction(MainWindow)
+        self.AutoLanguageItem.setObjectName(u'AutoLanguageItem')
+        self.AutoLanguageItem.setCheckable(True)
+        self.LanguageGroup = QtGui.QActionGroup(MainWindow)
+        qmList = LanguageManager.get_qm_list()
+        savedLanguage = LanguageManager.get_language()
+        self.AutoLanguageItem.setChecked(LanguageManager.AutoLanguage)
+        self.LanguageItem = {}
+        for key in qmList.keys():
+            self.LanguageItem[key] = QtGui.QAction(MainWindow)
+            self.LanguageItem[key].setObjectName(key)
+            self.LanguageItem[key].setCheckable(True)
+            self.LanguageItem[key].setDisabled(LanguageManager.AutoLanguage)
+            if qmList[key] == savedLanguage:
+                self.LanguageItem[key].setChecked(True)
+            add_actions(self.LanguageGroup, [self.LanguageItem[key]])
         self.ToolsAddToolItem = QtGui.QAction(MainWindow)
         AddToolIcon = build_icon(u':/tools/tools_add.png')
         self.ToolsAddToolItem.setIcon(AddToolIcon)
@@ -281,8 +294,10 @@
         add_actions(self.OptionsViewMenu, (self.ViewModeMenu.menuAction(),
             None, self.ViewMediaManagerItem, self.ViewServiceManagerItem,
             self.ViewThemeManagerItem, None, self.action_Preview_Panel))
-        add_actions(self.OptionsLanguageMenu, (self.LanguageEnglishItem, None,
-            self.LanguageTranslateItem))
+        #i18n add Language Actions
+        add_actions(self.OptionsLanguageMenu, (self.AutoLanguageItem, None))
+        for item in sorted(self.LanguageItem):
+            add_actions(self.OptionsLanguageMenu, [self.LanguageItem[item]])
         add_actions(self.OptionsMenu, (self.OptionsLanguageMenu.menuAction(),
             self.OptionsViewMenu.menuAction(), None, self.OptionsSettingsItem))
         add_actions(self.ToolsMenu,
@@ -316,98 +331,101 @@
         """
         Set up the translation system
         """
-        MainWindow.mainTitle = self.trUtf8('OpenLP 2.0')
-        MainWindow.defaultThemeText = self.trUtf8(
+        MainWindow.mainTitle = translate('MainWindow', 'OpenLP 2.0')
+        MainWindow.language = translate('MainWindow', 'English')
+        MainWindow.defaultThemeText = translate('MainWindow', 
             'Default Theme: ')
         MainWindow.setWindowTitle(MainWindow.mainTitle)
-        self.FileMenu.setTitle(self.trUtf8('&File'))
-        self.FileImportMenu.setTitle(self.trUtf8('&Import'))
-        self.FileExportMenu.setTitle(self.trUtf8('&Export'))
-        self.OptionsMenu.setTitle(self.trUtf8('&Options'))
-        self.OptionsViewMenu.setTitle(self.trUtf8('&View'))
-        self.ViewModeMenu.setTitle(self.trUtf8('M&ode'))
-        self.OptionsLanguageMenu.setTitle(self.trUtf8(
+        self.FileMenu.setTitle(translate('MainWindow', '&File'))
+        self.FileImportMenu.setTitle(translate('MainWindow', '&Import'))
+        self.FileExportMenu.setTitle(translate('MainWindow', '&Export'))
+        self.OptionsMenu.setTitle(translate('MainWindow', '&Options'))
+        self.OptionsViewMenu.setTitle(translate('MainWindow', '&View'))
+        self.ViewModeMenu.setTitle(translate('MainWindow', 'M&ode'))
+        self.OptionsLanguageMenu.setTitle(translate('MainWindow', 
             u'&Language'))
-        self.ToolsMenu.setTitle(self.trUtf8('&Tools'))
-        self.HelpMenu.setTitle(self.trUtf8('&Help'))
+        self.ToolsMenu.setTitle(translate('MainWindow', '&Tools'))
+        self.HelpMenu.setTitle(translate('MainWindow', '&Help'))
         self.MediaManagerDock.setWindowTitle(
-            self.trUtf8('Media Manager'))
+            translate('MainWindow', 'Media Manager'))
         self.ServiceManagerDock.setWindowTitle(
-            self.trUtf8('Service Manager'))
+            translate('MainWindow', 'Service Manager'))
         self.ThemeManagerDock.setWindowTitle(
-            self.trUtf8('Theme Manager'))
-        self.FileNewItem.setText(self.trUtf8('&New'))
-        self.FileNewItem.setToolTip(self.trUtf8('New Service'))
-        self.FileNewItem.setStatusTip(self.trUtf8('Create a new Service'))
-        self.FileNewItem.setShortcut(self.trUtf8('Ctrl+N'))
-        self.FileOpenItem.setText(self.trUtf8('&Open'))
-        self.FileOpenItem.setToolTip(self.trUtf8('Open Service'))
-        self.FileOpenItem.setStatusTip(self.trUtf8('Open an existing service'))
-        self.FileOpenItem.setShortcut(self.trUtf8('Ctrl+O'))
-        self.FileSaveItem.setText(self.trUtf8('&Save'))
-        self.FileSaveItem.setToolTip(self.trUtf8('Save Service'))
+            translate('MainWindow', 'Theme Manager'))
+        self.FileNewItem.setText(translate('MainWindow', '&New'))
+        self.FileNewItem.setToolTip(translate('MainWindow', 'New Service'))
+        self.FileNewItem.setStatusTip(translate('MainWindow', 'Create a new Service'))
+        self.FileNewItem.setShortcut(translate('MainWindow', 'Ctrl+N'))
+        self.FileOpenItem.setText(translate('MainWindow', '&Open'))
+        self.FileOpenItem.setToolTip(translate('MainWindow', 'Open Service'))
+        self.FileOpenItem.setStatusTip(translate('MainWindow', 'Open an existing service'))
+        self.FileOpenItem.setShortcut(translate('MainWindow', 'Ctrl+O'))
+        self.FileSaveItem.setText(translate('MainWindow', '&Save'))
+        self.FileSaveItem.setToolTip(translate('MainWindow', 'Save Service'))
         self.FileSaveItem.setStatusTip(
-            self.trUtf8('Save the current service to disk'))
-        self.FileSaveItem.setShortcut(self.trUtf8('Ctrl+S'))
-        self.FileSaveAsItem.setText(self.trUtf8('Save &As...'))
-        self.FileSaveAsItem.setToolTip(self.trUtf8('Save Service As'))
+            translate('MainWindow', 'Save the current service to disk'))
+        self.FileSaveItem.setShortcut(translate('MainWindow', 'Ctrl+S'))
+        self.FileSaveAsItem.setText(translate('MainWindow', 'Save &As...'))
+        self.FileSaveAsItem.setToolTip(translate('MainWindow', 'Save Service As'))
         self.FileSaveAsItem.setStatusTip(
-            self.trUtf8('Save the current service under a new name'))
-        self.FileSaveAsItem.setShortcut(self.trUtf8('F12'))
-        self.FileExitItem.setText(self.trUtf8('E&xit'))
-        self.FileExitItem.setStatusTip(self.trUtf8('Quit OpenLP'))
-        self.FileExitItem.setShortcut(self.trUtf8('Alt+F4'))
-        self.ImportThemeItem.setText(self.trUtf8('&Theme'))
-        self.ImportLanguageItem.setText(self.trUtf8('&Language'))
-        self.ExportThemeItem.setText(self.trUtf8('&Theme'))
-        self.ExportLanguageItem.setText(self.trUtf8('&Language'))
-        self.actionLook_Feel.setText(self.trUtf8('Look && &Feel'))
-        self.OptionsSettingsItem.setText(self.trUtf8('&Settings'))
-        self.ViewMediaManagerItem.setText(self.trUtf8('&Media Manager'))
+            translate('MainWindow', 'Save the current service under a new name'))
+        self.FileSaveAsItem.setShortcut(translate('MainWindow', 'F12'))
+        self.FileExitItem.setText(translate('MainWindow', 'E&xit'))
+        self.FileExitItem.setStatusTip(translate('MainWindow', 'Quit OpenLP'))
+        self.FileExitItem.setShortcut(translate('MainWindow', 'Alt+F4'))
+        self.ImportThemeItem.setText(translate('MainWindow', '&Theme'))
+        self.ImportLanguageItem.setText(translate('MainWindow', '&Language'))
+        self.ExportThemeItem.setText(translate('MainWindow', '&Theme'))
+        self.ExportLanguageItem.setText(translate('MainWindow', '&Language'))
+        self.actionLook_Feel.setText(translate('MainWindow', 'Look && &Feel'))
+        self.OptionsSettingsItem.setText(translate('MainWindow', '&Settings'))
+        self.ViewMediaManagerItem.setText(translate('MainWindow', '&Media Manager'))
         self.ViewMediaManagerItem.setToolTip(
-            self.trUtf8('Toggle Media Manager'))
+            translate('MainWindow', 'Toggle Media Manager'))
         self.ViewMediaManagerItem.setStatusTip(
-            self.trUtf8('Toggle the visibility of the Media Manager'))
-        self.ViewMediaManagerItem.setShortcut(self.trUtf8('F8'))
-        self.ViewThemeManagerItem.setText(self.trUtf8('&Theme Manager'))
+            translate('MainWindow', 'Toggle the visibility of the Media Manager'))
+        self.ViewMediaManagerItem.setShortcut(translate('MainWindow', 'F8'))
+        self.ViewThemeManagerItem.setText(translate('MainWindow', '&Theme Manager'))
         self.ViewThemeManagerItem.setToolTip(
-            self.trUtf8('Toggle Theme Manager'))
+            translate('MainWindow', 'Toggle Theme Manager'))
         self.ViewThemeManagerItem.setStatusTip(
-            self.trUtf8('Toggle the visibility of the Theme Manager'))
-        self.ViewThemeManagerItem.setShortcut(self.trUtf8('F10'))
-        self.ViewServiceManagerItem.setText(self.trUtf8('&Service Manager'))
+            translate('MainWindow', 'Toggle the visibility of the Theme Manager'))
+        self.ViewThemeManagerItem.setShortcut(translate('MainWindow', 'F10'))
+        self.ViewServiceManagerItem.setText(translate('MainWindow', '&Service Manager'))
         self.ViewServiceManagerItem.setToolTip(
-            self.trUtf8('Toggle Service Manager'))
+            translate('MainWindow', 'Toggle Service Manager'))
         self.ViewServiceManagerItem.setStatusTip(
-            self.trUtf8('Toggle the visibility of the Service Manager'))
-        self.ViewServiceManagerItem.setShortcut(self.trUtf8('F9'))
-        self.action_Preview_Panel.setText(self.trUtf8('&Preview Panel'))
+            translate('MainWindow', 'Toggle the visibility of the Service Manager'))
+        self.ViewServiceManagerItem.setShortcut(translate('MainWindow', 'F9'))
+        self.action_Preview_Panel.setText(translate('MainWindow', '&Preview Panel'))
         self.action_Preview_Panel.setToolTip(
-            self.trUtf8('Toggle Preview Panel'))
+            translate('MainWindow', 'Toggle Preview Panel'))
         self.action_Preview_Panel.setStatusTip(
-            self.trUtf8('Toggle the visibility of the Preview Panel'))
-        self.action_Preview_Panel.setShortcut(self.trUtf8('F11'))
-        self.PluginItem.setText(self.trUtf8('&Plugin List'))
-        self.PluginItem.setStatusTip(self.trUtf8('List the Plugins'))
-        self.PluginItem.setShortcut(self.trUtf8('Alt+F7'))
-        self.HelpDocumentationItem.setText(self.trUtf8('&User Guide'))
-        self.HelpAboutItem.setText(self.trUtf8('&About'))
+            translate('MainWindow', 'Toggle the visibility of the Preview Panel'))
+        self.action_Preview_Panel.setShortcut(translate('MainWindow', 'F11'))
+        self.PluginItem.setText(translate('MainWindow', '&Plugin List'))
+        self.PluginItem.setStatusTip(translate('MainWindow', 'List the Plugins'))
+        self.PluginItem.setShortcut(translate('MainWindow', 'Alt+F7'))
+        self.HelpDocumentationItem.setText(translate('MainWindow', '&User Guide'))
+        self.HelpAboutItem.setText(translate('MainWindow', '&About'))
         self.HelpAboutItem.setStatusTip(
-            self.trUtf8('More information about OpenLP'))
-        self.HelpAboutItem.setShortcut(self.trUtf8('Ctrl+F1'))
-        self.HelpOnlineHelpItem.setText(self.trUtf8('&Online Help'))
-        self.HelpWebSiteItem.setText(self.trUtf8('&Web Site'))
-        self.LanguageTranslateItem.setText(self.trUtf8('&Translate'))
-        self.LanguageTranslateItem.setStatusTip(
-            self.trUtf8('Translate the interface to your language'))
-        self.LanguageEnglishItem.setText(self.trUtf8('English'))
-        self.LanguageEnglishItem.setStatusTip(
-            self.trUtf8('Set the interface language to English'))
-        self.ToolsAddToolItem.setText(self.trUtf8('Add &Tool...'))
+            translate('MainWindow', 'More information about OpenLP'))
+        self.HelpAboutItem.setShortcut(translate('MainWindow', 'Ctrl+F1'))
+        self.HelpOnlineHelpItem.setText(translate('MainWindow', '&Online Help'))
+        self.HelpWebSiteItem.setText(translate('MainWindow', '&Web Site'))
+        #i18n
+        self.AutoLanguageItem.setText(translate('MainWindow', '&Auto Detect'))
+        self.AutoLanguageItem.setStatusTip(
+            translate('MainWindow', 'Choose System language, if available'))
+        for item in self.LanguageItem:
+            self.LanguageItem[item].setText(self.LanguageItem[item].objectName())
+            self.LanguageItem[item].setStatusTip(
+                translate('MainWindow', 'Set the interface language to %1').arg(self.LanguageItem[item].objectName()))
+        self.ToolsAddToolItem.setText(translate('MainWindow', 'Add &Tool...'))
         self.ToolsAddToolItem.setStatusTip(
-            self.trUtf8('Add an application to the list of tools'))
-        self.action_Preview_Panel.setText(self.trUtf8('&Preview Pane'))
-        self.ModeLiveItem.setText(self.trUtf8('&Live'))
+            translate('MainWindow', 'Add an application to the list of tools'))
+        self.action_Preview_Panel.setText(translate('MainWindow', '&Preview Pane'))
+        self.ModeLiveItem.setText(translate('MainWindow', '&Live'))
 
 
 class MainWindow(QtGui.QMainWindow, Ui_MainWindow):
@@ -508,6 +526,11 @@
         QtCore.QObject.connect(self.FileSaveAsItem,
             QtCore.SIGNAL(u'triggered()'),
             self.ServiceManagerContents.onSaveService)
+        #i18n set signals for languages
+        QtCore.QObject.connect(self.AutoLanguageItem, 
+                QtCore.SIGNAL(u'toggled(bool)'),
+                self.setAutoLanguage)
+        self.LanguageGroup.triggered.connect(LanguageManager.set_language)
         #warning cyclic dependency
         #RenderManager needs to call ThemeManager and
         #ThemeManager needs to call RenderManager
@@ -550,6 +573,13 @@
         log.info(u'Load data from Settings')
         self.settingsForm.postSetUp()
 
+    #i18n
+    def setAutoLanguage(self, value):
+        for action in self.LanguageGroup.actions():
+            action.setDisabled(value)
+        LanguageManager.AutoLanguage = value
+        LanguageManager.set_language(self.LanguageGroup.checkedAction())
+
     def versionCheck(self, version):
         """
         Checks the version of the Application called from openlp.pyw

=== modified file 'openlp/core/ui/plugindialog.py'
--- openlp/core/ui/plugindialog.py	2010-03-21 23:58:01 +0000
+++ openlp/core/ui/plugindialog.py	2010-04-30 20:10:34 +0000
@@ -24,20 +24,21 @@
 ###############################################################################
 
 from PyQt4 import QtCore, QtGui
+from openlp.core.lib import translate
 
 class Ui_PluginViewDialog(object):
-    def setupUi(self, PluginViewDialog):
-        PluginViewDialog.setObjectName(u'PluginViewDialog')
-        PluginViewDialog.setWindowModality(QtCore.Qt.ApplicationModal)
-        PluginViewDialog.resize(554, 344)
-        self.PluginLayout = QtGui.QVBoxLayout(PluginViewDialog)
+    def setupUi(self, PluginForm):
+        PluginForm.setObjectName(u'PluginViewDialog')
+        PluginForm.setWindowModality(QtCore.Qt.ApplicationModal)
+        PluginForm.resize(554, 344)
+        self.PluginLayout = QtGui.QVBoxLayout(PluginForm)
         self.PluginLayout.setSpacing(8)
         self.PluginLayout.setMargin(8)
         self.PluginLayout.setObjectName(u'PluginLayout')
         self.ListLayout = QtGui.QHBoxLayout()
         self.ListLayout.setSpacing(8)
         self.ListLayout.setObjectName(u'ListLayout')
-        self.PluginListWidget = QtGui.QListWidget(PluginViewDialog)
+        self.PluginListWidget = QtGui.QListWidget(PluginForm)
         sizePolicy = QtGui.QSizePolicy(
             QtGui.QSizePolicy.Fixed, QtGui.QSizePolicy.Expanding)
         sizePolicy.setHorizontalStretch(0)
@@ -48,7 +49,7 @@
         self.PluginListWidget.setMaximumSize(QtCore.QSize(192, 16777215))
         self.PluginListWidget.setObjectName(u'PluginListWidget')
         self.ListLayout.addWidget(self.PluginListWidget)
-        self.PluginInfoGroupBox = QtGui.QGroupBox(PluginViewDialog)
+        self.PluginInfoGroupBox = QtGui.QGroupBox(PluginForm)
         self.PluginInfoGroupBox.setAlignment(
             QtCore.Qt.AlignLeading|QtCore.Qt.AlignLeft|QtCore.Qt.AlignVCenter)
         self.PluginInfoGroupBox.setFlat(False)
@@ -87,22 +88,22 @@
             2, QtGui.QFormLayout.FieldRole, self.AboutTextBrowser)
         self.ListLayout.addWidget(self.PluginInfoGroupBox)
         self.PluginLayout.addLayout(self.ListLayout)
-        self.PluginListButtonBox = QtGui.QDialogButtonBox(PluginViewDialog)
+        self.PluginListButtonBox = QtGui.QDialogButtonBox(PluginForm)
         self.PluginListButtonBox.setStandardButtons(QtGui.QDialogButtonBox.Ok)
         self.PluginListButtonBox.setObjectName(u'PluginListButtonBox')
         self.PluginLayout.addWidget(self.PluginListButtonBox)
 
-        self.retranslateUi(PluginViewDialog)
+        self.retranslateUi(PluginForm)
         QtCore.QObject.connect(self.PluginListButtonBox,
-            QtCore.SIGNAL(u'accepted()'), PluginViewDialog.close)
-        QtCore.QMetaObject.connectSlotsByName(PluginViewDialog)
+            QtCore.SIGNAL(u'accepted()'), PluginForm.close)
+        QtCore.QMetaObject.connectSlotsByName(PluginForm)
 
-    def retranslateUi(self, PluginViewDialog):
-        PluginViewDialog.setWindowTitle(self.trUtf8('Plugin List'))
-        self.PluginInfoGroupBox.setTitle(self.trUtf8('Plugin Details'))
-        self.VersionLabel.setText(self.trUtf8('Version:'))
-        self.VersionNumberLabel.setText(self.trUtf8('TextLabel'))
-        self.AboutLabel.setText(self.trUtf8('About:'))
-        self.StatusLabel.setText(self.trUtf8('Status:'))
-        self.StatusComboBox.setItemText(0, self.trUtf8('Active'))
-        self.StatusComboBox.setItemText(1, self.trUtf8('Inactive'))
+    def retranslateUi(self, PluginForm):
+        PluginForm.setWindowTitle(translate('PluginForm', 'Plugin List'))
+        self.PluginInfoGroupBox.setTitle(translate('PluginForm', 'Plugin Details'))
+        self.VersionLabel.setText(translate('PluginForm', 'Version:'))
+        self.VersionNumberLabel.setText(translate('PluginForm', 'TextLabel'))
+        self.AboutLabel.setText(translate('PluginForm', 'About:'))
+        self.StatusLabel.setText(translate('PluginForm', 'Status:'))
+        self.StatusComboBox.setItemText(0, translate('PluginForm', 'Active'))
+        self.StatusComboBox.setItemText(1, translate('PluginForm', 'Inactive'))

=== modified file 'openlp/core/ui/serviceitemeditdialog.py'
--- openlp/core/ui/serviceitemeditdialog.py	2010-03-27 10:12:11 +0000
+++ openlp/core/ui/serviceitemeditdialog.py	2010-04-30 20:10:34 +0000
@@ -24,12 +24,13 @@
 ###############################################################################
 
 from PyQt4 import QtCore, QtGui
+from openlp.core.lib import translate
 
 class Ui_ServiceItemEditDialog(object):
-    def setupUi(self, ServiceItemEditDialog):
-        ServiceItemEditDialog.setObjectName(u'ServiceItemEditDialog')
-        ServiceItemEditDialog.resize(386, 272)
-        self.layoutWidget = QtGui.QWidget(ServiceItemEditDialog)
+    def setupUi(self, ServiceItemEditForm):
+        ServiceItemEditForm.setObjectName(u'ServiceItemEditDialog')
+        ServiceItemEditForm.resize(386, 272)
+        self.layoutWidget = QtGui.QWidget(ServiceItemEditForm)
         self.layoutWidget.setGeometry(QtCore.QRect(20, 20, 351, 241))
         self.layoutWidget.setObjectName(u'layoutWidget')
         self.outerLayout = QtGui.QVBoxLayout(self.layoutWidget)
@@ -62,12 +63,12 @@
         self.buttonBox.setObjectName(u'buttonBox')
         self.outerLayout.addWidget(self.buttonBox)
 
-        self.retranslateUi(ServiceItemEditDialog)
-        QtCore.QMetaObject.connectSlotsByName(ServiceItemEditDialog)
+        self.retranslateUi(ServiceItemEditForm)
+        QtCore.QMetaObject.connectSlotsByName(ServiceItemEditForm)
 
-    def retranslateUi(self, ServiceItemEditDialog):
-        ServiceItemEditDialog.setWindowTitle(self.trUtf8('Service Item Maintenance'))
-        self.upButton.setText(self.trUtf8('Up'))
-        self.deleteButton.setText(self.trUtf8('Delete'))
-        self.downButton.setText(self.trUtf8('Down'))
+    def retranslateUi(self, ServiceItemEditForm):
+        ServiceItemEditForm.setWindowTitle(translate('ServiceItemEditForm', 'Service Item Maintenance'))
+        self.upButton.setText(translate('ServiceItemEditForm', 'Up'))
+        self.deleteButton.setText(translate('ServiceItemEditForm', 'Delete'))
+        self.downButton.setText(translate('ServiceItemEditForm', 'Down'))
 

=== modified file 'openlp/core/ui/servicenotedialog.py'
--- openlp/core/ui/servicenotedialog.py	2010-03-22 18:33:54 +0000
+++ openlp/core/ui/servicenotedialog.py	2010-04-30 20:10:34 +0000
@@ -24,12 +24,13 @@
 ###############################################################################
 
 from PyQt4 import QtCore, QtGui
+from openlp.core.lib import translate
 
 class Ui_ServiceNoteEdit(object):
-    def setupUi(self, ServiceNoteEdit):
-        ServiceNoteEdit.setObjectName(u'ServiceNoteEdit')
-        ServiceNoteEdit.resize(400, 243)
-        self.widget = QtGui.QWidget(ServiceNoteEdit)
+    def setupUi(self, ServiceNoteForm):
+        ServiceNoteForm.setObjectName(u'ServiceNoteEdit')
+        ServiceNoteForm.resize(400, 243)
+        self.widget = QtGui.QWidget(ServiceNoteForm)
         self.widget.setGeometry(QtCore.QRect(20, 10, 361, 223))
         self.widget.setObjectName(u'widget')
         self.verticalLayout = QtGui.QVBoxLayout(self.widget)
@@ -42,8 +43,8 @@
         self.buttonBox.setObjectName(u'buttonBox')
         self.verticalLayout.addWidget(self.buttonBox)
 
-        self.retranslateUi(ServiceNoteEdit)
-        QtCore.QMetaObject.connectSlotsByName(ServiceNoteEdit)
+        self.retranslateUi(ServiceNoteForm)
+        QtCore.QMetaObject.connectSlotsByName(ServiceNoteForm)
 
-    def retranslateUi(self, ServiceNoteEdit):
-        ServiceNoteEdit.setWindowTitle(self.trUtf8('Service Item Notes'))
+    def retranslateUi(self, ServiceNoteForm):
+        ServiceNoteForm.setWindowTitle(translate('ServiceNoteForm', 'Service Item Notes'))

=== modified file 'openlp/core/ui/settingsdialog.py'
--- openlp/core/ui/settingsdialog.py	2010-03-21 23:58:01 +0000
+++ openlp/core/ui/settingsdialog.py	2010-04-30 20:10:34 +0000
@@ -24,19 +24,20 @@
 ###############################################################################
 
 from PyQt4 import QtCore, QtGui
+from openlp.core.lib import translate
 
 class Ui_SettingsDialog(object):
-    def setupUi(self, SettingsDialog):
-        SettingsDialog.setObjectName(u'SettingsDialog')
-        SettingsDialog.resize(724, 502)
-        self.SettingsLayout = QtGui.QVBoxLayout(SettingsDialog)
+    def setupUi(self, SettingsForm):
+        SettingsForm.setObjectName(u'SettingsDialog')
+        SettingsForm.resize(724, 502)
+        self.SettingsLayout = QtGui.QVBoxLayout(SettingsForm)
         self.SettingsLayout.setSpacing(8)
         self.SettingsLayout.setMargin(8)
         self.SettingsLayout.setObjectName(u'SettingsLayout')
-        self.SettingsTabWidget = QtGui.QTabWidget(SettingsDialog)
+        self.SettingsTabWidget = QtGui.QTabWidget(SettingsForm)
         self.SettingsTabWidget.setObjectName(u'SettingsTabWidget')
         self.SettingsLayout.addWidget(self.SettingsTabWidget)
-        self.ButtonsBox = QtGui.QDialogButtonBox(SettingsDialog)
+        self.ButtonsBox = QtGui.QDialogButtonBox(SettingsForm)
         sizePolicy = QtGui.QSizePolicy(
             QtGui.QSizePolicy.Expanding, QtGui.QSizePolicy.Minimum)
         sizePolicy.setHorizontalStretch(0)
@@ -50,13 +51,13 @@
             QtGui.QDialogButtonBox.Cancel|QtGui.QDialogButtonBox.Ok)
         self.ButtonsBox.setObjectName(u'ButtonsBox')
         self.SettingsLayout.addWidget(self.ButtonsBox)
-        self.retranslateUi(SettingsDialog)
+        self.retranslateUi(SettingsForm)
         self.SettingsTabWidget.setCurrentIndex(0)
         QtCore.QObject.connect(self.ButtonsBox,
-            QtCore.SIGNAL(u'accepted()'), SettingsDialog.accept)
+            QtCore.SIGNAL(u'accepted()'), SettingsForm.accept)
         QtCore.QObject.connect(self.ButtonsBox,
-            QtCore.SIGNAL(u'rejected()'), SettingsDialog.reject)
-        QtCore.QMetaObject.connectSlotsByName(SettingsDialog)
+            QtCore.SIGNAL(u'rejected()'), SettingsForm.reject)
+        QtCore.QMetaObject.connectSlotsByName(SettingsForm)
 
-    def retranslateUi(self, SettingsDialog):
-        SettingsDialog.setWindowTitle(self.trUtf8('Settings'))
+    def retranslateUi(self, SettingsForm):
+        SettingsForm.setWindowTitle(translate('SettingsForm', 'Settings'))

=== modified file 'openlp/core/utils/__init__.py'
--- openlp/core/utils/__init__.py	2010-04-28 14:17:42 +0000
+++ openlp/core/utils/__init__.py	2010-04-30 20:10:34 +0000
@@ -184,4 +184,6 @@
         else:
             target.addAction(action)
 
-__all__ = [u'AppLocation', u'check_latest_version', u'add_actions']
+from languagemanager import LanguageManager
+
+__all__ = [u'AppLocation', u'check_latest_version', u'add_actions',  u'LanguageManager']

=== added file 'openlp/core/utils/languagemanager.py'
--- openlp/core/utils/languagemanager.py	1970-01-01 00:00:00 +0000
+++ openlp/core/utils/languagemanager.py	2010-04-30 20:10:34 +0000
@@ -0,0 +1,111 @@
+# -*- coding: utf-8 -*-
+# vim: autoindent shiftwidth=4 expandtab textwidth=80 tabstop=4 softtabstop=4
+
+###############################################################################
+# OpenLP - Open Source Lyrics Projection                                      #
+# --------------------------------------------------------------------------- #
+# Copyright (c) 2008-2010 Raoul Snyman                                        #
+# Portions copyright (c) 2008-2010 Tim Bentley, Jonathan Corwin, Michael      #
+# Gorven, Scott Guerrieri, Christian Richter, Maikel Stuivenberg, Martin      #
+# Thompson, Jon Tibble, Carsten Tinggaard                                     #
+# --------------------------------------------------------------------------- #
+# This program is free software; you can redistribute it and/or modify it     #
+# under the terms of the GNU General Public License as published by the Free  #
+# Software Foundation; version 2 of the License.                              #
+#                                                                             #
+# This program is distributed in the hope that it will be useful, but WITHOUT #
+# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or       #
+# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for    #
+# more details.                                                               #
+#                                                                             #
+# You should have received a copy of the GNU General Public License along     #
+# with this program; if not, write to the Free Software Foundation, Inc., 59  #
+# Temple Place, Suite 330, Boston, MA 02111-1307 USA                          #
+###############################################################################
+
+import logging
+
+from logging import FileHandler
+from PyQt4 import QtCore, QtGui
+import os
+from openlp.core.utils import AppLocation
+from openlp.core.lib import translate
+
+log = logging.getLogger()
+
+class LanguageManager(object):
+    """
+        Helper for Language selection
+    """
+    __qmList__ = None
+    AutoLanguage = False
+    
+    @staticmethod
+    def get_translator(language):
+        if LanguageManager.AutoLanguage :
+            language = QtCore.QLocale.system().name()
+        lang_Path = AppLocation.get_directory(AppLocation.AppDir)
+        lang_Path = os.path.join(lang_Path, u'resources', u'i18n')
+        appTranslator = QtCore.QTranslator()
+        if appTranslator.load("openlp_" + language, lang_Path):
+            return appTranslator
+
+    @staticmethod
+    def find_qm_files():
+        trans_dir = AppLocation.get_directory(AppLocation.AppDir)
+        trans_dir = QtCore.QDir(os.path.join(trans_dir, u'resources', u'i18n'))
+        fileNames = trans_dir.entryList(QtCore.QStringList("*.qm"),
+                QtCore.QDir.Files, QtCore.QDir.Name)
+        for i in fileNames:
+            fileNames.replaceInStrings(i, trans_dir.filePath(i))
+        return fileNames
+
+    @staticmethod
+    def language_name(qmFile):
+        translator = QtCore.QTranslator() 
+        translator.load(qmFile)
+        return translator.translate(u'MainWindow', u'English')
+
+    @staticmethod
+    def get_language():
+        language = unicode(QtCore.QSettings().value(
+            u'general/language', QtCore.QVariant(u'[en]')).toString())
+        log.info(u'Language file: \'%s\' Loaded from conf file' % language)
+        regEx = QtCore.QRegExp("^\[(.*)\]")
+        if regEx.exactMatch(language):
+            LanguageManager.AutoLanguage = True
+            language = regEx.cap(1)
+        return language
+
+    @staticmethod
+    def set_language(action):
+        actionName = u'%s' % action.objectName()
+        qmList = LanguageManager.get_qm_list()
+        if LanguageManager.AutoLanguage :
+            language = u'[%s]' % qmList[actionName]
+        else:
+            language = u'%s' % qmList[actionName]
+        QtCore.QSettings().setValue(
+            u'general/language', QtCore.QVariant(language))
+        log.info(u'Language file: \'%s\' written to conf file' % language)
+        QtGui.QMessageBox.information(None,  
+                    translate('LanguageManager', 'Language'), 
+                    translate('LanguageManager', 
+                        'After restart new Language settings will be used.'))
+
+    @staticmethod
+    def init_qm_list():
+        LanguageManager.__qmList__ = {}
+        qmFiles = LanguageManager.find_qm_files()
+        for i, qmf in enumerate(qmFiles):
+            regEx = QtCore.QRegExp("^.*openlp_(.*).qm")
+            if regEx.exactMatch(qmf):
+                langName = regEx.cap(1)
+                LanguageManager.__qmList__[u'%#2i %s' % (i+1, 
+                            LanguageManager.language_name(qmf))] = langName 
+
+    @staticmethod
+    def get_qm_list():
+        if LanguageManager.__qmList__ == None:
+            LanguageManager.init_qm_list()
+        return LanguageManager.__qmList__

=== modified file 'openlp/plugins/alerts/forms/alertdialog.py'
--- openlp/plugins/alerts/forms/alertdialog.py	2010-04-21 17:21:56 +0000
+++ openlp/plugins/alerts/forms/alertdialog.py	2010-04-30 20:10:34 +0000
@@ -24,15 +24,16 @@
 ###############################################################################
 
 from PyQt4 import QtCore, QtGui
+from openlp.core.lib import translate
 
 class Ui_AlertDialog(object):
-    def setupUi(self, AlertDialog):
-        AlertDialog.setObjectName(u'AlertDialog')
-        AlertDialog.resize(567, 440)
+    def setupUi(self, AlertForm):
+        AlertForm.setObjectName(u'AlertDialog')
+        AlertForm.resize(567, 440)
         icon = QtGui.QIcon()
         icon.addPixmap(QtGui.QPixmap(u':/icon/openlp.org-icon-32.bmp'), QtGui.QIcon.Normal, QtGui.QIcon.Off)
-        AlertDialog.setWindowIcon(icon)
-        self.AlertFormLayout = QtGui.QVBoxLayout(AlertDialog)
+        AlertForm.setWindowIcon(icon)
+        self.AlertFormLayout = QtGui.QVBoxLayout(AlertForm)
         self.AlertFormLayout.setSpacing(8)
         self.AlertFormLayout.setMargin(8)
         self.AlertFormLayout.setObjectName(u'AlertFormLayout')
@@ -40,7 +41,7 @@
         self.AlertTextLayout.setContentsMargins(0, 0, -1, -1)
         self.AlertTextLayout.setSpacing(8)
         self.AlertTextLayout.setObjectName(u'AlertTextLayout')
-        self.AlertEntryLabel = QtGui.QLabel(AlertDialog)
+        self.AlertEntryLabel = QtGui.QLabel(AlertForm)
         sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Preferred, QtGui.QSizePolicy.Fixed)
         sizePolicy.setHorizontalStretch(0)
         sizePolicy.setVerticalStretch(0)
@@ -48,13 +49,13 @@
         self.AlertEntryLabel.setSizePolicy(sizePolicy)
         self.AlertEntryLabel.setObjectName(u'AlertEntryLabel')
         self.AlertTextLayout.setWidget(0, QtGui.QFormLayout.LabelRole, self.AlertEntryLabel)
-        self.AlertParameter = QtGui.QLabel(AlertDialog)
+        self.AlertParameter = QtGui.QLabel(AlertForm)
         self.AlertParameter.setObjectName(u'AlertParameter')
         self.AlertTextLayout.setWidget(1, QtGui.QFormLayout.LabelRole, self.AlertParameter)
-        self.ParameterEdit = QtGui.QLineEdit(AlertDialog)
+        self.ParameterEdit = QtGui.QLineEdit(AlertForm)
         self.ParameterEdit.setObjectName(u'ParameterEdit')
         self.AlertTextLayout.setWidget(1, QtGui.QFormLayout.FieldRole, self.ParameterEdit)
-        self.AlertTextEdit = QtGui.QLineEdit(AlertDialog)
+        self.AlertTextEdit = QtGui.QLineEdit(AlertForm)
         self.AlertTextEdit.setObjectName(u'AlertTextEdit')
         self.AlertTextLayout.setWidget(0, QtGui.QFormLayout.FieldRole, self.AlertTextEdit)
         self.AlertFormLayout.addLayout(self.AlertTextLayout)
@@ -62,27 +63,27 @@
         self.ManagementLayout.setSpacing(8)
         self.ManagementLayout.setContentsMargins(-1, -1, -1, 0)
         self.ManagementLayout.setObjectName(u'ManagementLayout')
-        self.AlertListWidget = QtGui.QListWidget(AlertDialog)
+        self.AlertListWidget = QtGui.QListWidget(AlertForm)
         self.AlertListWidget.setAlternatingRowColors(True)
         self.AlertListWidget.setObjectName(u'AlertListWidget')
         self.ManagementLayout.addWidget(self.AlertListWidget)
         self.ManageButtonLayout = QtGui.QVBoxLayout()
         self.ManageButtonLayout.setSpacing(8)
         self.ManageButtonLayout.setObjectName(u'ManageButtonLayout')
-        self.NewButton = QtGui.QPushButton(AlertDialog)
+        self.NewButton = QtGui.QPushButton(AlertForm)
         icon1 = QtGui.QIcon()
         icon1.addPixmap(QtGui.QPixmap(u':/general/general_new.png'), QtGui.QIcon.Normal, QtGui.QIcon.Off)
         self.NewButton.setIcon(icon1)
         self.NewButton.setObjectName(u'NewButton')
         self.ManageButtonLayout.addWidget(self.NewButton)
-        self.SaveButton = QtGui.QPushButton(AlertDialog)
+        self.SaveButton = QtGui.QPushButton(AlertForm)
         self.SaveButton.setEnabled(False)
         icon2 = QtGui.QIcon()
         icon2.addPixmap(QtGui.QPixmap(u':/general/general_save.png'), QtGui.QIcon.Normal, QtGui.QIcon.Off)
         self.SaveButton.setIcon(icon2)
         self.SaveButton.setObjectName(u'SaveButton')
         self.ManageButtonLayout.addWidget(self.SaveButton)
-        self.DeleteButton = QtGui.QPushButton(AlertDialog)
+        self.DeleteButton = QtGui.QPushButton(AlertForm)
         icon3 = QtGui.QIcon()
         icon3.addPixmap(QtGui.QPixmap(u':/general/general_delete.png'), QtGui.QIcon.Normal, QtGui.QIcon.Off)
         self.DeleteButton.setIcon(icon3)
@@ -98,18 +99,18 @@
         spacerItem1 = QtGui.QSpacerItem(181, 0, QtGui.QSizePolicy.Expanding,
             QtGui.QSizePolicy.Minimum)
         self.AlertButtonLayout.addItem(spacerItem1)
-        self.DisplayButton = QtGui.QPushButton(AlertDialog)
+        self.DisplayButton = QtGui.QPushButton(AlertForm)
         icon4 = QtGui.QIcon()
         icon4.addPixmap(QtGui.QPixmap(u':/general/general_live.png'),
             QtGui.QIcon.Normal, QtGui.QIcon.Off)
         self.DisplayButton.setIcon(icon4)
         self.DisplayButton.setObjectName(u'DisplayButton')
         self.AlertButtonLayout.addWidget(self.DisplayButton)
-        self.DisplayCloseButton = QtGui.QPushButton(AlertDialog)
+        self.DisplayCloseButton = QtGui.QPushButton(AlertForm)
         self.DisplayCloseButton.setIcon(icon4)
         self.DisplayCloseButton.setObjectName(u'DisplayCloseButton')
         self.AlertButtonLayout.addWidget(self.DisplayCloseButton)
-        self.CloseButton = QtGui.QPushButton(AlertDialog)
+        self.CloseButton = QtGui.QPushButton(AlertForm)
         icon5 = QtGui.QIcon()
         icon5.addPixmap(QtGui.QPixmap(u':/system/system_close.png'),
             QtGui.QIcon.Normal, QtGui.QIcon.Off)
@@ -120,26 +121,26 @@
         self.AlertEntryLabel.setBuddy(self.AlertTextEdit)
         self.AlertParameter.setBuddy(self.ParameterEdit)
 
-        self.retranslateUi(AlertDialog)
-        QtCore.QObject.connect(self.CloseButton, QtCore.SIGNAL(u'clicked()'), AlertDialog.close)
-        QtCore.QMetaObject.connectSlotsByName(AlertDialog)
-        AlertDialog.setTabOrder(self.AlertTextEdit, self.ParameterEdit)
-        AlertDialog.setTabOrder(self.ParameterEdit, self.AlertListWidget)
-        AlertDialog.setTabOrder(self.AlertListWidget, self.NewButton)
-        AlertDialog.setTabOrder(self.NewButton, self.SaveButton)
-        AlertDialog.setTabOrder(self.SaveButton, self.DeleteButton)
-        AlertDialog.setTabOrder(self.DeleteButton, self.DisplayButton)
-        AlertDialog.setTabOrder(self.DisplayButton, self.DisplayCloseButton)
-        AlertDialog.setTabOrder(self.DisplayCloseButton, self.CloseButton)
+        self.retranslateUi(AlertForm)
+        QtCore.QObject.connect(self.CloseButton, QtCore.SIGNAL(u'clicked()'), AlertForm.close)
+        QtCore.QMetaObject.connectSlotsByName(AlertForm)
+        AlertForm.setTabOrder(self.AlertTextEdit, self.ParameterEdit)
+        AlertForm.setTabOrder(self.ParameterEdit, self.AlertListWidget)
+        AlertForm.setTabOrder(self.AlertListWidget, self.NewButton)
+        AlertForm.setTabOrder(self.NewButton, self.SaveButton)
+        AlertForm.setTabOrder(self.SaveButton, self.DeleteButton)
+        AlertForm.setTabOrder(self.DeleteButton, self.DisplayButton)
+        AlertForm.setTabOrder(self.DisplayButton, self.DisplayCloseButton)
+        AlertForm.setTabOrder(self.DisplayCloseButton, self.CloseButton)
 
-    def retranslateUi(self, AlertDialog):
-        AlertDialog.setWindowTitle(self.trUtf8('Alert Message'))
-        self.AlertEntryLabel.setText(self.trUtf8('Alert &text:'))
-        self.AlertParameter.setText(self.trUtf8('&Parameter(s):'))
-        self.NewButton.setText(self.trUtf8('&New'))
-        self.SaveButton.setText(self.trUtf8('&Save'))
-        self.DeleteButton.setText(self.trUtf8('&Delete'))
-        self.DisplayButton.setText(self.trUtf8('Displ&ay'))
-        self.DisplayCloseButton.setText(self.trUtf8('Display && Cl&ose'))
-        self.CloseButton.setText(self.trUtf8('&Close'))
+    def retranslateUi(self, AlertForm):
+        AlertForm.setWindowTitle(translate('AlertForm', 'Alert Message'))
+        self.AlertEntryLabel.setText(translate('AlertForm', 'Alert &text:'))
+        self.AlertParameter.setText(translate('AlertForm', '&Parameter(s):'))
+        self.NewButton.setText(translate('AlertForm', '&New'))
+        self.SaveButton.setText(translate('AlertForm', '&Save'))
+        self.DeleteButton.setText(translate('AlertForm', '&Delete'))
+        self.DisplayButton.setText(translate('AlertForm', 'Displ&ay'))
+        self.DisplayCloseButton.setText(translate('AlertForm', 'Display && Cl&ose'))
+        self.CloseButton.setText(translate('AlertForm', '&Close'))
 

=== modified file 'openlp/plugins/bibles/forms/bibleimportwizard.py'
--- openlp/plugins/bibles/forms/bibleimportwizard.py	2010-03-23 19:04:15 +0000
+++ openlp/plugins/bibles/forms/bibleimportwizard.py	2010-04-30 20:10:34 +0000
@@ -24,14 +24,15 @@
 ###############################################################################
 
 from PyQt4 import QtCore, QtGui
+from openlp.core.lib import translate
 
 class Ui_BibleImportWizard(object):
-    def setupUi(self, BibleImportWizard):
-        BibleImportWizard.setObjectName(u'BibleImportWizard')
-        BibleImportWizard.resize(550, 386)
-        BibleImportWizard.setModal(True)
-        BibleImportWizard.setWizardStyle(QtGui.QWizard.ModernStyle)
-        BibleImportWizard.setOptions(
+    def setupUi(self, ImportWizardForm):
+        ImportWizardForm.setObjectName(u'BibleImportWizard')
+        ImportWizardForm.resize(550, 386)
+        ImportWizardForm.setModal(True)
+        ImportWizardForm.setWizardStyle(QtGui.QWizard.ModernStyle)
+        ImportWizardForm.setOptions(
             QtGui.QWizard.IndependentPages | \
             QtGui.QWizard.NoBackButtonOnStartPage | \
             QtGui.QWizard.NoBackButtonOnLastPage)
@@ -57,7 +58,7 @@
         spacerItem1 = QtGui.QSpacerItem(20, 40,
             QtGui.QSizePolicy.Minimum, QtGui.QSizePolicy.Expanding)
         self.WelcomeLayout.addItem(spacerItem1)
-        BibleImportWizard.addPage(self.WelcomePage)
+        ImportWizardForm.addPage(self.WelcomePage)
         self.SelectPage = QtGui.QWizardPage()
         self.SelectPage.setObjectName(u'SelectPage')
         self.SelectPageLayout = QtGui.QVBoxLayout(self.SelectPage)
@@ -251,7 +252,7 @@
         self.WebDownloadLayout.addWidget(self.WebDownloadTabWidget)
         self.FormatWidget.addWidget(self.WebDownloadPage)
         self.SelectPageLayout.addWidget(self.FormatWidget)
-        BibleImportWizard.addPage(self.SelectPage)
+        ImportWizardForm.addPage(self.SelectPage)
         self.LicenseDetailsPage = QtGui.QWizardPage()
         self.LicenseDetailsPage.setObjectName(u'LicenseDetailsPage')
         self.LicenseDetailsLayout = QtGui.QFormLayout(self.LicenseDetailsPage)
@@ -282,7 +283,7 @@
         self.PermissionEdit.setObjectName(u'PermissionEdit')
         self.LicenseDetailsLayout.setWidget(2, QtGui.QFormLayout.FieldRole,
             self.PermissionEdit)
-        BibleImportWizard.addPage(self.LicenseDetailsPage)
+        ImportWizardForm.addPage(self.LicenseDetailsPage)
         self.ImportPage = QtGui.QWizardPage()
         self.ImportPage.setObjectName(u'ImportPage')
         self.ImportLayout = QtGui.QVBoxLayout(self.ImportPage)
@@ -296,58 +297,58 @@
         self.ImportProgressBar.setValue(0)
         self.ImportProgressBar.setObjectName(u'ImportProgressBar')
         self.ImportLayout.addWidget(self.ImportProgressBar)
-        BibleImportWizard.addPage(self.ImportPage)
+        ImportWizardForm.addPage(self.ImportPage)
 
-        self.retranslateUi(BibleImportWizard)
+        self.retranslateUi(ImportWizardForm)
         self.FormatWidget.setCurrentIndex(0)
         self.WebDownloadTabWidget.setCurrentIndex(0)
         QtCore.QObject.connect(self.FormatComboBox,
             QtCore.SIGNAL(u'currentIndexChanged(int)'),
             self.FormatWidget.setCurrentIndex)
-        QtCore.QMetaObject.connectSlotsByName(BibleImportWizard)
+        QtCore.QMetaObject.connectSlotsByName(ImportWizardForm)
 
-    def retranslateUi(self, BibleImportWizard):
-        BibleImportWizard.setWindowTitle(self.trUtf8('Bible Import Wizard'))
+    def retranslateUi(self, ImportWizardForm):
+        ImportWizardForm.setWindowTitle(translate('ImportWizardForm', 'Bible Import Wizard'))
         self.TitleLabel.setText(
             u'<span style=\" font-size:14pt; font-weight:600;\">' + \
-            self.trUtf8('Welcome to the Bible Import Wizard') + u'</span>')
+            translate('ImportWizardForm', 'Welcome to the Bible Import Wizard') + u'</span>')
         self.InformationLabel.setText(
-            self.trUtf8('This wizard will help you to import Bibles from a '
+            translate('ImportWizardForm', 'This wizard will help you to import Bibles from a '
                 'variety of formats. Click the next button below to start the '
                 'process by selecting a format to import from.'))
-        self.SelectPage.setTitle(self.trUtf8('Select Import Source'))
+        self.SelectPage.setTitle(translate('ImportWizardForm', 'Select Import Source'))
         self.SelectPage.setSubTitle(
-            self.trUtf8('Select the import format, and where to import from.'))
-        self.FormatLabel.setText(self.trUtf8('Format:'))
-        self.FormatComboBox.setItemText(0, self.trUtf8('OSIS'))
-        self.FormatComboBox.setItemText(1, self.trUtf8('CSV'))
-        self.FormatComboBox.setItemText(2, self.trUtf8('OpenSong'))
-        self.FormatComboBox.setItemText(3, self.trUtf8('Web Download'))
-        self.OsisLocationLabel.setText(self.trUtf8('File Location:'))
-        self.BooksLocationLabel.setText(self.trUtf8('Books Location:'))
-        self.VerseLocationLabel.setText(self.trUtf8('Verse Location:'))
-        self.OpenSongFileLabel.setText(self.trUtf8('Bible Filename:'))
-        self.LocationLabel.setText(self.trUtf8('Location:'))
-        self.LocationComboBox.setItemText(0, self.trUtf8('Crosswalk'))
-        self.LocationComboBox.setItemText(1, self.trUtf8('BibleGateway'))
-        self.BibleLabel.setText(self.trUtf8('Bible:'))
+            translate('ImportWizardForm', 'Select the import format, and where to import from.'))
+        self.FormatLabel.setText(translate('ImportWizardForm', 'Format:'))
+        self.FormatComboBox.setItemText(0, translate('ImportWizardForm', 'OSIS'))
+        self.FormatComboBox.setItemText(1, translate('ImportWizardForm', 'CSV'))
+        self.FormatComboBox.setItemText(2, translate('ImportWizardForm', 'OpenSong'))
+        self.FormatComboBox.setItemText(3, translate('ImportWizardForm', 'Web Download'))
+        self.OsisLocationLabel.setText(translate('ImportWizardForm', 'File Location:'))
+        self.BooksLocationLabel.setText(translate('ImportWizardForm', 'Books Location:'))
+        self.VerseLocationLabel.setText(translate('ImportWizardForm', 'Verse Location:'))
+        self.OpenSongFileLabel.setText(translate('ImportWizardForm', 'Bible Filename:'))
+        self.LocationLabel.setText(translate('ImportWizardForm', 'Location:'))
+        self.LocationComboBox.setItemText(0, translate('ImportWizardForm', 'Crosswalk'))
+        self.LocationComboBox.setItemText(1, translate('ImportWizardForm', 'BibleGateway'))
+        self.BibleLabel.setText(translate('ImportWizardForm', 'Bible:'))
         self.WebDownloadTabWidget.setTabText(
             self.WebDownloadTabWidget.indexOf(self.DownloadOptionsTab),
-            self.trUtf8('Download Options'))
-        self.AddressLabel.setText(self.trUtf8('Server:'))
-        self.UsernameLabel.setText(self.trUtf8('Username:'))
-        self.PasswordLabel.setText(self.trUtf8('Password:'))
+            translate('ImportWizardForm', 'Download Options'))
+        self.AddressLabel.setText(translate('ImportWizardForm', 'Server:'))
+        self.UsernameLabel.setText(translate('ImportWizardForm', 'Username:'))
+        self.PasswordLabel.setText(translate('ImportWizardForm', 'Password:'))
         self.WebDownloadTabWidget.setTabText(
             self.WebDownloadTabWidget.indexOf(self.ProxyServerTab),
-            self.trUtf8('Proxy Server (Optional)'))
-        self.LicenseDetailsPage.setTitle(self.trUtf8('License Details'))
+            translate('ImportWizardForm', 'Proxy Server (Optional)'))
+        self.LicenseDetailsPage.setTitle(translate('ImportWizardForm', 'License Details'))
         self.LicenseDetailsPage.setSubTitle(
-            self.trUtf8('Set up the Bible\'s license details.'))
-        self.VersionNameLabel.setText(self.trUtf8('Version Name:'))
-        self.CopyrightLabel.setText(self.trUtf8('Copyright:'))
-        self.PermissionLabel.setText(self.trUtf8('Permission:'))
-        self.ImportPage.setTitle(self.trUtf8('Importing'))
+            translate('ImportWizardForm', 'Set up the Bible\'s license details.'))
+        self.VersionNameLabel.setText(translate('ImportWizardForm', 'Version Name:'))
+        self.CopyrightLabel.setText(translate('ImportWizardForm', 'Copyright:'))
+        self.PermissionLabel.setText(translate('ImportWizardForm', 'Permission:'))
+        self.ImportPage.setTitle(translate('ImportWizardForm', 'Importing'))
         self.ImportPage.setSubTitle(
-            self.trUtf8('Please wait while your Bible is imported.'))
-        self.ImportProgressLabel.setText(self.trUtf8('Ready.'))
+            translate('ImportWizardForm', 'Please wait while your Bible is imported.'))
+        self.ImportProgressLabel.setText(translate('ImportWizardForm', 'Ready.'))
         self.ImportProgressBar.setFormat(u'%p%')

=== modified file 'openlp/plugins/custom/forms/editcustomdialog.py'
--- openlp/plugins/custom/forms/editcustomdialog.py	2010-04-08 19:46:50 +0000
+++ openlp/plugins/custom/forms/editcustomdialog.py	2010-04-30 20:10:34 +0000
@@ -24,35 +24,36 @@
 ###############################################################################
 
 from PyQt4 import QtCore, QtGui
+from openlp.core.lib import translate
 
 class Ui_customEditDialog(object):
-    def setupUi(self, customEditDialog):
-        customEditDialog.setObjectName(u'customEditDialog')
-        customEditDialog.resize(590, 541)
+    def setupUi(self, EditCustomForm):
+        EditCustomForm.setObjectName(u'customEditDialog')
+        EditCustomForm.resize(590, 541)
         icon = QtGui.QIcon()
         icon.addPixmap(QtGui.QPixmap(u':/icon/openlp.org-icon-32.bmp'),
             QtGui.QIcon.Normal, QtGui.QIcon.Off)
-        customEditDialog.setWindowIcon(icon)
-        self.gridLayout = QtGui.QGridLayout(customEditDialog)
+        EditCustomForm.setWindowIcon(icon)
+        self.gridLayout = QtGui.QGridLayout(EditCustomForm)
         self.gridLayout.setObjectName(u'gridLayout')
         self.horizontalLayout = QtGui.QHBoxLayout()
         self.horizontalLayout.setObjectName(u'horizontalLayout')
-        self.TitleLabel = QtGui.QLabel(customEditDialog)
+        self.TitleLabel = QtGui.QLabel(EditCustomForm)
         self.TitleLabel.setObjectName(u'TitleLabel')
         self.horizontalLayout.addWidget(self.TitleLabel)
-        self.TitleEdit = QtGui.QLineEdit(customEditDialog)
+        self.TitleEdit = QtGui.QLineEdit(EditCustomForm)
         self.TitleEdit.setObjectName(u'TitleEdit')
         self.horizontalLayout.addWidget(self.TitleEdit)
         self.gridLayout.addLayout(self.horizontalLayout, 0, 0, 1, 1)
         self.horizontalLayout_4 = QtGui.QHBoxLayout()
         self.horizontalLayout_4.setObjectName(u'horizontalLayout_4')
-        self.VerseListView = QtGui.QListWidget(customEditDialog)
+        self.VerseListView = QtGui.QListWidget(EditCustomForm)
         self.VerseListView.setAlternatingRowColors(True)
         self.VerseListView.setObjectName(u'VerseListView')
         self.horizontalLayout_4.addWidget(self.VerseListView)
         self.verticalLayout = QtGui.QVBoxLayout()
         self.verticalLayout.setObjectName(u'verticalLayout')
-        self.UpButton = QtGui.QPushButton(customEditDialog)
+        self.UpButton = QtGui.QPushButton(EditCustomForm)
         icon1 = QtGui.QIcon()
         icon1.addPixmap(QtGui.QPixmap(u':/services/service_up.png'),
             QtGui.QIcon.Normal, QtGui.QIcon.Off)
@@ -62,7 +63,7 @@
         spacerItem = QtGui.QSpacerItem(20, 128, QtGui.QSizePolicy.Minimum,
             QtGui.QSizePolicy.Expanding)
         self.verticalLayout.addItem(spacerItem)
-        self.DownButton = QtGui.QPushButton(customEditDialog)
+        self.DownButton = QtGui.QPushButton(EditCustomForm)
         icon2 = QtGui.QIcon()
         icon2.addPixmap(QtGui.QPixmap(u':/services/service_down.png'),
             QtGui.QIcon.Normal, QtGui.QIcon.Off)
@@ -71,7 +72,7 @@
         self.verticalLayout.addWidget(self.DownButton)
         self.horizontalLayout_4.addLayout(self.verticalLayout)
         self.gridLayout.addLayout(self.horizontalLayout_4, 1, 0, 1, 1)
-        self.EditWidget = QtGui.QWidget(customEditDialog)
+        self.EditWidget = QtGui.QWidget(EditCustomForm)
         self.EditWidget.setObjectName(u'EditWidget')
         self.EditLayout_3 = QtGui.QHBoxLayout(self.EditWidget)
         self.EditLayout_3.setSpacing(8)
@@ -112,63 +113,63 @@
         self.gridLayout.addWidget(self.EditWidget, 2, 0, 1, 1)
         self.horizontalLayout_3 = QtGui.QHBoxLayout()
         self.horizontalLayout_3.setObjectName(u'horizontalLayout_3')
-        self.ThemeLabel = QtGui.QLabel(customEditDialog)
+        self.ThemeLabel = QtGui.QLabel(EditCustomForm)
         self.ThemeLabel.setObjectName(u'ThemeLabel')
         self.horizontalLayout_3.addWidget(self.ThemeLabel)
-        self.ThemeComboBox = QtGui.QComboBox(customEditDialog)
+        self.ThemeComboBox = QtGui.QComboBox(EditCustomForm)
         self.ThemeComboBox.setObjectName(u'ThemeComboBox')
         self.horizontalLayout_3.addWidget(self.ThemeComboBox)
         self.gridLayout.addLayout(self.horizontalLayout_3, 3, 0, 1, 1)
         self.horizontalLayout_2 = QtGui.QHBoxLayout()
         self.horizontalLayout_2.setObjectName(u'horizontalLayout_2')
-        self.CreditLabel = QtGui.QLabel(customEditDialog)
+        self.CreditLabel = QtGui.QLabel(EditCustomForm)
         self.CreditLabel.setObjectName(u'CreditLabel')
         self.horizontalLayout_2.addWidget(self.CreditLabel)
-        self.CreditEdit = QtGui.QLineEdit(customEditDialog)
+        self.CreditEdit = QtGui.QLineEdit(EditCustomForm)
         self.CreditEdit.setObjectName(u'CreditEdit')
         self.horizontalLayout_2.addWidget(self.CreditEdit)
         self.gridLayout.addLayout(self.horizontalLayout_2, 4, 0, 1, 1)
-        self.buttonBox = QtGui.QDialogButtonBox(customEditDialog)
+        self.buttonBox = QtGui.QDialogButtonBox(EditCustomForm)
         self.buttonBox.setStandardButtons(QtGui.QDialogButtonBox.Cancel|QtGui.QDialogButtonBox.Save)
         self.buttonBox.setObjectName(u'buttonBox')
         self.gridLayout.addWidget(self.buttonBox, 5, 0, 1, 1)
 
-        self.retranslateUi(customEditDialog)
+        self.retranslateUi(EditCustomForm)
         QtCore.QObject.connect(self.buttonBox, QtCore.SIGNAL(u'accepted()'),
-            customEditDialog.accept)
+            EditCustomForm.accept)
         QtCore.QObject.connect(self.buttonBox, QtCore.SIGNAL(u'rejected()'),
-            customEditDialog.closePressed)
-        QtCore.QMetaObject.connectSlotsByName(customEditDialog)
-        customEditDialog.setTabOrder(self.TitleEdit, self.VerseTextEdit)
-        customEditDialog.setTabOrder(self.VerseTextEdit, self.AddButton)
-        customEditDialog.setTabOrder(self.AddButton, self.VerseListView)
-        customEditDialog.setTabOrder(self.VerseListView, self.EditButton)
-        customEditDialog.setTabOrder(self.EditButton, self.EditAllButton)
-        customEditDialog.setTabOrder(self.EditAllButton, self.SaveButton)
-        customEditDialog.setTabOrder(self.SaveButton, self.DeleteButton)
-        customEditDialog.setTabOrder(self.DeleteButton, self.CreditEdit)
-        customEditDialog.setTabOrder(self.CreditEdit, self.UpButton)
-        customEditDialog.setTabOrder(self.UpButton, self.DownButton)
-        customEditDialog.setTabOrder(self.DownButton, self.ThemeComboBox)
+            EditCustomForm.closePressed)
+        QtCore.QMetaObject.connectSlotsByName(EditCustomForm)
+        EditCustomForm.setTabOrder(self.TitleEdit, self.VerseTextEdit)
+        EditCustomForm.setTabOrder(self.VerseTextEdit, self.AddButton)
+        EditCustomForm.setTabOrder(self.AddButton, self.VerseListView)
+        EditCustomForm.setTabOrder(self.VerseListView, self.EditButton)
+        EditCustomForm.setTabOrder(self.EditButton, self.EditAllButton)
+        EditCustomForm.setTabOrder(self.EditAllButton, self.SaveButton)
+        EditCustomForm.setTabOrder(self.SaveButton, self.DeleteButton)
+        EditCustomForm.setTabOrder(self.DeleteButton, self.CreditEdit)
+        EditCustomForm.setTabOrder(self.CreditEdit, self.UpButton)
+        EditCustomForm.setTabOrder(self.UpButton, self.DownButton)
+        EditCustomForm.setTabOrder(self.DownButton, self.ThemeComboBox)
 
-    def retranslateUi(self, customEditDialog):
-        customEditDialog.setWindowTitle(self.trUtf8('Edit Custom Slides'))
-        self.UpButton.setToolTip(self.trUtf8('Move slide Up 1'))
-        self.DownButton.setToolTip(self.trUtf8('Move slide down 1'))
-        self.TitleLabel.setText(self.trUtf8('Title:'))
-        self.AddButton.setText(self.trUtf8('Add New'))
-        self.AddButton.setToolTip(self.trUtf8('Add new slide at bottom'))
-        self.EditButton.setText(self.trUtf8('Edit'))
-        self.EditButton.setToolTip(self.trUtf8('Edit selected slide'))
-        self.EditAllButton.setText(self.trUtf8('Edit All'))
-        self.EditAllButton.setToolTip(self.trUtf8('Edit all slides'))
-        self.SaveButton.setText(self.trUtf8('Save'))
-        self.SaveButton.setToolTip(self.trUtf8('Replace edited slide'))
-        self.DeleteButton.setText(self.trUtf8('Delete'))
-        self.DeleteButton.setToolTip(self.trUtf8('Delete selected slide'))
-        self.ClearButton.setText(self.trUtf8('Clear'))
-        self.ClearButton.setToolTip(self.trUtf8('Clear edit area'))
-        self.SplitButton.setText(self.trUtf8('Split Slide'))
-        self.SplitButton.setToolTip(self.trUtf8('Add slide split'))
-        self.ThemeLabel.setText(self.trUtf8('Theme:'))
-        self.CreditLabel.setText(self.trUtf8('Credits:'))
+    def retranslateUi(self, EditCustomForm):
+        EditCustomForm.setWindowTitle(translate('EditCustomForm', 'Edit Custom Slides'))
+        self.UpButton.setToolTip(translate('EditCustomForm', 'Move slide Up 1'))
+        self.DownButton.setToolTip(translate('EditCustomForm', 'Move slide down 1'))
+        self.TitleLabel.setText(translate('EditCustomForm', 'Title:'))
+        self.AddButton.setText(translate('EditCustomForm', 'Add New'))
+        self.AddButton.setToolTip(translate('EditCustomForm', 'Add new slide at bottom'))
+        self.EditButton.setText(translate('EditCustomForm', 'Edit'))
+        self.EditButton.setToolTip(translate('EditCustomForm', 'Edit selected slide'))
+        self.EditAllButton.setText(translate('EditCustomForm', 'Edit All'))
+        self.EditAllButton.setToolTip(translate('EditCustomForm', 'Edit all slides'))
+        self.SaveButton.setText(translate('EditCustomForm', 'Save'))
+        self.SaveButton.setToolTip(translate('EditCustomForm', 'Replace edited slide'))
+        self.DeleteButton.setText(translate('EditCustomForm', 'Delete'))
+        self.DeleteButton.setToolTip(translate('EditCustomForm', 'Delete selected slide'))
+        self.ClearButton.setText(translate('EditCustomForm', 'Clear'))
+        self.ClearButton.setToolTip(translate('EditCustomForm', 'Clear edit area'))
+        self.SplitButton.setText(translate('EditCustomForm', 'Split Slide'))
+        self.SplitButton.setToolTip(translate('EditCustomForm', 'Add slide split'))
+        self.ThemeLabel.setText(translate('EditCustomForm', 'Theme:'))
+        self.CreditLabel.setText(translate('EditCustomForm', 'Credits:'))

=== modified file 'openlp/plugins/songs/forms/authorsdialog.py'
--- openlp/plugins/songs/forms/authorsdialog.py	2010-03-21 23:58:01 +0000
+++ openlp/plugins/songs/forms/authorsdialog.py	2010-04-30 20:10:34 +0000
@@ -24,40 +24,41 @@
 ###############################################################################
 
 from PyQt4 import QtCore, QtGui
+from openlp.core.lib import translate
 
 class Ui_AuthorsDialog(object):
-    def setupUi(self, AuthorsDialog):
-        AuthorsDialog.setObjectName(u'AuthorsDialog')
-        AuthorsDialog.resize(393, 147)
-        self.AuthorsLayout = QtGui.QFormLayout(AuthorsDialog)
+    def setupUi(self, AuthorsForm):
+        AuthorsForm.setObjectName(u'AuthorsDialog')
+        AuthorsForm.resize(393, 147)
+        self.AuthorsLayout = QtGui.QFormLayout(AuthorsForm)
         self.AuthorsLayout.setMargin(8)
         self.AuthorsLayout.setSpacing(8)
         self.AuthorsLayout.setObjectName(u'AuthorsLayout')
-        self.FirstNameLabel = QtGui.QLabel(AuthorsDialog)
+        self.FirstNameLabel = QtGui.QLabel(AuthorsForm)
         self.FirstNameLabel.setObjectName(u'FirstNameLabel')
         self.AuthorsLayout.setWidget(0,
             QtGui.QFormLayout.LabelRole, self.FirstNameLabel)
-        self.FirstNameEdit = QtGui.QLineEdit(AuthorsDialog)
+        self.FirstNameEdit = QtGui.QLineEdit(AuthorsForm)
         self.FirstNameEdit.setObjectName(u'FirstNameEdit')
         self.AuthorsLayout.setWidget(0,
             QtGui.QFormLayout.FieldRole, self.FirstNameEdit)
-        self.LastNameLabel = QtGui.QLabel(AuthorsDialog)
+        self.LastNameLabel = QtGui.QLabel(AuthorsForm)
         self.LastNameLabel.setObjectName(u'LastNameLabel')
         self.AuthorsLayout.setWidget(1,
             QtGui.QFormLayout.LabelRole, self.LastNameLabel)
-        self.LastNameEdit = QtGui.QLineEdit(AuthorsDialog)
+        self.LastNameEdit = QtGui.QLineEdit(AuthorsForm)
         self.LastNameEdit.setObjectName(u'LastNameEdit')
         self.AuthorsLayout.setWidget(1,
             QtGui.QFormLayout.FieldRole, self.LastNameEdit)
-        self.DisplayLabel = QtGui.QLabel(AuthorsDialog)
+        self.DisplayLabel = QtGui.QLabel(AuthorsForm)
         self.DisplayLabel.setObjectName(u'DisplayLabel')
         self.AuthorsLayout.setWidget(2,
             QtGui.QFormLayout.LabelRole, self.DisplayLabel)
-        self.DisplayEdit = QtGui.QLineEdit(AuthorsDialog)
+        self.DisplayEdit = QtGui.QLineEdit(AuthorsForm)
         self.DisplayEdit.setObjectName(u'DisplayEdit')
         self.AuthorsLayout.setWidget(2,
             QtGui.QFormLayout.FieldRole, self.DisplayEdit)
-        self.AuthorButtonBox = QtGui.QDialogButtonBox(AuthorsDialog)
+        self.AuthorButtonBox = QtGui.QDialogButtonBox(AuthorsForm)
         self.AuthorButtonBox.setOrientation(QtCore.Qt.Horizontal)
         self.AuthorButtonBox.setStandardButtons(
             QtGui.QDialogButtonBox.Cancel|QtGui.QDialogButtonBox.Save)
@@ -65,15 +66,15 @@
         self.AuthorsLayout.setWidget(3,
             QtGui.QFormLayout.FieldRole, self.AuthorButtonBox)
 
-        self.retranslateUi(AuthorsDialog)
-        QtCore.QObject.connect(self.AuthorButtonBox,
-            QtCore.SIGNAL(u'accepted()'), AuthorsDialog.accept)
-        QtCore.QObject.connect(self.AuthorButtonBox,
-            QtCore.SIGNAL(u'rejected()'), AuthorsDialog.reject)
-        QtCore.QMetaObject.connectSlotsByName(AuthorsDialog)
+        self.retranslateUi(AuthorsForm)
+        QtCore.QObject.connect(self.AuthorButtonBox,
+            QtCore.SIGNAL(u'accepted()'), AuthorsForm.accept)
+        QtCore.QObject.connect(self.AuthorButtonBox,
+            QtCore.SIGNAL(u'rejected()'), AuthorsForm.reject)
+        QtCore.QMetaObject.connectSlotsByName(AuthorsForm)
 
-    def retranslateUi(self, AuthorsDialog):
-        AuthorsDialog.setWindowTitle(self.trUtf8('Author Maintenance'))
-        self.DisplayLabel.setText(self.trUtf8('Display name:'))
-        self.FirstNameLabel.setText(self.trUtf8('First name:'))
-        self.LastNameLabel.setText(self.trUtf8('Last name:'))
+    def retranslateUi(self, AuthorsForm):
+        AuthorsForm.setWindowTitle(translate('AuthorsForm', 'Author Maintenance'))
+        self.DisplayLabel.setText(translate('AuthorsForm', 'Display name:'))
+        self.FirstNameLabel.setText(translate('AuthorsForm', 'First name:'))
+        self.LastNameLabel.setText(translate('AuthorsForm', 'Last name:'))

=== modified file 'openlp/plugins/songs/forms/editsongdialog.py'
--- openlp/plugins/songs/forms/editsongdialog.py	2010-04-19 05:31:31 +0000
+++ openlp/plugins/songs/forms/editsongdialog.py	2010-04-30 20:10:34 +0000
@@ -24,20 +24,21 @@
 ###############################################################################
 
 from PyQt4 import QtCore, QtGui
+from openlp.core.lib import translate
 
 from openlp.core.lib import build_icon
 
 class Ui_EditSongDialog(object):
-    def setupUi(self, EditSongDialog):
-        EditSongDialog.setObjectName(u'EditSongDialog')
-        EditSongDialog.resize(645, 417)
+    def setupUi(self, EditSongForm):
+        EditSongForm.setObjectName(u'EditSongDialog')
+        EditSongForm.resize(645, 417)
         icon = build_icon(u':/icon/openlp.org-icon-32.bmp')
-        EditSongDialog.setWindowIcon(icon)
-        EditSongDialog.setModal(True)
-        self.verticalLayout = QtGui.QVBoxLayout(EditSongDialog)
+        EditSongForm.setWindowIcon(icon)
+        EditSongForm.setModal(True)
+        self.verticalLayout = QtGui.QVBoxLayout(EditSongForm)
         self.verticalLayout.setMargin(8)
         self.verticalLayout.setObjectName(u'verticalLayout')
-        self.SongTabWidget = QtGui.QTabWidget(EditSongDialog)
+        self.SongTabWidget = QtGui.QTabWidget(EditSongForm)
         self.SongTabWidget.setObjectName(u'SongTabWidget')
         self.LyricsTab = QtGui.QWidget()
         self.LyricsTab.setObjectName(u'LyricsTab')
@@ -379,75 +380,75 @@
         self.ThemeTabLayout.addItem(spacerItem5)
         self.SongTabWidget.addTab(self.ThemeTab, u'')
         self.verticalLayout.addWidget(self.SongTabWidget)
-        self.ButtonBox = QtGui.QDialogButtonBox(EditSongDialog)
+        self.ButtonBox = QtGui.QDialogButtonBox(EditSongForm)
         self.ButtonBox.setStandardButtons(
             QtGui.QDialogButtonBox.Cancel | QtGui.QDialogButtonBox.Save)
         self.ButtonBox.setObjectName(u'ButtonBox')
         self.verticalLayout.addWidget(self.ButtonBox)
 
-        self.retranslateUi(EditSongDialog)
-        QtCore.QObject.connect(self.ButtonBox,
-            QtCore.SIGNAL(u'rejected()'), EditSongDialog.closePressed)
-        QtCore.QObject.connect(self.ButtonBox,
-            QtCore.SIGNAL(u'accepted()'), EditSongDialog.accept)
-        QtCore.QMetaObject.connectSlotsByName(EditSongDialog)
-        EditSongDialog.setTabOrder(self.SongTabWidget, self.TitleEditItem)
-        EditSongDialog.setTabOrder(self.TitleEditItem, self.AlternativeEdit)
-        EditSongDialog.setTabOrder(self.AlternativeEdit, self.VerseListWidget)
-        EditSongDialog.setTabOrder(self.VerseListWidget, self.VerseAddButton)
-        EditSongDialog.setTabOrder(self.VerseAddButton, self.VerseEditButton)
-        EditSongDialog.setTabOrder(self.VerseEditButton, self.VerseEditAllButton)
-        EditSongDialog.setTabOrder(self.VerseEditAllButton, self.VerseDeleteButton)
-        EditSongDialog.setTabOrder(self.VerseDeleteButton, self.VerseOrderEdit)
-        EditSongDialog.setTabOrder(self.VerseOrderEdit, self.AuthorsSelectionComboItem)
-        EditSongDialog.setTabOrder(self.AuthorsSelectionComboItem, self.AuthorAddButton)
-        EditSongDialog.setTabOrder(self.AuthorAddButton, self.AuthorsListView)
-        EditSongDialog.setTabOrder(self.AuthorsListView, self.AuthorRemoveButton)
-        EditSongDialog.setTabOrder(self.AuthorRemoveButton, self.MaintenanceButton)
-        EditSongDialog.setTabOrder(self.MaintenanceButton, self.SongTopicCombo)
-        EditSongDialog.setTabOrder(self.SongTopicCombo, self.TopicAddButton)
-        EditSongDialog.setTabOrder(self.TopicAddButton, self.TopicsListView)
-        EditSongDialog.setTabOrder(self.TopicsListView, self.TopicRemoveButton)
-        EditSongDialog.setTabOrder(self.TopicRemoveButton, self.SongbookCombo)
-        EditSongDialog.setTabOrder(self.SongbookCombo, self.ThemeSelectionComboItem)
-        EditSongDialog.setTabOrder(self.ThemeSelectionComboItem, self.ThemeAddButton)
-        EditSongDialog.setTabOrder(self.ThemeAddButton, self.CopyrightEditItem)
-        EditSongDialog.setTabOrder(self.CopyrightEditItem, self.CopyrightInsertButton)
-        EditSongDialog.setTabOrder(self.CopyrightInsertButton, self.CCLNumberEdit)
-        EditSongDialog.setTabOrder(self.CCLNumberEdit, self.CommentsEdit)
-        EditSongDialog.setTabOrder(self.CommentsEdit, self.ButtonBox)
+        self.retranslateUi(EditSongForm)
+        QtCore.QObject.connect(self.ButtonBox,
+            QtCore.SIGNAL(u'rejected()'), EditSongForm.closePressed)
+        QtCore.QObject.connect(self.ButtonBox,
+            QtCore.SIGNAL(u'accepted()'), EditSongForm.accept)
+        QtCore.QMetaObject.connectSlotsByName(EditSongForm)
+        EditSongForm.setTabOrder(self.SongTabWidget, self.TitleEditItem)
+        EditSongForm.setTabOrder(self.TitleEditItem, self.AlternativeEdit)
+        EditSongForm.setTabOrder(self.AlternativeEdit, self.VerseListWidget)
+        EditSongForm.setTabOrder(self.VerseListWidget, self.VerseAddButton)
+        EditSongForm.setTabOrder(self.VerseAddButton, self.VerseEditButton)
+        EditSongForm.setTabOrder(self.VerseEditButton, self.VerseEditAllButton)
+        EditSongForm.setTabOrder(self.VerseEditAllButton, self.VerseDeleteButton)
+        EditSongForm.setTabOrder(self.VerseDeleteButton, self.VerseOrderEdit)
+        EditSongForm.setTabOrder(self.VerseOrderEdit, self.AuthorsSelectionComboItem)
+        EditSongForm.setTabOrder(self.AuthorsSelectionComboItem, self.AuthorAddButton)
+        EditSongForm.setTabOrder(self.AuthorAddButton, self.AuthorsListView)
+        EditSongForm.setTabOrder(self.AuthorsListView, self.AuthorRemoveButton)
+        EditSongForm.setTabOrder(self.AuthorRemoveButton, self.MaintenanceButton)
+        EditSongForm.setTabOrder(self.MaintenanceButton, self.SongTopicCombo)
+        EditSongForm.setTabOrder(self.SongTopicCombo, self.TopicAddButton)
+        EditSongForm.setTabOrder(self.TopicAddButton, self.TopicsListView)
+        EditSongForm.setTabOrder(self.TopicsListView, self.TopicRemoveButton)
+        EditSongForm.setTabOrder(self.TopicRemoveButton, self.SongbookCombo)
+        EditSongForm.setTabOrder(self.SongbookCombo, self.ThemeSelectionComboItem)
+        EditSongForm.setTabOrder(self.ThemeSelectionComboItem, self.ThemeAddButton)
+        EditSongForm.setTabOrder(self.ThemeAddButton, self.CopyrightEditItem)
+        EditSongForm.setTabOrder(self.CopyrightEditItem, self.CopyrightInsertButton)
+        EditSongForm.setTabOrder(self.CopyrightInsertButton, self.CCLNumberEdit)
+        EditSongForm.setTabOrder(self.CCLNumberEdit, self.CommentsEdit)
+        EditSongForm.setTabOrder(self.CommentsEdit, self.ButtonBox)
 
-    def retranslateUi(self, EditSongDialog):
-        EditSongDialog.setWindowTitle(self.trUtf8('Song Editor'))
-        self.TitleLabel.setText(self.trUtf8('Title:'))
-        self.AlternativeTitleLabel.setText(self.trUtf8('Alternative Title:'))
-        self.LyricsLabel.setText(self.trUtf8('Lyrics:'))
-        self.VerseOrderLabel.setText(self.trUtf8('Verse Order:'))
-        self.VerseAddButton.setText(self.trUtf8('Add'))
-        self.VerseEditButton.setText(self.trUtf8('Edit'))
-        self.VerseEditAllButton.setText(self.trUtf8('Edit All'))
-        self.VerseDeleteButton.setText(self.trUtf8('Delete'))
+    def retranslateUi(self, EditSongForm):
+        EditSongForm.setWindowTitle(translate('EditSongForm', 'Song Editor'))
+        self.TitleLabel.setText(translate('EditSongForm', 'Title:'))
+        self.AlternativeTitleLabel.setText(translate('EditSongForm', 'Alternative Title:'))
+        self.LyricsLabel.setText(translate('EditSongForm', 'Lyrics:'))
+        self.VerseOrderLabel.setText(translate('EditSongForm', 'Verse Order:'))
+        self.VerseAddButton.setText(translate('EditSongForm', 'Add'))
+        self.VerseEditButton.setText(translate('EditSongForm', 'Edit'))
+        self.VerseEditAllButton.setText(translate('EditSongForm', 'Edit All'))
+        self.VerseDeleteButton.setText(translate('EditSongForm', 'Delete'))
         self.SongTabWidget.setTabText(
             self.SongTabWidget.indexOf(self.LyricsTab),
-            self.trUtf8('Title && Lyrics'))
-        self.AuthorsGroupBox.setTitle(self.trUtf8('Authors'))
-        self.AuthorAddButton.setText(self.trUtf8('&Add to Song'))
-        self.AuthorRemoveButton.setText(self.trUtf8('&Remove'))
+            translate('EditSongForm', 'Title && Lyrics'))
+        self.AuthorsGroupBox.setTitle(translate('EditSongForm', 'Authors'))
+        self.AuthorAddButton.setText(translate('EditSongForm', '&Add to Song'))
+        self.AuthorRemoveButton.setText(translate('EditSongForm', '&Remove'))
         self.MaintenanceButton.setText(
-            self.trUtf8('&Manage Authors, Topics, Books'))
-        self.TopicGroupBox.setTitle(self.trUtf8('Topic'))
-        self.TopicAddButton.setText(self.trUtf8('A&dd to Song'))
-        self.TopicRemoveButton.setText(self.trUtf8('R&emove'))
-        self.SongBookGroup.setTitle(self.trUtf8('Song Book'))
+            translate('EditSongForm', '&Manage Authors, Topics, Books'))
+        self.TopicGroupBox.setTitle(translate('EditSongForm', 'Topic'))
+        self.TopicAddButton.setText(translate('EditSongForm', 'A&dd to Song'))
+        self.TopicRemoveButton.setText(translate('EditSongForm', 'R&emove'))
+        self.SongBookGroup.setTitle(translate('EditSongForm', 'Song Book'))
         self.SongTabWidget.setTabText(
             self.SongTabWidget.indexOf(self.AuthorsTab),
-            self.trUtf8('Authors, Topics && Book'))
-        self.ThemeGroupBox.setTitle(self.trUtf8('Theme'))
-        self.ThemeAddButton.setText(self.trUtf8('Add a Theme'))
-        self.CopyrightGroupBox.setTitle(self.trUtf8('Copyright Information'))
-        self.CopyrightInsertButton.setText(self.trUtf8(u'\u00a9'.encode('utf8')))
-        self.CCLILabel.setText(self.trUtf8('CCLI Number:'))
-        self.CommentsGroupBox.setTitle(self.trUtf8('Comments'))
+            translate('EditSongForm', 'Authors, Topics && Book'))
+        self.ThemeGroupBox.setTitle(translate('EditSongForm', 'Theme'))
+        self.ThemeAddButton.setText(translate('EditSongForm', 'Add a Theme'))
+        self.CopyrightGroupBox.setTitle(translate('EditSongForm', 'Copyright Information'))
+        self.CopyrightInsertButton.setText(translate('EditSongForm', u'\xa9'))
+        self.CCLILabel.setText(translate('EditSongForm', 'CCLI Number:'))
+        self.CommentsGroupBox.setTitle(translate('EditSongForm', 'Comments'))
         self.SongTabWidget.setTabText(
             self.SongTabWidget.indexOf(self.ThemeTab),
-            self.trUtf8('Theme, Copyright Info && Comments'))
+            translate('EditSongForm', 'Theme, Copyright Info && Comments'))

=== modified file 'openlp/plugins/songs/forms/editversedialog.py'
--- openlp/plugins/songs/forms/editversedialog.py	2010-03-21 23:58:01 +0000
+++ openlp/plugins/songs/forms/editversedialog.py	2010-04-30 20:10:34 +0000
@@ -24,13 +24,14 @@
 ###############################################################################
 
 from PyQt4 import QtCore, QtGui
+from openlp.core.lib import translate
 
 class Ui_EditVerseDialog(object):
-    def setupUi(self, EditVerseDialog):
-        EditVerseDialog.setObjectName(u'EditVerseDialog')
-        EditVerseDialog.resize(500, 521)
-        EditVerseDialog.setModal(True)
-        self.layoutWidget = QtGui.QWidget(EditVerseDialog)
+    def setupUi(self, EditVerseForm):
+        EditVerseForm.setObjectName(u'EditVerseDialog')
+        EditVerseForm.resize(500, 521)
+        EditVerseForm.setModal(True)
+        self.layoutWidget = QtGui.QWidget(EditVerseForm)
         self.layoutWidget.setGeometry(QtCore.QRect(11, 1, 471, 491))
         self.layoutWidget.setObjectName(u'layoutWidget')
         self.verticalLayout_3 = QtGui.QVBoxLayout(self.layoutWidget)
@@ -103,27 +104,27 @@
         self.ButtonBox.setObjectName(u'ButtonBox')
         self.verticalLayout_3.addWidget(self.ButtonBox)
 
-        self.retranslateUi(EditVerseDialog)
-        QtCore.QObject.connect(self.ButtonBox, QtCore.SIGNAL(u'accepted()'), EditVerseDialog.accept)
-        QtCore.QObject.connect(self.ButtonBox, QtCore.SIGNAL(u'rejected()'), EditVerseDialog.reject)
-        QtCore.QMetaObject.connectSlotsByName(EditVerseDialog)
+        self.retranslateUi(EditVerseForm)
+        QtCore.QObject.connect(self.ButtonBox, QtCore.SIGNAL(u'accepted()'), EditVerseForm.accept)
+        QtCore.QObject.connect(self.ButtonBox, QtCore.SIGNAL(u'rejected()'), EditVerseForm.reject)
+        QtCore.QMetaObject.connectSlotsByName(EditVerseForm)
 
-    def retranslateUi(self, EditVerseDialog):
-        EditVerseDialog.setWindowTitle(self.trUtf8('Edit Verse'))
-        self.VerseTypeLabel.setText(self.trUtf8('Verse Type'))
-        self.VerseListComboBox.setItemText(0, self.trUtf8('Intro'))
-        self.VerseListComboBox.setItemText(1, self.trUtf8('Verse'))
-        self.VerseListComboBox.setItemText(2, self.trUtf8('Pre-Chorus'))
-        self.VerseListComboBox.setItemText(3, self.trUtf8('Chorus'))
-        self.VerseListComboBox.setItemText(4, self.trUtf8('Bridge'))
-        self.VerseListComboBox.setItemText(5, self.trUtf8('Ending'))
-        self.VerseListComboBox.setItemText(6, self.trUtf8('Other'))
-        self.VerseNumberLabel.setText(self.trUtf8('Number'))
-        self.addBridge.setText(self.trUtf8('Bridge'))
-        self.addVerse.setText(self.trUtf8('Verse'))
-        self.addChorus.setText(self.trUtf8('Chorus'))
-        self.addPreChorus.setText(self.trUtf8('Pre-Chorus'))
-        self.addIntro.setText(self.trUtf8('Intro'))
-        self.addOther.setText(self.trUtf8('Other'))
-        self.addEnding.setText(self.trUtf8('Ending'))
+    def retranslateUi(self, EditVerseForm):
+        EditVerseForm.setWindowTitle(translate('EditVerseForm', 'Edit Verse'))
+        self.VerseTypeLabel.setText(translate('EditVerseForm', 'Verse Type'))
+        self.VerseListComboBox.setItemText(0, translate('EditVerseForm', 'Intro'))
+        self.VerseListComboBox.setItemText(1, translate('EditVerseForm', 'Verse'))
+        self.VerseListComboBox.setItemText(2, translate('EditVerseForm', 'Pre-Chorus'))
+        self.VerseListComboBox.setItemText(3, translate('EditVerseForm', 'Chorus'))
+        self.VerseListComboBox.setItemText(4, translate('EditVerseForm', 'Bridge'))
+        self.VerseListComboBox.setItemText(5, translate('EditVerseForm', 'Ending'))
+        self.VerseListComboBox.setItemText(6, translate('EditVerseForm', 'Other'))
+        self.VerseNumberLabel.setText(translate('EditVerseForm', 'Number'))
+        self.addBridge.setText(translate('EditVerseForm', 'Bridge'))
+        self.addVerse.setText(translate('EditVerseForm', 'Verse'))
+        self.addChorus.setText(translate('EditVerseForm', 'Chorus'))
+        self.addPreChorus.setText(translate('EditVerseForm', 'Pre-Chorus'))
+        self.addIntro.setText(translate('EditVerseForm', 'Intro'))
+        self.addOther.setText(translate('EditVerseForm', 'Other'))
+        self.addEnding.setText(translate('EditVerseForm', 'Ending'))
 

=== modified file 'openlp/plugins/songs/forms/openlpexportdialog.py'
--- openlp/plugins/songs/forms/openlpexportdialog.py	2010-03-23 19:04:15 +0000
+++ openlp/plugins/songs/forms/openlpexportdialog.py	2010-04-30 20:10:34 +0000
@@ -24,18 +24,19 @@
 ###############################################################################
 
 from PyQt4 import QtCore, QtGui
+from openlp.core.lib import translate
 
 class Ui_OpenLPExportDialog(object):
-    def setupUi(self, OpenLPExportDialog):
-        OpenLPExportDialog.setObjectName(u'OpenLPExportDialog')
-        OpenLPExportDialog.resize(473, 459)
+    def setupUi(self, OpenLPExportForm):
+        OpenLPExportForm.setObjectName(u'OpenLPExportDialog')
+        OpenLPExportForm.resize(473, 459)
         icon = QtGui.QIcon()
         icon.addPixmap(QtGui.QPixmap(u':/icon/openlp.org-icon-32.bmp'), QtGui.QIcon.Normal, QtGui.QIcon.Off)
-        OpenLPExportDialog.setWindowIcon(icon)
-        self.verticalLayout_5 = QtGui.QVBoxLayout(OpenLPExportDialog)
+        OpenLPExportForm.setWindowIcon(icon)
+        self.verticalLayout_5 = QtGui.QVBoxLayout(OpenLPExportForm)
         self.verticalLayout_5.setMargin(8)
         self.verticalLayout_5.setObjectName(u'verticalLayout_5')
-        self.ExportFileWidget = QtGui.QWidget(OpenLPExportDialog)
+        self.ExportFileWidget = QtGui.QWidget(OpenLPExportForm)
         sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Preferred, QtGui.QSizePolicy.Fixed)
         sizePolicy.setHorizontalStretch(0)
         sizePolicy.setVerticalStretch(0)
@@ -59,7 +60,7 @@
         self.ExportFileSelectPushButton.setObjectName(u'ExportFileSelectPushButton')
         self.horizontalLayout.addWidget(self.ExportFileSelectPushButton)
         self.verticalLayout_5.addWidget(self.ExportFileWidget)
-        self.SongListFrame = QtGui.QFrame(OpenLPExportDialog)
+        self.SongListFrame = QtGui.QFrame(OpenLPExportForm)
         sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Expanding, QtGui.QSizePolicy.Expanding)
         sizePolicy.setHorizontalStretch(0)
         sizePolicy.setVerticalStretch(0)
@@ -242,7 +243,7 @@
         self.verticalLayout_2.addWidget(self.SelectedRemoveSelectedWidget)
         self.horizontalLayout_6.addWidget(self.SelectedFileListWidget)
         self.verticalLayout_5.addWidget(self.SongListFrame)
-        self.ProgressGroupBox = QtGui.QGroupBox(OpenLPExportDialog)
+        self.ProgressGroupBox = QtGui.QGroupBox(OpenLPExportForm)
         sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Expanding, QtGui.QSizePolicy.Fixed)
         sizePolicy.setHorizontalStretch(0)
         sizePolicy.setVerticalStretch(0)
@@ -261,7 +262,7 @@
         self.ProgressBar.setObjectName(u'ProgressBar')
         self.verticalLayout_4.addWidget(self.ProgressBar)
         self.verticalLayout_5.addWidget(self.ProgressGroupBox)
-        self.ButtonBarWidget = QtGui.QWidget(OpenLPExportDialog)
+        self.ButtonBarWidget = QtGui.QWidget(OpenLPExportForm)
         self.ButtonBarWidget.setObjectName(u'ButtonBarWidget')
         self.horizontalLayout_7 = QtGui.QHBoxLayout(self.ButtonBarWidget)
         self.horizontalLayout_7.setSpacing(8)
@@ -277,29 +278,29 @@
         self.horizontalLayout_7.addWidget(self.ClosePushButton)
         self.verticalLayout_5.addWidget(self.ButtonBarWidget)
 
-        self.retranslateUi(OpenLPExportDialog)
-        QtCore.QObject.connect(self.ClosePushButton, QtCore.SIGNAL(u'clicked()'), OpenLPExportDialog.close)
+        self.retranslateUi(OpenLPExportForm)
+        QtCore.QObject.connect(self.ClosePushButton, QtCore.SIGNAL(u'clicked()'), OpenLPExportForm.close)
         QtCore.QObject.connect(self.ExportSelectAllPushButton, QtCore.SIGNAL(u'clicked()'), self.ExportListTable.selectAll)
         QtCore.QObject.connect(self.SelectedSelectAllPushButton, QtCore.SIGNAL(u'clicked()'), self.SelectedListTable.selectAll)
         QtCore.QObject.connect(self.SelectedRemoveSelectedButton, QtCore.SIGNAL(u'clicked()'), self.SelectedListTable.clear)
-        QtCore.QMetaObject.connectSlotsByName(OpenLPExportDialog)
+        QtCore.QMetaObject.connectSlotsByName(OpenLPExportForm)
 
-    def retranslateUi(self, OpenLPExportDialog):
-        OpenLPExportDialog.setWindowTitle(self.trUtf8('openlp.org Song Exporter'))
-        self.ExportFileLabel.setText(self.trUtf8('Select openlp.org export filename:'))
-        self.ExportListLabel.setText(self.trUtf8('Full Song List'))
-        self.ExportListTable.horizontalHeaderItem(0).setText(self.trUtf8('Song Title'))
-        self.ExportListTable.horizontalHeaderItem(1).setText(self.trUtf8('Author'))
-        self.ExportSelectAllPushButton.setText(self.trUtf8('Select All'))
-        self.ExportFilterComboBox.setItemText(0, self.trUtf8('Lyrics'))
-        self.ExportFilterComboBox.setItemText(1, self.trUtf8('Title'))
-        self.ExportFilterComboBox.setItemText(2, self.trUtf8('Author'))
-        self.SelectedListLabel.setText(self.trUtf8('Song Export List'))
-        self.SelectedListTable.horizontalHeaderItem(0).setText(self.trUtf8('Song Title'))
-        self.SelectedListTable.horizontalHeaderItem(1).setText(self.trUtf8('Author'))
-        self.SelectedSelectAllPushButton.setText(self.trUtf8('Select All'))
-        self.SelectedRemoveSelectedButton.setText(self.trUtf8('Remove Selected'))
-        self.ProgressGroupBox.setTitle(self.trUtf8('Progress:'))
-        self.ProgressLabel.setText(self.trUtf8('Ready to export'))
-        self.ExportPushButton.setText(self.trUtf8('Export'))
-        self.ClosePushButton.setText(self.trUtf8('Close'))
+    def retranslateUi(self, OpenLPExportForm):
+        OpenLPExportForm.setWindowTitle(translate('OpenLPExportForm', 'openlp.org Song Exporter'))
+        self.ExportFileLabel.setText(translate('OpenLPExportForm', 'Select openlp.org export filename:'))
+        self.ExportListLabel.setText(translate('OpenLPExportForm', 'Full Song List'))
+        self.ExportListTable.horizontalHeaderItem(0).setText(translate('OpenLPExportForm', 'Song Title'))
+        self.ExportListTable.horizontalHeaderItem(1).setText(translate('OpenLPExportForm', 'Author'))
+        self.ExportSelectAllPushButton.setText(translate('OpenLPExportForm', 'Select All'))
+        self.ExportFilterComboBox.setItemText(0, translate('OpenLPExportForm', 'Lyrics'))
+        self.ExportFilterComboBox.setItemText(1, translate('OpenLPExportForm', 'Title'))
+        self.ExportFilterComboBox.setItemText(2, translate('OpenLPExportForm', 'Author'))
+        self.SelectedListLabel.setText(translate('OpenLPExportForm', 'Song Export List'))
+        self.SelectedListTable.horizontalHeaderItem(0).setText(translate('OpenLPExportForm', 'Song Title'))
+        self.SelectedListTable.horizontalHeaderItem(1).setText(translate('OpenLPExportForm', 'Author'))
+        self.SelectedSelectAllPushButton.setText(translate('OpenLPExportForm', 'Select All'))
+        self.SelectedRemoveSelectedButton.setText(translate('OpenLPExportForm', 'Remove Selected'))
+        self.ProgressGroupBox.setTitle(translate('OpenLPExportForm', 'Progress:'))
+        self.ProgressLabel.setText(translate('OpenLPExportForm', 'Ready to export'))
+        self.ExportPushButton.setText(translate('OpenLPExportForm', 'Export'))
+        self.ClosePushButton.setText(translate('OpenLPExportForm', 'Close'))

=== modified file 'openlp/plugins/songs/forms/openlpimportdialog.py'
--- openlp/plugins/songs/forms/openlpimportdialog.py	2010-03-21 23:58:01 +0000
+++ openlp/plugins/songs/forms/openlpimportdialog.py	2010-04-30 20:10:34 +0000
@@ -24,18 +24,19 @@
 ###############################################################################
 
 from PyQt4 import QtCore, QtGui
+from openlp.core.lib import translate
 
 class Ui_OpenLPImportDialog(object):
-    def setupUi(self, OpenLPImportDialog):
-        OpenLPImportDialog.setObjectName(u'OpenLPImportDialog')
-        OpenLPImportDialog.resize(473, 459)
+    def setupUi(self, OpenLPImportForm):
+        OpenLPImportForm.setObjectName(u'OpenLPImportDialog')
+        OpenLPImportForm.resize(473, 459)
         icon = QtGui.QIcon()
         icon.addPixmap(QtGui.QPixmap(u':/icon/openlp.org-icon-32.bmp'), QtGui.QIcon.Normal, QtGui.QIcon.Off)
-        OpenLPImportDialog.setWindowIcon(icon)
-        self.verticalLayout_5 = QtGui.QVBoxLayout(OpenLPImportDialog)
+        OpenLPImportForm.setWindowIcon(icon)
+        self.verticalLayout_5 = QtGui.QVBoxLayout(OpenLPImportForm)
         self.verticalLayout_5.setMargin(8)
         self.verticalLayout_5.setObjectName(u'verticalLayout_5')
-        self.ImportFileWidget = QtGui.QWidget(OpenLPImportDialog)
+        self.ImportFileWidget = QtGui.QWidget(OpenLPImportForm)
         sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Preferred, QtGui.QSizePolicy.Fixed)
         sizePolicy.setHorizontalStretch(0)
         sizePolicy.setVerticalStretch(0)
@@ -59,7 +60,7 @@
         self.ImportFileSelectPushButton.setObjectName(u'ImportFileSelectPushButton')
         self.horizontalLayout.addWidget(self.ImportFileSelectPushButton)
         self.verticalLayout_5.addWidget(self.ImportFileWidget)
-        self.SongListFrame = QtGui.QFrame(OpenLPImportDialog)
+        self.SongListFrame = QtGui.QFrame(OpenLPImportForm)
         sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Expanding, QtGui.QSizePolicy.Expanding)
         sizePolicy.setHorizontalStretch(0)
         sizePolicy.setVerticalStretch(0)
@@ -242,7 +243,7 @@
         self.verticalLayout_2.addWidget(self.SelectedRemoveSelectedWidget)
         self.horizontalLayout_6.addWidget(self.SelectedFileListWidget)
         self.verticalLayout_5.addWidget(self.SongListFrame)
-        self.ProgressGroupBox = QtGui.QGroupBox(OpenLPImportDialog)
+        self.ProgressGroupBox = QtGui.QGroupBox(OpenLPImportForm)
         sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Expanding, QtGui.QSizePolicy.Fixed)
         sizePolicy.setHorizontalStretch(0)
         sizePolicy.setVerticalStretch(0)
@@ -261,7 +262,7 @@
         self.ProgressBar.setObjectName(u'ProgressBar')
         self.verticalLayout_4.addWidget(self.ProgressBar)
         self.verticalLayout_5.addWidget(self.ProgressGroupBox)
-        self.ButtonBarWidget = QtGui.QWidget(OpenLPImportDialog)
+        self.ButtonBarWidget = QtGui.QWidget(OpenLPImportForm)
         self.ButtonBarWidget.setObjectName(u'ButtonBarWidget')
         self.horizontalLayout_7 = QtGui.QHBoxLayout(self.ButtonBarWidget)
         self.horizontalLayout_7.setSpacing(8)
@@ -277,29 +278,29 @@
         self.horizontalLayout_7.addWidget(self.ClosePushButton)
         self.verticalLayout_5.addWidget(self.ButtonBarWidget)
 
-        self.retranslateUi(OpenLPImportDialog)
-        QtCore.QObject.connect(self.ClosePushButton, QtCore.SIGNAL(u'clicked()'), OpenLPImportDialog.close)
+        self.retranslateUi(OpenLPImportForm)
+        QtCore.QObject.connect(self.ClosePushButton, QtCore.SIGNAL(u'clicked()'), OpenLPImportForm.close)
         QtCore.QObject.connect(self.ImportSelectAllPushButton, QtCore.SIGNAL(u'clicked()'), self.ImportListTable.selectAll)
         QtCore.QObject.connect(self.SelectedSelectAllPushButton, QtCore.SIGNAL(u'clicked()'), self.SelectedListTable.selectAll)
         QtCore.QObject.connect(self.SelectedRemoveSelectedButton, QtCore.SIGNAL(u'clicked()'), self.SelectedListTable.clear)
-        QtCore.QMetaObject.connectSlotsByName(OpenLPImportDialog)
+        QtCore.QMetaObject.connectSlotsByName(OpenLPImportForm)
 
-    def retranslateUi(self, OpenLPImportDialog):
-        OpenLPImportDialog.setWindowTitle(self.trUtf8('openlp.org Song Importer'))
-        self.ImportFileLabel.setText(self.trUtf8('Select openlp.org songfile to import:'))
-        self.ImportListLabel.setText(self.trUtf8('Import File Song List'))
-        self.ImportListTable.horizontalHeaderItem(0).setText(self.trUtf8('Song Title'))
-        self.ImportListTable.horizontalHeaderItem(1).setText(self.trUtf8('Author'))
-        self.ImportSelectAllPushButton.setText(self.trUtf8('Select All'))
-        self.ImportFilterComboBox.setItemText(0, self.trUtf8('Lyrics'))
-        self.ImportFilterComboBox.setItemText(1, self.trUtf8('Title'))
-        self.ImportFilterComboBox.setItemText(2, self.trUtf8('Author'))
-        self.SelectedListLabel.setText(self.trUtf8('Song Import List'))
-        self.SelectedListTable.horizontalHeaderItem(0).setText(self.trUtf8('Song Title'))
-        self.SelectedListTable.horizontalHeaderItem(1).setText(self.trUtf8('Author'))
-        self.SelectedSelectAllPushButton.setText(self.trUtf8('Select All'))
-        self.SelectedRemoveSelectedButton.setText(self.trUtf8('Remove Selected'))
-        self.ProgressGroupBox.setTitle(self.trUtf8('Progress:'))
-        self.ProgressLabel.setText(self.trUtf8('Ready to import'))
-        self.ImportPushButton.setText(self.trUtf8('Import'))
-        self.ClosePushButton.setText(self.trUtf8('Close'))
+    def retranslateUi(self, OpenLPImportForm):
+        OpenLPImportForm.setWindowTitle(translate('OpenLPImportForm', 'openlp.org Song Importer'))
+        self.ImportFileLabel.setText(translate('OpenLPImportForm', 'Select openlp.org songfile to import:'))
+        self.ImportListLabel.setText(translate('OpenLPImportForm', 'Import File Song List'))
+        self.ImportListTable.horizontalHeaderItem(0).setText(translate('OpenLPImportForm', 'Song Title'))
+        self.ImportListTable.horizontalHeaderItem(1).setText(translate('OpenLPImportForm', 'Author'))
+        self.ImportSelectAllPushButton.setText(translate('OpenLPImportForm', 'Select All'))
+        self.ImportFilterComboBox.setItemText(0, translate('OpenLPImportForm', 'Lyrics'))
+        self.ImportFilterComboBox.setItemText(1, translate('OpenLPImportForm', 'Title'))
+        self.ImportFilterComboBox.setItemText(2, translate('OpenLPImportForm', 'Author'))
+        self.SelectedListLabel.setText(translate('OpenLPImportForm', 'Song Import List'))
+        self.SelectedListTable.horizontalHeaderItem(0).setText(translate('OpenLPImportForm', 'Song Title'))
+        self.SelectedListTable.horizontalHeaderItem(1).setText(translate('OpenLPImportForm', 'Author'))
+        self.SelectedSelectAllPushButton.setText(translate('OpenLPImportForm', 'Select All'))
+        self.SelectedRemoveSelectedButton.setText(translate('OpenLPImportForm', 'Remove Selected'))
+        self.ProgressGroupBox.setTitle(translate('OpenLPImportForm', 'Progress:'))
+        self.ProgressLabel.setText(translate('OpenLPImportForm', 'Ready to import'))
+        self.ImportPushButton.setText(translate('OpenLPImportForm', 'Import'))
+        self.ClosePushButton.setText(translate('OpenLPImportForm', 'Close'))

=== modified file 'openlp/plugins/songs/forms/opensongexportdialog.py'
--- openlp/plugins/songs/forms/opensongexportdialog.py	2010-03-21 23:58:01 +0000
+++ openlp/plugins/songs/forms/opensongexportdialog.py	2010-04-30 20:10:34 +0000
@@ -24,18 +24,19 @@
 ###############################################################################
 
 from PyQt4 import QtCore, QtGui
+from openlp.core.lib import translate
 
 class Ui_OpenSongExportDialog(object):
-    def setupUi(self, OpenSongExportDialog):
-        OpenSongExportDialog.setObjectName(u'OpenSongExportDialog')
-        OpenSongExportDialog.resize(473, 459)
+    def setupUi(self, OpenSongExportForm):
+        OpenSongExportForm.setObjectName(u'OpenSongExportDialog')
+        OpenSongExportForm.resize(473, 459)
         icon = QtGui.QIcon()
         icon.addPixmap(QtGui.QPixmap(u':/icon/openlp.org-icon-32.bmp'), QtGui.QIcon.Normal, QtGui.QIcon.Off)
-        OpenSongExportDialog.setWindowIcon(icon)
-        self.verticalLayout_5 = QtGui.QVBoxLayout(OpenSongExportDialog)
+        OpenSongExportForm.setWindowIcon(icon)
+        self.verticalLayout_5 = QtGui.QVBoxLayout(OpenSongExportForm)
         self.verticalLayout_5.setMargin(8)
         self.verticalLayout_5.setObjectName(u'verticalLayout_5')
-        self.ExportFileWidget = QtGui.QWidget(OpenSongExportDialog)
+        self.ExportFileWidget = QtGui.QWidget(OpenSongExportForm)
         sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Preferred, QtGui.QSizePolicy.Fixed)
         sizePolicy.setHorizontalStretch(0)
         sizePolicy.setVerticalStretch(0)
@@ -59,7 +60,7 @@
         self.ExportFileSelectPushButton.setObjectName(u'ExportFileSelectPushButton')
         self.horizontalLayout.addWidget(self.ExportFileSelectPushButton)
         self.verticalLayout_5.addWidget(self.ExportFileWidget)
-        self.SongListFrame = QtGui.QFrame(OpenSongExportDialog)
+        self.SongListFrame = QtGui.QFrame(OpenSongExportForm)
         sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Expanding, QtGui.QSizePolicy.Expanding)
         sizePolicy.setHorizontalStretch(0)
         sizePolicy.setVerticalStretch(0)
@@ -242,7 +243,7 @@
         self.verticalLayout_2.addWidget(self.SelectedRemoveSelectedWidget)
         self.horizontalLayout_6.addWidget(self.SelectedFileListWidget)
         self.verticalLayout_5.addWidget(self.SongListFrame)
-        self.ProgressGroupBox = QtGui.QGroupBox(OpenSongExportDialog)
+        self.ProgressGroupBox = QtGui.QGroupBox(OpenSongExportForm)
         sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Expanding, QtGui.QSizePolicy.Fixed)
         sizePolicy.setHorizontalStretch(0)
         sizePolicy.setVerticalStretch(0)
@@ -261,7 +262,7 @@
         self.ProgressBar.setObjectName(u'ProgressBar')
         self.verticalLayout_4.addWidget(self.ProgressBar)
         self.verticalLayout_5.addWidget(self.ProgressGroupBox)
-        self.ButtonBarWidget = QtGui.QWidget(OpenSongExportDialog)
+        self.ButtonBarWidget = QtGui.QWidget(OpenSongExportForm)
         self.ButtonBarWidget.setObjectName(u'ButtonBarWidget')
         self.horizontalLayout_7 = QtGui.QHBoxLayout(self.ButtonBarWidget)
         self.horizontalLayout_7.setSpacing(8)
@@ -277,29 +278,29 @@
         self.horizontalLayout_7.addWidget(self.ClosePushButton)
         self.verticalLayout_5.addWidget(self.ButtonBarWidget)
 
-        self.retranslateUi(OpenSongExportDialog)
-        QtCore.QObject.connect(self.ClosePushButton, QtCore.SIGNAL(u'clicked()'), OpenSongExportDialog.close)
+        self.retranslateUi(OpenSongExportForm)
+        QtCore.QObject.connect(self.ClosePushButton, QtCore.SIGNAL(u'clicked()'), OpenSongExportForm.close)
         QtCore.QObject.connect(self.ExportSelectAllPushButton, QtCore.SIGNAL(u'clicked()'), self.ExportListTable.selectAll)
         QtCore.QObject.connect(self.SelectedSelectAllPushButton, QtCore.SIGNAL(u'clicked()'), self.SelectedListTable.selectAll)
         QtCore.QObject.connect(self.SelectedRemoveSelectedButton, QtCore.SIGNAL(u'clicked()'), self.SelectedListTable.clear)
-        QtCore.QMetaObject.connectSlotsByName(OpenSongExportDialog)
+        QtCore.QMetaObject.connectSlotsByName(OpenSongExportForm)
 
-    def retranslateUi(self, OpenSongExportDialog):
-        OpenSongExportDialog.setWindowTitle(self.trUtf8('OpenSong Song Exporter'))
-        self.ExportFileLabel.setText(self.trUtf8('Select OpenSong song folder:'))
-        self.ExportListLabel.setText(self.trUtf8('Full Song List'))
-        self.ExportListTable.horizontalHeaderItem(0).setText(self.trUtf8('Song Title'))
-        self.ExportListTable.horizontalHeaderItem(1).setText(self.trUtf8('Author'))
-        self.ExportSelectAllPushButton.setText(self.trUtf8('Select All'))
-        self.ExportFilterComboBox.setItemText(0, self.trUtf8('Lyrics'))
-        self.ExportFilterComboBox.setItemText(1, self.trUtf8('Title'))
-        self.ExportFilterComboBox.setItemText(2, self.trUtf8('Author'))
-        self.SelectedListLabel.setText(self.trUtf8('Song Export List'))
-        self.SelectedListTable.horizontalHeaderItem(0).setText(self.trUtf8('Song Title'))
-        self.SelectedListTable.horizontalHeaderItem(1).setText(self.trUtf8('Author'))
-        self.SelectedSelectAllPushButton.setText(self.trUtf8('Select All'))
-        self.SelectedRemoveSelectedButton.setText(self.trUtf8('Remove Selected'))
-        self.ProgressGroupBox.setTitle(self.trUtf8('Progress:'))
-        self.ProgressLabel.setText(self.trUtf8('Ready to export'))
-        self.ExportPushButton.setText(self.trUtf8('Export'))
-        self.ClosePushButton.setText(self.trUtf8('Close'))
+    def retranslateUi(self, OpenSongExportForm):
+        OpenSongExportForm.setWindowTitle(translate('OpenSong Song Exporter'))
+        self.ExportFileLabel.setText(translate('OpenSongExportForm', 'Select OpenSong song folder:'))
+        self.ExportListLabel.setText(translate('OpenSongExportForm', 'Full Song List'))
+        self.ExportListTable.horizontalHeaderItem(0).setText(translate('OpenSongExportForm', 'Song Title'))
+        self.ExportListTable.horizontalHeaderItem(1).setText(translate('OpenSongExportForm', 'Author'))
+        self.ExportSelectAllPushButton.setText(translate('OpenSongExportForm', 'Select All'))
+        self.ExportFilterComboBox.setItemText(0, translate('OpenSongExportForm', 'Lyrics'))
+        self.ExportFilterComboBox.setItemText(1, translate('OpenSongExportForm', 'Title'))
+        self.ExportFilterComboBox.setItemText(2, translate('OpenSongExportForm', 'Author'))
+        self.SelectedListLabel.setText(translate('OpenSongExportForm', 'Song Export List'))
+        self.SelectedListTable.horizontalHeaderItem(0).setText(translate('OpenSongExportForm', 'Song Title'))
+        self.SelectedListTable.horizontalHeaderItem(1).setText(translate('OpenSongExportForm', 'Author'))
+        self.SelectedSelectAllPushButton.setText(translate('OpenSongExportForm', 'Select All'))
+        self.SelectedRemoveSelectedButton.setText(translate('OpenSongExportForm', 'Remove Selected'))
+        self.ProgressGroupBox.setTitle(translate('OpenSongExportForm', 'Progress:'))
+        self.ProgressLabel.setText(translate('OpenSongExportForm', 'Ready to export'))
+        self.ExportPushButton.setText(translate('OpenSongExportForm', 'Export'))
+        self.ClosePushButton.setText(translate('OpenSongExportForm', 'Close'))

=== modified file 'openlp/plugins/songs/forms/opensongimportdialog.py'
--- openlp/plugins/songs/forms/opensongimportdialog.py	2010-03-21 23:58:01 +0000
+++ openlp/plugins/songs/forms/opensongimportdialog.py	2010-04-30 20:10:34 +0000
@@ -24,19 +24,20 @@
 ###############################################################################
 
 from PyQt4 import QtCore, QtGui
+from openlp.core.lib import translate
 
 class Ui_OpenSongImportDialog(object):
-    def setupUi(self, OpenSongImportDialog):
-        OpenSongImportDialog.setObjectName(u'OpenSongImportDialog')
-        OpenSongImportDialog.resize(481, 172)
+    def setupUi(self, OpenSongImportForm):
+        OpenSongImportForm.setObjectName(u'OpenSongImportDialog')
+        OpenSongImportForm.resize(481, 172)
         icon = QtGui.QIcon()
         icon.addPixmap(QtGui.QPixmap(u':/icon/openlp.org-icon-32.bmp'), QtGui.QIcon.Normal, QtGui.QIcon.Off)
-        OpenSongImportDialog.setWindowIcon(icon)
-        self.verticalLayout = QtGui.QVBoxLayout(OpenSongImportDialog)
+        OpenSongImportForm.setWindowIcon(icon)
+        self.verticalLayout = QtGui.QVBoxLayout(OpenSongImportForm)
         self.verticalLayout.setSpacing(6)
         self.verticalLayout.setMargin(8)
         self.verticalLayout.setObjectName(u'verticalLayout')
-        self.ImportFileWidget = QtGui.QWidget(OpenSongImportDialog)
+        self.ImportFileWidget = QtGui.QWidget(OpenSongImportForm)
         sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Preferred, QtGui.QSizePolicy.Fixed)
         sizePolicy.setHorizontalStretch(0)
         sizePolicy.setVerticalStretch(0)
@@ -60,7 +61,7 @@
         self.ImportFileSelectPushButton.setObjectName(u'ImportFileSelectPushButton')
         self.horizontalLayout.addWidget(self.ImportFileSelectPushButton)
         self.verticalLayout.addWidget(self.ImportFileWidget)
-        self.ProgressGroupBox = QtGui.QGroupBox(OpenSongImportDialog)
+        self.ProgressGroupBox = QtGui.QGroupBox(OpenSongImportForm)
         sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Expanding, QtGui.QSizePolicy.Fixed)
         sizePolicy.setHorizontalStretch(0)
         sizePolicy.setVerticalStretch(0)
@@ -79,7 +80,7 @@
         self.ProgressBar.setObjectName(u'ProgressBar')
         self.verticalLayout_4.addWidget(self.ProgressBar)
         self.verticalLayout.addWidget(self.ProgressGroupBox)
-        self.ButtonBarWidget = QtGui.QWidget(OpenSongImportDialog)
+        self.ButtonBarWidget = QtGui.QWidget(OpenSongImportForm)
         self.ButtonBarWidget.setObjectName(u'ButtonBarWidget')
         self.horizontalLayout_7 = QtGui.QHBoxLayout(self.ButtonBarWidget)
         self.horizontalLayout_7.setSpacing(8)
@@ -95,14 +96,14 @@
         self.horizontalLayout_7.addWidget(self.ClosePushButton)
         self.verticalLayout.addWidget(self.ButtonBarWidget)
 
-        self.retranslateUi(OpenSongImportDialog)
-        QtCore.QObject.connect(self.ClosePushButton, QtCore.SIGNAL(u'clicked()'), OpenSongImportDialog.close)
-        QtCore.QMetaObject.connectSlotsByName(OpenSongImportDialog)
+        self.retranslateUi(OpenSongImportForm)
+        QtCore.QObject.connect(self.ClosePushButton, QtCore.SIGNAL(u'clicked()'), OpenSongImportForm.close)
+        QtCore.QMetaObject.connectSlotsByName(OpenSongImportForm)
 
-    def retranslateUi(self, OpenSongImportDialog):
-        OpenSongImportDialog.setWindowTitle(self.trUtf8('OpenSong Song Importer'))
-        self.ImportFileLabel.setText(self.trUtf8('OpenSong Folder:'))
-        self.ProgressGroupBox.setTitle(self.trUtf8('Progress:'))
-        self.ProgressLabel.setText(self.trUtf8('Ready to import'))
-        self.ImportPushButton.setText(self.trUtf8('Import'))
-        self.ClosePushButton.setText(self.trUtf8('Close'))
+    def retranslateUi(self, OpenSongImportForm):
+        OpenSongImportForm.setWindowTitle(translate('OpenSongImportForm', 'OpenSong Song Importer'))
+        self.ImportFileLabel.setText(translate('OpenSongImportForm', 'OpenSong Folder:'))
+        self.ProgressGroupBox.setTitle(translate('OpenSongImportForm', 'Progress:'))
+        self.ProgressLabel.setText(translate('OpenSongImportForm', 'Ready to import'))
+        self.ImportPushButton.setText(translate('OpenSongImportForm', 'Import'))
+        self.ClosePushButton.setText(translate('OpenSongImportForm', 'Close'))

=== modified file 'openlp/plugins/songs/forms/songbookdialog.py'
--- openlp/plugins/songs/forms/songbookdialog.py	2010-03-21 23:58:01 +0000
+++ openlp/plugins/songs/forms/songbookdialog.py	2010-04-30 20:10:34 +0000
@@ -24,32 +24,33 @@
 ###############################################################################
 
 from PyQt4 import QtCore, QtGui
+from openlp.core.lib import translate
 
 class Ui_SongBookDialog(object):
-    def setupUi(self, SongBookDialog):
-        SongBookDialog.setObjectName(u'SongBookDialog')
-        SongBookDialog.resize(367, 120)
-        self.SongBookLayout = QtGui.QFormLayout(SongBookDialog)
+    def setupUi(self, SongBookForm):
+        SongBookForm.setObjectName(u'SongBookDialog')
+        SongBookForm.resize(367, 120)
+        self.SongBookLayout = QtGui.QFormLayout(SongBookForm)
         self.SongBookLayout.setMargin(8)
         self.SongBookLayout.setSpacing(8)
         self.SongBookLayout.setObjectName(u'SongBookLayout')
-        self.NameLabel = QtGui.QLabel(SongBookDialog)
+        self.NameLabel = QtGui.QLabel(SongBookForm)
         self.NameLabel.setObjectName(u'NameLabel')
         self.SongBookLayout.setWidget(0,
             QtGui.QFormLayout.LabelRole, self.NameLabel)
-        self.NameEdit = QtGui.QLineEdit(SongBookDialog)
+        self.NameEdit = QtGui.QLineEdit(SongBookForm)
         self.NameEdit.setObjectName(u'NameEdit')
         self.SongBookLayout.setWidget(0,
             QtGui.QFormLayout.FieldRole, self.NameEdit)
-        self.PublisherLabel = QtGui.QLabel(SongBookDialog)
+        self.PublisherLabel = QtGui.QLabel(SongBookForm)
         self.PublisherLabel.setObjectName(u'PublisherLabel')
         self.SongBookLayout.setWidget(1,
             QtGui.QFormLayout.LabelRole, self.PublisherLabel)
-        self.PublisherEdit = QtGui.QLineEdit(SongBookDialog)
+        self.PublisherEdit = QtGui.QLineEdit(SongBookForm)
         self.PublisherEdit.setObjectName(u'PublisherEdit')
         self.SongBookLayout.setWidget(1,
             QtGui.QFormLayout.FieldRole, self.PublisherEdit)
-        self.ButtonBox = QtGui.QDialogButtonBox(SongBookDialog)
+        self.ButtonBox = QtGui.QDialogButtonBox(SongBookForm)
         self.ButtonBox.setOrientation(QtCore.Qt.Horizontal)
         self.ButtonBox.setStandardButtons(
             QtGui.QDialogButtonBox.Save | QtGui.QDialogButtonBox.Cancel)
@@ -57,14 +58,14 @@
         self.SongBookLayout.setWidget(2,
             QtGui.QFormLayout.FieldRole, self.ButtonBox)
 
-        self.retranslateUi(SongBookDialog)
-        QtCore.QObject.connect(self.ButtonBox,
-            QtCore.SIGNAL(u'accepted()'), SongBookDialog.accept)
-        QtCore.QObject.connect(self.ButtonBox,
-            QtCore.SIGNAL(u'rejected()'), SongBookDialog.reject)
-        QtCore.QMetaObject.connectSlotsByName(SongBookDialog)
+        self.retranslateUi(SongBookForm)
+        QtCore.QObject.connect(self.ButtonBox,
+            QtCore.SIGNAL(u'accepted()'), SongBookForm.accept)
+        QtCore.QObject.connect(self.ButtonBox,
+            QtCore.SIGNAL(u'rejected()'), SongBookForm.reject)
+        QtCore.QMetaObject.connectSlotsByName(SongBookForm)
 
-    def retranslateUi(self, SongBookDialog):
-        SongBookDialog.setWindowTitle(self.trUtf8('Edit Book'))
-        self.NameLabel.setText(self.trUtf8('Name:'))
-        self.PublisherLabel.setText(self.trUtf8('Publisher:'))
+    def retranslateUi(self, SongBookForm):
+        SongBookForm.setWindowTitle(translate('SongBookForm', 'Edit Book'))
+        self.NameLabel.setText(translate('SongBookForm', 'Name:'))
+        self.PublisherLabel.setText(translate('SongBookForm', 'Publisher:'))

=== modified file 'openlp/plugins/songs/forms/songmaintenancedialog.py'
--- openlp/plugins/songs/forms/songmaintenancedialog.py	2010-03-21 23:58:01 +0000
+++ openlp/plugins/songs/forms/songmaintenancedialog.py	2010-04-30 20:10:34 +0000
@@ -25,18 +25,18 @@
 
 from PyQt4 import QtCore, QtGui
 
-from openlp.core.lib import build_icon
+from openlp.core.lib import build_icon,  translate
 
 class Ui_SongMaintenanceDialog(object):
-    def setupUi(self, SongMaintenanceDialog):
-        SongMaintenanceDialog.setObjectName(u'SongMaintenanceDialog')
-        SongMaintenanceDialog.setWindowModality(QtCore.Qt.ApplicationModal)
-        SongMaintenanceDialog.resize(486, 361)
-        self.DialogLayout = QtGui.QVBoxLayout(SongMaintenanceDialog)
+    def setupUi(self, SongMaintenanceForm):
+        SongMaintenanceForm.setObjectName(u'SongMaintenanceDialog')
+        SongMaintenanceForm.setWindowModality(QtCore.Qt.ApplicationModal)
+        SongMaintenanceForm.resize(486, 361)
+        self.DialogLayout = QtGui.QVBoxLayout(SongMaintenanceForm)
         self.DialogLayout.setSpacing(8)
         self.DialogLayout.setMargin(8)
         self.DialogLayout.setObjectName(u'DialogLayout')
-        self.ContentWidget = QtGui.QWidget(SongMaintenanceDialog)
+        self.ContentWidget = QtGui.QWidget(SongMaintenanceForm)
         self.ContentWidget.setObjectName(u'ContentWidget')
         self.ContentLayout = QtGui.QHBoxLayout(self.ContentWidget)
         self.ContentLayout.setSpacing(8)
@@ -192,32 +192,32 @@
         self.TypeStackedWidget.addWidget(self.BooksPage)
         self.ContentLayout.addWidget(self.TypeStackedWidget)
         self.DialogLayout.addWidget(self.ContentWidget)
-        self.MaintenanceButtonBox = QtGui.QDialogButtonBox(SongMaintenanceDialog)
+        self.MaintenanceButtonBox = QtGui.QDialogButtonBox(SongMaintenanceForm)
         self.MaintenanceButtonBox.setOrientation(QtCore.Qt.Horizontal)
         self.MaintenanceButtonBox.setStandardButtons(QtGui.QDialogButtonBox.Close)
         self.MaintenanceButtonBox.setObjectName(u'MaintenanceButtonBox')
         self.DialogLayout.addWidget(self.MaintenanceButtonBox)
 
-        self.retranslateUi(SongMaintenanceDialog)
+        self.retranslateUi(SongMaintenanceForm)
         self.TypeStackedWidget.setCurrentIndex(0)
         QtCore.QObject.connect(self.MaintenanceButtonBox,
-            QtCore.SIGNAL(u'rejected()'), SongMaintenanceDialog.accept)
+            QtCore.SIGNAL(u'rejected()'), SongMaintenanceForm.accept)
         QtCore.QObject.connect(self.TypeListWidget,
             QtCore.SIGNAL(u'currentRowChanged(int)'),
             self.TypeStackedWidget.setCurrentIndex)
-        QtCore.QMetaObject.connectSlotsByName(SongMaintenanceDialog)
+        QtCore.QMetaObject.connectSlotsByName(SongMaintenanceForm)
 
-    def retranslateUi(self, SongMaintenanceDialog):
-        SongMaintenanceDialog.setWindowTitle(self.trUtf8('Song Maintenance'))
-        self.TypeListWidget.item(0).setText(self.trUtf8('Authors'))
-        self.TypeListWidget.item(1).setText(self.trUtf8('Topics'))
-        self.TypeListWidget.item(2).setText(self.trUtf8('Books/Hymnals'))
-        self.AuthorAddButton.setText(self.trUtf8('Add'))
-        self.AuthorEditButton.setText(self.trUtf8('Edit'))
-        self.AuthorDeleteButton.setText(self.trUtf8('Delete'))
-        self.TopicAddButton.setText(self.trUtf8('Add'))
-        self.TopicEditButton.setText(self.trUtf8('Edit'))
-        self.TopicDeleteButton.setText(self.trUtf8('Delete'))
-        self.BookAddButton.setText(self.trUtf8('Add'))
-        self.BookEditButton.setText(self.trUtf8('Edit'))
-        self.BookDeleteButton.setText(self.trUtf8('Delete'))
+    def retranslateUi(self, SongMaintenanceForm):
+        SongMaintenanceForm.setWindowTitle(translate('SongMaintenanceForm', 'Song Maintenance'))
+        self.TypeListWidget.item(0).setText(translate('SongMaintenanceForm', 'Authors'))
+        self.TypeListWidget.item(1).setText(translate('SongMaintenanceForm', 'Topics'))
+        self.TypeListWidget.item(2).setText(translate('SongMaintenanceForm', 'Books/Hymnals'))
+        self.AuthorAddButton.setText(translate('SongMaintenanceForm', 'Add'))
+        self.AuthorEditButton.setText(translate('SongMaintenanceForm', 'Edit'))
+        self.AuthorDeleteButton.setText(translate('SongMaintenanceForm', 'Delete'))
+        self.TopicAddButton.setText(translate('SongMaintenanceForm', 'Add'))
+        self.TopicEditButton.setText(translate('SongMaintenanceForm', 'Edit'))
+        self.TopicDeleteButton.setText(translate('SongMaintenanceForm', 'Delete'))
+        self.BookAddButton.setText(translate('SongMaintenanceForm', 'Add'))
+        self.BookEditButton.setText(translate('SongMaintenanceForm', 'Edit'))
+        self.BookDeleteButton.setText(translate('SongMaintenanceForm', 'Delete'))

=== modified file 'openlp/plugins/songs/forms/topicsdialog.py'
--- openlp/plugins/songs/forms/topicsdialog.py	2010-03-21 23:58:01 +0000
+++ openlp/plugins/songs/forms/topicsdialog.py	2010-04-30 20:10:34 +0000
@@ -24,26 +24,27 @@
 ###############################################################################
 
 from PyQt4 import QtCore, QtGui
+from openlp.core.lib import translate
 
 class Ui_TopicsDialog(object):
-    def setupUi(self, TopicsDialog):
-        TopicsDialog.setObjectName(u'TopicsDialog')
-        TopicsDialog.resize(365, 77)
-        self.TopicLayout = QtGui.QFormLayout(TopicsDialog)
+    def setupUi(self, TopicsForm):
+        TopicsForm.setObjectName(u'TopicsDialog')
+        TopicsForm.resize(365, 77)
+        self.TopicLayout = QtGui.QFormLayout(TopicsForm)
         self.TopicLayout.setFieldGrowthPolicy(
             QtGui.QFormLayout.ExpandingFieldsGrow)
         self.TopicLayout.setMargin(8)
         self.TopicLayout.setSpacing(8)
         self.TopicLayout.setObjectName(u'TopicLayout')
-        self.NameLabel = QtGui.QLabel(TopicsDialog)
+        self.NameLabel = QtGui.QLabel(TopicsForm)
         self.NameLabel.setObjectName(u'NameLabel')
         self.TopicLayout.setWidget(0,
             QtGui.QFormLayout.LabelRole, self.NameLabel)
-        self.NameEdit = QtGui.QLineEdit(TopicsDialog)
+        self.NameEdit = QtGui.QLineEdit(TopicsForm)
         self.NameEdit.setObjectName(u'NameEdit')
         self.TopicLayout.setWidget(0,
             QtGui.QFormLayout.FieldRole, self.NameEdit)
-        self.TopicButtonBox = QtGui.QDialogButtonBox(TopicsDialog)
+        self.TopicButtonBox = QtGui.QDialogButtonBox(TopicsForm)
         self.TopicButtonBox.setOrientation(QtCore.Qt.Horizontal)
         self.TopicButtonBox.setStandardButtons(
             QtGui.QDialogButtonBox.Save | QtGui.QDialogButtonBox.Cancel)
@@ -51,13 +52,13 @@
         self.TopicLayout.setWidget(1,
             QtGui.QFormLayout.FieldRole, self.TopicButtonBox)
 
-        self.retranslateUi(TopicsDialog)
-        QtCore.QObject.connect(self.TopicButtonBox,
-            QtCore.SIGNAL(u'accepted()'), TopicsDialog.accept)
-        QtCore.QObject.connect(self.TopicButtonBox,
-            QtCore.SIGNAL(u'rejected()'), TopicsDialog.reject)
-        QtCore.QMetaObject.connectSlotsByName(TopicsDialog)
+        self.retranslateUi(TopicsForm)
+        QtCore.QObject.connect(self.TopicButtonBox,
+            QtCore.SIGNAL(u'accepted()'), TopicsForm.accept)
+        QtCore.QObject.connect(self.TopicButtonBox,
+            QtCore.SIGNAL(u'rejected()'), TopicsForm.reject)
+        QtCore.QMetaObject.connectSlotsByName(TopicsForm)
 
-    def retranslateUi(self, TopicsDialog):
-        TopicsDialog.setWindowTitle(self.trUtf8('Topic Maintenance'))
-        self.NameLabel.setText(self.trUtf8('Topic name:'))
+    def retranslateUi(self, TopicsForm):
+        TopicsForm.setWindowTitle(translate('TopicsForm', 'Topic Maintenance'))
+        self.NameLabel.setText(translate('TopicsForm', 'Topic name:'))

=== modified file 'openlp/plugins/songusage/forms/songusagedeletedialog.py'
--- openlp/plugins/songusage/forms/songusagedeletedialog.py	2010-03-21 23:58:01 +0000
+++ openlp/plugins/songusage/forms/songusagedeletedialog.py	2010-04-30 20:10:34 +0000
@@ -24,6 +24,7 @@
 ###############################################################################
 
 from PyQt4 import QtCore, QtGui
+from openlp.core.lib import translate
 
 class Ui_SongUsageDeleteDialog(object):
     def setupUi(self, AuditDeleteDialog):
@@ -57,4 +58,4 @@
         QtCore.QMetaObject.connectSlotsByName(AuditDeleteDialog)
 
     def retranslateUi(self, AuditDeleteDialog):
-        AuditDeleteDialog.setWindowTitle(self.trUtf8('Song Usage Delete'))
+        AuditDeleteDialog.setWindowTitle(translate('AuditDeleteDialog', 'Song Usage Delete'))

=== modified file 'openlp/plugins/songusage/forms/songusagedetaildialog.py'
--- openlp/plugins/songusage/forms/songusagedetaildialog.py	2010-03-23 19:04:15 +0000
+++ openlp/plugins/songusage/forms/songusagedetaildialog.py	2010-04-30 20:10:34 +0000
@@ -24,6 +24,7 @@
 ###############################################################################
 
 from PyQt4 import QtCore, QtGui
+from openlp.core.lib import translate
 
 class Ui_SongUsageDetailDialog(object):
     def setupUi(self, AuditDetailDialog):
@@ -86,7 +87,7 @@
         QtCore.QMetaObject.connectSlotsByName(AuditDetailDialog)
 
     def retranslateUi(self, AuditDetailDialog):
-        AuditDetailDialog.setWindowTitle(self.trUtf8('Song Usage Extraction'))
-        self.DateRangeGroupBox.setTitle(self.trUtf8('Select Date Range'))
-        self.ToLabel.setText(self.trUtf8('to'))
-        self.FileGroupBox.setTitle(self.trUtf8('Report Location'))
+        AuditDetailDialog.setWindowTitle(translate('AuditDetailDialog', 'Song Usage Extraction'))
+        self.DateRangeGroupBox.setTitle(translate('AuditDetailDialog', 'Select Date Range'))
+        self.ToLabel.setText(translate('AuditDetailDialog', 'to'))
+        self.FileGroupBox.setTitle(translate('AuditDetailDialog', 'Report Location'))

=== added file 'resources/i18n/openlp_af.qm'
Binary files resources/i18n/openlp_af.qm	1970-01-01 00:00:00 +0000 and resources/i18n/openlp_af.qm	2010-04-30 20:10:34 +0000 differ
=== added file 'resources/i18n/openlp_de.qm'
Binary files resources/i18n/openlp_de.qm	1970-01-01 00:00:00 +0000 and resources/i18n/openlp_de.qm	2010-04-30 20:10:34 +0000 differ
=== added file 'resources/i18n/openlp_en.ts'
--- resources/i18n/openlp_en.ts	1970-01-01 00:00:00 +0000
+++ resources/i18n/openlp_en.ts	2010-04-30 20:10:34 +0000
@@ -0,0 +1,3545 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!DOCTYPE TS><TS version="1.1">
+<context>
+    <name>AboutForm</name>
+    <message>
+        <location filename="openlp/core/ui/aboutform.py" line="47"/>
+        <source>build</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/aboutdialog.py" line="117"/>
+        <source>About OpenLP</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/aboutdialog.py" line="118"/>
+        <source>OpenLP &lt;version&gt;&lt;revision&gt; - Open Source Lyrics Projection
+
+OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if OpenOffice.org, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector.
+
+Find out more about OpenLP: http://openlp.org/
+
+OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider contributing by using the button below.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/aboutdialog.py" line="134"/>
+        <source>About</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/aboutdialog.py" line="136"/>
+        <source>Project Lead
+    Raoul &quot;superfly&quot; Snyman
+
+Developers
+    Tim &quot;TRB143&quot; Bentley
+    Jonathan &quot;gushie&quot; Corwin
+    Michael &quot;cocooncrash&quot; Gorven
+    Scott &quot;sguerrieri&quot; Guerrieri
+    Raoul &quot;superfly&quot; Snyman
+    Martin &quot;mijiti&quot; Thompson
+    Jon &quot;Meths&quot; Tibble
+
+Contributors
+    Meinert &quot;m2j&quot; Jordan
+    Christian &quot;crichter&quot; Richter
+    Maikel Stuivenberg
+    Carsten &quot;catini&quot; Tingaard
+
+Testers
+    Philip &quot;Phill&quot; Ridout
+    Wesley &quot;wrst&quot; Stout (lead)
+
+Packagers
+    Thomas &quot;tabthorpe&quot; Abthorpe (FreeBSD)
+    Tim &quot;TRB143&quot; Bentley (Fedora)
+    Michael &quot;cocooncrash&quot; Gorven (Ubuntu)
+    Matthias &quot;matthub&quot; Hub (Mac OS X)
+    Raoul &quot;superfly&quot; Snyman (Windows)
+</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/aboutdialog.py" line="166"/>
+        <source>Credits</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/aboutdialog.py" line="169"/>
+        <source>Copyright &#xa9; 2004-2010 Raoul Snyman
+Portions copyright &#xa9; 2004-2010 Tim Bentley, Jonathan Corwin, Michael Gorven, Scott Guerrieri, Christian Richter, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Carsten Tinggaard
+
+This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License.
+
+This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See below for more details.
+
+
+GNU GENERAL PUBLIC LICENSE
+Version 2, June 1991
+
+Copyright (C) 1989, 1991 Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed.
+
+Preamble
+
+The licenses for most software are designed to take away your freedom to share and change it.  By contrast, the GNU General Public License is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users.  This General Public License applies to most of the Free Software Foundation&apos;s software and to any other program whose authors commit to using it.  (Some other Free Software Foundation software is covered by the GNU Lesser General Public License instead.)  You can apply it to your programs, too.
+
+When we speak of free software, we are referring to freedom, not price.  Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things.
+
+To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it.
+
+For example, if you distribute copies of such a program, whether gratis or for a fee, you must give the recipients all the rights that you have.  You must make sure that they, too, receive or can get the source code.  And you must show them these terms so they know their rights.
+
+We protect your rights with two steps: (1) copyright the software, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the software.
+
+Also, for each author&apos;s protection and ours, we want to make certain that everyone understands that there is no warranty for this free software.  If the software is modified by someone else and passed on, we want its recipients to know that what they have is not the original, so that any problems introduced by others will not reflect on the original authors&apos; reputations.
+
+Finally, any free program is threatened constantly by software patents.  We wish to avoid the danger that redistributors of a free program will individually obtain patent licenses, in effect making the program proprietary.  To prevent this, we have made it clear that any patent must be licensed for everyone&apos;s free use or not licensed at all.
+
+The precise terms and conditions for copying, distribution and modification follow.
+
+GNU GENERAL PUBLIC LICENSE
+TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
+
+0. This License applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License.  The &quot;Program&quot;, below, refers to any such program or work, and a &quot;work based on the Program&quot; means either the Program or any derivative work under copyright law: that is to say, a work containing the Program or a portion of it, either verbatim or with modifications and/or translated into another language.  (Hereinafter, translation is included without limitation in the term &quot;modification&quot;.)  Each licensee is addressed as &quot;you&quot;.
+
+Activities other than copying, distribution and modification are not covered by this License; they are outside its scope.  The act of running the Program is not restricted, and the output from the Program is covered only if its contents constitute a work based on the Program (independent of having been made by running the Program). Whether that is true depends on what the Program does.
+
+1. You may copy and distribute verbatim copies of the Program&apos;s source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and give any other recipients of the Program a copy of this License along with the Program.
+
+You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee.
+
+2. You may modify your copy or copies of the Program or any portion of it, thus forming a work based on the Program, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions:
+
+a) You must cause the modified files to carry prominent notices stating that you changed the files and the date of any change.
+
+b) You must cause any work that you distribute or publish, that in whole or in part contains or is derived from the Program or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License.
+
+c) If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the most ordinary way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this License.  (Exception: if the Program itself is interactive but does not normally print such an announcement, your work based on the Program is not required to print an announcement.)
+
+These requirements apply to the modified work as a whole.  If identifiable sections of that work are not derived from the Program, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works.  But when you distribute the same sections as part of a whole which is a work based on the Program, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it.
+
+Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Program.
+
+In addition, mere aggregation of another work not based on the Program with the Program (or with a work based on the Program) on a volume of a storage or distribution medium does not bring the other work under the scope of this License.
+
+3. You may copy and distribute the Program (or a work based on it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you also do one of the following:
+
+a) Accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or,
+
+b) Accompany it with a written offer, valid for at least three years, to give any third party, for a charge no more than your cost of physically performing source distribution, a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or,
+
+c) Accompany it with the information you received as to the offer to distribute corresponding source code.  (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form with such an offer, in accord with Subsection b above.)
+
+The source code for a work means the preferred form of the work for making modifications to it.  For an executable work, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the executable.  However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable.
+
+If distribution of executable or object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place counts as distribution of the source code, even though third parties are not compelled to copy the source along with the object code.
+
+4. You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this License.  Any attempt otherwise to copy, modify, sublicense or distribute the Program is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance.
+
+5. You are not required to accept this License, since you have not signed it.  However, nothing else grants you permission to modify or distribute the Program or its derivative works.  These actions are prohibited by law if you do not accept this License.  Therefore, by modifying or distributing the Program (or any work based on the Program), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Program or works based on it.
+
+6. Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program subject to these terms and conditions.  You may not impose any further restrictions on the recipients&apos; exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License.
+
+7. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License.  If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Program at all.  For example, if a patent license would not permit royalty-free redistribution of the Program by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Program.
+
+If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply and the section as a whole is intended to apply in other circumstances.
+
+It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system, which is implemented by public license practices.  Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice.
+
+This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License.
+
+8. If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Program under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded.  In such case, this License incorporates the limitation as if written in the body of this License.
+
+9. The Free Software Foundation may publish revised and/or new versions of the General Public License from time to time.  Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns.
+
+Each version is given a distinguishing version number.  If the Program specifies a version number of this License which applies to it and &quot;any later version&apos;, you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation.  If the Program does not specify a version number of this License, you may choose any version ever published by the Free Software Foundation.
+
+10. If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission.  For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this.  Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally.
+
+NO WARRANTY
+
+11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW.  EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM &quot;AS IS&quot; WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.  THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU.  SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
+
+12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
+
+END OF TERMS AND CONDITIONS
+
+How to Apply These Terms to Your New Programs
+
+If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms.
+
+To do so, attach the following notices to the program.  It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the &quot;copyright&quot; line and a pointer to where the full notice is found.
+
+&lt;one line to give the program&apos;s name and a brief idea of what it does.&gt;
+Copyright (C) &lt;year&gt;  &lt;name of author&gt;
+
+This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.
+
+This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
+
+You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+
+Also add information on how to contact you by electronic and paper mail.
+
+If the program is interactive, make it output a short notice like this when it starts in an interactive mode:
+
+Gnomovision version 69, Copyright (C) year name of author
+Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type &quot;show w&quot;.
+This is free software, and you are welcome to redistribute it under certain conditions; type &quot;show c&quot; for details.
+
+The hypothetical commands &quot;show w&quot; and &quot;show c&quot; should show the appropriate parts of the General Public License.  Of course, the commands you use may be called something other than &quot;show w&quot; and &quot;show c&quot;; they could even be mouse-clicks or menu items--whatever suits your program.
+
+You should also get your employer (if you work as a programmer) or your school, if any, to sign a &quot;copyright disclaimer&quot; for the program, if necessary.  Here is a sample; alter the names:
+
+Yoyodyne, Inc., hereby disclaims all copyright interest in the program &quot;Gnomovision&quot; (which makes passes at compilers) written by James Hacker.
+
+&lt;signature of Ty Coon&gt;, 1 April 1989
+Ty Coon, President of Vice
+
+This General Public License does not permit incorporating your program into proprietary programs.  If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library.  If this is what you want to do, use the GNU Lesser General Public License instead of this License.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/aboutdialog.py" line="559"/>
+        <source>License</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/aboutdialog.py" line="562"/>
+        <source>Contribute</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/aboutdialog.py" line="563"/>
+        <source>Close</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+<context>
+    <name>AlertForm</name>
+    <message>
+        <location filename="openlp/plugins/alerts/forms/alertform.py" line="103"/>
+        <source>Item selected to Add</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/alerts/forms/alertform.py" line="103"/>
+        <source>Missing data</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/alerts/forms/alertdialog.py" line="137"/>
+        <source>Alert Message</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/alerts/forms/alertdialog.py" line="138"/>
+        <source>Alert &amp;text:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/alerts/forms/alertdialog.py" line="139"/>
+        <source>&amp;Parameter(s):</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/alerts/forms/alertdialog.py" line="140"/>
+        <source>&amp;New</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/alerts/forms/alertdialog.py" line="141"/>
+        <source>&amp;Save</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/alerts/forms/alertdialog.py" line="142"/>
+        <source>&amp;Delete</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/alerts/forms/alertdialog.py" line="143"/>
+        <source>Displ&amp;ay</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/alerts/forms/alertdialog.py" line="144"/>
+        <source>Display &amp;&amp; Cl&amp;ose</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/alerts/forms/alertdialog.py" line="145"/>
+        <source>&amp;Close</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+<context>
+    <name>AmendThemeForm</name>
+    <message>
+        <location filename="openlp/core/ui/amendthemeform.py" line="716"/>
+        <source>Slide Height is %s rows</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/amendthemeform.py" line="647"/>
+        <source>First  Color:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/amendthemeform.py" line="648"/>
+        <source>Second Color:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/amendthemeform.py" line="632"/>
+        <source>Background Color:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/amendthemedialog.py" line="605"/>
+        <source>Theme Maintenance</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/amendthemedialog.py" line="606"/>
+        <source>Theme Name:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/amendthemedialog.py" line="607"/>
+        <source>Background:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/amendthemedialog.py" line="608"/>
+        <source>Opaque</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/amendthemedialog.py" line="609"/>
+        <source>Transparent</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/amendthemedialog.py" line="610"/>
+        <source>Background Type:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/amendthemedialog.py" line="611"/>
+        <source>Solid Color</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/amendthemedialog.py" line="612"/>
+        <source>Gradient</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/amendthemedialog.py" line="613"/>
+        <source>Image</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/amendthemedialog.py" line="614"/>
+        <source>&lt;Color1&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/amendthemedialog.py" line="615"/>
+        <source>&lt;Color2&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/amendthemedialog.py" line="616"/>
+        <source>Image:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/amendthemedialog.py" line="617"/>
+        <source>Gradient :</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/amendthemedialog.py" line="618"/>
+        <source>Horizontal</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/amendthemedialog.py" line="619"/>
+        <source>Vertical</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/amendthemedialog.py" line="620"/>
+        <source>Circular</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/amendthemedialog.py" line="621"/>
+        <source>Background</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/amendthemedialog.py" line="624"/>
+        <source>Main Font</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/amendthemedialog.py" line="650"/>
+        <source>Font:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/amendthemedialog.py" line="651"/>
+        <source>Font Color:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/amendthemedialog.py" line="652"/>
+        <source>Size:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/amendthemedialog.py" line="653"/>
+        <source>pt</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/amendthemedialog.py" line="629"/>
+        <source>Wrap Indentation</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/amendthemedialog.py" line="630"/>
+        <source>Adjust Line Spacing</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/amendthemedialog.py" line="654"/>
+        <source>Normal</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/amendthemedialog.py" line="655"/>
+        <source>Bold</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/amendthemedialog.py" line="656"/>
+        <source>Italics</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/amendthemedialog.py" line="657"/>
+        <source>Bold/Italics</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/amendthemedialog.py" line="658"/>
+        <source>Font Weight:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/amendthemedialog.py" line="659"/>
+        <source>Display Location</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/amendthemedialog.py" line="660"/>
+        <source>Use Default Location:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/amendthemedialog.py" line="661"/>
+        <source>X Position:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/amendthemedialog.py" line="662"/>
+        <source>Y Position:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/amendthemedialog.py" line="663"/>
+        <source>Width:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/amendthemedialog.py" line="664"/>
+        <source>Height:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/amendthemedialog.py" line="679"/>
+        <source>px</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/amendthemedialog.py" line="646"/>
+        <source>Font Main</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/amendthemedialog.py" line="649"/>
+        <source>Footer Font</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/amendthemedialog.py" line="669"/>
+        <source>Font Footer</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/amendthemedialog.py" line="672"/>
+        <source>Outline</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/amendthemedialog.py" line="673"/>
+        <source>Outline Size:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/amendthemedialog.py" line="675"/>
+        <source>Outline Color:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/amendthemedialog.py" line="676"/>
+        <source>Show Outline:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/amendthemedialog.py" line="677"/>
+        <source>Shadow</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/amendthemedialog.py" line="678"/>
+        <source>Shadow Size:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/amendthemedialog.py" line="680"/>
+        <source>Shadow Color:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/amendthemedialog.py" line="681"/>
+        <source>Show Shadow:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/amendthemedialog.py" line="682"/>
+        <source>Alignment</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/amendthemedialog.py" line="683"/>
+        <source>Horizontal Align:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/amendthemedialog.py" line="684"/>
+        <source>Left</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/amendthemedialog.py" line="685"/>
+        <source>Right</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/amendthemedialog.py" line="686"/>
+        <source>Center</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/amendthemedialog.py" line="687"/>
+        <source>Vertical Align:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/amendthemedialog.py" line="688"/>
+        <source>Top</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/amendthemedialog.py" line="689"/>
+        <source>Middle</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/amendthemedialog.py" line="690"/>
+        <source>Bottom</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/amendthemedialog.py" line="691"/>
+        <source>Slide Transition</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/amendthemedialog.py" line="692"/>
+        <source>Transition Active:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/amendthemedialog.py" line="693"/>
+        <source>Other Options</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/amendthemedialog.py" line="696"/>
+        <source>Preview</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+<context>
+    <name>AuditDeleteDialog</name>
+    <message>
+        <location filename="openlp/plugins/songusage/forms/songusagedeletedialog.py" line="61"/>
+        <source>Song Usage Delete</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+<context>
+    <name>AuditDetailDialog</name>
+    <message>
+        <location filename="openlp/plugins/songusage/forms/songusagedetaildialog.py" line="90"/>
+        <source>Song Usage Extraction</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songusage/forms/songusagedetaildialog.py" line="91"/>
+        <source>Select Date Range</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songusage/forms/songusagedetaildialog.py" line="92"/>
+        <source>to</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songusage/forms/songusagedetaildialog.py" line="93"/>
+        <source>Report Location</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+<context>
+    <name>AuthorsForm</name>
+    <message>
+        <location filename="openlp/plugins/songs/forms/authorsform.py" line="78"/>
+        <source>You need to type in the first name of the author.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/forms/authorsform.py" line="92"/>
+        <source>You haven&apos;t set a display name for the author, would you like me to combine the first and last names for you?</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/forms/authorsform.py" line="92"/>
+        <source>Error</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/forms/authorsform.py" line="85"/>
+        <source>You need to type in the last name of the author.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/forms/authorsdialog.py" line="77"/>
+        <source>Author Maintenance</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/forms/authorsdialog.py" line="78"/>
+        <source>Display name:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/forms/authorsdialog.py" line="79"/>
+        <source>First name:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/forms/authorsdialog.py" line="80"/>
+        <source>Last name:</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+<context>
+    <name>BibleMediaItem</name>
+    <message>
+        <location filename="openlp/plugins/bibles/lib/mediaitem.py" line="150"/>
+        <source>Quick</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/bibles/lib/mediaitem.py" line="74"/>
+        <source>Bible</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/bibles/lib/mediaitem.py" line="300"/>
+        <source>Book:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/bibles/lib/mediaitem.py" line="308"/>
+        <source>Text Search</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/bibles/lib/mediaitem.py" line="295"/>
+        <source>Find:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/bibles/lib/mediaitem.py" line="294"/>
+        <source>Search Type:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/bibles/lib/mediaitem.py" line="563"/>
+        <source>Bible not fully loaded</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/bibles/lib/mediaitem.py" line="364"/>
+        <source>No matching book could be found in this Bible.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/bibles/lib/mediaitem.py" line="299"/>
+        <source>Dual:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/bibles/lib/mediaitem.py" line="301"/>
+        <source>Chapter:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/bibles/lib/mediaitem.py" line="306"/>
+        <source>Search</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/bibles/lib/mediaitem.py" line="312"/>
+        <source>Keep</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/bibles/lib/mediaitem.py" line="305"/>
+        <source>Results:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/bibles/lib/mediaitem.py" line="307"/>
+        <source>Verse Search</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/bibles/lib/mediaitem.py" line="298"/>
+        <source>Version:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/bibles/lib/mediaitem.py" line="303"/>
+        <source>From:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/bibles/lib/mediaitem.py" line="364"/>
+        <source>No Book Found</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/bibles/lib/mediaitem.py" line="234"/>
+        <source>Advanced</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/bibles/lib/mediaitem.py" line="304"/>
+        <source>To:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/bibles/lib/mediaitem.py" line="311"/>
+        <source>Clear</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/bibles/lib/mediaitem.py" line="302"/>
+        <source>Verse:</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+<context>
+    <name>BiblePlugin</name>
+    <message>
+        <location filename="openlp/plugins/bibles/bibleplugin.py" line="91"/>
+        <source>&lt;strong&gt;Bible Plugin&lt;/strong&gt;&lt;br /&gt;This plugin allows bible verses from different sources to be displayed on the screen during the service.</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+<context>
+    <name>BiblesTab</name>
+    <message>
+        <location filename="openlp/plugins/bibles/lib/biblestab.py" line="162"/>
+        <source>( and )</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/bibles/lib/biblestab.py" line="159"/>
+        <source>verse per line</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/bibles/lib/biblestab.py" line="156"/>
+        <source>Display Style:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/bibles/lib/biblestab.py" line="160"/>
+        <source>continuous</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/bibles/lib/biblestab.py" line="164"/>
+        <source>[ and ]</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/bibles/lib/biblestab.py" line="152"/>
+        <source>Verse Display</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/bibles/lib/biblestab.py" line="167"/>
+        <source>Display Dual Bible Verses</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/bibles/lib/biblestab.py" line="153"/>
+        <source>Only show new chapter numbers</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/bibles/lib/biblestab.py" line="155"/>
+        <source>Layout Style:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/bibles/lib/biblestab.py" line="161"/>
+        <source>No brackets</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/bibles/lib/biblestab.py" line="48"/>
+        <source>Bibles</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/bibles/lib/biblestab.py" line="163"/>
+        <source>{ and }</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/bibles/lib/biblestab.py" line="165"/>
+        <source>Note:
+Changes don&apos;t affect verses already in the service</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/bibles/lib/biblestab.py" line="158"/>
+        <source>verse per slide</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/bibles/lib/biblestab.py" line="157"/>
+        <source>Bible Theme:</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+<context>
+    <name>CustomMediaItem</name>
+    <message>
+        <location filename="openlp/plugins/custom/lib/mediaitem.py" line="69"/>
+        <source>Custom</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+<context>
+    <name>CustomPlugin</name>
+    <message>
+        <location filename="openlp/plugins/custom/customplugin.py" line="70"/>
+        <source>&lt;b&gt;Custom Plugin&lt;/b&gt;&lt;br&gt;This plugin allows slides to be displayed on the screen in the same way songs are. This plugin provides greater freedom over the songs plugin.&lt;br&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+<context>
+    <name>CustomTab</name>
+    <message>
+        <location filename="openlp/plugins/custom/lib/customtab.py" line="39"/>
+        <source>Custom</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/custom/lib/customtab.py" line="58"/>
+        <source>Custom Display</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/custom/lib/customtab.py" line="59"/>
+        <source>Display Footer</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+<context>
+    <name>EditCustomForm</name>
+    <message>
+        <location filename="openlp/plugins/custom/forms/editcustomform.py" line="266"/>
+        <source>You need to enter a title</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/custom/forms/editcustomform.py" line="150"/>
+        <source>Error</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/custom/forms/editcustomform.py" line="270"/>
+        <source>You need to enter a slide</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/custom/forms/editcustomform.py" line="87"/>
+        <source>Save &amp;&amp; Preview</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/custom/forms/editcustomform.py" line="273"/>
+        <source>You have unsaved data, please save or clear</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/custom/forms/editcustomdialog.py" line="156"/>
+        <source>Edit Custom Slides</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/custom/forms/editcustomdialog.py" line="157"/>
+        <source>Move slide Up 1</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/custom/forms/editcustomdialog.py" line="158"/>
+        <source>Move slide down 1</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/custom/forms/editcustomdialog.py" line="159"/>
+        <source>Title:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/custom/forms/editcustomdialog.py" line="160"/>
+        <source>Add New</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/custom/forms/editcustomdialog.py" line="161"/>
+        <source>Add new slide at bottom</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/custom/forms/editcustomdialog.py" line="162"/>
+        <source>Edit</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/custom/forms/editcustomdialog.py" line="163"/>
+        <source>Edit selected slide</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/custom/forms/editcustomdialog.py" line="164"/>
+        <source>Edit All</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/custom/forms/editcustomdialog.py" line="165"/>
+        <source>Edit all slides</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/custom/forms/editcustomdialog.py" line="166"/>
+        <source>Save</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/custom/forms/editcustomdialog.py" line="167"/>
+        <source>Replace edited slide</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/custom/forms/editcustomdialog.py" line="168"/>
+        <source>Delete</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/custom/forms/editcustomdialog.py" line="169"/>
+        <source>Delete selected slide</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/custom/forms/editcustomdialog.py" line="170"/>
+        <source>Clear</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/custom/forms/editcustomdialog.py" line="171"/>
+        <source>Clear edit area</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/custom/forms/editcustomdialog.py" line="172"/>
+        <source>Split Slide</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/custom/forms/editcustomdialog.py" line="173"/>
+        <source>Add slide split</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/custom/forms/editcustomdialog.py" line="174"/>
+        <source>Theme:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/custom/forms/editcustomdialog.py" line="175"/>
+        <source>Credits:</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+<context>
+    <name>EditSongForm</name>
+    <message>
+        <location filename="openlp/plugins/songs/forms/editsongform.py" line="425"/>
+        <source>You need to enter a song title.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/forms/editsongform.py" line="429"/>
+        <source>You need to enter some verses.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/forms/editsongform.py" line="485"/>
+        <source>Save &amp;&amp; Preview</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/forms/editsongform.py" line="502"/>
+        <source>Error</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/forms/editsongform.py" line="434"/>
+        <source> bitped</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/forms/editsongform.py" line="437"/>
+        <source>v</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/forms/editsongform.py" line="437"/>
+        <source>c</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/forms/editsongform.py" line="445"/>
+        <source>Invalid verse entry - Vx or Cx</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/forms/editsongform.py" line="453"/>
+        <source>Invalid verse entry, values must be I,B,T,P,E,O,Vx,Cx</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/forms/editsongdialog.py" line="422"/>
+        <source>Song Editor</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/forms/editsongdialog.py" line="423"/>
+        <source>Title:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/forms/editsongdialog.py" line="424"/>
+        <source>Alternative Title:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/forms/editsongdialog.py" line="425"/>
+        <source>Lyrics:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/forms/editsongdialog.py" line="426"/>
+        <source>Verse Order:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/forms/editsongdialog.py" line="427"/>
+        <source>Add</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/forms/editsongdialog.py" line="428"/>
+        <source>Edit</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/forms/editsongdialog.py" line="429"/>
+        <source>Edit All</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/forms/editsongdialog.py" line="430"/>
+        <source>Delete</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/forms/editsongdialog.py" line="431"/>
+        <source>Title &amp;&amp; Lyrics</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/forms/editsongdialog.py" line="434"/>
+        <source>Authors</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/forms/editsongdialog.py" line="435"/>
+        <source>&amp;Add to Song</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/forms/editsongdialog.py" line="436"/>
+        <source>&amp;Remove</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/forms/editsongdialog.py" line="437"/>
+        <source>&amp;Manage Authors, Topics, Books</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/forms/editsongdialog.py" line="439"/>
+        <source>Topic</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/forms/editsongdialog.py" line="440"/>
+        <source>A&amp;dd to Song</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/forms/editsongdialog.py" line="441"/>
+        <source>R&amp;emove</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/forms/editsongdialog.py" line="442"/>
+        <source>Song Book</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/forms/editsongdialog.py" line="443"/>
+        <source>Authors, Topics &amp;&amp; Book</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/forms/editsongdialog.py" line="446"/>
+        <source>Theme</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/forms/editsongdialog.py" line="447"/>
+        <source>Add a Theme</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/forms/editsongdialog.py" line="448"/>
+        <source>Copyright Information</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/forms/editsongdialog.py" line="450"/>
+        <source>CCLI Number:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/forms/editsongdialog.py" line="451"/>
+        <source>Comments</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/forms/editsongdialog.py" line="452"/>
+        <source>Theme, Copyright Info &amp;&amp; Comments</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+<context>
+    <name>EditVerseForm</name>
+    <message>
+        <location filename="openlp/plugins/songs/forms/editverseform.py" line="155"/>
+        <source>Verse</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/forms/editverseform.py" line="156"/>
+        <source>Chrous</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/forms/editversedialog.py" line="113"/>
+        <source>Edit Verse</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/forms/editversedialog.py" line="114"/>
+        <source>Verse Type</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/forms/editversedialog.py" line="127"/>
+        <source>Intro</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/forms/editversedialog.py" line="126"/>
+        <source>Pre-Chorus</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/forms/editversedialog.py" line="125"/>
+        <source>Chorus</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/forms/editversedialog.py" line="123"/>
+        <source>Bridge</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/forms/editversedialog.py" line="129"/>
+        <source>Ending</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/forms/editversedialog.py" line="128"/>
+        <source>Other</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/forms/editversedialog.py" line="122"/>
+        <source>Number</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+<context>
+    <name>GeneralTab</name>
+    <message>
+        <location filename="openlp/core/ui/generaltab.py" line="195"/>
+        <source>CCLI Details</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/generaltab.py" line="237"/>
+        <source>primary</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/generaltab.py" line="185"/>
+        <source>Application Startup</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/generaltab.py" line="181"/>
+        <source>Select monitor for output display:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/generaltab.py" line="190"/>
+        <source>Application Settings</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/generaltab.py" line="197"/>
+        <source>SongSelect Username:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/generaltab.py" line="196"/>
+        <source>CCLI Number:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/generaltab.py" line="187"/>
+        <source>Automatically open the last service</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/generaltab.py" line="193"/>
+        <source>Preview Next Song from Service Manager</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/generaltab.py" line="186"/>
+        <source>Show blank screen warning</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/generaltab.py" line="191"/>
+        <source>Prompt to save Service before starting New</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/generaltab.py" line="57"/>
+        <source>General</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/generaltab.py" line="189"/>
+        <source>Show the splash screen</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/generaltab.py" line="234"/>
+        <source>Screen</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/generaltab.py" line="180"/>
+        <source>Monitors</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/generaltab.py" line="198"/>
+        <source>SongSelect Password:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/generaltab.py" line="183"/>
+        <source>Display if a single screen</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+<context>
+    <name>ImageMediaItem</name>
+    <message>
+        <location filename="openlp/plugins/images/lib/mediaitem.py" line="62"/>
+        <source>Select Image(s)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/images/lib/mediaitem.py" line="146"/>
+        <source>Image(s)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/images/lib/mediaitem.py" line="59"/>
+        <source>Image</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/images/lib/mediaitem.py" line="63"/>
+        <source>Images (*.jpg *.jpeg *.gif *.png *.bmp);; All files (*)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/images/lib/mediaitem.py" line="106"/>
+        <source>Replace Live Background</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/images/lib/mediaitem.py" line="162"/>
+        <source>No item selected</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/images/lib/mediaitem.py" line="162"/>
+        <source>You must select one item</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+<context>
+    <name>ImagePlugin</name>
+    <message>
+        <location filename="openlp/plugins/images/imageplugin.py" line="59"/>
+        <source>&lt;b&gt;Image Plugin&lt;/b&gt;&lt;br&gt;Allows images of all types to be displayed.  If a number of images are selected together and presented on the live controller it is possible to turn them into a timed loop.&lt;br&lt;br&gt;From the plugin if the &lt;i&gt;Override background&lt;/i&gt; is chosen and an image is selected any songs which are rendered will use the selected image from the background instead of the one provied by the theme.&lt;br&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+<context>
+    <name>ImageTab</name>
+    <message>
+        <location filename="openlp/plugins/images/lib/imagetab.py" line="68"/>
+        <source>sec</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/images/lib/imagetab.py" line="66"/>
+        <source>Image Settings</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/images/lib/imagetab.py" line="67"/>
+        <source>Slide Loop Delay:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/images/lib/imagetab.py" line="39"/>
+        <source>Images</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+<context>
+    <name>ImportWizardForm</name>
+    <message>
+        <location filename="openlp/plugins/bibles/forms/importwizardform.py" line="134"/>
+        <source>You need to specify a file with books of the Bible to use in the import.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/bibles/forms/importwizardform.py" line="125"/>
+        <source>Invalid Bible Location</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/bibles/forms/importwizardform.py" line="172"/>
+        <source>You need to set a copyright for your Bible! Bibles in the Public Domain need to be marked as such.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/bibles/forms/importwizardform.py" line="181"/>
+        <source>Bible Exists</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/bibles/forms/importwizardform.py" line="172"/>
+        <source>Empty Copyright</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/bibles/forms/importwizardform.py" line="164"/>
+        <source>Empty Version Name</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/bibles/forms/importwizardform.py" line="151"/>
+        <source>Invalid OpenSong Bible</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/bibles/forms/importwizardform.py" line="421"/>
+        <source>Your Bible import failed.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/bibles/forms/importwizardform.py" line="419"/>
+        <source>Finished import.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/bibles/forms/importwizardform.py" line="142"/>
+        <source>You need to specify a file of Bible verses to import.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/bibles/forms/importwizardform.py" line="164"/>
+        <source>You need to specify a version name for your Bible.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/bibles/forms/importwizardform.py" line="181"/>
+        <source>This Bible already exists! Please import a different Bible or first delete the existing one.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/bibles/forms/importwizardform.py" line="365"/>
+        <source>Starting import...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/bibles/forms/importwizardform.py" line="134"/>
+        <source>Invalid Books File</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/bibles/forms/importwizardform.py" line="125"/>
+        <source>You need to specify a file to import your Bible from.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/bibles/forms/importwizardform.py" line="151"/>
+        <source>You need to specify an OpenSong Bible file to import.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/bibles/forms/importwizardform.py" line="142"/>
+        <source>Invalid Verse File</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/bibles/forms/importwizardform.py" line="230"/>
+        <source>Open OpenSong Bible</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/bibles/forms/importwizardform.py" line="209"/>
+        <source>Open OSIS File</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/bibles/forms/importwizardform.py" line="216"/>
+        <source>Open Books CSV File</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/bibles/forms/importwizardform.py" line="223"/>
+        <source>Open Verses CSV File</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/bibles/forms/bibleimportwizard.py" line="311"/>
+        <source>Bible Import Wizard</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/bibles/forms/bibleimportwizard.py" line="312"/>
+        <source>Welcome to the Bible Import Wizard</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/bibles/forms/bibleimportwizard.py" line="315"/>
+        <source>This wizard will help you to import Bibles from a variety of formats. Click the next button below to start the process by selecting a format to import from.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/bibles/forms/bibleimportwizard.py" line="319"/>
+        <source>Select Import Source</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/bibles/forms/bibleimportwizard.py" line="320"/>
+        <source>Select the import format, and where to import from.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/bibles/forms/bibleimportwizard.py" line="322"/>
+        <source>Format:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/bibles/forms/bibleimportwizard.py" line="323"/>
+        <source>OSIS</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/bibles/forms/bibleimportwizard.py" line="324"/>
+        <source>CSV</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/bibles/forms/bibleimportwizard.py" line="325"/>
+        <source>OpenSong</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/bibles/forms/bibleimportwizard.py" line="326"/>
+        <source>Web Download</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/bibles/forms/bibleimportwizard.py" line="327"/>
+        <source>File Location:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/bibles/forms/bibleimportwizard.py" line="328"/>
+        <source>Books Location:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/bibles/forms/bibleimportwizard.py" line="329"/>
+        <source>Verse Location:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/bibles/forms/bibleimportwizard.py" line="330"/>
+        <source>Bible Filename:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/bibles/forms/bibleimportwizard.py" line="331"/>
+        <source>Location:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/bibles/forms/bibleimportwizard.py" line="332"/>
+        <source>Crosswalk</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/bibles/forms/bibleimportwizard.py" line="333"/>
+        <source>BibleGateway</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/bibles/forms/bibleimportwizard.py" line="334"/>
+        <source>Bible:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/bibles/forms/bibleimportwizard.py" line="335"/>
+        <source>Download Options</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/bibles/forms/bibleimportwizard.py" line="338"/>
+        <source>Server:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/bibles/forms/bibleimportwizard.py" line="339"/>
+        <source>Username:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/bibles/forms/bibleimportwizard.py" line="340"/>
+        <source>Password:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/bibles/forms/bibleimportwizard.py" line="341"/>
+        <source>Proxy Server (Optional)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/bibles/forms/bibleimportwizard.py" line="344"/>
+        <source>License Details</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/bibles/forms/bibleimportwizard.py" line="345"/>
+        <source>Set up the Bible&apos;s license details.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/bibles/forms/bibleimportwizard.py" line="347"/>
+        <source>Version Name:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/bibles/forms/bibleimportwizard.py" line="348"/>
+        <source>Copyright:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/bibles/forms/bibleimportwizard.py" line="349"/>
+        <source>Permission:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/bibles/forms/bibleimportwizard.py" line="350"/>
+        <source>Importing</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/bibles/forms/bibleimportwizard.py" line="351"/>
+        <source>Please wait while your Bible is imported.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/bibles/forms/bibleimportwizard.py" line="353"/>
+        <source>Ready.</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+<context>
+    <name>LanguageManager</name>
+    <message>
+        <location filename="openlp/core/utils/languagemanager.py" line="91"/>
+        <source>Language</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/utils/languagemanager.py" line="91"/>
+        <source>After restart new Language settings will be used.</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+<context>
+    <name>MainWindow</name>
+    <message>
+        <location filename="openlp/core/ui/mainwindow.py" line="623"/>
+        <source>The Main Display has been blanked out</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/mainwindow.py" line="592"/>
+        <source>OpenLP Version Updated</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/mainwindow.py" line="679"/>
+        <source>Save Changes to Service?</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/mainwindow.py" line="623"/>
+        <source>OpenLP Main Display Blanked</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/mainwindow.py" line="356"/>
+        <source>New Service</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/mainwindow.py" line="360"/>
+        <source>Open Service</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/mainwindow.py" line="364"/>
+        <source>Save Service</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/mainwindow.py" line="334"/>
+        <source>OpenLP 2.0</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/mainwindow.py" line="335"/>
+        <source>English</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/mainwindow.py" line="336"/>
+        <source>Default Theme: </source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/mainwindow.py" line="339"/>
+        <source>&amp;File</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/mainwindow.py" line="340"/>
+        <source>&amp;Import</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/mainwindow.py" line="341"/>
+        <source>&amp;Export</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/mainwindow.py" line="342"/>
+        <source>&amp;Options</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/mainwindow.py" line="343"/>
+        <source>&amp;View</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/mainwindow.py" line="344"/>
+        <source>M&amp;ode</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/mainwindow.py" line="347"/>
+        <source>&amp;Tools</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/mainwindow.py" line="348"/>
+        <source>&amp;Help</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/mainwindow.py" line="349"/>
+        <source>Media Manager</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/mainwindow.py" line="351"/>
+        <source>Service Manager</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/mainwindow.py" line="353"/>
+        <source>Theme Manager</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/mainwindow.py" line="355"/>
+        <source>&amp;New</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/mainwindow.py" line="357"/>
+        <source>Create a new Service</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/mainwindow.py" line="358"/>
+        <source>Ctrl+N</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/mainwindow.py" line="359"/>
+        <source>&amp;Open</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/mainwindow.py" line="361"/>
+        <source>Open an existing service</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/mainwindow.py" line="362"/>
+        <source>Ctrl+O</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/mainwindow.py" line="363"/>
+        <source>&amp;Save</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/mainwindow.py" line="365"/>
+        <source>Save the current service to disk</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/mainwindow.py" line="367"/>
+        <source>Ctrl+S</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/mainwindow.py" line="368"/>
+        <source>Save &amp;As...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/mainwindow.py" line="369"/>
+        <source>Save Service As</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/mainwindow.py" line="370"/>
+        <source>Save the current service under a new name</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/mainwindow.py" line="372"/>
+        <source>F12</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/mainwindow.py" line="373"/>
+        <source>E&amp;xit</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/mainwindow.py" line="374"/>
+        <source>Quit OpenLP</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/mainwindow.py" line="375"/>
+        <source>Alt+F4</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/mainwindow.py" line="378"/>
+        <source>&amp;Theme</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/mainwindow.py" line="379"/>
+        <source>&amp;Language</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/mainwindow.py" line="380"/>
+        <source>Look &amp;&amp; &amp;Feel</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/mainwindow.py" line="381"/>
+        <source>&amp;Settings</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/mainwindow.py" line="382"/>
+        <source>&amp;Media Manager</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/mainwindow.py" line="383"/>
+        <source>Toggle Media Manager</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/mainwindow.py" line="385"/>
+        <source>Toggle the visibility of the Media Manager</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/mainwindow.py" line="387"/>
+        <source>F8</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/mainwindow.py" line="388"/>
+        <source>&amp;Theme Manager</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/mainwindow.py" line="389"/>
+        <source>Toggle Theme Manager</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/mainwindow.py" line="391"/>
+        <source>Toggle the visibility of the Theme Manager</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/mainwindow.py" line="393"/>
+        <source>F10</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/mainwindow.py" line="394"/>
+        <source>&amp;Service Manager</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/mainwindow.py" line="395"/>
+        <source>Toggle Service Manager</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/mainwindow.py" line="397"/>
+        <source>Toggle the visibility of the Service Manager</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/mainwindow.py" line="399"/>
+        <source>F9</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/mainwindow.py" line="400"/>
+        <source>&amp;Preview Panel</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/mainwindow.py" line="401"/>
+        <source>Toggle Preview Panel</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/mainwindow.py" line="403"/>
+        <source>Toggle the visibility of the Preview Panel</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/mainwindow.py" line="405"/>
+        <source>F11</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/mainwindow.py" line="406"/>
+        <source>&amp;Plugin List</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/mainwindow.py" line="407"/>
+        <source>List the Plugins</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/mainwindow.py" line="408"/>
+        <source>Alt+F7</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/mainwindow.py" line="409"/>
+        <source>&amp;User Guide</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/mainwindow.py" line="410"/>
+        <source>&amp;About</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/mainwindow.py" line="411"/>
+        <source>More information about OpenLP</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/mainwindow.py" line="413"/>
+        <source>Ctrl+F1</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/mainwindow.py" line="414"/>
+        <source>&amp;Online Help</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/mainwindow.py" line="415"/>
+        <source>&amp;Web Site</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/mainwindow.py" line="417"/>
+        <source>&amp;Auto Detect</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/mainwindow.py" line="418"/>
+        <source>Choose System language, if available</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/mainwindow.py" line="422"/>
+        <source>Set the interface language to %1</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/mainwindow.py" line="424"/>
+        <source>Add &amp;Tool...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/mainwindow.py" line="425"/>
+        <source>Add an application to the list of tools</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/mainwindow.py" line="427"/>
+        <source>&amp;Preview Pane</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/mainwindow.py" line="428"/>
+        <source>&amp;Live</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/mainwindow.py" line="589"/>
+        <source>Version %s of OpenLP is now available for download (you are currently running version %s).
+
+You can download the latest version from http://openlp.org</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/mainwindow.py" line="679"/>
+        <source>Your service has changed.  Do you want to save those changes?</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+<context>
+    <name>MediaManagerItem</name>
+    <message>
+        <location filename="openlp/core/lib/mediamanageritem.py" line="288"/>
+        <source>&amp;Preview</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/lib/mediamanageritem.py" line="444"/>
+        <source>You must select one or more items</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/lib/mediamanageritem.py" line="218"/>
+        <source>Load a new</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/lib/mediamanageritem.py" line="237"/>
+        <source>Delete the selected item</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/lib/mediamanageritem.py" line="275"/>
+        <source>&amp;Edit</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/lib/mediamanageritem.py" line="297"/>
+        <source>&amp;Add to Service</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/lib/mediamanageritem.py" line="249"/>
+        <source>Send the selected item live</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/lib/mediamanageritem.py" line="254"/>
+        <source>Add the selected item(s) to the service</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/lib/mediamanageritem.py" line="230"/>
+        <source>Edit the selected</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/lib/mediamanageritem.py" line="224"/>
+        <source>Add a new</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/lib/mediamanageritem.py" line="293"/>
+        <source>&amp;Show Live</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/lib/mediamanageritem.py" line="244"/>
+        <source>Preview the selected item</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/lib/mediamanageritem.py" line="212"/>
+        <source>Import a</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/lib/mediamanageritem.py" line="282"/>
+        <source>&amp;Delete</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/lib/mediamanageritem.py" line="302"/>
+        <source>&amp;Add to selected Service Item</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/lib/mediamanageritem.py" line="421"/>
+        <source>No Items Selected</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/lib/mediamanageritem.py" line="421"/>
+        <source>You must select one or more items.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/lib/mediamanageritem.py" line="444"/>
+        <source>No items selected</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/lib/mediamanageritem.py" line="451"/>
+        <source>No Service Item Selected</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/lib/mediamanageritem.py" line="461"/>
+        <source>Invalid Service Item</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/lib/mediamanageritem.py" line="451"/>
+        <source>You must select an existing service item to add to.</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+<context>
+    <name>MediaMediaItem</name>
+    <message>
+        <location filename="openlp/plugins/media/lib/mediaitem.py" line="123"/>
+        <source>Media</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/media/lib/mediaitem.py" line="64"/>
+        <source>Select Media</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/media/lib/mediaitem.py" line="65"/>
+        <source>Videos (%s);;Audio (%s);;All files (*)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/media/lib/mediaitem.py" line="94"/>
+        <source>Replace Live Background</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/media/lib/mediaitem.py" line="107"/>
+        <source>No item selected</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/media/lib/mediaitem.py" line="107"/>
+        <source>You must select one item</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+<context>
+    <name>MediaPlugin</name>
+    <message>
+        <location filename="openlp/plugins/media/mediaplugin.py" line="78"/>
+        <source>&lt;b&gt;Media Plugin&lt;/b&gt;&lt;br&gt;This plugin allows the playing of audio and video media</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+<context>
+    <name>OpenLPExportForm</name>
+    <message>
+        <location filename="openlp/plugins/songs/forms/openlpexportdialog.py" line="289"/>
+        <source>openlp.org Song Exporter</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/forms/openlpexportdialog.py" line="290"/>
+        <source>Select openlp.org export filename:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/forms/openlpexportdialog.py" line="291"/>
+        <source>Full Song List</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/forms/openlpexportdialog.py" line="299"/>
+        <source>Song Title</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/forms/openlpexportdialog.py" line="300"/>
+        <source>Author</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/forms/openlpexportdialog.py" line="301"/>
+        <source>Select All</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/forms/openlpexportdialog.py" line="295"/>
+        <source>Lyrics</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/forms/openlpexportdialog.py" line="296"/>
+        <source>Title</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/forms/openlpexportdialog.py" line="298"/>
+        <source>Song Export List</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/forms/openlpexportdialog.py" line="302"/>
+        <source>Remove Selected</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/forms/openlpexportdialog.py" line="303"/>
+        <source>Progress:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/forms/openlpexportdialog.py" line="304"/>
+        <source>Ready to export</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/forms/openlpexportdialog.py" line="305"/>
+        <source>Export</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/forms/openlpexportdialog.py" line="306"/>
+        <source>Close</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+<context>
+    <name>OpenLPImportForm</name>
+    <message>
+        <location filename="openlp/plugins/songs/forms/openlpimportdialog.py" line="289"/>
+        <source>openlp.org Song Importer</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/forms/openlpimportdialog.py" line="290"/>
+        <source>Select openlp.org songfile to import:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/forms/openlpimportdialog.py" line="291"/>
+        <source>Import File Song List</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/forms/openlpimportdialog.py" line="299"/>
+        <source>Song Title</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/forms/openlpimportdialog.py" line="300"/>
+        <source>Author</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/forms/openlpimportdialog.py" line="301"/>
+        <source>Select All</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/forms/openlpimportdialog.py" line="295"/>
+        <source>Lyrics</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/forms/openlpimportdialog.py" line="296"/>
+        <source>Title</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/forms/openlpimportdialog.py" line="298"/>
+        <source>Song Import List</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/forms/openlpimportdialog.py" line="302"/>
+        <source>Remove Selected</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/forms/openlpimportdialog.py" line="303"/>
+        <source>Progress:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/forms/openlpimportdialog.py" line="304"/>
+        <source>Ready to import</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/forms/openlpimportdialog.py" line="305"/>
+        <source>Import</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/forms/openlpimportdialog.py" line="306"/>
+        <source>Close</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+<context>
+    <name>OpenSongBible</name>
+    <message>
+        <location filename="openlp/plugins/bibles/lib/opensong.py" line="96"/>
+        <source>Importing</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+<context>
+    <name>OpenSongExportForm</name>
+    <message>
+        <location filename="openlp/plugins/songs/forms/opensongexportdialog.py" line="290"/>
+        <source>Select OpenSong song folder:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/forms/opensongexportdialog.py" line="291"/>
+        <source>Full Song List</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/forms/opensongexportdialog.py" line="299"/>
+        <source>Song Title</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/forms/opensongexportdialog.py" line="300"/>
+        <source>Author</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/forms/opensongexportdialog.py" line="301"/>
+        <source>Select All</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/forms/opensongexportdialog.py" line="295"/>
+        <source>Lyrics</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/forms/opensongexportdialog.py" line="296"/>
+        <source>Title</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/forms/opensongexportdialog.py" line="298"/>
+        <source>Song Export List</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/forms/opensongexportdialog.py" line="302"/>
+        <source>Remove Selected</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/forms/opensongexportdialog.py" line="303"/>
+        <source>Progress:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/forms/opensongexportdialog.py" line="304"/>
+        <source>Ready to export</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/forms/opensongexportdialog.py" line="305"/>
+        <source>Export</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/forms/opensongexportdialog.py" line="306"/>
+        <source>Close</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+<context>
+    <name>OpenSongImportForm</name>
+    <message>
+        <location filename="openlp/plugins/songs/forms/opensongimportdialog.py" line="104"/>
+        <source>OpenSong Song Importer</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/forms/opensongimportdialog.py" line="105"/>
+        <source>OpenSong Folder:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/forms/opensongimportdialog.py" line="106"/>
+        <source>Progress:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/forms/opensongimportdialog.py" line="107"/>
+        <source>Ready to import</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/forms/opensongimportdialog.py" line="108"/>
+        <source>Import</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/forms/opensongimportdialog.py" line="109"/>
+        <source>Close</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+<context>
+    <name>PluginForm</name>
+    <message>
+        <location filename="openlp/core/ui/plugindialog.py" line="102"/>
+        <source>Plugin List</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/plugindialog.py" line="103"/>
+        <source>Plugin Details</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/plugindialog.py" line="104"/>
+        <source>Version:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/plugindialog.py" line="105"/>
+        <source>TextLabel</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/plugindialog.py" line="106"/>
+        <source>About:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/plugindialog.py" line="107"/>
+        <source>Status:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/plugindialog.py" line="108"/>
+        <source>Active</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/plugindialog.py" line="109"/>
+        <source>Inactive</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+<context>
+    <name>PresentationMediaItem</name>
+    <message>
+        <location filename="openlp/plugins/presentations/lib/mediaitem.py" line="64"/>
+        <source>Presentation</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/presentations/lib/mediaitem.py" line="103"/>
+        <source>Present using:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/presentations/lib/mediaitem.py" line="68"/>
+        <source>Automatic</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/presentations/lib/mediaitem.py" line="135"/>
+        <source>A presentation with that filename already exists.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/presentations/lib/mediaitem.py" line="67"/>
+        <source>Select Presentation(s)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/presentations/lib/mediaitem.py" line="135"/>
+        <source>File exists</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/presentations/lib/mediaitem.py" line="77"/>
+        <source>Presentations (%s)</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+<context>
+    <name>PresentationPlugin</name>
+    <message>
+        <location filename="openlp/plugins/presentations/presentationplugin.py" line="112"/>
+        <source>&lt;b&gt;Presentation Plugin&lt;/b&gt; &lt;br&gt; Delivers the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box.</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+<context>
+    <name>PresentationTab</name>
+    <message>
+        <location filename="openlp/plugins/presentations/lib/presentationtab.py" line="91"/>
+        <source>Available Controllers</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/presentations/lib/presentationtab.py" line="95"/>
+        <source>available</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/presentations/lib/presentationtab.py" line="40"/>
+        <source>Presentations</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+<context>
+    <name>RemoteTab</name>
+    <message>
+        <location filename="openlp/plugins/remotes/lib/remotetab.py" line="39"/>
+        <source>Remotes</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/remotes/lib/remotetab.py" line="56"/>
+        <source>Remotes Receiver Port</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+<context>
+    <name>RemotesPlugin</name>
+    <message>
+        <location filename="openlp/plugins/remotes/remoteplugin.py" line="85"/>
+        <source>&lt;b&gt;Remote Plugin&lt;/b&gt;&lt;br&gt;This plugin provides the ability to send messages to a running version of openlp on a different computer.&lt;br&gt;The Primary use for this would be to send alerts from a creche</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+<context>
+    <name>ServiceItemEditForm</name>
+    <message>
+        <location filename="openlp/core/ui/serviceitemeditdialog.py" line="70"/>
+        <source>Service Item Maintenance</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/serviceitemeditdialog.py" line="71"/>
+        <source>Up</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/serviceitemeditdialog.py" line="72"/>
+        <source>Delete</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/serviceitemeditdialog.py" line="73"/>
+        <source>Down</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+<context>
+    <name>ServiceManager</name>
+    <message>
+        <location filename="openlp/core/ui/servicemanager.py" line="563"/>
+        <source>Save Changes to Service?</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/servicemanager.py" line="550"/>
+        <source>Open Service</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/servicemanager.py" line="161"/>
+        <source>Move to top</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/servicemanager.py" line="116"/>
+        <source>Create a new service</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/servicemanager.py" line="122"/>
+        <source>Save this service</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/servicemanager.py" line="126"/>
+        <source>Theme:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/servicemanager.py" line="174"/>
+        <source>Delete From Service</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/servicemanager.py" line="122"/>
+        <source>Save Service</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/servicemanager.py" line="213"/>
+        <source>&amp;Live Verse</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/servicemanager.py" line="161"/>
+        <source>Move to &amp;top</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/servicemanager.py" line="116"/>
+        <source>New Service</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/servicemanager.py" line="204"/>
+        <source>&amp;Notes</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/servicemanager.py" line="170"/>
+        <source>Move to end</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/servicemanager.py" line="206"/>
+        <source>&amp;Delete From Service</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/servicemanager.py" line="164"/>
+        <source>Move up order</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/servicemanager.py" line="167"/>
+        <source>Move down order</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/servicemanager.py" line="167"/>
+        <source>Move &amp;down</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/servicemanager.py" line="119"/>
+        <source>Load an existing service</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/servicemanager.py" line="211"/>
+        <source>&amp;Preview Verse</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/servicemanager.py" line="164"/>
+        <source>Move &amp;up</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/servicemanager.py" line="200"/>
+        <source>&amp;Edit Item</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/servicemanager.py" line="170"/>
+        <source>Move to &amp;bottom</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/servicemanager.py" line="202"/>
+        <source>&amp;Maintain Item</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/servicemanager.py" line="410"/>
+        <source>Your service is unsaved, do you want to save those changes before creating a new one?</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/servicemanager.py" line="563"/>
+        <source>Your current service is unsaved, do you want to save the changes before opening a new one?</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+<context>
+    <name>ServiceNoteForm</name>
+    <message>
+        <location filename="openlp/core/ui/servicenotedialog.py" line="50"/>
+        <source>Service Item Notes</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+<context>
+    <name>SettingsForm</name>
+    <message>
+        <location filename="openlp/core/ui/settingsdialog.py" line="63"/>
+        <source>Settings</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+<context>
+    <name>SlideController</name>
+    <message>
+        <location filename="openlp/core/ui/slidecontroller.py" line="170"/>
+        <source>Move to previous</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/slidecontroller.py" line="256"/>
+        <source>Go to Verse</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/slidecontroller.py" line="202"/>
+        <source>Start continuous loop</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/slidecontroller.py" line="116"/>
+        <source>Live</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/slidecontroller.py" line="225"/>
+        <source>Start playing media</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/slidecontroller.py" line="193"/>
+        <source>Move to live</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/slidecontroller.py" line="120"/>
+        <source>Preview</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/slidecontroller.py" line="177"/>
+        <source>Move to last</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/slidecontroller.py" line="197"/>
+        <source>Edit and re-preview Song</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/slidecontroller.py" line="214"/>
+        <source>Delay between slides in seconds</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/slidecontroller.py" line="173"/>
+        <source>Move to next</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/slidecontroller.py" line="167"/>
+        <source>Move to first</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/slidecontroller.py" line="229"/>
+        <source>Blank Screen</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/slidecontroller.py" line="514"/>
+        <source>Verse</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/slidecontroller.py" line="205"/>
+        <source>Stop continuous loop</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/slidecontroller.py" line="213"/>
+        <source>s</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/slidecontroller.py" line="232"/>
+        <source>Theme Screen</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/slidecontroller.py" line="235"/>
+        <source>Hide Screen</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/slidecontroller.py" line="515"/>
+        <source>Chorus</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+<context>
+    <name>SongBookForm</name>
+    <message>
+        <location filename="openlp/plugins/songs/forms/songbookform.py" line="50"/>
+        <source>Error</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/forms/songbookform.py" line="50"/>
+        <source>You need to type in a book name!</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/forms/songbookdialog.py" line="69"/>
+        <source>Edit Book</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/forms/songbookdialog.py" line="70"/>
+        <source>Name:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/forms/songbookdialog.py" line="71"/>
+        <source>Publisher:</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+<context>
+    <name>SongMaintenanceForm</name>
+    <message>
+        <location filename="openlp/plugins/songs/forms/songmaintenanceform.py" line="250"/>
+        <source>Are you sure you want to delete the selected book?</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/forms/songmaintenanceform.py" line="183"/>
+        <source>Couldn&apos;t save your author.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/forms/songmaintenanceform.py" line="224"/>
+        <source>This author can&apos;t be deleted, they are currently assigned to at least one song.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/forms/songmaintenanceform.py" line="163"/>
+        <source>Couldn&apos;t add your book.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/forms/songmaintenanceform.py" line="215"/>
+        <source>Error</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/forms/songmaintenanceform.py" line="224"/>
+        <source>No author selected!</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/forms/songmaintenanceform.py" line="151"/>
+        <source>Couldn&apos;t add your topic.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/forms/songmaintenanceform.py" line="250"/>
+        <source>This book can&apos;t be deleted, it is currently assigned to at least one song.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/forms/songmaintenanceform.py" line="250"/>
+        <source>Delete Book</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/forms/songmaintenanceform.py" line="250"/>
+        <source>No book selected!</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/forms/songmaintenanceform.py" line="224"/>
+        <source>Are you sure you want to delete the selected author?</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/forms/songmaintenanceform.py" line="140"/>
+        <source>Couldn&apos;t add your author.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/forms/songmaintenanceform.py" line="198"/>
+        <source>Couldn&apos;t save your topic.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/forms/songmaintenanceform.py" line="215"/>
+        <source>Couldn&apos;t save your book.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/forms/songmaintenanceform.py" line="237"/>
+        <source>Delete Topic</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/forms/songmaintenanceform.py" line="224"/>
+        <source>Delete Author</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/forms/songmaintenanceform.py" line="237"/>
+        <source>No topic selected!</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/forms/songmaintenanceform.py" line="237"/>
+        <source>This topic can&apos;t be deleted, it is currently assigned to at least one song.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/forms/songmaintenanceform.py" line="237"/>
+        <source>Are you sure you want to delete the selected topic?</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/forms/songmaintenancedialog.py" line="211"/>
+        <source>Song Maintenance</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/forms/songmaintenancedialog.py" line="212"/>
+        <source>Authors</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/forms/songmaintenancedialog.py" line="213"/>
+        <source>Topics</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/forms/songmaintenancedialog.py" line="214"/>
+        <source>Books/Hymnals</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/forms/songmaintenancedialog.py" line="221"/>
+        <source>Add</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/forms/songmaintenancedialog.py" line="222"/>
+        <source>Edit</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/forms/songmaintenancedialog.py" line="223"/>
+        <source>Delete</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+<context>
+    <name>SongMediaItem</name>
+    <message>
+        <location filename="openlp/plugins/songs/lib/mediaitem.py" line="359"/>
+        <source>CCLI Licence: </source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/lib/mediaitem.py" line="61"/>
+        <source>Song</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/lib/mediaitem.py" line="70"/>
+        <source>Maintain the lists of authors, topics and books</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/lib/mediaitem.py" line="147"/>
+        <source>Lyrics</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/lib/mediaitem.py" line="141"/>
+        <source>Type:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/lib/mediaitem.py" line="146"/>
+        <source>Titles</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/lib/mediaitem.py" line="142"/>
+        <source>Clear</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/lib/mediaitem.py" line="143"/>
+        <source>Search</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/lib/mediaitem.py" line="148"/>
+        <source>Authors</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/lib/mediaitem.py" line="140"/>
+        <source>Search:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/lib/mediaitem.py" line="70"/>
+        <source>Song Maintenance</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/lib/mediaitem.py" line="204"/>
+        <source>%s (%s)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/lib/mediaitem.py" line="277"/>
+        <source>Delete song?</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/lib/mediaitem.py" line="279"/>
+        <source>Delete %d songs?</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/lib/mediaitem.py" line="280"/>
+        <source>Delete Confirmation</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+<context>
+    <name>SongUsageDeleteForm</name>
+    <message>
+        <location filename="openlp/plugins/songusage/forms/songusagedeleteform.py" line="43"/>
+        <source>Delete Selected Song Usage Events?</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songusage/forms/songusagedeleteform.py" line="43"/>
+        <source>Are you sure you want to delete selected Song Usage data?</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+<context>
+    <name>SongUsageDetailForm</name>
+    <message>
+        <location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="62"/>
+        <source>Output File Location</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+<context>
+    <name>SongUsagePlugin</name>
+    <message>
+        <location filename="openlp/plugins/songusage/songusageplugin.py" line="159"/>
+        <source>&lt;b&gt;SongUsage Plugin&lt;/b&gt;&lt;br&gt;This plugin records the use of songs and when they have been used during a live service</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+<context>
+    <name>SongsPlugin</name>
+    <message>
+        <location filename="openlp/plugins/songs/songsplugin.py" line="232"/>
+        <source>&lt;b&gt;Song Plugin&lt;/b&gt; &lt;br&gt;This plugin allows Songs to be managed and displayed.&lt;br&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/songsplugin.py" line="198"/>
+        <source>Open Songs of Fellowship file</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/songsplugin.py" line="218"/>
+        <source>Open documents or presentations</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+<context>
+    <name>SongsTab</name>
+    <message>
+        <location filename="openlp/plugins/songs/lib/songstab.py" line="64"/>
+        <source>Songs Mode</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/lib/songstab.py" line="39"/>
+        <source>Songs</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/lib/songstab.py" line="65"/>
+        <source>Enable search as you type</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/lib/songstab.py" line="67"/>
+        <source>Display Verses on Live Tool bar</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+<context>
+    <name>ThemeManager</name>
+    <message>
+        <location filename="openlp/core/ui/thememanager.py" line="66"/>
+        <source>Import Theme</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/thememanager.py" line="56"/>
+        <source>Create a new theme</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/thememanager.py" line="62"/>
+        <source>Delete Theme</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/thememanager.py" line="364"/>
+        <source>Error</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/thememanager.py" line="89"/>
+        <source>Make Global</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/thememanager.py" line="62"/>
+        <source>Delete a theme</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/thememanager.py" line="364"/>
+        <source>File is not a valid theme.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/thememanager.py" line="79"/>
+        <source>Edit a theme</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/thememanager.py" line="59"/>
+        <source>Edit Theme</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/thememanager.py" line="69"/>
+        <source>Export Theme</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/thememanager.py" line="180"/>
+        <source>You are unable to delete the default theme.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/thememanager.py" line="447"/>
+        <source>Theme Exists</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/thememanager.py" line="84"/>
+        <source>Delete theme</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/thememanager.py" line="225"/>
+        <source>Save Theme - (%s)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/thememanager.py" line="278"/>
+        <source>default</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/thememanager.py" line="248"/>
+        <source>Select Theme Import File</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/thememanager.py" line="508"/>
+        <source>New Theme</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/thememanager.py" line="66"/>
+        <source>Import a theme</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/thememanager.py" line="94"/>
+        <source>Export theme</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/thememanager.py" line="220"/>
+        <source>You have not selected a theme.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/thememanager.py" line="447"/>
+        <source>A theme with this name already exists, would you like to overwrite it?</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/thememanager.py" line="69"/>
+        <source>Export a theme</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/thememanager.py" line="187"/>
+        <source>Theme %s is use in %s plugin</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/thememanager.py" line="193"/>
+        <source>Theme %s is use by Service Manager</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+<context>
+    <name>ThemesTab</name>
+    <message>
+        <location filename="openlp/core/ui/themestab.py" line="110"/>
+        <source>Theme level</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/themestab.py" line="109"/>
+        <source>Global theme</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/themestab.py" line="121"/>
+        <source>Use the global theme, overriding any themes associated with either the service or the songs.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/themestab.py" line="112"/>
+        <source>Use the theme from each song in the database. If a song doesn&apos;t have a theme associated with it, then use the service&apos;s theme. If the service doesn&apos;t have a theme, then use the global theme.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/themestab.py" line="116"/>
+        <source>Service level</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/themestab.py" line="120"/>
+        <source>Global level</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/themestab.py" line="111"/>
+        <source>Song level</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/themestab.py" line="117"/>
+        <source>Use the theme from the service, overriding any of the individual songs&apos; themes. If the service doesn&apos;t have a theme, then use the global theme.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/themestab.py" line="40"/>
+        <source>Themes</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+<context>
+    <name>TopicsForm</name>
+    <message>
+        <location filename="openlp/plugins/songs/forms/topicsform.py" line="49"/>
+        <source>You need to type in a topic name!</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/forms/topicsform.py" line="49"/>
+        <source>Error</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/forms/topicsdialog.py" line="63"/>
+        <source>Topic Maintenance</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/forms/topicsdialog.py" line="64"/>
+        <source>Topic name:</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+<context>
+    <name>alertsPlugin</name>
+    <message>
+        <location filename="openlp/plugins/alerts/alertsplugin.py" line="67"/>
+        <source>Show an alert message</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/alerts/alertsplugin.py" line="95"/>
+        <source>&lt;b&gt;Alerts Plugin&lt;/b&gt;&lt;br&gt;This plugin controls the displaying of alerts on the presentations screen</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/alerts/alertsplugin.py" line="66"/>
+        <source>&amp;Alert</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+<context>
+    <name>export_menu</name>
+    <message>
+        <location filename="openlp/plugins/bibles/bibleplugin.py" line="83"/>
+        <source>&amp;Bible</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/songsplugin.py" line="180"/>
+        <source>&amp;Song</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/songsplugin.py" line="181"/>
+        <source>OpenSong</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/songsplugin.py" line="182"/>
+        <source>openlp.org 1.0</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/songsplugin.py" line="183"/>
+        <source>OpenLP 2.0</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+<context>
+    <name>import_menu</name>
+    <message>
+        <location filename="openlp/plugins/bibles/bibleplugin.py" line="73"/>
+        <source>&amp;Bible</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/songsplugin.py" line="118"/>
+        <source>&amp;Song</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/songsplugin.py" line="119"/>
+        <source>OpenSong</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/songsplugin.py" line="120"/>
+        <source>openlp.org 1.0</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/songsplugin.py" line="123"/>
+        <source>Import songs in openlp.org 1.0 format</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/songsplugin.py" line="125"/>
+        <source>OpenLP 2.0</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/songsplugin.py" line="128"/>
+        <source>Import songs in OpenLP 2.0 format</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/songsplugin.py" line="130"/>
+        <source>Songs of Fellowship</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/songsplugin.py" line="135"/>
+        <source>Import songs from the VOLS1_2.RTF, sof3words.rtf and sof4words.rtf supplied with the music books</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/songsplugin.py" line="138"/>
+        <source>Generic Document/Presentation Import</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/songsplugin.py" line="142"/>
+        <source>Import songs from Word/Writer/Powerpoint/Impress</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+<context>
+    <name>self.ImportSongMenu</name>
+    <message>
+        <location filename="openlp/plugins/songs/songsplugin.py" line="207"/>
+        <source>Import Error</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songs/songsplugin.py" line="207"/>
+        <source>Error importing Songs of Fellowship file.
+OpenOffice.org must be installed and you must be using an unedited copy of the RTF included with the Songs of Fellowship Music Editions</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+<context>
+    <name>self.splash_screen</name>
+    <message>
+        <location filename="openlp/core/ui/splashscreen.py" line="33"/>
+        <source>Starting</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/core/ui/splashscreen.py" line="60"/>
+        <source>Splash Screen</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+<context>
+    <name>tools_menu</name>
+    <message>
+        <location filename="openlp/plugins/songusage/songusageplugin.py" line="62"/>
+        <source>&amp;Song Usage</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songusage/songusageplugin.py" line="65"/>
+        <source>&amp;Delete recorded data</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songusage/songusageplugin.py" line="67"/>
+        <source>Delete song usage to specified date</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songusage/songusageplugin.py" line="72"/>
+        <source>&amp;Extract recorded data</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songusage/songusageplugin.py" line="74"/>
+        <source>Generate report on Song Usage</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songusage/songusageplugin.py" line="83"/>
+        <source>Song Usage Status</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="openlp/plugins/songusage/songusageplugin.py" line="84"/>
+        <source>Start/Stop live song usage recording</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+</TS>

=== removed file 'resources/i18n/openlp_en.ts'
--- resources/i18n/openlp_en.ts	2010-03-15 18:40:52 +0000
+++ resources/i18n/openlp_en.ts	1970-01-01 00:00:00 +0000
@@ -1,4848 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!DOCTYPE TS>
-<TS version="1.1">
-  <context>
-    <name>BibleMediaItem</name>
-    <message>
-      <location filename="openlp/plugins/bibles/lib/mediaitem.py" line="142"/>
-      <source>Quick</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_customEditDialog</name>
-    <message>
-      <location filename="openlp/plugins/custom/forms/editcustomdialog.py" line="162"/>
-      <source>Delete selected slide</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>BiblesTab</name>
-    <message>
-      <location filename="openlp/plugins/bibles/lib/biblestab.py" line="161"/>
-      <source>( and )</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>RemoteTab</name>
-    <message>
-      <location filename="openlp/plugins/remotes/lib/remotetab.py" line="39"/>
-      <source>Remotes</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_EditSongDialog</name>
-    <message>
-      <location filename="openlp/plugins/songs/forms/editsongdialog.py" line="432"/>
-      <source>&amp;Remove</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_AmendThemeDialog</name>
-    <message>
-      <location filename="openlp/core/ui/amendthemedialog.py" line="670"/>
-      <source>Shadow Size:</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_OpenSongExportDialog</name>
-    <message>
-      <location filename="openlp/plugins/songs/forms/opensongexportdialog.py" line="305"/>
-      <source>Close</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>ThemeManager</name>
-    <message>
-      <location filename="openlp/core/ui/thememanager.py" line="66"/>
-      <source>Import Theme</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_AmendThemeDialog</name>
-    <message>
-      <location filename="openlp/core/ui/amendthemedialog.py" line="683"/>
-      <source>Slide Transition</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>SongMaintenanceForm</name>
-    <message>
-      <location filename="openlp/plugins/songs/forms/songmaintenanceform.py" line="254"/>
-      <source>Are you sure you want to delete the selected book?</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>ThemesTab</name>
-    <message>
-      <location filename="openlp/core/ui/themestab.py" line="110"/>
-      <source>Theme level</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>BibleMediaItem</name>
-    <message>
-      <location filename="openlp/plugins/bibles/lib/mediaitem.py" line="69"/>
-      <source>Bible</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>ServiceManager</name>
-    <message>
-      <location filename="openlp/core/ui/servicemanager.py" line="399"/>
-      <source>Save Changes to Service?</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>SongUsagePlugin</name>
-    <message>
-      <location filename="openlp/plugins/songusage/songusageplugin.py" line="65"/>
-      <source>&amp;Delete recorded data</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_OpenLPExportDialog</name>
-    <message>
-      <location filename="openlp/plugins/songs/forms/openlpexportdialog.py" line="298"/>
-      <source>Song Title</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_customEditDialog</name>
-    <message>
-      <location filename="openlp/plugins/custom/forms/editcustomdialog.py" line="156"/>
-      <source>Edit selected slide</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>SongMediaItem</name>
-    <message>
-      <location filename="openlp/plugins/songs/lib/mediaitem.py" line="343"/>
-      <source>CCLI Licence: </source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_BibleImportWizard</name>
-    <message>
-      <location filename="openlp/plugins/bibles/forms/bibleimportwizard.py" line="310"/>
-      <source>Bible Import Wizard</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_customEditDialog</name>
-    <message>
-      <location filename="openlp/plugins/custom/forms/editcustomdialog.py" line="157"/>
-      <source>Edit All</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>SongMaintenanceForm</name>
-    <message>
-      <location filename="openlp/plugins/songs/forms/songmaintenanceform.py" line="185"/>
-      <source>Couldn't save your author.</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_ServiceNoteEdit</name>
-    <message>
-      <location filename="openlp/core/ui/serviceitemdialog.py" line="49"/>
-      <source>Service Item Notes</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_customEditDialog</name>
-    <message>
-      <location filename="openlp/plugins/custom/forms/editcustomdialog.py" line="154"/>
-      <source>Add new slide at bottom</source>
-      <translation type="unfinished"></translation>
-    </message>
-    <message>
-      <location filename="openlp/plugins/custom/forms/editcustomdialog.py" line="163"/>
-      <source>Clear</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>ThemesTab</name>
-    <message>
-      <location filename="openlp/core/ui/themestab.py" line="109"/>
-      <source>Global theme</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>PresentationPlugin</name>
-    <message>
-      <location filename="openlp/plugins/presentations/presentationplugin.py" line="115"/>
-      <source>&lt;b&gt;Presentation Plugin&lt;/b&gt; &lt;br&gt; Delivers the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box.</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>SongUsagePlugin</name>
-    <message>
-      <location filename="openlp/plugins/songusage/songusageplugin.py" line="84"/>
-      <source>Start/Stop live song usage recording</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>MainWindow</name>
-    <message>
-      <location filename="openlp/core/ui/mainwindow.py" line="591"/>
-      <source>The Main Display has been blanked out</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_OpenSongExportDialog</name>
-    <message>
-      <location filename="openlp/plugins/songs/forms/opensongexportdialog.py" line="294"/>
-      <source>Lyrics</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_AlertDialog</name>
-    <message>
-      <location filename="openlp/plugins/alerts/forms/alertdialog.py" line="70"/>
-      <source>Display</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>SongMaintenanceForm</name>
-    <message>
-      <location filename="openlp/plugins/songs/forms/songmaintenanceform.py" line="229"/>
-      <source>This author can't be deleted, they are currently assigned to at least one song.</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_customEditDialog</name>
-    <message>
-      <location filename="openlp/plugins/custom/forms/editcustomdialog.py" line="161"/>
-      <source>Delete</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_EditVerseDialog</name>
-    <message>
-      <location filename="openlp/plugins/songs/forms/editversedialog.py" line="123"/>
-      <source>Verse</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_OpenSongImportDialog</name>
-    <message>
-      <location filename="openlp/plugins/songs/forms/opensongimportdialog.py" line="104"/>
-      <source>OpenSong Folder:</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>ThemeManager</name>
-    <message>
-      <location filename="openlp/core/ui/thememanager.py" line="57"/>
-      <source>Create a new theme</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_MainWindow</name>
-    <message>
-      <location filename="openlp/core/ui/mainwindow.py" line="364"/>
-      <source>Open an existing service</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>SlideController</name>
-    <message>
-      <location filename="openlp/core/ui/slidecontroller.py" line="162"/>
-      <source>Move to previous</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>SongsPlugin</name>
-    <message>
-      <location filename="openlp/plugins/songs/songsplugin.py" line="155"/>
-      <source>&amp;Song</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_PluginViewDialog</name>
-    <message>
-      <location filename="openlp/core/ui/plugindialog.py" line="102"/>
-      <source>Plugin Details</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>ImportWizardForm</name>
-    <message>
-      <location filename="openlp/plugins/bibles/forms/importwizardform.py" line="122"/>
-      <source>You need to specify a file with books of the Bible to use in the import.</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>AlertsTab</name>
-    <message>
-      <location filename="openlp/plugins/alerts/forms/alertstab.py" line="235"/>
-      <source>Edit History:</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_MainWindow</name>
-    <message>
-      <location filename="openlp/core/ui/mainwindow.py" line="342"/>
-      <source>&amp;File</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>BiblesTab</name>
-    <message>
-      <location filename="openlp/plugins/bibles/lib/biblestab.py" line="158"/>
-      <source>verse per line</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_customEditDialog</name>
-    <message>
-      <location filename="openlp/plugins/custom/forms/editcustomdialog.py" line="165"/>
-      <source>Theme:</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>SongMaintenanceForm</name>
-    <message>
-      <location filename="openlp/plugins/songs/forms/songmaintenanceform.py" line="165"/>
-      <source>Couldn't add your book.</source>
-      <translation type="unfinished"></translation>
-    </message>
-    <message>
-      <location filename="openlp/plugins/songs/forms/songmaintenanceform.py" line="216"/>
-      <source>Error</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_BibleImportWizard</name>
-    <message>
-      <location filename="openlp/plugins/bibles/forms/bibleimportwizard.py" line="333"/>
-      <source>Bible:</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>ThemeManager</name>
-    <message>
-      <location filename="openlp/core/ui/thememanager.py" line="62"/>
-      <source>Delete Theme</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>SplashScreen</name>
-    <message>
-      <location filename="openlp/core/ui/splashscreen.py" line="61"/>
-      <source>Splash Screen</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>SongMediaItem</name>
-    <message>
-      <location filename="openlp/plugins/songs/lib/mediaitem.py" line="62"/>
-      <source>Song</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_OpenSongExportDialog</name>
-    <message>
-      <location filename="openlp/plugins/songs/forms/opensongexportdialog.py" line="298"/>
-      <source>Song Title</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_AmendThemeDialog</name>
-    <message>
-      <location filename="openlp/core/ui/amendthemedialog.py" line="682"/>
-      <source>Bottom</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_MainWindow</name>
-    <message>
-      <location filename="openlp/core/ui/mainwindow.py" line="407"/>
-      <source>List the Plugins</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>SongMaintenanceForm</name>
-    <message>
-      <location filename="openlp/plugins/songs/forms/songmaintenanceform.py" line="231"/>
-      <source>No author selected!</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>SongUsageDeleteForm</name>
-    <message>
-      <location filename="openlp/plugins/songusage/forms/songusagedeleteform.py" line="44"/>
-      <source>Delete Selected Song Usage Events?</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>SongUsagePlugin</name>
-    <message>
-      <location filename="openlp/plugins/songusage/songusageplugin.py" line="154"/>
-      <source>&lt;b&gt;SongUsage Plugin&lt;/b&gt;&lt;br&gt;This plugin records the use of songs and when they have been used during a live service</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_customEditDialog</name>
-    <message>
-      <location filename="openlp/plugins/custom/forms/editcustomdialog.py" line="149"/>
-      <source>Move slide Up 1</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>SongsPlugin</name>
-    <message>
-      <location filename="openlp/plugins/songs/songsplugin.py" line="156"/>
-      <source>OpenSong</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>AlertsManager</name>
-    <message>
-      <location filename="openlp/plugins/alerts/lib/alertsmanager.py" line="83"/>
-      <source>Alert message created and delayed</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_EditSongDialog</name>
-    <message>
-      <location filename="openlp/plugins/songs/forms/editsongdialog.py" line="420"/>
-      <source>Alternative Title:</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>ServiceManager</name>
-    <message>
-      <location filename="openlp/core/ui/servicemanager.py" line="537"/>
-      <source>Open Service</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>BiblesTab</name>
-    <message>
-      <location filename="openlp/plugins/bibles/lib/biblestab.py" line="155"/>
-      <source>Display Style:</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_AmendThemeDialog</name>
-    <message>
-      <location filename="openlp/core/ui/amendthemedialog.py" line="606"/>
-      <source>Image</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>EditSongForm</name>
-    <message>
-      <location filename="openlp/plugins/songs/forms/editsongform.py" line="405"/>
-      <source>You need to enter a song title.</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>ThemeManager</name>
-    <message>
-      <location filename="openlp/core/ui/thememanager.py" line="361"/>
-      <source>Error</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_SongUsageDeleteDialog</name>
-    <message>
-      <location filename="openlp/plugins/songusage/forms/songusagedeletedialog.py" line="60"/>
-      <source>Song Usage Delete</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>ImportWizardForm</name>
-    <message>
-      <location filename="openlp/plugins/bibles/forms/importwizardform.py" line="112"/>
-      <source>Invalid Bible Location</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>BibleMediaItem</name>
-    <message>
-      <location filename="openlp/plugins/bibles/lib/mediaitem.py" line="289"/>
-      <source>Book:</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>ThemeManager</name>
-    <message>
-      <location filename="openlp/core/ui/thememanager.py" line="91"/>
-      <source>Make Global</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_MainWindow</name>
-    <message>
-      <location filename="openlp/core/ui/mainwindow.py" line="395"/>
-      <source>&amp;Service Manager</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_OpenLPImportDialog</name>
-    <message>
-      <location filename="openlp/plugins/songs/forms/openlpimportdialog.py" line="299"/>
-      <source>Author</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_AmendThemeDialog</name>
-    <message>
-      <location filename="openlp/core/ui/amendthemedialog.py" line="656"/>
-      <source>Height:</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>ThemeManager</name>
-    <message>
-      <location filename="openlp/core/ui/thememanager.py" line="63"/>
-      <source>Delete a theme</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_BibleImportWizard</name>
-    <message>
-      <location filename="openlp/plugins/bibles/forms/bibleimportwizard.py" line="331"/>
-      <source>Crosswalk</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>SongBookForm</name>
-    <message>
-      <location filename="openlp/plugins/songs/forms/songbookform.py" line="51"/>
-      <source>Error</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_AuthorsDialog</name>
-    <message>
-      <location filename="openlp/plugins/songs/forms/authorsdialog.py" line="79"/>
-      <source>Last name:</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>ThemesTab</name>
-    <message>
-      <location filename="openlp/core/ui/themestab.py" line="121"/>
-      <source>Use the global theme, overriding any themes associated with either the service or the songs.</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_customEditDialog</name>
-    <message>
-      <location filename="openlp/plugins/custom/forms/editcustomdialog.py" line="152"/>
-      <source>Title:</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>ImportWizardForm</name>
-    <message>
-      <location filename="openlp/plugins/bibles/forms/importwizardform.py" line="158"/>
-      <source>You need to set a copyright for your Bible! Bibles in the Public Domain need to be marked as such.</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>SongMediaItem</name>
-    <message>
-      <location filename="openlp/plugins/songs/lib/mediaitem.py" line="72"/>
-      <source>Maintain the lists of authors, topics and books</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_AlertEditDialog</name>
-    <message>
-      <location filename="openlp/plugins/alerts/forms/alerteditdialog.py" line="62"/>
-      <source>Save</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>EditCustomForm</name>
-    <message>
-      <location filename="openlp/plugins/custom/forms/editcustomform.py" line="259"/>
-      <source>You have unsaved data</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_AmendThemeDialog</name>
-    <message>
-      <location filename="openlp/core/ui/amendthemedialog.py" line="664"/>
-      <source>Outline</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>BibleMediaItem</name>
-    <message>
-      <location filename="openlp/plugins/bibles/lib/mediaitem.py" line="297"/>
-      <source>Text Search</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_BibleImportWizard</name>
-    <message>
-      <location filename="openlp/plugins/bibles/forms/bibleimportwizard.py" line="323"/>
-      <source>CSV</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>SongUsagePlugin</name>
-    <message>
-      <location filename="openlp/plugins/songusage/songusageplugin.py" line="67"/>
-      <source>Delete song usage to specified date</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_SongUsageDetailDialog</name>
-    <message>
-      <location filename="openlp/plugins/songusage/forms/songusagedetaildialog.py" line="91"/>
-      <source>Report Location</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_BibleImportWizard</name>
-    <message>
-      <location filename="openlp/plugins/bibles/forms/bibleimportwizard.py" line="324"/>
-      <source>OpenSong</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_MainWindow</name>
-    <message>
-      <location filename="openlp/core/ui/mainwindow.py" line="363"/>
-      <source>Open Service</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>BibleMediaItem</name>
-    <message>
-      <location filename="openlp/plugins/bibles/lib/mediaitem.py" line="284"/>
-      <source>Find:</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>ImageMediaItem</name>
-    <message>
-      <location filename="openlp/plugins/images/lib/mediaitem.py" line="62"/>
-      <source>Select Image(s)</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>BibleMediaItem</name>
-    <message>
-      <location filename="openlp/plugins/bibles/lib/mediaitem.py" line="283"/>
-      <source>Search Type:</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_MainWindow</name>
-    <message>
-      <location filename="openlp/core/ui/mainwindow.py" line="353"/>
-      <source>Media Manager</source>
-      <translation type="unfinished"></translation>
-    </message>
-    <message>
-      <location filename="openlp/core/ui/mainwindow.py" line="378"/>
-      <source>Alt+F4</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>MediaManagerItem</name>
-    <message>
-      <location filename="openlp/core/lib/mediamanageritem.py" line="278"/>
-      <source>&amp;Preview</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>GeneralTab</name>
-    <message>
-      <location filename="openlp/core/ui/generaltab.py" line="163"/>
-      <source>CCLI Details</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>BibleMediaItem</name>
-    <message>
-      <location filename="openlp/plugins/bibles/lib/mediaitem.py" line="544"/>
-      <source>Bible not fully loaded</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_MainWindow</name>
-    <message>
-      <location filename="openlp/core/ui/mainwindow.py" line="404"/>
-      <source>Toggle the visibility of the Preview Panel</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>ImportWizardForm</name>
-    <message>
-      <location filename="openlp/plugins/bibles/forms/importwizardform.py" line="167"/>
-      <source>Bible Exists</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_MainWindow</name>
-    <message>
-      <location filename="openlp/core/ui/mainwindow.py" line="409"/>
-      <source>&amp;User Guide</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>AlertsTab</name>
-    <message>
-      <location filename="openlp/plugins/alerts/forms/alertstab.py" line="230"/>
-      <source>pt</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_MainWindow</name>
-    <message>
-      <location filename="openlp/core/ui/mainwindow.py" line="421"/>
-      <source>Set the interface language to English</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_AmendThemeDialog</name>
-    <message>
-      <location filename="openlp/core/ui/amendthemedialog.py" line="617"/>
-      <source>Main Font</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>ImportWizardForm</name>
-    <message>
-      <location filename="openlp/plugins/bibles/forms/importwizardform.py" line="157"/>
-      <source>Empty Copyright</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>AuthorsForm</name>
-    <message>
-      <location filename="openlp/plugins/songs/forms/authorsform.py" line="80"/>
-      <source>You need to type in the first name of the author.</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>SongsTab</name>
-    <message>
-      <location filename="openlp/plugins/songs/lib/songstab.py" line="68"/>
-      <source>Display Verses on Live Tool bar:</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>ServiceManager</name>
-    <message>
-      <location filename="openlp/core/ui/servicemanager.py" line="162"/>
-      <source>Move to top</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>ImageMediaItem</name>
-    <message>
-      <location filename="openlp/plugins/images/lib/mediaitem.py" line="102"/>
-      <source>Override background</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_SongMaintenanceDialog</name>
-    <message>
-      <location filename="openlp/plugins/songs/forms/songmaintenancedialog.py" line="222"/>
-      <source>Edit</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_OpenSongExportDialog</name>
-    <message>
-      <location filename="openlp/plugins/songs/forms/opensongexportdialog.py" line="300"/>
-      <source>Select All</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>ThemesTab</name>
-    <message>
-      <location filename="openlp/core/ui/themestab.py" line="112"/>
-      <source>Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme.</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>PresentationMediaItem</name>
-    <message>
-      <location filename="openlp/plugins/presentations/lib/mediaitem.py" line="63"/>
-      <source>Presentation</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_AmendThemeDialog</name>
-    <message>
-      <location filename="openlp/core/ui/amendthemedialog.py" line="604"/>
-      <source>Solid Color</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>CustomTab</name>
-    <message>
-      <location filename="openlp/plugins/custom/lib/customtab.py" line="39"/>
-      <source>Custom</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_OpenLPImportDialog</name>
-    <message>
-      <location filename="openlp/plugins/songs/forms/openlpimportdialog.py" line="303"/>
-      <source>Ready to import</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>MainWindow</name>
-    <message>
-      <location filename="openlp/core/ui/mainwindow.py" line="555"/>
-      <source>OpenLP version %s has been updated to version %s
-
-You can obtain the latest version from http://openlp.org</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_BibleImportWizard</name>
-    <message>
-      <location filename="openlp/plugins/bibles/forms/bibleimportwizard.py" line="326"/>
-      <source>File Location:</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>SlideController</name>
-    <message>
-      <location filename="openlp/core/ui/slidecontroller.py" line="225"/>
-      <source>Go to Verse</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>SongMaintenanceForm</name>
-    <message>
-      <location filename="openlp/plugins/songs/forms/songmaintenanceform.py" line="153"/>
-      <source>Couldn't add your topic.</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_MainWindow</name>
-    <message>
-      <location filename="openlp/core/ui/mainwindow.py" line="343"/>
-      <source>&amp;Import</source>
-      <translation type="unfinished"></translation>
-    </message>
-    <message>
-      <location filename="openlp/core/ui/mainwindow.py" line="377"/>
-      <source>Quit OpenLP</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_BibleImportWizard</name>
-    <message>
-      <location filename="openlp/plugins/bibles/forms/bibleimportwizard.py" line="315"/>
-      <source>This wizard will help you to import Bibles from a variety of formats. Click the next button below to start the process by selecting a format to import from.</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_OpenLPExportDialog</name>
-    <message>
-      <location filename="openlp/plugins/songs/forms/openlpexportdialog.py" line="295"/>
-      <source>Title</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>ImportWizardForm</name>
-    <message>
-      <location filename="openlp/plugins/bibles/forms/importwizardform.py" line="149"/>
-      <source>Empty Version Name</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_MainWindow</name>
-    <message>
-      <location filename="openlp/core/ui/mainwindow.py" line="401"/>
-      <source>&amp;Preview Panel</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>SlideController</name>
-    <message>
-      <location filename="openlp/core/ui/slidecontroller.py" line="190"/>
-      <source>Start continuous loop</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>GeneralTab</name>
-    <message>
-      <location filename="openlp/core/ui/generaltab.py" line="199"/>
-      <source>primary</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_EditSongDialog</name>
-    <message>
-      <location filename="openlp/plugins/songs/forms/editsongdialog.py" line="443"/>
-      <source>Add a Theme</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_MainWindow</name>
-    <message>
-      <location filename="openlp/core/ui/mainwindow.py" line="358"/>
-      <source>&amp;New</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_customEditDialog</name>
-    <message>
-      <location filename="openlp/plugins/custom/forms/editcustomdialog.py" line="167"/>
-      <source>Credits:</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_EditSongDialog</name>
-    <message>
-      <location filename="openlp/plugins/songs/forms/editsongdialog.py" line="437"/>
-      <source>R&amp;emove</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>SlideController</name>
-    <message>
-      <location filename="openlp/core/ui/slidecontroller.py" line="110"/>
-      <source>Live</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_AmendThemeDialog</name>
-    <message>
-      <location filename="openlp/core/ui/amendthemedialog.py" line="640"/>
-      <source>Font Main</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>BiblesTab</name>
-    <message>
-      <location filename="openlp/plugins/bibles/lib/biblestab.py" line="159"/>
-      <source>continuous</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>ThemeManager</name>
-    <message>
-      <location filename="openlp/core/ui/thememanager.py" line="362"/>
-      <source>File is not a valid theme.</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>GeneralTab</name>
-    <message>
-      <location filename="openlp/core/ui/generaltab.py" line="156"/>
-      <source>Application Startup</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_AmendThemeDialog</name>
-    <message>
-      <location filename="openlp/core/ui/amendthemedialog.py" line="652"/>
-      <source>Use Default Location:</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_OpenSongImportDialog</name>
-    <message>
-      <location filename="openlp/plugins/songs/forms/opensongimportdialog.py" line="107"/>
-      <source>Import</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_AmendThemeDialog</name>
-    <message>
-      <location filename="openlp/core/ui/amendthemedialog.py" line="687"/>
-      <source>Other Options</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_EditSongDialog</name>
-    <message>
-      <location filename="openlp/plugins/songs/forms/editsongdialog.py" line="422"/>
-      <source>Verse Order:</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_MainWindow</name>
-    <message>
-      <location filename="openlp/core/ui/mainwindow.py" line="339"/>
-      <source>Default Theme: </source>
-      <translation type="unfinished"></translation>
-    </message>
-    <message>
-      <location filename="openlp/core/ui/mainwindow.py" line="402"/>
-      <source>Toggle Preview Panel</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>SongMediaItem</name>
-    <message>
-      <location filename="openlp/plugins/songs/lib/mediaitem.py" line="147"/>
-      <source>Lyrics</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_OpenLPImportDialog</name>
-    <message>
-      <location filename="openlp/plugins/songs/forms/openlpimportdialog.py" line="302"/>
-      <source>Progress:</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_AmendThemeDialog</name>
-    <message>
-      <location filename="openlp/core/ui/amendthemedialog.py" line="669"/>
-      <source>Shadow</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>GeneralTab</name>
-    <message>
-      <location filename="openlp/core/ui/generaltab.py" line="155"/>
-      <source>Select monitor for output display:</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_MainWindow</name>
-    <message>
-      <location filename="openlp/core/ui/mainwindow.py" line="384"/>
-      <source>&amp;Settings</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>EditSongForm</name>
-    <message>
-      <location filename="openlp/plugins/songs/forms/editsongform.py" line="430"/>
-      <source>Invalid verse entry - values must be Numeric, I,B,C,T,P,E,O</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_AmendThemeDialog</name>
-    <message>
-      <location filename="openlp/core/ui/amendthemedialog.py" line="648"/>
-      <source>Italics</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>ServiceManager</name>
-    <message>
-      <location filename="openlp/core/ui/servicemanager.py" line="118"/>
-      <source>Create a new service</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_AmendThemeDialog</name>
-    <message>
-      <location filename="openlp/core/ui/amendthemedialog.py" line="600"/>
-      <source>Background:</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_OpenLPImportDialog</name>
-    <message>
-      <location filename="openlp/plugins/songs/forms/openlpimportdialog.py" line="288"/>
-      <source>openlp.org Song Importer</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_BibleImportWizard</name>
-    <message>
-      <location filename="openlp/plugins/bibles/forms/bibleimportwizard.py" line="347"/>
-      <source>Copyright:</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>ThemesTab</name>
-    <message>
-      <location filename="openlp/core/ui/themestab.py" line="116"/>
-      <source>Service level</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>BiblesTab</name>
-    <message>
-      <location filename="openlp/plugins/bibles/lib/biblestab.py" line="163"/>
-      <source>[ and ]</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_BibleImportWizard</name>
-    <message>
-      <location filename="openlp/plugins/bibles/forms/bibleimportwizard.py" line="328"/>
-      <source>Verse Location:</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>MediaManagerItem</name>
-    <message>
-      <location filename="openlp/core/lib/mediamanageritem.py" line="381"/>
-      <source>You must select one or more items</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>GeneralTab</name>
-    <message>
-      <location filename="openlp/core/ui/generaltab.py" line="160"/>
-      <source>Application Settings</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>ServiceManager</name>
-    <message>
-      <location filename="openlp/core/ui/servicemanager.py" line="124"/>
-      <source>Save this service</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>ImportWizardForm</name>
-    <message>
-      <location filename="openlp/plugins/bibles/forms/importwizardform.py" line="188"/>
-      <source>Open Books CSV file</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>GeneralTab</name>
-    <message>
-      <location filename="openlp/core/ui/generaltab.py" line="165"/>
-      <source>SongSelect Username:</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_AmendThemeDialog</name>
-    <message>
-      <location filename="openlp/core/ui/amendthemedialog.py" line="653"/>
-      <source>X Position:</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>BibleMediaItem</name>
-    <message>
-      <location filename="openlp/plugins/bibles/lib/mediaitem.py" line="354"/>
-      <source>No matching book could be found in this Bible.</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_BibleImportWizard</name>
-    <message>
-      <location filename="openlp/plugins/bibles/forms/bibleimportwizard.py" line="337"/>
-      <source>Server:</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_EditVerseDialog</name>
-    <message>
-      <location filename="openlp/plugins/songs/forms/editversedialog.py" line="128"/>
-      <source>Ending</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>CustomTab</name>
-    <message>
-      <location filename="openlp/plugins/custom/lib/customtab.py" line="60"/>
-      <source>Display Footer:</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>ImportWizardForm</name>
-    <message>
-      <location filename="openlp/plugins/bibles/forms/importwizardform.py" line="138"/>
-      <source>Invalid OpenSong Bible</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>GeneralTab</name>
-    <message>
-      <location filename="openlp/core/ui/generaltab.py" line="164"/>
-      <source>CCLI Number:</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_AmendThemeDialog</name>
-    <message>
-      <location filename="openlp/core/ui/amendthemedialog.py" line="678"/>
-      <source>Center</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>ServiceManager</name>
-    <message>
-      <location filename="openlp/core/ui/servicemanager.py" line="126"/>
-      <source>Theme:</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>AlertEditForm</name>
-    <message>
-      <location filename="openlp/plugins/alerts/forms/alerteditform.py" line="88"/>
-      <source>Please save or clear selected item</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_MainWindow</name>
-    <message>
-      <location filename="openlp/core/ui/mainwindow.py" line="426"/>
-      <source>&amp;Live</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_AmendThemeDialog</name>
-    <message>
-      <location filename="openlp/core/ui/amendthemedialog.py" line="608"/>
-      <source>&lt;Color2&gt;</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_MainWindow</name>
-    <message>
-      <location filename="openlp/core/ui/mainwindow.py" line="419"/>
-      <source>English</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>ImageMediaItem</name>
-    <message>
-      <location filename="openlp/plugins/images/lib/mediaitem.py" line="169"/>
-      <source>You must select one or more items</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_AuthorsDialog</name>
-    <message>
-      <location filename="openlp/plugins/songs/forms/authorsdialog.py" line="78"/>
-      <source>First name:</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_OpenLPExportDialog</name>
-    <message>
-      <location filename="openlp/plugins/songs/forms/openlpexportdialog.py" line="289"/>
-      <source>Select openlp.org export filename:</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_BibleImportWizard</name>
-    <message>
-      <location filename="openlp/plugins/bibles/forms/bibleimportwizard.py" line="348"/>
-      <source>Permission:</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_OpenSongImportDialog</name>
-    <message>
-      <location filename="openlp/plugins/songs/forms/opensongimportdialog.py" line="108"/>
-      <source>Close</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_SongUsageDetailDialog</name>
-    <message>
-      <location filename="openlp/plugins/songusage/forms/songusagedetaildialog.py" line="88"/>
-      <source>Song Usage Extraction</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_AmendThemeDialog</name>
-    <message>
-      <location filename="openlp/core/ui/amendthemedialog.py" line="601"/>
-      <source>Opaque</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>ImportWizardForm</name>
-    <message>
-      <location filename="openlp/plugins/bibles/forms/importwizardform.py" line="367"/>
-      <source>Your Bible import failed.</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>SlideController</name>
-    <message>
-      <location filename="openlp/core/ui/slidecontroller.py" line="212"/>
-      <source>Start playing media</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>SongMediaItem</name>
-    <message>
-      <location filename="openlp/plugins/songs/lib/mediaitem.py" line="141"/>
-      <source>Type:</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>SongMaintenanceForm</name>
-    <message>
-      <location filename="openlp/plugins/songs/forms/songmaintenanceform.py" line="255"/>
-      <source>This book can't be deleted, it is currently assigned to at least one song.</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_AboutDialog</name>
-    <message>
-      <location filename="openlp/core/ui/aboutdialog.py" line="550"/>
-      <source>Close</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>TopicsForm</name>
-    <message>
-      <location filename="openlp/plugins/songs/forms/topicsform.py" line="51"/>
-      <source>You need to type in a topic name!</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_OpenSongExportDialog</name>
-    <message>
-      <location filename="openlp/plugins/songs/forms/opensongexportdialog.py" line="297"/>
-      <source>Song Export List</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>BibleMediaItem</name>
-    <message>
-      <location filename="openlp/plugins/bibles/lib/mediaitem.py" line="288"/>
-      <source>Dual:</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>ImageTab</name>
-    <message>
-      <location filename="openlp/plugins/images/lib/imagetab.py" line="68"/>
-      <source>sec</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>ServiceManager</name>
-    <message>
-      <location filename="openlp/core/ui/servicemanager.py" line="175"/>
-      <source>Delete From Service</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>GeneralTab</name>
-    <message>
-      <location filename="openlp/core/ui/generaltab.py" line="158"/>
-      <source>Automatically open the last service</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_OpenLPImportDialog</name>
-    <message>
-      <location filename="openlp/plugins/songs/forms/openlpimportdialog.py" line="297"/>
-      <source>Song Import List</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_OpenSongExportDialog</name>
-    <message>
-      <location filename="openlp/plugins/songs/forms/opensongexportdialog.py" line="299"/>
-      <source>Author</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_AmendThemeDialog</name>
-    <message>
-      <location filename="openlp/core/ui/amendthemedialog.py" line="667"/>
-      <source>Outline Color:</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_BibleImportWizard</name>
-    <message>
-      <location filename="openlp/plugins/bibles/forms/bibleimportwizard.py" line="318"/>
-      <source>Select Import Source</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_MainWindow</name>
-    <message>
-      <location filename="openlp/core/ui/mainwindow.py" line="400"/>
-      <source>F9</source>
-      <translation type="unfinished"></translation>
-    </message>
-    <message>
-      <location filename="openlp/core/ui/mainwindow.py" line="389"/>
-      <source>F8</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>ServiceManager</name>
-    <message>
-      <location filename="openlp/core/ui/servicemanager.py" line="217"/>
-      <source>&amp;Change Item Theme</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_SongMaintenanceDialog</name>
-    <message>
-      <location filename="openlp/plugins/songs/forms/songmaintenancedialog.py" line="213"/>
-      <source>Topics</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_OpenLPImportDialog</name>
-    <message>
-      <location filename="openlp/plugins/songs/forms/openlpimportdialog.py" line="290"/>
-      <source>Import File Song List</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_customEditDialog</name>
-    <message>
-      <location filename="openlp/plugins/custom/forms/editcustomdialog.py" line="151"/>
-      <source>Edit Custom Slides</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_BibleImportWizard</name>
-    <message>
-      <location filename="openlp/plugins/bibles/forms/bibleimportwizard.py" line="345"/>
-      <source>Set up the Bible's license details.</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_EditVerseDialog</name>
-    <message>
-      <location filename="openlp/plugins/songs/forms/editversedialog.py" line="121"/>
-      <source>Number</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_AmendThemeDialog</name>
-    <message>
-      <location filename="openlp/core/ui/amendthemedialog.py" line="674"/>
-      <source>Alignment</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>SongMaintenanceForm</name>
-    <message>
-      <location filename="openlp/plugins/songs/forms/songmaintenanceform.py" line="253"/>
-      <source>Delete Book</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>ThemeManager</name>
-    <message>
-      <location filename="openlp/core/ui/thememanager.py" line="80"/>
-      <source>Edit a theme</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_BibleImportWizard</name>
-    <message>
-      <location filename="openlp/plugins/bibles/forms/bibleimportwizard.py" line="332"/>
-      <source>BibleGateway</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>GeneralTab</name>
-    <message>
-      <location filename="openlp/core/ui/generaltab.py" line="162"/>
-      <source>Preview Next Song from Service Manager</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_EditSongDialog</name>
-    <message>
-      <location filename="openlp/plugins/songs/forms/editsongdialog.py" line="429"/>
-      <source>Title &amp;&amp; Lyrics</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>SongMaintenanceForm</name>
-    <message>
-      <location filename="openlp/plugins/songs/forms/songmaintenanceform.py" line="257"/>
-      <source>No book selected!</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>SlideController</name>
-    <message>
-      <location filename="openlp/core/ui/slidecontroller.py" line="181"/>
-      <source>Move to live</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_EditVerseDialog</name>
-    <message>
-      <location filename="openlp/plugins/songs/forms/editversedialog.py" line="127"/>
-      <source>Other</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_EditSongDialog</name>
-    <message>
-      <location filename="openlp/plugins/songs/forms/editsongdialog.py" line="442"/>
-      <source>Theme</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>ServiceManager</name>
-    <message>
-      <location filename="openlp/core/ui/servicemanager.py" line="480"/>
-      <source>Save Service</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_SongUsageDetailDialog</name>
-    <message>
-      <location filename="openlp/plugins/songusage/forms/songusagedetaildialog.py" line="89"/>
-      <source>Select Date Range</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_MainWindow</name>
-    <message>
-      <location filename="openlp/core/ui/mainwindow.py" line="369"/>
-      <source>Save the current service to disk</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>BibleMediaItem</name>
-    <message>
-      <location filename="openlp/plugins/bibles/lib/mediaitem.py" line="290"/>
-      <source>Chapter:</source>
-      <translation type="unfinished"></translation>
-    </message>
-    <message>
-      <location filename="openlp/plugins/bibles/lib/mediaitem.py" line="295"/>
-      <source>Search</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>PresentationTab</name>
-    <message>
-      <location filename="openlp/plugins/presentations/lib/presentationtab.py" line="91"/>
-      <source>Available Controllers</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_MainWindow</name>
-    <message>
-      <location filename="openlp/core/ui/mainwindow.py" line="422"/>
-      <source>Add &amp;Tool...</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>TopicsForm</name>
-    <message>
-      <location filename="openlp/plugins/songs/forms/topicsform.py" line="50"/>
-      <source>Error</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>RemoteTab</name>
-    <message>
-      <location filename="openlp/plugins/remotes/lib/remotetab.py" line="56"/>
-      <source>Remotes Receiver Port</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_MainWindow</name>
-    <message>
-      <location filename="openlp/core/ui/mainwindow.py" line="346"/>
-      <source>&amp;View</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_AmendThemeDialog</name>
-    <message>
-      <location filename="openlp/core/ui/amendthemedialog.py" line="646"/>
-      <source>Normal</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_OpenLPExportDialog</name>
-    <message>
-      <location filename="openlp/plugins/songs/forms/openlpexportdialog.py" line="305"/>
-      <source>Close</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_BibleImportWizard</name>
-    <message>
-      <location filename="openlp/plugins/bibles/forms/bibleimportwizard.py" line="338"/>
-      <source>Username:</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>ThemeManager</name>
-    <message>
-      <location filename="openlp/core/ui/thememanager.py" line="59"/>
-      <source>Edit Theme</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>SlideController</name>
-    <message>
-      <location filename="openlp/core/ui/slidecontroller.py" line="114"/>
-      <source>Preview</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_AlertDialog</name>
-    <message>
-      <location filename="openlp/plugins/alerts/forms/alertdialog.py" line="68"/>
-      <source>Alert Message</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>ImportWizardForm</name>
-    <message>
-      <location filename="openlp/plugins/bibles/forms/importwizardform.py" line="364"/>
-      <source>Finished import.</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>GeneralTab</name>
-    <message>
-      <location filename="openlp/core/ui/generaltab.py" line="157"/>
-      <source>Show blank screen warning</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>ImportWizardForm</name>
-    <message>
-      <location filename="openlp/plugins/bibles/forms/importwizardform.py" line="130"/>
-      <source>You need to specify a file of Bible verses to import.</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>AlertsTab</name>
-    <message>
-      <location filename="openlp/plugins/alerts/forms/alertstab.py" line="233"/>
-      <source>Location:</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_EditSongDialog</name>
-    <message>
-      <location filename="openlp/plugins/songs/forms/editsongdialog.py" line="441"/>
-      <source>Authors, Topics &amp;&amp; Book</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>EditSongForm</name>
-    <message>
-      <location filename="openlp/plugins/songs/forms/editsongform.py" line="409"/>
-      <source>You need to enter some verses.</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_BibleImportWizard</name>
-    <message>
-      <location filename="openlp/plugins/bibles/forms/bibleimportwizard.py" line="336"/>
-      <source>Download Options</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>BiblePlugin</name>
-    <message>
-      <location filename="openlp/plugins/bibles/bibleplugin.py" line="91"/>
-      <source>&lt;strong&gt;Bible Plugin&lt;/strong&gt;&lt;br /&gt;This plugin allows bible verses from different sources to be displayed on the screen during the service.</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_EditSongDialog</name>
-    <message>
-      <location filename="openlp/plugins/songs/forms/editsongdialog.py" line="444"/>
-      <source>Copyright Information</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_MainWindow</name>
-    <message>
-      <location filename="openlp/core/ui/mainwindow.py" line="344"/>
-      <source>&amp;Export</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_AmendThemeDialog</name>
-    <message>
-      <location filename="openlp/core/ui/amendthemedialog.py" line="647"/>
-      <source>Bold</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>SongsPlugin</name>
-    <message>
-      <location filename="openlp/plugins/songs/songsplugin.py" line="122"/>
-      <source>Export songs in OpenLP 2.0 format</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>MediaManagerItem</name>
-    <message>
-      <location filename="openlp/core/lib/mediamanageritem.py" line="214"/>
-      <source>Load a new</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>AlertEditForm</name>
-    <message>
-      <location filename="openlp/plugins/alerts/forms/alerteditform.py" line="128"/>
-      <source>Missing data</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>SongsPlugin</name>
-    <message>
-      <location filename="openlp/plugins/songs/songsplugin.py" line="179"/>
-      <source>&lt;b&gt;Song Plugin&lt;/b&gt; &lt;br&gt;This plugin allows Songs to be managed and displayed.&lt;br&gt;</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_AmendThemeDialog</name>
-    <message>
-      <location filename="openlp/core/ui/amendthemedialog.py" line="641"/>
-      <source>Footer Font</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>EditSongForm</name>
-    <message>
-      <location filename="openlp/plugins/songs/forms/editsongform.py" line="422"/>
-      <source>Invalid verse entry - vX</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>ServiceManager</name>
-    <message>
-      <location filename="openlp/core/ui/servicemanager.py" line="481"/>
-      <source>OpenLP Service Files (*.osz)</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>MediaManagerItem</name>
-    <message>
-      <location filename="openlp/core/lib/mediamanageritem.py" line="233"/>
-      <source>Delete the selected item</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_OpenLPExportDialog</name>
-    <message>
-      <location filename="openlp/plugins/songs/forms/openlpexportdialog.py" line="304"/>
-      <source>Export</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_BibleImportWizard</name>
-    <message>
-      <location filename="openlp/plugins/bibles/forms/bibleimportwizard.py" line="330"/>
-      <source>Location:</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>BibleMediaItem</name>
-    <message>
-      <location filename="openlp/plugins/bibles/lib/mediaitem.py" line="301"/>
-      <source>Keep</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>SongUsagePlugin</name>
-    <message>
-      <location filename="openlp/plugins/songusage/songusageplugin.py" line="74"/>
-      <source>Generate report on Song Usage</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_EditSongDialog</name>
-    <message>
-      <location filename="openlp/plugins/songs/forms/editsongdialog.py" line="435"/>
-      <source>Topic</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_MainWindow</name>
-    <message>
-      <location filename="openlp/core/ui/mainwindow.py" line="362"/>
-      <source>&amp;Open</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>AuthorsForm</name>
-    <message>
-      <location filename="openlp/plugins/songs/forms/authorsform.py" line="94"/>
-      <source>You haven't set a display name for the author, would you like me to combine the first and last names for you?</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>AmendThemeForm</name>
-    <message>
-      <location filename="openlp/core/ui/amendthemeform.py" line="708"/>
-      <source>Slide Height is %s rows</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_EditSongDialog</name>
-    <message>
-      <location filename="openlp/plugins/songs/forms/editsongdialog.py" line="421"/>
-      <source>Lyrics:</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_AboutDialog</name>
-    <message>
-      <location filename="openlp/core/ui/aboutdialog.py" line="135"/>
-      <source>Project Lead
-    Raoul "superfly" Snyman
-
-Developers
-    Tim "TRB143" Bentley
-    Jonathan "gushie" Corwin
-    Michael "cocooncrash" Gorven
-    Scott "sguerrieri" Guerrieri
-    Raoul "superfly" Snyman
-    Maikel Stuivenberg
-    Martin "mijiti" Thompson
-    Jon "Meths" Tibble
-    Carsten "catini" Tingaard
-
-Testers
-    Wesley "wrst" Stout</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>SongMediaItem</name>
-    <message>
-      <location filename="openlp/plugins/songs/lib/mediaitem.py" line="146"/>
-      <source>Titles</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_OpenLPExportDialog</name>
-    <message>
-      <location filename="openlp/plugins/songs/forms/openlpexportdialog.py" line="294"/>
-      <source>Lyrics</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>PresentationMediaItem</name>
-    <message>
-      <location filename="openlp/plugins/presentations/lib/mediaitem.py" line="101"/>
-      <source>Present using:</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>SongMediaItem</name>
-    <message>
-      <location filename="openlp/plugins/songs/lib/mediaitem.py" line="142"/>
-      <source>Clear</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>ServiceManager</name>
-    <message>
-      <location filename="openlp/core/ui/servicemanager.py" line="213"/>
-      <source>&amp;Live Verse</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_OpenSongImportDialog</name>
-    <message>
-      <location filename="openlp/plugins/songs/forms/opensongimportdialog.py" line="105"/>
-      <source>Progress:</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_MainWindow</name>
-    <message>
-      <location filename="openlp/core/ui/mainwindow.py" line="391"/>
-      <source>Toggle Theme Manager</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_AlertDialog</name>
-    <message>
-      <location filename="openlp/plugins/alerts/forms/alertdialog.py" line="69"/>
-      <source>Alert Text:</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_EditSongDialog</name>
-    <message>
-      <location filename="openlp/plugins/songs/forms/editsongdialog.py" line="424"/>
-      <source>Edit</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>AlertsTab</name>
-    <message>
-      <location filename="openlp/plugins/alerts/forms/alertstab.py" line="227"/>
-      <source>Font Color:</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_AmendThemeDialog</name>
-    <message>
-      <location filename="openlp/core/ui/amendthemedialog.py" line="598"/>
-      <source>Theme Maintenance</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>CustomTab</name>
-    <message>
-      <location filename="openlp/plugins/custom/lib/customtab.py" line="58"/>
-      <source>Custom Display</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_OpenSongExportDialog</name>
-    <message>
-      <location filename="openlp/plugins/songs/forms/opensongexportdialog.py" line="295"/>
-      <source>Title</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_AmendThemeDialog</name>
-    <message>
-      <location filename="openlp/core/ui/amendthemedialog.py" line="607"/>
-      <source>&lt;Color1&gt;</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_EditSongDialog</name>
-    <message>
-      <location filename="openlp/plugins/songs/forms/editsongdialog.py" line="430"/>
-      <source>Authors</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>ThemeManager</name>
-    <message>
-      <location filename="openlp/core/ui/thememanager.py" line="69"/>
-      <source>Export Theme</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>ImageMediaItem</name>
-    <message>
-      <location filename="openlp/plugins/images/lib/mediaitem.py" line="168"/>
-      <source>No items selected...</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_SongBookDialog</name>
-    <message>
-      <location filename="openlp/plugins/songs/forms/songbookdialog.py" line="69"/>
-      <source>Name:</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_AuthorsDialog</name>
-    <message>
-      <location filename="openlp/plugins/songs/forms/authorsdialog.py" line="76"/>
-      <source>Author Maintenance</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_AmendThemeDialog</name>
-    <message>
-      <location filename="openlp/core/ui/amendthemedialog.py" line="663"/>
-      <source>Font Footer</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>BiblesTab</name>
-    <message>
-      <location filename="openlp/plugins/bibles/lib/biblestab.py" line="152"/>
-      <source>Verse Display</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_MainWindow</name>
-    <message>
-      <location filename="openlp/core/ui/mainwindow.py" line="345"/>
-      <source>&amp;Options</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>BibleMediaItem</name>
-    <message>
-      <location filename="openlp/plugins/bibles/lib/mediaitem.py" line="294"/>
-      <source>Results:</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_OpenLPExportDialog</name>
-    <message>
-      <location filename="openlp/plugins/songs/forms/openlpexportdialog.py" line="290"/>
-      <source>Full Song List</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>ServiceManager</name>
-    <message>
-      <location filename="openlp/core/ui/servicemanager.py" line="161"/>
-      <source>Move to &amp;top</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>SlideController</name>
-    <message>
-      <location filename="openlp/core/ui/slidecontroller.py" line="169"/>
-      <source>Move to last</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_OpenLPExportDialog</name>
-    <message>
-      <location filename="openlp/plugins/songs/forms/openlpexportdialog.py" line="302"/>
-      <source>Progress:</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_SongMaintenanceDialog</name>
-    <message>
-      <location filename="openlp/plugins/songs/forms/songmaintenancedialog.py" line="221"/>
-      <source>Add</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>SongMaintenanceForm</name>
-    <message>
-      <location filename="openlp/plugins/songs/forms/songmaintenanceform.py" line="228"/>
-      <source>Are you sure you want to delete the selected author?</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>SongUsagePlugin</name>
-    <message>
-      <location filename="openlp/plugins/songusage/songusageplugin.py" line="82"/>
-      <source>Song Usage Status</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>BibleMediaItem</name>
-    <message>
-      <location filename="openlp/plugins/bibles/lib/mediaitem.py" line="296"/>
-      <source>Verse Search</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_SongBookDialog</name>
-    <message>
-      <location filename="openlp/plugins/songs/forms/songbookdialog.py" line="68"/>
-      <source>Edit Book</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>EditSongForm</name>
-    <message>
-      <location filename="openlp/plugins/songs/forms/editsongform.py" line="462"/>
-      <source>Save &amp;&amp; Preview</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_SongBookDialog</name>
-    <message>
-      <location filename="openlp/plugins/songs/forms/songbookdialog.py" line="70"/>
-      <source>Publisher:</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_AmendThemeDialog</name>
-    <message>
-      <location filename="openlp/core/ui/amendthemedialog.py" line="650"/>
-      <source>Font Weight:</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_BibleImportWizard</name>
-    <message>
-      <location filename="openlp/plugins/bibles/forms/bibleimportwizard.py" line="329"/>
-      <source>Bible Filename:</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_AmendThemeDialog</name>
-    <message>
-      <location filename="openlp/core/ui/amendthemedialog.py" line="602"/>
-      <source>Transparent</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>SongMediaItem</name>
-    <message>
-      <location filename="openlp/plugins/songs/lib/mediaitem.py" line="143"/>
-      <source>Search</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_BibleImportWizard</name>
-    <message>
-      <location filename="openlp/plugins/bibles/forms/bibleimportwizard.py" line="321"/>
-      <source>Format:</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_AmendThemeDialog</name>
-    <message>
-      <location filename="openlp/core/ui/amendthemedialog.py" line="616"/>
-      <source>Background</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_BibleImportWizard</name>
-    <message>
-      <location filename="openlp/plugins/bibles/forms/bibleimportwizard.py" line="349"/>
-      <source>Importing</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_customEditDialog</name>
-    <message>
-      <location filename="openlp/plugins/custom/forms/editcustomdialog.py" line="158"/>
-      <source>Edit all slides</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>SongsTab</name>
-    <message>
-      <location filename="openlp/plugins/songs/lib/songstab.py" line="66"/>
-      <source>Enable search as you type:</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_MainWindow</name>
-    <message>
-      <location filename="openlp/core/ui/mainwindow.py" line="370"/>
-      <source>Ctrl+S</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>SongMediaItem</name>
-    <message>
-      <location filename="openlp/plugins/songs/lib/mediaitem.py" line="148"/>
-      <source>Authors</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_PluginViewDialog</name>
-    <message>
-      <location filename="openlp/core/ui/plugindialog.py" line="107"/>
-      <source>Active</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>SongMaintenanceForm</name>
-    <message>
-      <location filename="openlp/plugins/songs/forms/songmaintenanceform.py" line="142"/>
-      <source>Couldn't add your author.</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_MainWindow</name>
-    <message>
-      <location filename="openlp/core/ui/mainwindow.py" line="365"/>
-      <source>Ctrl+O</source>
-      <translation type="unfinished"></translation>
-    </message>
-    <message>
-      <location filename="openlp/core/ui/mainwindow.py" line="361"/>
-      <source>Ctrl+N</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_AlertEditDialog</name>
-    <message>
-      <location filename="openlp/plugins/alerts/forms/alerteditdialog.py" line="65"/>
-      <source>Edit</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_EditSongDialog</name>
-    <message>
-      <location filename="openlp/plugins/songs/forms/editsongdialog.py" line="418"/>
-      <source>Song Editor</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>AlertsTab</name>
-    <message>
-      <location filename="openlp/plugins/alerts/forms/alertstab.py" line="225"/>
-      <source>Font</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>SlideController</name>
-    <message>
-      <location filename="openlp/core/ui/slidecontroller.py" line="185"/>
-      <source>Edit and re-preview Song</source>
-      <translation type="unfinished"></translation>
-    </message>
-    <message>
-      <location filename="openlp/core/ui/slidecontroller.py" line="200"/>
-      <source>Delay between slides in seconds</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>MediaManagerItem</name>
-    <message>
-      <location filename="openlp/core/lib/mediamanageritem.py" line="272"/>
-      <source>&amp;Edit</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_AmendThemeDialog</name>
-    <message>
-      <location filename="openlp/core/ui/amendthemedialog.py" line="612"/>
-      <source>Vertical</source>
-      <translation type="unfinished"></translation>
-    </message>
-    <message>
-      <location filename="openlp/core/ui/amendthemedialog.py" line="655"/>
-      <source>Width:</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>ThemesTab</name>
-    <message>
-      <location filename="openlp/core/ui/themestab.py" line="120"/>
-      <source>Global level</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>ThemeManager</name>
-    <message>
-      <location filename="openlp/core/ui/thememanager.py" line="180"/>
-      <source>You are unable to delete the default theme.</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>BibleMediaItem</name>
-    <message>
-      <location filename="openlp/plugins/bibles/lib/mediaitem.py" line="287"/>
-      <source>Version:</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_AboutDialog</name>
-    <message>
-      <location filename="openlp/core/ui/aboutdialog.py" line="117"/>
-      <source>OpenLP &lt;version&gt; build &lt;revision&gt; - Open Source Lyrics Projection
-
-OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if OpenOffice.org, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector.
-
-Find out more about OpenLP: http://openlp.org/
-
-OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider contributing by using the button below.</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>SongsPlugin</name>
-    <message>
-      <location filename="openlp/plugins/songs/songsplugin.py" line="158"/>
-      <source>OpenLP 2.0</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>ServiceManager</name>
-    <message>
-      <location filename="openlp/core/ui/servicemanager.py" line="117"/>
-      <source>New Service</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_TopicsDialog</name>
-    <message>
-      <location filename="openlp/plugins/songs/forms/topicsdialog.py" line="63"/>
-      <source>Topic name:</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_BibleImportWizard</name>
-    <message>
-      <location filename="openlp/plugins/bibles/forms/bibleimportwizard.py" line="343"/>
-      <source>License Details</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_AboutDialog</name>
-    <message>
-      <location filename="openlp/core/ui/aboutdialog.py" line="548"/>
-      <source>License</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>OpenSongBible</name>
-    <message>
-      <location filename="openlp/plugins/bibles/lib/opensong.py" line="96"/>
-      <source>Importing</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_AmendThemeDialog</name>
-    <message>
-      <location filename="openlp/core/ui/amendthemedialog.py" line="681"/>
-      <source>Middle</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_customEditDialog</name>
-    <message>
-      <location filename="openlp/plugins/custom/forms/editcustomdialog.py" line="159"/>
-      <source>Save</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>AlertEditForm</name>
-    <message>
-      <location filename="openlp/plugins/alerts/forms/alerteditform.py" line="87"/>
-      <source>Item selected to Edit</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>BibleMediaItem</name>
-    <message>
-      <location filename="openlp/plugins/bibles/lib/mediaitem.py" line="292"/>
-      <source>From:</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_AmendThemeDialog</name>
-    <message>
-      <location filename="openlp/core/ui/amendthemedialog.py" line="672"/>
-      <source>Shadow Color:</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>ServiceManager</name>
-    <message>
-      <location filename="openlp/core/ui/servicemanager.py" line="205"/>
-      <source>&amp;Notes</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_MainWindow</name>
-    <message>
-      <location filename="openlp/core/ui/mainwindow.py" line="376"/>
-      <source>E&amp;xit</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_OpenLPImportDialog</name>
-    <message>
-      <location filename="openlp/plugins/songs/forms/openlpimportdialog.py" line="305"/>
-      <source>Close</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>MainWindow</name>
-    <message>
-      <location filename="openlp/core/ui/mainwindow.py" line="558"/>
-      <source>OpenLP Version Updated</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_customEditDialog</name>
-    <message>
-      <location filename="openlp/plugins/custom/forms/editcustomdialog.py" line="160"/>
-      <source>Replace edited slide</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>EditCustomForm</name>
-    <message>
-      <location filename="openlp/plugins/custom/forms/editcustomform.py" line="252"/>
-      <source>You need to enter a title</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>ThemeManager</name>
-    <message>
-      <location filename="openlp/core/ui/thememanager.py" line="444"/>
-      <source>Theme Exists</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_MainWindow</name>
-    <message>
-      <location filename="openlp/core/ui/mainwindow.py" line="351"/>
-      <source>&amp;Help</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_EditVerseDialog</name>
-    <message>
-      <location filename="openlp/plugins/songs/forms/editversedialog.py" line="122"/>
-      <source>Bridge</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_OpenSongExportDialog</name>
-    <message>
-      <location filename="openlp/plugins/songs/forms/opensongexportdialog.py" line="288"/>
-      <source>OpenSong Song Exporter</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_AmendThemeDialog</name>
-    <message>
-      <location filename="openlp/core/ui/amendthemedialog.py" line="679"/>
-      <source>Vertical Align:</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_EditVerseDialog</name>
-    <message>
-      <location filename="openlp/plugins/songs/forms/editversedialog.py" line="125"/>
-      <source>Pre-Chorus</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_AmendThemeDialog</name>
-    <message>
-      <location filename="openlp/core/ui/amendthemedialog.py" line="680"/>
-      <source>Top</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>BiblesTab</name>
-    <message>
-      <location filename="openlp/plugins/bibles/lib/biblestab.py" line="166"/>
-      <source>Display Dual Bible Verses</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_MainWindow</name>
-    <message>
-      <location filename="openlp/core/ui/mainwindow.py" line="397"/>
-      <source>Toggle Service Manager</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_EditSongDialog</name>
-    <message>
-      <location filename="openlp/plugins/songs/forms/editsongdialog.py" line="426"/>
-      <source>Delete</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>MediaManagerItem</name>
-    <message>
-      <location filename="openlp/core/lib/mediamanageritem.py" line="287"/>
-      <source>&amp;Add to Service</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>AmendThemeForm</name>
-    <message>
-      <location filename="openlp/core/ui/amendthemeform.py" line="639"/>
-      <source>First  Color:</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>ThemesTab</name>
-    <message>
-      <location filename="openlp/core/ui/themestab.py" line="111"/>
-      <source>Song level</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>alertsPlugin</name>
-    <message>
-      <location filename="openlp/plugins/alerts/alertsplugin.py" line="68"/>
-      <source>Show an alert message</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_MainWindow</name>
-    <message>
-      <location filename="openlp/core/ui/mainwindow.py" line="413"/>
-      <source>Ctrl+F1</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>SongMaintenanceForm</name>
-    <message>
-      <location filename="openlp/plugins/songs/forms/songmaintenanceform.py" line="200"/>
-      <source>Couldn't save your topic.</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_MainWindow</name>
-    <message>
-      <location filename="openlp/core/ui/mainwindow.py" line="374"/>
-      <source>Save the current service under a new name</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_OpenLPExportDialog</name>
-    <message>
-      <location filename="openlp/plugins/songs/forms/openlpexportdialog.py" line="301"/>
-      <source>Remove Selected</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>ThemeManager</name>
-    <message>
-      <location filename="openlp/core/ui/thememanager.py" line="86"/>
-      <source>Delete theme</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>ImageTab</name>
-    <message>
-      <location filename="openlp/plugins/images/lib/imagetab.py" line="66"/>
-      <source>Image Settings</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_OpenSongImportDialog</name>
-    <message>
-      <location filename="openlp/plugins/songs/forms/opensongimportdialog.py" line="103"/>
-      <source>OpenSong Song Importer</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>SongUsagePlugin</name>
-    <message>
-      <location filename="openlp/plugins/songusage/songusageplugin.py" line="72"/>
-      <source>&amp;Extract recorded data</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>AlertsTab</name>
-    <message>
-      <location filename="openlp/plugins/alerts/forms/alertstab.py" line="226"/>
-      <source>Font Name:</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_MainWindow</name>
-    <message>
-      <location filename="openlp/core/ui/mainwindow.py" line="415"/>
-      <source>&amp;Web Site</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>MediaManagerItem</name>
-    <message>
-      <location filename="openlp/core/lib/mediamanageritem.py" line="245"/>
-      <source>Send the selected item live</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_MainWindow</name>
-    <message>
-      <location filename="openlp/core/ui/mainwindow.py" line="347"/>
-      <source>M&amp;ode</source>
-      <translation type="unfinished"></translation>
-    </message>
-    <message>
-      <location filename="openlp/core/ui/mainwindow.py" line="418"/>
-      <source>Translate the interface to your language</source>
-      <translation type="unfinished"></translation>
-    </message>
-    <message>
-      <location filename="openlp/core/ui/mainwindow.py" line="355"/>
-      <source>Service Manager</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>CustomMediaItem</name>
-    <message>
-      <location filename="openlp/plugins/custom/lib/mediaitem.py" line="70"/>
-      <source>Custom</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_BibleImportWizard</name>
-    <message>
-      <location filename="openlp/plugins/bibles/forms/bibleimportwizard.py" line="322"/>
-      <source>OSIS</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>SongsPlugin</name>
-    <message>
-      <location filename="openlp/plugins/songs/songsplugin.py" line="157"/>
-      <source>openlp.org 1.0</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_MainWindow</name>
-    <message>
-      <location filename="openlp/core/ui/mainwindow.py" line="381"/>
-      <source>&amp;Theme</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_EditVerseDialog</name>
-    <message>
-      <location filename="openlp/plugins/songs/forms/editversedialog.py" line="112"/>
-      <source>Edit Verse</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_MainWindow</name>
-    <message>
-      <location filename="openlp/core/ui/mainwindow.py" line="382"/>
-      <source>&amp;Language</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>ServiceManager</name>
-    <message>
-      <location filename="openlp/core/ui/servicemanager.py" line="171"/>
-      <source>Move to end</source>
-      <translation type="unfinished"></translation>
-    </message>
-    <message>
-      <location filename="openlp/core/ui/servicemanager.py" line="400"/>
-      <source>Your service is unsaved, do you want to save those changes before creating a new one ?</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_OpenSongExportDialog</name>
-    <message>
-      <location filename="openlp/plugins/songs/forms/opensongexportdialog.py" line="301"/>
-      <source>Remove Selected</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>SongMediaItem</name>
-    <message>
-      <location filename="openlp/plugins/songs/lib/mediaitem.py" line="140"/>
-      <source>Search:</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>MainWindow</name>
-    <message>
-      <location filename="openlp/core/ui/mainwindow.py" line="634"/>
-      <source>Save Changes to Service?</source>
-      <translation type="unfinished"></translation>
-    </message>
-    <message>
-      <location filename="openlp/core/ui/mainwindow.py" line="635"/>
-      <source>Your service has changed, do you want to save those changes?</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>ServiceManager</name>
-    <message>
-      <location filename="openlp/core/ui/servicemanager.py" line="207"/>
-      <source>&amp;Delete From Service</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_EditSongDialog</name>
-    <message>
-      <location filename="openlp/plugins/songs/forms/editsongdialog.py" line="431"/>
-      <source>&amp;Add to Song</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_MainWindow</name>
-    <message>
-      <location filename="openlp/core/ui/mainwindow.py" line="410"/>
-      <source>&amp;About</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>ImportWizardForm</name>
-    <message>
-      <location filename="openlp/plugins/bibles/forms/importwizardform.py" line="150"/>
-      <source>You need to specify a version name for your Bible.</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>BiblesTab</name>
-    <message>
-      <location filename="openlp/plugins/bibles/lib/biblestab.py" line="153"/>
-      <source>Only show new chapter numbers</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_AlertEditDialog</name>
-    <message>
-      <location filename="openlp/plugins/alerts/forms/alerteditdialog.py" line="66"/>
-      <source>Delete</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>EditCustomForm</name>
-    <message>
-      <location filename="openlp/plugins/custom/forms/editcustomform.py" line="145"/>
-      <source>Error</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>ThemesTab</name>
-    <message>
-      <location filename="openlp/core/ui/themestab.py" line="117"/>
-      <source>Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme.</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>AlertEditForm</name>
-    <message>
-      <location filename="openlp/plugins/alerts/forms/alerteditform.py" line="127"/>
-      <source>Item selected to Add</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_AmendThemeDialog</name>
-    <message>
-      <location filename="openlp/core/ui/amendthemedialog.py" line="677"/>
-      <source>Right</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>ThemeManager</name>
-    <message>
-      <location filename="openlp/core/ui/thememanager.py" line="224"/>
-      <source>Save Theme - (%s)</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>MediaManagerItem</name>
-    <message>
-      <location filename="openlp/core/lib/mediamanageritem.py" line="250"/>
-      <source>Add the selected item(s) to the service</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>AuthorsForm</name>
-    <message>
-      <location filename="openlp/plugins/songs/forms/authorsform.py" line="93"/>
-      <source>Error</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_AmendThemeDialog</name>
-    <message>
-      <location filename="openlp/core/ui/amendthemedialog.py" line="643"/>
-      <source>Font Color:</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_OpenLPImportDialog</name>
-    <message>
-      <location filename="openlp/plugins/songs/forms/openlpimportdialog.py" line="289"/>
-      <source>Select openlp.org songfile to import:</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_SettingsDialog</name>
-    <message>
-      <location filename="openlp/core/ui/settingsdialog.py" line="62"/>
-      <source>Settings</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>BiblesTab</name>
-    <message>
-      <location filename="openlp/plugins/bibles/lib/biblestab.py" line="154"/>
-      <source>Layout Style:</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>MediaManagerItem</name>
-    <message>
-      <location filename="openlp/core/lib/mediamanageritem.py" line="226"/>
-      <source>Edit the selected</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>SlideController</name>
-    <message>
-      <location filename="openlp/core/ui/slidecontroller.py" line="165"/>
-      <source>Move to next</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_MainWindow</name>
-    <message>
-      <location filename="openlp/core/ui/mainwindow.py" line="406"/>
-      <source>&amp;Plugin List</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>BiblePlugin</name>
-    <message>
-      <location filename="openlp/plugins/bibles/bibleplugin.py" line="83"/>
-      <source>&amp;Bible</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_BibleImportWizard</name>
-    <message>
-      <location filename="openlp/plugins/bibles/forms/bibleimportwizard.py" line="325"/>
-      <source>Web Download</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_AmendThemeDialog</name>
-    <message>
-      <location filename="openlp/core/ui/amendthemedialog.py" line="611"/>
-      <source>Horizontal</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>ImportWizardForm</name>
-    <message>
-      <location filename="openlp/plugins/bibles/forms/importwizardform.py" line="184"/>
-      <source>Open OSIS file</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_AmendThemeDialog</name>
-    <message>
-      <location filename="openlp/core/ui/amendthemedialog.py" line="613"/>
-      <source>Circular</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>PresentationMediaItem</name>
-    <message>
-      <location filename="openlp/plugins/presentations/lib/mediaitem.py" line="67"/>
-      <source>Automatic</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>SongMaintenanceForm</name>
-    <message>
-      <location filename="openlp/plugins/songs/forms/songmaintenanceform.py" line="217"/>
-      <source>Couldn't save your book.</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_AmendThemeDialog</name>
-    <message>
-      <location filename="openlp/core/ui/amendthemedialog.py" line="645"/>
-      <source>pt</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>SongMaintenanceForm</name>
-    <message>
-      <location filename="openlp/plugins/songs/forms/songmaintenanceform.py" line="240"/>
-      <source>Delete Topic</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_OpenLPImportDialog</name>
-    <message>
-      <location filename="openlp/plugins/songs/forms/openlpimportdialog.py" line="294"/>
-      <source>Lyrics</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>BiblesTab</name>
-    <message>
-      <location filename="openlp/plugins/bibles/lib/biblestab.py" line="160"/>
-      <source>No brackets</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_AlertEditDialog</name>
-    <message>
-      <location filename="openlp/plugins/alerts/forms/alerteditdialog.py" line="61"/>
-      <source>Maintain Alerts</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_AmendThemeDialog</name>
-    <message>
-      <location filename="openlp/core/ui/amendthemedialog.py" line="671"/>
-      <source>px</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>ServiceManager</name>
-    <message>
-      <location filename="openlp/core/ui/servicemanager.py" line="131"/>
-      <source>Select a theme for the service</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>ThemesTab</name>
-    <message>
-      <location filename="openlp/core/ui/themestab.py" line="40"/>
-      <source>Themes</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_PluginViewDialog</name>
-    <message>
-      <location filename="openlp/core/ui/plugindialog.py" line="106"/>
-      <source>Status:</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_EditSongDialog</name>
-    <message>
-      <location filename="openlp/plugins/songs/forms/editsongdialog.py" line="446"/>
-      <source>CCLI Number:</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>ImportWizardForm</name>
-    <message>
-      <location filename="openlp/plugins/bibles/forms/importwizardform.py" line="168"/>
-      <source>This Bible already exists! Please import a different Bible or first delete the existing one.</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_MainWindow</name>
-    <message>
-      <location filename="openlp/core/ui/mainwindow.py" line="416"/>
-      <source>&amp;Translate</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>BiblesTab</name>
-    <message>
-      <location filename="openlp/plugins/bibles/lib/biblestab.py" line="48"/>
-      <source>Bibles</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_SongMaintenanceDialog</name>
-    <message>
-      <location filename="openlp/plugins/songs/forms/songmaintenancedialog.py" line="212"/>
-      <source>Authors</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>SongUsageDetailForm</name>
-    <message>
-      <location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="59"/>
-      <source>Output File Location</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>BiblesTab</name>
-    <message>
-      <location filename="openlp/plugins/bibles/lib/biblestab.py" line="162"/>
-      <source>{ and }</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>GeneralTab</name>
-    <message>
-      <location filename="openlp/core/ui/generaltab.py" line="161"/>
-      <source>Prompt to save Service before starting New</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>ImportWizardForm</name>
-    <message>
-      <location filename="openlp/plugins/bibles/forms/importwizardform.py" line="313"/>
-      <source>Starting import...</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>BiblesTab</name>
-    <message>
-      <location filename="openlp/plugins/bibles/lib/biblestab.py" line="165"/>
-      <source>Note:
-Changes don't affect verses already in the service</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_EditVerseDialog</name>
-    <message>
-      <location filename="openlp/plugins/songs/forms/editversedialog.py" line="126"/>
-      <source>Intro</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>ServiceManager</name>
-    <message>
-      <location filename="openlp/core/ui/servicemanager.py" line="165"/>
-      <source>Move up order</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>PresentationTab</name>
-    <message>
-      <location filename="openlp/plugins/presentations/lib/presentationtab.py" line="96"/>
-      <source>available</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>ThemeManager</name>
-    <message>
-      <location filename="openlp/core/ui/thememanager.py" line="275"/>
-      <source>default</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>SongMaintenanceForm</name>
-    <message>
-      <location filename="openlp/plugins/songs/forms/songmaintenanceform.py" line="227"/>
-      <source>Delete Author</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_AmendThemeDialog</name>
-    <message>
-      <location filename="openlp/core/ui/amendthemedialog.py" line="651"/>
-      <source>Display Location</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_PluginViewDialog</name>
-    <message>
-      <location filename="openlp/core/ui/plugindialog.py" line="103"/>
-      <source>Version:</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_AlertEditDialog</name>
-    <message>
-      <location filename="openlp/plugins/alerts/forms/alerteditdialog.py" line="64"/>
-      <source>Add</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>GeneralTab</name>
-    <message>
-      <location filename="openlp/core/ui/generaltab.py" line="40"/>
-      <source>General</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_AmendThemeDialog</name>
-    <message>
-      <location filename="openlp/core/ui/amendthemedialog.py" line="654"/>
-      <source>Y Position:</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>ServiceManager</name>
-    <message>
-      <location filename="openlp/core/ui/servicemanager.py" line="168"/>
-      <source>Move down order</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>BiblesTab</name>
-    <message>
-      <location filename="openlp/plugins/bibles/lib/biblestab.py" line="157"/>
-      <source>verse per slide</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_AmendThemeDialog</name>
-    <message>
-      <location filename="openlp/core/ui/amendthemedialog.py" line="673"/>
-      <source>Show Shadow:</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>AlertsTab</name>
-    <message>
-      <location filename="openlp/plugins/alerts/forms/alertstab.py" line="236"/>
-      <source>Preview</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>alertsPlugin</name>
-    <message>
-      <location filename="openlp/plugins/alerts/alertsplugin.py" line="98"/>
-      <source>&lt;b&gt;Alerts Plugin&lt;/b&gt;&lt;br&gt;This plugin controls the displaying of alerts on the presentations screen</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>GeneralTab</name>
-    <message>
-      <location filename="openlp/core/ui/generaltab.py" line="159"/>
-      <source>Show the splash screen</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_MainWindow</name>
-    <message>
-      <location filename="openlp/core/ui/mainwindow.py" line="359"/>
-      <source>New Service</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>SlideController</name>
-    <message>
-      <location filename="openlp/core/ui/slidecontroller.py" line="159"/>
-      <source>Move to first</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_MainWindow</name>
-    <message>
-      <location filename="openlp/core/ui/mainwindow.py" line="414"/>
-      <source>&amp;Online Help</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>SlideController</name>
-    <message>
-      <location filename="openlp/core/ui/slidecontroller.py" line="174"/>
-      <source>Blank Screen</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_MainWindow</name>
-    <message>
-      <location filename="openlp/core/ui/mainwindow.py" line="367"/>
-      <source>Save Service</source>
-      <translation type="unfinished"></translation>
-    </message>
-    <message>
-      <location filename="openlp/core/ui/mainwindow.py" line="371"/>
-      <source>Save &amp;As...</source>
-      <translation type="unfinished"></translation>
-    </message>
-    <message>
-      <location filename="openlp/core/ui/mainwindow.py" line="388"/>
-      <source>Toggle the visibility of the Media Manager</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>BibleMediaItem</name>
-    <message>
-      <location filename="openlp/plugins/bibles/lib/mediaitem.py" line="353"/>
-      <source>No Book Found</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_EditSongDialog</name>
-    <message>
-      <location filename="openlp/plugins/songs/forms/editsongdialog.py" line="423"/>
-      <source>Add</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>alertsPlugin</name>
-    <message>
-      <location filename="openlp/plugins/alerts/alertsplugin.py" line="67"/>
-      <source>&amp;Alert</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>BibleMediaItem</name>
-    <message>
-      <location filename="openlp/plugins/bibles/lib/mediaitem.py" line="226"/>
-      <source>Advanced</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>ImageMediaItem</name>
-    <message>
-      <location filename="openlp/plugins/images/lib/mediaitem.py" line="146"/>
-      <source>Image(s)</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_MainWindow</name>
-    <message>
-      <location filename="openlp/core/ui/mainwindow.py" line="405"/>
-      <source>F11</source>
-      <translation type="unfinished"></translation>
-    </message>
-    <message>
-      <location filename="openlp/core/ui/mainwindow.py" line="394"/>
-      <source>F10</source>
-      <translation type="unfinished"></translation>
-    </message>
-    <message>
-      <location filename="openlp/core/ui/mainwindow.py" line="375"/>
-      <source>F12</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>CustomPlugin</name>
-    <message>
-      <location filename="openlp/plugins/custom/customplugin.py" line="70"/>
-      <source>&lt;b&gt;Custom Plugin&lt;/b&gt;&lt;br&gt;This plugin allows slides to be displayed on the screen in the same way songs are. This plugin provides greater freedom over the songs plugin.&lt;br&gt;</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_MainWindow</name>
-    <message>
-      <location filename="openlp/core/ui/mainwindow.py" line="408"/>
-      <source>Alt+F7</source>
-      <translation type="unfinished"></translation>
-    </message>
-    <message>
-      <location filename="openlp/core/ui/mainwindow.py" line="424"/>
-      <source>Add an application to the list of tools</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>MediaPlugin</name>
-    <message>
-      <location filename="openlp/plugins/media/mediaplugin.py" line="78"/>
-      <source>&lt;b&gt;Media Plugin&lt;/b&gt;&lt;br&gt;This plugin allows the playing of audio and video media</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>ServiceManager</name>
-    <message>
-      <location filename="openlp/core/ui/servicemanager.py" line="167"/>
-      <source>Move &amp;down</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>BiblesTab</name>
-    <message>
-      <location filename="openlp/plugins/bibles/lib/biblestab.py" line="156"/>
-      <source>Bible Theme:</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>SongsPlugin</name>
-    <message>
-      <location filename="openlp/plugins/songs/songsplugin.py" line="117"/>
-      <source>Export songs in openlp.org 1.0 format</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_MainWindow</name>
-    <message>
-      <location filename="openlp/core/ui/mainwindow.py" line="357"/>
-      <source>Theme Manager</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>AlertsTab</name>
-    <message>
-      <location filename="openlp/plugins/alerts/forms/alertstab.py" line="40"/>
-      <source>Alerts</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_customEditDialog</name>
-    <message>
-      <location filename="openlp/plugins/custom/forms/editcustomdialog.py" line="150"/>
-      <source>Move slide down 1</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_AmendThemeDialog</name>
-    <message>
-      <location filename="openlp/core/ui/amendthemedialog.py" line="642"/>
-      <source>Font:</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>ServiceManager</name>
-    <message>
-      <location filename="openlp/core/ui/servicemanager.py" line="121"/>
-      <source>Load an existing service</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_MainWindow</name>
-    <message>
-      <location filename="openlp/core/ui/mainwindow.py" line="393"/>
-      <source>Toggle the visibility of the Theme Manager</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>PresentationTab</name>
-    <message>
-      <location filename="openlp/plugins/presentations/lib/presentationtab.py" line="40"/>
-      <source>Presentations</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>SplashScreen</name>
-    <message>
-      <location filename="openlp/core/ui/splashscreen.py" line="33"/>
-      <source>Starting</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>ImageTab</name>
-    <message>
-      <location filename="openlp/plugins/images/lib/imagetab.py" line="67"/>
-      <source>Slide Loop Delay:</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>SlideController</name>
-    <message>
-      <location filename="openlp/core/ui/slidecontroller.py" line="466"/>
-      <source>Verse</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>AlertsTab</name>
-    <message>
-      <location filename="openlp/plugins/alerts/forms/alertstab.py" line="231"/>
-      <source>Alert timeout:</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_MainWindow</name>
-    <message>
-      <location filename="openlp/core/ui/mainwindow.py" line="425"/>
-      <source>&amp;Preview Pane</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>MediaManagerItem</name>
-    <message>
-      <location filename="openlp/core/lib/mediamanageritem.py" line="220"/>
-      <source>Add a new</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>ThemeManager</name>
-    <message>
-      <location filename="openlp/core/ui/thememanager.py" line="246"/>
-      <source>Select Theme Import File</source>
-      <translation type="unfinished"></translation>
-    </message>
-    <message>
-      <location filename="openlp/core/ui/thememanager.py" line="504"/>
-      <source>New Theme</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>MediaMediaItem</name>
-    <message>
-      <location filename="openlp/plugins/media/lib/mediaitem.py" line="84"/>
-      <source>Media</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_AmendThemeDialog</name>
-    <message>
-      <location filename="openlp/core/ui/amendthemedialog.py" line="688"/>
-      <source>Preview</source>
-      <translation type="unfinished"></translation>
-    </message>
-    <message>
-      <location filename="openlp/core/ui/amendthemedialog.py" line="665"/>
-      <source>Outline Size:</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_OpenSongExportDialog</name>
-    <message>
-      <location filename="openlp/plugins/songs/forms/opensongexportdialog.py" line="302"/>
-      <source>Progress:</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>AmendThemeForm</name>
-    <message>
-      <location filename="openlp/core/ui/amendthemeform.py" line="640"/>
-      <source>Second Color:</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_EditSongDialog</name>
-    <message>
-      <location filename="openlp/plugins/songs/forms/editsongdialog.py" line="450"/>
-      <source>Theme, Copyright Info &amp;&amp; Comments</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_AboutDialog</name>
-    <message>
-      <location filename="openlp/core/ui/aboutdialog.py" line="155"/>
-      <source>Credits</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>BibleMediaItem</name>
-    <message>
-      <location filename="openlp/plugins/bibles/lib/mediaitem.py" line="293"/>
-      <source>To:</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_EditSongDialog</name>
-    <message>
-      <location filename="openlp/plugins/songs/forms/editsongdialog.py" line="438"/>
-      <source>Song Book</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_OpenLPExportDialog</name>
-    <message>
-      <location filename="openlp/plugins/songs/forms/openlpexportdialog.py" line="299"/>
-      <source>Author</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_AmendThemeDialog</name>
-    <message>
-      <location filename="openlp/core/ui/amendthemedialog.py" line="622"/>
-      <source>Wrap Indentation</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>ThemeManager</name>
-    <message>
-      <location filename="openlp/core/ui/thememanager.py" line="67"/>
-      <source>Import a theme</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>ImageMediaItem</name>
-    <message>
-      <location filename="openlp/plugins/images/lib/mediaitem.py" line="59"/>
-      <source>Image</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>BibleMediaItem</name>
-    <message>
-      <location filename="openlp/plugins/bibles/lib/mediaitem.py" line="300"/>
-      <source>Clear</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_MainWindow</name>
-    <message>
-      <location filename="openlp/core/ui/mainwindow.py" line="372"/>
-      <source>Save Service As</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_AlertDialog</name>
-    <message>
-      <location filename="openlp/plugins/alerts/forms/alertdialog.py" line="71"/>
-      <source>Cancel</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_OpenLPImportDialog</name>
-    <message>
-      <location filename="openlp/plugins/songs/forms/openlpimportdialog.py" line="304"/>
-      <source>Import</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_EditVerseDialog</name>
-    <message>
-      <location filename="openlp/plugins/songs/forms/editversedialog.py" line="124"/>
-      <source>Chorus</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_EditSongDialog</name>
-    <message>
-      <location filename="openlp/plugins/songs/forms/editsongdialog.py" line="425"/>
-      <source>Edit All</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>AuthorsForm</name>
-    <message>
-      <location filename="openlp/plugins/songs/forms/authorsform.py" line="87"/>
-      <source>You need to type in the last name of the author.</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>SongsTab</name>
-    <message>
-      <location filename="openlp/plugins/songs/lib/songstab.py" line="64"/>
-      <source>Songs Mode</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_AmendThemeDialog</name>
-    <message>
-      <location filename="openlp/core/ui/amendthemedialog.py" line="676"/>
-      <source>Left</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>RemotesPlugin</name>
-    <message>
-      <location filename="openlp/plugins/remotes/remoteplugin.py" line="81"/>
-      <source>&lt;b&gt;Remote Plugin&lt;/b&gt;&lt;br&gt;This plugin provides the ability to send messages to a running version of openlp on a different computer.&lt;br&gt;The Primary use for this would be to send alerts from a creche</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>ImageTab</name>
-    <message>
-      <location filename="openlp/plugins/images/lib/imagetab.py" line="39"/>
-      <source>Images</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>BibleMediaItem</name>
-    <message>
-      <location filename="openlp/plugins/bibles/lib/mediaitem.py" line="291"/>
-      <source>Verse:</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_OpenLPExportDialog</name>
-    <message>
-      <location filename="openlp/plugins/songs/forms/openlpexportdialog.py" line="288"/>
-      <source>openlp.org Song Exporter</source>
-      <translation type="unfinished"></translation>
-    </message>
-    <message>
-      <location filename="openlp/plugins/songs/forms/openlpexportdialog.py" line="297"/>
-      <source>Song Export List</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>ThemeManager</name>
-    <message>
-      <location filename="openlp/core/ui/thememanager.py" line="96"/>
-      <source>Export theme</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_SongMaintenanceDialog</name>
-    <message>
-      <location filename="openlp/plugins/songs/forms/songmaintenancedialog.py" line="223"/>
-      <source>Delete</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_AmendThemeDialog</name>
-    <message>
-      <location filename="openlp/core/ui/amendthemedialog.py" line="599"/>
-      <source>Theme Name:</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_AboutDialog</name>
-    <message>
-      <location filename="openlp/core/ui/aboutdialog.py" line="116"/>
-      <source>About OpenLP</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_MainWindow</name>
-    <message>
-      <location filename="openlp/core/ui/mainwindow.py" line="399"/>
-      <source>Toggle the visibility of the Service Manager</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>PresentationMediaItem</name>
-    <message>
-      <location filename="openlp/plugins/presentations/lib/mediaitem.py" line="127"/>
-      <source>A presentation with that filename already exists.</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>ImageMediaItem</name>
-    <message>
-      <location filename="openlp/plugins/images/lib/mediaitem.py" line="104"/>
-      <source>Allow the background of live slide to be overridden</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>SongUsageDeleteForm</name>
-    <message>
-      <location filename="openlp/plugins/songusage/forms/songusagedeleteform.py" line="45"/>
-      <source>Are you sure you want to delete selected Song Usage data?</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>AlertsTab</name>
-    <message>
-      <location filename="openlp/plugins/alerts/forms/alertstab.py" line="237"/>
-      <source>openlp.org</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>ImportWizardForm</name>
-    <message>
-      <location filename="openlp/plugins/bibles/forms/importwizardform.py" line="121"/>
-      <source>Invalid Books File</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_OpenLPImportDialog</name>
-    <message>
-      <location filename="openlp/plugins/songs/forms/openlpimportdialog.py" line="298"/>
-      <source>Song Title</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>MediaManagerItem</name>
-    <message>
-      <location filename="openlp/core/lib/mediamanageritem.py" line="283"/>
-      <source>&amp;Show Live</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>AlertsTab</name>
-    <message>
-      <location filename="openlp/plugins/alerts/forms/alertstab.py" line="234"/>
-      <source>Keep History:</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_AmendThemeDialog</name>
-    <message>
-      <location filename="openlp/core/ui/amendthemedialog.py" line="609"/>
-      <source>Image:</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>ImportWizardForm</name>
-    <message>
-      <location filename="openlp/plugins/bibles/forms/importwizardform.py" line="192"/>
-      <source>Open Verses CSV file</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_customEditDialog</name>
-    <message>
-      <location filename="openlp/plugins/custom/forms/editcustomdialog.py" line="166"/>
-      <source>Set Theme for Slides</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_MainWindow</name>
-    <message>
-      <location filename="openlp/core/ui/mainwindow.py" line="412"/>
-      <source>More information about OpenLP</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>AlertsTab</name>
-    <message>
-      <location filename="openlp/plugins/alerts/forms/alertstab.py" line="228"/>
-      <source>Background Color:</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>SongMaintenanceForm</name>
-    <message>
-      <location filename="openlp/plugins/songs/forms/songmaintenanceform.py" line="244"/>
-      <source>No topic selected!</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_MainWindow</name>
-    <message>
-      <location filename="openlp/core/ui/mainwindow.py" line="385"/>
-      <source>&amp;Media Manager</source>
-      <translation type="unfinished"></translation>
-    </message>
-    <message>
-      <location filename="openlp/core/ui/mainwindow.py" line="350"/>
-      <source>&amp;Tools</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>AmendThemeForm</name>
-    <message>
-      <location filename="openlp/core/ui/amendthemeform.py" line="624"/>
-      <source>Background Color:</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_EditSongDialog</name>
-    <message>
-      <location filename="openlp/plugins/songs/forms/editsongdialog.py" line="436"/>
-      <source>A&amp;dd to Song</source>
-      <translation type="unfinished"></translation>
-    </message>
-    <message>
-      <location filename="openlp/plugins/songs/forms/editsongdialog.py" line="419"/>
-      <source>Title:</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>GeneralTab</name>
-    <message>
-      <location filename="openlp/core/ui/generaltab.py" line="197"/>
-      <source>Screen</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>SongMaintenanceForm</name>
-    <message>
-      <location filename="openlp/plugins/songs/forms/songmaintenanceform.py" line="242"/>
-      <source>This topic can't be deleted, it is currently assigned to at least one song.</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>AlertsTab</name>
-    <message>
-      <location filename="openlp/plugins/alerts/forms/alertstab.py" line="232"/>
-      <source>s</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_AlertEditDialog</name>
-    <message>
-      <location filename="openlp/plugins/alerts/forms/alerteditdialog.py" line="63"/>
-      <source>Clear</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_BibleImportWizard</name>
-    <message>
-      <location filename="openlp/plugins/bibles/forms/bibleimportwizard.py" line="351"/>
-      <source>Please wait while your Bible is imported.</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>MediaManagerItem</name>
-    <message>
-      <location filename="openlp/core/lib/mediamanageritem.py" line="380"/>
-      <source>No items selected...</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_OpenLPImportDialog</name>
-    <message>
-      <location filename="openlp/plugins/songs/forms/openlpimportdialog.py" line="300"/>
-      <source>Select All</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_BibleImportWizard</name>
-    <message>
-      <location filename="openlp/plugins/bibles/forms/bibleimportwizard.py" line="320"/>
-      <source>Select the import format, and where to import from.</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_OpenLPImportDialog</name>
-    <message>
-      <location filename="openlp/plugins/songs/forms/openlpimportdialog.py" line="295"/>
-      <source>Title</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_OpenSongExportDialog</name>
-    <message>
-      <location filename="openlp/plugins/songs/forms/opensongexportdialog.py" line="289"/>
-      <source>Select OpenSong song folder:</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_MainWindow</name>
-    <message>
-      <location filename="openlp/core/ui/mainwindow.py" line="386"/>
-      <source>Toggle Media Manager</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>SongUsagePlugin</name>
-    <message>
-      <location filename="openlp/plugins/songusage/songusageplugin.py" line="61"/>
-      <source>&amp;Song Usage</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>GeneralTab</name>
-    <message>
-      <location filename="openlp/core/ui/generaltab.py" line="154"/>
-      <source>Monitors</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>EditCustomForm</name>
-    <message>
-      <location filename="openlp/plugins/custom/forms/editcustomform.py" line="256"/>
-      <source>You need to enter a slide</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>ThemeManager</name>
-    <message>
-      <location filename="openlp/core/ui/thememanager.py" line="219"/>
-      <source>You have not selected a theme.</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_EditVerseDialog</name>
-    <message>
-      <location filename="openlp/plugins/songs/forms/editversedialog.py" line="113"/>
-      <source>Verse Type</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>ImportWizardForm</name>
-    <message>
-      <location filename="openlp/plugins/bibles/forms/importwizardform.py" line="113"/>
-      <source>You need to specify a file to import your Bible from.</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_EditSongDialog</name>
-    <message>
-      <location filename="openlp/plugins/songs/forms/editsongdialog.py" line="447"/>
-      <source>Comments</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>AlertsTab</name>
-    <message>
-      <location filename="openlp/plugins/alerts/forms/alertstab.py" line="239"/>
-      <source>Bottom</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_MainWindow</name>
-    <message>
-      <location filename="openlp/core/ui/mainwindow.py" line="360"/>
-      <source>Create a new Service</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>AlertsTab</name>
-    <message>
-      <location filename="openlp/plugins/alerts/forms/alertstab.py" line="238"/>
-      <source>Top</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>ServiceManager</name>
-    <message>
-      <location filename="openlp/core/ui/servicemanager.py" line="211"/>
-      <source>&amp;Preview Verse</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_PluginViewDialog</name>
-    <message>
-      <location filename="openlp/core/ui/plugindialog.py" line="104"/>
-      <source>TextLabel</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>AlertsTab</name>
-    <message>
-      <location filename="openlp/plugins/alerts/forms/alertstab.py" line="229"/>
-      <source>Font Size:</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_PluginViewDialog</name>
-    <message>
-      <location filename="openlp/core/ui/plugindialog.py" line="105"/>
-      <source>About:</source>
-      <translation type="unfinished"></translation>
-    </message>
-    <message>
-      <location filename="openlp/core/ui/plugindialog.py" line="108"/>
-      <source>Inactive</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_OpenSongExportDialog</name>
-    <message>
-      <location filename="openlp/plugins/songs/forms/opensongexportdialog.py" line="303"/>
-      <source>Ready to export</source>
-      <translation type="unfinished"></translation>
-    </message>
-    <message>
-      <location filename="openlp/plugins/songs/forms/opensongexportdialog.py" line="304"/>
-      <source>Export</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_PluginViewDialog</name>
-    <message>
-      <location filename="openlp/core/ui/plugindialog.py" line="101"/>
-      <source>Plugin List</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_AmendThemeDialog</name>
-    <message>
-      <location filename="openlp/core/ui/amendthemedialog.py" line="684"/>
-      <source>Transition Active:</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_BibleImportWizard</name>
-    <message>
-      <location filename="openlp/plugins/bibles/forms/bibleimportwizard.py" line="342"/>
-      <source>Proxy Server (Optional)</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_EditSongDialog</name>
-    <message>
-      <location filename="openlp/plugins/songs/forms/editsongdialog.py" line="434"/>
-      <source>&amp;Manage Authors, Topics, Books</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_OpenLPExportDialog</name>
-    <message>
-      <location filename="openlp/plugins/songs/forms/openlpexportdialog.py" line="303"/>
-      <source>Ready to export</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>ImageMediaItem</name>
-    <message>
-      <location filename="openlp/plugins/images/lib/mediaitem.py" line="64"/>
-      <source>Images (*.jpg *.jpeg *.gif *.png *.bmp);; All files (*)</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>EditCustomForm</name>
-    <message>
-      <location filename="openlp/plugins/custom/forms/editcustomform.py" line="84"/>
-      <source>Save &amp;&amp; Preview</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_OpenLPExportDialog</name>
-    <message>
-      <location filename="openlp/plugins/songs/forms/openlpexportdialog.py" line="300"/>
-      <source>Select All</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_SongUsageDetailDialog</name>
-    <message>
-      <location filename="openlp/plugins/songusage/forms/songusagedetaildialog.py" line="90"/>
-      <source>to</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_AmendThemeDialog</name>
-    <message>
-      <location filename="openlp/core/ui/amendthemedialog.py" line="644"/>
-      <source>Size:</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>MainWindow</name>
-    <message>
-      <location filename="openlp/core/ui/mainwindow.py" line="590"/>
-      <source>OpenLP Main Display Blanked</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_OpenLPImportDialog</name>
-    <message>
-      <location filename="openlp/plugins/songs/forms/openlpimportdialog.py" line="301"/>
-      <source>Remove Selected</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>ServiceManager</name>
-    <message>
-      <location filename="openlp/core/ui/servicemanager.py" line="164"/>
-      <source>Move &amp;up</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>ImportWizardForm</name>
-    <message>
-      <location filename="openlp/plugins/bibles/forms/importwizardform.py" line="139"/>
-      <source>You need to specify an OpenSong Bible file to import.</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>PresentationMediaItem</name>
-    <message>
-      <location filename="openlp/plugins/presentations/lib/mediaitem.py" line="66"/>
-      <source>Select Presentation(s)</source>
-      <translation type="unfinished"></translation>
-    </message>
-    <message>
-      <location filename="openlp/plugins/presentations/lib/mediaitem.py" line="127"/>
-      <source>File exists</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_OpenSongImportDialog</name>
-    <message>
-      <location filename="openlp/plugins/songs/forms/opensongimportdialog.py" line="106"/>
-      <source>Ready to import</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>SlideController</name>
-    <message>
-      <location filename="openlp/core/ui/slidecontroller.py" line="193"/>
-      <source>Stop continuous loop</source>
-      <translation type="unfinished"></translation>
-    </message>
-    <message>
-      <location filename="openlp/core/ui/slidecontroller.py" line="199"/>
-      <source>s</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>ImagePlugin</name>
-    <message>
-      <location filename="openlp/plugins/images/imageplugin.py" line="59"/>
-      <source>&lt;b&gt;Image Plugin&lt;/b&gt;&lt;br&gt;Allows images of all types to be displayed.  If a number of images are selected together and presented on the live controller it is possible to turn them into a timed loop.&lt;br&lt;br&gt;From the plugin if the &lt;i&gt;Override background&lt;/i&gt; is chosen and an image is selected any songs which are rendered will use the selected image from the background instead of the one provied by the theme.&lt;br&gt;</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>SongMediaItem</name>
-    <message>
-      <location filename="openlp/plugins/songs/lib/mediaitem.py" line="71"/>
-      <source>Song Maintenance</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_customEditDialog</name>
-    <message>
-      <location filename="openlp/plugins/custom/forms/editcustomdialog.py" line="155"/>
-      <source>Edit</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_AmendThemeDialog</name>
-    <message>
-      <location filename="openlp/core/ui/amendthemedialog.py" line="610"/>
-      <source>Gradient :</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>ImportWizardForm</name>
-    <message>
-      <location filename="openlp/plugins/bibles/forms/importwizardform.py" line="129"/>
-      <source>Invalid Verse File</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>EditSongForm</name>
-    <message>
-      <location filename="openlp/plugins/songs/forms/editsongform.py" line="480"/>
-      <source>Error</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_customEditDialog</name>
-    <message>
-      <location filename="openlp/plugins/custom/forms/editcustomdialog.py" line="153"/>
-      <source>Add New</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_AuthorsDialog</name>
-    <message>
-      <location filename="openlp/plugins/songs/forms/authorsdialog.py" line="77"/>
-      <source>Display name:</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>SongMaintenanceForm</name>
-    <message>
-      <location filename="openlp/plugins/songs/forms/songmaintenanceform.py" line="241"/>
-      <source>Are you sure you want to delete the selected topic?</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_AmendThemeDialog</name>
-    <message>
-      <location filename="openlp/core/ui/amendthemedialog.py" line="649"/>
-      <source>Bold/Italics</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_SongMaintenanceDialog</name>
-    <message>
-      <location filename="openlp/plugins/songs/forms/songmaintenancedialog.py" line="211"/>
-      <source>Song Maintenance</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_BibleImportWizard</name>
-    <message>
-      <location filename="openlp/plugins/bibles/forms/bibleimportwizard.py" line="313"/>
-      <source>Welcome to the Bible Import Wizard</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>SongsTab</name>
-    <message>
-      <location filename="openlp/plugins/songs/lib/songstab.py" line="39"/>
-      <source>Songs</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_BibleImportWizard</name>
-    <message>
-      <location filename="openlp/plugins/bibles/forms/bibleimportwizard.py" line="339"/>
-      <source>Password:</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_MainWindow</name>
-    <message>
-      <location filename="openlp/core/ui/mainwindow.py" line="390"/>
-      <source>&amp;Theme Manager</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>MediaManagerItem</name>
-    <message>
-      <location filename="openlp/core/lib/mediamanageritem.py" line="240"/>
-      <source>Preview the selected item</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_BibleImportWizard</name>
-    <message>
-      <location filename="openlp/plugins/bibles/forms/bibleimportwizard.py" line="346"/>
-      <source>Version Name:</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_AboutDialog</name>
-    <message>
-      <location filename="openlp/core/ui/aboutdialog.py" line="134"/>
-      <source>About</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>MediaMediaItem</name>
-    <message>
-      <location filename="openlp/plugins/media/lib/mediaitem.py" line="63"/>
-      <source>Select Media</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_AmendThemeDialog</name>
-    <message>
-      <location filename="openlp/core/ui/amendthemedialog.py" line="675"/>
-      <source>Horizontal Align:</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>ServiceManager</name>
-    <message>
-      <location filename="openlp/core/ui/servicemanager.py" line="203"/>
-      <source>&amp;Edit Item</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_AmendThemeDialog</name>
-    <message>
-      <location filename="openlp/core/ui/amendthemedialog.py" line="603"/>
-      <source>Background Type:</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_MainWindow</name>
-    <message>
-      <location filename="openlp/core/ui/mainwindow.py" line="366"/>
-      <source>&amp;Save</source>
-      <translation type="unfinished"></translation>
-    </message>
-    <message>
-      <location filename="openlp/core/ui/mainwindow.py" line="338"/>
-      <source>OpenLP 2.0</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>ThemeManager</name>
-    <message>
-      <location filename="openlp/core/ui/thememanager.py" line="445"/>
-      <source>A theme with this name already exists, would you like to overwrite it?</source>
-      <translation type="unfinished"></translation>
-    </message>
-    <message>
-      <location filename="openlp/core/ui/thememanager.py" line="70"/>
-      <source>Export a theme</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>AmendThemeForm</name>
-    <message>
-      <location filename="openlp/core/ui/amendthemeform.py" line="208"/>
-      <source>Open file</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_TopicsDialog</name>
-    <message>
-      <location filename="openlp/plugins/songs/forms/topicsdialog.py" line="62"/>
-      <source>Topic Maintenance</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_customEditDialog</name>
-    <message>
-      <location filename="openlp/plugins/custom/forms/editcustomdialog.py" line="164"/>
-      <source>Clear edit area</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_AmendThemeDialog</name>
-    <message>
-      <location filename="openlp/core/ui/amendthemedialog.py" line="668"/>
-      <source>Show Outline:</source>
-      <translation type="unfinished"></translation>
-    </message>
-    <message>
-      <location filename="openlp/core/ui/amendthemedialog.py" line="605"/>
-      <source>Gradient</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>SongBookForm</name>
-    <message>
-      <location filename="openlp/plugins/songs/forms/songbookform.py" line="52"/>
-      <source>You need to type in a book name!</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>ImportWizardForm</name>
-    <message>
-      <location filename="openlp/plugins/bibles/forms/importwizardform.py" line="196"/>
-      <source>Open OpenSong Bible</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_MainWindow</name>
-    <message>
-      <location filename="openlp/core/ui/mainwindow.py" line="383"/>
-      <source>Look &amp;&amp; &amp;Feel</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_BibleImportWizard</name>
-    <message>
-      <location filename="openlp/plugins/bibles/forms/bibleimportwizard.py" line="352"/>
-      <source>Ready.</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_SongMaintenanceDialog</name>
-    <message>
-      <location filename="openlp/plugins/songs/forms/songmaintenancedialog.py" line="214"/>
-      <source>Books/Hymnals</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_AboutDialog</name>
-    <message>
-      <location filename="openlp/core/ui/aboutdialog.py" line="549"/>
-      <source>Contribute</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>ServiceManager</name>
-    <message>
-      <location filename="openlp/core/ui/servicemanager.py" line="170"/>
-      <source>Move to &amp;bottom</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_BibleImportWizard</name>
-    <message>
-      <location filename="openlp/plugins/bibles/forms/bibleimportwizard.py" line="327"/>
-      <source>Books Location:</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>Ui_OpenSongExportDialog</name>
-    <message>
-      <location filename="openlp/plugins/songs/forms/opensongexportdialog.py" line="290"/>
-      <source>Full Song List</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-  <context>
-    <name>GeneralTab</name>
-    <message>
-      <location filename="openlp/core/ui/generaltab.py" line="166"/>
-      <source>SongSelect Password:</source>
-      <translation type="unfinished"></translation>
-    </message>
-  </context>
-
-</TS>

=== added file 'resources/i18n/openlp_en_GB.qm'
Binary files resources/i18n/openlp_en_GB.qm	1970-01-01 00:00:00 +0000 and resources/i18n/openlp_en_GB.qm	2010-04-30 20:10:34 +0000 differ
=== added file 'resources/i18n/openlp_en_ZA.qm'
Binary files resources/i18n/openlp_en_ZA.qm	1970-01-01 00:00:00 +0000 and resources/i18n/openlp_en_ZA.qm	2010-04-30 20:10:34 +0000 differ
=== added file 'resources/i18n/openlp_es.qm'
Binary files resources/i18n/openlp_es.qm	1970-01-01 00:00:00 +0000 and resources/i18n/openlp_es.qm	2010-04-30 20:10:34 +0000 differ
=== added file 'resources/i18n/openlp_hu.qm'
Binary files resources/i18n/openlp_hu.qm	1970-01-01 00:00:00 +0000 and resources/i18n/openlp_hu.qm	2010-04-30 20:10:34 +0000 differ
=== added file 'resources/i18n/openlp_ko.qm'
Binary files resources/i18n/openlp_ko.qm	1970-01-01 00:00:00 +0000 and resources/i18n/openlp_ko.qm	2010-04-30 20:10:34 +0000 differ
=== added file 'resources/i18n/openlp_nb.qm'
Binary files resources/i18n/openlp_nb.qm	1970-01-01 00:00:00 +0000 and resources/i18n/openlp_nb.qm	2010-04-30 20:10:34 +0000 differ
=== added file 'resources/i18n/openlp_pt_BR.qm'
Binary files resources/i18n/openlp_pt_BR.qm	1970-01-01 00:00:00 +0000 and resources/i18n/openlp_pt_BR.qm	2010-04-30 20:10:34 +0000 differ
=== added file 'resources/i18n/openlp_sv.qm'
Binary files resources/i18n/openlp_sv.qm	1970-01-01 00:00:00 +0000 and resources/i18n/openlp_sv.qm	2010-04-30 20:10:34 +0000 differ
=== added file 'scripts/translation_utils.py'
--- scripts/translation_utils.py	1970-01-01 00:00:00 +0000
+++ scripts/translation_utils.py	2010-04-30 20:10:34 +0000
@@ -0,0 +1,172 @@
+#!/usr/bin/env python
+# -*- coding: utf-8 -*-
+# vim: autoindent shiftwidth=4 expandtab textwidth=80 tabstop=4 softtabstop=4
+
+###############################################################################
+# OpenLP - Open Source Lyrics Projection                                      #
+# --------------------------------------------------------------------------- #
+# Copyright (c) 2008-2010 Raoul Snyman                                        #
+# Portions copyright (c) 2008-2010 Tim Bentley, Jonathan Corwin, Michael      #
+# Gorven, Scott Guerrieri, Christian Richter, Maikel Stuivenberg, Martin      #
+# Thompson, Jon Tibble, Carsten Tinggaard                                     #
+# --------------------------------------------------------------------------- #
+# This program is free software; you can redistribute it and/or modify it     #
+# under the terms of the GNU General Public License as published by the Free  #
+# Software Foundation; version 2 of the License.                              #
+#                                                                             #
+# This program is distributed in the hope that it will be useful, but WITHOUT #
+# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or       #
+# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for    #
+# more details.                                                               #
+#                                                                             #
+# You should have received a copy of the GNU General Public License along     #
+# with this program; if not, write to the Free Software Foundation, Inc., 59  #
+# Temple Place, Suite 330, Boston, MA 02111-1307 USA                          #
+###############################################################################
+# Short description
+# Steps for creating languages:
+# 1. make shure that the openlp_en.ts file exist
+# 2. go to scripts folder and start:
+#     python translation_utils.py -a
+###############################################################################
+
+import os
+from optparse import OptionParser
+import urllib
+from PyQt4 import QtCore
+
+ignore_pathes = ["./scripts", "./openlp/core/test"]
+ignore_files = ["setup.py"]
+translation_path = "http://pootle.projecthq.biz/export/openlp/";
+translations = [  "af"
+                , "en_ZA"
+                , "en_GB"
+                , "de"
+                , "hu"
+                , "ko"
+                , "nb"
+                , "pt_BR"
+                , "es"
+                , "sv"]
+                
+                
+                
+def write_file(filename, stringlist):
+    content = u''
+    for line in stringlist:
+        content = u'%s%s\n' % (content, line)
+    file = open(filename, u'w')
+    file.write(content.encode('utf8'))
+    file.close()
+
+def main():
+    # Set up command line options.
+    usage = u'Usage: %prog [options]'
+    parser = OptionParser(usage=usage)
+    parser.add_option("-d", "--download-ts", action="store_true", dest="download",
+                      help="Load languages from Pootle Server")
+    parser.add_option("-p", "--prepare", action="store_true", dest="prepare",
+                      help="preparation (generate pro file)")
+    parser.add_option("-u", "--update", action="store_true", dest="update",
+                      help="update translation files")
+    parser.add_option("-g", "--generate", action="store_true", dest="generate",
+                      help="generate qm files")
+    parser.add_option("-a", "--all", action="store_true", dest="all",
+                      help="proceed all options")
+
+    (options, args) = parser.parse_args()
+    qt_args = []
+    if options.download:
+        downloadTranslations()
+    elif options.prepare:
+        preparation()
+    elif options.update:
+        update()
+    elif options.generate:
+        generate()
+    elif options.all:
+        all()
+    else:
+        pass
+
+def downloadTranslations():
+    print "download()"
+    for language in translations:
+        filename = os.path.join('..','resources', 'i18n', "openlp_%s.ts" % language)
+        print filename
+        page = urllib.urlopen("%s%s.ts" % (translation_path, language))
+        content = page.read().decode("utf8")
+        page.close()
+        file = open(filename, u'w')
+        file.write(content.encode('utf8'))
+        file.close()
+
+def preparation():
+    stringlist = []
+    start_dir = os.path.join(u'..')
+    for root, dirs, files in os.walk(start_dir):
+        for file in files:
+            path = "%s" % root
+            path = path.replace("\\","/")
+            path = path.replace("..",".")
+            
+            if file.startswith(u'hook-') or file.startswith(u'test_'):
+               continue
+
+            cond = False
+            for search in ignore_pathes:
+                if path.startswith(search):
+                    cond = True
+            if cond == True:
+                continue
+            cond = False
+            for search in ignore_files:
+                if search == file:
+                    cond = True
+            if cond == True:
+                continue
+            
+            if file.endswith(u'.py'):
+                line = "%s/%s" % (path, file)
+                print u'Parsing "%s"' % line
+                stringlist.append("SOURCES      += %s" % line)
+            elif file.endswith(u'.pyw'):
+                line = "%s/%s" % (path, file)
+                print u'Parsing "%s"' % line
+                stringlist.append("SOURCES      += %s" % line)
+            elif file.endswith(u'.ts'):
+                line = "%s/%s" % (path, file)
+                print u'Parsing "%s"' % line
+                stringlist.append("TRANSLATIONS += %s" % line)
+            
+    print u'Generating PRO file...',
+    stringlist.sort()
+    write_file(os.path.join(start_dir, u'openlp.pro'), stringlist)
+    print u'done.'
+
+    
+def update():
+    print "update()"
+    updateProcess = QtCore.QProcess()
+    updateProcess.start("pylupdate4 -noobsolete ../openlp.pro")
+    updateProcess.waitForFinished(60000)
+
+def generate():
+    print "generate()"
+    generateProcess = QtCore.QProcess()
+    generateProcess.start("lrelease ../openlp.pro")
+    generateProcess.waitForFinished(60000)
+
+def all():
+    print "all()"
+    downloadTranslations()
+    preparation()
+    update()
+    generate()
+
+    
+if __name__ == u'__main__':
+    if os.path.split(os.path.abspath(u'.'))[1] != u'scripts':
+        print u'You need to run this script from the scripts directory.'
+    else:
+        main()


Follow ups