This commit is contained in:
Andreas Preikschat 2011-03-25 19:11:30 +01:00
commit 09f22e9144
22 changed files with 8097 additions and 3015 deletions

View File

@ -76,12 +76,14 @@ class OpenLP(QtGui.QApplication):
The core application class. This class inherits from Qt's QApplication
class in order to provide the core of the application.
"""
log.info(u'OpenLP Application Loaded')
app_version = None
def _get_version(self):
def get_version(self):
"""
Load and store current Application Version
"""
if self.app_version:
return self.app_version
if u'--dev-version' in sys.argv or u'-d' in sys.argv:
# If we're running the dev version, let's use bzr to get the version
try:
@ -141,26 +143,25 @@ class OpenLP(QtGui.QApplication):
if fversion:
fversion.close()
bits = full_version.split(u'-')
app_version = {
self.app_version = {
u'full': full_version,
u'version': bits[0],
u'build': bits[1] if len(bits) > 1 else None
}
if app_version[u'build']:
if self.app_version[u'build']:
log.info(
u'Openlp version %s build %s',
app_version[u'version'],
app_version[u'build']
self.app_version[u'version'],
self.app_version[u'build']
)
else:
log.info(u'Openlp version %s' % app_version[u'version'])
return app_version
log.info(u'Openlp version %s' % self.app_version[u'version'])
return self.app_version
def run(self):
"""
Run the OpenLP application.
"""
app_version = self._get_version()
# provide a listener for widgets to reqest a screen update.
QtCore.QObject.connect(Receiver.get_receiver(),
QtCore.SIGNAL(u'openlp_process_events'), self.processEvents)
@ -168,10 +169,6 @@ class OpenLP(QtGui.QApplication):
QtCore.SIGNAL(u'cursor_busy'), self.setBusyCursor)
QtCore.QObject.connect(Receiver.get_receiver(),
QtCore.SIGNAL(u'cursor_normal'), self.setNormalCursor)
self.setOrganizationName(u'OpenLP')
self.setOrganizationDomain(u'openlp.org')
self.setApplicationName(u'OpenLP')
self.setApplicationVersion(app_version[u'version'])
# Decide how many screens we have and their size
screens = ScreenList(self.desktop())
# First time checks in settings
@ -191,7 +188,8 @@ class OpenLP(QtGui.QApplication):
# make sure Qt really display the splash screen
self.processEvents()
# start the main app window
self.mainWindow = MainWindow(screens, app_version, self.clipboard())
self.mainWindow = MainWindow(screens, self.app_version,
self.clipboard())
self.mainWindow.show()
if show_splash:
# now kill the splashscreen
@ -203,7 +201,7 @@ class OpenLP(QtGui.QApplication):
update_check = QtCore.QSettings().value(
u'general/update check', QtCore.QVariant(True)).toBool()
if update_check:
VersionThread(self.mainWindow, app_version).start()
VersionThread(self.mainWindow, self.app_version).start()
return self.exec_()
def hookException(self, exctype, value, traceback):
@ -278,11 +276,12 @@ def main():
qInitResources()
# Now create and actually run the application.
app = OpenLP(qt_args)
# Define the settings environment
settings = QtCore.QSettings(u'OpenLP', u'OpenLP')
app.setOrganizationName(u'OpenLP')
app.setOrganizationDomain(u'openlp.org')
app.setApplicationName(u'OpenLP')
app.setApplicationVersion(app.get_version()[u'version'])
# First time checks in settings
# Use explicit reference as not inside a QT environment yet
if not settings.value(u'general/has run wizard',
if not QtCore.QSettings().value(u'general/has run wizard',
QtCore.QVariant(False)).toBool():
if not FirstTimeLanguageForm().exec_():
# if cancel then stop processing

View File

@ -256,7 +256,6 @@ class Ui_MainWindow(object):
u':/system/system_about.png')
mainWindow.actionList.add_action(self.HelpAboutItem, u'Help')
self.HelpOnlineHelpItem = base_action(mainWindow, u'HelpOnlineHelpItem')
self.HelpOnlineHelpItem.setEnabled(False)
mainWindow.actionList.add_action(self.HelpOnlineHelpItem, u'Help')
self.helpWebSiteItem = base_action(mainWindow, u'helpWebSiteItem')
mainWindow.actionList.add_action(self.helpWebSiteItem, u'Help')
@ -304,7 +303,6 @@ class Ui_MainWindow(object):
self.ExportLanguageItem.setVisible(False)
self.SettingsShortcutsItem.setVisible(False)
self.HelpDocumentationItem.setVisible(False)
self.HelpOnlineHelpItem.setVisible(False)
def retranslateUi(self, mainWindow):
"""
@ -430,6 +428,9 @@ class Ui_MainWindow(object):
translate('OpenLP.MainWindow', 'Ctrl+F1'))
self.HelpOnlineHelpItem.setText(
translate('OpenLP.MainWindow', '&Online Help'))
# Uncomment after 1.9.5 beta string freeze
#self.HelpOnlineHelpItem.setShortcut(
# translate('OpenLP.MainWindow', 'F1'))
self.helpWebSiteItem.setText(
translate('OpenLP.MainWindow', '&Web Site'))
for item in self.LanguageGroup.actions():
@ -530,6 +531,8 @@ class MainWindow(QtGui.QMainWindow, Ui_MainWindow):
self.ViewThemeManagerItem.setChecked)
QtCore.QObject.connect(self.helpWebSiteItem,
QtCore.SIGNAL(u'triggered()'), self.onHelpWebSiteClicked)
QtCore.QObject.connect(self.HelpOnlineHelpItem,
QtCore.SIGNAL(u'triggered()'), self.onHelpOnLineHelpClicked)
QtCore.QObject.connect(self.HelpAboutItem,
QtCore.SIGNAL(u'triggered()'), self.onHelpAboutItemClicked)
QtCore.QObject.connect(self.ToolsOpenDataFolder,
@ -720,6 +723,13 @@ class MainWindow(QtGui.QMainWindow, Ui_MainWindow):
import webbrowser
webbrowser.open_new(u'http://openlp.org/')
def onHelpOnLineHelpClicked(self):
"""
Load the online OpenLP manual
"""
import webbrowser
webbrowser.open_new(u'http://manual.openlp.org/')
def onHelpAboutItemClicked(self):
"""
Show the About form

View File

@ -123,9 +123,7 @@ class LanguageManager(object):
language = unicode(qm_list[action_name])
if LanguageManager.auto_language:
language = u'[%s]' % language
# This needs to be here for the setValue to work
settings = QtCore.QSettings(u'OpenLP', u'OpenLP')
settings.setValue(
QtCore.QSettings().setValue(
u'general/language', QtCore.QVariant(language))
log.info(u'Language file: \'%s\' written to conf file' % language)
if message:

View File

@ -1552,102 +1552,102 @@ Version: %s
<context>
<name>OpenLP.FirstTimeWizard</name>
<message>
<location filename="openlp/core/ui/firsttimeform.py" line="61"/>
<location filename="openlp/core/ui/firsttimeform.py" line="62"/>
<source>Downloading %s...</source>
<translation>Aflaai %s...</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimeform.py" line="231"/>
<location filename="openlp/core/ui/firsttimeform.py" line="243"/>
<source>Download complete. Click the finish button to start OpenLP.</source>
<translation>Aflaai voltooi. Klik op die klaar knoppie om OpenLP te begin.</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimeform.py" line="240"/>
<location filename="openlp/core/ui/firsttimeform.py" line="252"/>
<source>Enabling selected plugins...</source>
<translation>Skakel geselekteerde miniprogramme aan...</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="193"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="191"/>
<source>First Time Wizard</source>
<translation>Eerste-keer Gids</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="195"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="193"/>
<source>Welcome to the First Time Wizard</source>
<translation>Welkom by die Eerste-keer Gids</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="199"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="197"/>
<source>This wizard will help you to configure OpenLP for initial use. Click the next button below to start the process of selection your initial options. </source>
<translation>Hierdie gids sal bystand verleen in die proses om OpenLP op te stel vir eerste gebruik. Klik die volgende knoppie hieronder om die seleksie proses te begin.</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="203"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="201"/>
<source>Activate required Plugins</source>
<translation>Aktiveer nodige Miniprogramme</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="205"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="203"/>
<source>Select the Plugins you wish to use. </source>
<translation>Kies die Miniprogramme wat gebruik moet word.</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="207"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="205"/>
<source>Songs</source>
<translation>Liedere</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="208"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="206"/>
<source>Custom Text</source>
<translation>Verpersoonlike Teks</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="210"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="208"/>
<source>Bible</source>
<translation>Bybel</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="211"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="209"/>
<source>Images</source>
<translation type="unfinished">Beelde</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="213"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="211"/>
<source>Presentations</source>
<translation>Aanbiedinge</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="215"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="213"/>
<source>Media (Audio and Video)</source>
<translation>Media (Klank en Video)</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="217"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="215"/>
<source>Allow remote access</source>
<translation>Laat afgeleë toegang toe</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="219"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="217"/>
<source>Monitor Song Usage</source>
<translation>Monitor Lied-Gebruik</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="221"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="219"/>
<source>Allow Alerts</source>
<translation>Laat Waarskuwings Toe</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="223"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="221"/>
<source>No Internet Connection</source>
<translation>Geen Internet Verbinding</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="225"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="223"/>
<source>Unable to detect an Internet connection.</source>
<translation>Nie in staat om &apos;n Internet verbinding op te spoor nie.</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="228"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="226"/>
<source>No Internet connection was found. The First Time Wizard needs an Internet connection in order to be able to download sample songs, Bibles and themes.
To re-run the First Time Wizard and import this sample data at a later stage, press the cancel button now, check your Internet connection, and restart OpenLP.
@ -1659,67 +1659,67 @@ Om die Eerste-gebruik Gids later te gebruik om hierde data in te trek, druk die
Om die Eerste-keer gids heeltemal te kanselleer, druk die vollledig-knoppie hieronder.</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="236"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="234"/>
<source>Sample Songs</source>
<translation>Voorbeeld Liedere</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="238"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="236"/>
<source>Select and download public domain songs.</source>
<translation>Kies en laai liedere vanaf die publieke domein.</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="240"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="238"/>
<source>Sample Bibles</source>
<translation>Voorbeeld Bybels</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="242"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="240"/>
<source>Select and download free Bibles.</source>
<translation>Kies en laai gratis Bybels af.</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="244"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="242"/>
<source>Sample Themes</source>
<translation>Voorbeeld Temas</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="246"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="244"/>
<source>Select and download sample themes.</source>
<translation>Kies en laai voorbeeld temas af.</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="248"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="246"/>
<source>Default Settings</source>
<translation>Verstek Instellings</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="250"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="248"/>
<source>Set up default settings to be used by OpenLP.</source>
<translation>Stel verstek instellings wat deur OpenLP gebruik moet word.</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="252"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="250"/>
<source>Setting Up And Importing</source>
<translation>Opstel en Invoer</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="254"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="252"/>
<source>Please wait while OpenLP is set up and your data is imported.</source>
<translation>Wag asseblief terwyl OpenLP opgestel word en die data ingevoer word.</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="256"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="254"/>
<source>Default output display:</source>
<translation>Verstek uitgaande vertoning:</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="258"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="256"/>
<source>Select default theme:</source>
<translation>Kies verstek tema:</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="260"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="258"/>
<source>Starting configuration process...</source>
<translation>Konfigurasie proses begin...</translation>
</message>
@ -1845,12 +1845,12 @@ Om die Eerste-keer gids heeltemal te kanselleer, druk die vollledig-knoppie hier
<context>
<name>OpenLP.LanguageManager</name>
<message>
<location filename="openlp/core/utils/languagemanager.py" line="132"/>
<location filename="openlp/core/utils/languagemanager.py" line="130"/>
<source>Language</source>
<translation>Taal</translation>
</message>
<message>
<location filename="openlp/core/utils/languagemanager.py" line="132"/>
<location filename="openlp/core/utils/languagemanager.py" line="130"/>
<source>Please restart OpenLP to use your new language setting.</source>
<translation>Herlaai asseblief OpenLP om die nuwe taal instelling te gebruik.</translation>
</message>
@ -1866,347 +1866,347 @@ Om die Eerste-keer gids heeltemal te kanselleer, druk die vollledig-knoppie hier
<context>
<name>OpenLP.MainWindow</name>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="315"/>
<location filename="openlp/core/ui/mainwindow.py" line="313"/>
<source>&amp;File</source>
<translation>&amp;Lêer</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="316"/>
<location filename="openlp/core/ui/mainwindow.py" line="314"/>
<source>&amp;Import</source>
<translation>&amp;Invoer</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="317"/>
<location filename="openlp/core/ui/mainwindow.py" line="315"/>
<source>&amp;Export</source>
<translation>Uitvo&amp;er</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="318"/>
<location filename="openlp/core/ui/mainwindow.py" line="316"/>
<source>&amp;View</source>
<translation>&amp;Bekyk</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="319"/>
<location filename="openlp/core/ui/mainwindow.py" line="317"/>
<source>M&amp;ode</source>
<translation>M&amp;odus</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="320"/>
<location filename="openlp/core/ui/mainwindow.py" line="318"/>
<source>&amp;Tools</source>
<translation>&amp;Gereedskap</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="321"/>
<location filename="openlp/core/ui/mainwindow.py" line="319"/>
<source>&amp;Settings</source>
<translation>Ver&amp;stellings</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="370"/>
<location filename="openlp/core/ui/mainwindow.py" line="368"/>
<source>&amp;Language</source>
<translation>Taa&amp;l</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="324"/>
<location filename="openlp/core/ui/mainwindow.py" line="322"/>
<source>&amp;Help</source>
<translation>&amp;Hulp</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="325"/>
<location filename="openlp/core/ui/mainwindow.py" line="323"/>
<source>Media Manager</source>
<translation>Media Bestuurder</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="327"/>
<location filename="openlp/core/ui/mainwindow.py" line="325"/>
<source>Service Manager</source>
<translation>Diens Bestuurder</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="329"/>
<location filename="openlp/core/ui/mainwindow.py" line="327"/>
<source>Theme Manager</source>
<translation>Tema Bestuurder</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="331"/>
<location filename="openlp/core/ui/mainwindow.py" line="329"/>
<source>&amp;New</source>
<translation>&amp;Nuwe</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="334"/>
<location filename="openlp/core/ui/mainwindow.py" line="332"/>
<source>Ctrl+N</source>
<translation>Ctrl+N</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="335"/>
<location filename="openlp/core/ui/mainwindow.py" line="333"/>
<source>&amp;Open</source>
<translation>Maak &amp;Oop</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="337"/>
<location filename="openlp/core/ui/mainwindow.py" line="335"/>
<source>Open an existing service.</source>
<translation>Maak &apos;n bestaande diens oop.</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="339"/>
<location filename="openlp/core/ui/mainwindow.py" line="337"/>
<source>Ctrl+O</source>
<translation>Ctrl+O</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="340"/>
<location filename="openlp/core/ui/mainwindow.py" line="338"/>
<source>&amp;Save</source>
<translation>&amp;Stoor</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="342"/>
<location filename="openlp/core/ui/mainwindow.py" line="340"/>
<source>Save the current service to disk.</source>
<translation>Stoor die huidige diens na skyf.</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="344"/>
<location filename="openlp/core/ui/mainwindow.py" line="342"/>
<source>Ctrl+S</source>
<translation>Ctrl+S</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="345"/>
<location filename="openlp/core/ui/mainwindow.py" line="343"/>
<source>Save &amp;As...</source>
<translation>Stoor &amp;As...</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="347"/>
<location filename="openlp/core/ui/mainwindow.py" line="345"/>
<source>Save Service As</source>
<translation>Stoor Diens As</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="349"/>
<location filename="openlp/core/ui/mainwindow.py" line="347"/>
<source>Save the current service under a new name.</source>
<translation>Stoor die huidige diens onder &apos;n nuwe naam.</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="351"/>
<location filename="openlp/core/ui/mainwindow.py" line="349"/>
<source>Ctrl+Shift+S</source>
<translation>Ctrl+Shift+S</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="358"/>
<location filename="openlp/core/ui/mainwindow.py" line="356"/>
<source>E&amp;xit</source>
<translation>&amp;Uitgang</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="360"/>
<location filename="openlp/core/ui/mainwindow.py" line="358"/>
<source>Quit OpenLP</source>
<translation>Sluit OpenLP Af</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="362"/>
<location filename="openlp/core/ui/mainwindow.py" line="360"/>
<source>Alt+F4</source>
<translation>Alt+F4</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="368"/>
<location filename="openlp/core/ui/mainwindow.py" line="366"/>
<source>&amp;Theme</source>
<translation>&amp;Tema</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="376"/>
<location filename="openlp/core/ui/mainwindow.py" line="374"/>
<source>&amp;Configure OpenLP...</source>
<translation>&amp;Konfigureer OpenLP...</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="378"/>
<location filename="openlp/core/ui/mainwindow.py" line="376"/>
<source>&amp;Media Manager</source>
<translation>&amp;Media Bestuurder</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="380"/>
<location filename="openlp/core/ui/mainwindow.py" line="378"/>
<source>Toggle Media Manager</source>
<translation>Wissel Media Bestuurder</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="382"/>
<location filename="openlp/core/ui/mainwindow.py" line="380"/>
<source>Toggle the visibility of the media manager.</source>
<translation>Wissel sigbaarheid van die media bestuurder.</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="384"/>
<location filename="openlp/core/ui/mainwindow.py" line="382"/>
<source>F8</source>
<translation>F8</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="386"/>
<location filename="openlp/core/ui/mainwindow.py" line="384"/>
<source>&amp;Theme Manager</source>
<translation>&amp;Tema Bestuurder</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="388"/>
<location filename="openlp/core/ui/mainwindow.py" line="386"/>
<source>Toggle Theme Manager</source>
<translation>Wissel Tema Bestuurder</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="390"/>
<location filename="openlp/core/ui/mainwindow.py" line="388"/>
<source>Toggle the visibility of the theme manager.</source>
<translation>Wissel sigbaarheid van die tema bestuurder.</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="392"/>
<location filename="openlp/core/ui/mainwindow.py" line="390"/>
<source>F10</source>
<translation>F10</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="394"/>
<location filename="openlp/core/ui/mainwindow.py" line="392"/>
<source>&amp;Service Manager</source>
<translation>&amp;Diens Bestuurder</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="396"/>
<location filename="openlp/core/ui/mainwindow.py" line="394"/>
<source>Toggle Service Manager</source>
<translation>Wissel Diens Bestuurder</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="398"/>
<location filename="openlp/core/ui/mainwindow.py" line="396"/>
<source>Toggle the visibility of the service manager.</source>
<translation>Wissel sigbaarheid van die diens bestuurder.</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="400"/>
<location filename="openlp/core/ui/mainwindow.py" line="398"/>
<source>F9</source>
<translation>F9</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="402"/>
<location filename="openlp/core/ui/mainwindow.py" line="400"/>
<source>&amp;Preview Panel</source>
<translation>Voorskou &amp;Paneel</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="404"/>
<location filename="openlp/core/ui/mainwindow.py" line="402"/>
<source>Toggle Preview Panel</source>
<translation>Wissel Voorskou Paneel</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="406"/>
<location filename="openlp/core/ui/mainwindow.py" line="404"/>
<source>Toggle the visibility of the preview panel.</source>
<translation>Wissel sigbaarheid van die voorskou paneel.</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="408"/>
<location filename="openlp/core/ui/mainwindow.py" line="406"/>
<source>F11</source>
<translation>F11</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="410"/>
<location filename="openlp/core/ui/mainwindow.py" line="408"/>
<source>&amp;Live Panel</source>
<translation>Regstreekse Panee&amp;l</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="412"/>
<location filename="openlp/core/ui/mainwindow.py" line="410"/>
<source>Toggle Live Panel</source>
<translation>Wissel Regstreekse Paneel</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="414"/>
<location filename="openlp/core/ui/mainwindow.py" line="412"/>
<source>Toggle the visibility of the live panel.</source>
<translation>Wissel sigbaarheid van die regstreekse paneel.</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="416"/>
<location filename="openlp/core/ui/mainwindow.py" line="414"/>
<source>F12</source>
<translation>F12</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="418"/>
<location filename="openlp/core/ui/mainwindow.py" line="416"/>
<source>&amp;Plugin List</source>
<translation>Mini-&amp;program Lys</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="420"/>
<location filename="openlp/core/ui/mainwindow.py" line="418"/>
<source>List the Plugins</source>
<translation>Lys die Mini-programme</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="422"/>
<location filename="openlp/core/ui/mainwindow.py" line="420"/>
<source>Alt+F7</source>
<translation>Alt+F7</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="424"/>
<location filename="openlp/core/ui/mainwindow.py" line="422"/>
<source>&amp;User Guide</source>
<translation>Gebr&amp;uikers Gids</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="426"/>
<location filename="openlp/core/ui/mainwindow.py" line="424"/>
<source>&amp;About</source>
<translation>&amp;Aangaande</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="427"/>
<location filename="openlp/core/ui/mainwindow.py" line="425"/>
<source>More information about OpenLP</source>
<translation>Meer inligting aangaande OpenLP</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="429"/>
<location filename="openlp/core/ui/mainwindow.py" line="427"/>
<source>Ctrl+F1</source>
<translation>Ctrl+F1</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="431"/>
<location filename="openlp/core/ui/mainwindow.py" line="429"/>
<source>&amp;Online Help</source>
<translation>&amp;Aanlyn Hulp</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="433"/>
<location filename="openlp/core/ui/mainwindow.py" line="434"/>
<source>&amp;Web Site</source>
<translation>&amp;Web Tuiste</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="441"/>
<location filename="openlp/core/ui/mainwindow.py" line="442"/>
<source>Use the system language, if available.</source>
<translation>Gebruik die sisteem se taal as dit beskikbaar is.</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="437"/>
<location filename="openlp/core/ui/mainwindow.py" line="438"/>
<source>Set the interface language to %s</source>
<translation>Verstel die koppelvlak taal na %s</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="443"/>
<location filename="openlp/core/ui/mainwindow.py" line="444"/>
<source>Add &amp;Tool...</source>
<translation>Voeg Gereedskaps&amp;tuk by...</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="445"/>
<location filename="openlp/core/ui/mainwindow.py" line="446"/>
<source>Add an application to the list of tools.</source>
<translation>Voeg &apos;n applikasie by die lys van gereedskapstukke.</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="451"/>
<location filename="openlp/core/ui/mainwindow.py" line="452"/>
<source>&amp;Default</source>
<translation>&amp;Verstek</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="453"/>
<location filename="openlp/core/ui/mainwindow.py" line="454"/>
<source>Set the view mode back to the default.</source>
<translation>Verstel skou modus terug na verstek modus.</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="455"/>
<location filename="openlp/core/ui/mainwindow.py" line="456"/>
<source>&amp;Setup</source>
<translation>Op&amp;stel</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="456"/>
<location filename="openlp/core/ui/mainwindow.py" line="457"/>
<source>Set the view mode to Setup.</source>
<translation>Verstel die skou modus na Opstel modus.</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="458"/>
<location filename="openlp/core/ui/mainwindow.py" line="459"/>
<source>&amp;Live</source>
<translation>&amp;Regstreeks</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="459"/>
<location filename="openlp/core/ui/mainwindow.py" line="460"/>
<source>Set the view mode to Live.</source>
<translation>Verstel die skou modus na Regstreeks.</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="645"/>
<location filename="openlp/core/ui/mainwindow.py" line="648"/>
<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>
@ -2215,22 +2215,22 @@ You can download the latest version from http://openlp.org/.</source>
Die nuutste weergawe kan afgelaai word vanaf http://openlp.org/.</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="649"/>
<location filename="openlp/core/ui/mainwindow.py" line="652"/>
<source>OpenLP Version Updated</source>
<translation>OpenLP Weergawe is Opdateer</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="701"/>
<location filename="openlp/core/ui/mainwindow.py" line="704"/>
<source>OpenLP Main Display Blanked</source>
<translation>OpenLP Hoof Vertoning Blanko</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="701"/>
<location filename="openlp/core/ui/mainwindow.py" line="704"/>
<source>The Main Display has been blanked out</source>
<translation>Die Hoof Skerm is afgeskakel</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="910"/>
<location filename="openlp/core/ui/mainwindow.py" line="920"/>
<source>Default Theme: %s</source>
<translation>Verstek Tema: %s</translation>
</message>
@ -2241,47 +2241,47 @@ Die nuutste weergawe kan afgelaai word vanaf http://openlp.org/.</translation>
<translation>Afrikaans</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="372"/>
<location filename="openlp/core/ui/mainwindow.py" line="370"/>
<source>Configure &amp;Shortcuts...</source>
<translation>Konfigureer Kortpaaie</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="832"/>
<location filename="openlp/core/ui/mainwindow.py" line="842"/>
<source>Close OpenLP</source>
<translation>Mook OpenLP toe</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="832"/>
<location filename="openlp/core/ui/mainwindow.py" line="842"/>
<source>Are you sure you want to close OpenLP?</source>
<translation>Maak OpenLP sekerlik toe?</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="354"/>
<location filename="openlp/core/ui/mainwindow.py" line="352"/>
<source>Print the current Service Order.</source>
<translation>Druk die huidige Diens Bestelling.</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="356"/>
<location filename="openlp/core/ui/mainwindow.py" line="354"/>
<source>Ctrl+P</source>
<translation>Ctrl+P</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="447"/>
<location filename="openlp/core/ui/mainwindow.py" line="448"/>
<source>Open &amp;Data Folder...</source>
<translation>Maak &amp;Data Lêer oop...</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="449"/>
<location filename="openlp/core/ui/mainwindow.py" line="450"/>
<source>Open the folder where songs, bibles and other data resides.</source>
<translation>Maak die lêer waar liedere, bybels en ander data is, oop.</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="374"/>
<location filename="openlp/core/ui/mainwindow.py" line="372"/>
<source>&amp;Configure Display Tags</source>
<translation>Konfigureer Vertoon Haakies</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="439"/>
<location filename="openlp/core/ui/mainwindow.py" line="440"/>
<source>&amp;Autodetect</source>
<translation>Spoor outom&amp;aties op</translation>
</message>

4993
resources/i18n/cs.ts Normal file

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -1440,107 +1440,107 @@ Version: %s
<context>
<name>OpenLP.FirstTimeWizard</name>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="207"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="205"/>
<source>Songs</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="193"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="191"/>
<source>First Time Wizard</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="195"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="193"/>
<source>Welcome to the First Time Wizard</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="203"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="201"/>
<source>Activate required Plugins</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="205"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="203"/>
<source>Select the Plugins you wish to use. </source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="208"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="206"/>
<source>Custom Text</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="210"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="208"/>
<source>Bible</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="211"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="209"/>
<source>Images</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="213"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="211"/>
<source>Presentations</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="215"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="213"/>
<source>Media (Audio and Video)</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="217"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="215"/>
<source>Allow remote access</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="219"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="217"/>
<source>Monitor Song Usage</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="221"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="219"/>
<source>Allow Alerts</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="248"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="246"/>
<source>Default Settings</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimeform.py" line="61"/>
<location filename="openlp/core/ui/firsttimeform.py" line="62"/>
<source>Downloading %s...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimeform.py" line="231"/>
<location filename="openlp/core/ui/firsttimeform.py" line="243"/>
<source>Download complete. Click the finish button to start OpenLP.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimeform.py" line="240"/>
<location filename="openlp/core/ui/firsttimeform.py" line="252"/>
<source>Enabling selected plugins...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="199"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="197"/>
<source>This wizard will help you to configure OpenLP for initial use. Click the next button below to start the process of selection your initial options. </source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="223"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="221"/>
<source>No Internet Connection</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="225"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="223"/>
<source>Unable to detect an Internet connection.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="228"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="226"/>
<source>No Internet connection was found. The First Time Wizard needs an Internet connection in order to be able to download sample songs, Bibles and themes.
To re-run the First Time Wizard and import this sample data at a later stage, press the cancel button now, check your Internet connection, and restart OpenLP.
@ -1549,62 +1549,62 @@ To cancel the First Time Wizard completely, press the finish button now.</source
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="236"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="234"/>
<source>Sample Songs</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="238"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="236"/>
<source>Select and download public domain songs.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="240"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="238"/>
<source>Sample Bibles</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="242"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="240"/>
<source>Select and download free Bibles.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="244"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="242"/>
<source>Sample Themes</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="246"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="244"/>
<source>Select and download sample themes.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="250"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="248"/>
<source>Set up default settings to be used by OpenLP.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="252"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="250"/>
<source>Setting Up And Importing</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="254"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="252"/>
<source>Please wait while OpenLP is set up and your data is imported.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="256"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="254"/>
<source>Default output display:</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="258"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="256"/>
<source>Select default theme:</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="260"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="258"/>
<source>Starting configuration process...</source>
<translation type="unfinished"></translation>
</message>
@ -1730,12 +1730,12 @@ To cancel the First Time Wizard completely, press the finish button now.</source
<context>
<name>OpenLP.LanguageManager</name>
<message>
<location filename="openlp/core/utils/languagemanager.py" line="132"/>
<location filename="openlp/core/utils/languagemanager.py" line="130"/>
<source>Language</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/utils/languagemanager.py" line="132"/>
<location filename="openlp/core/utils/languagemanager.py" line="130"/>
<source>Please restart OpenLP to use your new language setting.</source>
<translation type="unfinished"></translation>
</message>
@ -1751,369 +1751,369 @@ To cancel the First Time Wizard completely, press the finish button now.</source
<context>
<name>OpenLP.MainWindow</name>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="315"/>
<location filename="openlp/core/ui/mainwindow.py" line="313"/>
<source>&amp;File</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="316"/>
<location filename="openlp/core/ui/mainwindow.py" line="314"/>
<source>&amp;Import</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="317"/>
<location filename="openlp/core/ui/mainwindow.py" line="315"/>
<source>&amp;Export</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="318"/>
<location filename="openlp/core/ui/mainwindow.py" line="316"/>
<source>&amp;View</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="319"/>
<location filename="openlp/core/ui/mainwindow.py" line="317"/>
<source>M&amp;ode</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="320"/>
<location filename="openlp/core/ui/mainwindow.py" line="318"/>
<source>&amp;Tools</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="321"/>
<location filename="openlp/core/ui/mainwindow.py" line="319"/>
<source>&amp;Settings</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="370"/>
<location filename="openlp/core/ui/mainwindow.py" line="368"/>
<source>&amp;Language</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="324"/>
<location filename="openlp/core/ui/mainwindow.py" line="322"/>
<source>&amp;Help</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="325"/>
<location filename="openlp/core/ui/mainwindow.py" line="323"/>
<source>Media Manager</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="327"/>
<location filename="openlp/core/ui/mainwindow.py" line="325"/>
<source>Service Manager</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="329"/>
<location filename="openlp/core/ui/mainwindow.py" line="327"/>
<source>Theme Manager</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="331"/>
<location filename="openlp/core/ui/mainwindow.py" line="329"/>
<source>&amp;New</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="334"/>
<location filename="openlp/core/ui/mainwindow.py" line="332"/>
<source>Ctrl+N</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="335"/>
<location filename="openlp/core/ui/mainwindow.py" line="333"/>
<source>&amp;Open</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="337"/>
<location filename="openlp/core/ui/mainwindow.py" line="335"/>
<source>Open an existing service.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="339"/>
<location filename="openlp/core/ui/mainwindow.py" line="337"/>
<source>Ctrl+O</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="340"/>
<location filename="openlp/core/ui/mainwindow.py" line="338"/>
<source>&amp;Save</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="342"/>
<location filename="openlp/core/ui/mainwindow.py" line="340"/>
<source>Save the current service to disk.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="344"/>
<location filename="openlp/core/ui/mainwindow.py" line="342"/>
<source>Ctrl+S</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="345"/>
<location filename="openlp/core/ui/mainwindow.py" line="343"/>
<source>Save &amp;As...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="347"/>
<location filename="openlp/core/ui/mainwindow.py" line="345"/>
<source>Save Service As</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="349"/>
<location filename="openlp/core/ui/mainwindow.py" line="347"/>
<source>Save the current service under a new name.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="351"/>
<location filename="openlp/core/ui/mainwindow.py" line="349"/>
<source>Ctrl+Shift+S</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="358"/>
<location filename="openlp/core/ui/mainwindow.py" line="356"/>
<source>E&amp;xit</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="360"/>
<location filename="openlp/core/ui/mainwindow.py" line="358"/>
<source>Quit OpenLP</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="362"/>
<location filename="openlp/core/ui/mainwindow.py" line="360"/>
<source>Alt+F4</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="368"/>
<location filename="openlp/core/ui/mainwindow.py" line="366"/>
<source>&amp;Theme</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="376"/>
<location filename="openlp/core/ui/mainwindow.py" line="374"/>
<source>&amp;Configure OpenLP...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="378"/>
<location filename="openlp/core/ui/mainwindow.py" line="376"/>
<source>&amp;Media Manager</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="380"/>
<location filename="openlp/core/ui/mainwindow.py" line="378"/>
<source>Toggle Media Manager</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="382"/>
<location filename="openlp/core/ui/mainwindow.py" line="380"/>
<source>Toggle the visibility of the media manager.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="384"/>
<location filename="openlp/core/ui/mainwindow.py" line="382"/>
<source>F8</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="386"/>
<location filename="openlp/core/ui/mainwindow.py" line="384"/>
<source>&amp;Theme Manager</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="388"/>
<location filename="openlp/core/ui/mainwindow.py" line="386"/>
<source>Toggle Theme Manager</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="390"/>
<location filename="openlp/core/ui/mainwindow.py" line="388"/>
<source>Toggle the visibility of the theme manager.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="392"/>
<location filename="openlp/core/ui/mainwindow.py" line="390"/>
<source>F10</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="394"/>
<location filename="openlp/core/ui/mainwindow.py" line="392"/>
<source>&amp;Service Manager</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="396"/>
<location filename="openlp/core/ui/mainwindow.py" line="394"/>
<source>Toggle Service Manager</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="398"/>
<location filename="openlp/core/ui/mainwindow.py" line="396"/>
<source>Toggle the visibility of the service manager.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="400"/>
<location filename="openlp/core/ui/mainwindow.py" line="398"/>
<source>F9</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="402"/>
<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="404"/>
<location filename="openlp/core/ui/mainwindow.py" line="402"/>
<source>Toggle Preview Panel</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="406"/>
<location filename="openlp/core/ui/mainwindow.py" line="404"/>
<source>Toggle the visibility of the preview panel.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="408"/>
<location filename="openlp/core/ui/mainwindow.py" line="406"/>
<source>F11</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="410"/>
<location filename="openlp/core/ui/mainwindow.py" line="408"/>
<source>&amp;Live Panel</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="412"/>
<location filename="openlp/core/ui/mainwindow.py" line="410"/>
<source>Toggle Live Panel</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="414"/>
<location filename="openlp/core/ui/mainwindow.py" line="412"/>
<source>Toggle the visibility of the live panel.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="416"/>
<location filename="openlp/core/ui/mainwindow.py" line="414"/>
<source>F12</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="418"/>
<location filename="openlp/core/ui/mainwindow.py" line="416"/>
<source>&amp;Plugin List</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="420"/>
<location filename="openlp/core/ui/mainwindow.py" line="418"/>
<source>List the Plugins</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="422"/>
<location filename="openlp/core/ui/mainwindow.py" line="420"/>
<source>Alt+F7</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="424"/>
<location filename="openlp/core/ui/mainwindow.py" line="422"/>
<source>&amp;User Guide</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="426"/>
<location filename="openlp/core/ui/mainwindow.py" line="424"/>
<source>&amp;About</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="427"/>
<location filename="openlp/core/ui/mainwindow.py" line="425"/>
<source>More information about OpenLP</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="429"/>
<location filename="openlp/core/ui/mainwindow.py" line="427"/>
<source>Ctrl+F1</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="431"/>
<location filename="openlp/core/ui/mainwindow.py" line="429"/>
<source>&amp;Online Help</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="433"/>
<location filename="openlp/core/ui/mainwindow.py" line="434"/>
<source>&amp;Web Site</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="441"/>
<location filename="openlp/core/ui/mainwindow.py" line="442"/>
<source>Use the system language, if available.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="437"/>
<location filename="openlp/core/ui/mainwindow.py" line="438"/>
<source>Set the interface language to %s</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="443"/>
<location filename="openlp/core/ui/mainwindow.py" line="444"/>
<source>Add &amp;Tool...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="445"/>
<location filename="openlp/core/ui/mainwindow.py" line="446"/>
<source>Add an application to the list of tools.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="451"/>
<location filename="openlp/core/ui/mainwindow.py" line="452"/>
<source>&amp;Default</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="453"/>
<location filename="openlp/core/ui/mainwindow.py" line="454"/>
<source>Set the view mode back to the default.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="455"/>
<location filename="openlp/core/ui/mainwindow.py" line="456"/>
<source>&amp;Setup</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="456"/>
<location filename="openlp/core/ui/mainwindow.py" line="457"/>
<source>Set the view mode to Setup.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="458"/>
<location filename="openlp/core/ui/mainwindow.py" line="459"/>
<source>&amp;Live</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="459"/>
<location filename="openlp/core/ui/mainwindow.py" line="460"/>
<source>Set the view mode to Live.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="645"/>
<location filename="openlp/core/ui/mainwindow.py" line="648"/>
<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="649"/>
<location filename="openlp/core/ui/mainwindow.py" line="652"/>
<source>OpenLP Version Updated</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="701"/>
<location filename="openlp/core/ui/mainwindow.py" line="704"/>
<source>OpenLP Main Display Blanked</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="701"/>
<location filename="openlp/core/ui/mainwindow.py" line="704"/>
<source>The Main Display has been blanked out</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="910"/>
<location filename="openlp/core/ui/mainwindow.py" line="920"/>
<source>Default Theme: %s</source>
<translation type="unfinished"></translation>
</message>
@ -2124,47 +2124,47 @@ 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="372"/>
<location filename="openlp/core/ui/mainwindow.py" line="370"/>
<source>Configure &amp;Shortcuts...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="832"/>
<location filename="openlp/core/ui/mainwindow.py" line="842"/>
<source>Close OpenLP</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="832"/>
<location filename="openlp/core/ui/mainwindow.py" line="842"/>
<source>Are you sure you want to close OpenLP?</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="354"/>
<location filename="openlp/core/ui/mainwindow.py" line="352"/>
<source>Print the current Service Order.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="356"/>
<location filename="openlp/core/ui/mainwindow.py" line="354"/>
<source>Ctrl+P</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="374"/>
<location filename="openlp/core/ui/mainwindow.py" line="372"/>
<source>&amp;Configure Display Tags</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="447"/>
<location filename="openlp/core/ui/mainwindow.py" line="448"/>
<source>Open &amp;Data Folder...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="449"/>
<location filename="openlp/core/ui/mainwindow.py" line="450"/>
<source>Open the folder where songs, bibles and other data resides.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="439"/>
<location filename="openlp/core/ui/mainwindow.py" line="440"/>
<source>&amp;Autodetect</source>
<translation type="unfinished"></translation>
</message>

View File

@ -1551,102 +1551,102 @@ Version: %s
<context>
<name>OpenLP.FirstTimeWizard</name>
<message>
<location filename="openlp/core/ui/firsttimeform.py" line="61"/>
<location filename="openlp/core/ui/firsttimeform.py" line="62"/>
<source>Downloading %s...</source>
<translation>Downloading %s...</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimeform.py" line="231"/>
<location filename="openlp/core/ui/firsttimeform.py" line="243"/>
<source>Download complete. Click the finish button to start OpenLP.</source>
<translation>Download complete. Click the finish button to start OpenLP.</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimeform.py" line="240"/>
<location filename="openlp/core/ui/firsttimeform.py" line="252"/>
<source>Enabling selected plugins...</source>
<translation>Enabling selected plugins...</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="193"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="191"/>
<source>First Time Wizard</source>
<translation>First Time Wizard</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="195"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="193"/>
<source>Welcome to the First Time Wizard</source>
<translation>Welcome to the First Time Wizard</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="199"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="197"/>
<source>This wizard will help you to configure OpenLP for initial use. Click the next button below to start the process of selection your initial options. </source>
<translation>This wizard will help you to configure OpenLP for initial use. Click the next button below to start the process of selecting your initial options.</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="203"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="201"/>
<source>Activate required Plugins</source>
<translation>Activate required Plugins</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="205"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="203"/>
<source>Select the Plugins you wish to use. </source>
<translation>Select the Plugins you wish to use. </translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="207"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="205"/>
<source>Songs</source>
<translation>Songs</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="208"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="206"/>
<source>Custom Text</source>
<translation>Custom Text</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="210"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="208"/>
<source>Bible</source>
<translation>Bible</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="211"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="209"/>
<source>Images</source>
<translation>Images</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="213"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="211"/>
<source>Presentations</source>
<translation>Presentations</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="215"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="213"/>
<source>Media (Audio and Video)</source>
<translation>Media (Audio and Video)</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="217"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="215"/>
<source>Allow remote access</source>
<translation>Allow remote access</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="219"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="217"/>
<source>Monitor Song Usage</source>
<translation>Monitor Song Usage</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="221"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="219"/>
<source>Allow Alerts</source>
<translation>Allow Alerts</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="223"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="221"/>
<source>No Internet Connection</source>
<translation>No Internet Connection</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="225"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="223"/>
<source>Unable to detect an Internet connection.</source>
<translation>Unable to detect an Internet connection.</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="228"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="226"/>
<source>No Internet connection was found. The First Time Wizard needs an Internet connection in order to be able to download sample songs, Bibles and themes.
To re-run the First Time Wizard and import this sample data at a later stage, press the cancel button now, check your Internet connection, and restart OpenLP.
@ -1659,67 +1659,67 @@ To re-run the First Time Wizard and import this sample data at a later stage, pr
To cancel the First Time Wizard completely, press the finish button now.</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="236"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="234"/>
<source>Sample Songs</source>
<translation>Sample Songs</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="238"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="236"/>
<source>Select and download public domain songs.</source>
<translation>Select and download public domain songs.</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="240"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="238"/>
<source>Sample Bibles</source>
<translation>Sample Bibles</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="242"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="240"/>
<source>Select and download free Bibles.</source>
<translation>Select and download free Bibles.</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="244"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="242"/>
<source>Sample Themes</source>
<translation>Sample Themes</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="246"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="244"/>
<source>Select and download sample themes.</source>
<translation>Select and download sample themes.</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="248"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="246"/>
<source>Default Settings</source>
<translation>Default Settings</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="250"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="248"/>
<source>Set up default settings to be used by OpenLP.</source>
<translation>Set up default settings to be used by OpenLP.</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="252"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="250"/>
<source>Setting Up And Importing</source>
<translation>Setting Up And Importing</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="254"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="252"/>
<source>Please wait while OpenLP is set up and your data is imported.</source>
<translation>Please wait while OpenLP is set up and your data is imported.</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="256"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="254"/>
<source>Default output display:</source>
<translation>Default output display:</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="258"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="256"/>
<source>Select default theme:</source>
<translation>Select default theme:</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="260"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="258"/>
<source>Starting configuration process...</source>
<translation>Starting configuration process...</translation>
</message>
@ -1845,12 +1845,12 @@ To cancel the First Time Wizard completely, press the finish button now.</transl
<context>
<name>OpenLP.LanguageManager</name>
<message>
<location filename="openlp/core/utils/languagemanager.py" line="132"/>
<location filename="openlp/core/utils/languagemanager.py" line="130"/>
<source>Language</source>
<translation>Language</translation>
</message>
<message>
<location filename="openlp/core/utils/languagemanager.py" line="132"/>
<location filename="openlp/core/utils/languagemanager.py" line="130"/>
<source>Please restart OpenLP to use your new language setting.</source>
<translation>Please restart OpenLP to use your new language setting.</translation>
</message>
@ -1866,347 +1866,347 @@ To cancel the First Time Wizard completely, press the finish button now.</transl
<context>
<name>OpenLP.MainWindow</name>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="315"/>
<location filename="openlp/core/ui/mainwindow.py" line="313"/>
<source>&amp;File</source>
<translation>&amp;File</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="316"/>
<location filename="openlp/core/ui/mainwindow.py" line="314"/>
<source>&amp;Import</source>
<translation>&amp;Import</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="317"/>
<location filename="openlp/core/ui/mainwindow.py" line="315"/>
<source>&amp;Export</source>
<translation>&amp;Export</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="318"/>
<location filename="openlp/core/ui/mainwindow.py" line="316"/>
<source>&amp;View</source>
<translation>&amp;View</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="319"/>
<location filename="openlp/core/ui/mainwindow.py" line="317"/>
<source>M&amp;ode</source>
<translation>M&amp;ode</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="320"/>
<location filename="openlp/core/ui/mainwindow.py" line="318"/>
<source>&amp;Tools</source>
<translation>&amp;Tools</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="321"/>
<location filename="openlp/core/ui/mainwindow.py" line="319"/>
<source>&amp;Settings</source>
<translation>&amp;Settings</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="370"/>
<location filename="openlp/core/ui/mainwindow.py" line="368"/>
<source>&amp;Language</source>
<translation>&amp;Language</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="324"/>
<location filename="openlp/core/ui/mainwindow.py" line="322"/>
<source>&amp;Help</source>
<translation>&amp;Help</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="325"/>
<location filename="openlp/core/ui/mainwindow.py" line="323"/>
<source>Media Manager</source>
<translation>Media Manager</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="327"/>
<location filename="openlp/core/ui/mainwindow.py" line="325"/>
<source>Service Manager</source>
<translation>Service Manager</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="329"/>
<location filename="openlp/core/ui/mainwindow.py" line="327"/>
<source>Theme Manager</source>
<translation>Theme Manager</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="331"/>
<location filename="openlp/core/ui/mainwindow.py" line="329"/>
<source>&amp;New</source>
<translation>&amp;New</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="334"/>
<location filename="openlp/core/ui/mainwindow.py" line="332"/>
<source>Ctrl+N</source>
<translation>Ctrl+N</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="335"/>
<location filename="openlp/core/ui/mainwindow.py" line="333"/>
<source>&amp;Open</source>
<translation>&amp;Open</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="337"/>
<location filename="openlp/core/ui/mainwindow.py" line="335"/>
<source>Open an existing service.</source>
<translation>Open an existing service.</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="339"/>
<location filename="openlp/core/ui/mainwindow.py" line="337"/>
<source>Ctrl+O</source>
<translation>Ctrl+O</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="340"/>
<location filename="openlp/core/ui/mainwindow.py" line="338"/>
<source>&amp;Save</source>
<translation>&amp;Save</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="342"/>
<location filename="openlp/core/ui/mainwindow.py" line="340"/>
<source>Save the current service to disk.</source>
<translation>Save the current service to disk.</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="344"/>
<location filename="openlp/core/ui/mainwindow.py" line="342"/>
<source>Ctrl+S</source>
<translation>Ctrl+S</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="345"/>
<location filename="openlp/core/ui/mainwindow.py" line="343"/>
<source>Save &amp;As...</source>
<translation>Save &amp;As...</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="347"/>
<location filename="openlp/core/ui/mainwindow.py" line="345"/>
<source>Save Service As</source>
<translation>Save Service As</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="349"/>
<location filename="openlp/core/ui/mainwindow.py" line="347"/>
<source>Save the current service under a new name.</source>
<translation>Save the current service under a new name.</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="351"/>
<location filename="openlp/core/ui/mainwindow.py" line="349"/>
<source>Ctrl+Shift+S</source>
<translation>Ctrl+Shift+S</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="358"/>
<location filename="openlp/core/ui/mainwindow.py" line="356"/>
<source>E&amp;xit</source>
<translation>E&amp;xit</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="360"/>
<location filename="openlp/core/ui/mainwindow.py" line="358"/>
<source>Quit OpenLP</source>
<translation>Quit OpenLP</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="362"/>
<location filename="openlp/core/ui/mainwindow.py" line="360"/>
<source>Alt+F4</source>
<translation>Alt+F4</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="368"/>
<location filename="openlp/core/ui/mainwindow.py" line="366"/>
<source>&amp;Theme</source>
<translation>&amp;Theme</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="376"/>
<location filename="openlp/core/ui/mainwindow.py" line="374"/>
<source>&amp;Configure OpenLP...</source>
<translation>&amp;Configure OpenLP...</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="378"/>
<location filename="openlp/core/ui/mainwindow.py" line="376"/>
<source>&amp;Media Manager</source>
<translation>&amp;Media Manager</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="380"/>
<location filename="openlp/core/ui/mainwindow.py" line="378"/>
<source>Toggle Media Manager</source>
<translation>Toggle Media Manager</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="382"/>
<location filename="openlp/core/ui/mainwindow.py" line="380"/>
<source>Toggle the visibility of the media manager.</source>
<translation>Toggle the visibility of the media manager.</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="384"/>
<location filename="openlp/core/ui/mainwindow.py" line="382"/>
<source>F8</source>
<translation>F8</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="386"/>
<location filename="openlp/core/ui/mainwindow.py" line="384"/>
<source>&amp;Theme Manager</source>
<translation>&amp;Theme Manager</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="388"/>
<location filename="openlp/core/ui/mainwindow.py" line="386"/>
<source>Toggle Theme Manager</source>
<translation>Toggle Theme Manager</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="390"/>
<location filename="openlp/core/ui/mainwindow.py" line="388"/>
<source>Toggle the visibility of the theme manager.</source>
<translation>Toggle the visibility of the theme manager.</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="392"/>
<location filename="openlp/core/ui/mainwindow.py" line="390"/>
<source>F10</source>
<translation>F10</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="394"/>
<location filename="openlp/core/ui/mainwindow.py" line="392"/>
<source>&amp;Service Manager</source>
<translation>&amp;Service Manager</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="396"/>
<location filename="openlp/core/ui/mainwindow.py" line="394"/>
<source>Toggle Service Manager</source>
<translation>Toggle Service Manager</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="398"/>
<location filename="openlp/core/ui/mainwindow.py" line="396"/>
<source>Toggle the visibility of the service manager.</source>
<translation>Toggle the visibility of the service manager.</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="400"/>
<location filename="openlp/core/ui/mainwindow.py" line="398"/>
<source>F9</source>
<translation>F9</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="402"/>
<location filename="openlp/core/ui/mainwindow.py" line="400"/>
<source>&amp;Preview Panel</source>
<translation>&amp;Preview Panel</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="404"/>
<location filename="openlp/core/ui/mainwindow.py" line="402"/>
<source>Toggle Preview Panel</source>
<translation>Toggle Preview Panel</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="406"/>
<location filename="openlp/core/ui/mainwindow.py" line="404"/>
<source>Toggle the visibility of the preview panel.</source>
<translation>Toggle the visibility of the preview panel.</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="408"/>
<location filename="openlp/core/ui/mainwindow.py" line="406"/>
<source>F11</source>
<translation>F11</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="410"/>
<location filename="openlp/core/ui/mainwindow.py" line="408"/>
<source>&amp;Live Panel</source>
<translation>&amp;Live Panel</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="412"/>
<location filename="openlp/core/ui/mainwindow.py" line="410"/>
<source>Toggle Live Panel</source>
<translation>Toggle Live Panel</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="414"/>
<location filename="openlp/core/ui/mainwindow.py" line="412"/>
<source>Toggle the visibility of the live panel.</source>
<translation>Toggle the visibility of the live panel.</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="416"/>
<location filename="openlp/core/ui/mainwindow.py" line="414"/>
<source>F12</source>
<translation>F12</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="418"/>
<location filename="openlp/core/ui/mainwindow.py" line="416"/>
<source>&amp;Plugin List</source>
<translation>&amp;Plugin List</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="420"/>
<location filename="openlp/core/ui/mainwindow.py" line="418"/>
<source>List the Plugins</source>
<translation>List the Plugins</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="422"/>
<location filename="openlp/core/ui/mainwindow.py" line="420"/>
<source>Alt+F7</source>
<translation>Alt+F7</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="424"/>
<location filename="openlp/core/ui/mainwindow.py" line="422"/>
<source>&amp;User Guide</source>
<translation>&amp;User Guide</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="426"/>
<location filename="openlp/core/ui/mainwindow.py" line="424"/>
<source>&amp;About</source>
<translation>&amp;About</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="427"/>
<location filename="openlp/core/ui/mainwindow.py" line="425"/>
<source>More information about OpenLP</source>
<translation>More information about OpenLP</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="429"/>
<location filename="openlp/core/ui/mainwindow.py" line="427"/>
<source>Ctrl+F1</source>
<translation>Ctrl+F1</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="431"/>
<location filename="openlp/core/ui/mainwindow.py" line="429"/>
<source>&amp;Online Help</source>
<translation>&amp;Online Help</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="433"/>
<location filename="openlp/core/ui/mainwindow.py" line="434"/>
<source>&amp;Web Site</source>
<translation>&amp;Web Site</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="441"/>
<location filename="openlp/core/ui/mainwindow.py" line="442"/>
<source>Use the system language, if available.</source>
<translation>Use the system language, if available.</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="437"/>
<location filename="openlp/core/ui/mainwindow.py" line="438"/>
<source>Set the interface language to %s</source>
<translation>Set the interface language to %s</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="443"/>
<location filename="openlp/core/ui/mainwindow.py" line="444"/>
<source>Add &amp;Tool...</source>
<translation>Add &amp;Tool...</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="445"/>
<location filename="openlp/core/ui/mainwindow.py" line="446"/>
<source>Add an application to the list of tools.</source>
<translation>Add an application to the list of tools.</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="451"/>
<location filename="openlp/core/ui/mainwindow.py" line="452"/>
<source>&amp;Default</source>
<translation>&amp;Default</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="453"/>
<location filename="openlp/core/ui/mainwindow.py" line="454"/>
<source>Set the view mode back to the default.</source>
<translation>Set the view mode back to the default.</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="455"/>
<location filename="openlp/core/ui/mainwindow.py" line="456"/>
<source>&amp;Setup</source>
<translation>&amp;Setup</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="456"/>
<location filename="openlp/core/ui/mainwindow.py" line="457"/>
<source>Set the view mode to Setup.</source>
<translation>Set the view mode to Setup.</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="458"/>
<location filename="openlp/core/ui/mainwindow.py" line="459"/>
<source>&amp;Live</source>
<translation>&amp;Live</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="459"/>
<location filename="openlp/core/ui/mainwindow.py" line="460"/>
<source>Set the view mode to Live.</source>
<translation>Set the view mode to Live.</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="645"/>
<location filename="openlp/core/ui/mainwindow.py" line="648"/>
<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>
@ -2214,22 +2214,22 @@ You can download the latest version from http://openlp.org/.</source>
You can download the latest version from http://openlp.org/.</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="649"/>
<location filename="openlp/core/ui/mainwindow.py" line="652"/>
<source>OpenLP Version Updated</source>
<translation>OpenLP Version Updated</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="701"/>
<location filename="openlp/core/ui/mainwindow.py" line="704"/>
<source>OpenLP Main Display Blanked</source>
<translation>OpenLP Main Display Blanked</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="701"/>
<location filename="openlp/core/ui/mainwindow.py" line="704"/>
<source>The Main Display has been blanked out</source>
<translation>The Main Display has been blanked out</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="910"/>
<location filename="openlp/core/ui/mainwindow.py" line="920"/>
<source>Default Theme: %s</source>
<translation>Default Theme: %s</translation>
</message>
@ -2240,47 +2240,47 @@ You can download the latest version from http://openlp.org/.</translation>
<translation>English (United Kingdom)</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="372"/>
<location filename="openlp/core/ui/mainwindow.py" line="370"/>
<source>Configure &amp;Shortcuts...</source>
<translation>Configure &amp;Shortcuts...</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="832"/>
<location filename="openlp/core/ui/mainwindow.py" line="842"/>
<source>Close OpenLP</source>
<translation>Close OpenLP</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="832"/>
<location filename="openlp/core/ui/mainwindow.py" line="842"/>
<source>Are you sure you want to close OpenLP?</source>
<translation>Are you sure you want to close OpenLP?</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="354"/>
<location filename="openlp/core/ui/mainwindow.py" line="352"/>
<source>Print the current Service Order.</source>
<translation>Print the current Service Order.</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="356"/>
<location filename="openlp/core/ui/mainwindow.py" line="354"/>
<source>Ctrl+P</source>
<translation>Ctrl+P</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="447"/>
<location filename="openlp/core/ui/mainwindow.py" line="448"/>
<source>Open &amp;Data Folder...</source>
<translation>Open &amp;Data Folder...</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="449"/>
<location filename="openlp/core/ui/mainwindow.py" line="450"/>
<source>Open the folder where songs, bibles and other data resides.</source>
<translation>Open the folder where songs, Bibles and other data resides.</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="374"/>
<location filename="openlp/core/ui/mainwindow.py" line="372"/>
<source>&amp;Configure Display Tags</source>
<translation>&amp;Configure Display Tags</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="439"/>
<location filename="openlp/core/ui/mainwindow.py" line="440"/>
<source>&amp;Autodetect</source>
<translation>&amp;Autodetect</translation>
</message>
@ -4775,8 +4775,8 @@ The encoding is responsible for the correct character representation.</translati
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="318"/>
<source>Are you sure you want to delete the %n selected song(s)?</source>
<translation>
<numerusform>Are you sure you want to delete the %n selected song(s)?</numerusform>
<numerusform></numerusform>
<numerusform>Are you sure you want to delete the %n selected song?</numerusform>
<numerusform>Are you sure you want to delete the %n selected songs?</numerusform>
</translation>
</message>
</context>

View File

@ -1,6 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS>
<TS version="2.0" language="en_ZA">
<!DOCTYPE TS><TS version="1.1" language="en_ZA">
<context>
<name>AlertPlugin.AlertForm</name>
<message>
@ -1152,7 +1151,7 @@ Translators
%s
Japanese (ja)
%s
Norwegian Bokmål (nb)
Norwegian Bokm&#xe5;l (nb)
%s
Dutch (nl)
%s
@ -1245,8 +1244,8 @@ Final Credit
</message>
<message>
<location filename="openlp/core/ui/aboutdialog.py" line="224"/>
<source>Copyright © 2004-2011 Raoul Snyman
Portions copyright © 2004-2011 Tim Bentley, Jonathan Corwin, Michael Gorven, Scott Guerrieri,
<source>Copyright &#xa9; 2004-2011 Raoul Snyman
Portions copyright &#xa9; 2004-2011 Tim Bentley, Jonathan Corwin, Michael Gorven, Scott Guerrieri,
Meinert Jordan, Andreas Preikschat, Christian Richter, Philip
Ridout, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Carsten
Tinggaard, Frode Woldsund</source>
@ -1553,102 +1552,102 @@ Version: %s
<context>
<name>OpenLP.FirstTimeWizard</name>
<message>
<location filename="openlp/core/ui/firsttimeform.py" line="61"/>
<location filename="openlp/core/ui/firsttimeform.py" line="62"/>
<source>Downloading %s...</source>
<translation>Downloading %s...</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimeform.py" line="231"/>
<location filename="openlp/core/ui/firsttimeform.py" line="243"/>
<source>Download complete. Click the finish button to start OpenLP.</source>
<translation>Download complete. Click the finish button to start OpenLP.</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimeform.py" line="240"/>
<location filename="openlp/core/ui/firsttimeform.py" line="252"/>
<source>Enabling selected plugins...</source>
<translation>Enabling selected plugins...</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="193"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="191"/>
<source>First Time Wizard</source>
<translation>First Time Wizard</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="195"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="193"/>
<source>Welcome to the First Time Wizard</source>
<translation>Welcome to the First Time Wizard</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="199"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="197"/>
<source>This wizard will help you to configure OpenLP for initial use. Click the next button below to start the process of selection your initial options. </source>
<translation>This wizard will help you to configure OpenLP for initial use. Click the next button below to start the process of selection your initial options. </translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="203"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="201"/>
<source>Activate required Plugins</source>
<translation>Activate required Plugins</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="205"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="203"/>
<source>Select the Plugins you wish to use. </source>
<translation>Select the Plugins you wish to use. </translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="207"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="205"/>
<source>Songs</source>
<translation>Songs</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="208"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="206"/>
<source>Custom Text</source>
<translation>Custom Text</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="210"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="208"/>
<source>Bible</source>
<translation>Bible</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="211"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="209"/>
<source>Images</source>
<translation>Images</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="213"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="211"/>
<source>Presentations</source>
<translation>Presentations</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="215"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="213"/>
<source>Media (Audio and Video)</source>
<translation>Media (Audio and Video)</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="217"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="215"/>
<source>Allow remote access</source>
<translation>Allow remote access</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="219"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="217"/>
<source>Monitor Song Usage</source>
<translation>Monitor Song Usage</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="221"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="219"/>
<source>Allow Alerts</source>
<translation>Allow Alerts</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="223"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="221"/>
<source>No Internet Connection</source>
<translation>No Internet Connection</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="225"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="223"/>
<source>Unable to detect an Internet connection.</source>
<translation>Unable to detect an Internet connection.</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="228"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="226"/>
<source>No Internet connection was found. The First Time Wizard needs an Internet connection in order to be able to download sample songs, Bibles and themes.
To re-run the First Time Wizard and import this sample data at a later stage, press the cancel button now, check your Internet connection, and restart OpenLP.
@ -1661,67 +1660,67 @@ To re-run the First Time Wizard and import this sample data at a later stage, pr
To cancel the First Time Wizard completely, press the finish button now.</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="236"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="234"/>
<source>Sample Songs</source>
<translation>Sample Songs</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="238"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="236"/>
<source>Select and download public domain songs.</source>
<translation>Select and download public domain songs.</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="240"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="238"/>
<source>Sample Bibles</source>
<translation>Sample Bibles</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="242"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="240"/>
<source>Select and download free Bibles.</source>
<translation>Select and download free Bibles.</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="244"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="242"/>
<source>Sample Themes</source>
<translation>Sample Themes</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="246"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="244"/>
<source>Select and download sample themes.</source>
<translation>Select and download sample themes.</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="248"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="246"/>
<source>Default Settings</source>
<translation>Default Settings</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="250"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="248"/>
<source>Set up default settings to be used by OpenLP.</source>
<translation>Set up default settings to be used by OpenLP.</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="252"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="250"/>
<source>Setting Up And Importing</source>
<translation>Setting Up And Importing</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="254"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="252"/>
<source>Please wait while OpenLP is set up and your data is imported.</source>
<translation>Please wait while OpenLP is set up and your data is imported.</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="256"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="254"/>
<source>Default output display:</source>
<translation>Default output display:</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="258"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="256"/>
<source>Select default theme:</source>
<translation>Select default theme:</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="260"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="258"/>
<source>Starting configuration process...</source>
<translation>Starting configuration process...</translation>
</message>
@ -1847,12 +1846,12 @@ To cancel the First Time Wizard completely, press the finish button now.</transl
<context>
<name>OpenLP.LanguageManager</name>
<message>
<location filename="openlp/core/utils/languagemanager.py" line="132"/>
<location filename="openlp/core/utils/languagemanager.py" line="130"/>
<source>Language</source>
<translation>Language</translation>
</message>
<message>
<location filename="openlp/core/utils/languagemanager.py" line="132"/>
<location filename="openlp/core/utils/languagemanager.py" line="130"/>
<source>Please restart OpenLP to use your new language setting.</source>
<translation>Please restart OpenLP to use your new language setting.</translation>
</message>
@ -1868,367 +1867,367 @@ To cancel the First Time Wizard completely, press the finish button now.</transl
<context>
<name>OpenLP.MainWindow</name>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="315"/>
<location filename="openlp/core/ui/mainwindow.py" line="313"/>
<source>&amp;File</source>
<translation>&amp;File</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="316"/>
<location filename="openlp/core/ui/mainwindow.py" line="314"/>
<source>&amp;Import</source>
<translation>&amp;Import</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="317"/>
<location filename="openlp/core/ui/mainwindow.py" line="315"/>
<source>&amp;Export</source>
<translation>&amp;Export</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="318"/>
<location filename="openlp/core/ui/mainwindow.py" line="316"/>
<source>&amp;View</source>
<translation>&amp;View</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="319"/>
<location filename="openlp/core/ui/mainwindow.py" line="317"/>
<source>M&amp;ode</source>
<translation>M&amp;ode</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="320"/>
<location filename="openlp/core/ui/mainwindow.py" line="318"/>
<source>&amp;Tools</source>
<translation>&amp;Tools</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="321"/>
<location filename="openlp/core/ui/mainwindow.py" line="319"/>
<source>&amp;Settings</source>
<translation>&amp;Settings</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="370"/>
<location filename="openlp/core/ui/mainwindow.py" line="368"/>
<source>&amp;Language</source>
<translation>&amp;Language</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="324"/>
<location filename="openlp/core/ui/mainwindow.py" line="322"/>
<source>&amp;Help</source>
<translation>&amp;Help</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="325"/>
<location filename="openlp/core/ui/mainwindow.py" line="323"/>
<source>Media Manager</source>
<translation>Media Manager</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="327"/>
<location filename="openlp/core/ui/mainwindow.py" line="325"/>
<source>Service Manager</source>
<translation>Service Manager</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="329"/>
<location filename="openlp/core/ui/mainwindow.py" line="327"/>
<source>Theme Manager</source>
<translation>Theme Manager</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="331"/>
<location filename="openlp/core/ui/mainwindow.py" line="329"/>
<source>&amp;New</source>
<translation>&amp;New</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="334"/>
<location filename="openlp/core/ui/mainwindow.py" line="332"/>
<source>Ctrl+N</source>
<translation>Ctrl+N</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="335"/>
<location filename="openlp/core/ui/mainwindow.py" line="333"/>
<source>&amp;Open</source>
<translation>&amp;Open</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="337"/>
<location filename="openlp/core/ui/mainwindow.py" line="335"/>
<source>Open an existing service.</source>
<translation>Open an existing service.</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="339"/>
<location filename="openlp/core/ui/mainwindow.py" line="337"/>
<source>Ctrl+O</source>
<translation>Ctrl+O</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="340"/>
<location filename="openlp/core/ui/mainwindow.py" line="338"/>
<source>&amp;Save</source>
<translation>&amp;Save</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="342"/>
<location filename="openlp/core/ui/mainwindow.py" line="340"/>
<source>Save the current service to disk.</source>
<translation>Save the current service to disk.</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="344"/>
<location filename="openlp/core/ui/mainwindow.py" line="342"/>
<source>Ctrl+S</source>
<translation>Ctrl+S</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="345"/>
<location filename="openlp/core/ui/mainwindow.py" line="343"/>
<source>Save &amp;As...</source>
<translation>Save &amp;As...</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="347"/>
<location filename="openlp/core/ui/mainwindow.py" line="345"/>
<source>Save Service As</source>
<translation>Save Service As</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="349"/>
<location filename="openlp/core/ui/mainwindow.py" line="347"/>
<source>Save the current service under a new name.</source>
<translation>Save the current service under a new name.</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="351"/>
<location filename="openlp/core/ui/mainwindow.py" line="349"/>
<source>Ctrl+Shift+S</source>
<translation>Ctrl+Shift+S</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="358"/>
<location filename="openlp/core/ui/mainwindow.py" line="356"/>
<source>E&amp;xit</source>
<translation>E&amp;xit</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="360"/>
<location filename="openlp/core/ui/mainwindow.py" line="358"/>
<source>Quit OpenLP</source>
<translation>Quit OpenLP</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="362"/>
<location filename="openlp/core/ui/mainwindow.py" line="360"/>
<source>Alt+F4</source>
<translation>Alt+F4</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="368"/>
<location filename="openlp/core/ui/mainwindow.py" line="366"/>
<source>&amp;Theme</source>
<translation>&amp;Theme</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="376"/>
<location filename="openlp/core/ui/mainwindow.py" line="374"/>
<source>&amp;Configure OpenLP...</source>
<translation>&amp;Configure OpenLP...</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="378"/>
<location filename="openlp/core/ui/mainwindow.py" line="376"/>
<source>&amp;Media Manager</source>
<translation>&amp;Media Manager</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="380"/>
<location filename="openlp/core/ui/mainwindow.py" line="378"/>
<source>Toggle Media Manager</source>
<translation>Toggle Media Manager</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="382"/>
<location filename="openlp/core/ui/mainwindow.py" line="380"/>
<source>Toggle the visibility of the media manager.</source>
<translation>Toggle the visibility of the media manager.</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="384"/>
<location filename="openlp/core/ui/mainwindow.py" line="382"/>
<source>F8</source>
<translation>F8</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="386"/>
<location filename="openlp/core/ui/mainwindow.py" line="384"/>
<source>&amp;Theme Manager</source>
<translation>&amp;Theme Manager</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="388"/>
<location filename="openlp/core/ui/mainwindow.py" line="386"/>
<source>Toggle Theme Manager</source>
<translation>Toggle Theme Manager</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="390"/>
<location filename="openlp/core/ui/mainwindow.py" line="388"/>
<source>Toggle the visibility of the theme manager.</source>
<translation>Toggle the visibility of the theme manager.</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="392"/>
<location filename="openlp/core/ui/mainwindow.py" line="390"/>
<source>F10</source>
<translation>F10</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="394"/>
<location filename="openlp/core/ui/mainwindow.py" line="392"/>
<source>&amp;Service Manager</source>
<translation>&amp;Service Manager</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="396"/>
<location filename="openlp/core/ui/mainwindow.py" line="394"/>
<source>Toggle Service Manager</source>
<translation>Toggle Service Manager</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="398"/>
<location filename="openlp/core/ui/mainwindow.py" line="396"/>
<source>Toggle the visibility of the service manager.</source>
<translation>Toggle the visibility of the service manager.</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="400"/>
<location filename="openlp/core/ui/mainwindow.py" line="398"/>
<source>F9</source>
<translation>F9</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="402"/>
<location filename="openlp/core/ui/mainwindow.py" line="400"/>
<source>&amp;Preview Panel</source>
<translation>&amp;Preview Panel</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="404"/>
<location filename="openlp/core/ui/mainwindow.py" line="402"/>
<source>Toggle Preview Panel</source>
<translation>Toggle Preview Panel</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="406"/>
<location filename="openlp/core/ui/mainwindow.py" line="404"/>
<source>Toggle the visibility of the preview panel.</source>
<translation>Toggle the visibility of the preview panel.</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="408"/>
<location filename="openlp/core/ui/mainwindow.py" line="406"/>
<source>F11</source>
<translation>F11</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="410"/>
<location filename="openlp/core/ui/mainwindow.py" line="408"/>
<source>&amp;Live Panel</source>
<translation>&amp;Live Panel</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="412"/>
<location filename="openlp/core/ui/mainwindow.py" line="410"/>
<source>Toggle Live Panel</source>
<translation>Toggle Live Panel</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="414"/>
<location filename="openlp/core/ui/mainwindow.py" line="412"/>
<source>Toggle the visibility of the live panel.</source>
<translation>Toggle the visibility of the live panel.</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="416"/>
<location filename="openlp/core/ui/mainwindow.py" line="414"/>
<source>F12</source>
<translation>F12</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="418"/>
<location filename="openlp/core/ui/mainwindow.py" line="416"/>
<source>&amp;Plugin List</source>
<translation>&amp;Plugin List</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="420"/>
<location filename="openlp/core/ui/mainwindow.py" line="418"/>
<source>List the Plugins</source>
<translation>List the Plugins</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="422"/>
<location filename="openlp/core/ui/mainwindow.py" line="420"/>
<source>Alt+F7</source>
<translation>Alt+F7</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="424"/>
<location filename="openlp/core/ui/mainwindow.py" line="422"/>
<source>&amp;User Guide</source>
<translation>&amp;User Guide</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="426"/>
<location filename="openlp/core/ui/mainwindow.py" line="424"/>
<source>&amp;About</source>
<translation>&amp;About</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="427"/>
<location filename="openlp/core/ui/mainwindow.py" line="425"/>
<source>More information about OpenLP</source>
<translation>More information about OpenLP</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="429"/>
<location filename="openlp/core/ui/mainwindow.py" line="427"/>
<source>Ctrl+F1</source>
<translation>Ctrl+F1</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="431"/>
<location filename="openlp/core/ui/mainwindow.py" line="429"/>
<source>&amp;Online Help</source>
<translation>&amp;Online Help</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="433"/>
<location filename="openlp/core/ui/mainwindow.py" line="434"/>
<source>&amp;Web Site</source>
<translation>&amp;Web Site</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="441"/>
<location filename="openlp/core/ui/mainwindow.py" line="442"/>
<source>Use the system language, if available.</source>
<translation>Use the system language, if available.</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="437"/>
<location filename="openlp/core/ui/mainwindow.py" line="438"/>
<source>Set the interface language to %s</source>
<translation>Set the interface language to %s</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="443"/>
<location filename="openlp/core/ui/mainwindow.py" line="444"/>
<source>Add &amp;Tool...</source>
<translation>Add &amp;Tool...</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="445"/>
<location filename="openlp/core/ui/mainwindow.py" line="446"/>
<source>Add an application to the list of tools.</source>
<translation>Add an application to the list of tools.</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="451"/>
<location filename="openlp/core/ui/mainwindow.py" line="452"/>
<source>&amp;Default</source>
<translation>&amp;Default</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="453"/>
<location filename="openlp/core/ui/mainwindow.py" line="454"/>
<source>Set the view mode back to the default.</source>
<translation>Set the view mode back to the default.</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="455"/>
<location filename="openlp/core/ui/mainwindow.py" line="456"/>
<source>&amp;Setup</source>
<translation>&amp;Setup</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="456"/>
<location filename="openlp/core/ui/mainwindow.py" line="457"/>
<source>Set the view mode to Setup.</source>
<translation>Set the view mode to Setup.</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="458"/>
<location filename="openlp/core/ui/mainwindow.py" line="459"/>
<source>&amp;Live</source>
<translation>&amp;Live</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="459"/>
<location filename="openlp/core/ui/mainwindow.py" line="460"/>
<source>Set the view mode to Live.</source>
<translation>Set the view mode to Live.</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="649"/>
<location filename="openlp/core/ui/mainwindow.py" line="652"/>
<source>OpenLP Version Updated</source>
<translation>OpenLP Version Updated</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="701"/>
<location filename="openlp/core/ui/mainwindow.py" line="704"/>
<source>OpenLP Main Display Blanked</source>
<translation>OpenLP Main Display Blanked</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="701"/>
<location filename="openlp/core/ui/mainwindow.py" line="704"/>
<source>The Main Display has been blanked out</source>
<translation>The Main Display has been blanked out</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="910"/>
<location filename="openlp/core/ui/mainwindow.py" line="920"/>
<source>Default Theme: %s</source>
<translation>Default Theme: %s</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="645"/>
<location filename="openlp/core/ui/mainwindow.py" line="648"/>
<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>
@ -2243,47 +2242,47 @@ You can download the latest version from http://openlp.org/.</translation>
<translation>English (South Africa)</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="372"/>
<location filename="openlp/core/ui/mainwindow.py" line="370"/>
<source>Configure &amp;Shortcuts...</source>
<translation>Configure &amp;Shortcuts...</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="832"/>
<location filename="openlp/core/ui/mainwindow.py" line="842"/>
<source>Close OpenLP</source>
<translation>Close OpenLP</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="832"/>
<location filename="openlp/core/ui/mainwindow.py" line="842"/>
<source>Are you sure you want to close OpenLP?</source>
<translation>Are you sure you want to close OpenLP?</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="354"/>
<location filename="openlp/core/ui/mainwindow.py" line="352"/>
<source>Print the current Service Order.</source>
<translation>Print the current Service Order.</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="356"/>
<location filename="openlp/core/ui/mainwindow.py" line="354"/>
<source>Ctrl+P</source>
<translation>Ctrl+P</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="447"/>
<location filename="openlp/core/ui/mainwindow.py" line="448"/>
<source>Open &amp;Data Folder...</source>
<translation>Open &amp;Data Folder...</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="449"/>
<location filename="openlp/core/ui/mainwindow.py" line="450"/>
<source>Open the folder where songs, bibles and other data resides.</source>
<translation>Open the folder where songs, Bibles and other data resides.</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="374"/>
<location filename="openlp/core/ui/mainwindow.py" line="372"/>
<source>&amp;Configure Display Tags</source>
<translation>&amp;Configure Display Tags</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="439"/>
<location filename="openlp/core/ui/mainwindow.py" line="440"/>
<source>&amp;Autodetect</source>
<translation>&amp;Autodetect</translation>
</message>
@ -3773,7 +3772,7 @@ The content encoding is not UTF-8.</translation>
</message>
<message>
<location filename="openlp/plugins/songs/lib/ui.py" line="40"/>
<source>©</source>
<source>&#xa9;</source>
<comment>Copyright symbol.</comment>
<translation>©</translation>
</message>

View File

@ -1441,102 +1441,102 @@ Version: %s
<context>
<name>OpenLP.FirstTimeWizard</name>
<message>
<location filename="openlp/core/ui/firsttimeform.py" line="61"/>
<location filename="openlp/core/ui/firsttimeform.py" line="62"/>
<source>Downloading %s...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimeform.py" line="231"/>
<location filename="openlp/core/ui/firsttimeform.py" line="243"/>
<source>Download complete. Click the finish button to start OpenLP.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimeform.py" line="240"/>
<location filename="openlp/core/ui/firsttimeform.py" line="252"/>
<source>Enabling selected plugins...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="193"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="191"/>
<source>First Time Wizard</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="195"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="193"/>
<source>Welcome to the First Time Wizard</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="199"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="197"/>
<source>This wizard will help you to configure OpenLP for initial use. Click the next button below to start the process of selection your initial options. </source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="203"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="201"/>
<source>Activate required Plugins</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="205"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="203"/>
<source>Select the Plugins you wish to use. </source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="207"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="205"/>
<source>Songs</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="208"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="206"/>
<source>Custom Text</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="210"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="208"/>
<source>Bible</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="211"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="209"/>
<source>Images</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="213"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="211"/>
<source>Presentations</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="215"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="213"/>
<source>Media (Audio and Video)</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="217"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="215"/>
<source>Allow remote access</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="219"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="217"/>
<source>Monitor Song Usage</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="221"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="219"/>
<source>Allow Alerts</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="223"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="221"/>
<source>No Internet Connection</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="225"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="223"/>
<source>Unable to detect an Internet connection.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="228"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="226"/>
<source>No Internet connection was found. The First Time Wizard needs an Internet connection in order to be able to download sample songs, Bibles and themes.
To re-run the First Time Wizard and import this sample data at a later stage, press the cancel button now, check your Internet connection, and restart OpenLP.
@ -1545,67 +1545,67 @@ To cancel the First Time Wizard completely, press the finish button now.</source
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="236"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="234"/>
<source>Sample Songs</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="238"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="236"/>
<source>Select and download public domain songs.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="240"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="238"/>
<source>Sample Bibles</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="242"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="240"/>
<source>Select and download free Bibles.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="244"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="242"/>
<source>Sample Themes</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="246"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="244"/>
<source>Select and download sample themes.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="248"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="246"/>
<source>Default Settings</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="250"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="248"/>
<source>Set up default settings to be used by OpenLP.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="252"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="250"/>
<source>Setting Up And Importing</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="254"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="252"/>
<source>Please wait while OpenLP is set up and your data is imported.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="256"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="254"/>
<source>Default output display:</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="258"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="256"/>
<source>Select default theme:</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="260"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="258"/>
<source>Starting configuration process...</source>
<translation type="unfinished"></translation>
</message>
@ -1731,12 +1731,12 @@ To cancel the First Time Wizard completely, press the finish button now.</source
<context>
<name>OpenLP.LanguageManager</name>
<message>
<location filename="openlp/core/utils/languagemanager.py" line="132"/>
<location filename="openlp/core/utils/languagemanager.py" line="130"/>
<source>Language</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/utils/languagemanager.py" line="132"/>
<location filename="openlp/core/utils/languagemanager.py" line="130"/>
<source>Please restart OpenLP to use your new language setting.</source>
<translation type="unfinished"></translation>
</message>
@ -1752,369 +1752,369 @@ To cancel the First Time Wizard completely, press the finish button now.</source
<context>
<name>OpenLP.MainWindow</name>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="315"/>
<location filename="openlp/core/ui/mainwindow.py" line="313"/>
<source>&amp;File</source>
<translation type="unfinished">&amp;Archivo</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="316"/>
<location filename="openlp/core/ui/mainwindow.py" line="314"/>
<source>&amp;Import</source>
<translation type="unfinished">&amp;Importar</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="317"/>
<location filename="openlp/core/ui/mainwindow.py" line="315"/>
<source>&amp;Export</source>
<translation type="unfinished">&amp;Exportar</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="318"/>
<location filename="openlp/core/ui/mainwindow.py" line="316"/>
<source>&amp;View</source>
<translation type="unfinished">&amp;Ver</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="319"/>
<location filename="openlp/core/ui/mainwindow.py" line="317"/>
<source>M&amp;ode</source>
<translation type="unfinished">M&amp;odo</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="320"/>
<location filename="openlp/core/ui/mainwindow.py" line="318"/>
<source>&amp;Tools</source>
<translation type="unfinished">&amp;Herramientas</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="321"/>
<location filename="openlp/core/ui/mainwindow.py" line="319"/>
<source>&amp;Settings</source>
<translation type="unfinished">&amp;Preferencias</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="370"/>
<location filename="openlp/core/ui/mainwindow.py" line="368"/>
<source>&amp;Language</source>
<translation type="unfinished">&amp;Idioma</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="324"/>
<location filename="openlp/core/ui/mainwindow.py" line="322"/>
<source>&amp;Help</source>
<translation type="unfinished">&amp;Ayuda</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="325"/>
<location filename="openlp/core/ui/mainwindow.py" line="323"/>
<source>Media Manager</source>
<translation type="unfinished">Gestor de Medios</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="327"/>
<location filename="openlp/core/ui/mainwindow.py" line="325"/>
<source>Service Manager</source>
<translation type="unfinished">Gestor de Servicio</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="329"/>
<location filename="openlp/core/ui/mainwindow.py" line="327"/>
<source>Theme Manager</source>
<translation type="unfinished">Gestor de Temas</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="331"/>
<location filename="openlp/core/ui/mainwindow.py" line="329"/>
<source>&amp;New</source>
<translation type="unfinished">&amp;Nuevo</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="334"/>
<location filename="openlp/core/ui/mainwindow.py" line="332"/>
<source>Ctrl+N</source>
<translation type="unfinished">Ctrl+N</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="335"/>
<location filename="openlp/core/ui/mainwindow.py" line="333"/>
<source>&amp;Open</source>
<translation type="unfinished">&amp;Abrir</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="337"/>
<location filename="openlp/core/ui/mainwindow.py" line="335"/>
<source>Open an existing service.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="339"/>
<location filename="openlp/core/ui/mainwindow.py" line="337"/>
<source>Ctrl+O</source>
<translation type="unfinished">Ctrl+O</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="340"/>
<location filename="openlp/core/ui/mainwindow.py" line="338"/>
<source>&amp;Save</source>
<translation type="unfinished">&amp;Guardar</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="342"/>
<location filename="openlp/core/ui/mainwindow.py" line="340"/>
<source>Save the current service to disk.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="344"/>
<location filename="openlp/core/ui/mainwindow.py" line="342"/>
<source>Ctrl+S</source>
<translation type="unfinished">Crtl+G</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="345"/>
<location filename="openlp/core/ui/mainwindow.py" line="343"/>
<source>Save &amp;As...</source>
<translation type="unfinished">Guardar &amp;Como...</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="347"/>
<location filename="openlp/core/ui/mainwindow.py" line="345"/>
<source>Save Service As</source>
<translation type="unfinished">Guardar Servicio Como</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="349"/>
<location filename="openlp/core/ui/mainwindow.py" line="347"/>
<source>Save the current service under a new name.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="351"/>
<location filename="openlp/core/ui/mainwindow.py" line="349"/>
<source>Ctrl+Shift+S</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="358"/>
<location filename="openlp/core/ui/mainwindow.py" line="356"/>
<source>E&amp;xit</source>
<translation type="unfinished">&amp;Salir</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="360"/>
<location filename="openlp/core/ui/mainwindow.py" line="358"/>
<source>Quit OpenLP</source>
<translation type="unfinished">Salir de OpenLP</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="362"/>
<location filename="openlp/core/ui/mainwindow.py" line="360"/>
<source>Alt+F4</source>
<translation type="unfinished">Alt+F4</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="368"/>
<location filename="openlp/core/ui/mainwindow.py" line="366"/>
<source>&amp;Theme</source>
<translation type="unfinished">&amp;Tema</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="376"/>
<location filename="openlp/core/ui/mainwindow.py" line="374"/>
<source>&amp;Configure OpenLP...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="378"/>
<location filename="openlp/core/ui/mainwindow.py" line="376"/>
<source>&amp;Media Manager</source>
<translation type="unfinished">Gestor de &amp;Medios</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="380"/>
<location filename="openlp/core/ui/mainwindow.py" line="378"/>
<source>Toggle Media Manager</source>
<translation type="unfinished">Alternar Gestor de Medios</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="382"/>
<location filename="openlp/core/ui/mainwindow.py" line="380"/>
<source>Toggle the visibility of the media manager.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="384"/>
<location filename="openlp/core/ui/mainwindow.py" line="382"/>
<source>F8</source>
<translation type="unfinished">F8</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="386"/>
<location filename="openlp/core/ui/mainwindow.py" line="384"/>
<source>&amp;Theme Manager</source>
<translation type="unfinished">Gestor de &amp;Temas</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="388"/>
<location filename="openlp/core/ui/mainwindow.py" line="386"/>
<source>Toggle Theme Manager</source>
<translation type="unfinished">Alternar Gestor de Temas</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="390"/>
<location filename="openlp/core/ui/mainwindow.py" line="388"/>
<source>Toggle the visibility of the theme manager.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="392"/>
<location filename="openlp/core/ui/mainwindow.py" line="390"/>
<source>F10</source>
<translation type="unfinished">F10</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="394"/>
<location filename="openlp/core/ui/mainwindow.py" line="392"/>
<source>&amp;Service Manager</source>
<translation type="unfinished">Gestor de &amp;Servicio</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="396"/>
<location filename="openlp/core/ui/mainwindow.py" line="394"/>
<source>Toggle Service Manager</source>
<translation type="unfinished">Alternar Gestor de Servicio</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="398"/>
<location filename="openlp/core/ui/mainwindow.py" line="396"/>
<source>Toggle the visibility of the service manager.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="400"/>
<location filename="openlp/core/ui/mainwindow.py" line="398"/>
<source>F9</source>
<translation type="unfinished">F9</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="402"/>
<location filename="openlp/core/ui/mainwindow.py" line="400"/>
<source>&amp;Preview Panel</source>
<translation type="unfinished">&amp;Panel de Vista Previa</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="404"/>
<location filename="openlp/core/ui/mainwindow.py" line="402"/>
<source>Toggle Preview Panel</source>
<translation type="unfinished">Alternar Panel de Vista Previa</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="406"/>
<location filename="openlp/core/ui/mainwindow.py" line="404"/>
<source>Toggle the visibility of the preview panel.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="408"/>
<location filename="openlp/core/ui/mainwindow.py" line="406"/>
<source>F11</source>
<translation type="unfinished">F11</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="410"/>
<location filename="openlp/core/ui/mainwindow.py" line="408"/>
<source>&amp;Live Panel</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="412"/>
<location filename="openlp/core/ui/mainwindow.py" line="410"/>
<source>Toggle Live Panel</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="414"/>
<location filename="openlp/core/ui/mainwindow.py" line="412"/>
<source>Toggle the visibility of the live panel.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="416"/>
<location filename="openlp/core/ui/mainwindow.py" line="414"/>
<source>F12</source>
<translation type="unfinished">F12</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="418"/>
<location filename="openlp/core/ui/mainwindow.py" line="416"/>
<source>&amp;Plugin List</source>
<translation type="unfinished">Lista de &amp;Plugins</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="420"/>
<location filename="openlp/core/ui/mainwindow.py" line="418"/>
<source>List the Plugins</source>
<translation type="unfinished">Lista de Plugins</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="422"/>
<location filename="openlp/core/ui/mainwindow.py" line="420"/>
<source>Alt+F7</source>
<translation type="unfinished">Alt+F7</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="424"/>
<location filename="openlp/core/ui/mainwindow.py" line="422"/>
<source>&amp;User Guide</source>
<translation type="unfinished">Guía de &amp;Usuario</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="426"/>
<location filename="openlp/core/ui/mainwindow.py" line="424"/>
<source>&amp;About</source>
<translation type="unfinished">&amp;Acerca De</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="427"/>
<location filename="openlp/core/ui/mainwindow.py" line="425"/>
<source>More information about OpenLP</source>
<translation type="unfinished">Más información acerca de OpenLP</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="429"/>
<location filename="openlp/core/ui/mainwindow.py" line="427"/>
<source>Ctrl+F1</source>
<translation type="unfinished">Ctrl+F1</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="431"/>
<location filename="openlp/core/ui/mainwindow.py" line="429"/>
<source>&amp;Online Help</source>
<translation type="unfinished">&amp;Ayuda En Línea</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="433"/>
<location filename="openlp/core/ui/mainwindow.py" line="434"/>
<source>&amp;Web Site</source>
<translation type="unfinished">Sitio &amp;Web</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="441"/>
<location filename="openlp/core/ui/mainwindow.py" line="442"/>
<source>Use the system language, if available.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="437"/>
<location filename="openlp/core/ui/mainwindow.py" line="438"/>
<source>Set the interface language to %s</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="443"/>
<location filename="openlp/core/ui/mainwindow.py" line="444"/>
<source>Add &amp;Tool...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="445"/>
<location filename="openlp/core/ui/mainwindow.py" line="446"/>
<source>Add an application to the list of tools.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="451"/>
<location filename="openlp/core/ui/mainwindow.py" line="452"/>
<source>&amp;Default</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="453"/>
<location filename="openlp/core/ui/mainwindow.py" line="454"/>
<source>Set the view mode back to the default.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="455"/>
<location filename="openlp/core/ui/mainwindow.py" line="456"/>
<source>&amp;Setup</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="456"/>
<location filename="openlp/core/ui/mainwindow.py" line="457"/>
<source>Set the view mode to Setup.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="458"/>
<location filename="openlp/core/ui/mainwindow.py" line="459"/>
<source>&amp;Live</source>
<translation type="unfinished">En &amp;vivo</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="459"/>
<location filename="openlp/core/ui/mainwindow.py" line="460"/>
<source>Set the view mode to Live.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="645"/>
<location filename="openlp/core/ui/mainwindow.py" line="648"/>
<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="649"/>
<location filename="openlp/core/ui/mainwindow.py" line="652"/>
<source>OpenLP Version Updated</source>
<translation type="unfinished">Versión de OpenLP Actualizada</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="701"/>
<location filename="openlp/core/ui/mainwindow.py" line="704"/>
<source>OpenLP Main Display Blanked</source>
<translation type="unfinished">Pantalla Principal de OpenLP en Blanco</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="701"/>
<location filename="openlp/core/ui/mainwindow.py" line="704"/>
<source>The Main Display has been blanked out</source>
<translation type="unfinished">La Pantalla Principal esta en negro</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="910"/>
<location filename="openlp/core/ui/mainwindow.py" line="920"/>
<source>Default Theme: %s</source>
<translation type="unfinished"></translation>
</message>
@ -2125,47 +2125,47 @@ You can download the latest version from http://openlp.org/.</source>
<translation type="unfinished">Español</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="372"/>
<location filename="openlp/core/ui/mainwindow.py" line="370"/>
<source>Configure &amp;Shortcuts...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="832"/>
<location filename="openlp/core/ui/mainwindow.py" line="842"/>
<source>Close OpenLP</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="832"/>
<location filename="openlp/core/ui/mainwindow.py" line="842"/>
<source>Are you sure you want to close OpenLP?</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="354"/>
<location filename="openlp/core/ui/mainwindow.py" line="352"/>
<source>Print the current Service Order.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="356"/>
<location filename="openlp/core/ui/mainwindow.py" line="354"/>
<source>Ctrl+P</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="447"/>
<location filename="openlp/core/ui/mainwindow.py" line="448"/>
<source>Open &amp;Data Folder...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="449"/>
<location filename="openlp/core/ui/mainwindow.py" line="450"/>
<source>Open the folder where songs, bibles and other data resides.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="374"/>
<location filename="openlp/core/ui/mainwindow.py" line="372"/>
<source>&amp;Configure Display Tags</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="439"/>
<location filename="openlp/core/ui/mainwindow.py" line="440"/>
<source>&amp;Autodetect</source>
<translation type="unfinished"></translation>
</message>

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS><TS version="1.1" language="et">
<!DOCTYPE TS><TS version="1.1">
<context>
<name>AlertPlugin.AlertForm</name>
<message>
@ -124,27 +124,27 @@ Kas tahad sellest hoolimata jätkata?</translation>
<message>
<location filename="openlp/plugins/alerts/lib/alertstab.py" line="102"/>
<source>Font</source>
<translation>Kirjastiil</translation>
<translation>Font</translation>
</message>
<message>
<location filename="openlp/plugins/alerts/lib/alertstab.py" line="104"/>
<source>Font name:</source>
<translation>Kirjastiili nimi:</translation>
<translation>Fondi nimi:</translation>
</message>
<message>
<location filename="openlp/plugins/alerts/lib/alertstab.py" line="106"/>
<source>Font color:</source>
<translation>Kirja värvus:</translation>
<translation>Teksti värvus:</translation>
</message>
<message>
<location filename="openlp/plugins/alerts/lib/alertstab.py" line="108"/>
<source>Background color:</source>
<translation>Taustavärvus:</translation>
<translation>Tausta värvus:</translation>
</message>
<message>
<location filename="openlp/plugins/alerts/lib/alertstab.py" line="110"/>
<source>Font size:</source>
<translation>Kirja suurus:</translation>
<translation>Teksti suurus:</translation>
</message>
<message>
<location filename="openlp/plugins/alerts/lib/alertstab.py" line="113"/>
@ -1268,7 +1268,7 @@ Jon Tibble, Carsten Tinggaard, Frode Woldsund</translation>
<message>
<location filename="openlp/core/ui/advancedtab.py" line="129"/>
<source>Remember active media manager tab on startup</source>
<translation>Käivitumisel tuletatakse meelde, milline meediahalduri osa oli aktiivne</translation>
<translation>Käivitumisel avatakse viimati avatud meediahalduri osa</translation>
</message>
<message>
<location filename="openlp/core/ui/advancedtab.py" line="131"/>
@ -1549,102 +1549,102 @@ Version: %s
<context>
<name>OpenLP.FirstTimeWizard</name>
<message>
<location filename="openlp/core/ui/firsttimeform.py" line="61"/>
<location filename="openlp/core/ui/firsttimeform.py" line="62"/>
<source>Downloading %s...</source>
<translation>%s allalaadimine...</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimeform.py" line="231"/>
<location filename="openlp/core/ui/firsttimeform.py" line="243"/>
<source>Download complete. Click the finish button to start OpenLP.</source>
<translation>Allalaadimine lõpetatud. OpenLP käivitamiseks klõpsa lõpetamise nupule.</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimeform.py" line="240"/>
<location filename="openlp/core/ui/firsttimeform.py" line="252"/>
<source>Enabling selected plugins...</source>
<translation>Valitud pluginate sisselülitamine...</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="193"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="191"/>
<source>First Time Wizard</source>
<translation>Esmakäivituse nõustaja</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="195"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="193"/>
<source>Welcome to the First Time Wizard</source>
<translation>Tere tulemast esmakäivituse nõustajasse</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="199"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="197"/>
<source>This wizard will help you to configure OpenLP for initial use. Click the next button below to start the process of selection your initial options. </source>
<translation>Nõustaja aitab teha esmase seadistuse OpenLP kasutamiseks. Klõpsa all asuval edasi nupul, et alustada lähtevalikute tegemist.</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="203"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="201"/>
<source>Activate required Plugins</source>
<translation>Vajalike pluginate sisselülitamine</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="205"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="203"/>
<source>Select the Plugins you wish to use. </source>
<translation>Vali pluginad, mida tahad kasutada.</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="207"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="205"/>
<source>Songs</source>
<translation type="unfinished">Laulud</translation>
<translation>Laulud</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="208"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="206"/>
<source>Custom Text</source>
<translation>Kohandatud tekst</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="210"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="208"/>
<source>Bible</source>
<translation type="unfinished">Piibel</translation>
<translation>Piibel</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="209"/>
<source>Images</source>
<translation>Pildid</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="211"/>
<source>Images</source>
<translation type="unfinished">Pildid</translation>
<source>Presentations</source>
<translation>Esitlused</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="213"/>
<source>Presentations</source>
<translation type="unfinished">Esitlused</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="215"/>
<source>Media (Audio and Video)</source>
<translation>Meedia (audio ja video)</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="217"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="215"/>
<source>Allow remote access</source>
<translation>Kaugligipääs</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="219"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="217"/>
<source>Monitor Song Usage</source>
<translation>Laulukasutuse monitooring</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="221"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="219"/>
<source>Allow Alerts</source>
<translation>Teadaanded</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="223"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="221"/>
<source>No Internet Connection</source>
<translation>Internetiühendust pole</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="225"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="223"/>
<source>Unable to detect an Internet connection.</source>
<translation>Internetiühendust ei leitud.</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="228"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="226"/>
<source>No Internet connection was found. The First Time Wizard needs an Internet connection in order to be able to download sample songs, Bibles and themes.
To re-run the First Time Wizard and import this sample data at a later stage, press the cancel button now, check your Internet connection, and restart OpenLP.
@ -1657,67 +1657,67 @@ Esmakäivituse nõustaja taaskäivitamiseks hiljem, klõpsa praegu loobu nupule,
Esmakäivituse nõustajast loobumiseks klõpsa lõpetamise nupule.</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="236"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="234"/>
<source>Sample Songs</source>
<translation>Näidislaulud</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="238"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="236"/>
<source>Select and download public domain songs.</source>
<translation>Vali ja laadi alla avalikku omandisse kuuluvaid laule.</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="240"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="238"/>
<source>Sample Bibles</source>
<translation>Näidispiiblid</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="242"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="240"/>
<source>Select and download free Bibles.</source>
<translation>Vabade Piiblite valimine ja allalaadimine.</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="244"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="242"/>
<source>Sample Themes</source>
<translation>Näidiskujundused</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="246"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="244"/>
<source>Select and download sample themes.</source>
<translation>Näidiskujunduste valimine ja allalaadimine.</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="248"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="246"/>
<source>Default Settings</source>
<translation>Vaikimisi sätted</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="250"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="248"/>
<source>Set up default settings to be used by OpenLP.</source>
<translation>OpenLP jaoks vaikimisi sätete määramine.</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="252"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="250"/>
<source>Setting Up And Importing</source>
<translation>Seadistamine ja importimine</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="254"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="252"/>
<source>Please wait while OpenLP is set up and your data is imported.</source>
<translation>Palun oota, kuni OpenLP on seadistatud ning sinu andmed on imporditud.</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="256"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="254"/>
<source>Default output display:</source>
<translation>Vaikimisi ekraani kuva:</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="258"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="256"/>
<source>Select default theme:</source>
<translation>Vali vaikimisi kujundus:</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="260"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="258"/>
<source>Starting configuration process...</source>
<translation>Seadistamise alustamine...</translation>
</message>
@ -1752,7 +1752,7 @@ Esmakäivituse nõustajast loobumiseks klõpsa lõpetamise nupule.</translation>
<message>
<location filename="openlp/core/ui/generaltab.py" line="215"/>
<source>Show blank screen warning</source>
<translation>Kuvatakse tühja ekraani hoiatust</translation>
<translation>Kuvatakse tühjendatud ekraani hoiatust</translation>
</message>
<message>
<location filename="openlp/core/ui/generaltab.py" line="217"/>
@ -1782,12 +1782,12 @@ Esmakäivituse nõustajast loobumiseks klõpsa lõpetamise nupule.</translation>
<message>
<location filename="openlp/core/ui/generaltab.py" line="229"/>
<source>Slide loop delay:</source>
<translation>Slaidi näitamise pikkus korduses:</translation>
<translation>Slaidi pikkus korduses:</translation>
</message>
<message>
<location filename="openlp/core/ui/generaltab.py" line="231"/>
<source> sec</source>
<translation>sek</translation>
<translation> sek</translation>
</message>
<message>
<location filename="openlp/core/ui/generaltab.py" line="232"/>
@ -1843,12 +1843,12 @@ Esmakäivituse nõustajast loobumiseks klõpsa lõpetamise nupule.</translation>
<context>
<name>OpenLP.LanguageManager</name>
<message>
<location filename="openlp/core/utils/languagemanager.py" line="132"/>
<location filename="openlp/core/utils/languagemanager.py" line="130"/>
<source>Language</source>
<translation>Keel</translation>
</message>
<message>
<location filename="openlp/core/utils/languagemanager.py" line="132"/>
<location filename="openlp/core/utils/languagemanager.py" line="130"/>
<source>Please restart OpenLP to use your new language setting.</source>
<translation>Uue keele kasutamiseks käivita OpenLP uuesti.</translation>
</message>
@ -1864,367 +1864,367 @@ Esmakäivituse nõustajast loobumiseks klõpsa lõpetamise nupule.</translation>
<context>
<name>OpenLP.MainWindow</name>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="315"/>
<location filename="openlp/core/ui/mainwindow.py" line="313"/>
<source>&amp;File</source>
<translation>&amp;Fail</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="316"/>
<location filename="openlp/core/ui/mainwindow.py" line="314"/>
<source>&amp;Import</source>
<translation>&amp;Impordi</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="317"/>
<location filename="openlp/core/ui/mainwindow.py" line="315"/>
<source>&amp;Export</source>
<translation>&amp;Ekspordi</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="318"/>
<location filename="openlp/core/ui/mainwindow.py" line="316"/>
<source>&amp;View</source>
<translation>&amp;Vaade</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="319"/>
<location filename="openlp/core/ui/mainwindow.py" line="317"/>
<source>M&amp;ode</source>
<translation>&amp;Režiim</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="320"/>
<location filename="openlp/core/ui/mainwindow.py" line="318"/>
<source>&amp;Tools</source>
<translation>&amp;Tööriistad</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="321"/>
<location filename="openlp/core/ui/mainwindow.py" line="319"/>
<source>&amp;Settings</source>
<translation>&amp;Sätted</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="370"/>
<location filename="openlp/core/ui/mainwindow.py" line="368"/>
<source>&amp;Language</source>
<translation>&amp;Keel</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="324"/>
<location filename="openlp/core/ui/mainwindow.py" line="322"/>
<source>&amp;Help</source>
<translation>A&amp;bi</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="325"/>
<location filename="openlp/core/ui/mainwindow.py" line="323"/>
<source>Media Manager</source>
<translation>Meediahaldur</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="327"/>
<location filename="openlp/core/ui/mainwindow.py" line="325"/>
<source>Service Manager</source>
<translation>Teenistuse haldur</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="329"/>
<location filename="openlp/core/ui/mainwindow.py" line="327"/>
<source>Theme Manager</source>
<translation>Kujunduse haldur</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="331"/>
<location filename="openlp/core/ui/mainwindow.py" line="329"/>
<source>&amp;New</source>
<translation>&amp;Uus</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="334"/>
<location filename="openlp/core/ui/mainwindow.py" line="332"/>
<source>Ctrl+N</source>
<translation>Ctrl+N</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="335"/>
<location filename="openlp/core/ui/mainwindow.py" line="333"/>
<source>&amp;Open</source>
<translation>&amp;Ava</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="337"/>
<location filename="openlp/core/ui/mainwindow.py" line="335"/>
<source>Open an existing service.</source>
<translation>Olemasoleva teenistuse avamine.</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="339"/>
<location filename="openlp/core/ui/mainwindow.py" line="337"/>
<source>Ctrl+O</source>
<translation>Ctrl+O</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="340"/>
<location filename="openlp/core/ui/mainwindow.py" line="338"/>
<source>&amp;Save</source>
<translation>&amp;Salvesta</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="342"/>
<location filename="openlp/core/ui/mainwindow.py" line="340"/>
<source>Save the current service to disk.</source>
<translation>Praeguse teenistuse salvestamine kettale.</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="344"/>
<location filename="openlp/core/ui/mainwindow.py" line="342"/>
<source>Ctrl+S</source>
<translation>Ctrl+S</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="345"/>
<location filename="openlp/core/ui/mainwindow.py" line="343"/>
<source>Save &amp;As...</source>
<translation>Salvesta &amp;kui...</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="347"/>
<location filename="openlp/core/ui/mainwindow.py" line="345"/>
<source>Save Service As</source>
<translation>Salvesta teenistus kui</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="349"/>
<location filename="openlp/core/ui/mainwindow.py" line="347"/>
<source>Save the current service under a new name.</source>
<translation>Praeguse teenistuse salvestamine uue nimega.</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="351"/>
<location filename="openlp/core/ui/mainwindow.py" line="349"/>
<source>Ctrl+Shift+S</source>
<translation>Ctrl+Shift+S</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="358"/>
<location filename="openlp/core/ui/mainwindow.py" line="356"/>
<source>E&amp;xit</source>
<translation>&amp;Välju</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="360"/>
<location filename="openlp/core/ui/mainwindow.py" line="358"/>
<source>Quit OpenLP</source>
<translation>Lahku OpenLPst</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="362"/>
<location filename="openlp/core/ui/mainwindow.py" line="360"/>
<source>Alt+F4</source>
<translation>Alt+F4</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="368"/>
<location filename="openlp/core/ui/mainwindow.py" line="366"/>
<source>&amp;Theme</source>
<translation>&amp;Kujundus</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="376"/>
<location filename="openlp/core/ui/mainwindow.py" line="374"/>
<source>&amp;Configure OpenLP...</source>
<translation>&amp;Seadista OpenLP...</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="378"/>
<location filename="openlp/core/ui/mainwindow.py" line="376"/>
<source>&amp;Media Manager</source>
<translation>&amp;Meediahaldur</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="380"/>
<location filename="openlp/core/ui/mainwindow.py" line="378"/>
<source>Toggle Media Manager</source>
<translation>Meediahalduri lüliti</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="382"/>
<location filename="openlp/core/ui/mainwindow.py" line="380"/>
<source>Toggle the visibility of the media manager.</source>
<translation>Meediahalduri nähtavuse ümberlüliti.</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="384"/>
<location filename="openlp/core/ui/mainwindow.py" line="382"/>
<source>F8</source>
<translation>F8</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="386"/>
<location filename="openlp/core/ui/mainwindow.py" line="384"/>
<source>&amp;Theme Manager</source>
<translation>&amp;Kujunduse haldur</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="388"/>
<location filename="openlp/core/ui/mainwindow.py" line="386"/>
<source>Toggle Theme Manager</source>
<translation>Kujunduse halduri lüliti</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="390"/>
<location filename="openlp/core/ui/mainwindow.py" line="388"/>
<source>Toggle the visibility of the theme manager.</source>
<translation>Kujunduse halduri nähtavuse ümberlülitamine.</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="392"/>
<location filename="openlp/core/ui/mainwindow.py" line="390"/>
<source>F10</source>
<translation>F10</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="394"/>
<location filename="openlp/core/ui/mainwindow.py" line="392"/>
<source>&amp;Service Manager</source>
<translation>&amp;Teenistuse haldur</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="396"/>
<location filename="openlp/core/ui/mainwindow.py" line="394"/>
<source>Toggle Service Manager</source>
<translation>Teenistuse halduri lüliti</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="398"/>
<location filename="openlp/core/ui/mainwindow.py" line="396"/>
<source>Toggle the visibility of the service manager.</source>
<translation>Teenistuse halduri nähtavuse ümberlülitamine.</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="400"/>
<location filename="openlp/core/ui/mainwindow.py" line="398"/>
<source>F9</source>
<translation>F9</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="402"/>
<location filename="openlp/core/ui/mainwindow.py" line="400"/>
<source>&amp;Preview Panel</source>
<translation>&amp;Eelvaatluspaneel</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="404"/>
<location filename="openlp/core/ui/mainwindow.py" line="402"/>
<source>Toggle Preview Panel</source>
<translation>Eelvaatluspaneeli lüliti</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="406"/>
<location filename="openlp/core/ui/mainwindow.py" line="404"/>
<source>Toggle the visibility of the preview panel.</source>
<translation>Eelvaatluspaneeli nähtavuse ümberlülitamine.</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="408"/>
<location filename="openlp/core/ui/mainwindow.py" line="406"/>
<source>F11</source>
<translation>F11</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="410"/>
<location filename="openlp/core/ui/mainwindow.py" line="408"/>
<source>&amp;Live Panel</source>
<translation>&amp;Ekraani paneel</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="412"/>
<location filename="openlp/core/ui/mainwindow.py" line="410"/>
<source>Toggle Live Panel</source>
<translation>Ekraani paneeli lüliti</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="414"/>
<location filename="openlp/core/ui/mainwindow.py" line="412"/>
<source>Toggle the visibility of the live panel.</source>
<translation>Ekraani paneeli nähtavuse muutmine.</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="416"/>
<location filename="openlp/core/ui/mainwindow.py" line="414"/>
<source>F12</source>
<translation>F12</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="418"/>
<location filename="openlp/core/ui/mainwindow.py" line="416"/>
<source>&amp;Plugin List</source>
<translation>&amp;Pluginate loend</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="420"/>
<location filename="openlp/core/ui/mainwindow.py" line="418"/>
<source>List the Plugins</source>
<translation>Pluginate loend</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="422"/>
<location filename="openlp/core/ui/mainwindow.py" line="420"/>
<source>Alt+F7</source>
<translation>Alt+F7</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="424"/>
<location filename="openlp/core/ui/mainwindow.py" line="422"/>
<source>&amp;User Guide</source>
<translation>&amp;Kasutajajuhend</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="426"/>
<location filename="openlp/core/ui/mainwindow.py" line="424"/>
<source>&amp;About</source>
<translation>&amp;Lähemalt</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="427"/>
<location filename="openlp/core/ui/mainwindow.py" line="425"/>
<source>More information about OpenLP</source>
<translation>Lähem teave OpenLP kohta</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="429"/>
<location filename="openlp/core/ui/mainwindow.py" line="427"/>
<source>Ctrl+F1</source>
<translation>Ctrl+F1</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="431"/>
<location filename="openlp/core/ui/mainwindow.py" line="429"/>
<source>&amp;Online Help</source>
<translation>&amp;Abi veebis</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="433"/>
<location filename="openlp/core/ui/mainwindow.py" line="434"/>
<source>&amp;Web Site</source>
<translation>&amp;Veebileht</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="441"/>
<location filename="openlp/core/ui/mainwindow.py" line="442"/>
<source>Use the system language, if available.</source>
<translation>Kui saadaval, kasutatakse süsteemi keelt.</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="437"/>
<location filename="openlp/core/ui/mainwindow.py" line="438"/>
<source>Set the interface language to %s</source>
<translation>Kasutajaliidese keeleks %s määramine</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="443"/>
<location filename="openlp/core/ui/mainwindow.py" line="444"/>
<source>Add &amp;Tool...</source>
<translation>Lisa &amp;tööriist...</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="445"/>
<location filename="openlp/core/ui/mainwindow.py" line="446"/>
<source>Add an application to the list of tools.</source>
<translation>Rakenduse lisamine tööriistade loendisse.</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="451"/>
<location filename="openlp/core/ui/mainwindow.py" line="452"/>
<source>&amp;Default</source>
<translation>&amp;Vaikimisi</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="453"/>
<location filename="openlp/core/ui/mainwindow.py" line="454"/>
<source>Set the view mode back to the default.</source>
<translation>Vaikimisi kuvarežiimi taastamine.</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="455"/>
<location filename="openlp/core/ui/mainwindow.py" line="456"/>
<source>&amp;Setup</source>
<translation>&amp;Ettevalmistus</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="456"/>
<location filename="openlp/core/ui/mainwindow.py" line="457"/>
<source>Set the view mode to Setup.</source>
<translation>Ettevalmistuse kuvarežiimi valimine.</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="458"/>
<location filename="openlp/core/ui/mainwindow.py" line="459"/>
<source>&amp;Live</source>
<translation>&amp;Otse</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="459"/>
<location filename="openlp/core/ui/mainwindow.py" line="460"/>
<source>Set the view mode to Live.</source>
<translation>Vaate režiimiks ekraanivaate valimine.</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="649"/>
<location filename="openlp/core/ui/mainwindow.py" line="652"/>
<source>OpenLP Version Updated</source>
<translation>OpenLP uuendus</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="701"/>
<location filename="openlp/core/ui/mainwindow.py" line="704"/>
<source>OpenLP Main Display Blanked</source>
<translation>OpenLP peakuva on tühi</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="701"/>
<location filename="openlp/core/ui/mainwindow.py" line="704"/>
<source>The Main Display has been blanked out</source>
<translation>Peakuva on tühi</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="910"/>
<location filename="openlp/core/ui/mainwindow.py" line="920"/>
<source>Default Theme: %s</source>
<translation>Vaikimisi kujundus: %s</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="645"/>
<location filename="openlp/core/ui/mainwindow.py" line="648"/>
<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>
@ -2239,47 +2239,47 @@ Sa võid viimase versiooni alla laadida aadressilt http://openlp.org/.</translat
<translation>Eesti</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="372"/>
<location filename="openlp/core/ui/mainwindow.py" line="370"/>
<source>Configure &amp;Shortcuts...</source>
<translation>&amp;Kiirklahvide seadistamine...</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="832"/>
<location filename="openlp/core/ui/mainwindow.py" line="842"/>
<source>Close OpenLP</source>
<translation>OpenLP sulgemine</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="832"/>
<location filename="openlp/core/ui/mainwindow.py" line="842"/>
<source>Are you sure you want to close OpenLP?</source>
<translation>Kas oled kindel, et tahad OpenLP sulgeda?</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="354"/>
<location filename="openlp/core/ui/mainwindow.py" line="352"/>
<source>Print the current Service Order.</source>
<translation>Praeguse teenistuse järjekorra printimine.</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="356"/>
<location filename="openlp/core/ui/mainwindow.py" line="354"/>
<source>Ctrl+P</source>
<translation>Ctrl+P</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="374"/>
<location filename="openlp/core/ui/mainwindow.py" line="372"/>
<source>&amp;Configure Display Tags</source>
<translation>&amp;Kuvasiltide seadistamine</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="447"/>
<location filename="openlp/core/ui/mainwindow.py" line="448"/>
<source>Open &amp;Data Folder...</source>
<translation>Ava &amp;andmete kataloog...</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="449"/>
<location filename="openlp/core/ui/mainwindow.py" line="450"/>
<source>Open the folder where songs, bibles and other data resides.</source>
<translation>Laulude, Piiblite ja muude andmete kataloogi avamine.</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="439"/>
<location filename="openlp/core/ui/mainwindow.py" line="440"/>
<source>&amp;Autodetect</source>
<translation>&amp;Isetuvastus</translation>
</message>
@ -2451,12 +2451,12 @@ Sa võid viimase versiooni alla laadida aadressilt http://openlp.org/.</translat
<message>
<location filename="openlp/core/ui/screen.py" line="128"/>
<source>Screen</source>
<translation type="unfinished">Ekraan</translation>
<translation>Ekraan</translation>
</message>
<message>
<location filename="openlp/core/ui/screen.py" line="131"/>
<source>primary</source>
<translation type="unfinished">peamine</translation>
<translation>peamine</translation>
</message>
</context>
<context>
@ -3178,17 +3178,17 @@ Sisu kodeering ei ole UTF-8.</translation>
<message>
<location filename="openlp/core/ui/themewizard.py" line="446"/>
<source>Main Area Font Details</source>
<translation>Peamise kirja üksikasjad</translation>
<translation>Peamise teksti üksikasjad</translation>
</message>
<message>
<location filename="openlp/core/ui/themewizard.py" line="448"/>
<source>Define the font and display characteristics for the Display text</source>
<translation>Määra font ja teised kuvatava teksti omadused</translation>
<translation>Määra font ja teised teksti omadused</translation>
</message>
<message>
<location filename="openlp/core/ui/themewizard.py" line="473"/>
<source>Font:</source>
<translation>Kirjastiil:</translation>
<translation>Font:</translation>
</message>
<message>
<location filename="openlp/core/ui/themewizard.py" line="475"/>
@ -3228,7 +3228,7 @@ Sisu kodeering ei ole UTF-8.</translation>
<message>
<location filename="openlp/core/ui/themewizard.py" line="470"/>
<source>Define the font and display characteristics for the Footer text</source>
<translation>Määra jaluse kirja font ja muud omadused</translation>
<translation>Määra jaluse font ja muud omadused</translation>
</message>
<message>
<location filename="openlp/core/ui/themewizard.py" line="477"/>
@ -3366,7 +3366,7 @@ Sisu kodeering ei ole UTF-8.</translation>
<message>
<location filename="openlp/core/ui/themestab.py" line="110"/>
<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>Iga laulu jaoks kasutatakse sellele andmebaasis määratud kujundust. Kui laulul kujundus puudub, kasutatakse teenistuse kujundust. Kui teenistusel kujundus puudub, siis kasutatakse üleüldist kujundust.</translation>
<translation>Laul kuvatakse sellele andmebaasis määratud kujundusega. Kui laulul kujundus puudub, kasutatakse teenistuse kujundust. Kui teenistusel kujundus puudub, siis kasutatakse üleüldist kujundust.</translation>
</message>
<message>
<location filename="openlp/core/ui/themestab.py" line="115"/>
@ -4772,8 +4772,7 @@ Kodeering on vajalik märkide õige esitamise jaoks.</translation>
<message numerus="yes">
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="318"/>
<source>Are you sure you want to delete the %n selected song(s)?</source>
<translation>
<numerusform>Kas oled kindel, et tahad kustutada %n valitud laulu?</numerusform>
<translation type="unfinished">
<numerusform></numerusform>
</translation>
</message>

View File

@ -1445,102 +1445,102 @@ Version: %s
<context>
<name>OpenLP.FirstTimeWizard</name>
<message>
<location filename="openlp/core/ui/firsttimeform.py" line="61"/>
<location filename="openlp/core/ui/firsttimeform.py" line="62"/>
<source>Downloading %s...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimeform.py" line="231"/>
<location filename="openlp/core/ui/firsttimeform.py" line="243"/>
<source>Download complete. Click the finish button to start OpenLP.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimeform.py" line="240"/>
<location filename="openlp/core/ui/firsttimeform.py" line="252"/>
<source>Enabling selected plugins...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="193"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="191"/>
<source>First Time Wizard</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="195"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="193"/>
<source>Welcome to the First Time Wizard</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="199"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="197"/>
<source>This wizard will help you to configure OpenLP for initial use. Click the next button below to start the process of selection your initial options. </source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="203"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="201"/>
<source>Activate required Plugins</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="205"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="203"/>
<source>Select the Plugins you wish to use. </source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="207"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="205"/>
<source>Songs</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="208"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="206"/>
<source>Custom Text</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="210"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="208"/>
<source>Bible</source>
<translation type="unfinished">Bible</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="211"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="209"/>
<source>Images</source>
<translation type="unfinished">Images</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="213"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="211"/>
<source>Presentations</source>
<translation type="unfinished">Présentations</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="215"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="213"/>
<source>Media (Audio and Video)</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="217"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="215"/>
<source>Allow remote access</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="219"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="217"/>
<source>Monitor Song Usage</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="221"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="219"/>
<source>Allow Alerts</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="223"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="221"/>
<source>No Internet Connection</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="225"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="223"/>
<source>Unable to detect an Internet connection.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="228"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="226"/>
<source>No Internet connection was found. The First Time Wizard needs an Internet connection in order to be able to download sample songs, Bibles and themes.
To re-run the First Time Wizard and import this sample data at a later stage, press the cancel button now, check your Internet connection, and restart OpenLP.
@ -1549,67 +1549,67 @@ To cancel the First Time Wizard completely, press the finish button now.</source
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="236"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="234"/>
<source>Sample Songs</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="238"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="236"/>
<source>Select and download public domain songs.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="240"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="238"/>
<source>Sample Bibles</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="242"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="240"/>
<source>Select and download free Bibles.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="244"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="242"/>
<source>Sample Themes</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="246"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="244"/>
<source>Select and download sample themes.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="248"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="246"/>
<source>Default Settings</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="250"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="248"/>
<source>Set up default settings to be used by OpenLP.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="252"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="250"/>
<source>Setting Up And Importing</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="254"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="252"/>
<source>Please wait while OpenLP is set up and your data is imported.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="256"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="254"/>
<source>Default output display:</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="258"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="256"/>
<source>Select default theme:</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="260"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="258"/>
<source>Starting configuration process...</source>
<translation type="unfinished"></translation>
</message>
@ -1735,12 +1735,12 @@ To cancel the First Time Wizard completely, press the finish button now.</source
<context>
<name>OpenLP.LanguageManager</name>
<message>
<location filename="openlp/core/utils/languagemanager.py" line="132"/>
<location filename="openlp/core/utils/languagemanager.py" line="130"/>
<source>Language</source>
<translation>Langage</translation>
</message>
<message>
<location filename="openlp/core/utils/languagemanager.py" line="132"/>
<location filename="openlp/core/utils/languagemanager.py" line="130"/>
<source>Please restart OpenLP to use your new language setting.</source>
<translation>Veuillez redémarrer OpenLP pour utiliser votre nouvelle propriété de langue.</translation>
</message>
@ -1756,352 +1756,352 @@ To cancel the First Time Wizard completely, press the finish button now.</source
<context>
<name>OpenLP.MainWindow</name>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="315"/>
<location filename="openlp/core/ui/mainwindow.py" line="313"/>
<source>&amp;File</source>
<translation>&amp;Fichier</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="316"/>
<location filename="openlp/core/ui/mainwindow.py" line="314"/>
<source>&amp;Import</source>
<translation>&amp;Import</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="317"/>
<location filename="openlp/core/ui/mainwindow.py" line="315"/>
<source>&amp;Export</source>
<translation>&amp;Export</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="318"/>
<location filename="openlp/core/ui/mainwindow.py" line="316"/>
<source>&amp;View</source>
<translation>&amp;View</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="319"/>
<location filename="openlp/core/ui/mainwindow.py" line="317"/>
<source>M&amp;ode</source>
<translation>M&amp;ode</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="320"/>
<location filename="openlp/core/ui/mainwindow.py" line="318"/>
<source>&amp;Tools</source>
<translation>&amp;Outils</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="321"/>
<location filename="openlp/core/ui/mainwindow.py" line="319"/>
<source>&amp;Settings</source>
<translation>&amp;Options</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="370"/>
<location filename="openlp/core/ui/mainwindow.py" line="368"/>
<source>&amp;Language</source>
<translation>&amp;Langue</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="324"/>
<location filename="openlp/core/ui/mainwindow.py" line="322"/>
<source>&amp;Help</source>
<translation>&amp;Aide</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="325"/>
<location filename="openlp/core/ui/mainwindow.py" line="323"/>
<source>Media Manager</source>
<translation>Gestionnaire de médias</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="327"/>
<location filename="openlp/core/ui/mainwindow.py" line="325"/>
<source>Service Manager</source>
<translation>Gestionnaire de services</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="329"/>
<location filename="openlp/core/ui/mainwindow.py" line="327"/>
<source>Theme Manager</source>
<translation>Gestionnaire de thèmes</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="331"/>
<location filename="openlp/core/ui/mainwindow.py" line="329"/>
<source>&amp;New</source>
<translation>&amp;Nouveau</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="334"/>
<location filename="openlp/core/ui/mainwindow.py" line="332"/>
<source>Ctrl+N</source>
<translation>Ctrl+N</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="335"/>
<location filename="openlp/core/ui/mainwindow.py" line="333"/>
<source>&amp;Open</source>
<translation>&amp;Open</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="337"/>
<location filename="openlp/core/ui/mainwindow.py" line="335"/>
<source>Open an existing service.</source>
<translation>Ouvre un service existant.</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="339"/>
<location filename="openlp/core/ui/mainwindow.py" line="337"/>
<source>Ctrl+O</source>
<translation>Ctrl+O</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="340"/>
<location filename="openlp/core/ui/mainwindow.py" line="338"/>
<source>&amp;Save</source>
<translation>&amp;Enregistre</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="342"/>
<location filename="openlp/core/ui/mainwindow.py" line="340"/>
<source>Save the current service to disk.</source>
<translation>Enregistre le service courant sur le disque.</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="344"/>
<location filename="openlp/core/ui/mainwindow.py" line="342"/>
<source>Ctrl+S</source>
<translation>Ctrl+S</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="345"/>
<location filename="openlp/core/ui/mainwindow.py" line="343"/>
<source>Save &amp;As...</source>
<translation>Enregistre &amp;sous...</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="347"/>
<location filename="openlp/core/ui/mainwindow.py" line="345"/>
<source>Save Service As</source>
<translation>Enregistre le service sous</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="349"/>
<location filename="openlp/core/ui/mainwindow.py" line="347"/>
<source>Save the current service under a new name.</source>
<translation>Enregistre le service courant sous un nouveau nom.</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="351"/>
<location filename="openlp/core/ui/mainwindow.py" line="349"/>
<source>Ctrl+Shift+S</source>
<translation>Ctrl+Shift+S</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="358"/>
<location filename="openlp/core/ui/mainwindow.py" line="356"/>
<source>E&amp;xit</source>
<translation>&amp;Quitter</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="360"/>
<location filename="openlp/core/ui/mainwindow.py" line="358"/>
<source>Quit OpenLP</source>
<translation>Quitter OpenLP</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="362"/>
<location filename="openlp/core/ui/mainwindow.py" line="360"/>
<source>Alt+F4</source>
<translation>Alt+F4</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="368"/>
<location filename="openlp/core/ui/mainwindow.py" line="366"/>
<source>&amp;Theme</source>
<translation>&amp;Thème</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="372"/>
<location filename="openlp/core/ui/mainwindow.py" line="370"/>
<source>Configure &amp;Shortcuts...</source>
<translation>Personnalise les &amp;raccourcis...</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="376"/>
<location filename="openlp/core/ui/mainwindow.py" line="374"/>
<source>&amp;Configure OpenLP...</source>
<translation>&amp;Personnalise OpenLP...</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="378"/>
<location filename="openlp/core/ui/mainwindow.py" line="376"/>
<source>&amp;Media Manager</source>
<translation>Gestionnaire de &amp;médias</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="380"/>
<location filename="openlp/core/ui/mainwindow.py" line="378"/>
<source>Toggle Media Manager</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="382"/>
<location filename="openlp/core/ui/mainwindow.py" line="380"/>
<source>Toggle the visibility of the media manager.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="384"/>
<location filename="openlp/core/ui/mainwindow.py" line="382"/>
<source>F8</source>
<translation>F8</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="386"/>
<location filename="openlp/core/ui/mainwindow.py" line="384"/>
<source>&amp;Theme Manager</source>
<translation>Gestionnaire de &amp;thèmes</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="388"/>
<location filename="openlp/core/ui/mainwindow.py" line="386"/>
<source>Toggle Theme Manager</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="390"/>
<location filename="openlp/core/ui/mainwindow.py" line="388"/>
<source>Toggle the visibility of the theme manager.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="392"/>
<location filename="openlp/core/ui/mainwindow.py" line="390"/>
<source>F10</source>
<translation>F10</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="394"/>
<location filename="openlp/core/ui/mainwindow.py" line="392"/>
<source>&amp;Service Manager</source>
<translation>Gestionnaire de &amp;services</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="396"/>
<location filename="openlp/core/ui/mainwindow.py" line="394"/>
<source>Toggle Service Manager</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="398"/>
<location filename="openlp/core/ui/mainwindow.py" line="396"/>
<source>Toggle the visibility of the service manager.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="400"/>
<location filename="openlp/core/ui/mainwindow.py" line="398"/>
<source>F9</source>
<translation>F9</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="402"/>
<location filename="openlp/core/ui/mainwindow.py" line="400"/>
<source>&amp;Preview Panel</source>
<translation>Panneau de &amp;prévisualisation</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="404"/>
<location filename="openlp/core/ui/mainwindow.py" line="402"/>
<source>Toggle Preview Panel</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="406"/>
<location filename="openlp/core/ui/mainwindow.py" line="404"/>
<source>Toggle the visibility of the preview panel.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="408"/>
<location filename="openlp/core/ui/mainwindow.py" line="406"/>
<source>F11</source>
<translation>F11</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="410"/>
<location filename="openlp/core/ui/mainwindow.py" line="408"/>
<source>&amp;Live Panel</source>
<translation>Panneau du &amp;direct</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="412"/>
<location filename="openlp/core/ui/mainwindow.py" line="410"/>
<source>Toggle Live Panel</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="414"/>
<location filename="openlp/core/ui/mainwindow.py" line="412"/>
<source>Toggle the visibility of the live panel.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="416"/>
<location filename="openlp/core/ui/mainwindow.py" line="414"/>
<source>F12</source>
<translation>F12</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="418"/>
<location filename="openlp/core/ui/mainwindow.py" line="416"/>
<source>&amp;Plugin List</source>
<translation>Liste des &amp;modules</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="420"/>
<location filename="openlp/core/ui/mainwindow.py" line="418"/>
<source>List the Plugins</source>
<translation>Liste des modules</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="422"/>
<location filename="openlp/core/ui/mainwindow.py" line="420"/>
<source>Alt+F7</source>
<translation>Alt+F7</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="424"/>
<location filename="openlp/core/ui/mainwindow.py" line="422"/>
<source>&amp;User Guide</source>
<translation>&amp;Guide utilisateur</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="426"/>
<location filename="openlp/core/ui/mainwindow.py" line="424"/>
<source>&amp;About</source>
<translation>&amp;Á propos</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="427"/>
<location filename="openlp/core/ui/mainwindow.py" line="425"/>
<source>More information about OpenLP</source>
<translation>Plus d&apos;information sur OpenLP</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="429"/>
<location filename="openlp/core/ui/mainwindow.py" line="427"/>
<source>Ctrl+F1</source>
<translation>Ctrl+F1</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="431"/>
<location filename="openlp/core/ui/mainwindow.py" line="429"/>
<source>&amp;Online Help</source>
<translation>&amp;Aide en ligne</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="433"/>
<location filename="openlp/core/ui/mainwindow.py" line="434"/>
<source>&amp;Web Site</source>
<translation>Site &amp;Web</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="441"/>
<location filename="openlp/core/ui/mainwindow.py" line="442"/>
<source>Use the system language, if available.</source>
<translation>Utilise le langage système, si disponible.</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="437"/>
<location filename="openlp/core/ui/mainwindow.py" line="438"/>
<source>Set the interface language to %s</source>
<translation>Défini la langue de l&apos;interface à %s</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="443"/>
<location filename="openlp/core/ui/mainwindow.py" line="444"/>
<source>Add &amp;Tool...</source>
<translation>Ajoute un &amp;outils..</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="445"/>
<location filename="openlp/core/ui/mainwindow.py" line="446"/>
<source>Add an application to the list of tools.</source>
<translation>Ajoute une application a la liste des outils.</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="451"/>
<location filename="openlp/core/ui/mainwindow.py" line="452"/>
<source>&amp;Default</source>
<translation>&amp;Défaut</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="453"/>
<location filename="openlp/core/ui/mainwindow.py" line="454"/>
<source>Set the view mode back to the default.</source>
<translation>Redéfini le mode vue comme par défaut.</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="455"/>
<location filename="openlp/core/ui/mainwindow.py" line="456"/>
<source>&amp;Setup</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="456"/>
<location filename="openlp/core/ui/mainwindow.py" line="457"/>
<source>Set the view mode to Setup.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="458"/>
<location filename="openlp/core/ui/mainwindow.py" line="459"/>
<source>&amp;Live</source>
<translation>&amp;Direct</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="459"/>
<location filename="openlp/core/ui/mainwindow.py" line="460"/>
<source>Set the view mode to Live.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="645"/>
<location filename="openlp/core/ui/mainwindow.py" line="648"/>
<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>
@ -2110,32 +2110,32 @@ You can download the latest version from http://openlp.org/.</source>
Vous pouvez télécharger la dernière version depuis http://openlp.org/.</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="649"/>
<location filename="openlp/core/ui/mainwindow.py" line="652"/>
<source>OpenLP Version Updated</source>
<translation>Version d&apos;OpenLP mis a jours</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="701"/>
<location filename="openlp/core/ui/mainwindow.py" line="704"/>
<source>OpenLP Main Display Blanked</source>
<translation>OpenLP affichage principale noirci</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="701"/>
<location filename="openlp/core/ui/mainwindow.py" line="704"/>
<source>The Main Display has been blanked out</source>
<translation>L&apos;affichage principale a é noirci</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="832"/>
<location filename="openlp/core/ui/mainwindow.py" line="842"/>
<source>Close OpenLP</source>
<translation>Ferme OpenLP</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="832"/>
<location filename="openlp/core/ui/mainwindow.py" line="842"/>
<source>Are you sure you want to close OpenLP?</source>
<translation>Êtes vous sur de vouloir fermer OpenLP ?</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="910"/>
<location filename="openlp/core/ui/mainwindow.py" line="920"/>
<source>Default Theme: %s</source>
<translation>Thème par défaut : %s</translation>
</message>
@ -2146,32 +2146,32 @@ Vous pouvez télécharger la dernière version depuis http://openlp.org/.</trans
<translation>Anglais</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="354"/>
<location filename="openlp/core/ui/mainwindow.py" line="352"/>
<source>Print the current Service Order.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="356"/>
<location filename="openlp/core/ui/mainwindow.py" line="354"/>
<source>Ctrl+P</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="447"/>
<location filename="openlp/core/ui/mainwindow.py" line="448"/>
<source>Open &amp;Data Folder...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="449"/>
<location filename="openlp/core/ui/mainwindow.py" line="450"/>
<source>Open the folder where songs, bibles and other data resides.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="374"/>
<location filename="openlp/core/ui/mainwindow.py" line="372"/>
<source>&amp;Configure Display Tags</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="439"/>
<location filename="openlp/core/ui/mainwindow.py" line="440"/>
<source>&amp;Autodetect</source>
<translation type="unfinished"></translation>
</message>

File diff suppressed because it is too large Load Diff

View File

@ -1451,102 +1451,102 @@ Version: %s
<context>
<name>OpenLP.FirstTimeWizard</name>
<message>
<location filename="openlp/core/ui/firsttimeform.py" line="61"/>
<location filename="openlp/core/ui/firsttimeform.py" line="62"/>
<source>Downloading %s...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimeform.py" line="231"/>
<location filename="openlp/core/ui/firsttimeform.py" line="243"/>
<source>Download complete. Click the finish button to start OpenLP.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimeform.py" line="240"/>
<location filename="openlp/core/ui/firsttimeform.py" line="252"/>
<source>Enabling selected plugins...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="193"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="191"/>
<source>First Time Wizard</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="195"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="193"/>
<source>Welcome to the First Time Wizard</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="199"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="197"/>
<source>This wizard will help you to configure OpenLP for initial use. Click the next button below to start the process of selection your initial options. </source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="203"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="201"/>
<source>Activate required Plugins</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="205"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="203"/>
<source>Select the Plugins you wish to use. </source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="207"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="205"/>
<source>Songs</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="208"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="206"/>
<source>Custom Text</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="210"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="208"/>
<source>Bible</source>
<translation type="unfinished">Alkitab</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="211"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="209"/>
<source>Images</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="213"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="211"/>
<source>Presentations</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="215"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="213"/>
<source>Media (Audio and Video)</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="217"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="215"/>
<source>Allow remote access</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="219"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="217"/>
<source>Monitor Song Usage</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="221"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="219"/>
<source>Allow Alerts</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="223"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="221"/>
<source>No Internet Connection</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="225"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="223"/>
<source>Unable to detect an Internet connection.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="228"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="226"/>
<source>No Internet connection was found. The First Time Wizard needs an Internet connection in order to be able to download sample songs, Bibles and themes.
To re-run the First Time Wizard and import this sample data at a later stage, press the cancel button now, check your Internet connection, and restart OpenLP.
@ -1555,67 +1555,67 @@ To cancel the First Time Wizard completely, press the finish button now.</source
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="236"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="234"/>
<source>Sample Songs</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="238"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="236"/>
<source>Select and download public domain songs.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="240"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="238"/>
<source>Sample Bibles</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="242"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="240"/>
<source>Select and download free Bibles.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="244"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="242"/>
<source>Sample Themes</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="246"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="244"/>
<source>Select and download sample themes.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="248"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="246"/>
<source>Default Settings</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="250"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="248"/>
<source>Set up default settings to be used by OpenLP.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="252"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="250"/>
<source>Setting Up And Importing</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="254"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="252"/>
<source>Please wait while OpenLP is set up and your data is imported.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="256"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="254"/>
<source>Default output display:</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="258"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="256"/>
<source>Select default theme:</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="260"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="258"/>
<source>Starting configuration process...</source>
<translation type="unfinished"></translation>
</message>
@ -1741,12 +1741,12 @@ To cancel the First Time Wizard completely, press the finish button now.</source
<context>
<name>OpenLP.LanguageManager</name>
<message>
<location filename="openlp/core/utils/languagemanager.py" line="132"/>
<location filename="openlp/core/utils/languagemanager.py" line="130"/>
<source>Language</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/utils/languagemanager.py" line="132"/>
<location filename="openlp/core/utils/languagemanager.py" line="130"/>
<source>Please restart OpenLP to use your new language setting.</source>
<translation type="unfinished"></translation>
</message>
@ -1762,369 +1762,369 @@ To cancel the First Time Wizard completely, press the finish button now.</source
<context>
<name>OpenLP.MainWindow</name>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="315"/>
<location filename="openlp/core/ui/mainwindow.py" line="313"/>
<source>&amp;File</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="316"/>
<location filename="openlp/core/ui/mainwindow.py" line="314"/>
<source>&amp;Import</source>
<translation type="unfinished">&amp;Impor</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="317"/>
<location filename="openlp/core/ui/mainwindow.py" line="315"/>
<source>&amp;Export</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="318"/>
<location filename="openlp/core/ui/mainwindow.py" line="316"/>
<source>&amp;View</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="319"/>
<location filename="openlp/core/ui/mainwindow.py" line="317"/>
<source>M&amp;ode</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="320"/>
<location filename="openlp/core/ui/mainwindow.py" line="318"/>
<source>&amp;Tools</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="321"/>
<location filename="openlp/core/ui/mainwindow.py" line="319"/>
<source>&amp;Settings</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="370"/>
<location filename="openlp/core/ui/mainwindow.py" line="368"/>
<source>&amp;Language</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="324"/>
<location filename="openlp/core/ui/mainwindow.py" line="322"/>
<source>&amp;Help</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="325"/>
<location filename="openlp/core/ui/mainwindow.py" line="323"/>
<source>Media Manager</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="327"/>
<location filename="openlp/core/ui/mainwindow.py" line="325"/>
<source>Service Manager</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="329"/>
<location filename="openlp/core/ui/mainwindow.py" line="327"/>
<source>Theme Manager</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="331"/>
<location filename="openlp/core/ui/mainwindow.py" line="329"/>
<source>&amp;New</source>
<translation type="unfinished">&amp;Baru</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="334"/>
<location filename="openlp/core/ui/mainwindow.py" line="332"/>
<source>Ctrl+N</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="335"/>
<location filename="openlp/core/ui/mainwindow.py" line="333"/>
<source>&amp;Open</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="337"/>
<location filename="openlp/core/ui/mainwindow.py" line="335"/>
<source>Open an existing service.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="339"/>
<location filename="openlp/core/ui/mainwindow.py" line="337"/>
<source>Ctrl+O</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="340"/>
<location filename="openlp/core/ui/mainwindow.py" line="338"/>
<source>&amp;Save</source>
<translation type="unfinished">&amp;Simpan</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="342"/>
<location filename="openlp/core/ui/mainwindow.py" line="340"/>
<source>Save the current service to disk.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="344"/>
<location filename="openlp/core/ui/mainwindow.py" line="342"/>
<source>Ctrl+S</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="345"/>
<location filename="openlp/core/ui/mainwindow.py" line="343"/>
<source>Save &amp;As...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="347"/>
<location filename="openlp/core/ui/mainwindow.py" line="345"/>
<source>Save Service As</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="349"/>
<location filename="openlp/core/ui/mainwindow.py" line="347"/>
<source>Save the current service under a new name.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="351"/>
<location filename="openlp/core/ui/mainwindow.py" line="349"/>
<source>Ctrl+Shift+S</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="358"/>
<location filename="openlp/core/ui/mainwindow.py" line="356"/>
<source>E&amp;xit</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="360"/>
<location filename="openlp/core/ui/mainwindow.py" line="358"/>
<source>Quit OpenLP</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="362"/>
<location filename="openlp/core/ui/mainwindow.py" line="360"/>
<source>Alt+F4</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="368"/>
<location filename="openlp/core/ui/mainwindow.py" line="366"/>
<source>&amp;Theme</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="376"/>
<location filename="openlp/core/ui/mainwindow.py" line="374"/>
<source>&amp;Configure OpenLP...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="378"/>
<location filename="openlp/core/ui/mainwindow.py" line="376"/>
<source>&amp;Media Manager</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="380"/>
<location filename="openlp/core/ui/mainwindow.py" line="378"/>
<source>Toggle Media Manager</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="382"/>
<location filename="openlp/core/ui/mainwindow.py" line="380"/>
<source>Toggle the visibility of the media manager.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="384"/>
<location filename="openlp/core/ui/mainwindow.py" line="382"/>
<source>F8</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="386"/>
<location filename="openlp/core/ui/mainwindow.py" line="384"/>
<source>&amp;Theme Manager</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="388"/>
<location filename="openlp/core/ui/mainwindow.py" line="386"/>
<source>Toggle Theme Manager</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="390"/>
<location filename="openlp/core/ui/mainwindow.py" line="388"/>
<source>Toggle the visibility of the theme manager.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="392"/>
<location filename="openlp/core/ui/mainwindow.py" line="390"/>
<source>F10</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="394"/>
<location filename="openlp/core/ui/mainwindow.py" line="392"/>
<source>&amp;Service Manager</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="396"/>
<location filename="openlp/core/ui/mainwindow.py" line="394"/>
<source>Toggle Service Manager</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="398"/>
<location filename="openlp/core/ui/mainwindow.py" line="396"/>
<source>Toggle the visibility of the service manager.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="400"/>
<location filename="openlp/core/ui/mainwindow.py" line="398"/>
<source>F9</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="402"/>
<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="404"/>
<location filename="openlp/core/ui/mainwindow.py" line="402"/>
<source>Toggle Preview Panel</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="406"/>
<location filename="openlp/core/ui/mainwindow.py" line="404"/>
<source>Toggle the visibility of the preview panel.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="408"/>
<location filename="openlp/core/ui/mainwindow.py" line="406"/>
<source>F11</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="410"/>
<location filename="openlp/core/ui/mainwindow.py" line="408"/>
<source>&amp;Live Panel</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="412"/>
<location filename="openlp/core/ui/mainwindow.py" line="410"/>
<source>Toggle Live Panel</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="414"/>
<location filename="openlp/core/ui/mainwindow.py" line="412"/>
<source>Toggle the visibility of the live panel.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="416"/>
<location filename="openlp/core/ui/mainwindow.py" line="414"/>
<source>F12</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="418"/>
<location filename="openlp/core/ui/mainwindow.py" line="416"/>
<source>&amp;Plugin List</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="420"/>
<location filename="openlp/core/ui/mainwindow.py" line="418"/>
<source>List the Plugins</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="422"/>
<location filename="openlp/core/ui/mainwindow.py" line="420"/>
<source>Alt+F7</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="424"/>
<location filename="openlp/core/ui/mainwindow.py" line="422"/>
<source>&amp;User Guide</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="426"/>
<location filename="openlp/core/ui/mainwindow.py" line="424"/>
<source>&amp;About</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="427"/>
<location filename="openlp/core/ui/mainwindow.py" line="425"/>
<source>More information about OpenLP</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="429"/>
<location filename="openlp/core/ui/mainwindow.py" line="427"/>
<source>Ctrl+F1</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="431"/>
<location filename="openlp/core/ui/mainwindow.py" line="429"/>
<source>&amp;Online Help</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="433"/>
<location filename="openlp/core/ui/mainwindow.py" line="434"/>
<source>&amp;Web Site</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="441"/>
<location filename="openlp/core/ui/mainwindow.py" line="442"/>
<source>Use the system language, if available.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="437"/>
<location filename="openlp/core/ui/mainwindow.py" line="438"/>
<source>Set the interface language to %s</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="443"/>
<location filename="openlp/core/ui/mainwindow.py" line="444"/>
<source>Add &amp;Tool...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="445"/>
<location filename="openlp/core/ui/mainwindow.py" line="446"/>
<source>Add an application to the list of tools.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="451"/>
<location filename="openlp/core/ui/mainwindow.py" line="452"/>
<source>&amp;Default</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="453"/>
<location filename="openlp/core/ui/mainwindow.py" line="454"/>
<source>Set the view mode back to the default.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="455"/>
<location filename="openlp/core/ui/mainwindow.py" line="456"/>
<source>&amp;Setup</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="456"/>
<location filename="openlp/core/ui/mainwindow.py" line="457"/>
<source>Set the view mode to Setup.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="458"/>
<location filename="openlp/core/ui/mainwindow.py" line="459"/>
<source>&amp;Live</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="459"/>
<location filename="openlp/core/ui/mainwindow.py" line="460"/>
<source>Set the view mode to Live.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="645"/>
<location filename="openlp/core/ui/mainwindow.py" line="648"/>
<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="649"/>
<location filename="openlp/core/ui/mainwindow.py" line="652"/>
<source>OpenLP Version Updated</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="701"/>
<location filename="openlp/core/ui/mainwindow.py" line="704"/>
<source>OpenLP Main Display Blanked</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="701"/>
<location filename="openlp/core/ui/mainwindow.py" line="704"/>
<source>The Main Display has been blanked out</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="910"/>
<location filename="openlp/core/ui/mainwindow.py" line="920"/>
<source>Default Theme: %s</source>
<translation type="unfinished"></translation>
</message>
@ -2135,47 +2135,47 @@ 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="372"/>
<location filename="openlp/core/ui/mainwindow.py" line="370"/>
<source>Configure &amp;Shortcuts...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="832"/>
<location filename="openlp/core/ui/mainwindow.py" line="842"/>
<source>Close OpenLP</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="832"/>
<location filename="openlp/core/ui/mainwindow.py" line="842"/>
<source>Are you sure you want to close OpenLP?</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="354"/>
<location filename="openlp/core/ui/mainwindow.py" line="352"/>
<source>Print the current Service Order.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="356"/>
<location filename="openlp/core/ui/mainwindow.py" line="354"/>
<source>Ctrl+P</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="447"/>
<location filename="openlp/core/ui/mainwindow.py" line="448"/>
<source>Open &amp;Data Folder...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="449"/>
<location filename="openlp/core/ui/mainwindow.py" line="450"/>
<source>Open the folder where songs, bibles and other data resides.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="374"/>
<location filename="openlp/core/ui/mainwindow.py" line="372"/>
<source>&amp;Configure Display Tags</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="439"/>
<location filename="openlp/core/ui/mainwindow.py" line="440"/>
<source>&amp;Autodetect</source>
<translation type="unfinished"></translation>
</message>

View File

@ -1551,102 +1551,102 @@ Version: %s
<context>
<name>OpenLP.FirstTimeWizard</name>
<message>
<location filename="openlp/core/ui/firsttimeform.py" line="61"/>
<location filename="openlp/core/ui/firsttimeform.py" line="62"/>
<source>Downloading %s...</source>
<translation> %s...</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimeform.py" line="231"/>
<location filename="openlp/core/ui/firsttimeform.py" line="243"/>
<source>Download complete. Click the finish button to start OpenLP.</source>
<translation>OpenLPを開始します</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimeform.py" line="240"/>
<location filename="openlp/core/ui/firsttimeform.py" line="252"/>
<source>Enabling selected plugins...</source>
<translation>...</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="193"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="191"/>
<source>First Time Wizard</source>
<translation></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="195"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="193"/>
<source>Welcome to the First Time Wizard</source>
<translation></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="199"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="197"/>
<source>This wizard will help you to configure OpenLP for initial use. Click the next button below to start the process of selection your initial options. </source>
<translation>OpenLPを設定するお手伝いをしますOpenLPを設定していきましょう</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="203"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="201"/>
<source>Activate required Plugins</source>
<translation></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="205"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="203"/>
<source>Select the Plugins you wish to use. </source>
<translation></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="207"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="205"/>
<source>Songs</source>
<translation></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="208"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="206"/>
<source>Custom Text</source>
<translation></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="210"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="208"/>
<source>Bible</source>
<translation></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="211"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="209"/>
<source>Images</source>
<translation></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="213"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="211"/>
<source>Presentations</source>
<translation></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="215"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="213"/>
<source>Media (Audio and Video)</source>
<translation>()</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="217"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="215"/>
<source>Allow remote access</source>
<translation></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="219"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="217"/>
<source>Monitor Song Usage</source>
<translation></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="221"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="219"/>
<source>Allow Alerts</source>
<translation></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="223"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="221"/>
<source>No Internet Connection</source>
<translation></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="225"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="223"/>
<source>Unable to detect an Internet connection.</source>
<translation></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="228"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="226"/>
<source>No Internet connection was found. The First Time Wizard needs an Internet connection in order to be able to download sample songs, Bibles and themes.
To re-run the First Time Wizard and import this sample data at a later stage, press the cancel button now, check your Internet connection, and restart OpenLP.
@ -1659,67 +1659,67 @@ To cancel the First Time Wizard completely, press the finish button now.</source
</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="236"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="234"/>
<source>Sample Songs</source>
<translation></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="238"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="236"/>
<source>Select and download public domain songs.</source>
<translation type="unfinished"></translation>
<translation></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="240"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="238"/>
<source>Sample Bibles</source>
<translation></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="242"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="240"/>
<source>Select and download free Bibles.</source>
<translation></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="244"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="242"/>
<source>Sample Themes</source>
<translation></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="246"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="244"/>
<source>Select and download sample themes.</source>
<translation></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="248"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="246"/>
<source>Default Settings</source>
<translation></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="250"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="248"/>
<source>Set up default settings to be used by OpenLP.</source>
<translation>OpenLPに使われるようにセットアップします</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="252"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="250"/>
<source>Setting Up And Importing</source>
<translation></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="254"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="252"/>
<source>Please wait while OpenLP is set up and your data is imported.</source>
<translation>OpenLPがセットアップされ</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="256"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="254"/>
<source>Default output display:</source>
<translation>:</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="258"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="256"/>
<source>Select default theme:</source>
<translation>:</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="260"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="258"/>
<source>Starting configuration process...</source>
<translation>...</translation>
</message>
@ -1845,12 +1845,12 @@ To cancel the First Time Wizard completely, press the finish button now.</source
<context>
<name>OpenLP.LanguageManager</name>
<message>
<location filename="openlp/core/utils/languagemanager.py" line="132"/>
<location filename="openlp/core/utils/languagemanager.py" line="130"/>
<source>Language</source>
<translation></translation>
</message>
<message>
<location filename="openlp/core/utils/languagemanager.py" line="132"/>
<location filename="openlp/core/utils/languagemanager.py" line="130"/>
<source>Please restart OpenLP to use your new language setting.</source>
<translation>使OpenLPを再起動してください</translation>
</message>
@ -1866,347 +1866,347 @@ To cancel the First Time Wizard completely, press the finish button now.</source
<context>
<name>OpenLP.MainWindow</name>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="315"/>
<location filename="openlp/core/ui/mainwindow.py" line="313"/>
<source>&amp;File</source>
<translation>(&amp;F)</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="316"/>
<location filename="openlp/core/ui/mainwindow.py" line="314"/>
<source>&amp;Import</source>
<translation>(&amp;I)</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="317"/>
<location filename="openlp/core/ui/mainwindow.py" line="315"/>
<source>&amp;Export</source>
<translation>(&amp;E)</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="318"/>
<location filename="openlp/core/ui/mainwindow.py" line="316"/>
<source>&amp;View</source>
<translation>(&amp;V)</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="319"/>
<location filename="openlp/core/ui/mainwindow.py" line="317"/>
<source>M&amp;ode</source>
<translation>(&amp;O)</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="320"/>
<location filename="openlp/core/ui/mainwindow.py" line="318"/>
<source>&amp;Tools</source>
<translation>(&amp;T)</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="321"/>
<location filename="openlp/core/ui/mainwindow.py" line="319"/>
<source>&amp;Settings</source>
<translation>(&amp;S)</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="370"/>
<location filename="openlp/core/ui/mainwindow.py" line="368"/>
<source>&amp;Language</source>
<translation>(&amp;L)</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="324"/>
<location filename="openlp/core/ui/mainwindow.py" line="322"/>
<source>&amp;Help</source>
<translation>(&amp;H)</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="325"/>
<location filename="openlp/core/ui/mainwindow.py" line="323"/>
<source>Media Manager</source>
<translation></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="327"/>
<location filename="openlp/core/ui/mainwindow.py" line="325"/>
<source>Service Manager</source>
<translation></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="329"/>
<location filename="openlp/core/ui/mainwindow.py" line="327"/>
<source>Theme Manager</source>
<translation></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="331"/>
<location filename="openlp/core/ui/mainwindow.py" line="329"/>
<source>&amp;New</source>
<translation>(&amp;N)</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="334"/>
<location filename="openlp/core/ui/mainwindow.py" line="332"/>
<source>Ctrl+N</source>
<translation></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="335"/>
<location filename="openlp/core/ui/mainwindow.py" line="333"/>
<source>&amp;Open</source>
<translation>(&amp;O)</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="337"/>
<location filename="openlp/core/ui/mainwindow.py" line="335"/>
<source>Open an existing service.</source>
<translation></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="339"/>
<location filename="openlp/core/ui/mainwindow.py" line="337"/>
<source>Ctrl+O</source>
<translation></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="340"/>
<location filename="openlp/core/ui/mainwindow.py" line="338"/>
<source>&amp;Save</source>
<translation>(&amp;S)</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="342"/>
<location filename="openlp/core/ui/mainwindow.py" line="340"/>
<source>Save the current service to disk.</source>
<translation></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="344"/>
<location filename="openlp/core/ui/mainwindow.py" line="342"/>
<source>Ctrl+S</source>
<translation></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="345"/>
<location filename="openlp/core/ui/mainwindow.py" line="343"/>
<source>Save &amp;As...</source>
<translation>(&amp;A)...</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="347"/>
<location filename="openlp/core/ui/mainwindow.py" line="345"/>
<source>Save Service As</source>
<translation></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="349"/>
<location filename="openlp/core/ui/mainwindow.py" line="347"/>
<source>Save the current service under a new name.</source>
<translation></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="351"/>
<location filename="openlp/core/ui/mainwindow.py" line="349"/>
<source>Ctrl+Shift+S</source>
<translation></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="358"/>
<location filename="openlp/core/ui/mainwindow.py" line="356"/>
<source>E&amp;xit</source>
<translation>(&amp;X)</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="360"/>
<location filename="openlp/core/ui/mainwindow.py" line="358"/>
<source>Quit OpenLP</source>
<translation>Open LPを終了</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="362"/>
<location filename="openlp/core/ui/mainwindow.py" line="360"/>
<source>Alt+F4</source>
<translation></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="368"/>
<location filename="openlp/core/ui/mainwindow.py" line="366"/>
<source>&amp;Theme</source>
<translation>(&amp;T)</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="376"/>
<location filename="openlp/core/ui/mainwindow.py" line="374"/>
<source>&amp;Configure OpenLP...</source>
<translation>OpenLPの設定(&amp;C)...</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="378"/>
<location filename="openlp/core/ui/mainwindow.py" line="376"/>
<source>&amp;Media Manager</source>
<translation>(&amp;M)</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="380"/>
<location filename="openlp/core/ui/mainwindow.py" line="378"/>
<source>Toggle Media Manager</source>
<translation></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="382"/>
<location filename="openlp/core/ui/mainwindow.py" line="380"/>
<source>Toggle the visibility of the media manager.</source>
<translation></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="384"/>
<location filename="openlp/core/ui/mainwindow.py" line="382"/>
<source>F8</source>
<translation></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="386"/>
<location filename="openlp/core/ui/mainwindow.py" line="384"/>
<source>&amp;Theme Manager</source>
<translation>(&amp;T)</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="388"/>
<location filename="openlp/core/ui/mainwindow.py" line="386"/>
<source>Toggle Theme Manager</source>
<translation></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="390"/>
<location filename="openlp/core/ui/mainwindow.py" line="388"/>
<source>Toggle the visibility of the theme manager.</source>
<translation></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="392"/>
<location filename="openlp/core/ui/mainwindow.py" line="390"/>
<source>F10</source>
<translation></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="394"/>
<location filename="openlp/core/ui/mainwindow.py" line="392"/>
<source>&amp;Service Manager</source>
<translation>(&amp;S)</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="396"/>
<location filename="openlp/core/ui/mainwindow.py" line="394"/>
<source>Toggle Service Manager</source>
<translation></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="398"/>
<location filename="openlp/core/ui/mainwindow.py" line="396"/>
<source>Toggle the visibility of the service manager.</source>
<translation></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="400"/>
<location filename="openlp/core/ui/mainwindow.py" line="398"/>
<source>F9</source>
<translation></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="402"/>
<location filename="openlp/core/ui/mainwindow.py" line="400"/>
<source>&amp;Preview Panel</source>
<translation>(&amp;P)</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="404"/>
<location filename="openlp/core/ui/mainwindow.py" line="402"/>
<source>Toggle Preview Panel</source>
<translation></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="406"/>
<location filename="openlp/core/ui/mainwindow.py" line="404"/>
<source>Toggle the visibility of the preview panel.</source>
<translation></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="408"/>
<location filename="openlp/core/ui/mainwindow.py" line="406"/>
<source>F11</source>
<translation></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="410"/>
<location filename="openlp/core/ui/mainwindow.py" line="408"/>
<source>&amp;Live Panel</source>
<translation>(&amp;L)</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="412"/>
<location filename="openlp/core/ui/mainwindow.py" line="410"/>
<source>Toggle Live Panel</source>
<translation></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="414"/>
<location filename="openlp/core/ui/mainwindow.py" line="412"/>
<source>Toggle the visibility of the live panel.</source>
<translation></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="416"/>
<location filename="openlp/core/ui/mainwindow.py" line="414"/>
<source>F12</source>
<translation></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="418"/>
<location filename="openlp/core/ui/mainwindow.py" line="416"/>
<source>&amp;Plugin List</source>
<translation>(&amp;P)</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="420"/>
<location filename="openlp/core/ui/mainwindow.py" line="418"/>
<source>List the Plugins</source>
<translation></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="422"/>
<location filename="openlp/core/ui/mainwindow.py" line="420"/>
<source>Alt+F7</source>
<translation></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="424"/>
<location filename="openlp/core/ui/mainwindow.py" line="422"/>
<source>&amp;User Guide</source>
<translation>(&amp;U)</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="426"/>
<location filename="openlp/core/ui/mainwindow.py" line="424"/>
<source>&amp;About</source>
<translation>(&amp;A)</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="427"/>
<location filename="openlp/core/ui/mainwindow.py" line="425"/>
<source>More information about OpenLP</source>
<translation>OpenLPの詳細情報</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="429"/>
<location filename="openlp/core/ui/mainwindow.py" line="427"/>
<source>Ctrl+F1</source>
<translation></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="431"/>
<location filename="openlp/core/ui/mainwindow.py" line="429"/>
<source>&amp;Online Help</source>
<translation>(&amp;O)</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="433"/>
<location filename="openlp/core/ui/mainwindow.py" line="434"/>
<source>&amp;Web Site</source>
<translation>(&amp;W)</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="441"/>
<location filename="openlp/core/ui/mainwindow.py" line="442"/>
<source>Use the system language, if available.</source>
<translation>使</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="437"/>
<location filename="openlp/core/ui/mainwindow.py" line="438"/>
<source>Set the interface language to %s</source>
<translation>%sに設定</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="443"/>
<location filename="openlp/core/ui/mainwindow.py" line="444"/>
<source>Add &amp;Tool...</source>
<translation>(&amp;T)...</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="445"/>
<location filename="openlp/core/ui/mainwindow.py" line="446"/>
<source>Add an application to the list of tools.</source>
<translation></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="451"/>
<location filename="openlp/core/ui/mainwindow.py" line="452"/>
<source>&amp;Default</source>
<translation>(&amp;D)</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="453"/>
<location filename="openlp/core/ui/mainwindow.py" line="454"/>
<source>Set the view mode back to the default.</source>
<translation></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="455"/>
<location filename="openlp/core/ui/mainwindow.py" line="456"/>
<source>&amp;Setup</source>
<translation>(&amp;S)</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="456"/>
<location filename="openlp/core/ui/mainwindow.py" line="457"/>
<source>Set the view mode to Setup.</source>
<translation></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="458"/>
<location filename="openlp/core/ui/mainwindow.py" line="459"/>
<source>&amp;Live</source>
<translation>(&amp;L)</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="459"/>
<location filename="openlp/core/ui/mainwindow.py" line="460"/>
<source>Set the view mode to Live.</source>
<translation></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="645"/>
<location filename="openlp/core/ui/mainwindow.py" line="648"/>
<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>
@ -2215,22 +2215,22 @@ You can download the latest version from http://openlp.org/.</source>
http://openlp.org/から最新版がダウンロード可能です。</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="649"/>
<location filename="openlp/core/ui/mainwindow.py" line="652"/>
<source>OpenLP Version Updated</source>
<translation>OpenLPのバージョンアップ完了</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="701"/>
<location filename="openlp/core/ui/mainwindow.py" line="704"/>
<source>OpenLP Main Display Blanked</source>
<translation>OpenLPのプライマリディスプレイがブランクです</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="701"/>
<location filename="openlp/core/ui/mainwindow.py" line="704"/>
<source>The Main Display has been blanked out</source>
<translation>OpenLPのプライマリディスプレイがブランクになりました</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="910"/>
<location filename="openlp/core/ui/mainwindow.py" line="920"/>
<source>Default Theme: %s</source>
<translation></translation>
</message>
@ -2241,47 +2241,47 @@ http://openlp.org/から最新版がダウンロード可能です。</translati
<translation></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="372"/>
<location filename="openlp/core/ui/mainwindow.py" line="370"/>
<source>Configure &amp;Shortcuts...</source>
<translation>(&amp;S)...</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="832"/>
<location filename="openlp/core/ui/mainwindow.py" line="842"/>
<source>Close OpenLP</source>
<translation>OpenLPの終了</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="832"/>
<location filename="openlp/core/ui/mainwindow.py" line="842"/>
<source>Are you sure you want to close OpenLP?</source>
<translation>OpenLPを終了してもよろしいですか?</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="354"/>
<location filename="openlp/core/ui/mainwindow.py" line="352"/>
<source>Print the current Service Order.</source>
<translation></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="356"/>
<location filename="openlp/core/ui/mainwindow.py" line="354"/>
<source>Ctrl+P</source>
<translation></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="374"/>
<location filename="openlp/core/ui/mainwindow.py" line="372"/>
<source>&amp;Configure Display Tags</source>
<translation>(&amp;C)</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="447"/>
<location filename="openlp/core/ui/mainwindow.py" line="448"/>
<source>Open &amp;Data Folder...</source>
<translation>(&amp;D)...</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="449"/>
<location filename="openlp/core/ui/mainwindow.py" line="450"/>
<source>Open the folder where songs, bibles and other data resides.</source>
<translation></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="439"/>
<location filename="openlp/core/ui/mainwindow.py" line="440"/>
<source>&amp;Autodetect</source>
<translation>(&amp;A)</translation>
</message>

View File

@ -1441,102 +1441,102 @@ Version: %s
<context>
<name>OpenLP.FirstTimeWizard</name>
<message>
<location filename="openlp/core/ui/firsttimeform.py" line="61"/>
<location filename="openlp/core/ui/firsttimeform.py" line="62"/>
<source>Downloading %s...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimeform.py" line="231"/>
<location filename="openlp/core/ui/firsttimeform.py" line="243"/>
<source>Download complete. Click the finish button to start OpenLP.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimeform.py" line="240"/>
<location filename="openlp/core/ui/firsttimeform.py" line="252"/>
<source>Enabling selected plugins...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="193"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="191"/>
<source>First Time Wizard</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="195"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="193"/>
<source>Welcome to the First Time Wizard</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="199"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="197"/>
<source>This wizard will help you to configure OpenLP for initial use. Click the next button below to start the process of selection your initial options. </source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="203"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="201"/>
<source>Activate required Plugins</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="205"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="203"/>
<source>Select the Plugins you wish to use. </source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="207"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="205"/>
<source>Songs</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="208"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="206"/>
<source>Custom Text</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="210"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="208"/>
<source>Bible</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="211"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="209"/>
<source>Images</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="213"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="211"/>
<source>Presentations</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="215"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="213"/>
<source>Media (Audio and Video)</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="217"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="215"/>
<source>Allow remote access</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="219"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="217"/>
<source>Monitor Song Usage</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="221"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="219"/>
<source>Allow Alerts</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="223"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="221"/>
<source>No Internet Connection</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="225"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="223"/>
<source>Unable to detect an Internet connection.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="228"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="226"/>
<source>No Internet connection was found. The First Time Wizard needs an Internet connection in order to be able to download sample songs, Bibles and themes.
To re-run the First Time Wizard and import this sample data at a later stage, press the cancel button now, check your Internet connection, and restart OpenLP.
@ -1545,67 +1545,67 @@ To cancel the First Time Wizard completely, press the finish button now.</source
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="236"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="234"/>
<source>Sample Songs</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="238"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="236"/>
<source>Select and download public domain songs.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="240"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="238"/>
<source>Sample Bibles</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="242"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="240"/>
<source>Select and download free Bibles.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="244"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="242"/>
<source>Sample Themes</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="246"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="244"/>
<source>Select and download sample themes.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="248"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="246"/>
<source>Default Settings</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="250"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="248"/>
<source>Set up default settings to be used by OpenLP.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="252"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="250"/>
<source>Setting Up And Importing</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="254"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="252"/>
<source>Please wait while OpenLP is set up and your data is imported.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="256"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="254"/>
<source>Default output display:</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="258"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="256"/>
<source>Select default theme:</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="260"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="258"/>
<source>Starting configuration process...</source>
<translation type="unfinished"></translation>
</message>
@ -1731,12 +1731,12 @@ To cancel the First Time Wizard completely, press the finish button now.</source
<context>
<name>OpenLP.LanguageManager</name>
<message>
<location filename="openlp/core/utils/languagemanager.py" line="132"/>
<location filename="openlp/core/utils/languagemanager.py" line="130"/>
<source>Language</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/utils/languagemanager.py" line="132"/>
<location filename="openlp/core/utils/languagemanager.py" line="130"/>
<source>Please restart OpenLP to use your new language setting.</source>
<translation type="unfinished"></translation>
</message>
@ -1752,369 +1752,369 @@ To cancel the First Time Wizard completely, press the finish button now.</source
<context>
<name>OpenLP.MainWindow</name>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="315"/>
<location filename="openlp/core/ui/mainwindow.py" line="313"/>
<source>&amp;File</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="316"/>
<location filename="openlp/core/ui/mainwindow.py" line="314"/>
<source>&amp;Import</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="317"/>
<location filename="openlp/core/ui/mainwindow.py" line="315"/>
<source>&amp;Export</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="318"/>
<location filename="openlp/core/ui/mainwindow.py" line="316"/>
<source>&amp;View</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="319"/>
<location filename="openlp/core/ui/mainwindow.py" line="317"/>
<source>M&amp;ode</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="320"/>
<location filename="openlp/core/ui/mainwindow.py" line="318"/>
<source>&amp;Tools</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="321"/>
<location filename="openlp/core/ui/mainwindow.py" line="319"/>
<source>&amp;Settings</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="370"/>
<location filename="openlp/core/ui/mainwindow.py" line="368"/>
<source>&amp;Language</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="324"/>
<location filename="openlp/core/ui/mainwindow.py" line="322"/>
<source>&amp;Help</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="325"/>
<location filename="openlp/core/ui/mainwindow.py" line="323"/>
<source>Media Manager</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="327"/>
<location filename="openlp/core/ui/mainwindow.py" line="325"/>
<source>Service Manager</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="329"/>
<location filename="openlp/core/ui/mainwindow.py" line="327"/>
<source>Theme Manager</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="331"/>
<location filename="openlp/core/ui/mainwindow.py" line="329"/>
<source>&amp;New</source>
<translation type="unfinished"> (&amp;N)</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="334"/>
<location filename="openlp/core/ui/mainwindow.py" line="332"/>
<source>Ctrl+N</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="335"/>
<location filename="openlp/core/ui/mainwindow.py" line="333"/>
<source>&amp;Open</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="337"/>
<location filename="openlp/core/ui/mainwindow.py" line="335"/>
<source>Open an existing service.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="339"/>
<location filename="openlp/core/ui/mainwindow.py" line="337"/>
<source>Ctrl+O</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="340"/>
<location filename="openlp/core/ui/mainwindow.py" line="338"/>
<source>&amp;Save</source>
<translation type="unfinished">(&amp;S)</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="342"/>
<location filename="openlp/core/ui/mainwindow.py" line="340"/>
<source>Save the current service to disk.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="344"/>
<location filename="openlp/core/ui/mainwindow.py" line="342"/>
<source>Ctrl+S</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="345"/>
<location filename="openlp/core/ui/mainwindow.py" line="343"/>
<source>Save &amp;As...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="347"/>
<location filename="openlp/core/ui/mainwindow.py" line="345"/>
<source>Save Service As</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="349"/>
<location filename="openlp/core/ui/mainwindow.py" line="347"/>
<source>Save the current service under a new name.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="351"/>
<location filename="openlp/core/ui/mainwindow.py" line="349"/>
<source>Ctrl+Shift+S</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="358"/>
<location filename="openlp/core/ui/mainwindow.py" line="356"/>
<source>E&amp;xit</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="360"/>
<location filename="openlp/core/ui/mainwindow.py" line="358"/>
<source>Quit OpenLP</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="362"/>
<location filename="openlp/core/ui/mainwindow.py" line="360"/>
<source>Alt+F4</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="368"/>
<location filename="openlp/core/ui/mainwindow.py" line="366"/>
<source>&amp;Theme</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="376"/>
<location filename="openlp/core/ui/mainwindow.py" line="374"/>
<source>&amp;Configure OpenLP...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="378"/>
<location filename="openlp/core/ui/mainwindow.py" line="376"/>
<source>&amp;Media Manager</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="380"/>
<location filename="openlp/core/ui/mainwindow.py" line="378"/>
<source>Toggle Media Manager</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="382"/>
<location filename="openlp/core/ui/mainwindow.py" line="380"/>
<source>Toggle the visibility of the media manager.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="384"/>
<location filename="openlp/core/ui/mainwindow.py" line="382"/>
<source>F8</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="386"/>
<location filename="openlp/core/ui/mainwindow.py" line="384"/>
<source>&amp;Theme Manager</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="388"/>
<location filename="openlp/core/ui/mainwindow.py" line="386"/>
<source>Toggle Theme Manager</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="390"/>
<location filename="openlp/core/ui/mainwindow.py" line="388"/>
<source>Toggle the visibility of the theme manager.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="392"/>
<location filename="openlp/core/ui/mainwindow.py" line="390"/>
<source>F10</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="394"/>
<location filename="openlp/core/ui/mainwindow.py" line="392"/>
<source>&amp;Service Manager</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="396"/>
<location filename="openlp/core/ui/mainwindow.py" line="394"/>
<source>Toggle Service Manager</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="398"/>
<location filename="openlp/core/ui/mainwindow.py" line="396"/>
<source>Toggle the visibility of the service manager.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="400"/>
<location filename="openlp/core/ui/mainwindow.py" line="398"/>
<source>F9</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="402"/>
<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="404"/>
<location filename="openlp/core/ui/mainwindow.py" line="402"/>
<source>Toggle Preview Panel</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="406"/>
<location filename="openlp/core/ui/mainwindow.py" line="404"/>
<source>Toggle the visibility of the preview panel.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="408"/>
<location filename="openlp/core/ui/mainwindow.py" line="406"/>
<source>F11</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="410"/>
<location filename="openlp/core/ui/mainwindow.py" line="408"/>
<source>&amp;Live Panel</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="412"/>
<location filename="openlp/core/ui/mainwindow.py" line="410"/>
<source>Toggle Live Panel</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="414"/>
<location filename="openlp/core/ui/mainwindow.py" line="412"/>
<source>Toggle the visibility of the live panel.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="416"/>
<location filename="openlp/core/ui/mainwindow.py" line="414"/>
<source>F12</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="418"/>
<location filename="openlp/core/ui/mainwindow.py" line="416"/>
<source>&amp;Plugin List</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="420"/>
<location filename="openlp/core/ui/mainwindow.py" line="418"/>
<source>List the Plugins</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="422"/>
<location filename="openlp/core/ui/mainwindow.py" line="420"/>
<source>Alt+F7</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="424"/>
<location filename="openlp/core/ui/mainwindow.py" line="422"/>
<source>&amp;User Guide</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="426"/>
<location filename="openlp/core/ui/mainwindow.py" line="424"/>
<source>&amp;About</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="427"/>
<location filename="openlp/core/ui/mainwindow.py" line="425"/>
<source>More information about OpenLP</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="429"/>
<location filename="openlp/core/ui/mainwindow.py" line="427"/>
<source>Ctrl+F1</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="431"/>
<location filename="openlp/core/ui/mainwindow.py" line="429"/>
<source>&amp;Online Help</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="433"/>
<location filename="openlp/core/ui/mainwindow.py" line="434"/>
<source>&amp;Web Site</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="441"/>
<location filename="openlp/core/ui/mainwindow.py" line="442"/>
<source>Use the system language, if available.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="437"/>
<location filename="openlp/core/ui/mainwindow.py" line="438"/>
<source>Set the interface language to %s</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="443"/>
<location filename="openlp/core/ui/mainwindow.py" line="444"/>
<source>Add &amp;Tool...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="445"/>
<location filename="openlp/core/ui/mainwindow.py" line="446"/>
<source>Add an application to the list of tools.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="451"/>
<location filename="openlp/core/ui/mainwindow.py" line="452"/>
<source>&amp;Default</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="453"/>
<location filename="openlp/core/ui/mainwindow.py" line="454"/>
<source>Set the view mode back to the default.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="455"/>
<location filename="openlp/core/ui/mainwindow.py" line="456"/>
<source>&amp;Setup</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="456"/>
<location filename="openlp/core/ui/mainwindow.py" line="457"/>
<source>Set the view mode to Setup.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="458"/>
<location filename="openlp/core/ui/mainwindow.py" line="459"/>
<source>&amp;Live</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="459"/>
<location filename="openlp/core/ui/mainwindow.py" line="460"/>
<source>Set the view mode to Live.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="645"/>
<location filename="openlp/core/ui/mainwindow.py" line="648"/>
<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="649"/>
<location filename="openlp/core/ui/mainwindow.py" line="652"/>
<source>OpenLP Version Updated</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="701"/>
<location filename="openlp/core/ui/mainwindow.py" line="704"/>
<source>OpenLP Main Display Blanked</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="701"/>
<location filename="openlp/core/ui/mainwindow.py" line="704"/>
<source>The Main Display has been blanked out</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="910"/>
<location filename="openlp/core/ui/mainwindow.py" line="920"/>
<source>Default Theme: %s</source>
<translation type="unfinished"></translation>
</message>
@ -2125,47 +2125,47 @@ 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="372"/>
<location filename="openlp/core/ui/mainwindow.py" line="370"/>
<source>Configure &amp;Shortcuts...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="832"/>
<location filename="openlp/core/ui/mainwindow.py" line="842"/>
<source>Close OpenLP</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="832"/>
<location filename="openlp/core/ui/mainwindow.py" line="842"/>
<source>Are you sure you want to close OpenLP?</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="354"/>
<location filename="openlp/core/ui/mainwindow.py" line="352"/>
<source>Print the current Service Order.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="356"/>
<location filename="openlp/core/ui/mainwindow.py" line="354"/>
<source>Ctrl+P</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="447"/>
<location filename="openlp/core/ui/mainwindow.py" line="448"/>
<source>Open &amp;Data Folder...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="449"/>
<location filename="openlp/core/ui/mainwindow.py" line="450"/>
<source>Open the folder where songs, bibles and other data resides.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="374"/>
<location filename="openlp/core/ui/mainwindow.py" line="372"/>
<source>&amp;Configure Display Tags</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="439"/>
<location filename="openlp/core/ui/mainwindow.py" line="440"/>
<source>&amp;Autodetect</source>
<translation type="unfinished"></translation>
</message>

View File

@ -1440,102 +1440,102 @@ Version: %s
<context>
<name>OpenLP.FirstTimeWizard</name>
<message>
<location filename="openlp/core/ui/firsttimeform.py" line="61"/>
<location filename="openlp/core/ui/firsttimeform.py" line="62"/>
<source>Downloading %s...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimeform.py" line="231"/>
<location filename="openlp/core/ui/firsttimeform.py" line="243"/>
<source>Download complete. Click the finish button to start OpenLP.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimeform.py" line="240"/>
<location filename="openlp/core/ui/firsttimeform.py" line="252"/>
<source>Enabling selected plugins...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="193"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="191"/>
<source>First Time Wizard</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="195"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="193"/>
<source>Welcome to the First Time Wizard</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="199"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="197"/>
<source>This wizard will help you to configure OpenLP for initial use. Click the next button below to start the process of selection your initial options. </source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="203"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="201"/>
<source>Activate required Plugins</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="205"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="203"/>
<source>Select the Plugins you wish to use. </source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="207"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="205"/>
<source>Songs</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="208"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="206"/>
<source>Custom Text</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="210"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="208"/>
<source>Bible</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="211"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="209"/>
<source>Images</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="213"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="211"/>
<source>Presentations</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="215"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="213"/>
<source>Media (Audio and Video)</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="217"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="215"/>
<source>Allow remote access</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="219"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="217"/>
<source>Monitor Song Usage</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="221"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="219"/>
<source>Allow Alerts</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="223"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="221"/>
<source>No Internet Connection</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="225"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="223"/>
<source>Unable to detect an Internet connection.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="228"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="226"/>
<source>No Internet connection was found. The First Time Wizard needs an Internet connection in order to be able to download sample songs, Bibles and themes.
To re-run the First Time Wizard and import this sample data at a later stage, press the cancel button now, check your Internet connection, and restart OpenLP.
@ -1544,67 +1544,67 @@ To cancel the First Time Wizard completely, press the finish button now.</source
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="236"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="234"/>
<source>Sample Songs</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="238"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="236"/>
<source>Select and download public domain songs.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="240"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="238"/>
<source>Sample Bibles</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="242"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="240"/>
<source>Select and download free Bibles.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="244"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="242"/>
<source>Sample Themes</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="246"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="244"/>
<source>Select and download sample themes.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="248"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="246"/>
<source>Default Settings</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="250"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="248"/>
<source>Set up default settings to be used by OpenLP.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="252"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="250"/>
<source>Setting Up And Importing</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="254"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="252"/>
<source>Please wait while OpenLP is set up and your data is imported.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="256"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="254"/>
<source>Default output display:</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="258"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="256"/>
<source>Select default theme:</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="260"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="258"/>
<source>Starting configuration process...</source>
<translation type="unfinished"></translation>
</message>
@ -1730,12 +1730,12 @@ To cancel the First Time Wizard completely, press the finish button now.</source
<context>
<name>OpenLP.LanguageManager</name>
<message>
<location filename="openlp/core/utils/languagemanager.py" line="132"/>
<location filename="openlp/core/utils/languagemanager.py" line="130"/>
<source>Language</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/utils/languagemanager.py" line="132"/>
<location filename="openlp/core/utils/languagemanager.py" line="130"/>
<source>Please restart OpenLP to use your new language setting.</source>
<translation type="unfinished"></translation>
</message>
@ -1751,369 +1751,369 @@ To cancel the First Time Wizard completely, press the finish button now.</source
<context>
<name>OpenLP.MainWindow</name>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="315"/>
<location filename="openlp/core/ui/mainwindow.py" line="313"/>
<source>&amp;File</source>
<translation type="unfinished">&amp;Fil </translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="316"/>
<location filename="openlp/core/ui/mainwindow.py" line="314"/>
<source>&amp;Import</source>
<translation type="unfinished">&amp;Import</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="317"/>
<location filename="openlp/core/ui/mainwindow.py" line="315"/>
<source>&amp;Export</source>
<translation type="unfinished">&amp;Eksporter </translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="318"/>
<location filename="openlp/core/ui/mainwindow.py" line="316"/>
<source>&amp;View</source>
<translation type="unfinished">&amp;Vis</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="319"/>
<location filename="openlp/core/ui/mainwindow.py" line="317"/>
<source>M&amp;ode</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="320"/>
<location filename="openlp/core/ui/mainwindow.py" line="318"/>
<source>&amp;Tools</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="321"/>
<location filename="openlp/core/ui/mainwindow.py" line="319"/>
<source>&amp;Settings</source>
<translation type="unfinished">&amp;Innstillinger </translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="370"/>
<location filename="openlp/core/ui/mainwindow.py" line="368"/>
<source>&amp;Language</source>
<translation type="unfinished">&amp;Språk</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="324"/>
<location filename="openlp/core/ui/mainwindow.py" line="322"/>
<source>&amp;Help</source>
<translation type="unfinished">&amp;Hjelp </translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="325"/>
<location filename="openlp/core/ui/mainwindow.py" line="323"/>
<source>Media Manager</source>
<translation type="unfinished">Innholdselementer</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="327"/>
<location filename="openlp/core/ui/mainwindow.py" line="325"/>
<source>Service Manager</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="329"/>
<location filename="openlp/core/ui/mainwindow.py" line="327"/>
<source>Theme Manager</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="331"/>
<location filename="openlp/core/ui/mainwindow.py" line="329"/>
<source>&amp;New</source>
<translation type="unfinished">&amp;Ny</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="334"/>
<location filename="openlp/core/ui/mainwindow.py" line="332"/>
<source>Ctrl+N</source>
<translation type="unfinished">Ctrl+N</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="335"/>
<location filename="openlp/core/ui/mainwindow.py" line="333"/>
<source>&amp;Open</source>
<translation type="unfinished">&amp;Åpne</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="337"/>
<location filename="openlp/core/ui/mainwindow.py" line="335"/>
<source>Open an existing service.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="339"/>
<location filename="openlp/core/ui/mainwindow.py" line="337"/>
<source>Ctrl+O</source>
<translation type="unfinished">Ctrl+O</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="340"/>
<location filename="openlp/core/ui/mainwindow.py" line="338"/>
<source>&amp;Save</source>
<translation type="unfinished">&amp;Lagre</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="342"/>
<location filename="openlp/core/ui/mainwindow.py" line="340"/>
<source>Save the current service to disk.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="344"/>
<location filename="openlp/core/ui/mainwindow.py" line="342"/>
<source>Ctrl+S</source>
<translation type="unfinished">Ctrl+S</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="345"/>
<location filename="openlp/core/ui/mainwindow.py" line="343"/>
<source>Save &amp;As...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="347"/>
<location filename="openlp/core/ui/mainwindow.py" line="345"/>
<source>Save Service As</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="349"/>
<location filename="openlp/core/ui/mainwindow.py" line="347"/>
<source>Save the current service under a new name.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="351"/>
<location filename="openlp/core/ui/mainwindow.py" line="349"/>
<source>Ctrl+Shift+S</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="358"/>
<location filename="openlp/core/ui/mainwindow.py" line="356"/>
<source>E&amp;xit</source>
<translation type="unfinished">&amp;Avslutt </translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="360"/>
<location filename="openlp/core/ui/mainwindow.py" line="358"/>
<source>Quit OpenLP</source>
<translation type="unfinished">Avslutt OpenLP</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="362"/>
<location filename="openlp/core/ui/mainwindow.py" line="360"/>
<source>Alt+F4</source>
<translation type="unfinished">Alt+F4</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="368"/>
<location filename="openlp/core/ui/mainwindow.py" line="366"/>
<source>&amp;Theme</source>
<translation type="unfinished">&amp;Tema</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="376"/>
<location filename="openlp/core/ui/mainwindow.py" line="374"/>
<source>&amp;Configure OpenLP...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="378"/>
<location filename="openlp/core/ui/mainwindow.py" line="376"/>
<source>&amp;Media Manager</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="380"/>
<location filename="openlp/core/ui/mainwindow.py" line="378"/>
<source>Toggle Media Manager</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="382"/>
<location filename="openlp/core/ui/mainwindow.py" line="380"/>
<source>Toggle the visibility of the media manager.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="384"/>
<location filename="openlp/core/ui/mainwindow.py" line="382"/>
<source>F8</source>
<translation type="unfinished">F8</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="386"/>
<location filename="openlp/core/ui/mainwindow.py" line="384"/>
<source>&amp;Theme Manager</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="388"/>
<location filename="openlp/core/ui/mainwindow.py" line="386"/>
<source>Toggle Theme Manager</source>
<translation type="unfinished">Åpne tema-behandler</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="390"/>
<location filename="openlp/core/ui/mainwindow.py" line="388"/>
<source>Toggle the visibility of the theme manager.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="392"/>
<location filename="openlp/core/ui/mainwindow.py" line="390"/>
<source>F10</source>
<translation type="unfinished">F10</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="394"/>
<location filename="openlp/core/ui/mainwindow.py" line="392"/>
<source>&amp;Service Manager</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="396"/>
<location filename="openlp/core/ui/mainwindow.py" line="394"/>
<source>Toggle Service Manager</source>
<translation type="unfinished">Vis møteplanlegger</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="398"/>
<location filename="openlp/core/ui/mainwindow.py" line="396"/>
<source>Toggle the visibility of the service manager.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="400"/>
<location filename="openlp/core/ui/mainwindow.py" line="398"/>
<source>F9</source>
<translation type="unfinished">F9</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="402"/>
<location filename="openlp/core/ui/mainwindow.py" line="400"/>
<source>&amp;Preview Panel</source>
<translation type="unfinished">&amp;Forhåndsvisningspanel </translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="404"/>
<location filename="openlp/core/ui/mainwindow.py" line="402"/>
<source>Toggle Preview Panel</source>
<translation type="unfinished">Vis forhåndsvisningspanel </translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="406"/>
<location filename="openlp/core/ui/mainwindow.py" line="404"/>
<source>Toggle the visibility of the preview panel.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="408"/>
<location filename="openlp/core/ui/mainwindow.py" line="406"/>
<source>F11</source>
<translation type="unfinished">F11</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="410"/>
<location filename="openlp/core/ui/mainwindow.py" line="408"/>
<source>&amp;Live Panel</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="412"/>
<location filename="openlp/core/ui/mainwindow.py" line="410"/>
<source>Toggle Live Panel</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="414"/>
<location filename="openlp/core/ui/mainwindow.py" line="412"/>
<source>Toggle the visibility of the live panel.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="416"/>
<location filename="openlp/core/ui/mainwindow.py" line="414"/>
<source>F12</source>
<translation type="unfinished">F12</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="418"/>
<location filename="openlp/core/ui/mainwindow.py" line="416"/>
<source>&amp;Plugin List</source>
<translation type="unfinished">&amp;Tillegsliste</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="420"/>
<location filename="openlp/core/ui/mainwindow.py" line="418"/>
<source>List the Plugins</source>
<translation type="unfinished">Hent liste over tillegg</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="422"/>
<location filename="openlp/core/ui/mainwindow.py" line="420"/>
<source>Alt+F7</source>
<translation type="unfinished">ALT+F7</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="424"/>
<location filename="openlp/core/ui/mainwindow.py" line="422"/>
<source>&amp;User Guide</source>
<translation type="unfinished">&amp;Brukerveiledning </translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="426"/>
<location filename="openlp/core/ui/mainwindow.py" line="424"/>
<source>&amp;About</source>
<translation type="unfinished">&amp;Om</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="427"/>
<location filename="openlp/core/ui/mainwindow.py" line="425"/>
<source>More information about OpenLP</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="429"/>
<location filename="openlp/core/ui/mainwindow.py" line="427"/>
<source>Ctrl+F1</source>
<translation type="unfinished">Ctrl+F1</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="431"/>
<location filename="openlp/core/ui/mainwindow.py" line="429"/>
<source>&amp;Online Help</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="433"/>
<location filename="openlp/core/ui/mainwindow.py" line="434"/>
<source>&amp;Web Site</source>
<translation type="unfinished">&amp;Internett side</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="441"/>
<location filename="openlp/core/ui/mainwindow.py" line="442"/>
<source>Use the system language, if available.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="437"/>
<location filename="openlp/core/ui/mainwindow.py" line="438"/>
<source>Set the interface language to %s</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="443"/>
<location filename="openlp/core/ui/mainwindow.py" line="444"/>
<source>Add &amp;Tool...</source>
<translation type="unfinished">Legg til &amp; Verktøy...</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="445"/>
<location filename="openlp/core/ui/mainwindow.py" line="446"/>
<source>Add an application to the list of tools.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="451"/>
<location filename="openlp/core/ui/mainwindow.py" line="452"/>
<source>&amp;Default</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="453"/>
<location filename="openlp/core/ui/mainwindow.py" line="454"/>
<source>Set the view mode back to the default.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="455"/>
<location filename="openlp/core/ui/mainwindow.py" line="456"/>
<source>&amp;Setup</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="456"/>
<location filename="openlp/core/ui/mainwindow.py" line="457"/>
<source>Set the view mode to Setup.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="458"/>
<location filename="openlp/core/ui/mainwindow.py" line="459"/>
<source>&amp;Live</source>
<translation type="unfinished">&amp;Direkte</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="459"/>
<location filename="openlp/core/ui/mainwindow.py" line="460"/>
<source>Set the view mode to Live.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="645"/>
<location filename="openlp/core/ui/mainwindow.py" line="648"/>
<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="649"/>
<location filename="openlp/core/ui/mainwindow.py" line="652"/>
<source>OpenLP Version Updated</source>
<translation type="unfinished">OpenLP versjonen har blitt oppdatert</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="701"/>
<location filename="openlp/core/ui/mainwindow.py" line="704"/>
<source>OpenLP Main Display Blanked</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="701"/>
<location filename="openlp/core/ui/mainwindow.py" line="704"/>
<source>The Main Display has been blanked out</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="910"/>
<location filename="openlp/core/ui/mainwindow.py" line="920"/>
<source>Default Theme: %s</source>
<translation type="unfinished"></translation>
</message>
@ -2124,47 +2124,47 @@ You can download the latest version from http://openlp.org/.</source>
<translation type="unfinished">Norsk</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="372"/>
<location filename="openlp/core/ui/mainwindow.py" line="370"/>
<source>Configure &amp;Shortcuts...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="832"/>
<location filename="openlp/core/ui/mainwindow.py" line="842"/>
<source>Close OpenLP</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="832"/>
<location filename="openlp/core/ui/mainwindow.py" line="842"/>
<source>Are you sure you want to close OpenLP?</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="354"/>
<location filename="openlp/core/ui/mainwindow.py" line="352"/>
<source>Print the current Service Order.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="356"/>
<location filename="openlp/core/ui/mainwindow.py" line="354"/>
<source>Ctrl+P</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="447"/>
<location filename="openlp/core/ui/mainwindow.py" line="448"/>
<source>Open &amp;Data Folder...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="449"/>
<location filename="openlp/core/ui/mainwindow.py" line="450"/>
<source>Open the folder where songs, bibles and other data resides.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="374"/>
<location filename="openlp/core/ui/mainwindow.py" line="372"/>
<source>&amp;Configure Display Tags</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="439"/>
<location filename="openlp/core/ui/mainwindow.py" line="440"/>
<source>&amp;Autodetect</source>
<translation type="unfinished"></translation>
</message>

View File

@ -1370,7 +1370,7 @@ Tinggaard, Frode Woldsund</translation>
<message>
<location filename="openlp/core/ui/displaytagdialog.py" line="149"/>
<source>End HTML</source>
<translation>End HTML</translation>
<translation>Eind HTML</translation>
</message>
</context>
<context>
@ -1554,175 +1554,175 @@ Schrijf in het Engels, omdat de meeste programmeurs geen Nederlands spreken.
<context>
<name>OpenLP.FirstTimeWizard</name>
<message>
<location filename="openlp/core/ui/firsttimeform.py" line="61"/>
<location filename="openlp/core/ui/firsttimeform.py" line="62"/>
<source>Downloading %s...</source>
<translation>Downloaden %s...</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimeform.py" line="231"/>
<location filename="openlp/core/ui/firsttimeform.py" line="243"/>
<source>Download complete. Click the finish button to start OpenLP.</source>
<translation>Download compleet. Klik op afrond om OpenLP te starten.</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimeform.py" line="240"/>
<location filename="openlp/core/ui/firsttimeform.py" line="252"/>
<source>Enabling selected plugins...</source>
<translation>Geselecteerde plugins inschakelen...</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="193"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="191"/>
<source>First Time Wizard</source>
<translation>Eerste keer assistent</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="195"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="193"/>
<source>Welcome to the First Time Wizard</source>
<translation>Welkom bij de Eerste keer Assistent</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="199"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="197"/>
<source>This wizard will help you to configure OpenLP for initial use. Click the next button below to start the process of selection your initial options. </source>
<translation>Deze assistent helpt je om OpenLP voor de eerste keer in te stellen. Klik op volgende om dit proces te beginnen.</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="203"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="201"/>
<source>Activate required Plugins</source>
<translation>Activeer noodzakelijke plugins</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="205"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="203"/>
<source>Select the Plugins you wish to use. </source>
<translation>Selecteer de plugins die je gaat gebruiken.</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="207"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="205"/>
<source>Songs</source>
<translation>Liederen</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="208"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="206"/>
<source>Custom Text</source>
<translation>Aangepaste tekst</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="210"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="208"/>
<source>Bible</source>
<translation>Bijbel</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="211"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="209"/>
<source>Images</source>
<translation>Afbeeldingen</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="213"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="211"/>
<source>Presentations</source>
<translation>Presentaties</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="215"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="213"/>
<source>Media (Audio and Video)</source>
<translation>Media (Audio en Video)</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="217"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="215"/>
<source>Allow remote access</source>
<translation>Toegang op afstand toestaan</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="219"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="217"/>
<source>Monitor Song Usage</source>
<translation>Liedgebruik bijhouden</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="221"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="219"/>
<source>Allow Alerts</source>
<translation>Toon berichten</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="223"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="221"/>
<source>No Internet Connection</source>
<translation>Geen internetverbinding</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="225"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="223"/>
<source>Unable to detect an Internet connection.</source>
<translation>OpenLP kan geen internetverbinding vinden.</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="228"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="226"/>
<source>No Internet connection was found. The First Time Wizard needs an Internet connection in order to be able to download sample songs, Bibles and themes.
To re-run the First Time Wizard and import this sample data at a later stage, press the cancel button now, check your Internet connection, and restart OpenLP.
To cancel the First Time Wizard completely, press the finish button now.</source>
<translation>No Internet connection was found. The First Time Wizard needs an Internet connection in order to be able to download sample songs, Bibles and themes.
<translation>Geen internetverbinding gevonden. De Eerste Keer assistent heeft internet nodig om voorbeeld liederen, bijbels en thema&apos;s te downloaden.
To re-run the First Time Wizard and import this sample data at a later stage, press the cancel button now, check your Internet connection, and restart OpenLP.
Om deze assistent de volgende keer te starten, klikt u nu annuleren, controleer uw verbinding en herstart OpenLP.
To cancel the First Time Wizard completely, press the finish button now.</translation>
Om deze assistent over te slaan, klik op klaar.</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="236"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="234"/>
<source>Sample Songs</source>
<translation>Voorbeeld liederen</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="238"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="236"/>
<source>Select and download public domain songs.</source>
<translation>Selecteer en download liederen uit het publieke domein.</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="240"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="238"/>
<source>Sample Bibles</source>
<translation>Voorbeeld bijbels</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="242"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="240"/>
<source>Select and download free Bibles.</source>
<translation>Selecteer en download (gratis) bijbels uit het publieke domein.</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="244"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="242"/>
<source>Sample Themes</source>
<translation>Voorbeeld thema&apos;s</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="246"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="244"/>
<source>Select and download sample themes.</source>
<translation>Selecteer en download voorbeeld thema&apos;s.</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="248"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="246"/>
<source>Default Settings</source>
<translation>Standaard instellingen</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="250"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="248"/>
<source>Set up default settings to be used by OpenLP.</source>
<translation>Stel standaardinstellingen in voor OpenLP.</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="252"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="250"/>
<source>Setting Up And Importing</source>
<translation>Instellen en importeren</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="254"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="252"/>
<source>Please wait while OpenLP is set up and your data is imported.</source>
<translation>Even geduld terwijl OpenLP de gegevens importeert.</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="256"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="254"/>
<source>Default output display:</source>
<translation>Standaard weergave scherm:</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="258"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="256"/>
<source>Select default theme:</source>
<translation>Selecteer standaard thema:</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="260"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="258"/>
<source>Starting configuration process...</source>
<translation>Begin het configuratie proces...</translation>
</message>
@ -1848,12 +1848,12 @@ To cancel the First Time Wizard completely, press the finish button now.</transl
<context>
<name>OpenLP.LanguageManager</name>
<message>
<location filename="openlp/core/utils/languagemanager.py" line="132"/>
<location filename="openlp/core/utils/languagemanager.py" line="130"/>
<source>Language</source>
<translation>Taal</translation>
</message>
<message>
<location filename="openlp/core/utils/languagemanager.py" line="132"/>
<location filename="openlp/core/utils/languagemanager.py" line="130"/>
<source>Please restart OpenLP to use your new language setting.</source>
<translation>Start OpenLP opnieuw op om de nieuwe taalinstellingen te gebruiken.</translation>
</message>
@ -1869,367 +1869,367 @@ To cancel the First Time Wizard completely, press the finish button now.</transl
<context>
<name>OpenLP.MainWindow</name>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="315"/>
<location filename="openlp/core/ui/mainwindow.py" line="313"/>
<source>&amp;File</source>
<translation>&amp;Bestand</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="316"/>
<location filename="openlp/core/ui/mainwindow.py" line="314"/>
<source>&amp;Import</source>
<translation>&amp;Importeren</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="317"/>
<location filename="openlp/core/ui/mainwindow.py" line="315"/>
<source>&amp;Export</source>
<translation>&amp;Exporteren</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="318"/>
<location filename="openlp/core/ui/mainwindow.py" line="316"/>
<source>&amp;View</source>
<translation>&amp;Weergave</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="319"/>
<location filename="openlp/core/ui/mainwindow.py" line="317"/>
<source>M&amp;ode</source>
<translation>M&amp;odus</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="320"/>
<location filename="openlp/core/ui/mainwindow.py" line="318"/>
<source>&amp;Tools</source>
<translation>&amp;Hulpmiddelen</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="321"/>
<location filename="openlp/core/ui/mainwindow.py" line="319"/>
<source>&amp;Settings</source>
<translation>&amp;Instellingen</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="370"/>
<location filename="openlp/core/ui/mainwindow.py" line="368"/>
<source>&amp;Language</source>
<translation>Taa&amp;l</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="324"/>
<location filename="openlp/core/ui/mainwindow.py" line="322"/>
<source>&amp;Help</source>
<translation>&amp;Help</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="325"/>
<location filename="openlp/core/ui/mainwindow.py" line="323"/>
<source>Media Manager</source>
<translation>Mediabeheer</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="327"/>
<location filename="openlp/core/ui/mainwindow.py" line="325"/>
<source>Service Manager</source>
<translation>Liturgie beheer</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="329"/>
<location filename="openlp/core/ui/mainwindow.py" line="327"/>
<source>Theme Manager</source>
<translation>Thema beheer</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="331"/>
<location filename="openlp/core/ui/mainwindow.py" line="329"/>
<source>&amp;New</source>
<translation>&amp;Nieuw</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="334"/>
<location filename="openlp/core/ui/mainwindow.py" line="332"/>
<source>Ctrl+N</source>
<translation>Ctrl+N</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="335"/>
<location filename="openlp/core/ui/mainwindow.py" line="333"/>
<source>&amp;Open</source>
<translation>&amp;Open</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="337"/>
<location filename="openlp/core/ui/mainwindow.py" line="335"/>
<source>Open an existing service.</source>
<translation>Open een bestaande liturgie.</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="339"/>
<location filename="openlp/core/ui/mainwindow.py" line="337"/>
<source>Ctrl+O</source>
<translation>Ctrl+O</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="340"/>
<location filename="openlp/core/ui/mainwindow.py" line="338"/>
<source>&amp;Save</source>
<translation>Op&amp;slaan</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="342"/>
<location filename="openlp/core/ui/mainwindow.py" line="340"/>
<source>Save the current service to disk.</source>
<translation>Deze liturgie opslaan.</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="344"/>
<location filename="openlp/core/ui/mainwindow.py" line="342"/>
<source>Ctrl+S</source>
<translation>Ctrl+S</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="345"/>
<location filename="openlp/core/ui/mainwindow.py" line="343"/>
<source>Save &amp;As...</source>
<translation>Opslaan &amp;als...</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="347"/>
<location filename="openlp/core/ui/mainwindow.py" line="345"/>
<source>Save Service As</source>
<translation>Liturgie opslaan als</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="349"/>
<location filename="openlp/core/ui/mainwindow.py" line="347"/>
<source>Save the current service under a new name.</source>
<translation>Deze liturgie onder een andere naam opslaan.</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="351"/>
<location filename="openlp/core/ui/mainwindow.py" line="349"/>
<source>Ctrl+Shift+S</source>
<translation>Ctrl+Shift+S</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="358"/>
<location filename="openlp/core/ui/mainwindow.py" line="356"/>
<source>E&amp;xit</source>
<translation>&amp;Afsluiten</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="360"/>
<location filename="openlp/core/ui/mainwindow.py" line="358"/>
<source>Quit OpenLP</source>
<translation>OpenLP afsluiten</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="362"/>
<location filename="openlp/core/ui/mainwindow.py" line="360"/>
<source>Alt+F4</source>
<translation>Alt+F4</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="368"/>
<location filename="openlp/core/ui/mainwindow.py" line="366"/>
<source>&amp;Theme</source>
<translation>&amp;Thema</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="376"/>
<location filename="openlp/core/ui/mainwindow.py" line="374"/>
<source>&amp;Configure OpenLP...</source>
<translation>&amp;Instellingen...</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="378"/>
<location filename="openlp/core/ui/mainwindow.py" line="376"/>
<source>&amp;Media Manager</source>
<translation>&amp;Media beheer</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="380"/>
<location filename="openlp/core/ui/mainwindow.py" line="378"/>
<source>Toggle Media Manager</source>
<translation>Media beheer wel / niet tonen</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="382"/>
<location filename="openlp/core/ui/mainwindow.py" line="380"/>
<source>Toggle the visibility of the media manager.</source>
<translation>Media beheer wel / niet tonen.</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="384"/>
<location filename="openlp/core/ui/mainwindow.py" line="382"/>
<source>F8</source>
<translation>F8</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="386"/>
<location filename="openlp/core/ui/mainwindow.py" line="384"/>
<source>&amp;Theme Manager</source>
<translation>&amp;Thema beheer</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="388"/>
<location filename="openlp/core/ui/mainwindow.py" line="386"/>
<source>Toggle Theme Manager</source>
<translation>Thema beheer wel / niet tonen</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="390"/>
<location filename="openlp/core/ui/mainwindow.py" line="388"/>
<source>Toggle the visibility of the theme manager.</source>
<translation>Thema beheer wel / niet tonen.</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="392"/>
<location filename="openlp/core/ui/mainwindow.py" line="390"/>
<source>F10</source>
<translation>F10</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="394"/>
<location filename="openlp/core/ui/mainwindow.py" line="392"/>
<source>&amp;Service Manager</source>
<translation>&amp;Liturgie beheer</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="396"/>
<location filename="openlp/core/ui/mainwindow.py" line="394"/>
<source>Toggle Service Manager</source>
<translation>Liturgie beheer wel / niet tonen</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="398"/>
<location filename="openlp/core/ui/mainwindow.py" line="396"/>
<source>Toggle the visibility of the service manager.</source>
<translation>Liturgie beheer wel / niet tonen.</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="400"/>
<location filename="openlp/core/ui/mainwindow.py" line="398"/>
<source>F9</source>
<translation>F9</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="402"/>
<location filename="openlp/core/ui/mainwindow.py" line="400"/>
<source>&amp;Preview Panel</source>
<translation>&amp;Voorbeeld</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="404"/>
<location filename="openlp/core/ui/mainwindow.py" line="402"/>
<source>Toggle Preview Panel</source>
<translation>Voorbeeld wel / niet tonen</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="406"/>
<location filename="openlp/core/ui/mainwindow.py" line="404"/>
<source>Toggle the visibility of the preview panel.</source>
<translation>Voorbeeld wel / niet tonen.</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="408"/>
<location filename="openlp/core/ui/mainwindow.py" line="406"/>
<source>F11</source>
<translation>F11</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="410"/>
<location filename="openlp/core/ui/mainwindow.py" line="408"/>
<source>&amp;Live Panel</source>
<translation>&amp;Live venster</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="412"/>
<location filename="openlp/core/ui/mainwindow.py" line="410"/>
<source>Toggle Live Panel</source>
<translation>Live venster wel / niet tonen</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="414"/>
<location filename="openlp/core/ui/mainwindow.py" line="412"/>
<source>Toggle the visibility of the live panel.</source>
<translation>Live venster wel / niet tonen.</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="416"/>
<location filename="openlp/core/ui/mainwindow.py" line="414"/>
<source>F12</source>
<translation>F12</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="418"/>
<location filename="openlp/core/ui/mainwindow.py" line="416"/>
<source>&amp;Plugin List</source>
<translation>&amp;Plugin Lijst</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="420"/>
<location filename="openlp/core/ui/mainwindow.py" line="418"/>
<source>List the Plugins</source>
<translation>Lijst met plugins =uitbreidingen van OpenLP</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="422"/>
<location filename="openlp/core/ui/mainwindow.py" line="420"/>
<source>Alt+F7</source>
<translation>Alt+F7</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="424"/>
<location filename="openlp/core/ui/mainwindow.py" line="422"/>
<source>&amp;User Guide</source>
<translation>Gebr&amp;uikshandleiding</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="426"/>
<location filename="openlp/core/ui/mainwindow.py" line="424"/>
<source>&amp;About</source>
<translation>&amp;Over OpenLP</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="427"/>
<location filename="openlp/core/ui/mainwindow.py" line="425"/>
<source>More information about OpenLP</source>
<translation>Meer Informatie over OpenLP</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="429"/>
<location filename="openlp/core/ui/mainwindow.py" line="427"/>
<source>Ctrl+F1</source>
<translation>Ctrl+F1</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="431"/>
<location filename="openlp/core/ui/mainwindow.py" line="429"/>
<source>&amp;Online Help</source>
<translation>&amp;Online help</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="433"/>
<location filename="openlp/core/ui/mainwindow.py" line="434"/>
<source>&amp;Web Site</source>
<translation>&amp;Website</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="441"/>
<location filename="openlp/core/ui/mainwindow.py" line="442"/>
<source>Use the system language, if available.</source>
<translation>Gebruik systeem standaardtaal, indien mogelijk.</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="437"/>
<location filename="openlp/core/ui/mainwindow.py" line="438"/>
<source>Set the interface language to %s</source>
<translation>%s als taal in OpenLP gebruiken</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="443"/>
<location filename="openlp/core/ui/mainwindow.py" line="444"/>
<source>Add &amp;Tool...</source>
<translation>Hulpprogramma &amp;toevoegen...</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="445"/>
<location filename="openlp/core/ui/mainwindow.py" line="446"/>
<source>Add an application to the list of tools.</source>
<translation>Voeg een hulpprogramma toe aan de lijst.</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="451"/>
<location filename="openlp/core/ui/mainwindow.py" line="452"/>
<source>&amp;Default</source>
<translation>&amp;Standaard</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="453"/>
<location filename="openlp/core/ui/mainwindow.py" line="454"/>
<source>Set the view mode back to the default.</source>
<translation>Terug naar de standaard weergave modus.</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="455"/>
<location filename="openlp/core/ui/mainwindow.py" line="456"/>
<source>&amp;Setup</source>
<translation>&amp;Setup</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="456"/>
<location filename="openlp/core/ui/mainwindow.py" line="457"/>
<source>Set the view mode to Setup.</source>
<translation>Weergave modus naar Setup.</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="458"/>
<location filename="openlp/core/ui/mainwindow.py" line="459"/>
<source>&amp;Live</source>
<translation>&amp;Live</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="459"/>
<location filename="openlp/core/ui/mainwindow.py" line="460"/>
<source>Set the view mode to Live.</source>
<translation>Weergave modus naar Live.</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="649"/>
<location filename="openlp/core/ui/mainwindow.py" line="652"/>
<source>OpenLP Version Updated</source>
<translation>Nieuwe OpenLP versie beschikbaar</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="701"/>
<location filename="openlp/core/ui/mainwindow.py" line="704"/>
<source>OpenLP Main Display Blanked</source>
<translation>OpenLP projectie op zwart</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="701"/>
<location filename="openlp/core/ui/mainwindow.py" line="704"/>
<source>The Main Display has been blanked out</source>
<translation>Projectie is uitgeschakeld: scherm staat op zwart</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="910"/>
<location filename="openlp/core/ui/mainwindow.py" line="920"/>
<source>Default Theme: %s</source>
<translation>Standaardthema: %s</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="645"/>
<location filename="openlp/core/ui/mainwindow.py" line="648"/>
<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>
@ -2244,47 +2244,47 @@ U kunt de laatste versie op http://openlp.org/ downloaden.</translation>
<translation>Nederlands</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="372"/>
<location filename="openlp/core/ui/mainwindow.py" line="370"/>
<source>Configure &amp;Shortcuts...</source>
<translation>&amp;Sneltoetsen instellen...</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="832"/>
<location filename="openlp/core/ui/mainwindow.py" line="842"/>
<source>Close OpenLP</source>
<translation>OpenLP afsluiten</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="832"/>
<location filename="openlp/core/ui/mainwindow.py" line="842"/>
<source>Are you sure you want to close OpenLP?</source>
<translation>OpenLP afsluiten?</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="354"/>
<location filename="openlp/core/ui/mainwindow.py" line="352"/>
<source>Print the current Service Order.</source>
<translation>Druk de huidige liturgie af.</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="356"/>
<location filename="openlp/core/ui/mainwindow.py" line="354"/>
<source>Ctrl+P</source>
<translation>Ctrl+P</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="447"/>
<location filename="openlp/core/ui/mainwindow.py" line="448"/>
<source>Open &amp;Data Folder...</source>
<translation>Open &amp;Data map...</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="449"/>
<location filename="openlp/core/ui/mainwindow.py" line="450"/>
<source>Open the folder where songs, bibles and other data resides.</source>
<translation>Open de map waar liederen, bijbels en andere data staat.</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="374"/>
<location filename="openlp/core/ui/mainwindow.py" line="372"/>
<source>&amp;Configure Display Tags</source>
<translation>&amp;Configureer Weergave Tags</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="439"/>
<location filename="openlp/core/ui/mainwindow.py" line="440"/>
<source>&amp;Autodetect</source>
<translation>&amp;Autodetecteer</translation>
</message>
@ -3424,12 +3424,12 @@ Tekst codering is geen UTF-8.</translation>
<message>
<location filename="openlp/core/lib/ui.py" line="44"/>
<source>&amp;Add</source>
<translation type="unfinished">&amp;Toevoegen</translation>
<translation>&amp;Toevoegen</translation>
</message>
<message>
<location filename="openlp/core/lib/ui.py" line="45"/>
<source>Advanced</source>
<translation type="unfinished">Geavanceerd</translation>
<translation>Geavanceerd</translation>
</message>
<message>
<location filename="openlp/core/lib/ui.py" line="46"/>
@ -4685,62 +4685,62 @@ Meestal voldoet de suggestie van OpenLP.</translation>
<message>
<location filename="openlp/plugins/songs/forms/songimportform.py" line="284"/>
<source>The Songs of Fellowship importer has been disabled because OpenLP cannot find OpenOffice.org on your computer.</source>
<translation type="unfinished">The Songs of Fellowship importer has been disabled because OpenLP cannot find OpenOffice.org on your computer.</translation>
<translation>Songs of Fellowship import is uitgeschakeld omdat OpenLP OpenOffice.org niet kan vinden op deze computer.</translation>
</message>
<message>
<location filename="openlp/plugins/songs/forms/songimportform.py" line="292"/>
<source>The generic document/presentation importer has been disabled because OpenLP cannot find OpenOffice.org on your computer.</source>
<translation type="unfinished">The generic document/presentation importer has been disabled because OpenLP cannot find OpenOffice.org on your computer.</translation>
<translation>Algemeen document/presentatie import is uitgeschakeld omdat OpenLP OpenOffice.org niet kan vinden op deze computer.</translation>
</message>
<message>
<location filename="openlp/plugins/songs/forms/songimportform.py" line="263"/>
<source>The OpenLyrics importer has not yet been developed, but as you can see, we are still intending to do so. Hopefully it will be in the next release.</source>
<translation type="unfinished">The OpenLyrics importer has not yet been developed, but as you can see, we are still intending to do so. Hopefully it will be in the next release.</translation>
<translation>OpenLyrics import is nog niet gemaakt, maar we hebben het voornemen dit te doen. Hopelijk lukt dit in een volgende versie.</translation>
</message>
<message>
<location filename="openlp/plugins/songs/lib/ewimport.py" line="250"/>
<source>Administered by %s</source>
<translation type="unfinished">Administered by %s</translation>
<translation>Beheerd door %s</translation>
</message>
<message>
<location filename="openlp/plugins/songs/forms/songimportform.py" line="469"/>
<source>OpenLP 2.0 Databases</source>
<translation type="unfinished">OpenLP 2.0 Databases</translation>
<translation>OpenLP 2.0 Databases</translation>
</message>
<message>
<location filename="openlp/plugins/songs/forms/songimportform.py" line="479"/>
<source>openlp.org v1.x Databases</source>
<translation type="unfinished">openlp.org v1.x Databases</translation>
<translation>openlp.org v1.x Databases</translation>
</message>
<message>
<location filename="openlp/plugins/songs/forms/songimportform.py" line="515"/>
<source>Words Of Worship Song Files</source>
<translation type="unfinished">Words Of Worship Song Files</translation>
<translation>Words Of Worship Lied bestanden</translation>
</message>
<message>
<location filename="openlp/plugins/songs/forms/songimportform.py" line="544"/>
<source>Songs Of Fellowship Song Files</source>
<translation type="unfinished"></translation>
<translation>Songs Of Fellowship lied bestanden</translation>
</message>
<message>
<location filename="openlp/plugins/songs/forms/songimportform.py" line="587"/>
<source>SongBeamer Files</source>
<translation type="unfinished"></translation>
<translation>SongBeamer bestanden</translation>
</message>
<message>
<location filename="openlp/plugins/songs/forms/songimportform.py" line="602"/>
<source>SongShow Plus Song Files</source>
<translation type="unfinished"></translation>
<translation>SongShow Plus lied bestanden</translation>
</message>
<message>
<location filename="openlp/plugins/songs/forms/songimportform.py" line="381"/>
<source>You need to specify at least one document or presentation file to import from.</source>
<translation type="unfinished"></translation>
<translation>Selecteer minimaal een document of presentatie om te importeren.</translation>
</message>
<message>
<location filename="openlp/plugins/songs/forms/songimportform.py" line="618"/>
<source>Foilpresenter Song Files</source>
<translation type="unfinished"></translation>
<translation>Foilpresenter lied bestanden</translation>
</message>
</context>
<context>
@ -4748,7 +4748,7 @@ Meestal voldoet de suggestie van OpenLP.</translation>
<message>
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="142"/>
<source>Maintain the lists of authors, topics and books</source>
<translation type="unfinished">Maintain the lists of authors, topics and books</translation>
<translation>Beheer de lijst met auteurs, onderwerpen en liedboeken</translation>
</message>
<message>
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="146"/>
@ -4763,7 +4763,7 @@ Meestal voldoet de suggestie van OpenLP.</translation>
<message>
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="318"/>
<source>Delete Song(s)?</source>
<translation type="unfinished">Delete Song(s)?</translation>
<translation>Wis lied(eren)?</translation>
</message>
<message>
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="400"/>
@ -4789,7 +4789,7 @@ Meestal voldoet de suggestie van OpenLP.</translation>
<message>
<location filename="openlp/plugins/songs/lib/olpimport.py" line="159"/>
<source>Importing song %d of %d.</source>
<translation type="unfinished">Importing song %d of %d.</translation>
<translation>Importeer lied %d van %d.</translation>
</message>
</context>
<context>
@ -4797,7 +4797,7 @@ Meestal voldoet de suggestie van OpenLP.</translation>
<message>
<location filename="openlp/plugins/songs/lib/openlyricsexport.py" line="67"/>
<source>Exporting &quot;%s&quot;...</source>
<translation type="unfinished"></translation>
<translation>Exporteren &quot;%s&quot;...</translation>
</message>
</context>
<context>
@ -4828,12 +4828,12 @@ Meestal voldoet de suggestie van OpenLP.</translation>
<message>
<location filename="openlp/plugins/songs/forms/songexportform.py" line="284"/>
<source>Finished export.</source>
<translation type="unfinished"></translation>
<translation>Exporteren afgerond.</translation>
</message>
<message>
<location filename="openlp/plugins/songs/forms/songexportform.py" line="287"/>
<source>Your song export failed.</source>
<translation type="unfinished"></translation>
<translation>Liederen export is mislukt.</translation>
</message>
</context>
<context>
@ -4922,42 +4922,42 @@ Meestal voldoet de suggestie van OpenLP.</translation>
<message>
<location filename="openlp/plugins/songs/forms/songmaintenanceform.py" line="328"/>
<source>Could not save your modified topic, because it already exists.</source>
<translation type="unfinished">Could not save your modified topic, because it already exists.</translation>
<translation>Kan dit onderwerp niet opslaan, omdat het reeds bestaat.</translation>
</message>
<message>
<location filename="openlp/plugins/songs/forms/songmaintenanceform.py" line="447"/>
<source>This author cannot be deleted, they are currently assigned to at least one song.</source>
<translation type="unfinished">This author cannot be deleted, they are currently assigned to at least one song.</translation>
<translation>Deze auteur kan niet worden verwijderd, omdat er nog een lied aan is gekoppeld.</translation>
</message>
<message>
<location filename="openlp/plugins/songs/forms/songmaintenanceform.py" line="458"/>
<source>This topic cannot be deleted, it is currently assigned to at least one song.</source>
<translation type="unfinished">This topic cannot be deleted, it is currently assigned to at least one song.</translation>
<translation>Dit onderwerp kan niet worden verwijderd, omdat er nog een lied aan is gekoppeld.</translation>
</message>
<message>
<location filename="openlp/plugins/songs/forms/songmaintenanceform.py" line="469"/>
<source>This book cannot be deleted, it is currently assigned to at least one song.</source>
<translation type="unfinished">This book cannot be deleted, it is currently assigned to at least one song.</translation>
<translation>Dit liedboek kan niet worden verwijderd, omdat er nog een lied aan is gekoppeld.</translation>
</message>
<message>
<location filename="openlp/plugins/songs/forms/songmaintenanceform.py" line="296"/>
<source>Could not save your modified author, because the author already exists.</source>
<translation type="unfinished">Could not save your modified author, because the author already exists.</translation>
<translation>Kan de auteur niet opslaan, omdat deze reeds bestaat.</translation>
</message>
<message>
<location filename="openlp/plugins/songs/forms/songmaintenanceform.py" line="282"/>
<source>The author %s already exists. Would you like to make songs with author %s use the existing author %s?</source>
<translation type="unfinished">The author %s already exists. Would you like to make songs with author %s use the existing author %s?</translation>
<translation>Deze auteur %s bestaat al. Liederen met auteur %s aan deze auteur %s koppelen?</translation>
</message>
<message>
<location filename="openlp/plugins/songs/forms/songmaintenanceform.py" line="318"/>
<source>The topic %s already exists. Would you like to make songs with topic %s use the existing topic %s?</source>
<translation type="unfinished">The topic %s already exists. Would you like to make songs with topic %s use the existing topic %s?</translation>
<translation>Dit onderwerp %s bestaat al. Liederen met onderwerp %s aan %s koppelen?</translation>
</message>
<message>
<location filename="openlp/plugins/songs/forms/songmaintenanceform.py" line="356"/>
<source>The book %s already exists. Would you like to make songs with book %s use the existing book %s?</source>
<translation type="unfinished">The book %s already exists. Would you like to make songs with book %s use the existing book %s?</translation>
<translation>Dit liedboek %s bestaat al. Liederen uit het Liedboek %s aan het liedboek %s koppelen?</translation>
</message>
</context>
<context>

View File

@ -214,7 +214,7 @@ Você gostaria de continuar de qualquer maneira?</translation>
<message>
<location filename="openlp/plugins/bibles/lib/mediaitem.py" line="539"/>
<source>You cannot combine single and dual Bible verse search results. Do you want to delete your search results and start a new search?</source>
<translation type="unfinished"></translation>
<translation>Você não pode combinar um versículo simples e um duplo nos resultados das buscas. Você deseja deletar os resultados da sua pesquisa e comecar uma nova?</translation>
</message>
</context>
<context>
@ -419,7 +419,7 @@ Mudanças não afetam os versículos que já estão na lista de exibição.</tra
<message>
<location filename="openlp/plugins/bibles/lib/biblestab.py" line="142"/>
<source>Display second Bible verses</source>
<translation type="unfinished"></translation>
<translation>Exibir versículos da Bíblia secundária</translation>
</message>
</context>
<context>
@ -1552,102 +1552,102 @@ Agradecemos se for possível escrever seu relatório em inglês.</translation>
<context>
<name>OpenLP.FirstTimeWizard</name>
<message>
<location filename="openlp/core/ui/firsttimeform.py" line="61"/>
<location filename="openlp/core/ui/firsttimeform.py" line="62"/>
<source>Downloading %s...</source>
<translation>Baixando %s...</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimeform.py" line="231"/>
<location filename="openlp/core/ui/firsttimeform.py" line="243"/>
<source>Download complete. Click the finish button to start OpenLP.</source>
<translation>Download finalizado. Clique no botão terminar para iniciar o OpenLP.</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimeform.py" line="240"/>
<location filename="openlp/core/ui/firsttimeform.py" line="252"/>
<source>Enabling selected plugins...</source>
<translation>Habilitando os plugins selecionados...</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="193"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="191"/>
<source>First Time Wizard</source>
<translation>Assistente de Primeira Utilização</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="195"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="193"/>
<source>Welcome to the First Time Wizard</source>
<translation>Bem vindo ao Assistente de Primeira Utilização</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="199"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="197"/>
<source>This wizard will help you to configure OpenLP for initial use. Click the next button below to start the process of selection your initial options. </source>
<translation>O assistente irá ajudá-lo na configuração do OpenLP para o primeiro uso. Clique no botão &quot;Próximo&quot; abaixo para iniciar a seleção das opções iniciais.</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="203"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="201"/>
<source>Activate required Plugins</source>
<translation>Ativar os Plugins Requeridos</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="205"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="203"/>
<source>Select the Plugins you wish to use. </source>
<translation>Selecione os Plugins aos quais você deseja utilizar.</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="207"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="205"/>
<source>Songs</source>
<translation type="unfinished">Músicas</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="208"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="206"/>
<source>Custom Text</source>
<translation>Texto Customizado</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="210"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="208"/>
<source>Bible</source>
<translation type="unfinished">Bíblia</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="211"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="209"/>
<source>Images</source>
<translation type="unfinished">Imagens</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="213"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="211"/>
<source>Presentations</source>
<translation type="unfinished">Apresentações</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="215"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="213"/>
<source>Media (Audio and Video)</source>
<translation>Mídia (Áudio e Vídeo)</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="217"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="215"/>
<source>Allow remote access</source>
<translation>Permitir acesso remoto</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="219"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="217"/>
<source>Monitor Song Usage</source>
<translation>Monitor de Utilização das Músicas</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="221"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="219"/>
<source>Allow Alerts</source>
<translation>Permitir Alertas</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="223"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="221"/>
<source>No Internet Connection</source>
<translation>Conexão com a Internet Indisponível</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="225"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="223"/>
<source>Unable to detect an Internet connection.</source>
<translation>Não foi possível detectar uma conexão com a Internet.</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="228"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="226"/>
<source>No Internet connection was found. The First Time Wizard needs an Internet connection in order to be able to download sample songs, Bibles and themes.
To re-run the First Time Wizard and import this sample data at a later stage, press the cancel button now, check your Internet connection, and restart OpenLP.
@ -1660,67 +1660,67 @@ Para executar o assistente novamente mais tarde e importar os dados de exemplo,
Para cancelar o assistente completamente, clique no botão finalizar.</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="236"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="234"/>
<source>Sample Songs</source>
<translation>Músicas de Exemplo</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="238"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="236"/>
<source>Select and download public domain songs.</source>
<translation>Selecione e baixe músicas de domínio público.</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="240"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="238"/>
<source>Sample Bibles</source>
<translation>Bíblias de Exemplo</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="242"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="240"/>
<source>Select and download free Bibles.</source>
<translation>Selecione e baixe Bíblias gratuitas.</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="244"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="242"/>
<source>Sample Themes</source>
<translation>Temas de Exemplo</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="246"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="244"/>
<source>Select and download sample themes.</source>
<translation>Selecione e baixe temas de exemplo.</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="248"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="246"/>
<source>Default Settings</source>
<translation>Configurações Padrão</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="250"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="248"/>
<source>Set up default settings to be used by OpenLP.</source>
<translation>Configure as configurações padrão que serão utilizadas pelo OpenLP.</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="252"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="250"/>
<source>Setting Up And Importing</source>
<translation>Configurando e Importando</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="254"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="252"/>
<source>Please wait while OpenLP is set up and your data is imported.</source>
<translation>Por Favor aguarde enquanto o OpenLP é configurado e os seus dados importados.</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="256"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="254"/>
<source>Default output display:</source>
<translation>Painel de Projeção Padrão:</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="258"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="256"/>
<source>Select default theme:</source>
<translation>Selecione um tema padrão:</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="260"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="258"/>
<source>Starting configuration process...</source>
<translation>Iniciando o processo de configuração...</translation>
</message>
@ -1846,12 +1846,12 @@ Para cancelar o assistente completamente, clique no botão finalizar.</translati
<context>
<name>OpenLP.LanguageManager</name>
<message>
<location filename="openlp/core/utils/languagemanager.py" line="132"/>
<location filename="openlp/core/utils/languagemanager.py" line="130"/>
<source>Language</source>
<translation>Idioma</translation>
</message>
<message>
<location filename="openlp/core/utils/languagemanager.py" line="132"/>
<location filename="openlp/core/utils/languagemanager.py" line="130"/>
<source>Please restart OpenLP to use your new language setting.</source>
<translation>Por favor reinicie o OpenLP para usar a nova configuração de idioma.</translation>
</message>
@ -1867,347 +1867,347 @@ Para cancelar o assistente completamente, clique no botão finalizar.</translati
<context>
<name>OpenLP.MainWindow</name>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="315"/>
<location filename="openlp/core/ui/mainwindow.py" line="313"/>
<source>&amp;File</source>
<translation>&amp;Arquivo</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="316"/>
<location filename="openlp/core/ui/mainwindow.py" line="314"/>
<source>&amp;Import</source>
<translation>&amp;Importar</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="317"/>
<location filename="openlp/core/ui/mainwindow.py" line="315"/>
<source>&amp;Export</source>
<translation>&amp;Exportar</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="318"/>
<location filename="openlp/core/ui/mainwindow.py" line="316"/>
<source>&amp;View</source>
<translation>&amp;Visualizar</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="319"/>
<location filename="openlp/core/ui/mainwindow.py" line="317"/>
<source>M&amp;ode</source>
<translation>M&amp;odo</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="320"/>
<location filename="openlp/core/ui/mainwindow.py" line="318"/>
<source>&amp;Tools</source>
<translation>&amp;Ferramentas</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="321"/>
<location filename="openlp/core/ui/mainwindow.py" line="319"/>
<source>&amp;Settings</source>
<translation>&amp;Configurações</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="370"/>
<location filename="openlp/core/ui/mainwindow.py" line="368"/>
<source>&amp;Language</source>
<translation>&amp;Idioma</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="324"/>
<location filename="openlp/core/ui/mainwindow.py" line="322"/>
<source>&amp;Help</source>
<translation>&amp;Ajuda</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="325"/>
<location filename="openlp/core/ui/mainwindow.py" line="323"/>
<source>Media Manager</source>
<translation>Gerenciador de Mídia</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="327"/>
<location filename="openlp/core/ui/mainwindow.py" line="325"/>
<source>Service Manager</source>
<translation>Lista de Exibição</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="329"/>
<location filename="openlp/core/ui/mainwindow.py" line="327"/>
<source>Theme Manager</source>
<translation>Gerenciador de Temas</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="331"/>
<location filename="openlp/core/ui/mainwindow.py" line="329"/>
<source>&amp;New</source>
<translation>&amp;Novo</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="334"/>
<location filename="openlp/core/ui/mainwindow.py" line="332"/>
<source>Ctrl+N</source>
<translation>Ctrl+N</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="335"/>
<location filename="openlp/core/ui/mainwindow.py" line="333"/>
<source>&amp;Open</source>
<translation>&amp;Abrir</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="337"/>
<location filename="openlp/core/ui/mainwindow.py" line="335"/>
<source>Open an existing service.</source>
<translation>Abrir uma Lista de Exibição existente.</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="339"/>
<location filename="openlp/core/ui/mainwindow.py" line="337"/>
<source>Ctrl+O</source>
<translation>Ctrl+O</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="340"/>
<location filename="openlp/core/ui/mainwindow.py" line="338"/>
<source>&amp;Save</source>
<translation>&amp;Salvar</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="342"/>
<location filename="openlp/core/ui/mainwindow.py" line="340"/>
<source>Save the current service to disk.</source>
<translation>Salvar a Lista de Exibição no disco.</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="344"/>
<location filename="openlp/core/ui/mainwindow.py" line="342"/>
<source>Ctrl+S</source>
<translation>Ctrl+S</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="345"/>
<location filename="openlp/core/ui/mainwindow.py" line="343"/>
<source>Save &amp;As...</source>
<translation>Salvar &amp;Como...</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="347"/>
<location filename="openlp/core/ui/mainwindow.py" line="345"/>
<source>Save Service As</source>
<translation>Salvar Lista de Exibição Como</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="349"/>
<location filename="openlp/core/ui/mainwindow.py" line="347"/>
<source>Save the current service under a new name.</source>
<translation>Salvar a Lista de Exibição atual com um novo nome.</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="351"/>
<location filename="openlp/core/ui/mainwindow.py" line="349"/>
<source>Ctrl+Shift+S</source>
<translation>Ctrl+Shift+S</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="358"/>
<location filename="openlp/core/ui/mainwindow.py" line="356"/>
<source>E&amp;xit</source>
<translation>S&amp;air</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="360"/>
<location filename="openlp/core/ui/mainwindow.py" line="358"/>
<source>Quit OpenLP</source>
<translation>Fechar o OpenLP</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="362"/>
<location filename="openlp/core/ui/mainwindow.py" line="360"/>
<source>Alt+F4</source>
<translation>Alt+F4</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="368"/>
<location filename="openlp/core/ui/mainwindow.py" line="366"/>
<source>&amp;Theme</source>
<translation>&amp;Tema</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="376"/>
<location filename="openlp/core/ui/mainwindow.py" line="374"/>
<source>&amp;Configure OpenLP...</source>
<translation>&amp;Configurar o OpenLP...</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="378"/>
<location filename="openlp/core/ui/mainwindow.py" line="376"/>
<source>&amp;Media Manager</source>
<translation>&amp;Gerenciador de Mídia</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="380"/>
<location filename="openlp/core/ui/mainwindow.py" line="378"/>
<source>Toggle Media Manager</source>
<translation>Alternar Gerenciador de Mídia</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="382"/>
<location filename="openlp/core/ui/mainwindow.py" line="380"/>
<source>Toggle the visibility of the media manager.</source>
<translation>Alternar a visibilidade do gerenciador de mídia.</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="384"/>
<location filename="openlp/core/ui/mainwindow.py" line="382"/>
<source>F8</source>
<translation>F8</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="386"/>
<location filename="openlp/core/ui/mainwindow.py" line="384"/>
<source>&amp;Theme Manager</source>
<translation>&amp;Gerenciador de Temas</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="388"/>
<location filename="openlp/core/ui/mainwindow.py" line="386"/>
<source>Toggle Theme Manager</source>
<translation>Alternar para Gerenciamento de Temas</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="390"/>
<location filename="openlp/core/ui/mainwindow.py" line="388"/>
<source>Toggle the visibility of the theme manager.</source>
<translation>Alternar a visibilidade do Gerenciador de Temas.</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="392"/>
<location filename="openlp/core/ui/mainwindow.py" line="390"/>
<source>F10</source>
<translation>F10</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="394"/>
<location filename="openlp/core/ui/mainwindow.py" line="392"/>
<source>&amp;Service Manager</source>
<translation>&amp;Lista de Exibição</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="396"/>
<location filename="openlp/core/ui/mainwindow.py" line="394"/>
<source>Toggle Service Manager</source>
<translation>Alternar a Lista de Exibição</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="398"/>
<location filename="openlp/core/ui/mainwindow.py" line="396"/>
<source>Toggle the visibility of the service manager.</source>
<translation>Alternar visibilidade da Lista de Exibição.</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="400"/>
<location filename="openlp/core/ui/mainwindow.py" line="398"/>
<source>F9</source>
<translation>F9</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="402"/>
<location filename="openlp/core/ui/mainwindow.py" line="400"/>
<source>&amp;Preview Panel</source>
<translation>&amp;Painel de Pré-Visualização</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="404"/>
<location filename="openlp/core/ui/mainwindow.py" line="402"/>
<source>Toggle Preview Panel</source>
<translation>Alternar para Painel de Pré-Visualização</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="406"/>
<location filename="openlp/core/ui/mainwindow.py" line="404"/>
<source>Toggle the visibility of the preview panel.</source>
<translation>Alternar a visibilidade da coluna de pré-visualização.</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="408"/>
<location filename="openlp/core/ui/mainwindow.py" line="406"/>
<source>F11</source>
<translation>F11</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="410"/>
<location filename="openlp/core/ui/mainwindow.py" line="408"/>
<source>&amp;Live Panel</source>
<translation>&amp;Coluna da Projeção</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="412"/>
<location filename="openlp/core/ui/mainwindow.py" line="410"/>
<source>Toggle Live Panel</source>
<translation>Alternar Coluna da Projeção</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="414"/>
<location filename="openlp/core/ui/mainwindow.py" line="412"/>
<source>Toggle the visibility of the live panel.</source>
<translation>Alternar a visibilidade da coluna de projeção.</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="416"/>
<location filename="openlp/core/ui/mainwindow.py" line="414"/>
<source>F12</source>
<translation>F12</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="418"/>
<location filename="openlp/core/ui/mainwindow.py" line="416"/>
<source>&amp;Plugin List</source>
<translation>&amp;Lista de Plugins</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="420"/>
<location filename="openlp/core/ui/mainwindow.py" line="418"/>
<source>List the Plugins</source>
<translation>Listar os Plugins</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="422"/>
<location filename="openlp/core/ui/mainwindow.py" line="420"/>
<source>Alt+F7</source>
<translation>Alt+F7</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="424"/>
<location filename="openlp/core/ui/mainwindow.py" line="422"/>
<source>&amp;User Guide</source>
<translation>&amp;Guia do Usuário</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="426"/>
<location filename="openlp/core/ui/mainwindow.py" line="424"/>
<source>&amp;About</source>
<translation>&amp;Sobre</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="427"/>
<location filename="openlp/core/ui/mainwindow.py" line="425"/>
<source>More information about OpenLP</source>
<translation>Mais informações sobre o OpenLP</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="429"/>
<location filename="openlp/core/ui/mainwindow.py" line="427"/>
<source>Ctrl+F1</source>
<translation>Ctrl+F1</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="431"/>
<location filename="openlp/core/ui/mainwindow.py" line="429"/>
<source>&amp;Online Help</source>
<translation>&amp;Ajuda Online</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="433"/>
<location filename="openlp/core/ui/mainwindow.py" line="434"/>
<source>&amp;Web Site</source>
<translation>&amp;Web Site</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="441"/>
<location filename="openlp/core/ui/mainwindow.py" line="442"/>
<source>Use the system language, if available.</source>
<translation>Usar o idioma do sistema, caso disponível.</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="437"/>
<location filename="openlp/core/ui/mainwindow.py" line="438"/>
<source>Set the interface language to %s</source>
<translation>Definir o idioma da interface como %s</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="443"/>
<location filename="openlp/core/ui/mainwindow.py" line="444"/>
<source>Add &amp;Tool...</source>
<translation>Adicionar &amp;Ferramenta...</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="445"/>
<location filename="openlp/core/ui/mainwindow.py" line="446"/>
<source>Add an application to the list of tools.</source>
<translation>Adicionar uma aplicação à lista de ferramentas.</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="451"/>
<location filename="openlp/core/ui/mainwindow.py" line="452"/>
<source>&amp;Default</source>
<translation>&amp;Padrão</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="453"/>
<location filename="openlp/core/ui/mainwindow.py" line="454"/>
<source>Set the view mode back to the default.</source>
<translation>Reverter o modo de visualização de volta ao padrão.</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="455"/>
<location filename="openlp/core/ui/mainwindow.py" line="456"/>
<source>&amp;Setup</source>
<translation>&amp;Configurar</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="456"/>
<location filename="openlp/core/ui/mainwindow.py" line="457"/>
<source>Set the view mode to Setup.</source>
<translation>Configurar o modo de visualização para Setup.</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="458"/>
<location filename="openlp/core/ui/mainwindow.py" line="459"/>
<source>&amp;Live</source>
<translation>&amp;Ao Vivo</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="459"/>
<location filename="openlp/core/ui/mainwindow.py" line="460"/>
<source>Set the view mode to Live.</source>
<translation>Configurar o modo de visualização como Projeção.</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="645"/>
<location filename="openlp/core/ui/mainwindow.py" line="648"/>
<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>
@ -2216,22 +2216,22 @@ You can download the latest version from http://openlp.org/.</source>
Voce pode baixar a versão mais nova em http://openlp.org/.</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="649"/>
<location filename="openlp/core/ui/mainwindow.py" line="652"/>
<source>OpenLP Version Updated</source>
<translation>Versão do OpenLP Atualizada</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="701"/>
<location filename="openlp/core/ui/mainwindow.py" line="704"/>
<source>OpenLP Main Display Blanked</source>
<translation>Tela Principal do OpenLP em Branco</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="701"/>
<location filename="openlp/core/ui/mainwindow.py" line="704"/>
<source>The Main Display has been blanked out</source>
<translation>A Tela Principal foi apagada</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="910"/>
<location filename="openlp/core/ui/mainwindow.py" line="920"/>
<source>Default Theme: %s</source>
<translation>Tema padrão: %s</translation>
</message>
@ -2242,47 +2242,47 @@ Voce pode baixar a versão mais nova em http://openlp.org/.</translation>
<translation>Português (Brasil)</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="372"/>
<location filename="openlp/core/ui/mainwindow.py" line="370"/>
<source>Configure &amp;Shortcuts...</source>
<translation>Configurar &amp;Atalhos...</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="832"/>
<location filename="openlp/core/ui/mainwindow.py" line="842"/>
<source>Close OpenLP</source>
<translation>Fechar o OpenLP</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="832"/>
<location filename="openlp/core/ui/mainwindow.py" line="842"/>
<source>Are you sure you want to close OpenLP?</source>
<translation>Você tem certeza de que quer fechar o OpenLP?</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="354"/>
<location filename="openlp/core/ui/mainwindow.py" line="352"/>
<source>Print the current Service Order.</source>
<translation>Imprimir a Lista de Exibição atual.</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="356"/>
<location filename="openlp/core/ui/mainwindow.py" line="354"/>
<source>Ctrl+P</source>
<translation>Ctrl+P</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="374"/>
<location filename="openlp/core/ui/mainwindow.py" line="372"/>
<source>&amp;Configure Display Tags</source>
<translation>&amp;Configurar Etiquetas de Exibição</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="447"/>
<location filename="openlp/core/ui/mainwindow.py" line="448"/>
<source>Open &amp;Data Folder...</source>
<translation>Abrir Pasta de &amp;Dados...</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="449"/>
<location filename="openlp/core/ui/mainwindow.py" line="450"/>
<source>Open the folder where songs, bibles and other data resides.</source>
<translation>Abrir a pasta na qual músicas, Bíblias e outros arquivos são armazenados.</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="439"/>
<location filename="openlp/core/ui/mainwindow.py" line="440"/>
<source>&amp;Autodetect</source>
<translation>&amp;Auto detectar</translation>
</message>
@ -2582,12 +2582,12 @@ A codificação do conteúdo não é UTF-8.</translation>
<message>
<location filename="openlp/core/ui/servicemanager.py" line="1097"/>
<source>Missing Display Handler</source>
<translation type="unfinished"></translation>
<translation>Faltando o Handler de Exibição</translation>
</message>
<message>
<location filename="openlp/core/ui/servicemanager.py" line="1063"/>
<source>Your item cannot be displayed as there is no handler to display it</source>
<translation type="unfinished"></translation>
<translation>O seu item não pode ser exibido porque não existe um handler para exibí-lo</translation>
</message>
<message>
<location filename="openlp/core/ui/servicemanager.py" line="1097"/>
@ -2741,7 +2741,7 @@ A codificação do conteúdo não é UTF-8.</translation>
<message>
<location filename="openlp/core/ui/shortcutlistdialog.py" line="79"/>
<source>Alternate</source>
<translation type="unfinished">Alternativo</translation>
<translation type="unfinished">Alternar</translation>
</message>
</context>
<context>
@ -2834,7 +2834,7 @@ A codificação do conteúdo não é UTF-8.</translation>
<message>
<location filename="openlp/core/ui/slidecontroller.py" line="387"/>
<source>Escape Item</source>
<translation type="unfinished"></translation>
<translation>Escapar Item</translation>
</message>
</context>
<context>
@ -3271,7 +3271,7 @@ A codificação do conteúdo não é UTF-8.</translation>
<message>
<location filename="openlp/core/ui/themewizard.py" line="494"/>
<source>Allows you to change and move the main and footer areas.</source>
<translation type="unfinished">Permite mudar e modificar as áreas principal e do rodapé.</translation>
<translation>Permite mudar e modificar as áreas principal e de rodapé.</translation>
</message>
<message>
<location filename="openlp/core/ui/themewizard.py" line="497"/>
@ -3508,7 +3508,7 @@ A codificação do conteúdo não é UTF-8.</translation>
<message>
<location filename="openlp/core/lib/ui.py" line="63"/>
<source>Live Background Error</source>
<translation type="unfinished"></translation>
<translation>Erro no Fundo da Projeção</translation>
</message>
<message>
<location filename="openlp/core/lib/ui.py" line="64"/>
@ -4123,12 +4123,12 @@ foi criado com sucesso. </translation>
<message>
<location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="92"/>
<source>Output Path Not Selected</source>
<translation type="unfinished"></translation>
<translation>Caminho de saída não foi selecionado</translation>
</message>
<message>
<location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="92"/>
<source>You have not set a valid output location for your song usage report. Please select an existing path on your computer.</source>
<translation type="unfinished"></translation>
<translation>Você precisa selecionar uma localização válida para o relatório de uso de músicas. Por favor selecione um caminho existente no seu computador.</translation>
</message>
</context>
<context>
@ -4973,7 +4973,7 @@ A codificação é responsável pela correta representação dos caracteres.</tr
<message>
<location filename="openlp/plugins/songs/lib/songstab.py" line="80"/>
<source>Display verses on live tool bar</source>
<translation type="unfinished"></translation>
<translation>Exibir versículos na barra de projeção</translation>
</message>
<message>
<location filename="openlp/plugins/songs/lib/songstab.py" line="82"/>
@ -4983,7 +4983,7 @@ A codificação é responsável pela correta representação dos caracteres.</tr
<message>
<location filename="openlp/plugins/songs/lib/songstab.py" line="84"/>
<source>Add missing songs when opening service</source>
<translation type="unfinished"></translation>
<translation>Adicionar músicas não existantes ao abrir lista</translation>
</message>
</context>
<context>

View File

@ -1478,102 +1478,102 @@ Version: %s
<context>
<name>OpenLP.FirstTimeWizard</name>
<message>
<location filename="openlp/core/ui/firsttimeform.py" line="61"/>
<location filename="openlp/core/ui/firsttimeform.py" line="62"/>
<source>Downloading %s...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimeform.py" line="231"/>
<location filename="openlp/core/ui/firsttimeform.py" line="243"/>
<source>Download complete. Click the finish button to start OpenLP.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimeform.py" line="240"/>
<location filename="openlp/core/ui/firsttimeform.py" line="252"/>
<source>Enabling selected plugins...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="193"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="191"/>
<source>First Time Wizard</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="195"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="193"/>
<source>Welcome to the First Time Wizard</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="199"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="197"/>
<source>This wizard will help you to configure OpenLP for initial use. Click the next button below to start the process of selection your initial options. </source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="203"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="201"/>
<source>Activate required Plugins</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="205"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="203"/>
<source>Select the Plugins you wish to use. </source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="207"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="205"/>
<source>Songs</source>
<translation type="unfinished">Псалмы</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="208"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="206"/>
<source>Custom Text</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="210"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="208"/>
<source>Bible</source>
<translation type="unfinished">Библия</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="211"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="209"/>
<source>Images</source>
<translation type="unfinished">Изображения</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="213"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="211"/>
<source>Presentations</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="215"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="213"/>
<source>Media (Audio and Video)</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="217"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="215"/>
<source>Allow remote access</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="219"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="217"/>
<source>Monitor Song Usage</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="221"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="219"/>
<source>Allow Alerts</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="223"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="221"/>
<source>No Internet Connection</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="225"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="223"/>
<source>Unable to detect an Internet connection.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="228"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="226"/>
<source>No Internet connection was found. The First Time Wizard needs an Internet connection in order to be able to download sample songs, Bibles and themes.
To re-run the First Time Wizard and import this sample data at a later stage, press the cancel button now, check your Internet connection, and restart OpenLP.
@ -1582,67 +1582,67 @@ To cancel the First Time Wizard completely, press the finish button now.</source
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="236"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="234"/>
<source>Sample Songs</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="238"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="236"/>
<source>Select and download public domain songs.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="240"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="238"/>
<source>Sample Bibles</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="242"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="240"/>
<source>Select and download free Bibles.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="244"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="242"/>
<source>Sample Themes</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="246"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="244"/>
<source>Select and download sample themes.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="248"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="246"/>
<source>Default Settings</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="250"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="248"/>
<source>Set up default settings to be used by OpenLP.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="252"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="250"/>
<source>Setting Up And Importing</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="254"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="252"/>
<source>Please wait while OpenLP is set up and your data is imported.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="256"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="254"/>
<source>Default output display:</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="258"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="256"/>
<source>Select default theme:</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="260"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="258"/>
<source>Starting configuration process...</source>
<translation type="unfinished"></translation>
</message>
@ -1768,12 +1768,12 @@ To cancel the First Time Wizard completely, press the finish button now.</source
<context>
<name>OpenLP.LanguageManager</name>
<message>
<location filename="openlp/core/utils/languagemanager.py" line="132"/>
<location filename="openlp/core/utils/languagemanager.py" line="130"/>
<source>Language</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/utils/languagemanager.py" line="132"/>
<location filename="openlp/core/utils/languagemanager.py" line="130"/>
<source>Please restart OpenLP to use your new language setting.</source>
<translation type="unfinished"></translation>
</message>
@ -1789,394 +1789,394 @@ To cancel the First Time Wizard completely, press the finish button now.</source
<context>
<name>OpenLP.MainWindow</name>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="315"/>
<location filename="openlp/core/ui/mainwindow.py" line="313"/>
<source>&amp;File</source>
<translation>&amp;Файл</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="316"/>
<location filename="openlp/core/ui/mainwindow.py" line="314"/>
<source>&amp;Import</source>
<translation>&amp;Импорт</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="317"/>
<location filename="openlp/core/ui/mainwindow.py" line="315"/>
<source>&amp;Export</source>
<translation>&amp;Экспорт</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="318"/>
<location filename="openlp/core/ui/mainwindow.py" line="316"/>
<source>&amp;View</source>
<translation>&amp;Вид</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="319"/>
<location filename="openlp/core/ui/mainwindow.py" line="317"/>
<source>M&amp;ode</source>
<translation>Р&amp;ежим</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="320"/>
<location filename="openlp/core/ui/mainwindow.py" line="318"/>
<source>&amp;Tools</source>
<translation>&amp;Инструменты</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="321"/>
<location filename="openlp/core/ui/mainwindow.py" line="319"/>
<source>&amp;Settings</source>
<translation>&amp;Настройки</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="370"/>
<location filename="openlp/core/ui/mainwindow.py" line="368"/>
<source>&amp;Language</source>
<translation>&amp;Язык</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="324"/>
<location filename="openlp/core/ui/mainwindow.py" line="322"/>
<source>&amp;Help</source>
<translation>&amp;Помощь</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="325"/>
<location filename="openlp/core/ui/mainwindow.py" line="323"/>
<source>Media Manager</source>
<translation>Управление Материалами</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="327"/>
<location filename="openlp/core/ui/mainwindow.py" line="325"/>
<source>Service Manager</source>
<translation>Управление Служением</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="329"/>
<location filename="openlp/core/ui/mainwindow.py" line="327"/>
<source>Theme Manager</source>
<translation>Управление Темами</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="331"/>
<location filename="openlp/core/ui/mainwindow.py" line="329"/>
<source>&amp;New</source>
<translation>&amp;Новая</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="334"/>
<location filename="openlp/core/ui/mainwindow.py" line="332"/>
<source>Ctrl+N</source>
<translation>Ctrl+N</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="335"/>
<location filename="openlp/core/ui/mainwindow.py" line="333"/>
<source>&amp;Open</source>
<translation>&amp;Открыть</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="337"/>
<location filename="openlp/core/ui/mainwindow.py" line="335"/>
<source>Open an existing service.</source>
<translation>Открыть существующее служение.</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="339"/>
<location filename="openlp/core/ui/mainwindow.py" line="337"/>
<source>Ctrl+O</source>
<translation>Ctrl+O</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="340"/>
<location filename="openlp/core/ui/mainwindow.py" line="338"/>
<source>&amp;Save</source>
<translation>&amp;Сохранить</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="342"/>
<location filename="openlp/core/ui/mainwindow.py" line="340"/>
<source>Save the current service to disk.</source>
<translation>Сохранить текущее служение на диск.</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="344"/>
<location filename="openlp/core/ui/mainwindow.py" line="342"/>
<source>Ctrl+S</source>
<translation>Ctrl+S</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="345"/>
<location filename="openlp/core/ui/mainwindow.py" line="343"/>
<source>Save &amp;As...</source>
<translation>Сохранить к&amp;ак...</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="347"/>
<location filename="openlp/core/ui/mainwindow.py" line="345"/>
<source>Save Service As</source>
<translation>Сохранить служение как</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="349"/>
<location filename="openlp/core/ui/mainwindow.py" line="347"/>
<source>Save the current service under a new name.</source>
<translation>Сохранить текущее служение под новым именем.</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="351"/>
<location filename="openlp/core/ui/mainwindow.py" line="349"/>
<source>Ctrl+Shift+S</source>
<translation>Ctrl+Shift+S</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="354"/>
<location filename="openlp/core/ui/mainwindow.py" line="352"/>
<source>Print the current Service Order.</source>
<translation>Распечатать текущий Порядок Служения</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="356"/>
<location filename="openlp/core/ui/mainwindow.py" line="354"/>
<source>Ctrl+P</source>
<translation>Ctrl+P</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="358"/>
<location filename="openlp/core/ui/mainwindow.py" line="356"/>
<source>E&amp;xit</source>
<translation>Вы&amp;ход</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="360"/>
<location filename="openlp/core/ui/mainwindow.py" line="358"/>
<source>Quit OpenLP</source>
<translation>Завершить работу OpenLP</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="362"/>
<location filename="openlp/core/ui/mainwindow.py" line="360"/>
<source>Alt+F4</source>
<translation>Alt+F4</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="368"/>
<location filename="openlp/core/ui/mainwindow.py" line="366"/>
<source>&amp;Theme</source>
<translation>Т&amp;ема</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="372"/>
<location filename="openlp/core/ui/mainwindow.py" line="370"/>
<source>Configure &amp;Shortcuts...</source>
<translation>Настройки и б&amp;ыстрые клавиши...</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="376"/>
<location filename="openlp/core/ui/mainwindow.py" line="374"/>
<source>&amp;Configure OpenLP...</source>
<translation>&amp;Настроить OpenLP...</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="378"/>
<location filename="openlp/core/ui/mainwindow.py" line="376"/>
<source>&amp;Media Manager</source>
<translation>Управление &amp;Материалами</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="380"/>
<location filename="openlp/core/ui/mainwindow.py" line="378"/>
<source>Toggle Media Manager</source>
<translation>Свернуть Менеджер Медиа</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="382"/>
<location filename="openlp/core/ui/mainwindow.py" line="380"/>
<source>Toggle the visibility of the media manager.</source>
<translation type="unfinished">Свернуть видимость Менеджера Медиа.</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="384"/>
<location filename="openlp/core/ui/mainwindow.py" line="382"/>
<source>F8</source>
<translation>F8</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="386"/>
<location filename="openlp/core/ui/mainwindow.py" line="384"/>
<source>&amp;Theme Manager</source>
<translation>Управление &amp;темами</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="388"/>
<location filename="openlp/core/ui/mainwindow.py" line="386"/>
<source>Toggle Theme Manager</source>
<translation>Свернуть Менеджер Тем</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="390"/>
<location filename="openlp/core/ui/mainwindow.py" line="388"/>
<source>Toggle the visibility of the theme manager.</source>
<translation type="unfinished">Свернуть видимость Менеджера Тем.</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="392"/>
<location filename="openlp/core/ui/mainwindow.py" line="390"/>
<source>F10</source>
<translation>F10</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="394"/>
<location filename="openlp/core/ui/mainwindow.py" line="392"/>
<source>&amp;Service Manager</source>
<translation>Управление &amp;Служением</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="396"/>
<location filename="openlp/core/ui/mainwindow.py" line="394"/>
<source>Toggle Service Manager</source>
<translation>Свернуть Менеджер Служения</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="398"/>
<location filename="openlp/core/ui/mainwindow.py" line="396"/>
<source>Toggle the visibility of the service manager.</source>
<translation>Свернуть видимость Менеджера Служения.</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="400"/>
<location filename="openlp/core/ui/mainwindow.py" line="398"/>
<source>F9</source>
<translation>F9</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="402"/>
<location filename="openlp/core/ui/mainwindow.py" line="400"/>
<source>&amp;Preview Panel</source>
<translation>Пан&amp;ель предпросмотра</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="404"/>
<location filename="openlp/core/ui/mainwindow.py" line="402"/>
<source>Toggle Preview Panel</source>
<translation>Toggle Preview Panel</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="406"/>
<location filename="openlp/core/ui/mainwindow.py" line="404"/>
<source>Toggle the visibility of the preview panel.</source>
<translation>Toggle the visibility of the preview panel.</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="408"/>
<location filename="openlp/core/ui/mainwindow.py" line="406"/>
<source>F11</source>
<translation>F11</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="410"/>
<location filename="openlp/core/ui/mainwindow.py" line="408"/>
<source>&amp;Live Panel</source>
<translation>&amp;Панель проектора</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="412"/>
<location filename="openlp/core/ui/mainwindow.py" line="410"/>
<source>Toggle Live Panel</source>
<translation>Toggle Live Panel</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="414"/>
<location filename="openlp/core/ui/mainwindow.py" line="412"/>
<source>Toggle the visibility of the live panel.</source>
<translation>Toggle the visibility of the live panel.</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="416"/>
<location filename="openlp/core/ui/mainwindow.py" line="414"/>
<source>F12</source>
<translation>F12</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="418"/>
<location filename="openlp/core/ui/mainwindow.py" line="416"/>
<source>&amp;Plugin List</source>
<translation>&amp;Список плагинов</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="420"/>
<location filename="openlp/core/ui/mainwindow.py" line="418"/>
<source>List the Plugins</source>
<translation>Выводит список плагинов</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="422"/>
<location filename="openlp/core/ui/mainwindow.py" line="420"/>
<source>Alt+F7</source>
<translation>Alt+F7</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="424"/>
<location filename="openlp/core/ui/mainwindow.py" line="422"/>
<source>&amp;User Guide</source>
<translation>&amp;Руководство пользователя</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="426"/>
<location filename="openlp/core/ui/mainwindow.py" line="424"/>
<source>&amp;About</source>
<translation>&amp;О программе</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="427"/>
<location filename="openlp/core/ui/mainwindow.py" line="425"/>
<source>More information about OpenLP</source>
<translation>Больше информации про OpenLP</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="429"/>
<location filename="openlp/core/ui/mainwindow.py" line="427"/>
<source>Ctrl+F1</source>
<translation>Ctrl+F1</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="431"/>
<location filename="openlp/core/ui/mainwindow.py" line="429"/>
<source>&amp;Online Help</source>
<translation>&amp;Помощь онлайн</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="433"/>
<location filename="openlp/core/ui/mainwindow.py" line="434"/>
<source>&amp;Web Site</source>
<translation>&amp;Веб-сайт</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="441"/>
<location filename="openlp/core/ui/mainwindow.py" line="442"/>
<source>Use the system language, if available.</source>
<translation>Использовать системный язык, если доступно.</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="437"/>
<location filename="openlp/core/ui/mainwindow.py" line="438"/>
<source>Set the interface language to %s</source>
<translation>Изменить язык интерфеса на %s</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="443"/>
<location filename="openlp/core/ui/mainwindow.py" line="444"/>
<source>Add &amp;Tool...</source>
<translation>Добавить &amp;Инструмент...</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="445"/>
<location filename="openlp/core/ui/mainwindow.py" line="446"/>
<source>Add an application to the list of tools.</source>
<translation>Добавить приложение к списку инструментов</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="451"/>
<location filename="openlp/core/ui/mainwindow.py" line="452"/>
<source>&amp;Default</source>
<translation>&amp;По умолчанию</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="453"/>
<location filename="openlp/core/ui/mainwindow.py" line="454"/>
<source>Set the view mode back to the default.</source>
<translation>Установить вид в режим по умолчанию.</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="455"/>
<location filename="openlp/core/ui/mainwindow.py" line="456"/>
<source>&amp;Setup</source>
<translation>&amp;Настройка</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="456"/>
<location filename="openlp/core/ui/mainwindow.py" line="457"/>
<source>Set the view mode to Setup.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="458"/>
<location filename="openlp/core/ui/mainwindow.py" line="459"/>
<source>&amp;Live</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="459"/>
<location filename="openlp/core/ui/mainwindow.py" line="460"/>
<source>Set the view mode to Live.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="645"/>
<location filename="openlp/core/ui/mainwindow.py" line="648"/>
<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="649"/>
<location filename="openlp/core/ui/mainwindow.py" line="652"/>
<source>OpenLP Version Updated</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="701"/>
<location filename="openlp/core/ui/mainwindow.py" line="704"/>
<source>OpenLP Main Display Blanked</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="701"/>
<location filename="openlp/core/ui/mainwindow.py" line="704"/>
<source>The Main Display has been blanked out</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="832"/>
<location filename="openlp/core/ui/mainwindow.py" line="842"/>
<source>Close OpenLP</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="832"/>
<location filename="openlp/core/ui/mainwindow.py" line="842"/>
<source>Are you sure you want to close OpenLP?</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="910"/>
<location filename="openlp/core/ui/mainwindow.py" line="920"/>
<source>Default Theme: %s</source>
<translation type="unfinished"></translation>
</message>
@ -2187,22 +2187,22 @@ You can download the latest version from http://openlp.org/.</source>
<translation>Английский</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="374"/>
<location filename="openlp/core/ui/mainwindow.py" line="372"/>
<source>&amp;Configure Display Tags</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="447"/>
<location filename="openlp/core/ui/mainwindow.py" line="448"/>
<source>Open &amp;Data Folder...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="449"/>
<location filename="openlp/core/ui/mainwindow.py" line="450"/>
<source>Open the folder where songs, bibles and other data resides.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="439"/>
<location filename="openlp/core/ui/mainwindow.py" line="440"/>
<source>&amp;Autodetect</source>
<translation type="unfinished"></translation>
</message>

View File

@ -1444,102 +1444,102 @@ Version: %s
<context>
<name>OpenLP.FirstTimeWizard</name>
<message>
<location filename="openlp/core/ui/firsttimeform.py" line="61"/>
<location filename="openlp/core/ui/firsttimeform.py" line="62"/>
<source>Downloading %s...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimeform.py" line="231"/>
<location filename="openlp/core/ui/firsttimeform.py" line="243"/>
<source>Download complete. Click the finish button to start OpenLP.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimeform.py" line="240"/>
<location filename="openlp/core/ui/firsttimeform.py" line="252"/>
<source>Enabling selected plugins...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="193"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="191"/>
<source>First Time Wizard</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="195"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="193"/>
<source>Welcome to the First Time Wizard</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="199"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="197"/>
<source>This wizard will help you to configure OpenLP for initial use. Click the next button below to start the process of selection your initial options. </source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="203"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="201"/>
<source>Activate required Plugins</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="205"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="203"/>
<source>Select the Plugins you wish to use. </source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="207"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="205"/>
<source>Songs</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="208"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="206"/>
<source>Custom Text</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="210"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="208"/>
<source>Bible</source>
<translation type="unfinished">Bibel</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="211"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="209"/>
<source>Images</source>
<translation type="unfinished">Bilder</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="213"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="211"/>
<source>Presentations</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="215"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="213"/>
<source>Media (Audio and Video)</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="217"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="215"/>
<source>Allow remote access</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="219"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="217"/>
<source>Monitor Song Usage</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="221"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="219"/>
<source>Allow Alerts</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="223"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="221"/>
<source>No Internet Connection</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="225"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="223"/>
<source>Unable to detect an Internet connection.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="228"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="226"/>
<source>No Internet connection was found. The First Time Wizard needs an Internet connection in order to be able to download sample songs, Bibles and themes.
To re-run the First Time Wizard and import this sample data at a later stage, press the cancel button now, check your Internet connection, and restart OpenLP.
@ -1548,67 +1548,67 @@ To cancel the First Time Wizard completely, press the finish button now.</source
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="236"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="234"/>
<source>Sample Songs</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="238"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="236"/>
<source>Select and download public domain songs.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="240"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="238"/>
<source>Sample Bibles</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="242"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="240"/>
<source>Select and download free Bibles.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="244"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="242"/>
<source>Sample Themes</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="246"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="244"/>
<source>Select and download sample themes.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="248"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="246"/>
<source>Default Settings</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="250"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="248"/>
<source>Set up default settings to be used by OpenLP.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="252"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="250"/>
<source>Setting Up And Importing</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="254"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="252"/>
<source>Please wait while OpenLP is set up and your data is imported.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="256"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="254"/>
<source>Default output display:</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="258"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="256"/>
<source>Select default theme:</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="260"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="258"/>
<source>Starting configuration process...</source>
<translation type="unfinished"></translation>
</message>
@ -1734,12 +1734,12 @@ To cancel the First Time Wizard completely, press the finish button now.</source
<context>
<name>OpenLP.LanguageManager</name>
<message>
<location filename="openlp/core/utils/languagemanager.py" line="132"/>
<location filename="openlp/core/utils/languagemanager.py" line="130"/>
<source>Language</source>
<translation>Språk</translation>
</message>
<message>
<location filename="openlp/core/utils/languagemanager.py" line="132"/>
<location filename="openlp/core/utils/languagemanager.py" line="130"/>
<source>Please restart OpenLP to use your new language setting.</source>
<translation>Vänligen starta om OpenLP för att aktivera dina nya språkinställningar.</translation>
</message>
@ -1755,369 +1755,369 @@ To cancel the First Time Wizard completely, press the finish button now.</source
<context>
<name>OpenLP.MainWindow</name>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="315"/>
<location filename="openlp/core/ui/mainwindow.py" line="313"/>
<source>&amp;File</source>
<translation type="unfinished">&amp;Fil</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="316"/>
<location filename="openlp/core/ui/mainwindow.py" line="314"/>
<source>&amp;Import</source>
<translation type="unfinished">&amp;Importera</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="317"/>
<location filename="openlp/core/ui/mainwindow.py" line="315"/>
<source>&amp;Export</source>
<translation type="unfinished">&amp;Exportera</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="318"/>
<location filename="openlp/core/ui/mainwindow.py" line="316"/>
<source>&amp;View</source>
<translation type="unfinished">&amp;Visa</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="319"/>
<location filename="openlp/core/ui/mainwindow.py" line="317"/>
<source>M&amp;ode</source>
<translation type="unfinished">&amp;Läge</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="320"/>
<location filename="openlp/core/ui/mainwindow.py" line="318"/>
<source>&amp;Tools</source>
<translation type="unfinished">&amp;Verktyg</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="321"/>
<location filename="openlp/core/ui/mainwindow.py" line="319"/>
<source>&amp;Settings</source>
<translation type="unfinished">&amp;Inställningar</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="370"/>
<location filename="openlp/core/ui/mainwindow.py" line="368"/>
<source>&amp;Language</source>
<translation type="unfinished">&amp;Språk</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="324"/>
<location filename="openlp/core/ui/mainwindow.py" line="322"/>
<source>&amp;Help</source>
<translation type="unfinished">&amp;Hjälp</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="325"/>
<location filename="openlp/core/ui/mainwindow.py" line="323"/>
<source>Media Manager</source>
<translation type="unfinished">Mediahanterare</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="327"/>
<location filename="openlp/core/ui/mainwindow.py" line="325"/>
<source>Service Manager</source>
<translation>Planeringshanterare</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="329"/>
<location filename="openlp/core/ui/mainwindow.py" line="327"/>
<source>Theme Manager</source>
<translation type="unfinished">Temahanterare</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="331"/>
<location filename="openlp/core/ui/mainwindow.py" line="329"/>
<source>&amp;New</source>
<translation type="unfinished">&amp;Ny</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="334"/>
<location filename="openlp/core/ui/mainwindow.py" line="332"/>
<source>Ctrl+N</source>
<translation type="unfinished">Ctrl+N</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="335"/>
<location filename="openlp/core/ui/mainwindow.py" line="333"/>
<source>&amp;Open</source>
<translation type="unfinished">&amp;Öppna</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="337"/>
<location filename="openlp/core/ui/mainwindow.py" line="335"/>
<source>Open an existing service.</source>
<translation>Öppna en befintlig planering.</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="339"/>
<location filename="openlp/core/ui/mainwindow.py" line="337"/>
<source>Ctrl+O</source>
<translation type="unfinished">Ctrl+O</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="340"/>
<location filename="openlp/core/ui/mainwindow.py" line="338"/>
<source>&amp;Save</source>
<translation type="unfinished">&amp;Spara</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="342"/>
<location filename="openlp/core/ui/mainwindow.py" line="340"/>
<source>Save the current service to disk.</source>
<translation>Spara den aktuella planeringen till disk.</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="344"/>
<location filename="openlp/core/ui/mainwindow.py" line="342"/>
<source>Ctrl+S</source>
<translation type="unfinished">Ctrl+S</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="345"/>
<location filename="openlp/core/ui/mainwindow.py" line="343"/>
<source>Save &amp;As...</source>
<translation type="unfinished">S&amp;para som...</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="347"/>
<location filename="openlp/core/ui/mainwindow.py" line="345"/>
<source>Save Service As</source>
<translation>Spara planering som</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="349"/>
<location filename="openlp/core/ui/mainwindow.py" line="347"/>
<source>Save the current service under a new name.</source>
<translation>Spara den aktuella planeringen under ett nytt namn.</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="351"/>
<location filename="openlp/core/ui/mainwindow.py" line="349"/>
<source>Ctrl+Shift+S</source>
<translation>Ctrl+Shift+S</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="358"/>
<location filename="openlp/core/ui/mainwindow.py" line="356"/>
<source>E&amp;xit</source>
<translation type="unfinished">&amp;Avsluta</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="360"/>
<location filename="openlp/core/ui/mainwindow.py" line="358"/>
<source>Quit OpenLP</source>
<translation>Avsluta OpenLP</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="362"/>
<location filename="openlp/core/ui/mainwindow.py" line="360"/>
<source>Alt+F4</source>
<translation type="unfinished">Alt+F4</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="368"/>
<location filename="openlp/core/ui/mainwindow.py" line="366"/>
<source>&amp;Theme</source>
<translation type="unfinished">&amp;Tema</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="376"/>
<location filename="openlp/core/ui/mainwindow.py" line="374"/>
<source>&amp;Configure OpenLP...</source>
<translation>&amp;Konfigurera OpenLP...</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="378"/>
<location filename="openlp/core/ui/mainwindow.py" line="376"/>
<source>&amp;Media Manager</source>
<translation type="unfinished">&amp;Mediahanterare</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="380"/>
<location filename="openlp/core/ui/mainwindow.py" line="378"/>
<source>Toggle Media Manager</source>
<translation type="unfinished">Växla mediahanterare</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="382"/>
<location filename="openlp/core/ui/mainwindow.py" line="380"/>
<source>Toggle the visibility of the media manager.</source>
<translation>Växla synligheten för mediahanteraren.</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="384"/>
<location filename="openlp/core/ui/mainwindow.py" line="382"/>
<source>F8</source>
<translation type="unfinished">F8</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="386"/>
<location filename="openlp/core/ui/mainwindow.py" line="384"/>
<source>&amp;Theme Manager</source>
<translation type="unfinished">&amp;Temahanterare</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="388"/>
<location filename="openlp/core/ui/mainwindow.py" line="386"/>
<source>Toggle Theme Manager</source>
<translation type="unfinished">Växla temahanteraren</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="390"/>
<location filename="openlp/core/ui/mainwindow.py" line="388"/>
<source>Toggle the visibility of the theme manager.</source>
<translation>Växla synligheten för temahanteraren.</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="392"/>
<location filename="openlp/core/ui/mainwindow.py" line="390"/>
<source>F10</source>
<translation type="unfinished">F10</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="394"/>
<location filename="openlp/core/ui/mainwindow.py" line="392"/>
<source>&amp;Service Manager</source>
<translation>&amp;Planeringshanterare</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="396"/>
<location filename="openlp/core/ui/mainwindow.py" line="394"/>
<source>Toggle Service Manager</source>
<translation>Växla planeringshanterare</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="398"/>
<location filename="openlp/core/ui/mainwindow.py" line="396"/>
<source>Toggle the visibility of the service manager.</source>
<translation>Växla synligheten för planeringshanteraren.</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="400"/>
<location filename="openlp/core/ui/mainwindow.py" line="398"/>
<source>F9</source>
<translation type="unfinished">F9</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="402"/>
<location filename="openlp/core/ui/mainwindow.py" line="400"/>
<source>&amp;Preview Panel</source>
<translation>&amp;Förhandsgranskningpanel</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="404"/>
<location filename="openlp/core/ui/mainwindow.py" line="402"/>
<source>Toggle Preview Panel</source>
<translation type="unfinished">Växla förhandsgranskningspanel</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="406"/>
<location filename="openlp/core/ui/mainwindow.py" line="404"/>
<source>Toggle the visibility of the preview panel.</source>
<translation>Växla synligheten för förhandsgranskningspanelen.</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="408"/>
<location filename="openlp/core/ui/mainwindow.py" line="406"/>
<source>F11</source>
<translation type="unfinished">F11</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="410"/>
<location filename="openlp/core/ui/mainwindow.py" line="408"/>
<source>&amp;Live Panel</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="412"/>
<location filename="openlp/core/ui/mainwindow.py" line="410"/>
<source>Toggle Live Panel</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="414"/>
<location filename="openlp/core/ui/mainwindow.py" line="412"/>
<source>Toggle the visibility of the live panel.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="416"/>
<location filename="openlp/core/ui/mainwindow.py" line="414"/>
<source>F12</source>
<translation type="unfinished">F12</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="418"/>
<location filename="openlp/core/ui/mainwindow.py" line="416"/>
<source>&amp;Plugin List</source>
<translation type="unfinished">&amp;Pluginlista</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="420"/>
<location filename="openlp/core/ui/mainwindow.py" line="418"/>
<source>List the Plugins</source>
<translation>Lista pluginen</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="422"/>
<location filename="openlp/core/ui/mainwindow.py" line="420"/>
<source>Alt+F7</source>
<translation type="unfinished">Alt+F7</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="424"/>
<location filename="openlp/core/ui/mainwindow.py" line="422"/>
<source>&amp;User Guide</source>
<translation type="unfinished">&amp;Användarguide</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="426"/>
<location filename="openlp/core/ui/mainwindow.py" line="424"/>
<source>&amp;About</source>
<translation type="unfinished">&amp;Om</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="427"/>
<location filename="openlp/core/ui/mainwindow.py" line="425"/>
<source>More information about OpenLP</source>
<translation type="unfinished">Mer information om OpenLP</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="429"/>
<location filename="openlp/core/ui/mainwindow.py" line="427"/>
<source>Ctrl+F1</source>
<translation type="unfinished">Ctrl+F1</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="431"/>
<location filename="openlp/core/ui/mainwindow.py" line="429"/>
<source>&amp;Online Help</source>
<translation>&amp;Hjälp online</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="433"/>
<location filename="openlp/core/ui/mainwindow.py" line="434"/>
<source>&amp;Web Site</source>
<translation type="unfinished">&amp;Webbsida</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="441"/>
<location filename="openlp/core/ui/mainwindow.py" line="442"/>
<source>Use the system language, if available.</source>
<translation>Använd systemspråket om möjligt.</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="437"/>
<location filename="openlp/core/ui/mainwindow.py" line="438"/>
<source>Set the interface language to %s</source>
<translation>Sätt användargränssnittets språk till %s</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="443"/>
<location filename="openlp/core/ui/mainwindow.py" line="444"/>
<source>Add &amp;Tool...</source>
<translation>Lägg till &amp;verktyg...</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="445"/>
<location filename="openlp/core/ui/mainwindow.py" line="446"/>
<source>Add an application to the list of tools.</source>
<translation>Lägg till en applikation i verktygslistan.</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="451"/>
<location filename="openlp/core/ui/mainwindow.py" line="452"/>
<source>&amp;Default</source>
<translation>&amp;Standard</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="453"/>
<location filename="openlp/core/ui/mainwindow.py" line="454"/>
<source>Set the view mode back to the default.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="455"/>
<location filename="openlp/core/ui/mainwindow.py" line="456"/>
<source>&amp;Setup</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="456"/>
<location filename="openlp/core/ui/mainwindow.py" line="457"/>
<source>Set the view mode to Setup.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="458"/>
<location filename="openlp/core/ui/mainwindow.py" line="459"/>
<source>&amp;Live</source>
<translation type="unfinished">&amp;Live</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="459"/>
<location filename="openlp/core/ui/mainwindow.py" line="460"/>
<source>Set the view mode to Live.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="645"/>
<location filename="openlp/core/ui/mainwindow.py" line="648"/>
<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="649"/>
<location filename="openlp/core/ui/mainwindow.py" line="652"/>
<source>OpenLP Version Updated</source>
<translation>OpenLP-versionen uppdaterad</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="701"/>
<location filename="openlp/core/ui/mainwindow.py" line="704"/>
<source>OpenLP Main Display Blanked</source>
<translation>OpenLPs huvuddisplay rensad</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="701"/>
<location filename="openlp/core/ui/mainwindow.py" line="704"/>
<source>The Main Display has been blanked out</source>
<translation type="unfinished">Huvuddisplayen har rensats</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="910"/>
<location filename="openlp/core/ui/mainwindow.py" line="920"/>
<source>Default Theme: %s</source>
<translation>Standardtema: %s</translation>
</message>
@ -2128,47 +2128,47 @@ You can download the latest version from http://openlp.org/.</source>
<translation>Svenska</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="372"/>
<location filename="openlp/core/ui/mainwindow.py" line="370"/>
<source>Configure &amp;Shortcuts...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="832"/>
<location filename="openlp/core/ui/mainwindow.py" line="842"/>
<source>Close OpenLP</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="832"/>
<location filename="openlp/core/ui/mainwindow.py" line="842"/>
<source>Are you sure you want to close OpenLP?</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="354"/>
<location filename="openlp/core/ui/mainwindow.py" line="352"/>
<source>Print the current Service Order.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="356"/>
<location filename="openlp/core/ui/mainwindow.py" line="354"/>
<source>Ctrl+P</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="447"/>
<location filename="openlp/core/ui/mainwindow.py" line="448"/>
<source>Open &amp;Data Folder...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="449"/>
<location filename="openlp/core/ui/mainwindow.py" line="450"/>
<source>Open the folder where songs, bibles and other data resides.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="374"/>
<location filename="openlp/core/ui/mainwindow.py" line="372"/>
<source>&amp;Configure Display Tags</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="439"/>
<location filename="openlp/core/ui/mainwindow.py" line="440"/>
<source>&amp;Autodetect</source>
<translation type="unfinished"></translation>
</message>

View File

@ -1440,102 +1440,102 @@ Version: %s
<context>
<name>OpenLP.FirstTimeWizard</name>
<message>
<location filename="openlp/core/ui/firsttimeform.py" line="61"/>
<location filename="openlp/core/ui/firsttimeform.py" line="62"/>
<source>Downloading %s...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimeform.py" line="231"/>
<location filename="openlp/core/ui/firsttimeform.py" line="243"/>
<source>Download complete. Click the finish button to start OpenLP.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimeform.py" line="240"/>
<location filename="openlp/core/ui/firsttimeform.py" line="252"/>
<source>Enabling selected plugins...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="193"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="191"/>
<source>First Time Wizard</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="195"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="193"/>
<source>Welcome to the First Time Wizard</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="199"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="197"/>
<source>This wizard will help you to configure OpenLP for initial use. Click the next button below to start the process of selection your initial options. </source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="203"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="201"/>
<source>Activate required Plugins</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="205"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="203"/>
<source>Select the Plugins you wish to use. </source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="207"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="205"/>
<source>Songs</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="208"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="206"/>
<source>Custom Text</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="210"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="208"/>
<source>Bible</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="211"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="209"/>
<source>Images</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="213"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="211"/>
<source>Presentations</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="215"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="213"/>
<source>Media (Audio and Video)</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="217"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="215"/>
<source>Allow remote access</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="219"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="217"/>
<source>Monitor Song Usage</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="221"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="219"/>
<source>Allow Alerts</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="223"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="221"/>
<source>No Internet Connection</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="225"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="223"/>
<source>Unable to detect an Internet connection.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="228"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="226"/>
<source>No Internet connection was found. The First Time Wizard needs an Internet connection in order to be able to download sample songs, Bibles and themes.
To re-run the First Time Wizard and import this sample data at a later stage, press the cancel button now, check your Internet connection, and restart OpenLP.
@ -1544,67 +1544,67 @@ To cancel the First Time Wizard completely, press the finish button now.</source
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="236"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="234"/>
<source>Sample Songs</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="238"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="236"/>
<source>Select and download public domain songs.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="240"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="238"/>
<source>Sample Bibles</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="242"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="240"/>
<source>Select and download free Bibles.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="244"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="242"/>
<source>Sample Themes</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="246"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="244"/>
<source>Select and download sample themes.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="248"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="246"/>
<source>Default Settings</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="250"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="248"/>
<source>Set up default settings to be used by OpenLP.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="252"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="250"/>
<source>Setting Up And Importing</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="254"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="252"/>
<source>Please wait while OpenLP is set up and your data is imported.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="256"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="254"/>
<source>Default output display:</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="258"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="256"/>
<source>Select default theme:</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="260"/>
<location filename="openlp/core/ui/firsttimewizard.py" line="258"/>
<source>Starting configuration process...</source>
<translation type="unfinished"></translation>
</message>
@ -1730,12 +1730,12 @@ To cancel the First Time Wizard completely, press the finish button now.</source
<context>
<name>OpenLP.LanguageManager</name>
<message>
<location filename="openlp/core/utils/languagemanager.py" line="132"/>
<location filename="openlp/core/utils/languagemanager.py" line="130"/>
<source>Language</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/utils/languagemanager.py" line="132"/>
<location filename="openlp/core/utils/languagemanager.py" line="130"/>
<source>Please restart OpenLP to use your new language setting.</source>
<translation type="unfinished"></translation>
</message>
@ -1751,369 +1751,369 @@ To cancel the First Time Wizard completely, press the finish button now.</source
<context>
<name>OpenLP.MainWindow</name>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="315"/>
<location filename="openlp/core/ui/mainwindow.py" line="313"/>
<source>&amp;File</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="316"/>
<location filename="openlp/core/ui/mainwindow.py" line="314"/>
<source>&amp;Import</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="317"/>
<location filename="openlp/core/ui/mainwindow.py" line="315"/>
<source>&amp;Export</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="318"/>
<location filename="openlp/core/ui/mainwindow.py" line="316"/>
<source>&amp;View</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="319"/>
<location filename="openlp/core/ui/mainwindow.py" line="317"/>
<source>M&amp;ode</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="320"/>
<location filename="openlp/core/ui/mainwindow.py" line="318"/>
<source>&amp;Tools</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="321"/>
<location filename="openlp/core/ui/mainwindow.py" line="319"/>
<source>&amp;Settings</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="370"/>
<location filename="openlp/core/ui/mainwindow.py" line="368"/>
<source>&amp;Language</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="324"/>
<location filename="openlp/core/ui/mainwindow.py" line="322"/>
<source>&amp;Help</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="325"/>
<location filename="openlp/core/ui/mainwindow.py" line="323"/>
<source>Media Manager</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="327"/>
<location filename="openlp/core/ui/mainwindow.py" line="325"/>
<source>Service Manager</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="329"/>
<location filename="openlp/core/ui/mainwindow.py" line="327"/>
<source>Theme Manager</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="331"/>
<location filename="openlp/core/ui/mainwindow.py" line="329"/>
<source>&amp;New</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="334"/>
<location filename="openlp/core/ui/mainwindow.py" line="332"/>
<source>Ctrl+N</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="335"/>
<location filename="openlp/core/ui/mainwindow.py" line="333"/>
<source>&amp;Open</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="337"/>
<location filename="openlp/core/ui/mainwindow.py" line="335"/>
<source>Open an existing service.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="339"/>
<location filename="openlp/core/ui/mainwindow.py" line="337"/>
<source>Ctrl+O</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="340"/>
<location filename="openlp/core/ui/mainwindow.py" line="338"/>
<source>&amp;Save</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="342"/>
<location filename="openlp/core/ui/mainwindow.py" line="340"/>
<source>Save the current service to disk.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="344"/>
<location filename="openlp/core/ui/mainwindow.py" line="342"/>
<source>Ctrl+S</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="345"/>
<location filename="openlp/core/ui/mainwindow.py" line="343"/>
<source>Save &amp;As...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="347"/>
<location filename="openlp/core/ui/mainwindow.py" line="345"/>
<source>Save Service As</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="349"/>
<location filename="openlp/core/ui/mainwindow.py" line="347"/>
<source>Save the current service under a new name.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="351"/>
<location filename="openlp/core/ui/mainwindow.py" line="349"/>
<source>Ctrl+Shift+S</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="358"/>
<location filename="openlp/core/ui/mainwindow.py" line="356"/>
<source>E&amp;xit</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="360"/>
<location filename="openlp/core/ui/mainwindow.py" line="358"/>
<source>Quit OpenLP</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="362"/>
<location filename="openlp/core/ui/mainwindow.py" line="360"/>
<source>Alt+F4</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="368"/>
<location filename="openlp/core/ui/mainwindow.py" line="366"/>
<source>&amp;Theme</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="376"/>
<location filename="openlp/core/ui/mainwindow.py" line="374"/>
<source>&amp;Configure OpenLP...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="378"/>
<location filename="openlp/core/ui/mainwindow.py" line="376"/>
<source>&amp;Media Manager</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="380"/>
<location filename="openlp/core/ui/mainwindow.py" line="378"/>
<source>Toggle Media Manager</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="382"/>
<location filename="openlp/core/ui/mainwindow.py" line="380"/>
<source>Toggle the visibility of the media manager.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="384"/>
<location filename="openlp/core/ui/mainwindow.py" line="382"/>
<source>F8</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="386"/>
<location filename="openlp/core/ui/mainwindow.py" line="384"/>
<source>&amp;Theme Manager</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="388"/>
<location filename="openlp/core/ui/mainwindow.py" line="386"/>
<source>Toggle Theme Manager</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="390"/>
<location filename="openlp/core/ui/mainwindow.py" line="388"/>
<source>Toggle the visibility of the theme manager.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="392"/>
<location filename="openlp/core/ui/mainwindow.py" line="390"/>
<source>F10</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="394"/>
<location filename="openlp/core/ui/mainwindow.py" line="392"/>
<source>&amp;Service Manager</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="396"/>
<location filename="openlp/core/ui/mainwindow.py" line="394"/>
<source>Toggle Service Manager</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="398"/>
<location filename="openlp/core/ui/mainwindow.py" line="396"/>
<source>Toggle the visibility of the service manager.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="400"/>
<location filename="openlp/core/ui/mainwindow.py" line="398"/>
<source>F9</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="402"/>
<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="404"/>
<location filename="openlp/core/ui/mainwindow.py" line="402"/>
<source>Toggle Preview Panel</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="406"/>
<location filename="openlp/core/ui/mainwindow.py" line="404"/>
<source>Toggle the visibility of the preview panel.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="408"/>
<location filename="openlp/core/ui/mainwindow.py" line="406"/>
<source>F11</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="410"/>
<location filename="openlp/core/ui/mainwindow.py" line="408"/>
<source>&amp;Live Panel</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="412"/>
<location filename="openlp/core/ui/mainwindow.py" line="410"/>
<source>Toggle Live Panel</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="414"/>
<location filename="openlp/core/ui/mainwindow.py" line="412"/>
<source>Toggle the visibility of the live panel.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="416"/>
<location filename="openlp/core/ui/mainwindow.py" line="414"/>
<source>F12</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="418"/>
<location filename="openlp/core/ui/mainwindow.py" line="416"/>
<source>&amp;Plugin List</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="420"/>
<location filename="openlp/core/ui/mainwindow.py" line="418"/>
<source>List the Plugins</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="422"/>
<location filename="openlp/core/ui/mainwindow.py" line="420"/>
<source>Alt+F7</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="424"/>
<location filename="openlp/core/ui/mainwindow.py" line="422"/>
<source>&amp;User Guide</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="426"/>
<location filename="openlp/core/ui/mainwindow.py" line="424"/>
<source>&amp;About</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="427"/>
<location filename="openlp/core/ui/mainwindow.py" line="425"/>
<source>More information about OpenLP</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="429"/>
<location filename="openlp/core/ui/mainwindow.py" line="427"/>
<source>Ctrl+F1</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="431"/>
<location filename="openlp/core/ui/mainwindow.py" line="429"/>
<source>&amp;Online Help</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="433"/>
<location filename="openlp/core/ui/mainwindow.py" line="434"/>
<source>&amp;Web Site</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="441"/>
<location filename="openlp/core/ui/mainwindow.py" line="442"/>
<source>Use the system language, if available.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="437"/>
<location filename="openlp/core/ui/mainwindow.py" line="438"/>
<source>Set the interface language to %s</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="443"/>
<location filename="openlp/core/ui/mainwindow.py" line="444"/>
<source>Add &amp;Tool...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="445"/>
<location filename="openlp/core/ui/mainwindow.py" line="446"/>
<source>Add an application to the list of tools.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="451"/>
<location filename="openlp/core/ui/mainwindow.py" line="452"/>
<source>&amp;Default</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="453"/>
<location filename="openlp/core/ui/mainwindow.py" line="454"/>
<source>Set the view mode back to the default.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="455"/>
<location filename="openlp/core/ui/mainwindow.py" line="456"/>
<source>&amp;Setup</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="456"/>
<location filename="openlp/core/ui/mainwindow.py" line="457"/>
<source>Set the view mode to Setup.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="458"/>
<location filename="openlp/core/ui/mainwindow.py" line="459"/>
<source>&amp;Live</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="459"/>
<location filename="openlp/core/ui/mainwindow.py" line="460"/>
<source>Set the view mode to Live.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="645"/>
<location filename="openlp/core/ui/mainwindow.py" line="648"/>
<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="649"/>
<location filename="openlp/core/ui/mainwindow.py" line="652"/>
<source>OpenLP Version Updated</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="701"/>
<location filename="openlp/core/ui/mainwindow.py" line="704"/>
<source>OpenLP Main Display Blanked</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="701"/>
<location filename="openlp/core/ui/mainwindow.py" line="704"/>
<source>The Main Display has been blanked out</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="910"/>
<location filename="openlp/core/ui/mainwindow.py" line="920"/>
<source>Default Theme: %s</source>
<translation type="unfinished"></translation>
</message>
@ -2124,47 +2124,47 @@ 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="372"/>
<location filename="openlp/core/ui/mainwindow.py" line="370"/>
<source>Configure &amp;Shortcuts...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="832"/>
<location filename="openlp/core/ui/mainwindow.py" line="842"/>
<source>Close OpenLP</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="832"/>
<location filename="openlp/core/ui/mainwindow.py" line="842"/>
<source>Are you sure you want to close OpenLP?</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="354"/>
<location filename="openlp/core/ui/mainwindow.py" line="352"/>
<source>Print the current Service Order.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="356"/>
<location filename="openlp/core/ui/mainwindow.py" line="354"/>
<source>Ctrl+P</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="374"/>
<location filename="openlp/core/ui/mainwindow.py" line="372"/>
<source>&amp;Configure Display Tags</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="447"/>
<location filename="openlp/core/ui/mainwindow.py" line="448"/>
<source>Open &amp;Data Folder...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="449"/>
<location filename="openlp/core/ui/mainwindow.py" line="450"/>
<source>Open the folder where songs, bibles and other data resides.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="439"/>
<location filename="openlp/core/ui/mainwindow.py" line="440"/>
<source>&amp;Autodetect</source>
<translation type="unfinished"></translation>
</message>