forked from openlp/openlp
r1421
This commit is contained in:
commit
09f22e9144
37
openlp.pyw
37
openlp.pyw
@ -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
|
||||
|
@ -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
|
||||
|
@ -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:
|
||||
|
@ -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 '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>&File</source>
|
||||
<translation>&Lêer</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="316"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="314"/>
|
||||
<source>&Import</source>
|
||||
<translation>&Invoer</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="317"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="315"/>
|
||||
<source>&Export</source>
|
||||
<translation>Uitvo&er</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="318"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="316"/>
|
||||
<source>&View</source>
|
||||
<translation>&Bekyk</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="319"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="317"/>
|
||||
<source>M&ode</source>
|
||||
<translation>M&odus</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="320"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="318"/>
|
||||
<source>&Tools</source>
|
||||
<translation>&Gereedskap</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="321"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="319"/>
|
||||
<source>&Settings</source>
|
||||
<translation>Ver&stellings</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="370"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="368"/>
|
||||
<source>&Language</source>
|
||||
<translation>Taa&l</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="324"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="322"/>
|
||||
<source>&Help</source>
|
||||
<translation>&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>&New</source>
|
||||
<translation>&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>&Open</source>
|
||||
<translation>Maak &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 '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>&Save</source>
|
||||
<translation>&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 &As...</source>
|
||||
<translation>Stoor &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 '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&xit</source>
|
||||
<translation>&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>&Theme</source>
|
||||
<translation>&Tema</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="376"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="374"/>
|
||||
<source>&Configure OpenLP...</source>
|
||||
<translation>&Konfigureer OpenLP...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="378"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="376"/>
|
||||
<source>&Media Manager</source>
|
||||
<translation>&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>&Theme Manager</source>
|
||||
<translation>&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>&Service Manager</source>
|
||||
<translation>&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>&Preview Panel</source>
|
||||
<translation>Voorskou &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>&Live Panel</source>
|
||||
<translation>Regstreekse Panee&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>&Plugin List</source>
|
||||
<translation>Mini-&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>&User Guide</source>
|
||||
<translation>Gebr&uikers Gids</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="426"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="424"/>
|
||||
<source>&About</source>
|
||||
<translation>&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>&Online Help</source>
|
||||
<translation>&Aanlyn Hulp</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="433"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="434"/>
|
||||
<source>&Web Site</source>
|
||||
<translation>&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 &Tool...</source>
|
||||
<translation>Voeg Gereedskaps&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 '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>&Default</source>
|
||||
<translation>&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>&Setup</source>
|
||||
<translation>Op&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>&Live</source>
|
||||
<translation>&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 &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 &Data Folder...</source>
|
||||
<translation>Maak &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>&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>&Autodetect</source>
|
||||
<translation>Spoor outom&aties op</translation>
|
||||
</message>
|
||||
|
4993
resources/i18n/cs.ts
Normal file
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
@ -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>&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>&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>&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>&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&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>&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>&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>&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>&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>&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>&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>&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 &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&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>&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>&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>&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>&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>&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>&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>&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>&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>&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>&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>&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>&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 &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>&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>&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>&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 &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>&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 &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>&Autodetect</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -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>&File</source>
|
||||
<translation>&File</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="316"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="314"/>
|
||||
<source>&Import</source>
|
||||
<translation>&Import</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="317"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="315"/>
|
||||
<source>&Export</source>
|
||||
<translation>&Export</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="318"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="316"/>
|
||||
<source>&View</source>
|
||||
<translation>&View</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="319"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="317"/>
|
||||
<source>M&ode</source>
|
||||
<translation>M&ode</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="320"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="318"/>
|
||||
<source>&Tools</source>
|
||||
<translation>&Tools</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="321"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="319"/>
|
||||
<source>&Settings</source>
|
||||
<translation>&Settings</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="370"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="368"/>
|
||||
<source>&Language</source>
|
||||
<translation>&Language</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="324"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="322"/>
|
||||
<source>&Help</source>
|
||||
<translation>&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>&New</source>
|
||||
<translation>&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>&Open</source>
|
||||
<translation>&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>&Save</source>
|
||||
<translation>&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 &As...</source>
|
||||
<translation>Save &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&xit</source>
|
||||
<translation>E&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>&Theme</source>
|
||||
<translation>&Theme</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="376"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="374"/>
|
||||
<source>&Configure OpenLP...</source>
|
||||
<translation>&Configure OpenLP...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="378"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="376"/>
|
||||
<source>&Media Manager</source>
|
||||
<translation>&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>&Theme Manager</source>
|
||||
<translation>&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>&Service Manager</source>
|
||||
<translation>&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>&Preview Panel</source>
|
||||
<translation>&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>&Live Panel</source>
|
||||
<translation>&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>&Plugin List</source>
|
||||
<translation>&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>&User Guide</source>
|
||||
<translation>&User Guide</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="426"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="424"/>
|
||||
<source>&About</source>
|
||||
<translation>&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>&Online Help</source>
|
||||
<translation>&Online Help</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="433"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="434"/>
|
||||
<source>&Web Site</source>
|
||||
<translation>&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 &Tool...</source>
|
||||
<translation>Add &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>&Default</source>
|
||||
<translation>&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>&Setup</source>
|
||||
<translation>&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>&Live</source>
|
||||
<translation>&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 &Shortcuts...</source>
|
||||
<translation>Configure &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 &Data Folder...</source>
|
||||
<translation>Open &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>&Configure Display Tags</source>
|
||||
<translation>&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>&Autodetect</source>
|
||||
<translation>&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>
|
||||
|
@ -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å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 © 2004-2011 Raoul Snyman
|
||||
Portions copyright © 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>&File</source>
|
||||
<translation>&File</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="316"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="314"/>
|
||||
<source>&Import</source>
|
||||
<translation>&Import</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="317"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="315"/>
|
||||
<source>&Export</source>
|
||||
<translation>&Export</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="318"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="316"/>
|
||||
<source>&View</source>
|
||||
<translation>&View</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="319"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="317"/>
|
||||
<source>M&ode</source>
|
||||
<translation>M&ode</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="320"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="318"/>
|
||||
<source>&Tools</source>
|
||||
<translation>&Tools</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="321"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="319"/>
|
||||
<source>&Settings</source>
|
||||
<translation>&Settings</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="370"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="368"/>
|
||||
<source>&Language</source>
|
||||
<translation>&Language</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="324"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="322"/>
|
||||
<source>&Help</source>
|
||||
<translation>&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>&New</source>
|
||||
<translation>&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>&Open</source>
|
||||
<translation>&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>&Save</source>
|
||||
<translation>&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 &As...</source>
|
||||
<translation>Save &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&xit</source>
|
||||
<translation>E&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>&Theme</source>
|
||||
<translation>&Theme</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="376"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="374"/>
|
||||
<source>&Configure OpenLP...</source>
|
||||
<translation>&Configure OpenLP...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="378"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="376"/>
|
||||
<source>&Media Manager</source>
|
||||
<translation>&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>&Theme Manager</source>
|
||||
<translation>&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>&Service Manager</source>
|
||||
<translation>&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>&Preview Panel</source>
|
||||
<translation>&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>&Live Panel</source>
|
||||
<translation>&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>&Plugin List</source>
|
||||
<translation>&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>&User Guide</source>
|
||||
<translation>&User Guide</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="426"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="424"/>
|
||||
<source>&About</source>
|
||||
<translation>&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>&Online Help</source>
|
||||
<translation>&Online Help</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="433"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="434"/>
|
||||
<source>&Web Site</source>
|
||||
<translation>&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 &Tool...</source>
|
||||
<translation>Add &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>&Default</source>
|
||||
<translation>&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>&Setup</source>
|
||||
<translation>&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>&Live</source>
|
||||
<translation>&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 &Shortcuts...</source>
|
||||
<translation>Configure &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 &Data Folder...</source>
|
||||
<translation>Open &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>&Configure Display Tags</source>
|
||||
<translation>&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>&Autodetect</source>
|
||||
<translation>&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>©</source>
|
||||
<comment>Copyright symbol.</comment>
|
||||
<translation>©</translation>
|
||||
</message>
|
||||
|
@ -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>&File</source>
|
||||
<translation type="unfinished">&Archivo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="316"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="314"/>
|
||||
<source>&Import</source>
|
||||
<translation type="unfinished">&Importar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="317"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="315"/>
|
||||
<source>&Export</source>
|
||||
<translation type="unfinished">&Exportar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="318"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="316"/>
|
||||
<source>&View</source>
|
||||
<translation type="unfinished">&Ver</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="319"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="317"/>
|
||||
<source>M&ode</source>
|
||||
<translation type="unfinished">M&odo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="320"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="318"/>
|
||||
<source>&Tools</source>
|
||||
<translation type="unfinished">&Herramientas</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="321"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="319"/>
|
||||
<source>&Settings</source>
|
||||
<translation type="unfinished">&Preferencias</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="370"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="368"/>
|
||||
<source>&Language</source>
|
||||
<translation type="unfinished">&Idioma</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="324"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="322"/>
|
||||
<source>&Help</source>
|
||||
<translation type="unfinished">&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>&New</source>
|
||||
<translation type="unfinished">&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>&Open</source>
|
||||
<translation type="unfinished">&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>&Save</source>
|
||||
<translation type="unfinished">&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 &As...</source>
|
||||
<translation type="unfinished">Guardar &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&xit</source>
|
||||
<translation type="unfinished">&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>&Theme</source>
|
||||
<translation type="unfinished">&Tema</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="376"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="374"/>
|
||||
<source>&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>&Media Manager</source>
|
||||
<translation type="unfinished">Gestor de &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>&Theme Manager</source>
|
||||
<translation type="unfinished">Gestor 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 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>&Service Manager</source>
|
||||
<translation type="unfinished">Gestor de &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>&Preview Panel</source>
|
||||
<translation type="unfinished">&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>&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>&Plugin List</source>
|
||||
<translation type="unfinished">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 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>&User Guide</source>
|
||||
<translation type="unfinished">Guía de &Usuario</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="426"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="424"/>
|
||||
<source>&About</source>
|
||||
<translation type="unfinished">&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>&Online Help</source>
|
||||
<translation type="unfinished">&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>&Web Site</source>
|
||||
<translation type="unfinished">Sitio &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 &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>&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>&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>&Live</source>
|
||||
<translation type="unfinished">En &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 &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 &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>&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>&Autodetect</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -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>&File</source>
|
||||
<translation>&Fail</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="316"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="314"/>
|
||||
<source>&Import</source>
|
||||
<translation>&Impordi</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="317"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="315"/>
|
||||
<source>&Export</source>
|
||||
<translation>&Ekspordi</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="318"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="316"/>
|
||||
<source>&View</source>
|
||||
<translation>&Vaade</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="319"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="317"/>
|
||||
<source>M&ode</source>
|
||||
<translation>&Režiim</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="320"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="318"/>
|
||||
<source>&Tools</source>
|
||||
<translation>&Tööriistad</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="321"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="319"/>
|
||||
<source>&Settings</source>
|
||||
<translation>&Sätted</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="370"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="368"/>
|
||||
<source>&Language</source>
|
||||
<translation>&Keel</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="324"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="322"/>
|
||||
<source>&Help</source>
|
||||
<translation>A&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>&New</source>
|
||||
<translation>&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>&Open</source>
|
||||
<translation>&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>&Save</source>
|
||||
<translation>&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 &As...</source>
|
||||
<translation>Salvesta &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&xit</source>
|
||||
<translation>&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>&Theme</source>
|
||||
<translation>&Kujundus</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="376"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="374"/>
|
||||
<source>&Configure OpenLP...</source>
|
||||
<translation>&Seadista OpenLP...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="378"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="376"/>
|
||||
<source>&Media Manager</source>
|
||||
<translation>&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>&Theme Manager</source>
|
||||
<translation>&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>&Service Manager</source>
|
||||
<translation>&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>&Preview Panel</source>
|
||||
<translation>&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>&Live Panel</source>
|
||||
<translation>&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>&Plugin List</source>
|
||||
<translation>&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>&User Guide</source>
|
||||
<translation>&Kasutajajuhend</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="426"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="424"/>
|
||||
<source>&About</source>
|
||||
<translation>&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>&Online Help</source>
|
||||
<translation>&Abi veebis</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="433"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="434"/>
|
||||
<source>&Web Site</source>
|
||||
<translation>&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 &Tool...</source>
|
||||
<translation>Lisa &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>&Default</source>
|
||||
<translation>&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>&Setup</source>
|
||||
<translation>&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>&Live</source>
|
||||
<translation>&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 &Shortcuts...</source>
|
||||
<translation>&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>&Configure Display Tags</source>
|
||||
<translation>&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 &Data Folder...</source>
|
||||
<translation>Ava &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>&Autodetect</source>
|
||||
<translation>&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't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme.</source>
|
||||
<translation>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>
|
||||
|
@ -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>&File</source>
|
||||
<translation>&Fichier</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="316"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="314"/>
|
||||
<source>&Import</source>
|
||||
<translation>&Import</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="317"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="315"/>
|
||||
<source>&Export</source>
|
||||
<translation>&Export</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="318"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="316"/>
|
||||
<source>&View</source>
|
||||
<translation>&View</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="319"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="317"/>
|
||||
<source>M&ode</source>
|
||||
<translation>M&ode</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="320"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="318"/>
|
||||
<source>&Tools</source>
|
||||
<translation>&Outils</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="321"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="319"/>
|
||||
<source>&Settings</source>
|
||||
<translation>&Options</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="370"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="368"/>
|
||||
<source>&Language</source>
|
||||
<translation>&Langue</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="324"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="322"/>
|
||||
<source>&Help</source>
|
||||
<translation>&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>&New</source>
|
||||
<translation>&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>&Open</source>
|
||||
<translation>&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>&Save</source>
|
||||
<translation>&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 &As...</source>
|
||||
<translation>Enregistre &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&xit</source>
|
||||
<translation>&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>&Theme</source>
|
||||
<translation>&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 &Shortcuts...</source>
|
||||
<translation>Personnalise les &raccourcis...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="376"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="374"/>
|
||||
<source>&Configure OpenLP...</source>
|
||||
<translation>&Personnalise OpenLP...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="378"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="376"/>
|
||||
<source>&Media Manager</source>
|
||||
<translation>Gestionnaire de &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>&Theme Manager</source>
|
||||
<translation>Gestionnaire de &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>&Service Manager</source>
|
||||
<translation>Gestionnaire de &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>&Preview Panel</source>
|
||||
<translation>Panneau de &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>&Live Panel</source>
|
||||
<translation>Panneau du &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>&Plugin List</source>
|
||||
<translation>Liste des &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>&User Guide</source>
|
||||
<translation>&Guide utilisateur</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="426"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="424"/>
|
||||
<source>&About</source>
|
||||
<translation>&Á 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'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>&Online Help</source>
|
||||
<translation>&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>&Web Site</source>
|
||||
<translation>Site &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'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 &Tool...</source>
|
||||
<translation>Ajoute un &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>&Default</source>
|
||||
<translation>&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>&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>&Live</source>
|
||||
<translation>&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'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'affichage principale a été 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 &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>&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>&Autodetect</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
1826
resources/i18n/hu.ts
1826
resources/i18n/hu.ts
File diff suppressed because it is too large
Load Diff
@ -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>&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>&Import</source>
|
||||
<translation type="unfinished">&Impor</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="317"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="315"/>
|
||||
<source>&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>&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&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>&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>&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>&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>&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>&New</source>
|
||||
<translation type="unfinished">&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>&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>&Save</source>
|
||||
<translation type="unfinished">&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 &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&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>&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>&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>&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>&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>&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>&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>&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>&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>&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>&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>&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>&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 &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>&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>&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>&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 &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 &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>&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>&Autodetect</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -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>&File</source>
|
||||
<translation>ファイル(&F)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="316"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="314"/>
|
||||
<source>&Import</source>
|
||||
<translation>インポート(&I)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="317"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="315"/>
|
||||
<source>&Export</source>
|
||||
<translation>エクスポート(&E)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="318"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="316"/>
|
||||
<source>&View</source>
|
||||
<translation>表示(&V)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="319"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="317"/>
|
||||
<source>M&ode</source>
|
||||
<translation>モード(&O)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="320"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="318"/>
|
||||
<source>&Tools</source>
|
||||
<translation>ツール(&T)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="321"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="319"/>
|
||||
<source>&Settings</source>
|
||||
<translation>設定(&S)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="370"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="368"/>
|
||||
<source>&Language</source>
|
||||
<translation>言語(&L)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="324"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="322"/>
|
||||
<source>&Help</source>
|
||||
<translation>ヘルプ(&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>&New</source>
|
||||
<translation>新規作成(&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>&Open</source>
|
||||
<translation>開く(&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>&Save</source>
|
||||
<translation>保存(&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 &As...</source>
|
||||
<translation>名前を付けて保存(&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&xit</source>
|
||||
<translation>終了(&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>&Theme</source>
|
||||
<translation>外観テーマ(&T)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="376"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="374"/>
|
||||
<source>&Configure OpenLP...</source>
|
||||
<translation>OpenLPの設定(&C)...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="378"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="376"/>
|
||||
<source>&Media Manager</source>
|
||||
<translation>メディアマネジャー(&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>&Theme Manager</source>
|
||||
<translation>外観テーママネジャー(&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>&Service Manager</source>
|
||||
<translation>礼拝プログラム(&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>&Preview Panel</source>
|
||||
<translation>プレビューパネル(&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>&Live Panel</source>
|
||||
<translation>ライブパネル(&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>&Plugin List</source>
|
||||
<translation>プラグイン一覧(&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>&User Guide</source>
|
||||
<translation>ユーザガイド(&U)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="426"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="424"/>
|
||||
<source>&About</source>
|
||||
<translation>バージョン情報(&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>&Online Help</source>
|
||||
<translation>オンラインヘルプ(&O)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="433"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="434"/>
|
||||
<source>&Web Site</source>
|
||||
<translation>ウェブサイト(&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 &Tool...</source>
|
||||
<translation>ツールの追加(&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>&Default</source>
|
||||
<translation>デフォルト(&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>&Setup</source>
|
||||
<translation>設定(&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>&Live</source>
|
||||
<translation>ライブ(&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 &Shortcuts...</source>
|
||||
<translation>ショートカットの設定(&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>&Configure Display Tags</source>
|
||||
<translation>表示タグを設定(&C)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="447"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="448"/>
|
||||
<source>Open &Data Folder...</source>
|
||||
<translation>データフォルダを開く(&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>&Autodetect</source>
|
||||
<translation>自動検出(&A)</translation>
|
||||
</message>
|
||||
|
@ -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>&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>&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>&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>&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&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>&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>&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>&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>&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>&New</source>
|
||||
<translation type="unfinished">새로 만들기(&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>&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>&Save</source>
|
||||
<translation type="unfinished">저장(&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 &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&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>&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>&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>&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>&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>&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>&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>&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>&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>&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>&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>&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>&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 &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>&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>&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>&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 &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 &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>&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>&Autodetect</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -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>&File</source>
|
||||
<translation type="unfinished">&Fil </translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="316"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="314"/>
|
||||
<source>&Import</source>
|
||||
<translation type="unfinished">&Import</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="317"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="315"/>
|
||||
<source>&Export</source>
|
||||
<translation type="unfinished">&Eksporter </translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="318"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="316"/>
|
||||
<source>&View</source>
|
||||
<translation type="unfinished">&Vis</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="319"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="317"/>
|
||||
<source>M&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>&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>&Settings</source>
|
||||
<translation type="unfinished">&Innstillinger </translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="370"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="368"/>
|
||||
<source>&Language</source>
|
||||
<translation type="unfinished">&Språk</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="324"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="322"/>
|
||||
<source>&Help</source>
|
||||
<translation type="unfinished">&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>&New</source>
|
||||
<translation type="unfinished">&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>&Open</source>
|
||||
<translation type="unfinished">&Å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>&Save</source>
|
||||
<translation type="unfinished">&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 &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&xit</source>
|
||||
<translation type="unfinished">&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>&Theme</source>
|
||||
<translation type="unfinished">&Tema</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="376"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="374"/>
|
||||
<source>&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>&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>&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>&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>&Preview Panel</source>
|
||||
<translation type="unfinished">&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>&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>&Plugin List</source>
|
||||
<translation type="unfinished">&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>&User Guide</source>
|
||||
<translation type="unfinished">&Brukerveiledning </translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="426"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="424"/>
|
||||
<source>&About</source>
|
||||
<translation type="unfinished">&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>&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>&Web Site</source>
|
||||
<translation type="unfinished">&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 &Tool...</source>
|
||||
<translation type="unfinished">Legg til & 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>&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>&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>&Live</source>
|
||||
<translation type="unfinished">&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 &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 &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>&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>&Autodetect</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -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'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'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'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>&File</source>
|
||||
<translation>&Bestand</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="316"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="314"/>
|
||||
<source>&Import</source>
|
||||
<translation>&Importeren</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="317"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="315"/>
|
||||
<source>&Export</source>
|
||||
<translation>&Exporteren</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="318"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="316"/>
|
||||
<source>&View</source>
|
||||
<translation>&Weergave</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="319"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="317"/>
|
||||
<source>M&ode</source>
|
||||
<translation>M&odus</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="320"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="318"/>
|
||||
<source>&Tools</source>
|
||||
<translation>&Hulpmiddelen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="321"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="319"/>
|
||||
<source>&Settings</source>
|
||||
<translation>&Instellingen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="370"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="368"/>
|
||||
<source>&Language</source>
|
||||
<translation>Taa&l</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="324"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="322"/>
|
||||
<source>&Help</source>
|
||||
<translation>&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>&New</source>
|
||||
<translation>&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>&Open</source>
|
||||
<translation>&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>&Save</source>
|
||||
<translation>Op&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 &As...</source>
|
||||
<translation>Opslaan &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&xit</source>
|
||||
<translation>&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>&Theme</source>
|
||||
<translation>&Thema</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="376"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="374"/>
|
||||
<source>&Configure OpenLP...</source>
|
||||
<translation>&Instellingen...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="378"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="376"/>
|
||||
<source>&Media Manager</source>
|
||||
<translation>&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>&Theme Manager</source>
|
||||
<translation>&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>&Service Manager</source>
|
||||
<translation>&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>&Preview Panel</source>
|
||||
<translation>&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>&Live Panel</source>
|
||||
<translation>&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>&Plugin List</source>
|
||||
<translation>&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>&User Guide</source>
|
||||
<translation>Gebr&uikshandleiding</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="426"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="424"/>
|
||||
<source>&About</source>
|
||||
<translation>&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>&Online Help</source>
|
||||
<translation>&Online help</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="433"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="434"/>
|
||||
<source>&Web Site</source>
|
||||
<translation>&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 &Tool...</source>
|
||||
<translation>Hulpprogramma &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>&Default</source>
|
||||
<translation>&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>&Setup</source>
|
||||
<translation>&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>&Live</source>
|
||||
<translation>&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 &Shortcuts...</source>
|
||||
<translation>&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 &Data Folder...</source>
|
||||
<translation>Open &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>&Configure Display Tags</source>
|
||||
<translation>&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>&Autodetect</source>
|
||||
<translation>&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>&Add</source>
|
||||
<translation type="unfinished">&Toevoegen</translation>
|
||||
<translation>&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 "%s"...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Exporteren "%s"...</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>
|
||||
|
@ -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 "Próximo" 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>&File</source>
|
||||
<translation>&Arquivo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="316"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="314"/>
|
||||
<source>&Import</source>
|
||||
<translation>&Importar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="317"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="315"/>
|
||||
<source>&Export</source>
|
||||
<translation>&Exportar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="318"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="316"/>
|
||||
<source>&View</source>
|
||||
<translation>&Visualizar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="319"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="317"/>
|
||||
<source>M&ode</source>
|
||||
<translation>M&odo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="320"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="318"/>
|
||||
<source>&Tools</source>
|
||||
<translation>&Ferramentas</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="321"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="319"/>
|
||||
<source>&Settings</source>
|
||||
<translation>&Configurações</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="370"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="368"/>
|
||||
<source>&Language</source>
|
||||
<translation>&Idioma</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="324"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="322"/>
|
||||
<source>&Help</source>
|
||||
<translation>&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>&New</source>
|
||||
<translation>&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>&Open</source>
|
||||
<translation>&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>&Save</source>
|
||||
<translation>&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 &As...</source>
|
||||
<translation>Salvar &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&xit</source>
|
||||
<translation>S&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>&Theme</source>
|
||||
<translation>&Tema</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="376"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="374"/>
|
||||
<source>&Configure OpenLP...</source>
|
||||
<translation>&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>&Media Manager</source>
|
||||
<translation>&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>&Theme Manager</source>
|
||||
<translation>&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>&Service Manager</source>
|
||||
<translation>&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>&Preview Panel</source>
|
||||
<translation>&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>&Live Panel</source>
|
||||
<translation>&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>&Plugin List</source>
|
||||
<translation>&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>&User Guide</source>
|
||||
<translation>&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>&About</source>
|
||||
<translation>&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>&Online Help</source>
|
||||
<translation>&Ajuda Online</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="433"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="434"/>
|
||||
<source>&Web Site</source>
|
||||
<translation>&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 &Tool...</source>
|
||||
<translation>Adicionar &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>&Default</source>
|
||||
<translation>&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>&Setup</source>
|
||||
<translation>&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>&Live</source>
|
||||
<translation>&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 &Shortcuts...</source>
|
||||
<translation>Configurar &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>&Configure Display Tags</source>
|
||||
<translation>&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 &Data Folder...</source>
|
||||
<translation>Abrir Pasta de &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>&Autodetect</source>
|
||||
<translation>&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>
|
||||
|
@ -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>&File</source>
|
||||
<translation>&Файл</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="316"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="314"/>
|
||||
<source>&Import</source>
|
||||
<translation>&Импорт</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="317"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="315"/>
|
||||
<source>&Export</source>
|
||||
<translation>&Экспорт</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="318"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="316"/>
|
||||
<source>&View</source>
|
||||
<translation>&Вид</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="319"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="317"/>
|
||||
<source>M&ode</source>
|
||||
<translation>Р&ежим</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="320"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="318"/>
|
||||
<source>&Tools</source>
|
||||
<translation>&Инструменты</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="321"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="319"/>
|
||||
<source>&Settings</source>
|
||||
<translation>&Настройки</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="370"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="368"/>
|
||||
<source>&Language</source>
|
||||
<translation>&Язык</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="324"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="322"/>
|
||||
<source>&Help</source>
|
||||
<translation>&Помощь</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>&New</source>
|
||||
<translation>&Новая</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>&Open</source>
|
||||
<translation>&Открыть</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>&Save</source>
|
||||
<translation>&Сохранить</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 &As...</source>
|
||||
<translation>Сохранить к&ак...</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&xit</source>
|
||||
<translation>Вы&ход</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>&Theme</source>
|
||||
<translation>Т&ема</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="372"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="370"/>
|
||||
<source>Configure &Shortcuts...</source>
|
||||
<translation>Настройки и б&ыстрые клавиши...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="376"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="374"/>
|
||||
<source>&Configure OpenLP...</source>
|
||||
<translation>&Настроить OpenLP...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="378"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="376"/>
|
||||
<source>&Media Manager</source>
|
||||
<translation>Управление &Материалами</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>&Theme Manager</source>
|
||||
<translation>Управление &темами</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>&Service Manager</source>
|
||||
<translation>Управление &Служением</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>&Preview Panel</source>
|
||||
<translation>Пан&ель предпросмотра</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>&Live Panel</source>
|
||||
<translation>&Панель проектора</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>&Plugin List</source>
|
||||
<translation>&Список плагинов</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>&User Guide</source>
|
||||
<translation>&Руководство пользователя</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="426"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="424"/>
|
||||
<source>&About</source>
|
||||
<translation>&О программе</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>&Online Help</source>
|
||||
<translation>&Помощь онлайн</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="433"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="434"/>
|
||||
<source>&Web Site</source>
|
||||
<translation>&Веб-сайт</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 &Tool...</source>
|
||||
<translation>Добавить &Инструмент...</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>&Default</source>
|
||||
<translation>&По умолчанию</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>&Setup</source>
|
||||
<translation>&Настройка</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>&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>&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 &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>&Autodetect</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -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>&File</source>
|
||||
<translation type="unfinished">&Fil</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="316"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="314"/>
|
||||
<source>&Import</source>
|
||||
<translation type="unfinished">&Importera</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="317"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="315"/>
|
||||
<source>&Export</source>
|
||||
<translation type="unfinished">&Exportera</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="318"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="316"/>
|
||||
<source>&View</source>
|
||||
<translation type="unfinished">&Visa</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="319"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="317"/>
|
||||
<source>M&ode</source>
|
||||
<translation type="unfinished">&Läge</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="320"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="318"/>
|
||||
<source>&Tools</source>
|
||||
<translation type="unfinished">&Verktyg</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="321"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="319"/>
|
||||
<source>&Settings</source>
|
||||
<translation type="unfinished">&Inställningar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="370"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="368"/>
|
||||
<source>&Language</source>
|
||||
<translation type="unfinished">&Språk</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="324"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="322"/>
|
||||
<source>&Help</source>
|
||||
<translation type="unfinished">&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>&New</source>
|
||||
<translation type="unfinished">&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>&Open</source>
|
||||
<translation type="unfinished">&Ö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>&Save</source>
|
||||
<translation type="unfinished">&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 &As...</source>
|
||||
<translation type="unfinished">S&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&xit</source>
|
||||
<translation type="unfinished">&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>&Theme</source>
|
||||
<translation type="unfinished">&Tema</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="376"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="374"/>
|
||||
<source>&Configure OpenLP...</source>
|
||||
<translation>&Konfigurera OpenLP...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="378"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="376"/>
|
||||
<source>&Media Manager</source>
|
||||
<translation type="unfinished">&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>&Theme Manager</source>
|
||||
<translation type="unfinished">&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>&Service Manager</source>
|
||||
<translation>&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>&Preview Panel</source>
|
||||
<translation>&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>&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>&Plugin List</source>
|
||||
<translation type="unfinished">&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>&User Guide</source>
|
||||
<translation type="unfinished">&Användarguide</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="426"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="424"/>
|
||||
<source>&About</source>
|
||||
<translation type="unfinished">&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>&Online Help</source>
|
||||
<translation>&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>&Web Site</source>
|
||||
<translation type="unfinished">&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 &Tool...</source>
|
||||
<translation>Lägg till &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>&Default</source>
|
||||
<translation>&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>&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>&Live</source>
|
||||
<translation type="unfinished">&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 &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 &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>&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>&Autodetect</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -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>&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>&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>&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>&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&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>&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>&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>&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>&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>&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>&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>&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 &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&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>&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>&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>&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>&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>&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>&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>&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>&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>&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>&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>&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>&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 &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>&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>&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>&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 &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>&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 &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>&Autodetect</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
Loading…
Reference in New Issue
Block a user