forked from openlp/openlp
HEAD r1386
This commit is contained in:
commit
251c70fa47
@ -4,13 +4,10 @@ recursive-include openlp *.csv
|
||||
recursive-include openlp *.html
|
||||
recursive-include openlp *.js
|
||||
recursive-include openlp *.css
|
||||
recursive-include openlp *.qm
|
||||
recursive-include documentation *
|
||||
recursive-include resources/forms *
|
||||
recursive-include resources/i18n *
|
||||
recursive-include resources/images *
|
||||
recursive-include scripts *.py
|
||||
include resources/*.desktop
|
||||
recursive-include resources *
|
||||
recursive-include scripts *
|
||||
include copyright.txt
|
||||
include LICENSE
|
||||
include README.txt
|
||||
include openlp/.version
|
||||
|
@ -184,9 +184,8 @@ class OpenLP(QtGui.QApplication):
|
||||
# make sure Qt really display the splash screen
|
||||
self.processEvents()
|
||||
# start the main app window
|
||||
self.appClipboard = self.clipboard()
|
||||
self.mainWindow = MainWindow(screens, app_version, self.appClipboard,
|
||||
has_run_wizard)
|
||||
self.mainWindow = MainWindow(screens, app_version, self.clipboard(),
|
||||
not has_run_wizard)
|
||||
self.mainWindow.show()
|
||||
if show_splash:
|
||||
# now kill the splashscreen
|
||||
|
@ -49,16 +49,13 @@ class PluginManager(object):
|
||||
``plugin_dir``
|
||||
The directory to search for plugins.
|
||||
"""
|
||||
log.info(u'Plugin manager initing')
|
||||
log.info(u'Plugin manager Initialising')
|
||||
if not plugin_dir in sys.path:
|
||||
log.debug(u'Inserting %s into sys.path', plugin_dir)
|
||||
sys.path.insert(0, plugin_dir)
|
||||
self.basepath = os.path.abspath(plugin_dir)
|
||||
log.debug(u'Base path %s ', self.basepath)
|
||||
self.plugin_helpers = []
|
||||
self.plugins = []
|
||||
# this has to happen after the UI is sorted
|
||||
# self.find_plugins(plugin_dir)
|
||||
log.info(u'Plugin manager Initialised')
|
||||
|
||||
def find_plugins(self, plugin_dir, plugin_helpers):
|
||||
@ -73,7 +70,7 @@ class PluginManager(object):
|
||||
A list of helper objects to pass to the plugins.
|
||||
|
||||
"""
|
||||
self.plugin_helpers = plugin_helpers
|
||||
log.info(u'Finding plugins')
|
||||
startdepth = len(os.path.abspath(plugin_dir).split(os.sep))
|
||||
log.debug(u'finding plugins in %s at depth %d',
|
||||
unicode(plugin_dir), startdepth)
|
||||
@ -102,11 +99,11 @@ class PluginManager(object):
|
||||
plugin_objects = []
|
||||
for p in plugin_classes:
|
||||
try:
|
||||
plugin = p(self.plugin_helpers)
|
||||
log.debug(u'Loaded plugin %s with helpers', unicode(p))
|
||||
plugin = p(plugin_helpers)
|
||||
log.debug(u'Loaded plugin %s', unicode(p))
|
||||
plugin_objects.append(plugin)
|
||||
except TypeError:
|
||||
log.exception(u'loaded plugin %s has no helpers', unicode(p))
|
||||
log.exception(u'Failed to load plugin %s', unicode(p))
|
||||
plugins_list = sorted(plugin_objects, self.order_by_weight)
|
||||
for plugin in plugins_list:
|
||||
if plugin.checkPreConditions():
|
||||
@ -203,6 +200,7 @@ class PluginManager(object):
|
||||
Loop through all the plugins and give them an opportunity to
|
||||
initialise themselves.
|
||||
"""
|
||||
log.info(u'Initialise Plugins - Started')
|
||||
for plugin in self.plugins:
|
||||
log.info(u'initialising plugins %s in a %s state'
|
||||
% (plugin.name, plugin.isActive()))
|
||||
@ -211,6 +209,7 @@ class PluginManager(object):
|
||||
log.info(u'Initialisation Complete for %s ' % plugin.name)
|
||||
if not plugin.isActive():
|
||||
plugin.removeToolboxItem()
|
||||
log.info(u'Initialise Plugins - Finished')
|
||||
|
||||
def finalise_plugins(self):
|
||||
"""
|
||||
|
@ -183,6 +183,10 @@ class ServiceItem(object):
|
||||
else:
|
||||
log.error(u'Invalid value renderer :%s' % self.service_item_type)
|
||||
self.title = clean_tags(self.title)
|
||||
# The footer should never be None, but to be compatible with older
|
||||
# release of OpenLP, we have to correct this to avoid tracebacks.
|
||||
if self.raw_footer is None:
|
||||
self.raw_footer = []
|
||||
self.foot_text = \
|
||||
u'<br>'.join([footer for footer in self.raw_footer if footer])
|
||||
|
||||
|
@ -48,7 +48,7 @@ class OpenLPToolbar(QtGui.QToolBar):
|
||||
self.icons = {}
|
||||
self.setIconSize(QtCore.QSize(20, 20))
|
||||
self.actions = {}
|
||||
log.debug(u'Init done')
|
||||
log.debug(u'Init done for %s' % parent.__class__.__name__)
|
||||
|
||||
def addToolbarButton(self, title, icon, tooltip=None, slot=None,
|
||||
checkable=False, shortcut=0, alternate=0,
|
||||
|
@ -143,11 +143,11 @@ class Ui_DisplayTagDialog(object):
|
||||
self.tagTableWidget.horizontalHeaderItem(0).setText(
|
||||
translate('OpenLP.DisplayTagDialog', 'Description'))
|
||||
self.tagTableWidget.horizontalHeaderItem(1).setText(
|
||||
translate('OpenLP.DisplayTagDialog', 'Tag id'))
|
||||
translate('OpenLP.DisplayTagDialog', 'Tag Id'))
|
||||
self.tagTableWidget.horizontalHeaderItem(2).setText(
|
||||
translate('OpenLP.DisplayTagDialog', 'Start Html'))
|
||||
translate('OpenLP.DisplayTagDialog', 'Start HTML'))
|
||||
self.tagTableWidget.horizontalHeaderItem(3).setText(
|
||||
translate('OpenLP.DisplayTagDialog', 'End Html'))
|
||||
translate('OpenLP.DisplayTagDialog', 'End HTML'))
|
||||
self.tagTableWidget.setColumnWidth(0, 120)
|
||||
self.tagTableWidget.setColumnWidth(1, 40)
|
||||
self.tagTableWidget.setColumnWidth(2, 240)
|
||||
|
@ -178,8 +178,8 @@ class FirstTimeForm(QtGui.QWizard, Ui_FirstTimeWizard):
|
||||
"""
|
||||
Prepare the UI for the process.
|
||||
"""
|
||||
# We start on 9 for the 9 plugins
|
||||
max_progress = 9
|
||||
# We start on 2 for plugins status setting plus a "finished" point.
|
||||
max_progress = 2
|
||||
# Loop through the songs list and increase for each selected item
|
||||
for i in xrange(self.songsListWidget.count()):
|
||||
if self.songsListWidget.item(i).checkState() == QtCore.Qt.Checked:
|
||||
@ -209,6 +209,8 @@ class FirstTimeForm(QtGui.QWizard, Ui_FirstTimeWizard):
|
||||
self.finishButton.setEnabled(True)
|
||||
self.cancelButton.setVisible(False)
|
||||
self.nextButton.setVisible(False)
|
||||
self.progressLabel.setText(translate('OpenLP.FirstTimeWizard',
|
||||
'Download complete. Click the finish button to start OpenLP.'))
|
||||
Receiver.send_message(u'openlp_process_events')
|
||||
|
||||
def _performWizard(self):
|
||||
@ -219,21 +221,13 @@ class FirstTimeForm(QtGui.QWizard, Ui_FirstTimeWizard):
|
||||
self._incrementProgressBar(translate('OpenLP.FirstTimeWizard',
|
||||
'Enabling selected plugins...'))
|
||||
self._setPluginStatus(self.songsCheckBox, u'songs/status')
|
||||
self._incrementProgressBar(None)
|
||||
self._setPluginStatus(self.bibleCheckBox, u'bibles/status')
|
||||
self._incrementProgressBar(None)
|
||||
self._setPluginStatus(self.presentationCheckBox, u'presentations/status')
|
||||
self._incrementProgressBar(None)
|
||||
self._setPluginStatus(self.imageCheckBox, u'images/status')
|
||||
self._incrementProgressBar(None)
|
||||
self._setPluginStatus(self.mediaCheckBox, u'media/status')
|
||||
self._incrementProgressBar(None)
|
||||
self._setPluginStatus(self.remoteCheckBox, u'remotes/status')
|
||||
self._incrementProgressBar(None)
|
||||
self._setPluginStatus(self.customCheckBox, u'custom/status')
|
||||
self._incrementProgressBar(None)
|
||||
self._setPluginStatus(self.songUsageCheckBox, u'songusage/status')
|
||||
self._incrementProgressBar(None)
|
||||
self._setPluginStatus(self.alertCheckBox, u'alerts/status')
|
||||
# Build directories for downloads
|
||||
songs_destination = AppLocation.get_section_data_path(u'songs')
|
||||
|
@ -35,6 +35,7 @@ import urllib2
|
||||
from datetime import datetime
|
||||
|
||||
from PyQt4 import QtGui, QtCore
|
||||
|
||||
if sys.platform != u'win32' and sys.platform != u'darwin':
|
||||
try:
|
||||
from xdg import BaseDirectory
|
||||
@ -134,7 +135,7 @@ class AppLocation(object):
|
||||
elif dir_type == AppLocation.LanguageDir:
|
||||
app_path = _get_frozen_path(
|
||||
os.path.abspath(os.path.split(sys.argv[0])[0]),
|
||||
os.path.split(openlp.__file__)[0])
|
||||
_get_os_dir_path(dir_type))
|
||||
return os.path.join(app_path, u'i18n')
|
||||
else:
|
||||
return _get_os_dir_path(dir_type)
|
||||
@ -169,15 +170,21 @@ def _get_os_dir_path(dir_type):
|
||||
if dir_type == AppLocation.DataDir:
|
||||
return os.path.join(unicode(os.getenv(u'APPDATA'), encoding),
|
||||
u'openlp', u'data')
|
||||
elif dir_type == AppLocation.LanguageDir:
|
||||
return os.path.split(openlp.__file__)[0]
|
||||
return os.path.join(unicode(os.getenv(u'APPDATA'), encoding),
|
||||
u'openlp')
|
||||
elif sys.platform == u'darwin':
|
||||
if dir_type == AppLocation.DataDir:
|
||||
return os.path.join(unicode(os.getenv(u'HOME'), encoding),
|
||||
u'Library', u'Application Support', u'openlp', u'Data')
|
||||
elif dir_type == AppLocation.LanguageDir:
|
||||
return os.path.split(openlp.__file__)[0]
|
||||
return os.path.join(unicode(os.getenv(u'HOME'), encoding),
|
||||
u'Library', u'Application Support', u'openlp')
|
||||
else:
|
||||
if dir_type == AppLocation.LanguageDir:
|
||||
return os.path.join(u'/usr', u'share', u'openlp')
|
||||
if XDG_BASE_AVAILABLE:
|
||||
if dir_type == AppLocation.ConfigDir:
|
||||
return os.path.join(unicode(BaseDirectory.xdg_config_home,
|
||||
|
@ -63,6 +63,8 @@ class LanguageManager(object):
|
||||
"""
|
||||
Find all available language files in this OpenLP install
|
||||
"""
|
||||
log.debug(u'Translation files: %s', AppLocation.get_directory(
|
||||
AppLocation.LanguageDir))
|
||||
trans_dir = QtCore.QDir(AppLocation.get_directory(
|
||||
AppLocation.LanguageDir))
|
||||
file_names = trans_dir.entryList(QtCore.QStringList(u'*.qm'),
|
||||
|
@ -25,15 +25,15 @@
|
||||
###############################################################################
|
||||
|
||||
import logging
|
||||
import os
|
||||
|
||||
from PyQt4 import QtCore
|
||||
|
||||
from openlp.core.lib import Receiver, SettingsManager, translate
|
||||
from openlp.core.utils import AppLocation
|
||||
from openlp.core.utils import AppLocation, delete_file
|
||||
from openlp.plugins.bibles.lib import parse_reference
|
||||
from openlp.plugins.bibles.lib.db import BibleDB, BibleMeta, SpellingDB, \
|
||||
Spelling, BiblesResourcesDB
|
||||
|
||||
Spelling, BiblesResourcesDB
|
||||
from csvbible import CSVBible
|
||||
from http import HTTPBible
|
||||
from opensong import OpenSongBible
|
||||
@ -146,6 +146,10 @@ class BibleManager(object):
|
||||
for filename in files:
|
||||
bible = BibleDB(self.parent, path=self.path, file=filename)
|
||||
name = bible.get_name()
|
||||
# Remove corrupted files.
|
||||
if name is None:
|
||||
delete_file(os.path.join(self.path, filename))
|
||||
continue
|
||||
log.debug(u'Bible Name: "%s"', name)
|
||||
self.db_cache[name] = bible
|
||||
# Look to see if lazy load bible exists and get create getter.
|
||||
@ -173,13 +177,6 @@ class BibleManager(object):
|
||||
self.spelling_cache = {}
|
||||
self.spelling_cache[u'spelling'] = SpellingDB(self.parent,
|
||||
path=self.path)
|
||||
#db_spelling = self.spelling_cache[u'spelling'].get_book_reference_id(u'Markus', 40)
|
||||
#db_spelling = BiblesResourcesDB.get_spelling(u'1.Mose', 30)
|
||||
#db_spelling = BiblesResourcesDB.get_language(u'de')
|
||||
#db_spelling = BiblesResourcesDB.get_books()
|
||||
#db_spelling = BiblesResourcesDB.get_testament_reference()
|
||||
#db_spelling = self.spelling_cache[u'spelling'] .create_spelling(u'Johannes', 43, 40)
|
||||
#log.debug(u'Spellings: %s' % db_spelling)
|
||||
log.debug(u'Spelling reloaded')
|
||||
|
||||
def set_process_dialog(self, wizard):
|
||||
|
@ -45,6 +45,18 @@ class MediaPlugin(Plugin):
|
||||
self.icon = build_icon(self.icon_path)
|
||||
# passed with drag and drop messages
|
||||
self.dnd_id = u'Media'
|
||||
self.additional_extensions = {
|
||||
u'audio/ac3': [u'.ac3'],
|
||||
u'audio/flac': [u'.flac'],
|
||||
u'audio/x-m4a': [u'.m4a'],
|
||||
u'audio/x-mp3': [u'.mp3'],
|
||||
u'audio/mpeg': [u'.mp3', u'.mp2', u'.mpga', u'.mpega', u'.m4a'],
|
||||
u'audio/qcelp': [u'.qcp'],
|
||||
u'audio/x-wma': [u'.wma'],
|
||||
u'audio/x-ms-wma': [u'.wma'],
|
||||
u'video/x-matroska': [u'.mpv', u'.mkv'],
|
||||
u'video/x-wmv': [u'.wmv'],
|
||||
u'video/x-ms-wmv': [u'.wmv']}
|
||||
self.audio_extensions_list = []
|
||||
self.video_extensions_list = []
|
||||
mimetypes.init()
|
||||
@ -65,6 +77,17 @@ class MediaPlugin(Plugin):
|
||||
self.serviceManager.supportedSuffixes(extension[1:])
|
||||
log.info(u'MediaPlugin: %s extensions: %s' % (mimetype,
|
||||
u' '.join(extensions)))
|
||||
# Add extensions for this mimetype from self.additional_extensions.
|
||||
# This hack clears mimetypes' and operating system's shortcomings
|
||||
# by providing possibly missing extensions.
|
||||
if mimetype in self.additional_extensions.keys():
|
||||
for extension in self.additional_extensions[mimetype]:
|
||||
ext = u'*%s' % extension
|
||||
if ext not in list:
|
||||
list.append(ext)
|
||||
self.serviceManager.supportedSuffixes(extension[1:])
|
||||
log.info(u'MediaPlugin: %s additional extensions: %s' % (mimetype,
|
||||
u' '.join(self.additional_extensions[mimetype])))
|
||||
|
||||
def about(self):
|
||||
about_text = translate('MediaPlugin', '<strong>Media Plugin</strong>'
|
||||
|
@ -256,7 +256,7 @@ def init_schema(url):
|
||||
mapper(Song, songs_table,
|
||||
properties={
|
||||
'authors': relation(Author, backref='songs',
|
||||
secondary=authors_songs_table),
|
||||
secondary=authors_songs_table, lazy=False),
|
||||
'book': relation(Book, backref='songs'),
|
||||
'media_files': relation(MediaFile, backref='songs',
|
||||
secondary=media_files_songs_table),
|
||||
|
@ -253,9 +253,9 @@ class SongMediaItem(MediaManagerItem):
|
||||
if self.searchAsYouType:
|
||||
search_length = 1
|
||||
if self.searchTextEdit.currentSearchType() == SongSearch.Entire:
|
||||
search_length = 7
|
||||
search_length = 4
|
||||
elif self.searchTextEdit.currentSearchType() == SongSearch.Lyrics:
|
||||
search_length = 6
|
||||
search_length = 3
|
||||
if len(text) > search_length:
|
||||
self.onSearchTextButtonClick()
|
||||
elif len(text) == 0:
|
||||
@ -310,6 +310,7 @@ class SongMediaItem(MediaManagerItem):
|
||||
item_id = (self.editItem.data(QtCore.Qt.UserRole)).toInt()[0]
|
||||
self.edit_song_form.loadSong(item_id, False)
|
||||
self.edit_song_form.exec_()
|
||||
self.editItem = None
|
||||
|
||||
def onDeleteClick(self):
|
||||
"""
|
||||
|
@ -444,7 +444,6 @@ class OpenLyrics(object):
|
||||
"""
|
||||
sxml = SongXML()
|
||||
search_text = u''
|
||||
temp_verse_order = []
|
||||
for verse in lyrics.verse:
|
||||
text = u''
|
||||
for lines in verse.lines:
|
||||
@ -455,11 +454,10 @@ class OpenLyrics(object):
|
||||
verse_type_index = VerseType.from_tag(verse_name[0])
|
||||
verse_type = VerseType.Names[verse_type_index]
|
||||
verse_number = re.compile(u'[a-zA-Z]*').sub(u'', verse_name)
|
||||
verse_part = re.compile(u'[0-9]*').sub(u'', verse_name[1:])
|
||||
# OpenLyrics allows e. g. "c", but we need "c1".
|
||||
# OpenLyrics allows e. g. "c", but we need "c1". However, this does
|
||||
# not correct the verse order.
|
||||
if not verse_number:
|
||||
verse_number = u'1'
|
||||
temp_verse_order.append((verse_type, verse_number, verse_part))
|
||||
lang = None
|
||||
if self._get(verse, u'lang'):
|
||||
lang = self._get(verse, u'lang')
|
||||
@ -470,24 +468,6 @@ class OpenLyrics(object):
|
||||
# Process verse order
|
||||
if hasattr(properties, u'verseOrder'):
|
||||
song.verse_order = self._text(properties.verseOrder)
|
||||
else:
|
||||
# We have to process the temp_verse_order, as the verseOrder
|
||||
# property is not present.
|
||||
previous_type = u''
|
||||
previous_number = u''
|
||||
previous_part = u''
|
||||
verse_order = []
|
||||
# Currently we do not support different "parts"!
|
||||
for name in temp_verse_order:
|
||||
if name[0] == previous_type:
|
||||
if name[1] != previous_number:
|
||||
verse_order.append(u''.join((name[0][0], name[1])))
|
||||
else:
|
||||
verse_order.append(u''.join((name[0][0], name[1])))
|
||||
previous_type = name[0]
|
||||
previous_number = name[1]
|
||||
previous_part = name[2]
|
||||
song.verse_order = u' '.join(verse_order)
|
||||
|
||||
def _process_songbooks(self, properties, song):
|
||||
"""
|
||||
|
@ -88,6 +88,15 @@ class SongUsageDetailForm(QtGui.QDialog, Ui_SongUsageDetailDialog):
|
||||
"""
|
||||
log.debug(u'accept')
|
||||
path = unicode(self.fileLineEdit.text())
|
||||
if path == u'':
|
||||
Receiver.send_message(u'openlp_error_message', {
|
||||
u'title': translate('SongUsagePlugin.SongUsageDetailForm',
|
||||
'Output Path Not Selected'),
|
||||
u'message': unicode(translate(
|
||||
'SongUsagePlugin.SongUsageDetailForm', 'You have not set a '
|
||||
'valid output location for your song usage report. Please '
|
||||
'select an existing path on your computer.'))})
|
||||
return
|
||||
check_directory_exists(path)
|
||||
filename = unicode(translate('SongUsagePlugin.SongUsageDetailForm',
|
||||
'usage_detail_%s_%s.txt')) % (
|
||||
|
@ -2,12 +2,16 @@
|
||||
# -*- makefile -*-
|
||||
|
||||
build:
|
||||
mkdir -p openlp/i18n
|
||||
mkdir -p resources/i18n/qm
|
||||
for TSFILE in resources/i18n/*.ts; do\
|
||||
lrelease-qt4 $$TSFILE -qm openlp/i18n/`basename $$TSFILE .ts`.qm;\
|
||||
lrelease-qt4 $$TSFILE -qm resources/i18n/qm/`basename $$TSFILE .ts`.qm;\
|
||||
done
|
||||
|
||||
install:
|
||||
mkdir -p $(DESTDIR)/usr/share/openlp/i18n
|
||||
cd resources/i18n/qm && for QMFILE in*.qm; do\
|
||||
mv $QMFILE $(DESTDIR)/usr/share/openlp/i18n;\
|
||||
done
|
||||
|
||||
clean:
|
||||
|
||||
rm -fR resources/i18n/qm
|
||||
|
@ -1,9 +1,9 @@
|
||||
#!/usr/bin/make -f
|
||||
|
||||
|
||||
DEB_PYTHON_SYSTEM := pysupport
|
||||
DEB_MAKE_BUILD_TARGET := build
|
||||
DEB_MAKE_INSTALL_TARGET :=
|
||||
DEB_MAKE_CLEAN_TARGET :=
|
||||
DEB_MAKE_INSTALL_TARGET := install
|
||||
DEB_MAKE_CLEAN_TARGET := clean
|
||||
|
||||
include /usr/share/cdbs/1/rules/debhelper.mk
|
||||
include /usr/share/cdbs/1/class/python-distutils.mk
|
||||
@ -14,8 +14,8 @@ binary-post-install/openlp::
|
||||
mkdir -p debian/openlp/usr/share/icons/hicolor/$$SIZE/apps && \
|
||||
cp resources/images/openlp-logo-$$SIZE.png debian/openlp/usr/share/icons/hicolor/$$SIZE/apps/openlp.png; \
|
||||
done
|
||||
|
||||
|
||||
mkdir -p debian/openlp/usr/share/icons/hicolor/scalable/apps && \
|
||||
cp resources/images/openlp-logo.svg debian/openlp/usr/share/icons/hicolor/scalable/apps/openlp.svg
|
||||
|
||||
|
||||
cd debian/openlp/usr/bin/ && mv openlp.pyw openlp
|
||||
|
@ -212,7 +212,7 @@ Gaan steeds voort?</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/bibles/lib/mediaitem.py" line="540"/>
|
||||
<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>
|
||||
</message>
|
||||
@ -841,59 +841,59 @@ afgelaai word en dus word 'n Internet konneksie benodig.</translation>
|
||||
<context>
|
||||
<name>ImagePlugin</name>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="45"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="44"/>
|
||||
<source><strong>Image Plugin</strong><br />The image plugin provides displaying of images.<br />One of the distinguishing features of this plugin is the ability to group a number of images together in the service manager, making the displaying of multiple images easier. This plugin can also make use of OpenLP's "timed looping" feature to create a slide show that runs automatically. In addition to this, images from the plugin can be used to override the current theme's background, which renders text-based items like songs with the selected image as a background instead of the background provided by the theme.</source>
|
||||
<translation><strong>Beeld Mini-program</strong><br/>Die beeld mini-program verskaf vertoning van beelde.<br/>Een van die onderskeidende kenmerke van hierdie mini-program is die vermoë om beelde te groepeer in die diensbestuurder wat dit maklik maak om verskeie beelde te vertoon. Die mini-program kan ook van OpenLP se "tydgebonde herhaling"-funksie gebruik maak om 'n automatiese skyfe-vertoning te verkry. Verder kan beelde van hierdie mini-program gebruik word om die huidige tema se agtergrond te vervang hoewel 'n tema sy eie agtergrond het.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="73"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="72"/>
|
||||
<source>Load a new Image</source>
|
||||
<translation>Laai 'n nuwe Beeld</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="75"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="74"/>
|
||||
<source>Add a new Image</source>
|
||||
<translation>Voeg 'n nuwe Beeld by</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="76"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="75"/>
|
||||
<source>Edit the selected Image</source>
|
||||
<translation>Redigeer die geselekteerde Beeld</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="77"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="76"/>
|
||||
<source>Delete the selected Image</source>
|
||||
<translation>Wis die geselekteerde Beeld uit</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="78"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="77"/>
|
||||
<source>Preview the selected Image</source>
|
||||
<translation>Sien voorskou van die geselekteerde Beeld</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="79"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="78"/>
|
||||
<source>Send the selected Image live</source>
|
||||
<translation>Stuur die geselekteerde Beeld regstreeks</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="80"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="79"/>
|
||||
<source>Add the selected Image to the service</source>
|
||||
<translation>Voeg die geselekteerde Beeld by die diens</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="64"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="63"/>
|
||||
<source>Image</source>
|
||||
<comment>name singular</comment>
|
||||
<translation type="unfinished">Beeld</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="65"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="64"/>
|
||||
<source>Images</source>
|
||||
<comment>name plural</comment>
|
||||
<translation type="unfinished">Beelde</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="69"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="68"/>
|
||||
<source>Images</source>
|
||||
<comment>container title</comment>
|
||||
<translation>Beelde</translation>
|
||||
@ -950,59 +950,59 @@ Voeg steeds die ander beelde by?</translation>
|
||||
<context>
|
||||
<name>MediaPlugin</name>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="70"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="93"/>
|
||||
<source><strong>Media Plugin</strong><br />The media plugin provides playback of audio and video.</source>
|
||||
<translation><strong>Media Mini-program</strong><br/>Die media mini-program verskaf speel funksies van audio en video.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="89"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="112"/>
|
||||
<source>Load a new Media</source>
|
||||
<translation>Laai nuwe Media</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="91"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="114"/>
|
||||
<source>Add a new Media</source>
|
||||
<translation>Voeg nuwe Media by</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="92"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="115"/>
|
||||
<source>Edit the selected Media</source>
|
||||
<translation>Redigeer die geselekteerde Media</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="93"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="116"/>
|
||||
<source>Delete the selected Media</source>
|
||||
<translation>Wis die geselekteerde Media uit</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="94"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="117"/>
|
||||
<source>Preview the selected Media</source>
|
||||
<translation>Sien voorskou van die geselekteerde Media</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="95"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="118"/>
|
||||
<source>Send the selected Media live</source>
|
||||
<translation>Stuur die geselekteerde Media regstreeks</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="96"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="119"/>
|
||||
<source>Add the selected Media to the service</source>
|
||||
<translation>Voeg die geselekteerde Media by die diens</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="80"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="103"/>
|
||||
<source>Media</source>
|
||||
<comment>name singular</comment>
|
||||
<translation type="unfinished">Media</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="81"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="104"/>
|
||||
<source>Media</source>
|
||||
<comment>name plural</comment>
|
||||
<translation type="unfinished">Media</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="85"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="108"/>
|
||||
<source>Media</source>
|
||||
<comment>container title</comment>
|
||||
<translation type="unfinished">Media</translation>
|
||||
@ -1106,17 +1106,6 @@ OpenLP is geskryf en word onderhou deur vrywilligers. As u graag wil sien dat me
|
||||
<source> build %s</source>
|
||||
<translation>bou %s</translation>
|
||||
</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,
|
||||
Meinert Jordan, Andreas Preikschat, Christian Richter, Philip
|
||||
Ridout, Maikel Stuivenberg, Martin Thompson, Jon Tibble, CarstennTinggaard, Frode Woldsund</source>
|
||||
<translation>Kopiereg © 2004-2011 Raoul Snyman
|
||||
Gedeeltelike kopiereg © 2004-2011 Tim Bentley, Jonathan Corwin, Michael Gorven, Scott Guerrieri,
|
||||
Meinert Jordan, Andreas Preikschat, Christian Richter, Philip
|
||||
Ridout, Maikel Stuivenberg, Martin Thompson, Jon Tibble, CarstennTinggaard, Frode Woldsund</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/aboutdialog.py" line="231"/>
|
||||
<source>This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License.</source>
|
||||
@ -1192,6 +1181,15 @@ Final Credit
|
||||
He has set us free.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</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,
|
||||
Meinert Jordan, Andreas Preikschat, Christian Richter, Philip
|
||||
Ridout, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Carsten
|
||||
Tinggaard, Frode Woldsund</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>OpenLP.AdvancedTab</name>
|
||||
@ -1295,18 +1293,18 @@ Final Credit
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/displaytagdialog.py" line="145"/>
|
||||
<source>Tag id</source>
|
||||
<translation>Etiket id</translation>
|
||||
<source>Tag Id</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/displaytagdialog.py" line="147"/>
|
||||
<source>Start Html</source>
|
||||
<translation>Begin Html</translation>
|
||||
<source>Start HTML</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/displaytagdialog.py" line="149"/>
|
||||
<source>End Html</source>
|
||||
<translation>Eind-Html</translation>
|
||||
<source>End HTML</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -1471,151 +1469,200 @@ Version: %s
|
||||
<context>
|
||||
<name>OpenLP.FirstTimeLanguageForm</name>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimelanguagedialog.py" line="60"/>
|
||||
<source>Initial Set up Language</source>
|
||||
<location filename="openlp/core/ui/firsttimelanguagedialog.py" line="61"/>
|
||||
<source>Select Translation</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimelanguagedialog.py" line="62"/>
|
||||
<source>Select the language you'd like to use in OpenLP.</source>
|
||||
<location filename="openlp/core/ui/firsttimelanguagedialog.py" line="63"/>
|
||||
<source>Choose the translation you'd like to use in OpenLP.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimelanguagedialog.py" line="65"/>
|
||||
<source>Translation:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>OpenLP.FirstTimeWizard</name>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="154"/>
|
||||
<source>Songs</source>
|
||||
<location filename="openlp/core/ui/firsttimeform.py" line="61"/>
|
||||
<source>Downloading %s...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimeform.py" line="63"/>
|
||||
<source>Bibles</source>
|
||||
<location filename="openlp/core/ui/firsttimeform.py" line="212"/>
|
||||
<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="64"/>
|
||||
<source>Themes</source>
|
||||
<location filename="openlp/core/ui/firsttimeform.py" line="221"/>
|
||||
<source>Enabling selected plugins...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimeform.py" line="65"/>
|
||||
<source>Starting Updates</source>
|
||||
<location filename="openlp/core/ui/firsttimeform.py" line="244"/>
|
||||
<source>Overwrite Existing Songs?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimeform.py" line="67"/>
|
||||
<source>Downloading %s</source>
|
||||
<location filename="openlp/core/ui/firsttimeform.py" line="244"/>
|
||||
<source>Your songs database already exists and your current songs will be permanently lost, are you sure you want to replace it ?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="140"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="193"/>
|
||||
<source>First Time Wizard</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="142"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="195"/>
|
||||
<source>Welcome to the First Time Wizard</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="146"/>
|
||||
<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>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="199"/>
|
||||
<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="150"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="203"/>
|
||||
<source>Activate required Plugins</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="152"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="205"/>
|
||||
<source>Select the Plugins you wish to use. </source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="155"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="207"/>
|
||||
<source>Songs</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="208"/>
|
||||
<source>Custom Text</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="157"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="210"/>
|
||||
<source>Bible</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="158"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="211"/>
|
||||
<source>Images</source>
|
||||
<translation type="unfinished">Beelde</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="160"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="213"/>
|
||||
<source>Presentations</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="162"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="215"/>
|
||||
<source>Media (Audio and Video)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="164"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="217"/>
|
||||
<source>Allow remote access</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="166"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="219"/>
|
||||
<source>Monitor Song Usage</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="168"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="221"/>
|
||||
<source>Allow Alerts</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="170"/>
|
||||
<source>Download Samples from OpenLP.org</source>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="223"/>
|
||||
<source>No Internet Connection</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="172"/>
|
||||
<source>Select samples to downlaod and install for use.</source>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="225"/>
|
||||
<source>Unable to detect an Internet connection.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="175"/>
|
||||
<source>No Internet connection found so unable to download any default files.</source>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="228"/>
|
||||
<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 type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="178"/>
|
||||
<source>Download Example Files</source>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="236"/>
|
||||
<source>Sample Songs</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="180"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="238"/>
|
||||
<source>Select and download public domain songs.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="240"/>
|
||||
<source>Sample Bibles</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="242"/>
|
||||
<source>Select and download free Bibles.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="244"/>
|
||||
<source>Sample Themes</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="246"/>
|
||||
<source>Select and download sample themes.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="248"/>
|
||||
<source>Default Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="182"/>
|
||||
<source>Set up default values to be used by OpenLP</source>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="250"/>
|
||||
<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="184"/>
|
||||
<source>Default output display</source>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="252"/>
|
||||
<source>Setting Up And Importing</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="186"/>
|
||||
<source>Select the default Theme</source>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="254"/>
|
||||
<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="188"/>
|
||||
<source>Press finish to apply all your changes and start OpenLP</source>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="256"/>
|
||||
<source>Default output display:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="258"/>
|
||||
<source>Select default theme:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="260"/>
|
||||
<source>Starting configuration process...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
@ -1740,12 +1787,12 @@ Version: %s
|
||||
<context>
|
||||
<name>OpenLP.LanguageManager</name>
|
||||
<message>
|
||||
<location filename="openlp/core/utils/languagemanager.py" line="126"/>
|
||||
<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="126"/>
|
||||
<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>
|
||||
@ -2051,17 +2098,12 @@ Version: %s
|
||||
<translation>&Web Tuiste</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="428"/>
|
||||
<source>&Auto Detect</source>
|
||||
<translation>Verklik Outom&aties</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="430"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="434"/>
|
||||
<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="434"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="430"/>
|
||||
<source>Set the interface language to %s</source>
|
||||
<translation>Verstel die koppelvlak taal na %s</translation>
|
||||
</message>
|
||||
@ -2106,7 +2148,7 @@ Version: %s
|
||||
<translation>Verstel die skou modus na Regstreeks.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="644"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="642"/>
|
||||
<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>
|
||||
@ -2115,22 +2157,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="648"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="646"/>
|
||||
<source>OpenLP Version Updated</source>
|
||||
<translation>OpenLP Weergawe is Opdateer</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="686"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="684"/>
|
||||
<source>OpenLP Main Display Blanked</source>
|
||||
<translation>OpenLP Hoof Vertoning Blanko</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="686"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="684"/>
|
||||
<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="895"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="893"/>
|
||||
<source>Default Theme: %s</source>
|
||||
<translation>Verstek Tema: %s</translation>
|
||||
</message>
|
||||
@ -2146,12 +2188,12 @@ Die nuutste weergawe kan afgelaai word vanaf http://openlp.org/.</translation>
|
||||
<translation>Konfigureer Kortpaaie</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="817"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="815"/>
|
||||
<source>Close OpenLP</source>
|
||||
<translation>Mook OpenLP toe</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="817"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="815"/>
|
||||
<source>Are you sure you want to close OpenLP?</source>
|
||||
<translation>Maak OpenLP sekerlik toe?</translation>
|
||||
</message>
|
||||
@ -2180,11 +2222,16 @@ Die nuutste weergawe kan afgelaai word vanaf http://openlp.org/.</translation>
|
||||
<source>&Configure Display Tags</source>
|
||||
<translation>Konfigureer Vertoon Haakies</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="432"/>
|
||||
<source>&Autodetect</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>OpenLP.MediaManagerItem</name>
|
||||
<message>
|
||||
<location filename="openlp/core/lib/__init__.py" line="287"/>
|
||||
<location filename="openlp/core/lib/__init__.py" line="286"/>
|
||||
<source>No Items Selected</source>
|
||||
<translation>Geen item geselekteer nie</translation>
|
||||
</message>
|
||||
@ -2462,29 +2509,29 @@ Die nuutste weergawe kan afgelaai word vanaf http://openlp.org/.</translation>
|
||||
<translation>&Verander Item Tema</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="493"/>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="521"/>
|
||||
<source>File is not a valid service.
|
||||
The content encoding is not UTF-8.</source>
|
||||
<translation>Lêer is nie 'n geldige diens nie.
|
||||
Die inhoud enkodering is nie UTF-8 nie.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="525"/>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="553"/>
|
||||
<source>File is not a valid service.</source>
|
||||
<translation>Lêer is nie 'n geldige diens nie.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="1051"/>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="1079"/>
|
||||
<source>Missing Display Handler</source>
|
||||
<translation>Vermisde Vertoon Hanteerder</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="1017"/>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="1045"/>
|
||||
<source>Your item cannot be displayed as there is no handler to display it</source>
|
||||
<translation>Die item kan nie vertoon word nie omdat daar nie 'n hanteerder is om dit te vertoon nie</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="1051"/>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="1079"/>
|
||||
<source>Your item cannot be displayed as the plugin required to display it is missing or inactive</source>
|
||||
<translation>Die item kan nie vertoon word nie omdat die mini-program wat dit moet vertoon vermis of onaktief is</translation>
|
||||
</message>
|
||||
@ -2514,7 +2561,7 @@ Die inhoud enkodering is nie UTF-8 nie.</translation>
|
||||
<translation type="unfinished">Maak Lêer oop</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="466"/>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="494"/>
|
||||
<source>OpenLP Service Files (*.osz)</source>
|
||||
<translation>OpenLP Diens Lêers (*.osz)</translation>
|
||||
</message>
|
||||
@ -3996,17 +4043,17 @@ Die inhoud enkodering is nie UTF-8 nie.</translation>
|
||||
<translation>Uitvoer Lêer Ligging</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="92"/>
|
||||
<location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="101"/>
|
||||
<source>usage_detail_%s_%s.txt</source>
|
||||
<translation>usage_detail_%s_%s.txt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="114"/>
|
||||
<location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="123"/>
|
||||
<source>Report Creation</source>
|
||||
<translation>Verslag Skepping</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="114"/>
|
||||
<location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="123"/>
|
||||
<source>Report
|
||||
%s
|
||||
has been successfully created. </source>
|
||||
@ -4014,83 +4061,93 @@ has been successfully created. </source>
|
||||
%s
|
||||
was suksesvol geskep.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="92"/>
|
||||
<source>Output Path Not Selected</source>
|
||||
<translation type="unfinished"></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>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>SongsPlugin</name>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="104"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="103"/>
|
||||
<source>&Song</source>
|
||||
<translation>&Lied</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="85"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="84"/>
|
||||
<source>Import songs using the import wizard.</source>
|
||||
<translation>Voer liedere in deur van die invoer helper gebruik te maak.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="183"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="182"/>
|
||||
<source><strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs.</source>
|
||||
<translation><strong>Liedere Mini-program</strong><br/>Die liedere mini-program verskaf die vermoë om liedere te vertoon en te bestuur.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="126"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="125"/>
|
||||
<source>&Re-index Songs</source>
|
||||
<translation>He&r-indeks Liedere</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="128"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="127"/>
|
||||
<source>Re-index the songs database to improve searching and ordering.</source>
|
||||
<translation>Her-indeks die liedere databasis om lied-soektogte en organisering te verbeter.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="141"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="140"/>
|
||||
<source>Reindexing songs...</source>
|
||||
<translation>Besig om liedere indek te herskep...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="238"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="237"/>
|
||||
<source>Add a new Song</source>
|
||||
<translation>Voeg 'n nuwe Lied by</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="239"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="238"/>
|
||||
<source>Edit the selected Song</source>
|
||||
<translation>Redigeer die geselekteerde Lied</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="240"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="239"/>
|
||||
<source>Delete the selected Song</source>
|
||||
<translation>Wis die geselekteerde Lied uit</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="241"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="240"/>
|
||||
<source>Preview the selected Song</source>
|
||||
<translation>Skou die geselekteerde Lied</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="242"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="241"/>
|
||||
<source>Send the selected Song live</source>
|
||||
<translation>Stuur die geselekteerde Lied regstreeks</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="243"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="242"/>
|
||||
<source>Add the selected Song to the service</source>
|
||||
<translation>Voeg die geselekteerde Lied by die diens</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="227"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="226"/>
|
||||
<source>Song</source>
|
||||
<comment>name singular</comment>
|
||||
<translation type="unfinished">Lied</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="228"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="227"/>
|
||||
<source>Songs</source>
|
||||
<comment>name plural</comment>
|
||||
<translation type="unfinished">Liedere</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="232"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="231"/>
|
||||
<source>Songs</source>
|
||||
<comment>container title</comment>
|
||||
<translation type="unfinished">Liedere</translation>
|
||||
@ -4188,7 +4245,7 @@ The encoding is responsible for the correct character representation.</source>
|
||||
Die enkodering is verantwoordelik vir die korrekte karrakter voorstelling.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="106"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="105"/>
|
||||
<source>Exports songs using the export wizard.</source>
|
||||
<translation>Voer liedere uit deur gebruik te maak van die uitvoer gids.</translation>
|
||||
</message>
|
||||
@ -4644,12 +4701,12 @@ Die enkodering is verantwoordelik vir die korrekte karrakter voorstelling.</tran
|
||||
<translation>Lirieke</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="318"/>
|
||||
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="321"/>
|
||||
<source>Delete Song(s)?</source>
|
||||
<translation>Wis Lied(ere) uit?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="400"/>
|
||||
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="403"/>
|
||||
<source>CCLI License: </source>
|
||||
<translation>CCLI Lisensie:</translation>
|
||||
</message>
|
||||
@ -4659,7 +4716,7 @@ Die enkodering is verantwoordelik vir die korrekte karrakter voorstelling.</tran
|
||||
<translation>Volledige Lied</translation>
|
||||
</message>
|
||||
<message numerus="yes">
|
||||
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="318"/>
|
||||
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="321"/>
|
||||
<source>Are you sure you want to delete the %n selected song(s)?</source>
|
||||
<translation>
|
||||
<numerusform>Wis regtig die %n geselekteerde lied(ere)?</numerusform>
|
||||
|
@ -211,7 +211,7 @@ Do you want to continue anyway?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/bibles/lib/mediaitem.py" line="540"/>
|
||||
<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>
|
||||
</message>
|
||||
@ -834,60 +834,60 @@ Daher ist eine Verbindung zum Internet erforderlich.</translation>
|
||||
<context>
|
||||
<name>ImagePlugin</name>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="45"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="44"/>
|
||||
<source><strong>Image Plugin</strong><br />The image plugin provides displaying of images.<br />One of the distinguishing features of this plugin is the ability to group a number of images together in the service manager, making the displaying of multiple images easier. This plugin can also make use of OpenLP's "timed looping" feature to create a slide show that runs automatically. In addition to this, images from the plugin can be used to override the current theme's background, which renders text-based items like songs with the selected image as a background instead of the background provided by the theme.</source>
|
||||
<translation><strong>Bilder Erweiterung</strong><br />Die Erweiterung Bilder ermöglicht die Anzeige von Bildern.<br />Eine der besonderen Eigenschaften dieser Erweiterung ist die Möglichkeit, in der Ablaufverwaltung, mehrere Bilder zu einer Gruppe zusammen zu fassen. Dies vereinfacht die die Anzeige mehrerer Bilder. Ebenso kann mit Hilfe der Zeitschleife, sehr einfach eine Diaschau erzeugt werden, welche dann automatisch abläuft. Des weiteren können mit dieser Erweiterung Bilder benutzt werden, um das Hintergrundbild des aktuellen Design zu ersetzen.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="64"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="63"/>
|
||||
<source>Image</source>
|
||||
<comment>name singular</comment>
|
||||
<translation>Bild</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="65"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="64"/>
|
||||
<source>Images</source>
|
||||
<comment>name plural</comment>
|
||||
<translation>Bilder</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="69"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="68"/>
|
||||
<source>Images</source>
|
||||
<comment>container title</comment>
|
||||
<translation>Bilder</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="73"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="72"/>
|
||||
<source>Load a new Image</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="75"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="74"/>
|
||||
<source>Add a new Image</source>
|
||||
<translation>Füge eine neues Bild hinzu</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="76"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="75"/>
|
||||
<source>Edit the selected Image</source>
|
||||
<translation>Bearbeite das ausgewählte Bild</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="77"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="76"/>
|
||||
<source>Delete the selected Image</source>
|
||||
<translation>Lösche da ausgewählte Bild</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="78"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="77"/>
|
||||
<source>Preview the selected Image</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="79"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="78"/>
|
||||
<source>Send the selected Image live</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="80"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="79"/>
|
||||
<source>Add the selected Image to the service</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -943,60 +943,60 @@ Wollen Sie die anderen Bilder trotzdem hinzufügen?</translation>
|
||||
<context>
|
||||
<name>MediaPlugin</name>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="70"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="93"/>
|
||||
<source><strong>Media Plugin</strong><br />The media plugin provides playback of audio and video.</source>
|
||||
<translation><strong>Erweiterung Medien</strong><br />Die Erweiterung Medien ermöglicht es Audio- und Videodateien abzuspielen.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="80"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="103"/>
|
||||
<source>Media</source>
|
||||
<comment>name singular</comment>
|
||||
<translation>Medien</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="81"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="104"/>
|
||||
<source>Media</source>
|
||||
<comment>name plural</comment>
|
||||
<translation>Medien</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="85"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="108"/>
|
||||
<source>Media</source>
|
||||
<comment>container title</comment>
|
||||
<translation>Medien</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="89"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="112"/>
|
||||
<source>Load a new Media</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="91"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="114"/>
|
||||
<source>Add a new Media</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="92"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="115"/>
|
||||
<source>Edit the selected Media</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="93"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="116"/>
|
||||
<source>Delete the selected Media</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="94"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="117"/>
|
||||
<source>Preview the selected Media</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="95"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="118"/>
|
||||
<source>Send the selected Media live</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="96"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="119"/>
|
||||
<source>Add the selected Media to the service</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -1099,14 +1099,6 @@ OpenLP wird von freiwiligen Helfern programmiert und gewartet. Wenn Sie sich meh
|
||||
<source> build %s</source>
|
||||
<translation> build %s</translation>
|
||||
</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,
|
||||
Meinert Jordan, Andreas Preikschat, Christian Richter, Philip
|
||||
Ridout, Maikel Stuivenberg, Martin Thompson, Jon Tibble, CarstennTinggaard, Frode Woldsund</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/aboutdialog.py" line="231"/>
|
||||
<source>This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License.</source>
|
||||
@ -1182,6 +1174,15 @@ Final Credit
|
||||
He has set us free.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</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,
|
||||
Meinert Jordan, Andreas Preikschat, Christian Richter, Philip
|
||||
Ridout, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Carsten
|
||||
Tinggaard, Frode Woldsund</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>OpenLP.AdvancedTab</name>
|
||||
@ -1285,18 +1286,18 @@ Final Credit
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/displaytagdialog.py" line="145"/>
|
||||
<source>Tag id</source>
|
||||
<translation type="unfinished">Tag ID</translation>
|
||||
<source>Tag Id</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/displaytagdialog.py" line="147"/>
|
||||
<source>Start Html</source>
|
||||
<translation type="unfinished">Anfangs HTML</translation>
|
||||
<source>Start HTML</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/displaytagdialog.py" line="149"/>
|
||||
<source>End Html</source>
|
||||
<translation type="unfinished">End HTML</translation>
|
||||
<source>End HTML</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -1435,151 +1436,200 @@ Version: %s
|
||||
<context>
|
||||
<name>OpenLP.FirstTimeLanguageForm</name>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimelanguagedialog.py" line="60"/>
|
||||
<source>Initial Set up Language</source>
|
||||
<location filename="openlp/core/ui/firsttimelanguagedialog.py" line="61"/>
|
||||
<source>Select Translation</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimelanguagedialog.py" line="62"/>
|
||||
<source>Select the language you'd like to use in OpenLP.</source>
|
||||
<location filename="openlp/core/ui/firsttimelanguagedialog.py" line="63"/>
|
||||
<source>Choose the translation you'd like to use in OpenLP.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimelanguagedialog.py" line="65"/>
|
||||
<source>Translation:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>OpenLP.FirstTimeWizard</name>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="154"/>
|
||||
<source>Songs</source>
|
||||
<translation type="unfinished">Lieder</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimeform.py" line="63"/>
|
||||
<source>Bibles</source>
|
||||
<translation type="unfinished">Bibeln</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimeform.py" line="64"/>
|
||||
<source>Themes</source>
|
||||
<location filename="openlp/core/ui/firsttimeform.py" line="61"/>
|
||||
<source>Downloading %s...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimeform.py" line="65"/>
|
||||
<source>Starting Updates</source>
|
||||
<location filename="openlp/core/ui/firsttimeform.py" line="212"/>
|
||||
<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="67"/>
|
||||
<source>Downloading %s</source>
|
||||
<location filename="openlp/core/ui/firsttimeform.py" line="221"/>
|
||||
<source>Enabling selected plugins...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="140"/>
|
||||
<location filename="openlp/core/ui/firsttimeform.py" line="244"/>
|
||||
<source>Overwrite Existing Songs?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimeform.py" line="244"/>
|
||||
<source>Your songs database already exists and your current songs will be permanently lost, are you sure you want to replace it ?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="193"/>
|
||||
<source>First Time Wizard</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="142"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="195"/>
|
||||
<source>Welcome to the First Time Wizard</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="146"/>
|
||||
<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>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="199"/>
|
||||
<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="150"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="203"/>
|
||||
<source>Activate required Plugins</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="152"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="205"/>
|
||||
<source>Select the Plugins you wish to use. </source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="155"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="207"/>
|
||||
<source>Songs</source>
|
||||
<translation type="unfinished">Lieder</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="208"/>
|
||||
<source>Custom Text</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="157"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="210"/>
|
||||
<source>Bible</source>
|
||||
<translation type="unfinished">Bibeltext</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="158"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="211"/>
|
||||
<source>Images</source>
|
||||
<translation type="unfinished">Bilder</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="160"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="213"/>
|
||||
<source>Presentations</source>
|
||||
<translation type="unfinished">Präsentationen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="162"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="215"/>
|
||||
<source>Media (Audio and Video)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="164"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="217"/>
|
||||
<source>Allow remote access</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="166"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="219"/>
|
||||
<source>Monitor Song Usage</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="168"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="221"/>
|
||||
<source>Allow Alerts</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="170"/>
|
||||
<source>Download Samples from OpenLP.org</source>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="223"/>
|
||||
<source>No Internet Connection</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="172"/>
|
||||
<source>Select samples to downlaod and install for use.</source>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="225"/>
|
||||
<source>Unable to detect an Internet connection.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="175"/>
|
||||
<source>No Internet connection found so unable to download any default files.</source>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="228"/>
|
||||
<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 type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="178"/>
|
||||
<source>Download Example Files</source>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="236"/>
|
||||
<source>Sample Songs</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="180"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="238"/>
|
||||
<source>Select and download public domain songs.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="240"/>
|
||||
<source>Sample Bibles</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="242"/>
|
||||
<source>Select and download free Bibles.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="244"/>
|
||||
<source>Sample Themes</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="246"/>
|
||||
<source>Select and download sample themes.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="248"/>
|
||||
<source>Default Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="182"/>
|
||||
<source>Set up default values to be used by OpenLP</source>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="250"/>
|
||||
<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="184"/>
|
||||
<source>Default output display</source>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="252"/>
|
||||
<source>Setting Up And Importing</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="186"/>
|
||||
<source>Select the default Theme</source>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="254"/>
|
||||
<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="188"/>
|
||||
<source>Press finish to apply all your changes and start OpenLP</source>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="256"/>
|
||||
<source>Default output display:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="258"/>
|
||||
<source>Select default theme:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="260"/>
|
||||
<source>Starting configuration process...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
@ -1704,12 +1754,12 @@ Version: %s
|
||||
<context>
|
||||
<name>OpenLP.LanguageManager</name>
|
||||
<message>
|
||||
<location filename="openlp/core/utils/languagemanager.py" line="126"/>
|
||||
<location filename="openlp/core/utils/languagemanager.py" line="130"/>
|
||||
<source>Language</source>
|
||||
<translation>Sprache</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/utils/languagemanager.py" line="126"/>
|
||||
<location filename="openlp/core/utils/languagemanager.py" line="130"/>
|
||||
<source>Please restart OpenLP to use your new language setting.</source>
|
||||
<translation>Bitte starten Sie OpenLP neu, um die neue Spracheinstellung zu verwenden.</translation>
|
||||
</message>
|
||||
@ -2015,17 +2065,12 @@ Version: %s
|
||||
<translation>&Webseite</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="428"/>
|
||||
<source>&Auto Detect</source>
|
||||
<translation>&Automatische Auswahl</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="430"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="434"/>
|
||||
<source>Use the system language, if available.</source>
|
||||
<translation>Die Systemsprache, sofern diese verfügbar ist, verwenden.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="434"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="430"/>
|
||||
<source>Set the interface language to %s</source>
|
||||
<translation>Die Sprache von OpenLP auf %s stellen</translation>
|
||||
</message>
|
||||
@ -2070,27 +2115,27 @@ Version: %s
|
||||
<translation>Die Ansicht für den Live-Betrieb optimieren.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="648"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="646"/>
|
||||
<source>OpenLP Version Updated</source>
|
||||
<translation>Neue OpenLP Version verfügbar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="686"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="684"/>
|
||||
<source>OpenLP Main Display Blanked</source>
|
||||
<translation>Hauptbildschirm abgedunkelt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="686"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="684"/>
|
||||
<source>The Main Display has been blanked out</source>
|
||||
<translation>Die Projektion ist momentan nicht aktiv.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="895"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="893"/>
|
||||
<source>Default Theme: %s</source>
|
||||
<translation>Standarddesign: %s</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="644"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="642"/>
|
||||
<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,12 +2155,12 @@ Sie können die letzte Version auf http://openlp.org abrufen.</translation>
|
||||
<translation>&Tastenkürzel einrichten...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="817"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="815"/>
|
||||
<source>Close OpenLP</source>
|
||||
<translation>OpenLP beenden</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="817"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="815"/>
|
||||
<source>Are you sure you want to close OpenLP?</source>
|
||||
<translation>Sind Sie sicher, dass OpenLP beendet werden soll?</translation>
|
||||
</message>
|
||||
@ -2144,11 +2189,16 @@ Sie können die letzte Version auf http://openlp.org abrufen.</translation>
|
||||
<source>&Configure Display Tags</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="432"/>
|
||||
<source>&Autodetect</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>OpenLP.MediaManagerItem</name>
|
||||
<message>
|
||||
<location filename="openlp/core/lib/__init__.py" line="287"/>
|
||||
<location filename="openlp/core/lib/__init__.py" line="286"/>
|
||||
<source>No Items Selected</source>
|
||||
<translation>Keine Elemente ausgewählt.</translation>
|
||||
</message>
|
||||
@ -2426,29 +2476,29 @@ Sie können die letzte Version auf http://openlp.org abrufen.</translation>
|
||||
<translation>&Design des Elements ändern</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="493"/>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="521"/>
|
||||
<source>File is not a valid service.
|
||||
The content encoding is not UTF-8.</source>
|
||||
<translation>Die gewählte Datei ist keine gültige OpenLP Ablaufdatei.
|
||||
Der Inhalt ist nicht in UTF-8 kodiert.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="525"/>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="553"/>
|
||||
<source>File is not a valid service.</source>
|
||||
<translation>Die Datei ist keine gültige OpenLP Ablaufdatei.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="1051"/>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="1079"/>
|
||||
<source>Missing Display Handler</source>
|
||||
<translation>Fehlende Anzeigesteuerung</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="1017"/>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="1045"/>
|
||||
<source>Your item cannot be displayed as there is no handler to display it</source>
|
||||
<translation>Dieses Element kann nicht angezeigt werden, da es keine Steuerung dafür gibt.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="1051"/>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="1079"/>
|
||||
<source>Your item cannot be displayed as the plugin required to display it is missing or inactive</source>
|
||||
<translation>Dieses Element kann nicht angezeigt werden, da die zugehörige Erweiterung fehlt oder inaktiv ist.</translation>
|
||||
</message>
|
||||
@ -2478,7 +2528,7 @@ Der Inhalt ist nicht in UTF-8 kodiert.</translation>
|
||||
<translation>Ablauf öffnen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="466"/>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="494"/>
|
||||
<source>OpenLP Service Files (*.osz)</source>
|
||||
<translation>OpenLP Ablaufdateien (*.osz)</translation>
|
||||
</message>
|
||||
@ -3960,69 +4010,79 @@ Sie ist nicht in UTF-8 kodiert.</translation>
|
||||
<translation>Speicherort</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="92"/>
|
||||
<location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="101"/>
|
||||
<source>usage_detail_%s_%s.txt</source>
|
||||
<translation>Aufrufprotokoll_%s_%s.txt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="114"/>
|
||||
<location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="123"/>
|
||||
<source>Report Creation</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="114"/>
|
||||
<location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="123"/>
|
||||
<source>Report
|
||||
%s
|
||||
has been successfully created. </source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="92"/>
|
||||
<source>Output Path Not Selected</source>
|
||||
<translation type="unfinished"></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>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>SongsPlugin</name>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="104"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="103"/>
|
||||
<source>&Song</source>
|
||||
<translation>&Lied</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="85"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="84"/>
|
||||
<source>Import songs using the import wizard.</source>
|
||||
<translation>Lieder importieren.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="183"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="182"/>
|
||||
<source><strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs.</source>
|
||||
<translation><strong>Erweiterung Lieder</strong><br />Die Erweiterung Lieder ermöglicht die Darstellung und Verwaltung von Liedtexten.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="126"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="125"/>
|
||||
<source>&Re-index Songs</source>
|
||||
<translation>Liederverzeichnis &reindizieren</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="128"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="127"/>
|
||||
<source>Re-index the songs database to improve searching and ordering.</source>
|
||||
<translation>Das reindizieren der Liederdatenbank kann die Suchergebnisse verbessern.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="141"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="140"/>
|
||||
<source>Reindexing songs...</source>
|
||||
<translation>Reindiziere die Liederdatenbank...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="227"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="226"/>
|
||||
<source>Song</source>
|
||||
<comment>name singular</comment>
|
||||
<translation>Lied</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="228"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="227"/>
|
||||
<source>Songs</source>
|
||||
<comment>name plural</comment>
|
||||
<translation>Lieder</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="232"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="231"/>
|
||||
<source>Songs</source>
|
||||
<comment>container title</comment>
|
||||
<translation>Lieder</translation>
|
||||
@ -4117,37 +4177,37 @@ Usually you are fine with the preselected choice.</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="106"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="105"/>
|
||||
<source>Exports songs using the export wizard.</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="238"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="237"/>
|
||||
<source>Add a new Song</source>
|
||||
<translation>Erstelle eine neues Lied</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="239"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="238"/>
|
||||
<source>Edit the selected Song</source>
|
||||
<translation>Bearbeite das ausgewählte Lied</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="240"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="239"/>
|
||||
<source>Delete the selected Song</source>
|
||||
<translation>Lösche das ausgewählte Lied</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="241"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="240"/>
|
||||
<source>Preview the selected Song</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="242"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="241"/>
|
||||
<source>Send the selected Song live</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="243"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="242"/>
|
||||
<source>Add the selected Song to the service</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -4603,12 +4663,12 @@ Usually you are fine with the preselected choice.</source>
|
||||
<translation>Liedtext</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="318"/>
|
||||
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="321"/>
|
||||
<source>Delete Song(s)?</source>
|
||||
<translation>Lied(er) löschen?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="400"/>
|
||||
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="403"/>
|
||||
<source>CCLI License: </source>
|
||||
<translation>CCLI-Lizenz: </translation>
|
||||
</message>
|
||||
@ -4618,7 +4678,7 @@ Usually you are fine with the preselected choice.</source>
|
||||
<translation>Ganzes Lied</translation>
|
||||
</message>
|
||||
<message numerus="yes">
|
||||
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="318"/>
|
||||
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="321"/>
|
||||
<source>Are you sure you want to delete the %n selected song(s)?</source>
|
||||
<translation>
|
||||
<numerusform>Sind Sie sicher, dass das Lied gelöscht werden soll?</numerusform>
|
||||
|
@ -210,7 +210,7 @@ Do you want to continue anyway?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/bibles/lib/mediaitem.py" line="540"/>
|
||||
<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>
|
||||
</message>
|
||||
@ -829,59 +829,59 @@ demand and thus an internet connection is required.</source>
|
||||
<context>
|
||||
<name>ImagePlugin</name>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="45"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="44"/>
|
||||
<source><strong>Image Plugin</strong><br />The image plugin provides displaying of images.<br />One of the distinguishing features of this plugin is the ability to group a number of images together in the service manager, making the displaying of multiple images easier. This plugin can also make use of OpenLP's "timed looping" feature to create a slide show that runs automatically. In addition to this, images from the plugin can be used to override the current theme's background, which renders text-based items like songs with the selected image as a background instead of the background provided by the theme.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="73"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="72"/>
|
||||
<source>Load a new Image</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="75"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="74"/>
|
||||
<source>Add a new Image</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="76"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="75"/>
|
||||
<source>Edit the selected Image</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="77"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="76"/>
|
||||
<source>Delete the selected Image</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="78"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="77"/>
|
||||
<source>Preview the selected Image</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="79"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="78"/>
|
||||
<source>Send the selected Image live</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="80"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="79"/>
|
||||
<source>Add the selected Image to the service</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="64"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="63"/>
|
||||
<source>Image</source>
|
||||
<comment>name singular</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="65"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="64"/>
|
||||
<source>Images</source>
|
||||
<comment>name plural</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="69"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="68"/>
|
||||
<source>Images</source>
|
||||
<comment>container title</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
@ -937,59 +937,59 @@ Do you want to add the other images anyway?</source>
|
||||
<context>
|
||||
<name>MediaPlugin</name>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="70"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="93"/>
|
||||
<source><strong>Media Plugin</strong><br />The media plugin provides playback of audio and video.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="89"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="112"/>
|
||||
<source>Load a new Media</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="91"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="114"/>
|
||||
<source>Add a new Media</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="92"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="115"/>
|
||||
<source>Edit the selected Media</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="93"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="116"/>
|
||||
<source>Delete the selected Media</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="94"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="117"/>
|
||||
<source>Preview the selected Media</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="95"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="118"/>
|
||||
<source>Send the selected Media live</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="96"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="119"/>
|
||||
<source>Add the selected Media to the service</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="80"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="103"/>
|
||||
<source>Media</source>
|
||||
<comment>name singular</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="81"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="104"/>
|
||||
<source>Media</source>
|
||||
<comment>name plural</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="85"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="108"/>
|
||||
<source>Media</source>
|
||||
<comment>container title</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
@ -1087,14 +1087,6 @@ OpenLP is written and maintained by volunteers. If you would like to see more fr
|
||||
<source> build %s</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</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,
|
||||
Meinert Jordan, Andreas Preikschat, Christian Richter, Philip
|
||||
Ridout, Maikel Stuivenberg, Martin Thompson, Jon Tibble, CarstennTinggaard, Frode Woldsund</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/aboutdialog.py" line="231"/>
|
||||
<source>This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License.</source>
|
||||
@ -1170,6 +1162,15 @@ Final Credit
|
||||
He has set us free.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</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,
|
||||
Meinert Jordan, Andreas Preikschat, Christian Richter, Philip
|
||||
Ridout, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Carsten
|
||||
Tinggaard, Frode Woldsund</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>OpenLP.AdvancedTab</name>
|
||||
@ -1273,17 +1274,17 @@ Final Credit
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/displaytagdialog.py" line="145"/>
|
||||
<source>Tag id</source>
|
||||
<source>Tag Id</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/displaytagdialog.py" line="147"/>
|
||||
<source>Start Html</source>
|
||||
<source>Start HTML</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/displaytagdialog.py" line="149"/>
|
||||
<source>End Html</source>
|
||||
<source>End HTML</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
@ -1421,151 +1422,200 @@ Version: %s
|
||||
<context>
|
||||
<name>OpenLP.FirstTimeLanguageForm</name>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimelanguagedialog.py" line="60"/>
|
||||
<source>Initial Set up Language</source>
|
||||
<location filename="openlp/core/ui/firsttimelanguagedialog.py" line="61"/>
|
||||
<source>Select Translation</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimelanguagedialog.py" line="62"/>
|
||||
<source>Select the language you'd like to use in OpenLP.</source>
|
||||
<location filename="openlp/core/ui/firsttimelanguagedialog.py" line="63"/>
|
||||
<source>Choose the translation you'd like to use in OpenLP.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimelanguagedialog.py" line="65"/>
|
||||
<source>Translation:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>OpenLP.FirstTimeWizard</name>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="154"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="207"/>
|
||||
<source>Songs</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimeform.py" line="63"/>
|
||||
<source>Bibles</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimeform.py" line="64"/>
|
||||
<source>Themes</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimeform.py" line="65"/>
|
||||
<source>Starting Updates</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimeform.py" line="67"/>
|
||||
<source>Downloading %s</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="140"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="193"/>
|
||||
<source>First Time Wizard</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="142"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="195"/>
|
||||
<source>Welcome to the First Time Wizard</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="146"/>
|
||||
<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="150"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="203"/>
|
||||
<source>Activate required Plugins</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="152"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="205"/>
|
||||
<source>Select the Plugins you wish to use. </source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="155"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="208"/>
|
||||
<source>Custom Text</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="157"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="210"/>
|
||||
<source>Bible</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="158"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="211"/>
|
||||
<source>Images</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="160"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="213"/>
|
||||
<source>Presentations</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="162"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="215"/>
|
||||
<source>Media (Audio and Video)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="164"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="217"/>
|
||||
<source>Allow remote access</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="166"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="219"/>
|
||||
<source>Monitor Song Usage</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="168"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="221"/>
|
||||
<source>Allow Alerts</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="170"/>
|
||||
<source>Download Samples from OpenLP.org</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="172"/>
|
||||
<source>Select samples to downlaod and install for use.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="175"/>
|
||||
<source>No Internet connection found so unable to download any default files.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="178"/>
|
||||
<source>Download Example Files</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="180"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="248"/>
|
||||
<source>Default Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="182"/>
|
||||
<source>Set up default values to be used by OpenLP</source>
|
||||
<location filename="openlp/core/ui/firsttimeform.py" line="61"/>
|
||||
<source>Downloading %s...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="184"/>
|
||||
<source>Default output display</source>
|
||||
<location filename="openlp/core/ui/firsttimeform.py" line="212"/>
|
||||
<source>Download complete. Click the finish button to start OpenLP.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="186"/>
|
||||
<source>Select the default Theme</source>
|
||||
<location filename="openlp/core/ui/firsttimeform.py" line="221"/>
|
||||
<source>Enabling selected plugins...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="188"/>
|
||||
<source>Press finish to apply all your changes and start OpenLP</source>
|
||||
<location filename="openlp/core/ui/firsttimeform.py" line="244"/>
|
||||
<source>Overwrite Existing Songs?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimeform.py" line="244"/>
|
||||
<source>Your songs database already exists and your current songs will be permanently lost, are you sure you want to replace it ?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="199"/>
|
||||
<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"/>
|
||||
<source>No Internet Connection</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="225"/>
|
||||
<source>Unable to detect an Internet connection.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="228"/>
|
||||
<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 type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="236"/>
|
||||
<source>Sample Songs</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="238"/>
|
||||
<source>Select and download public domain songs.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="240"/>
|
||||
<source>Sample Bibles</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="242"/>
|
||||
<source>Select and download free Bibles.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="244"/>
|
||||
<source>Sample Themes</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="246"/>
|
||||
<source>Select and download sample themes.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="250"/>
|
||||
<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"/>
|
||||
<source>Setting Up And Importing</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="254"/>
|
||||
<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"/>
|
||||
<source>Default output display:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="258"/>
|
||||
<source>Select default theme:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="260"/>
|
||||
<source>Starting configuration process...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
@ -1690,12 +1740,12 @@ Version: %s
|
||||
<context>
|
||||
<name>OpenLP.LanguageManager</name>
|
||||
<message>
|
||||
<location filename="openlp/core/utils/languagemanager.py" line="126"/>
|
||||
<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="126"/>
|
||||
<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>
|
||||
@ -2001,17 +2051,12 @@ Version: %s
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="428"/>
|
||||
<source>&Auto Detect</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="430"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="434"/>
|
||||
<source>Use the system language, if available.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="434"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="430"/>
|
||||
<source>Set the interface language to %s</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -2056,29 +2101,29 @@ Version: %s
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="644"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="642"/>
|
||||
<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="648"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="646"/>
|
||||
<source>OpenLP Version Updated</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="686"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="684"/>
|
||||
<source>OpenLP Main Display Blanked</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="686"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="684"/>
|
||||
<source>The Main Display has been blanked out</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="895"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="893"/>
|
||||
<source>Default Theme: %s</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -2094,12 +2139,12 @@ 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="817"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="815"/>
|
||||
<source>Close OpenLP</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="817"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="815"/>
|
||||
<source>Are you sure you want to close OpenLP?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -2128,11 +2173,16 @@ You can download the latest version from http://openlp.org/.</source>
|
||||
<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="432"/>
|
||||
<source>&Autodetect</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>OpenLP.MediaManagerItem</name>
|
||||
<message>
|
||||
<location filename="openlp/core/lib/__init__.py" line="287"/>
|
||||
<location filename="openlp/core/lib/__init__.py" line="286"/>
|
||||
<source>No Items Selected</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -2410,33 +2460,33 @@ You can download the latest version from http://openlp.org/.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="466"/>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="494"/>
|
||||
<source>OpenLP Service Files (*.osz)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="493"/>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="521"/>
|
||||
<source>File is not a valid service.
|
||||
The content encoding is not UTF-8.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="525"/>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="553"/>
|
||||
<source>File is not a valid service.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="1051"/>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="1079"/>
|
||||
<source>Missing Display Handler</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="1017"/>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="1045"/>
|
||||
<source>Your item cannot be displayed as there is no handler to display it</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="1051"/>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="1079"/>
|
||||
<source>Your item cannot be displayed as the plugin required to display it is missing or inactive</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -3942,82 +3992,92 @@ The content encoding is not UTF-8.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="92"/>
|
||||
<location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="101"/>
|
||||
<source>usage_detail_%s_%s.txt</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="114"/>
|
||||
<location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="123"/>
|
||||
<source>Report Creation</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="114"/>
|
||||
<location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="123"/>
|
||||
<source>Report
|
||||
%s
|
||||
has been successfully created. </source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="92"/>
|
||||
<source>Output Path Not Selected</source>
|
||||
<translation type="unfinished"></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>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>SongsPlugin</name>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="104"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="103"/>
|
||||
<source>&Song</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="85"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="84"/>
|
||||
<source>Import songs using the import wizard.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="183"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="182"/>
|
||||
<source><strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="126"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="125"/>
|
||||
<source>&Re-index Songs</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="128"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="127"/>
|
||||
<source>Re-index the songs database to improve searching and ordering.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="141"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="140"/>
|
||||
<source>Reindexing songs...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="238"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="237"/>
|
||||
<source>Add a new Song</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="239"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="238"/>
|
||||
<source>Edit the selected Song</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="240"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="239"/>
|
||||
<source>Delete the selected Song</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="241"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="240"/>
|
||||
<source>Preview the selected Song</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="242"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="241"/>
|
||||
<source>Send the selected Song live</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="243"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="242"/>
|
||||
<source>Add the selected Song to the service</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -4110,25 +4170,25 @@ The encoding is responsible for the correct character representation.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="227"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="226"/>
|
||||
<source>Song</source>
|
||||
<comment>name singular</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="228"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="227"/>
|
||||
<source>Songs</source>
|
||||
<comment>name plural</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="232"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="231"/>
|
||||
<source>Songs</source>
|
||||
<comment>container title</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="106"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="105"/>
|
||||
<source>Exports songs using the export wizard.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -4584,12 +4644,12 @@ The encoding is responsible for the correct character representation.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="318"/>
|
||||
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="321"/>
|
||||
<source>Delete Song(s)?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="400"/>
|
||||
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="403"/>
|
||||
<source>CCLI License: </source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -4599,7 +4659,7 @@ The encoding is responsible for the correct character representation.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message numerus="yes">
|
||||
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="318"/>
|
||||
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="321"/>
|
||||
<source>Are you sure you want to delete the %n selected song(s)?</source>
|
||||
<translation type="unfinished">
|
||||
<numerusform></numerusform>
|
||||
|
@ -210,7 +210,7 @@ Do you want to continue anyway?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/bibles/lib/mediaitem.py" line="540"/>
|
||||
<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>
|
||||
</message>
|
||||
@ -830,59 +830,59 @@ demand and thus an internet connection is required.</source>
|
||||
<context>
|
||||
<name>ImagePlugin</name>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="45"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="44"/>
|
||||
<source><strong>Image Plugin</strong><br />The image plugin provides displaying of images.<br />One of the distinguishing features of this plugin is the ability to group a number of images together in the service manager, making the displaying of multiple images easier. This plugin can also make use of OpenLP's "timed looping" feature to create a slide show that runs automatically. In addition to this, images from the plugin can be used to override the current theme's background, which renders text-based items like songs with the selected image as a background instead of the background provided by the theme.</source>
|
||||
<translation><strong>Image Plugin</strong><br />The image plugin provides displaying of images.<br />One of the distinguishing features of this plugin is the ability to group a number of images together in the service manager, making the displaying of multiple images easier. This plugin can also make use of OpenLP's "timed looping" feature to create a slide show that runs automatically. In addition to this, images from the plugin can be used to override the current theme's background, which renders text-based items like songs with the selected image as a background instead of the background provided by the theme.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="73"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="72"/>
|
||||
<source>Load a new Image</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="75"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="74"/>
|
||||
<source>Add a new Image</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="76"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="75"/>
|
||||
<source>Edit the selected Image</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="77"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="76"/>
|
||||
<source>Delete the selected Image</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="78"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="77"/>
|
||||
<source>Preview the selected Image</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="79"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="78"/>
|
||||
<source>Send the selected Image live</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="80"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="79"/>
|
||||
<source>Add the selected Image to the service</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="64"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="63"/>
|
||||
<source>Image</source>
|
||||
<comment>name singular</comment>
|
||||
<translation type="unfinished">Image</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="65"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="64"/>
|
||||
<source>Images</source>
|
||||
<comment>name plural</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="69"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="68"/>
|
||||
<source>Images</source>
|
||||
<comment>container title</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
@ -938,59 +938,59 @@ Do you want to add the other images anyway?</source>
|
||||
<context>
|
||||
<name>MediaPlugin</name>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="70"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="93"/>
|
||||
<source><strong>Media Plugin</strong><br />The media plugin provides playback of audio and video.</source>
|
||||
<translation><strong>Media Plugin</strong><br />The media plugin provides playback of audio and video.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="89"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="112"/>
|
||||
<source>Load a new Media</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="91"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="114"/>
|
||||
<source>Add a new Media</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="92"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="115"/>
|
||||
<source>Edit the selected Media</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="93"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="116"/>
|
||||
<source>Delete the selected Media</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="94"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="117"/>
|
||||
<source>Preview the selected Media</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="95"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="118"/>
|
||||
<source>Send the selected Media live</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="96"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="119"/>
|
||||
<source>Add the selected Media to the service</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="80"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="103"/>
|
||||
<source>Media</source>
|
||||
<comment>name singular</comment>
|
||||
<translation type="unfinished">Media</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="81"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="104"/>
|
||||
<source>Media</source>
|
||||
<comment>name plural</comment>
|
||||
<translation type="unfinished">Media</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="85"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="108"/>
|
||||
<source>Media</source>
|
||||
<comment>container title</comment>
|
||||
<translation type="unfinished">Media</translation>
|
||||
@ -1094,14 +1094,6 @@ OpenLP is written and maintained by volunteers. If you would like to see more fr
|
||||
<source> build %s</source>
|
||||
<translation> build %s</translation>
|
||||
</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,
|
||||
Meinert Jordan, Andreas Preikschat, Christian Richter, Philip
|
||||
Ridout, Maikel Stuivenberg, Martin Thompson, Jon Tibble, CarstennTinggaard, Frode Woldsund</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/aboutdialog.py" line="231"/>
|
||||
<source>This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License.</source>
|
||||
@ -1177,6 +1169,15 @@ Final Credit
|
||||
He has set us free.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</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,
|
||||
Meinert Jordan, Andreas Preikschat, Christian Richter, Philip
|
||||
Ridout, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Carsten
|
||||
Tinggaard, Frode Woldsund</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>OpenLP.AdvancedTab</name>
|
||||
@ -1280,17 +1281,17 @@ Final Credit
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/displaytagdialog.py" line="145"/>
|
||||
<source>Tag id</source>
|
||||
<source>Tag Id</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/displaytagdialog.py" line="147"/>
|
||||
<source>Start Html</source>
|
||||
<source>Start HTML</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/displaytagdialog.py" line="149"/>
|
||||
<source>End Html</source>
|
||||
<source>End HTML</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
@ -1428,151 +1429,200 @@ Version: %s
|
||||
<context>
|
||||
<name>OpenLP.FirstTimeLanguageForm</name>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimelanguagedialog.py" line="60"/>
|
||||
<source>Initial Set up Language</source>
|
||||
<location filename="openlp/core/ui/firsttimelanguagedialog.py" line="61"/>
|
||||
<source>Select Translation</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimelanguagedialog.py" line="62"/>
|
||||
<source>Select the language you'd like to use in OpenLP.</source>
|
||||
<location filename="openlp/core/ui/firsttimelanguagedialog.py" line="63"/>
|
||||
<source>Choose the translation you'd like to use in OpenLP.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimelanguagedialog.py" line="65"/>
|
||||
<source>Translation:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>OpenLP.FirstTimeWizard</name>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="154"/>
|
||||
<source>Songs</source>
|
||||
<location filename="openlp/core/ui/firsttimeform.py" line="61"/>
|
||||
<source>Downloading %s...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimeform.py" line="63"/>
|
||||
<source>Bibles</source>
|
||||
<location filename="openlp/core/ui/firsttimeform.py" line="212"/>
|
||||
<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="64"/>
|
||||
<source>Themes</source>
|
||||
<location filename="openlp/core/ui/firsttimeform.py" line="221"/>
|
||||
<source>Enabling selected plugins...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimeform.py" line="65"/>
|
||||
<source>Starting Updates</source>
|
||||
<location filename="openlp/core/ui/firsttimeform.py" line="244"/>
|
||||
<source>Overwrite Existing Songs?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimeform.py" line="67"/>
|
||||
<source>Downloading %s</source>
|
||||
<location filename="openlp/core/ui/firsttimeform.py" line="244"/>
|
||||
<source>Your songs database already exists and your current songs will be permanently lost, are you sure you want to replace it ?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="140"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="193"/>
|
||||
<source>First Time Wizard</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="142"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="195"/>
|
||||
<source>Welcome to the First Time Wizard</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="146"/>
|
||||
<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>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="199"/>
|
||||
<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="150"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="203"/>
|
||||
<source>Activate required Plugins</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="152"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="205"/>
|
||||
<source>Select the Plugins you wish to use. </source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="155"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="207"/>
|
||||
<source>Songs</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="208"/>
|
||||
<source>Custom Text</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="157"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="210"/>
|
||||
<source>Bible</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="158"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="211"/>
|
||||
<source>Images</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="160"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="213"/>
|
||||
<source>Presentations</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="162"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="215"/>
|
||||
<source>Media (Audio and Video)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="164"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="217"/>
|
||||
<source>Allow remote access</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="166"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="219"/>
|
||||
<source>Monitor Song Usage</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="168"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="221"/>
|
||||
<source>Allow Alerts</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="170"/>
|
||||
<source>Download Samples from OpenLP.org</source>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="223"/>
|
||||
<source>No Internet Connection</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="172"/>
|
||||
<source>Select samples to downlaod and install for use.</source>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="225"/>
|
||||
<source>Unable to detect an Internet connection.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="175"/>
|
||||
<source>No Internet connection found so unable to download any default files.</source>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="228"/>
|
||||
<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 type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="178"/>
|
||||
<source>Download Example Files</source>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="236"/>
|
||||
<source>Sample Songs</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="180"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="238"/>
|
||||
<source>Select and download public domain songs.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="240"/>
|
||||
<source>Sample Bibles</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="242"/>
|
||||
<source>Select and download free Bibles.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="244"/>
|
||||
<source>Sample Themes</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="246"/>
|
||||
<source>Select and download sample themes.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="248"/>
|
||||
<source>Default Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="182"/>
|
||||
<source>Set up default values to be used by OpenLP</source>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="250"/>
|
||||
<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="184"/>
|
||||
<source>Default output display</source>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="252"/>
|
||||
<source>Setting Up And Importing</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="186"/>
|
||||
<source>Select the default Theme</source>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="254"/>
|
||||
<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="188"/>
|
||||
<source>Press finish to apply all your changes and start OpenLP</source>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="256"/>
|
||||
<source>Default output display:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="258"/>
|
||||
<source>Select default theme:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="260"/>
|
||||
<source>Starting configuration process...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
@ -1697,12 +1747,12 @@ Version: %s
|
||||
<context>
|
||||
<name>OpenLP.LanguageManager</name>
|
||||
<message>
|
||||
<location filename="openlp/core/utils/languagemanager.py" line="126"/>
|
||||
<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="126"/>
|
||||
<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>
|
||||
@ -2008,17 +2058,12 @@ Version: %s
|
||||
<translation>&Web Site</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="428"/>
|
||||
<source>&Auto Detect</source>
|
||||
<translation>&Auto Detect</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="430"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="434"/>
|
||||
<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="434"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="430"/>
|
||||
<source>Set the interface language to %s</source>
|
||||
<translation>Set the interface language to %s</translation>
|
||||
</message>
|
||||
@ -2063,7 +2108,7 @@ Version: %s
|
||||
<translation>Set the view mode to Live.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="644"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="642"/>
|
||||
<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>
|
||||
@ -2071,22 +2116,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="648"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="646"/>
|
||||
<source>OpenLP Version Updated</source>
|
||||
<translation>OpenLP Version Updated</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="686"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="684"/>
|
||||
<source>OpenLP Main Display Blanked</source>
|
||||
<translation>OpenLP Main Display Blanked</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="686"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="684"/>
|
||||
<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="895"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="893"/>
|
||||
<source>Default Theme: %s</source>
|
||||
<translation>Default Theme: %s</translation>
|
||||
</message>
|
||||
@ -2102,12 +2147,12 @@ You can download the latest version from http://openlp.org/.</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="817"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="815"/>
|
||||
<source>Close OpenLP</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="817"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="815"/>
|
||||
<source>Are you sure you want to close OpenLP?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -2136,11 +2181,16 @@ You can download the latest version from http://openlp.org/.</translation>
|
||||
<source>&Configure Display Tags</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="432"/>
|
||||
<source>&Autodetect</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>OpenLP.MediaManagerItem</name>
|
||||
<message>
|
||||
<location filename="openlp/core/lib/__init__.py" line="287"/>
|
||||
<location filename="openlp/core/lib/__init__.py" line="286"/>
|
||||
<source>No Items Selected</source>
|
||||
<translation>No Items Selected</translation>
|
||||
</message>
|
||||
@ -2418,29 +2468,29 @@ You can download the latest version from http://openlp.org/.</translation>
|
||||
<translation>&Change Item Theme</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="493"/>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="521"/>
|
||||
<source>File is not a valid service.
|
||||
The content encoding is not UTF-8.</source>
|
||||
<translation>File is not a valid service.
|
||||
The content encoding is not UTF-8.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="525"/>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="553"/>
|
||||
<source>File is not a valid service.</source>
|
||||
<translation>File is not a valid service.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="1051"/>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="1079"/>
|
||||
<source>Missing Display Handler</source>
|
||||
<translation>Missing Display Handler</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="1017"/>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="1045"/>
|
||||
<source>Your item cannot be displayed as there is no handler to display it</source>
|
||||
<translation>Your item cannot be displayed as there is no handler to display it</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="1051"/>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="1079"/>
|
||||
<source>Your item cannot be displayed as the plugin required to display it is missing or inactive</source>
|
||||
<translation>Your item cannot be displayed as the plugin required to display it is missing or inactive</translation>
|
||||
</message>
|
||||
@ -2470,7 +2520,7 @@ The content encoding is not UTF-8.</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="466"/>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="494"/>
|
||||
<source>OpenLP Service Files (*.osz)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -3952,99 +4002,109 @@ The content encoding is not UTF-8.</translation>
|
||||
<translation>Output File Location</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="92"/>
|
||||
<location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="101"/>
|
||||
<source>usage_detail_%s_%s.txt</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="114"/>
|
||||
<location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="123"/>
|
||||
<source>Report Creation</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="114"/>
|
||||
<location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="123"/>
|
||||
<source>Report
|
||||
%s
|
||||
has been successfully created. </source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="92"/>
|
||||
<source>Output Path Not Selected</source>
|
||||
<translation type="unfinished"></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>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>SongsPlugin</name>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="104"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="103"/>
|
||||
<source>&Song</source>
|
||||
<translation>&Song</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="85"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="84"/>
|
||||
<source>Import songs using the import wizard.</source>
|
||||
<translation>Import songs using the import wizard.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="183"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="182"/>
|
||||
<source><strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs.</source>
|
||||
<translation><strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="126"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="125"/>
|
||||
<source>&Re-index Songs</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="128"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="127"/>
|
||||
<source>Re-index the songs database to improve searching and ordering.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="141"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="140"/>
|
||||
<source>Reindexing songs...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="238"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="237"/>
|
||||
<source>Add a new Song</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="239"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="238"/>
|
||||
<source>Edit the selected Song</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="240"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="239"/>
|
||||
<source>Delete the selected Song</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="241"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="240"/>
|
||||
<source>Preview the selected Song</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="242"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="241"/>
|
||||
<source>Send the selected Song live</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="243"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="242"/>
|
||||
<source>Add the selected Song to the service</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="227"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="226"/>
|
||||
<source>Song</source>
|
||||
<comment>name singular</comment>
|
||||
<translation type="unfinished">Song</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="228"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="227"/>
|
||||
<source>Songs</source>
|
||||
<comment>name plural</comment>
|
||||
<translation type="unfinished">Songs</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="232"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="231"/>
|
||||
<source>Songs</source>
|
||||
<comment>container title</comment>
|
||||
<translation type="unfinished">Songs</translation>
|
||||
@ -4138,7 +4198,7 @@ The encoding is responsible for the correct character representation.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="106"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="105"/>
|
||||
<source>Exports songs using the export wizard.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -4594,12 +4654,12 @@ The encoding is responsible for the correct character representation.</source>
|
||||
<translation>Lyrics</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="318"/>
|
||||
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="321"/>
|
||||
<source>Delete Song(s)?</source>
|
||||
<translation>Delete Song(s)?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="400"/>
|
||||
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="403"/>
|
||||
<source>CCLI License: </source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -4609,7 +4669,7 @@ The encoding is responsible for the correct character representation.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message numerus="yes">
|
||||
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="318"/>
|
||||
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="321"/>
|
||||
<source>Are you sure you want to delete the %n selected song(s)?</source>
|
||||
<translation type="unfinished">
|
||||
<numerusform></numerusform>
|
||||
|
@ -212,7 +212,7 @@ Do you want to continue anyway?</translation>
|
||||
<translation>Bible not fully loaded.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/bibles/lib/mediaitem.py" line="540"/>
|
||||
<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>You cannot combine single and dual Bible verse search results. Do you want to delete your search results and start a new search?</translation>
|
||||
</message>
|
||||
@ -842,59 +842,59 @@ demand and thus an internet connection is required.</translation>
|
||||
<context>
|
||||
<name>ImagePlugin</name>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="45"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="44"/>
|
||||
<source><strong>Image Plugin</strong><br />The image plugin provides displaying of images.<br />One of the distinguishing features of this plugin is the ability to group a number of images together in the service manager, making the displaying of multiple images easier. This plugin can also make use of OpenLP's "timed looping" feature to create a slide show that runs automatically. In addition to this, images from the plugin can be used to override the current theme's background, which renders text-based items like songs with the selected image as a background instead of the background provided by the theme.</source>
|
||||
<translation><strong>Image Plugin</strong><br />The image plugin provides displaying of images.<br />One of the distinguishing features of this plugin is the ability to group a number of images together in the service manager, making the displaying of multiple images easier. This plugin can also make use of OpenLP's "timed looping" feature to create a slide show that runs automatically. In addition to this, images from the plugin can be used to override the current theme's background, which renders text-based items like songs with the selected image as a background instead of the background provided by the theme.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="73"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="72"/>
|
||||
<source>Load a new Image</source>
|
||||
<translation>Load a new Image</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="75"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="74"/>
|
||||
<source>Add a new Image</source>
|
||||
<translation>Add a new Image</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="76"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="75"/>
|
||||
<source>Edit the selected Image</source>
|
||||
<translation>Edit the selected Image</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="77"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="76"/>
|
||||
<source>Delete the selected Image</source>
|
||||
<translation>Delete the selected Image</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="78"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="77"/>
|
||||
<source>Preview the selected Image</source>
|
||||
<translation>Preview the selected Image</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="79"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="78"/>
|
||||
<source>Send the selected Image live</source>
|
||||
<translation>Send the selected Image live</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="80"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="79"/>
|
||||
<source>Add the selected Image to the service</source>
|
||||
<translation>Add the selected Image to the service</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="64"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="63"/>
|
||||
<source>Image</source>
|
||||
<comment>name singular</comment>
|
||||
<translation type="unfinished">Image</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="65"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="64"/>
|
||||
<source>Images</source>
|
||||
<comment>name plural</comment>
|
||||
<translation type="unfinished">Images</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="69"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="68"/>
|
||||
<source>Images</source>
|
||||
<comment>container title</comment>
|
||||
<translation type="unfinished">Images</translation>
|
||||
@ -951,59 +951,59 @@ Do you want to add the other images anyway?</translation>
|
||||
<context>
|
||||
<name>MediaPlugin</name>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="70"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="93"/>
|
||||
<source><strong>Media Plugin</strong><br />The media plugin provides playback of audio and video.</source>
|
||||
<translation><strong>Media Plugin</strong><br />The media plugin provides playback of audio and video.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="89"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="112"/>
|
||||
<source>Load a new Media</source>
|
||||
<translation>Load a new Media</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="91"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="114"/>
|
||||
<source>Add a new Media</source>
|
||||
<translation>Add a new Media</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="92"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="115"/>
|
||||
<source>Edit the selected Media</source>
|
||||
<translation>Edit the selected Media</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="93"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="116"/>
|
||||
<source>Delete the selected Media</source>
|
||||
<translation>Delete the selected Media</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="94"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="117"/>
|
||||
<source>Preview the selected Media</source>
|
||||
<translation>Preview the selected Media</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="95"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="118"/>
|
||||
<source>Send the selected Media live</source>
|
||||
<translation>Send the selected Media live</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="96"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="119"/>
|
||||
<source>Add the selected Media to the service</source>
|
||||
<translation>Add the selected Media to the service</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="80"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="103"/>
|
||||
<source>Media</source>
|
||||
<comment>name singular</comment>
|
||||
<translation type="unfinished">Media</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="81"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="104"/>
|
||||
<source>Media</source>
|
||||
<comment>name plural</comment>
|
||||
<translation type="unfinished">Media</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="85"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="108"/>
|
||||
<source>Media</source>
|
||||
<comment>container title</comment>
|
||||
<translation type="unfinished">Media</translation>
|
||||
@ -1107,17 +1107,6 @@ OpenLP is written and maintained by volunteers. If you would like to see more fr
|
||||
<source> build %s</source>
|
||||
<translation> build %s</translation>
|
||||
</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,
|
||||
Meinert Jordan, Andreas Preikschat, Christian Richter, Philip
|
||||
Ridout, Maikel Stuivenberg, Martin Thompson, Jon Tibble, CarstennTinggaard, Frode Woldsund</source>
|
||||
<translation>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, CarstennTinggaard, Frode Woldsund</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/aboutdialog.py" line="231"/>
|
||||
<source>This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License.</source>
|
||||
@ -1193,6 +1182,15 @@ Final Credit
|
||||
He has set us free.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</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,
|
||||
Meinert Jordan, Andreas Preikschat, Christian Richter, Philip
|
||||
Ridout, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Carsten
|
||||
Tinggaard, Frode Woldsund</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>OpenLP.AdvancedTab</name>
|
||||
@ -1296,18 +1294,18 @@ Final Credit
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/displaytagdialog.py" line="145"/>
|
||||
<source>Tag id</source>
|
||||
<translation>Tag Id</translation>
|
||||
<source>Tag Id</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/displaytagdialog.py" line="147"/>
|
||||
<source>Start Html</source>
|
||||
<translation>Start HTML</translation>
|
||||
<source>Start HTML</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/displaytagdialog.py" line="149"/>
|
||||
<source>End Html</source>
|
||||
<translation>End HTML</translation>
|
||||
<source>End HTML</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -1472,151 +1470,200 @@ Version: %s
|
||||
<context>
|
||||
<name>OpenLP.FirstTimeLanguageForm</name>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimelanguagedialog.py" line="60"/>
|
||||
<source>Initial Set up Language</source>
|
||||
<location filename="openlp/core/ui/firsttimelanguagedialog.py" line="61"/>
|
||||
<source>Select Translation</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimelanguagedialog.py" line="62"/>
|
||||
<source>Select the language you'd like to use in OpenLP.</source>
|
||||
<location filename="openlp/core/ui/firsttimelanguagedialog.py" line="63"/>
|
||||
<source>Choose the translation you'd like to use in OpenLP.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimelanguagedialog.py" line="65"/>
|
||||
<source>Translation:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>OpenLP.FirstTimeWizard</name>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="154"/>
|
||||
<source>Songs</source>
|
||||
<location filename="openlp/core/ui/firsttimeform.py" line="61"/>
|
||||
<source>Downloading %s...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimeform.py" line="63"/>
|
||||
<source>Bibles</source>
|
||||
<location filename="openlp/core/ui/firsttimeform.py" line="212"/>
|
||||
<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="64"/>
|
||||
<source>Themes</source>
|
||||
<location filename="openlp/core/ui/firsttimeform.py" line="221"/>
|
||||
<source>Enabling selected plugins...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimeform.py" line="65"/>
|
||||
<source>Starting Updates</source>
|
||||
<location filename="openlp/core/ui/firsttimeform.py" line="244"/>
|
||||
<source>Overwrite Existing Songs?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimeform.py" line="67"/>
|
||||
<source>Downloading %s</source>
|
||||
<location filename="openlp/core/ui/firsttimeform.py" line="244"/>
|
||||
<source>Your songs database already exists and your current songs will be permanently lost, are you sure you want to replace it ?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="140"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="193"/>
|
||||
<source>First Time Wizard</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="142"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="195"/>
|
||||
<source>Welcome to the First Time Wizard</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="146"/>
|
||||
<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>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="199"/>
|
||||
<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="150"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="203"/>
|
||||
<source>Activate required Plugins</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="152"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="205"/>
|
||||
<source>Select the Plugins you wish to use. </source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="155"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="207"/>
|
||||
<source>Songs</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="208"/>
|
||||
<source>Custom Text</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="157"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="210"/>
|
||||
<source>Bible</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="158"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="211"/>
|
||||
<source>Images</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="160"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="213"/>
|
||||
<source>Presentations</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="162"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="215"/>
|
||||
<source>Media (Audio and Video)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="164"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="217"/>
|
||||
<source>Allow remote access</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="166"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="219"/>
|
||||
<source>Monitor Song Usage</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="168"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="221"/>
|
||||
<source>Allow Alerts</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="170"/>
|
||||
<source>Download Samples from OpenLP.org</source>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="223"/>
|
||||
<source>No Internet Connection</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="172"/>
|
||||
<source>Select samples to downlaod and install for use.</source>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="225"/>
|
||||
<source>Unable to detect an Internet connection.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="175"/>
|
||||
<source>No Internet connection found so unable to download any default files.</source>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="228"/>
|
||||
<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 type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="178"/>
|
||||
<source>Download Example Files</source>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="236"/>
|
||||
<source>Sample Songs</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="180"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="238"/>
|
||||
<source>Select and download public domain songs.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="240"/>
|
||||
<source>Sample Bibles</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="242"/>
|
||||
<source>Select and download free Bibles.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="244"/>
|
||||
<source>Sample Themes</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="246"/>
|
||||
<source>Select and download sample themes.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="248"/>
|
||||
<source>Default Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="182"/>
|
||||
<source>Set up default values to be used by OpenLP</source>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="250"/>
|
||||
<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="184"/>
|
||||
<source>Default output display</source>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="252"/>
|
||||
<source>Setting Up And Importing</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="186"/>
|
||||
<source>Select the default Theme</source>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="254"/>
|
||||
<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="188"/>
|
||||
<source>Press finish to apply all your changes and start OpenLP</source>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="256"/>
|
||||
<source>Default output display:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="258"/>
|
||||
<source>Select default theme:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="260"/>
|
||||
<source>Starting configuration process...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
@ -1741,12 +1788,12 @@ Version: %s
|
||||
<context>
|
||||
<name>OpenLP.LanguageManager</name>
|
||||
<message>
|
||||
<location filename="openlp/core/utils/languagemanager.py" line="126"/>
|
||||
<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="126"/>
|
||||
<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>
|
||||
@ -2052,17 +2099,12 @@ Version: %s
|
||||
<translation>&Web Site</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="428"/>
|
||||
<source>&Auto Detect</source>
|
||||
<translation>&Auto Detect</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="430"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="434"/>
|
||||
<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="434"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="430"/>
|
||||
<source>Set the interface language to %s</source>
|
||||
<translation>Set the interface language to %s</translation>
|
||||
</message>
|
||||
@ -2107,27 +2149,27 @@ Version: %s
|
||||
<translation>Set the view mode to Live.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="648"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="646"/>
|
||||
<source>OpenLP Version Updated</source>
|
||||
<translation>OpenLP Version Updated</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="686"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="684"/>
|
||||
<source>OpenLP Main Display Blanked</source>
|
||||
<translation>OpenLP Main Display Blanked</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="686"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="684"/>
|
||||
<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="895"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="893"/>
|
||||
<source>Default Theme: %s</source>
|
||||
<translation>Default Theme: %s</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="644"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="642"/>
|
||||
<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>
|
||||
@ -2147,12 +2189,12 @@ You can download the latest version from http://openlp.org/.</translation>
|
||||
<translation>Configure &Shortcuts...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="817"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="815"/>
|
||||
<source>Close OpenLP</source>
|
||||
<translation>Close OpenLP</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="817"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="815"/>
|
||||
<source>Are you sure you want to close OpenLP?</source>
|
||||
<translation>Are you sure you want to close OpenLP?</translation>
|
||||
</message>
|
||||
@ -2181,11 +2223,16 @@ You can download the latest version from http://openlp.org/.</translation>
|
||||
<source>&Configure Display Tags</source>
|
||||
<translation>&Configure Display Tags</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="432"/>
|
||||
<source>&Autodetect</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>OpenLP.MediaManagerItem</name>
|
||||
<message>
|
||||
<location filename="openlp/core/lib/__init__.py" line="287"/>
|
||||
<location filename="openlp/core/lib/__init__.py" line="286"/>
|
||||
<source>No Items Selected</source>
|
||||
<translation>No Items Selected</translation>
|
||||
</message>
|
||||
@ -2463,29 +2510,29 @@ You can download the latest version from http://openlp.org/.</translation>
|
||||
<translation>&Change Item Theme</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="493"/>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="521"/>
|
||||
<source>File is not a valid service.
|
||||
The content encoding is not UTF-8.</source>
|
||||
<translation>File is not a valid service.
|
||||
The content encoding is not UTF-8.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="525"/>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="553"/>
|
||||
<source>File is not a valid service.</source>
|
||||
<translation>File is not a valid service.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="1051"/>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="1079"/>
|
||||
<source>Missing Display Handler</source>
|
||||
<translation>Missing Display Handler</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="1017"/>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="1045"/>
|
||||
<source>Your item cannot be displayed as there is no handler to display it</source>
|
||||
<translation>Your item cannot be displayed as there is no handler to display it</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="1051"/>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="1079"/>
|
||||
<source>Your item cannot be displayed as the plugin required to display it is missing or inactive</source>
|
||||
<translation>Your item cannot be displayed as the plugin required to display it is missing or inactive</translation>
|
||||
</message>
|
||||
@ -2515,7 +2562,7 @@ The content encoding is not UTF-8.</translation>
|
||||
<translation>Open File</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="466"/>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="494"/>
|
||||
<source>OpenLP Service Files (*.osz)</source>
|
||||
<translation>OpenLP Service Files (*.osz)</translation>
|
||||
</message>
|
||||
@ -3997,17 +4044,17 @@ The content encoding is not UTF-8.</translation>
|
||||
<translation>Report Location</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="92"/>
|
||||
<location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="101"/>
|
||||
<source>usage_detail_%s_%s.txt</source>
|
||||
<translation>usage_detail_%s_%s.txt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="114"/>
|
||||
<location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="123"/>
|
||||
<source>Report Creation</source>
|
||||
<translation>Report Creation</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="114"/>
|
||||
<location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="123"/>
|
||||
<source>Report
|
||||
%s
|
||||
has been successfully created. </source>
|
||||
@ -4015,83 +4062,93 @@ has been successfully created. </source>
|
||||
%s
|
||||
has been successfully created. </translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="92"/>
|
||||
<source>Output Path Not Selected</source>
|
||||
<translation type="unfinished"></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>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>SongsPlugin</name>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="104"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="103"/>
|
||||
<source>&Song</source>
|
||||
<translation>&Song</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="85"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="84"/>
|
||||
<source>Import songs using the import wizard.</source>
|
||||
<translation>Import songs using the import wizard.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="183"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="182"/>
|
||||
<source><strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs.</source>
|
||||
<translation><strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="126"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="125"/>
|
||||
<source>&Re-index Songs</source>
|
||||
<translation>&Re-index Songs</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="128"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="127"/>
|
||||
<source>Re-index the songs database to improve searching and ordering.</source>
|
||||
<translation>Re-index the songs database to improve searching and ordering.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="141"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="140"/>
|
||||
<source>Reindexing songs...</source>
|
||||
<translation>Reindexing songs...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="238"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="237"/>
|
||||
<source>Add a new Song</source>
|
||||
<translation>Add a new Song</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="239"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="238"/>
|
||||
<source>Edit the selected Song</source>
|
||||
<translation>Edit the selected Song</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="240"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="239"/>
|
||||
<source>Delete the selected Song</source>
|
||||
<translation>Delete the selected Song</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="241"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="240"/>
|
||||
<source>Preview the selected Song</source>
|
||||
<translation>Preview the selected Song</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="242"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="241"/>
|
||||
<source>Send the selected Song live</source>
|
||||
<translation>Send the selected Song live</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="243"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="242"/>
|
||||
<source>Add the selected Song to the service</source>
|
||||
<translation>Add the selected Song to the service</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="227"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="226"/>
|
||||
<source>Song</source>
|
||||
<comment>name singular</comment>
|
||||
<translation type="unfinished">Song</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="228"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="227"/>
|
||||
<source>Songs</source>
|
||||
<comment>name plural</comment>
|
||||
<translation type="unfinished">Songs</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="232"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="231"/>
|
||||
<source>Songs</source>
|
||||
<comment>container title</comment>
|
||||
<translation type="unfinished">Songs</translation>
|
||||
@ -4188,7 +4245,7 @@ The encoding is responsible for the correct character representation.</source>
|
||||
The encoding is responsible for the correct character representation.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="106"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="105"/>
|
||||
<source>Exports songs using the export wizard.</source>
|
||||
<translation>Exports songs using the export wizard.</translation>
|
||||
</message>
|
||||
@ -4644,12 +4701,12 @@ The encoding is responsible for the correct character representation.</translati
|
||||
<translation>Lyrics</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="318"/>
|
||||
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="321"/>
|
||||
<source>Delete Song(s)?</source>
|
||||
<translation>Delete Song(s)?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="400"/>
|
||||
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="403"/>
|
||||
<source>CCLI License: </source>
|
||||
<translation>CCLI License: </translation>
|
||||
</message>
|
||||
@ -4659,7 +4716,7 @@ The encoding is responsible for the correct character representation.</translati
|
||||
<translation>Entire Song</translation>
|
||||
</message>
|
||||
<message numerus="yes">
|
||||
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="318"/>
|
||||
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="321"/>
|
||||
<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>
|
||||
|
@ -211,7 +211,7 @@ Do you want to continue anyway?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/bibles/lib/mediaitem.py" line="540"/>
|
||||
<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>
|
||||
</message>
|
||||
@ -830,59 +830,59 @@ demand and thus an internet connection is required.</source>
|
||||
<context>
|
||||
<name>ImagePlugin</name>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="45"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="44"/>
|
||||
<source><strong>Image Plugin</strong><br />The image plugin provides displaying of images.<br />One of the distinguishing features of this plugin is the ability to group a number of images together in the service manager, making the displaying of multiple images easier. This plugin can also make use of OpenLP's "timed looping" feature to create a slide show that runs automatically. In addition to this, images from the plugin can be used to override the current theme's background, which renders text-based items like songs with the selected image as a background instead of the background provided by the theme.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="73"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="72"/>
|
||||
<source>Load a new Image</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="75"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="74"/>
|
||||
<source>Add a new Image</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="76"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="75"/>
|
||||
<source>Edit the selected Image</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="77"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="76"/>
|
||||
<source>Delete the selected Image</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="78"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="77"/>
|
||||
<source>Preview the selected Image</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="79"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="78"/>
|
||||
<source>Send the selected Image live</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="80"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="79"/>
|
||||
<source>Add the selected Image to the service</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="64"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="63"/>
|
||||
<source>Image</source>
|
||||
<comment>name singular</comment>
|
||||
<translation type="unfinished">Imagen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="65"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="64"/>
|
||||
<source>Images</source>
|
||||
<comment>name plural</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="69"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="68"/>
|
||||
<source>Images</source>
|
||||
<comment>container title</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
@ -938,59 +938,59 @@ Do you want to add the other images anyway?</source>
|
||||
<context>
|
||||
<name>MediaPlugin</name>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="70"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="93"/>
|
||||
<source><strong>Media Plugin</strong><br />The media plugin provides playback of audio and video.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="89"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="112"/>
|
||||
<source>Load a new Media</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="91"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="114"/>
|
||||
<source>Add a new Media</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="92"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="115"/>
|
||||
<source>Edit the selected Media</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="93"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="116"/>
|
||||
<source>Delete the selected Media</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="94"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="117"/>
|
||||
<source>Preview the selected Media</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="95"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="118"/>
|
||||
<source>Send the selected Media live</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="96"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="119"/>
|
||||
<source>Add the selected Media to the service</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="80"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="103"/>
|
||||
<source>Media</source>
|
||||
<comment>name singular</comment>
|
||||
<translation type="unfinished">Medios</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="81"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="104"/>
|
||||
<source>Media</source>
|
||||
<comment>name plural</comment>
|
||||
<translation type="unfinished">Medios</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="85"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="108"/>
|
||||
<source>Media</source>
|
||||
<comment>container title</comment>
|
||||
<translation type="unfinished">Medios</translation>
|
||||
@ -1088,14 +1088,6 @@ OpenLP is written and maintained by volunteers. If you would like to see more fr
|
||||
<source> build %s</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</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,
|
||||
Meinert Jordan, Andreas Preikschat, Christian Richter, Philip
|
||||
Ridout, Maikel Stuivenberg, Martin Thompson, Jon Tibble, CarstennTinggaard, Frode Woldsund</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/aboutdialog.py" line="231"/>
|
||||
<source>This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License.</source>
|
||||
@ -1171,6 +1163,15 @@ Final Credit
|
||||
He has set us free.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</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,
|
||||
Meinert Jordan, Andreas Preikschat, Christian Richter, Philip
|
||||
Ridout, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Carsten
|
||||
Tinggaard, Frode Woldsund</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>OpenLP.AdvancedTab</name>
|
||||
@ -1274,17 +1275,17 @@ Final Credit
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/displaytagdialog.py" line="145"/>
|
||||
<source>Tag id</source>
|
||||
<source>Tag Id</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/displaytagdialog.py" line="147"/>
|
||||
<source>Start Html</source>
|
||||
<source>Start HTML</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/displaytagdialog.py" line="149"/>
|
||||
<source>End Html</source>
|
||||
<source>End HTML</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
@ -1422,151 +1423,200 @@ Version: %s
|
||||
<context>
|
||||
<name>OpenLP.FirstTimeLanguageForm</name>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimelanguagedialog.py" line="60"/>
|
||||
<source>Initial Set up Language</source>
|
||||
<location filename="openlp/core/ui/firsttimelanguagedialog.py" line="61"/>
|
||||
<source>Select Translation</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimelanguagedialog.py" line="62"/>
|
||||
<source>Select the language you'd like to use in OpenLP.</source>
|
||||
<location filename="openlp/core/ui/firsttimelanguagedialog.py" line="63"/>
|
||||
<source>Choose the translation you'd like to use in OpenLP.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimelanguagedialog.py" line="65"/>
|
||||
<source>Translation:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>OpenLP.FirstTimeWizard</name>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="154"/>
|
||||
<source>Songs</source>
|
||||
<location filename="openlp/core/ui/firsttimeform.py" line="61"/>
|
||||
<source>Downloading %s...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimeform.py" line="63"/>
|
||||
<source>Bibles</source>
|
||||
<location filename="openlp/core/ui/firsttimeform.py" line="212"/>
|
||||
<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="64"/>
|
||||
<source>Themes</source>
|
||||
<location filename="openlp/core/ui/firsttimeform.py" line="221"/>
|
||||
<source>Enabling selected plugins...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimeform.py" line="65"/>
|
||||
<source>Starting Updates</source>
|
||||
<location filename="openlp/core/ui/firsttimeform.py" line="244"/>
|
||||
<source>Overwrite Existing Songs?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimeform.py" line="67"/>
|
||||
<source>Downloading %s</source>
|
||||
<location filename="openlp/core/ui/firsttimeform.py" line="244"/>
|
||||
<source>Your songs database already exists and your current songs will be permanently lost, are you sure you want to replace it ?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="140"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="193"/>
|
||||
<source>First Time Wizard</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="142"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="195"/>
|
||||
<source>Welcome to the First Time Wizard</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="146"/>
|
||||
<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>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="199"/>
|
||||
<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="150"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="203"/>
|
||||
<source>Activate required Plugins</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="152"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="205"/>
|
||||
<source>Select the Plugins you wish to use. </source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="155"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="207"/>
|
||||
<source>Songs</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="208"/>
|
||||
<source>Custom Text</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="157"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="210"/>
|
||||
<source>Bible</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="158"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="211"/>
|
||||
<source>Images</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="160"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="213"/>
|
||||
<source>Presentations</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="162"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="215"/>
|
||||
<source>Media (Audio and Video)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="164"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="217"/>
|
||||
<source>Allow remote access</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="166"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="219"/>
|
||||
<source>Monitor Song Usage</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="168"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="221"/>
|
||||
<source>Allow Alerts</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="170"/>
|
||||
<source>Download Samples from OpenLP.org</source>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="223"/>
|
||||
<source>No Internet Connection</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="172"/>
|
||||
<source>Select samples to downlaod and install for use.</source>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="225"/>
|
||||
<source>Unable to detect an Internet connection.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="175"/>
|
||||
<source>No Internet connection found so unable to download any default files.</source>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="228"/>
|
||||
<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 type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="178"/>
|
||||
<source>Download Example Files</source>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="236"/>
|
||||
<source>Sample Songs</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="180"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="238"/>
|
||||
<source>Select and download public domain songs.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="240"/>
|
||||
<source>Sample Bibles</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="242"/>
|
||||
<source>Select and download free Bibles.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="244"/>
|
||||
<source>Sample Themes</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="246"/>
|
||||
<source>Select and download sample themes.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="248"/>
|
||||
<source>Default Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="182"/>
|
||||
<source>Set up default values to be used by OpenLP</source>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="250"/>
|
||||
<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="184"/>
|
||||
<source>Default output display</source>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="252"/>
|
||||
<source>Setting Up And Importing</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="186"/>
|
||||
<source>Select the default Theme</source>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="254"/>
|
||||
<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="188"/>
|
||||
<source>Press finish to apply all your changes and start OpenLP</source>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="256"/>
|
||||
<source>Default output display:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="258"/>
|
||||
<source>Select default theme:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="260"/>
|
||||
<source>Starting configuration process...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
@ -1691,12 +1741,12 @@ Version: %s
|
||||
<context>
|
||||
<name>OpenLP.LanguageManager</name>
|
||||
<message>
|
||||
<location filename="openlp/core/utils/languagemanager.py" line="126"/>
|
||||
<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="126"/>
|
||||
<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>
|
||||
@ -2002,17 +2052,12 @@ Version: %s
|
||||
<translation type="unfinished">Sitio &Web</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="428"/>
|
||||
<source>&Auto Detect</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="430"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="434"/>
|
||||
<source>Use the system language, if available.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="434"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="430"/>
|
||||
<source>Set the interface language to %s</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -2057,29 +2102,29 @@ Version: %s
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="644"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="642"/>
|
||||
<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="648"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="646"/>
|
||||
<source>OpenLP Version Updated</source>
|
||||
<translation type="unfinished">Versión de OpenLP Actualizada</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="686"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="684"/>
|
||||
<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="686"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="684"/>
|
||||
<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="895"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="893"/>
|
||||
<source>Default Theme: %s</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -2095,12 +2140,12 @@ 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="817"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="815"/>
|
||||
<source>Close OpenLP</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="817"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="815"/>
|
||||
<source>Are you sure you want to close OpenLP?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -2129,11 +2174,16 @@ You can download the latest version from http://openlp.org/.</source>
|
||||
<source>&Configure Display Tags</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="432"/>
|
||||
<source>&Autodetect</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>OpenLP.MediaManagerItem</name>
|
||||
<message>
|
||||
<location filename="openlp/core/lib/__init__.py" line="287"/>
|
||||
<location filename="openlp/core/lib/__init__.py" line="286"/>
|
||||
<source>No Items Selected</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -2411,28 +2461,28 @@ You can download the latest version from http://openlp.org/.</source>
|
||||
<translation type="unfinished">&Cambiar Tema de Ítem</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="493"/>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="521"/>
|
||||
<source>File is not a valid service.
|
||||
The content encoding is not UTF-8.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="525"/>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="553"/>
|
||||
<source>File is not a valid service.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="1051"/>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="1079"/>
|
||||
<source>Missing Display Handler</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="1017"/>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="1045"/>
|
||||
<source>Your item cannot be displayed as there is no handler to display it</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="1051"/>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="1079"/>
|
||||
<source>Your item cannot be displayed as the plugin required to display it is missing or inactive</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -2462,7 +2512,7 @@ The content encoding is not UTF-8.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="466"/>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="494"/>
|
||||
<source>OpenLP Service Files (*.osz)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -3943,99 +3993,109 @@ The content encoding is not UTF-8.</source>
|
||||
<translation type="unfinished">Archivo de Salida</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="92"/>
|
||||
<location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="101"/>
|
||||
<source>usage_detail_%s_%s.txt</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="114"/>
|
||||
<location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="123"/>
|
||||
<source>Report Creation</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="114"/>
|
||||
<location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="123"/>
|
||||
<source>Report
|
||||
%s
|
||||
has been successfully created. </source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="92"/>
|
||||
<source>Output Path Not Selected</source>
|
||||
<translation type="unfinished"></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>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>SongsPlugin</name>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="104"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="103"/>
|
||||
<source>&Song</source>
|
||||
<translation type="unfinished">&Canción</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="85"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="84"/>
|
||||
<source>Import songs using the import wizard.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="183"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="182"/>
|
||||
<source><strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="126"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="125"/>
|
||||
<source>&Re-index Songs</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="128"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="127"/>
|
||||
<source>Re-index the songs database to improve searching and ordering.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="141"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="140"/>
|
||||
<source>Reindexing songs...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="238"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="237"/>
|
||||
<source>Add a new Song</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="239"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="238"/>
|
||||
<source>Edit the selected Song</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="240"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="239"/>
|
||||
<source>Delete the selected Song</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="241"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="240"/>
|
||||
<source>Preview the selected Song</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="242"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="241"/>
|
||||
<source>Send the selected Song live</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="243"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="242"/>
|
||||
<source>Add the selected Song to the service</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="227"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="226"/>
|
||||
<source>Song</source>
|
||||
<comment>name singular</comment>
|
||||
<translation type="unfinished">Canción</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="228"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="227"/>
|
||||
<source>Songs</source>
|
||||
<comment>name plural</comment>
|
||||
<translation type="unfinished">Canciones</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="232"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="231"/>
|
||||
<source>Songs</source>
|
||||
<comment>container title</comment>
|
||||
<translation type="unfinished">Canciones</translation>
|
||||
@ -4129,7 +4189,7 @@ The encoding is responsible for the correct character representation.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="106"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="105"/>
|
||||
<source>Exports songs using the export wizard.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -4585,12 +4645,12 @@ The encoding is responsible for the correct character representation.</source>
|
||||
<translation type="unfinished">Letra</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="318"/>
|
||||
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="321"/>
|
||||
<source>Delete Song(s)?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="400"/>
|
||||
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="403"/>
|
||||
<source>CCLI License: </source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -4600,7 +4660,7 @@ The encoding is responsible for the correct character representation.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message numerus="yes">
|
||||
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="318"/>
|
||||
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="321"/>
|
||||
<source>Are you sure you want to delete the %n selected song(s)?</source>
|
||||
<translation type="unfinished">
|
||||
<numerusform></numerusform>
|
||||
|
@ -211,7 +211,7 @@ Do you want to continue anyway?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/bibles/lib/mediaitem.py" line="540"/>
|
||||
<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>
|
||||
</message>
|
||||
@ -840,59 +840,59 @@ vajadusel, seetõttu on vajalik internetiühendus.</translation>
|
||||
<context>
|
||||
<name>ImagePlugin</name>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="45"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="44"/>
|
||||
<source><strong>Image Plugin</strong><br />The image plugin provides displaying of images.<br />One of the distinguishing features of this plugin is the ability to group a number of images together in the service manager, making the displaying of multiple images easier. This plugin can also make use of OpenLP's "timed looping" feature to create a slide show that runs automatically. In addition to this, images from the plugin can be used to override the current theme's background, which renders text-based items like songs with the selected image as a background instead of the background provided by the theme.</source>
|
||||
<translation><strong>Pildiplugin</strong><br />Pildiplugin võimaldab piltide kuvamise.<br />Üks selle plugina One of the distinguishing features of this plugin is the ability to group a number of images together in the service manager, making the displaying of multiple images easier. This plugin can also make use of OpenLP's "timed looping" feature to create a slide show that runs automatically. In addition to this, images from the plugin can be used to override the current theme's background, which renders text-based items like songs with the selected image as a background instead of the background provided by the theme.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="73"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="72"/>
|
||||
<source>Load a new Image</source>
|
||||
<translation>Uue pildi laadimine</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="75"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="74"/>
|
||||
<source>Add a new Image</source>
|
||||
<translation>Uue pildi lisamine</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="76"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="75"/>
|
||||
<source>Edit the selected Image</source>
|
||||
<translation>Valitud pildi muutmine</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="77"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="76"/>
|
||||
<source>Delete the selected Image</source>
|
||||
<translation>Valitud pildi kustutamine</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="78"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="77"/>
|
||||
<source>Preview the selected Image</source>
|
||||
<translation>Valitud pildi eelvaatlemine</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="79"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="78"/>
|
||||
<source>Send the selected Image live</source>
|
||||
<translation>Valitud pildi saatmine ekraanile</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="80"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="79"/>
|
||||
<source>Add the selected Image to the service</source>
|
||||
<translation>Valitud pildi lisamine teenistusele</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="64"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="63"/>
|
||||
<source>Image</source>
|
||||
<comment>name singular</comment>
|
||||
<translation>Pilt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="65"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="64"/>
|
||||
<source>Images</source>
|
||||
<comment>name plural</comment>
|
||||
<translation>Pildid</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="69"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="68"/>
|
||||
<source>Images</source>
|
||||
<comment>container title</comment>
|
||||
<translation>Pildid</translation>
|
||||
@ -948,59 +948,59 @@ Do you want to add the other images anyway?</source>
|
||||
<context>
|
||||
<name>MediaPlugin</name>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="70"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="93"/>
|
||||
<source><strong>Media Plugin</strong><br />The media plugin provides playback of audio and video.</source>
|
||||
<translation><strong>Meediaplugin</strong><br />Meedia plugin võimaldab audio- ja videofailide taasesitamist.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="89"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="112"/>
|
||||
<source>Load a new Media</source>
|
||||
<translation>Uue meedia laadimine</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="91"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="114"/>
|
||||
<source>Add a new Media</source>
|
||||
<translation>Uue meedia lisamine</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="92"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="115"/>
|
||||
<source>Edit the selected Media</source>
|
||||
<translation>Valitud meedia muutmine</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="93"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="116"/>
|
||||
<source>Delete the selected Media</source>
|
||||
<translation>Valitud meedia kustutamine</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="94"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="117"/>
|
||||
<source>Preview the selected Media</source>
|
||||
<translation>Valitud meedia eelvaatlus</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="95"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="118"/>
|
||||
<source>Send the selected Media live</source>
|
||||
<translation>Valitud meedia saatmine ekraanile</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="96"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="119"/>
|
||||
<source>Add the selected Media to the service</source>
|
||||
<translation>Valitud meedia lisamine teenistusse</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="80"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="103"/>
|
||||
<source>Media</source>
|
||||
<comment>name singular</comment>
|
||||
<translation>Meedia</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="81"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="104"/>
|
||||
<source>Media</source>
|
||||
<comment>name plural</comment>
|
||||
<translation>Meedia</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="85"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="108"/>
|
||||
<source>Media</source>
|
||||
<comment>container title</comment>
|
||||
<translation>Meedia</translation>
|
||||
@ -1104,14 +1104,6 @@ OpenLP kohta võid lähemalt uurida aadressil: http://openlp.org/
|
||||
|
||||
OpenLP on kirjutatud vabatahtlike poolt. Kui sulle meeldiks näha rohkem kristlikku tarkvara, siis võid annetada, selleks klõpsa alumisele nupule.</translation>
|
||||
</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,
|
||||
Meinert Jordan, Andreas Preikschat, Christian Richter, Philip
|
||||
Ridout, Maikel Stuivenberg, Martin Thompson, Jon Tibble, CarstennTinggaard, Frode Woldsund</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/aboutdialog.py" line="231"/>
|
||||
<source>This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License.</source>
|
||||
@ -1187,6 +1179,15 @@ Final Credit
|
||||
He has set us free.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</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,
|
||||
Meinert Jordan, Andreas Preikschat, Christian Richter, Philip
|
||||
Ridout, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Carsten
|
||||
Tinggaard, Frode Woldsund</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>OpenLP.AdvancedTab</name>
|
||||
@ -1290,18 +1291,18 @@ Final Credit
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/displaytagdialog.py" line="145"/>
|
||||
<source>Tag id</source>
|
||||
<translation>Sildi ID</translation>
|
||||
<source>Tag Id</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/displaytagdialog.py" line="147"/>
|
||||
<source>Start Html</source>
|
||||
<translation>HTMLi algus</translation>
|
||||
<source>Start HTML</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/displaytagdialog.py" line="149"/>
|
||||
<source>End Html</source>
|
||||
<translation>HTMLi lõpp</translation>
|
||||
<source>End HTML</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -1466,151 +1467,200 @@ Version: %s
|
||||
<context>
|
||||
<name>OpenLP.FirstTimeLanguageForm</name>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimelanguagedialog.py" line="60"/>
|
||||
<source>Initial Set up Language</source>
|
||||
<location filename="openlp/core/ui/firsttimelanguagedialog.py" line="61"/>
|
||||
<source>Select Translation</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimelanguagedialog.py" line="62"/>
|
||||
<source>Select the language you'd like to use in OpenLP.</source>
|
||||
<location filename="openlp/core/ui/firsttimelanguagedialog.py" line="63"/>
|
||||
<source>Choose the translation you'd like to use in OpenLP.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimelanguagedialog.py" line="65"/>
|
||||
<source>Translation:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>OpenLP.FirstTimeWizard</name>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="154"/>
|
||||
<source>Songs</source>
|
||||
<translation type="unfinished">Laulud</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimeform.py" line="63"/>
|
||||
<source>Bibles</source>
|
||||
<translation type="unfinished">Piiblid</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimeform.py" line="64"/>
|
||||
<source>Themes</source>
|
||||
<translation type="unfinished">Kujundused</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimeform.py" line="65"/>
|
||||
<source>Starting Updates</source>
|
||||
<location filename="openlp/core/ui/firsttimeform.py" line="61"/>
|
||||
<source>Downloading %s...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimeform.py" line="67"/>
|
||||
<source>Downloading %s</source>
|
||||
<location filename="openlp/core/ui/firsttimeform.py" line="212"/>
|
||||
<source>Download complete. Click the finish button to start OpenLP.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="140"/>
|
||||
<location filename="openlp/core/ui/firsttimeform.py" line="221"/>
|
||||
<source>Enabling selected plugins...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimeform.py" line="244"/>
|
||||
<source>Overwrite Existing Songs?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimeform.py" line="244"/>
|
||||
<source>Your songs database already exists and your current songs will be permanently lost, are you sure you want to replace it ?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="193"/>
|
||||
<source>First Time Wizard</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="142"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="195"/>
|
||||
<source>Welcome to the First Time Wizard</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="146"/>
|
||||
<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>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="199"/>
|
||||
<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="150"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="203"/>
|
||||
<source>Activate required Plugins</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="152"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="205"/>
|
||||
<source>Select the Plugins you wish to use. </source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="155"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="207"/>
|
||||
<source>Songs</source>
|
||||
<translation type="unfinished">Laulud</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="208"/>
|
||||
<source>Custom Text</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="157"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="210"/>
|
||||
<source>Bible</source>
|
||||
<translation type="unfinished">Piibel</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="158"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="211"/>
|
||||
<source>Images</source>
|
||||
<translation type="unfinished">Pildid</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="160"/>
|
||||
<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="162"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="215"/>
|
||||
<source>Media (Audio and Video)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="164"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="217"/>
|
||||
<source>Allow remote access</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="166"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="219"/>
|
||||
<source>Monitor Song Usage</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="168"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="221"/>
|
||||
<source>Allow Alerts</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="170"/>
|
||||
<source>Download Samples from OpenLP.org</source>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="223"/>
|
||||
<source>No Internet Connection</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="172"/>
|
||||
<source>Select samples to downlaod and install for use.</source>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="225"/>
|
||||
<source>Unable to detect an Internet connection.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="175"/>
|
||||
<source>No Internet connection found so unable to download any default files.</source>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="228"/>
|
||||
<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 type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="178"/>
|
||||
<source>Download Example Files</source>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="236"/>
|
||||
<source>Sample Songs</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="180"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="238"/>
|
||||
<source>Select and download public domain songs.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="240"/>
|
||||
<source>Sample Bibles</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="242"/>
|
||||
<source>Select and download free Bibles.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="244"/>
|
||||
<source>Sample Themes</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="246"/>
|
||||
<source>Select and download sample themes.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="248"/>
|
||||
<source>Default Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="182"/>
|
||||
<source>Set up default values to be used by OpenLP</source>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="250"/>
|
||||
<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="184"/>
|
||||
<source>Default output display</source>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="252"/>
|
||||
<source>Setting Up And Importing</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="186"/>
|
||||
<source>Select the default Theme</source>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="254"/>
|
||||
<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="188"/>
|
||||
<source>Press finish to apply all your changes and start OpenLP</source>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="256"/>
|
||||
<source>Default output display:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="258"/>
|
||||
<source>Select default theme:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="260"/>
|
||||
<source>Starting configuration process...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
@ -1735,12 +1785,12 @@ Version: %s
|
||||
<context>
|
||||
<name>OpenLP.LanguageManager</name>
|
||||
<message>
|
||||
<location filename="openlp/core/utils/languagemanager.py" line="126"/>
|
||||
<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="126"/>
|
||||
<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>
|
||||
@ -2046,17 +2096,12 @@ Version: %s
|
||||
<translation>&Veebileht</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="428"/>
|
||||
<source>&Auto Detect</source>
|
||||
<translation>&Isetuvastus</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="430"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="434"/>
|
||||
<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="434"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="430"/>
|
||||
<source>Set the interface language to %s</source>
|
||||
<translation>Kasutajaliidese keeleks %s määramine</translation>
|
||||
</message>
|
||||
@ -2101,27 +2146,27 @@ Version: %s
|
||||
<translation>Vaate režiimiks ekraanivaate valimine.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="648"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="646"/>
|
||||
<source>OpenLP Version Updated</source>
|
||||
<translation>OpenLP uuendus</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="686"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="684"/>
|
||||
<source>OpenLP Main Display Blanked</source>
|
||||
<translation>OpenLP peakuva on tühi</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="686"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="684"/>
|
||||
<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="895"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="893"/>
|
||||
<source>Default Theme: %s</source>
|
||||
<translation>Vaikimisi kujundus: %s</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="644"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="642"/>
|
||||
<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>
|
||||
@ -2141,12 +2186,12 @@ Sa võid viimase versiooni alla laadida aadressilt http://openlp.org/.</translat
|
||||
<translation>&Kiirklahvide seadistamine...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="817"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="815"/>
|
||||
<source>Close OpenLP</source>
|
||||
<translation>OpenLP sulgemine</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="817"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="815"/>
|
||||
<source>Are you sure you want to close OpenLP?</source>
|
||||
<translation>Kas oled kindel, et tahad OpenLP sulgeda?</translation>
|
||||
</message>
|
||||
@ -2175,11 +2220,16 @@ Sa võid viimase versiooni alla laadida aadressilt http://openlp.org/.</translat
|
||||
<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="432"/>
|
||||
<source>&Autodetect</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>OpenLP.MediaManagerItem</name>
|
||||
<message>
|
||||
<location filename="openlp/core/lib/__init__.py" line="287"/>
|
||||
<location filename="openlp/core/lib/__init__.py" line="286"/>
|
||||
<source>No Items Selected</source>
|
||||
<translation>Ühtegi elementi pole valitud</translation>
|
||||
</message>
|
||||
@ -2457,29 +2507,29 @@ Sa võid viimase versiooni alla laadida aadressilt http://openlp.org/.</translat
|
||||
<translation>&Muuda elemendi kujundust</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="493"/>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="521"/>
|
||||
<source>File is not a valid service.
|
||||
The content encoding is not UTF-8.</source>
|
||||
<translation>Fail ei ole sobiv teenistus.
|
||||
Sisu ei ole UTF-8 kodeeringus.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="525"/>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="553"/>
|
||||
<source>File is not a valid service.</source>
|
||||
<translation>Fail pole sobiv teenistus.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="1051"/>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="1079"/>
|
||||
<source>Missing Display Handler</source>
|
||||
<translation>Puudub kuvakäsitleja</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="1017"/>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="1045"/>
|
||||
<source>Your item cannot be displayed as there is no handler to display it</source>
|
||||
<translation>Seda elementi pole võimalik näidata ekraanil, kuna puudub seda käsitsev programm</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="1051"/>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="1079"/>
|
||||
<source>Your item cannot be displayed as the plugin required to display it is missing or inactive</source>
|
||||
<translation>Seda elementi pole võimalik näidata ekraanil, kuna puudub seda käsitsev programm</translation>
|
||||
</message>
|
||||
@ -2509,7 +2559,7 @@ Sisu ei ole UTF-8 kodeeringus.</translation>
|
||||
<translation>Faili avamine</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="466"/>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="494"/>
|
||||
<source>OpenLP Service Files (*.osz)</source>
|
||||
<translation>OpenLP teenistuse failid (*.osz)</translation>
|
||||
</message>
|
||||
@ -3991,17 +4041,17 @@ Sisu kodeering ei ole UTF-8.</translation>
|
||||
<translation>Väljundfaili asukoht</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="92"/>
|
||||
<location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="101"/>
|
||||
<source>usage_detail_%s_%s.txt</source>
|
||||
<translation>laulukasutuse_andmed_%s_%s.txt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="114"/>
|
||||
<location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="123"/>
|
||||
<source>Report Creation</source>
|
||||
<translation>Raporti koostamine</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="114"/>
|
||||
<location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="123"/>
|
||||
<source>Report
|
||||
%s
|
||||
has been successfully created. </source>
|
||||
@ -4009,83 +4059,93 @@ has been successfully created. </source>
|
||||
%s
|
||||
on edukalt loodud.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="92"/>
|
||||
<source>Output Path Not Selected</source>
|
||||
<translation type="unfinished"></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>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>SongsPlugin</name>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="104"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="103"/>
|
||||
<source>&Song</source>
|
||||
<translation>&Laul</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="85"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="84"/>
|
||||
<source>Import songs using the import wizard.</source>
|
||||
<translation>Laulude importimine importimise nõustajaga.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="183"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="182"/>
|
||||
<source><strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs.</source>
|
||||
<translation><strong>Laulude plugin</strong><br />See plugin võimaldab laulude kuvamise ja haldamise.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="126"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="125"/>
|
||||
<source>&Re-index Songs</source>
|
||||
<translation>&Indekseeri laulud uuesti</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="128"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="127"/>
|
||||
<source>Re-index the songs database to improve searching and ordering.</source>
|
||||
<translation>Laulude andmebaasi kordusindekseerimine, et parendada otsimist ja järjekorda.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="141"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="140"/>
|
||||
<source>Reindexing songs...</source>
|
||||
<translation>Laulude kordusindekseerimine...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="238"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="237"/>
|
||||
<source>Add a new Song</source>
|
||||
<translation>Uue laulu lisamine</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="239"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="238"/>
|
||||
<source>Edit the selected Song</source>
|
||||
<translation>Valitud laulu muutmine</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="240"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="239"/>
|
||||
<source>Delete the selected Song</source>
|
||||
<translation>Valitud laulu kustutamine</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="241"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="240"/>
|
||||
<source>Preview the selected Song</source>
|
||||
<translation>Valitud laulu eelvaatlus</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="242"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="241"/>
|
||||
<source>Send the selected Song live</source>
|
||||
<translation>Valitud laulu saatmine ekraanile</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="243"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="242"/>
|
||||
<source>Add the selected Song to the service</source>
|
||||
<translation>Valitud laulu lisamine teenistusele</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="227"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="226"/>
|
||||
<source>Song</source>
|
||||
<comment>name singular</comment>
|
||||
<translation>Laul</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="228"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="227"/>
|
||||
<source>Songs</source>
|
||||
<comment>name plural</comment>
|
||||
<translation>Laulud</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="232"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="231"/>
|
||||
<source>Songs</source>
|
||||
<comment>container title</comment>
|
||||
<translation>Laulud</translation>
|
||||
@ -4181,7 +4241,7 @@ The encoding is responsible for the correct character representation.</source>
|
||||
Kodeering on vajalik märkide õige esitamise jaoks.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="106"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="105"/>
|
||||
<source>Exports songs using the export wizard.</source>
|
||||
<translation>Eksportimise nõustaja abil laulude eksportimine.</translation>
|
||||
</message>
|
||||
@ -4637,12 +4697,12 @@ Kodeering on vajalik märkide õige esitamise jaoks.</translation>
|
||||
<translation>Laulusõnad</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="318"/>
|
||||
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="321"/>
|
||||
<source>Delete Song(s)?</source>
|
||||
<translation>Kas kustutada laul(ud)?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="400"/>
|
||||
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="403"/>
|
||||
<source>CCLI License: </source>
|
||||
<translation>CCLI litsents: </translation>
|
||||
</message>
|
||||
@ -4652,7 +4712,7 @@ Kodeering on vajalik märkide õige esitamise jaoks.</translation>
|
||||
<translation>Kogu laulust</translation>
|
||||
</message>
|
||||
<message numerus="yes">
|
||||
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="318"/>
|
||||
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="321"/>
|
||||
<source>Are you sure you want to delete the %n selected song(s)?</source>
|
||||
<translation type="unfinished">
|
||||
<numerusform></numerusform>
|
||||
|
@ -210,7 +210,7 @@ Do you want to continue anyway?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/bibles/lib/mediaitem.py" line="540"/>
|
||||
<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>
|
||||
</message>
|
||||
@ -832,60 +832,60 @@ a la demande, une connexion Interner fiable est donc nécessaire.</translation>
|
||||
<context>
|
||||
<name>ImagePlugin</name>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="45"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="44"/>
|
||||
<source><strong>Image Plugin</strong><br />The image plugin provides displaying of images.<br />One of the distinguishing features of this plugin is the ability to group a number of images together in the service manager, making the displaying of multiple images easier. This plugin can also make use of OpenLP's "timed looping" feature to create a slide show that runs automatically. In addition to this, images from the plugin can be used to override the current theme's background, which renders text-based items like songs with the selected image as a background instead of the background provided by the theme.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="64"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="63"/>
|
||||
<source>Image</source>
|
||||
<comment>name singular</comment>
|
||||
<translation>Image</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="65"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="64"/>
|
||||
<source>Images</source>
|
||||
<comment>name plural</comment>
|
||||
<translation>Images</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="69"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="68"/>
|
||||
<source>Images</source>
|
||||
<comment>container title</comment>
|
||||
<translation type="unfinished">Images</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="73"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="72"/>
|
||||
<source>Load a new Image</source>
|
||||
<translation>Charge une nouvelle image</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="75"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="74"/>
|
||||
<source>Add a new Image</source>
|
||||
<translation>Ajoute une nouvelle image</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="76"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="75"/>
|
||||
<source>Edit the selected Image</source>
|
||||
<translation>Édite l'image sélectionnée</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="77"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="76"/>
|
||||
<source>Delete the selected Image</source>
|
||||
<translation>Efface l'image sélectionnée</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="78"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="77"/>
|
||||
<source>Preview the selected Image</source>
|
||||
<translation>Prévisualise l'image sélectionnée</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="79"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="78"/>
|
||||
<source>Send the selected Image live</source>
|
||||
<translation>Envoie l'image sélectionnée en direct</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="80"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="79"/>
|
||||
<source>Add the selected Image to the service</source>
|
||||
<translation>Ajoute l'image sélectionnée au service</translation>
|
||||
</message>
|
||||
@ -941,60 +941,60 @@ Voulez-vous ajouter de toute façon d'autres images ?</translation>
|
||||
<context>
|
||||
<name>MediaPlugin</name>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="70"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="93"/>
|
||||
<source><strong>Media Plugin</strong><br />The media plugin provides playback of audio and video.</source>
|
||||
<translation><strong>Module média</strong><br />Le module média permet une lecture de contenu audio et vidéo.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="80"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="103"/>
|
||||
<source>Media</source>
|
||||
<comment>name singular</comment>
|
||||
<translation>Médias</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="81"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="104"/>
|
||||
<source>Media</source>
|
||||
<comment>name plural</comment>
|
||||
<translation type="unfinished">Médias</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="85"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="108"/>
|
||||
<source>Media</source>
|
||||
<comment>container title</comment>
|
||||
<translation type="unfinished">Médias</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="89"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="112"/>
|
||||
<source>Load a new Media</source>
|
||||
<translation>Charge un nouveau média</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="91"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="114"/>
|
||||
<source>Add a new Media</source>
|
||||
<translation>Ajoute un nouveau média</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="92"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="115"/>
|
||||
<source>Edit the selected Media</source>
|
||||
<translation>Édite le média sélectionné</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="93"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="116"/>
|
||||
<source>Delete the selected Media</source>
|
||||
<translation>Efface le média sélectionné</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="94"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="117"/>
|
||||
<source>Preview the selected Media</source>
|
||||
<translation>Prévisualise le média sélectionné</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="95"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="118"/>
|
||||
<source>Send the selected Media live</source>
|
||||
<translation>Envoie le média en direct</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="96"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="119"/>
|
||||
<source>Add the selected Media to the service</source>
|
||||
<translation type="unfinished">Ajouter le média sélectionné au service</translation>
|
||||
</message>
|
||||
@ -1091,14 +1091,6 @@ OpenLP is written and maintained by volunteers. If you would like to see more fr
|
||||
<source> build %s</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</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,
|
||||
Meinert Jordan, Andreas Preikschat, Christian Richter, Philip
|
||||
Ridout, Maikel Stuivenberg, Martin Thompson, Jon Tibble, CarstennTinggaard, Frode Woldsund</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/aboutdialog.py" line="231"/>
|
||||
<source>This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License.</source>
|
||||
@ -1174,6 +1166,15 @@ Final Credit
|
||||
He has set us free.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</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,
|
||||
Meinert Jordan, Andreas Preikschat, Christian Richter, Philip
|
||||
Ridout, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Carsten
|
||||
Tinggaard, Frode Woldsund</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>OpenLP.AdvancedTab</name>
|
||||
@ -1277,17 +1278,17 @@ Final Credit
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/displaytagdialog.py" line="145"/>
|
||||
<source>Tag id</source>
|
||||
<source>Tag Id</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/displaytagdialog.py" line="147"/>
|
||||
<source>Start Html</source>
|
||||
<source>Start HTML</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/displaytagdialog.py" line="149"/>
|
||||
<source>End Html</source>
|
||||
<source>End HTML</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
@ -1426,151 +1427,200 @@ Version: %s
|
||||
<context>
|
||||
<name>OpenLP.FirstTimeLanguageForm</name>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimelanguagedialog.py" line="60"/>
|
||||
<source>Initial Set up Language</source>
|
||||
<location filename="openlp/core/ui/firsttimelanguagedialog.py" line="61"/>
|
||||
<source>Select Translation</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimelanguagedialog.py" line="62"/>
|
||||
<source>Select the language you'd like to use in OpenLP.</source>
|
||||
<location filename="openlp/core/ui/firsttimelanguagedialog.py" line="63"/>
|
||||
<source>Choose the translation you'd like to use in OpenLP.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimelanguagedialog.py" line="65"/>
|
||||
<source>Translation:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>OpenLP.FirstTimeWizard</name>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="154"/>
|
||||
<source>Songs</source>
|
||||
<location filename="openlp/core/ui/firsttimeform.py" line="61"/>
|
||||
<source>Downloading %s...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimeform.py" line="63"/>
|
||||
<source>Bibles</source>
|
||||
<translation type="unfinished">Bibles</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimeform.py" line="64"/>
|
||||
<source>Themes</source>
|
||||
<location filename="openlp/core/ui/firsttimeform.py" line="212"/>
|
||||
<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="65"/>
|
||||
<source>Starting Updates</source>
|
||||
<location filename="openlp/core/ui/firsttimeform.py" line="221"/>
|
||||
<source>Enabling selected plugins...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimeform.py" line="67"/>
|
||||
<source>Downloading %s</source>
|
||||
<location filename="openlp/core/ui/firsttimeform.py" line="244"/>
|
||||
<source>Overwrite Existing Songs?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="140"/>
|
||||
<location filename="openlp/core/ui/firsttimeform.py" line="244"/>
|
||||
<source>Your songs database already exists and your current songs will be permanently lost, are you sure you want to replace it ?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="193"/>
|
||||
<source>First Time Wizard</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="142"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="195"/>
|
||||
<source>Welcome to the First Time Wizard</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="146"/>
|
||||
<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>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="199"/>
|
||||
<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="150"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="203"/>
|
||||
<source>Activate required Plugins</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="152"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="205"/>
|
||||
<source>Select the Plugins you wish to use. </source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="155"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="207"/>
|
||||
<source>Songs</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="208"/>
|
||||
<source>Custom Text</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="157"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="210"/>
|
||||
<source>Bible</source>
|
||||
<translation type="unfinished">Bible</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="158"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="211"/>
|
||||
<source>Images</source>
|
||||
<translation type="unfinished">Images</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="160"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="213"/>
|
||||
<source>Presentations</source>
|
||||
<translation type="unfinished">Présentations</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="162"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="215"/>
|
||||
<source>Media (Audio and Video)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="164"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="217"/>
|
||||
<source>Allow remote access</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="166"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="219"/>
|
||||
<source>Monitor Song Usage</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="168"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="221"/>
|
||||
<source>Allow Alerts</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="170"/>
|
||||
<source>Download Samples from OpenLP.org</source>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="223"/>
|
||||
<source>No Internet Connection</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="172"/>
|
||||
<source>Select samples to downlaod and install for use.</source>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="225"/>
|
||||
<source>Unable to detect an Internet connection.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="175"/>
|
||||
<source>No Internet connection found so unable to download any default files.</source>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="228"/>
|
||||
<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 type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="178"/>
|
||||
<source>Download Example Files</source>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="236"/>
|
||||
<source>Sample Songs</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="180"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="238"/>
|
||||
<source>Select and download public domain songs.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="240"/>
|
||||
<source>Sample Bibles</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="242"/>
|
||||
<source>Select and download free Bibles.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="244"/>
|
||||
<source>Sample Themes</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="246"/>
|
||||
<source>Select and download sample themes.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="248"/>
|
||||
<source>Default Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="182"/>
|
||||
<source>Set up default values to be used by OpenLP</source>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="250"/>
|
||||
<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="184"/>
|
||||
<source>Default output display</source>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="252"/>
|
||||
<source>Setting Up And Importing</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="186"/>
|
||||
<source>Select the default Theme</source>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="254"/>
|
||||
<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="188"/>
|
||||
<source>Press finish to apply all your changes and start OpenLP</source>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="256"/>
|
||||
<source>Default output display:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="258"/>
|
||||
<source>Select default theme:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="260"/>
|
||||
<source>Starting configuration process...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
@ -1695,12 +1745,12 @@ Version: %s
|
||||
<context>
|
||||
<name>OpenLP.LanguageManager</name>
|
||||
<message>
|
||||
<location filename="openlp/core/utils/languagemanager.py" line="126"/>
|
||||
<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="126"/>
|
||||
<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>
|
||||
@ -2011,17 +2061,12 @@ Version: %s
|
||||
<translation>Site &Web</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="428"/>
|
||||
<source>&Auto Detect</source>
|
||||
<translation>Détection &automatique</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="430"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="434"/>
|
||||
<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="434"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="430"/>
|
||||
<source>Set the interface language to %s</source>
|
||||
<translation>Défini la langue de l'interface à %s</translation>
|
||||
</message>
|
||||
@ -2066,7 +2111,7 @@ Version: %s
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="644"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="642"/>
|
||||
<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>
|
||||
@ -2075,32 +2120,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="648"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="646"/>
|
||||
<source>OpenLP Version Updated</source>
|
||||
<translation>Version d'OpenLP mis a jours</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="686"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="684"/>
|
||||
<source>OpenLP Main Display Blanked</source>
|
||||
<translation>OpenLP affichage principale noirci</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="686"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="684"/>
|
||||
<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="817"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="815"/>
|
||||
<source>Close OpenLP</source>
|
||||
<translation>Ferme OpenLP</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="817"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="815"/>
|
||||
<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="895"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="893"/>
|
||||
<source>Default Theme: %s</source>
|
||||
<translation>Thème par défaut : %s</translation>
|
||||
</message>
|
||||
@ -2135,11 +2180,16 @@ Vous pouvez télécharger la dernière version depuis http://openlp.org/.</trans
|
||||
<source>&Configure Display Tags</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="432"/>
|
||||
<source>&Autodetect</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>OpenLP.MediaManagerItem</name>
|
||||
<message>
|
||||
<location filename="openlp/core/lib/__init__.py" line="287"/>
|
||||
<location filename="openlp/core/lib/__init__.py" line="286"/>
|
||||
<source>No Items Selected</source>
|
||||
<translation>Pas d'éléments sélectionné</translation>
|
||||
</message>
|
||||
@ -2462,34 +2512,34 @@ Vous pouvez télécharger la dernière version depuis http://openlp.org/.</trans
|
||||
<translation>Ouvre un fichier</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="466"/>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="494"/>
|
||||
<source>OpenLP Service Files (*.osz)</source>
|
||||
<translation>Fichier service OpenLP (*.osz)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="493"/>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="521"/>
|
||||
<source>File is not a valid service.
|
||||
The content encoding is not UTF-8.</source>
|
||||
<translation>Le fichier n'est un service valide.
|
||||
Le contenu n'est pas de l'UTF-8.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="525"/>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="553"/>
|
||||
<source>File is not a valid service.</source>
|
||||
<translation>Le fichier n'est pas un service valide.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="1051"/>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="1079"/>
|
||||
<source>Missing Display Handler</source>
|
||||
<translation>Délégué d'affichage manquent</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="1017"/>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="1045"/>
|
||||
<source>Your item cannot be displayed as there is no handler to display it</source>
|
||||
<translation>Votre élément ne peut pas être affiché il n'y a pas de délégué pour l'afficher</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="1051"/>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="1079"/>
|
||||
<source>Your item cannot be displayed as the plugin required to display it is missing or inactive</source>
|
||||
<translation>Votre élément ne peut pas être affiché le module nécessaire pour l'afficher est manquant ou inactif</translation>
|
||||
</message>
|
||||
@ -3951,22 +4001,32 @@ Le contenu n'est pas de l'UTF-8.</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="92"/>
|
||||
<location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="101"/>
|
||||
<source>usage_detail_%s_%s.txt</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="114"/>
|
||||
<location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="123"/>
|
||||
<source>Report Creation</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="114"/>
|
||||
<location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="123"/>
|
||||
<source>Report
|
||||
%s
|
||||
has been successfully created. </source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="92"/>
|
||||
<source>Output Path Not Selected</source>
|
||||
<translation type="unfinished"></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>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>SongsPlugin</name>
|
||||
@ -4059,85 +4119,85 @@ The encoding is responsible for the correct character representation.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="104"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="103"/>
|
||||
<source>&Song</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="85"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="84"/>
|
||||
<source>Import songs using the import wizard.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="126"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="125"/>
|
||||
<source>&Re-index Songs</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="128"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="127"/>
|
||||
<source>Re-index the songs database to improve searching and ordering.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="141"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="140"/>
|
||||
<source>Reindexing songs...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="183"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="182"/>
|
||||
<source><strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="227"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="226"/>
|
||||
<source>Song</source>
|
||||
<comment>name singular</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="228"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="227"/>
|
||||
<source>Songs</source>
|
||||
<comment>name plural</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="232"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="231"/>
|
||||
<source>Songs</source>
|
||||
<comment>container title</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="238"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="237"/>
|
||||
<source>Add a new Song</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="239"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="238"/>
|
||||
<source>Edit the selected Song</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="240"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="239"/>
|
||||
<source>Delete the selected Song</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="241"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="240"/>
|
||||
<source>Preview the selected Song</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="242"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="241"/>
|
||||
<source>Send the selected Song live</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="243"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="242"/>
|
||||
<source>Add the selected Song to the service</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="106"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="105"/>
|
||||
<source>Exports songs using the export wizard.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -4598,12 +4658,12 @@ The encoding is responsible for the correct character representation.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="318"/>
|
||||
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="321"/>
|
||||
<source>Delete Song(s)?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message numerus="yes">
|
||||
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="318"/>
|
||||
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="321"/>
|
||||
<source>Are you sure you want to delete the %n selected song(s)?</source>
|
||||
<translation type="unfinished">
|
||||
<numerusform></numerusform>
|
||||
@ -4611,7 +4671,7 @@ The encoding is responsible for the correct character representation.</source>
|
||||
</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="400"/>
|
||||
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="403"/>
|
||||
<source>CCLI License: </source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -210,7 +210,7 @@ Do you want to continue anyway?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/bibles/lib/mediaitem.py" line="540"/>
|
||||
<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>
|
||||
</message>
|
||||
@ -830,59 +830,59 @@ demand and thus an internet connection is required.</source>
|
||||
<context>
|
||||
<name>ImagePlugin</name>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="45"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="44"/>
|
||||
<source><strong>Image Plugin</strong><br />The image plugin provides displaying of images.<br />One of the distinguishing features of this plugin is the ability to group a number of images together in the service manager, making the displaying of multiple images easier. This plugin can also make use of OpenLP's "timed looping" feature to create a slide show that runs automatically. In addition to this, images from the plugin can be used to override the current theme's background, which renders text-based items like songs with the selected image as a background instead of the background provided by the theme.</source>
|
||||
<translation><strong>Kép bővítmény</strong><br />A kép a bővítmény mindenféle kép vetítését teszi lehetővé.<br />A bővítmény egyik különös figyelmet érdemlő képessége az, hogy képes a szolgálatkezelőn csoportba foglalni a képeket, így könnyebbé téve sok kép vetítését. A bővítmény képes az OpenLP „időzített körkörös” lejátszásra is, amivel a diákat automatikusan tudjuk léptetni. Továbbá, a bővítményben megadott képekkel felülírhatjuk a téma háttérképét, amellyel a szöveg alapú elemek, mint pl. a dalok, a megadott háttérképpel jelennek meg, a témában beállított háttérkép helyett.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="73"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="72"/>
|
||||
<source>Load a new Image</source>
|
||||
<translation>Új kép betöltése</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="75"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="74"/>
|
||||
<source>Add a new Image</source>
|
||||
<translation>Új kép hozzáadása</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="76"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="75"/>
|
||||
<source>Edit the selected Image</source>
|
||||
<translation>A kijelölt kép szerkesztése</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="77"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="76"/>
|
||||
<source>Delete the selected Image</source>
|
||||
<translation>A kijelölt kép törlése</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="78"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="77"/>
|
||||
<source>Preview the selected Image</source>
|
||||
<translation>A kijelölt kép előnézete</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="79"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="78"/>
|
||||
<source>Send the selected Image live</source>
|
||||
<translation>A kijelölt kép élő adásba küldése</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="80"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="79"/>
|
||||
<source>Add the selected Image to the service</source>
|
||||
<translation>A kijelölt kép hozzáadása a szolgálathoz</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="64"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="63"/>
|
||||
<source>Image</source>
|
||||
<comment>name singular</comment>
|
||||
<translation type="unfinished">Kép</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="65"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="64"/>
|
||||
<source>Images</source>
|
||||
<comment>name plural</comment>
|
||||
<translation type="unfinished">Képek</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="69"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="68"/>
|
||||
<source>Images</source>
|
||||
<comment>container title</comment>
|
||||
<translation type="unfinished">Képek</translation>
|
||||
@ -938,59 +938,59 @@ Do you want to add the other images anyway?</source>
|
||||
<context>
|
||||
<name>MediaPlugin</name>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="70"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="93"/>
|
||||
<source><strong>Media Plugin</strong><br />The media plugin provides playback of audio and video.</source>
|
||||
<translation><strong>Média bővítmény</strong><br />A média bővítmény hangok és videók lejátszását teszi lehetővé.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="89"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="112"/>
|
||||
<source>Load a new Media</source>
|
||||
<translation>Új médiaállomány betöltése</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="91"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="114"/>
|
||||
<source>Add a new Media</source>
|
||||
<translation>Új médiaállomány hozzáadása</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="92"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="115"/>
|
||||
<source>Edit the selected Media</source>
|
||||
<translation>A kijelölt médiaállomány szerkesztése</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="93"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="116"/>
|
||||
<source>Delete the selected Media</source>
|
||||
<translation>A kijelölt médiaállomány törlése</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="94"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="117"/>
|
||||
<source>Preview the selected Media</source>
|
||||
<translation>A kijelölt médiaállomány előnézete</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="95"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="118"/>
|
||||
<source>Send the selected Media live</source>
|
||||
<translation>A kijelölt médiaállomány élő adásba küldése</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="96"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="119"/>
|
||||
<source>Add the selected Media to the service</source>
|
||||
<translation>A kijelölt médiaállomány hozzáadása a szolgálathoz</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="80"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="103"/>
|
||||
<source>Media</source>
|
||||
<comment>name singular</comment>
|
||||
<translation type="unfinished">Média</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="81"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="104"/>
|
||||
<source>Media</source>
|
||||
<comment>name plural</comment>
|
||||
<translation type="unfinished">Média</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="85"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="108"/>
|
||||
<source>Media</source>
|
||||
<comment>container title</comment>
|
||||
<translation type="unfinished">Média</translation>
|
||||
@ -1094,14 +1094,6 @@ Az OpenLP-t önkéntesek készítették és tartják karban. Ha szeretnél több
|
||||
<source> build %s</source>
|
||||
<translation></translation>
|
||||
</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,
|
||||
Meinert Jordan, Andreas Preikschat, Christian Richter, Philip
|
||||
Ridout, Maikel Stuivenberg, Martin Thompson, Jon Tibble, CarstennTinggaard, Frode Woldsund</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/aboutdialog.py" line="231"/>
|
||||
<source>This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License.</source>
|
||||
@ -1177,6 +1169,15 @@ Final Credit
|
||||
He has set us free.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</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,
|
||||
Meinert Jordan, Andreas Preikschat, Christian Richter, Philip
|
||||
Ridout, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Carsten
|
||||
Tinggaard, Frode Woldsund</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>OpenLP.AdvancedTab</name>
|
||||
@ -1280,17 +1281,17 @@ Final Credit
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/displaytagdialog.py" line="145"/>
|
||||
<source>Tag id</source>
|
||||
<source>Tag Id</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/displaytagdialog.py" line="147"/>
|
||||
<source>Start Html</source>
|
||||
<source>Start HTML</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/displaytagdialog.py" line="149"/>
|
||||
<source>End Html</source>
|
||||
<source>End HTML</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
@ -1428,151 +1429,200 @@ Version: %s
|
||||
<context>
|
||||
<name>OpenLP.FirstTimeLanguageForm</name>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimelanguagedialog.py" line="60"/>
|
||||
<source>Initial Set up Language</source>
|
||||
<location filename="openlp/core/ui/firsttimelanguagedialog.py" line="61"/>
|
||||
<source>Select Translation</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimelanguagedialog.py" line="62"/>
|
||||
<source>Select the language you'd like to use in OpenLP.</source>
|
||||
<location filename="openlp/core/ui/firsttimelanguagedialog.py" line="63"/>
|
||||
<source>Choose the translation you'd like to use in OpenLP.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimelanguagedialog.py" line="65"/>
|
||||
<source>Translation:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>OpenLP.FirstTimeWizard</name>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="154"/>
|
||||
<source>Songs</source>
|
||||
<location filename="openlp/core/ui/firsttimeform.py" line="61"/>
|
||||
<source>Downloading %s...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimeform.py" line="63"/>
|
||||
<source>Bibles</source>
|
||||
<location filename="openlp/core/ui/firsttimeform.py" line="212"/>
|
||||
<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="64"/>
|
||||
<source>Themes</source>
|
||||
<location filename="openlp/core/ui/firsttimeform.py" line="221"/>
|
||||
<source>Enabling selected plugins...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimeform.py" line="65"/>
|
||||
<source>Starting Updates</source>
|
||||
<location filename="openlp/core/ui/firsttimeform.py" line="244"/>
|
||||
<source>Overwrite Existing Songs?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimeform.py" line="67"/>
|
||||
<source>Downloading %s</source>
|
||||
<location filename="openlp/core/ui/firsttimeform.py" line="244"/>
|
||||
<source>Your songs database already exists and your current songs will be permanently lost, are you sure you want to replace it ?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="140"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="193"/>
|
||||
<source>First Time Wizard</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="142"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="195"/>
|
||||
<source>Welcome to the First Time Wizard</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="146"/>
|
||||
<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>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="199"/>
|
||||
<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="150"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="203"/>
|
||||
<source>Activate required Plugins</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="152"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="205"/>
|
||||
<source>Select the Plugins you wish to use. </source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="155"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="207"/>
|
||||
<source>Songs</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="208"/>
|
||||
<source>Custom Text</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="157"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="210"/>
|
||||
<source>Bible</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="158"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="211"/>
|
||||
<source>Images</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="160"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="213"/>
|
||||
<source>Presentations</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="162"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="215"/>
|
||||
<source>Media (Audio and Video)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="164"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="217"/>
|
||||
<source>Allow remote access</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="166"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="219"/>
|
||||
<source>Monitor Song Usage</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="168"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="221"/>
|
||||
<source>Allow Alerts</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="170"/>
|
||||
<source>Download Samples from OpenLP.org</source>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="223"/>
|
||||
<source>No Internet Connection</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="172"/>
|
||||
<source>Select samples to downlaod and install for use.</source>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="225"/>
|
||||
<source>Unable to detect an Internet connection.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="175"/>
|
||||
<source>No Internet connection found so unable to download any default files.</source>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="228"/>
|
||||
<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 type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="178"/>
|
||||
<source>Download Example Files</source>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="236"/>
|
||||
<source>Sample Songs</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="180"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="238"/>
|
||||
<source>Select and download public domain songs.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="240"/>
|
||||
<source>Sample Bibles</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="242"/>
|
||||
<source>Select and download free Bibles.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="244"/>
|
||||
<source>Sample Themes</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="246"/>
|
||||
<source>Select and download sample themes.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="248"/>
|
||||
<source>Default Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="182"/>
|
||||
<source>Set up default values to be used by OpenLP</source>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="250"/>
|
||||
<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="184"/>
|
||||
<source>Default output display</source>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="252"/>
|
||||
<source>Setting Up And Importing</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="186"/>
|
||||
<source>Select the default Theme</source>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="254"/>
|
||||
<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="188"/>
|
||||
<source>Press finish to apply all your changes and start OpenLP</source>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="256"/>
|
||||
<source>Default output display:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="258"/>
|
||||
<source>Select default theme:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="260"/>
|
||||
<source>Starting configuration process...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
@ -1697,12 +1747,12 @@ Version: %s
|
||||
<context>
|
||||
<name>OpenLP.LanguageManager</name>
|
||||
<message>
|
||||
<location filename="openlp/core/utils/languagemanager.py" line="126"/>
|
||||
<location filename="openlp/core/utils/languagemanager.py" line="130"/>
|
||||
<source>Language</source>
|
||||
<translation>Nyelv</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/utils/languagemanager.py" line="126"/>
|
||||
<location filename="openlp/core/utils/languagemanager.py" line="130"/>
|
||||
<source>Please restart OpenLP to use your new language setting.</source>
|
||||
<translation>A nyelvi beállítások az OpenLP újraindítása után lépnek érvénybe.</translation>
|
||||
</message>
|
||||
@ -2008,17 +2058,12 @@ Version: %s
|
||||
<translation>&Weboldal</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="428"/>
|
||||
<source>&Auto Detect</source>
|
||||
<translation>&Automatikus felismerés</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="430"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="434"/>
|
||||
<source>Use the system language, if available.</source>
|
||||
<translation>Rendszernyelv használata, ha elérhető.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="434"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="430"/>
|
||||
<source>Set the interface language to %s</source>
|
||||
<translation>A felhasználói felület nyelvének átváltása erre: %s</translation>
|
||||
</message>
|
||||
@ -2063,7 +2108,7 @@ Version: %s
|
||||
<translation>Nézetmód váltása a Élő módra.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="644"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="642"/>
|
||||
<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>
|
||||
@ -2072,22 +2117,22 @@ You can download the latest version from http://openlp.org/.</source>
|
||||
A legfrissebb verzió a http://openlp.org/ oldalról szerezhető be.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="648"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="646"/>
|
||||
<source>OpenLP Version Updated</source>
|
||||
<translation>OpenLP verziófrissítés</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="686"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="684"/>
|
||||
<source>OpenLP Main Display Blanked</source>
|
||||
<translation>Sötét OpenLP fő képernyő</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="686"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="684"/>
|
||||
<source>The Main Display has been blanked out</source>
|
||||
<translation>A fő képernyő el lett sötétítve</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="895"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="893"/>
|
||||
<source>Default Theme: %s</source>
|
||||
<translation>Alapértelmezett téma: %s</translation>
|
||||
</message>
|
||||
@ -2103,12 +2148,12 @@ A legfrissebb verzió a http://openlp.org/ oldalról szerezhető be.</translatio
|
||||
<translation>Magyar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="817"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="815"/>
|
||||
<source>Close OpenLP</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="817"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="815"/>
|
||||
<source>Are you sure you want to close OpenLP?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -2137,11 +2182,16 @@ A legfrissebb verzió a http://openlp.org/ oldalról szerezhető be.</translatio
|
||||
<source>&Configure Display Tags</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="432"/>
|
||||
<source>&Autodetect</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>OpenLP.MediaManagerItem</name>
|
||||
<message>
|
||||
<location filename="openlp/core/lib/__init__.py" line="287"/>
|
||||
<location filename="openlp/core/lib/__init__.py" line="286"/>
|
||||
<source>No Items Selected</source>
|
||||
<translation>Nincs kijelölt elem</translation>
|
||||
</message>
|
||||
@ -2419,29 +2469,29 @@ A legfrissebb verzió a http://openlp.org/ oldalról szerezhető be.</translatio
|
||||
<translation>Elem témájának &módosítása</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="493"/>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="521"/>
|
||||
<source>File is not a valid service.
|
||||
The content encoding is not UTF-8.</source>
|
||||
<translation>A fájl nem érvényes szolgálat.
|
||||
A tartalom kódolása nem UTF-8.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="525"/>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="553"/>
|
||||
<source>File is not a valid service.</source>
|
||||
<translation>A fájl nem érvényes szolgálat.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="1051"/>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="1079"/>
|
||||
<source>Missing Display Handler</source>
|
||||
<translation>Hiányzó képernyő kezelő</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="1017"/>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="1045"/>
|
||||
<source>Your item cannot be displayed as there is no handler to display it</source>
|
||||
<translation>Az elemet nem lehet megjeleníteni, mert nincs kezelő, amely megjelenítené</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="1051"/>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="1079"/>
|
||||
<source>Your item cannot be displayed as the plugin required to display it is missing or inactive</source>
|
||||
<translation>Az elemet nem lehet megjeleníteni, mert a bővítmény, amely kezelné, hiányzik vagy inaktív</translation>
|
||||
</message>
|
||||
@ -2471,7 +2521,7 @@ A tartalom kódolása nem UTF-8.</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="466"/>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="494"/>
|
||||
<source>OpenLP Service Files (*.osz)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -3953,99 +4003,109 @@ A tartalom kódolása nem UTF-8.</translation>
|
||||
<translation>Kimeneti fájl elérési útvonala</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="92"/>
|
||||
<location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="101"/>
|
||||
<source>usage_detail_%s_%s.txt</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="114"/>
|
||||
<location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="123"/>
|
||||
<source>Report Creation</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="114"/>
|
||||
<location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="123"/>
|
||||
<source>Report
|
||||
%s
|
||||
has been successfully created. </source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="92"/>
|
||||
<source>Output Path Not Selected</source>
|
||||
<translation type="unfinished"></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>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>SongsPlugin</name>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="104"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="103"/>
|
||||
<source>&Song</source>
|
||||
<translation>&Dal</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="85"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="84"/>
|
||||
<source>Import songs using the import wizard.</source>
|
||||
<translation>Dalok importálása az importálás tündérrel.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="183"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="182"/>
|
||||
<source><strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs.</source>
|
||||
<translation><strong>Dalok bővítmény</strong><br />A dalok bővítmény dalok megjelenítését és kezelését teszi lehetővé.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="126"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="125"/>
|
||||
<source>&Re-index Songs</source>
|
||||
<translation>Dalok újra&indexelése</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="128"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="127"/>
|
||||
<source>Re-index the songs database to improve searching and ordering.</source>
|
||||
<translation>Dal adatbázis újraindexelése a keresés és a rendezés javításához.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="141"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="140"/>
|
||||
<source>Reindexing songs...</source>
|
||||
<translation>Dalok indexelése folyamatban...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="238"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="237"/>
|
||||
<source>Add a new Song</source>
|
||||
<translation>Új dal hozzáadása</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="239"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="238"/>
|
||||
<source>Edit the selected Song</source>
|
||||
<translation>A kijelölt dal szerkesztése</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="240"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="239"/>
|
||||
<source>Delete the selected Song</source>
|
||||
<translation>A kijelölt dal törlése</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="241"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="240"/>
|
||||
<source>Preview the selected Song</source>
|
||||
<translation>A kijelölt dal előnézete</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="242"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="241"/>
|
||||
<source>Send the selected Song live</source>
|
||||
<translation>A kijelölt dal élő adásba küldése</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="243"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="242"/>
|
||||
<source>Add the selected Song to the service</source>
|
||||
<translation>A kijelölt dal hozzáadása a szolgálathoz</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="227"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="226"/>
|
||||
<source>Song</source>
|
||||
<comment>name singular</comment>
|
||||
<translation type="unfinished">Dal</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="228"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="227"/>
|
||||
<source>Songs</source>
|
||||
<comment>name plural</comment>
|
||||
<translation type="unfinished">Dalok</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="232"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="231"/>
|
||||
<source>Songs</source>
|
||||
<comment>container title</comment>
|
||||
<translation type="unfinished">Dalok</translation>
|
||||
@ -4139,7 +4199,7 @@ The encoding is responsible for the correct character representation.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="106"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="105"/>
|
||||
<source>Exports songs using the export wizard.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -4595,12 +4655,12 @@ The encoding is responsible for the correct character representation.</source>
|
||||
<translation>Dalszöveg</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="318"/>
|
||||
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="321"/>
|
||||
<source>Delete Song(s)?</source>
|
||||
<translation>Törölhető(ek) a dal(ok)?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="400"/>
|
||||
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="403"/>
|
||||
<source>CCLI License: </source>
|
||||
<translation>CCLI licenc:</translation>
|
||||
</message>
|
||||
@ -4610,7 +4670,7 @@ The encoding is responsible for the correct character representation.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message numerus="yes">
|
||||
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="318"/>
|
||||
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="321"/>
|
||||
<source>Are you sure you want to delete the %n selected song(s)?</source>
|
||||
<translation type="unfinished">
|
||||
<numerusform></numerusform>
|
||||
|
@ -211,7 +211,7 @@ Do you want to continue anyway?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/bibles/lib/mediaitem.py" line="540"/>
|
||||
<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>
|
||||
</message>
|
||||
@ -831,59 +831,59 @@ demand and thus an internet connection is required.</source>
|
||||
<context>
|
||||
<name>ImagePlugin</name>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="45"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="44"/>
|
||||
<source><strong>Image Plugin</strong><br />The image plugin provides displaying of images.<br />One of the distinguishing features of this plugin is the ability to group a number of images together in the service manager, making the displaying of multiple images easier. This plugin can also make use of OpenLP's "timed looping" feature to create a slide show that runs automatically. In addition to this, images from the plugin can be used to override the current theme's background, which renders text-based items like songs with the selected image as a background instead of the background provided by the theme.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="73"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="72"/>
|
||||
<source>Load a new Image</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="75"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="74"/>
|
||||
<source>Add a new Image</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="76"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="75"/>
|
||||
<source>Edit the selected Image</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="77"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="76"/>
|
||||
<source>Delete the selected Image</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="78"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="77"/>
|
||||
<source>Preview the selected Image</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="79"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="78"/>
|
||||
<source>Send the selected Image live</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="80"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="79"/>
|
||||
<source>Add the selected Image to the service</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="64"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="63"/>
|
||||
<source>Image</source>
|
||||
<comment>name singular</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="65"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="64"/>
|
||||
<source>Images</source>
|
||||
<comment>name plural</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="69"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="68"/>
|
||||
<source>Images</source>
|
||||
<comment>container title</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
@ -939,59 +939,59 @@ Do you want to add the other images anyway?</source>
|
||||
<context>
|
||||
<name>MediaPlugin</name>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="70"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="93"/>
|
||||
<source><strong>Media Plugin</strong><br />The media plugin provides playback of audio and video.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="89"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="112"/>
|
||||
<source>Load a new Media</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="91"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="114"/>
|
||||
<source>Add a new Media</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="92"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="115"/>
|
||||
<source>Edit the selected Media</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="93"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="116"/>
|
||||
<source>Delete the selected Media</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="94"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="117"/>
|
||||
<source>Preview the selected Media</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="95"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="118"/>
|
||||
<source>Send the selected Media live</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="96"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="119"/>
|
||||
<source>Add the selected Media to the service</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="80"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="103"/>
|
||||
<source>Media</source>
|
||||
<comment>name singular</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="81"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="104"/>
|
||||
<source>Media</source>
|
||||
<comment>name plural</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="85"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="108"/>
|
||||
<source>Media</source>
|
||||
<comment>container title</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
@ -1089,14 +1089,6 @@ OpenLP is written and maintained by volunteers. If you would like to see more fr
|
||||
<source> build %s</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</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,
|
||||
Meinert Jordan, Andreas Preikschat, Christian Richter, Philip
|
||||
Ridout, Maikel Stuivenberg, Martin Thompson, Jon Tibble, CarstennTinggaard, Frode Woldsund</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/aboutdialog.py" line="231"/>
|
||||
<source>This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License.</source>
|
||||
@ -1172,6 +1164,15 @@ Final Credit
|
||||
He has set us free.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</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,
|
||||
Meinert Jordan, Andreas Preikschat, Christian Richter, Philip
|
||||
Ridout, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Carsten
|
||||
Tinggaard, Frode Woldsund</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>OpenLP.AdvancedTab</name>
|
||||
@ -1275,17 +1276,17 @@ Final Credit
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/displaytagdialog.py" line="145"/>
|
||||
<source>Tag id</source>
|
||||
<source>Tag Id</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/displaytagdialog.py" line="147"/>
|
||||
<source>Start Html</source>
|
||||
<source>Start HTML</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/displaytagdialog.py" line="149"/>
|
||||
<source>End Html</source>
|
||||
<source>End HTML</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
@ -1423,151 +1424,200 @@ Version: %s
|
||||
<context>
|
||||
<name>OpenLP.FirstTimeLanguageForm</name>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimelanguagedialog.py" line="60"/>
|
||||
<source>Initial Set up Language</source>
|
||||
<location filename="openlp/core/ui/firsttimelanguagedialog.py" line="61"/>
|
||||
<source>Select Translation</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimelanguagedialog.py" line="62"/>
|
||||
<source>Select the language you'd like to use in OpenLP.</source>
|
||||
<location filename="openlp/core/ui/firsttimelanguagedialog.py" line="63"/>
|
||||
<source>Choose the translation you'd like to use in OpenLP.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimelanguagedialog.py" line="65"/>
|
||||
<source>Translation:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>OpenLP.FirstTimeWizard</name>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="154"/>
|
||||
<source>Songs</source>
|
||||
<location filename="openlp/core/ui/firsttimeform.py" line="61"/>
|
||||
<source>Downloading %s...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimeform.py" line="63"/>
|
||||
<source>Bibles</source>
|
||||
<translation type="unfinished">Alkitab</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimeform.py" line="64"/>
|
||||
<source>Themes</source>
|
||||
<location filename="openlp/core/ui/firsttimeform.py" line="212"/>
|
||||
<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="65"/>
|
||||
<source>Starting Updates</source>
|
||||
<location filename="openlp/core/ui/firsttimeform.py" line="221"/>
|
||||
<source>Enabling selected plugins...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimeform.py" line="67"/>
|
||||
<source>Downloading %s</source>
|
||||
<location filename="openlp/core/ui/firsttimeform.py" line="244"/>
|
||||
<source>Overwrite Existing Songs?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="140"/>
|
||||
<location filename="openlp/core/ui/firsttimeform.py" line="244"/>
|
||||
<source>Your songs database already exists and your current songs will be permanently lost, are you sure you want to replace it ?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="193"/>
|
||||
<source>First Time Wizard</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="142"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="195"/>
|
||||
<source>Welcome to the First Time Wizard</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="146"/>
|
||||
<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>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="199"/>
|
||||
<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="150"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="203"/>
|
||||
<source>Activate required Plugins</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="152"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="205"/>
|
||||
<source>Select the Plugins you wish to use. </source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="155"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="207"/>
|
||||
<source>Songs</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="208"/>
|
||||
<source>Custom Text</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="157"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="210"/>
|
||||
<source>Bible</source>
|
||||
<translation type="unfinished">Alkitab</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="158"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="211"/>
|
||||
<source>Images</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="160"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="213"/>
|
||||
<source>Presentations</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="162"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="215"/>
|
||||
<source>Media (Audio and Video)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="164"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="217"/>
|
||||
<source>Allow remote access</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="166"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="219"/>
|
||||
<source>Monitor Song Usage</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="168"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="221"/>
|
||||
<source>Allow Alerts</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="170"/>
|
||||
<source>Download Samples from OpenLP.org</source>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="223"/>
|
||||
<source>No Internet Connection</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="172"/>
|
||||
<source>Select samples to downlaod and install for use.</source>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="225"/>
|
||||
<source>Unable to detect an Internet connection.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="175"/>
|
||||
<source>No Internet connection found so unable to download any default files.</source>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="228"/>
|
||||
<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 type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="178"/>
|
||||
<source>Download Example Files</source>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="236"/>
|
||||
<source>Sample Songs</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="180"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="238"/>
|
||||
<source>Select and download public domain songs.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="240"/>
|
||||
<source>Sample Bibles</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="242"/>
|
||||
<source>Select and download free Bibles.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="244"/>
|
||||
<source>Sample Themes</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="246"/>
|
||||
<source>Select and download sample themes.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="248"/>
|
||||
<source>Default Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="182"/>
|
||||
<source>Set up default values to be used by OpenLP</source>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="250"/>
|
||||
<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="184"/>
|
||||
<source>Default output display</source>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="252"/>
|
||||
<source>Setting Up And Importing</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="186"/>
|
||||
<source>Select the default Theme</source>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="254"/>
|
||||
<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="188"/>
|
||||
<source>Press finish to apply all your changes and start OpenLP</source>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="256"/>
|
||||
<source>Default output display:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="258"/>
|
||||
<source>Select default theme:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="260"/>
|
||||
<source>Starting configuration process...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
@ -1692,12 +1742,12 @@ Version: %s
|
||||
<context>
|
||||
<name>OpenLP.LanguageManager</name>
|
||||
<message>
|
||||
<location filename="openlp/core/utils/languagemanager.py" line="126"/>
|
||||
<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="126"/>
|
||||
<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>
|
||||
@ -2003,17 +2053,12 @@ Version: %s
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="428"/>
|
||||
<source>&Auto Detect</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="430"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="434"/>
|
||||
<source>Use the system language, if available.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="434"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="430"/>
|
||||
<source>Set the interface language to %s</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -2058,29 +2103,29 @@ Version: %s
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="644"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="642"/>
|
||||
<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="648"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="646"/>
|
||||
<source>OpenLP Version Updated</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="686"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="684"/>
|
||||
<source>OpenLP Main Display Blanked</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="686"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="684"/>
|
||||
<source>The Main Display has been blanked out</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="895"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="893"/>
|
||||
<source>Default Theme: %s</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -2096,12 +2141,12 @@ 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="817"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="815"/>
|
||||
<source>Close OpenLP</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="817"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="815"/>
|
||||
<source>Are you sure you want to close OpenLP?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -2130,11 +2175,16 @@ You can download the latest version from http://openlp.org/.</source>
|
||||
<source>&Configure Display Tags</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="432"/>
|
||||
<source>&Autodetect</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>OpenLP.MediaManagerItem</name>
|
||||
<message>
|
||||
<location filename="openlp/core/lib/__init__.py" line="287"/>
|
||||
<location filename="openlp/core/lib/__init__.py" line="286"/>
|
||||
<source>No Items Selected</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -2412,33 +2462,33 @@ You can download the latest version from http://openlp.org/.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="466"/>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="494"/>
|
||||
<source>OpenLP Service Files (*.osz)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="493"/>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="521"/>
|
||||
<source>File is not a valid service.
|
||||
The content encoding is not UTF-8.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="525"/>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="553"/>
|
||||
<source>File is not a valid service.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="1051"/>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="1079"/>
|
||||
<source>Missing Display Handler</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="1017"/>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="1045"/>
|
||||
<source>Your item cannot be displayed as there is no handler to display it</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="1051"/>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="1079"/>
|
||||
<source>Your item cannot be displayed as the plugin required to display it is missing or inactive</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -3944,82 +3994,92 @@ The content encoding is not UTF-8.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="92"/>
|
||||
<location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="101"/>
|
||||
<source>usage_detail_%s_%s.txt</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="114"/>
|
||||
<location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="123"/>
|
||||
<source>Report Creation</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="114"/>
|
||||
<location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="123"/>
|
||||
<source>Report
|
||||
%s
|
||||
has been successfully created. </source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="92"/>
|
||||
<source>Output Path Not Selected</source>
|
||||
<translation type="unfinished"></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>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>SongsPlugin</name>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="104"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="103"/>
|
||||
<source>&Song</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="85"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="84"/>
|
||||
<source>Import songs using the import wizard.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="183"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="182"/>
|
||||
<source><strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="126"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="125"/>
|
||||
<source>&Re-index Songs</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="128"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="127"/>
|
||||
<source>Re-index the songs database to improve searching and ordering.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="141"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="140"/>
|
||||
<source>Reindexing songs...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="238"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="237"/>
|
||||
<source>Add a new Song</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="239"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="238"/>
|
||||
<source>Edit the selected Song</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="240"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="239"/>
|
||||
<source>Delete the selected Song</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="241"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="240"/>
|
||||
<source>Preview the selected Song</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="242"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="241"/>
|
||||
<source>Send the selected Song live</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="243"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="242"/>
|
||||
<source>Add the selected Song to the service</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -4112,25 +4172,25 @@ The encoding is responsible for the correct character representation.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="227"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="226"/>
|
||||
<source>Song</source>
|
||||
<comment>name singular</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="228"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="227"/>
|
||||
<source>Songs</source>
|
||||
<comment>name plural</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="232"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="231"/>
|
||||
<source>Songs</source>
|
||||
<comment>container title</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="106"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="105"/>
|
||||
<source>Exports songs using the export wizard.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -4586,12 +4646,12 @@ The encoding is responsible for the correct character representation.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="318"/>
|
||||
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="321"/>
|
||||
<source>Delete Song(s)?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="400"/>
|
||||
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="403"/>
|
||||
<source>CCLI License: </source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -4601,7 +4661,7 @@ The encoding is responsible for the correct character representation.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message numerus="yes">
|
||||
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="318"/>
|
||||
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="321"/>
|
||||
<source>Are you sure you want to delete the %n selected song(s)?</source>
|
||||
<translation type="unfinished">
|
||||
<numerusform></numerusform>
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -210,7 +210,7 @@ Do you want to continue anyway?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/bibles/lib/mediaitem.py" line="540"/>
|
||||
<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>
|
||||
</message>
|
||||
@ -830,59 +830,59 @@ demand and thus an internet connection is required.</source>
|
||||
<context>
|
||||
<name>ImagePlugin</name>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="45"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="44"/>
|
||||
<source><strong>Image Plugin</strong><br />The image plugin provides displaying of images.<br />One of the distinguishing features of this plugin is the ability to group a number of images together in the service manager, making the displaying of multiple images easier. This plugin can also make use of OpenLP's "timed looping" feature to create a slide show that runs automatically. In addition to this, images from the plugin can be used to override the current theme's background, which renders text-based items like songs with the selected image as a background instead of the background provided by the theme.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="73"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="72"/>
|
||||
<source>Load a new Image</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="75"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="74"/>
|
||||
<source>Add a new Image</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="76"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="75"/>
|
||||
<source>Edit the selected Image</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="77"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="76"/>
|
||||
<source>Delete the selected Image</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="78"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="77"/>
|
||||
<source>Preview the selected Image</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="79"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="78"/>
|
||||
<source>Send the selected Image live</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="80"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="79"/>
|
||||
<source>Add the selected Image to the service</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="64"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="63"/>
|
||||
<source>Image</source>
|
||||
<comment>name singular</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="65"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="64"/>
|
||||
<source>Images</source>
|
||||
<comment>name plural</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="69"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="68"/>
|
||||
<source>Images</source>
|
||||
<comment>container title</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
@ -938,59 +938,59 @@ Do you want to add the other images anyway?</source>
|
||||
<context>
|
||||
<name>MediaPlugin</name>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="70"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="93"/>
|
||||
<source><strong>Media Plugin</strong><br />The media plugin provides playback of audio and video.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="89"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="112"/>
|
||||
<source>Load a new Media</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="91"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="114"/>
|
||||
<source>Add a new Media</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="92"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="115"/>
|
||||
<source>Edit the selected Media</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="93"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="116"/>
|
||||
<source>Delete the selected Media</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="94"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="117"/>
|
||||
<source>Preview the selected Media</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="95"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="118"/>
|
||||
<source>Send the selected Media live</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="96"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="119"/>
|
||||
<source>Add the selected Media to the service</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="80"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="103"/>
|
||||
<source>Media</source>
|
||||
<comment>name singular</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="81"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="104"/>
|
||||
<source>Media</source>
|
||||
<comment>name plural</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="85"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="108"/>
|
||||
<source>Media</source>
|
||||
<comment>container title</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
@ -1088,14 +1088,6 @@ OpenLP is written and maintained by volunteers. If you would like to see more fr
|
||||
<source> build %s</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</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,
|
||||
Meinert Jordan, Andreas Preikschat, Christian Richter, Philip
|
||||
Ridout, Maikel Stuivenberg, Martin Thompson, Jon Tibble, CarstennTinggaard, Frode Woldsund</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/aboutdialog.py" line="231"/>
|
||||
<source>This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License.</source>
|
||||
@ -1171,6 +1163,15 @@ Final Credit
|
||||
He has set us free.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</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,
|
||||
Meinert Jordan, Andreas Preikschat, Christian Richter, Philip
|
||||
Ridout, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Carsten
|
||||
Tinggaard, Frode Woldsund</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>OpenLP.AdvancedTab</name>
|
||||
@ -1274,17 +1275,17 @@ Final Credit
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/displaytagdialog.py" line="145"/>
|
||||
<source>Tag id</source>
|
||||
<source>Tag Id</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/displaytagdialog.py" line="147"/>
|
||||
<source>Start Html</source>
|
||||
<source>Start HTML</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/displaytagdialog.py" line="149"/>
|
||||
<source>End Html</source>
|
||||
<source>End HTML</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
@ -1422,151 +1423,200 @@ Version: %s
|
||||
<context>
|
||||
<name>OpenLP.FirstTimeLanguageForm</name>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimelanguagedialog.py" line="60"/>
|
||||
<source>Initial Set up Language</source>
|
||||
<location filename="openlp/core/ui/firsttimelanguagedialog.py" line="61"/>
|
||||
<source>Select Translation</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimelanguagedialog.py" line="62"/>
|
||||
<source>Select the language you'd like to use in OpenLP.</source>
|
||||
<location filename="openlp/core/ui/firsttimelanguagedialog.py" line="63"/>
|
||||
<source>Choose the translation you'd like to use in OpenLP.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimelanguagedialog.py" line="65"/>
|
||||
<source>Translation:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>OpenLP.FirstTimeWizard</name>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="154"/>
|
||||
<source>Songs</source>
|
||||
<location filename="openlp/core/ui/firsttimeform.py" line="61"/>
|
||||
<source>Downloading %s...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimeform.py" line="63"/>
|
||||
<source>Bibles</source>
|
||||
<location filename="openlp/core/ui/firsttimeform.py" line="212"/>
|
||||
<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="64"/>
|
||||
<source>Themes</source>
|
||||
<location filename="openlp/core/ui/firsttimeform.py" line="221"/>
|
||||
<source>Enabling selected plugins...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimeform.py" line="65"/>
|
||||
<source>Starting Updates</source>
|
||||
<location filename="openlp/core/ui/firsttimeform.py" line="244"/>
|
||||
<source>Overwrite Existing Songs?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimeform.py" line="67"/>
|
||||
<source>Downloading %s</source>
|
||||
<location filename="openlp/core/ui/firsttimeform.py" line="244"/>
|
||||
<source>Your songs database already exists and your current songs will be permanently lost, are you sure you want to replace it ?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="140"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="193"/>
|
||||
<source>First Time Wizard</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="142"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="195"/>
|
||||
<source>Welcome to the First Time Wizard</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="146"/>
|
||||
<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>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="199"/>
|
||||
<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="150"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="203"/>
|
||||
<source>Activate required Plugins</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="152"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="205"/>
|
||||
<source>Select the Plugins you wish to use. </source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="155"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="207"/>
|
||||
<source>Songs</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="208"/>
|
||||
<source>Custom Text</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="157"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="210"/>
|
||||
<source>Bible</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="158"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="211"/>
|
||||
<source>Images</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="160"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="213"/>
|
||||
<source>Presentations</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="162"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="215"/>
|
||||
<source>Media (Audio and Video)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="164"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="217"/>
|
||||
<source>Allow remote access</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="166"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="219"/>
|
||||
<source>Monitor Song Usage</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="168"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="221"/>
|
||||
<source>Allow Alerts</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="170"/>
|
||||
<source>Download Samples from OpenLP.org</source>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="223"/>
|
||||
<source>No Internet Connection</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="172"/>
|
||||
<source>Select samples to downlaod and install for use.</source>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="225"/>
|
||||
<source>Unable to detect an Internet connection.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="175"/>
|
||||
<source>No Internet connection found so unable to download any default files.</source>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="228"/>
|
||||
<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 type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="178"/>
|
||||
<source>Download Example Files</source>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="236"/>
|
||||
<source>Sample Songs</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="180"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="238"/>
|
||||
<source>Select and download public domain songs.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="240"/>
|
||||
<source>Sample Bibles</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="242"/>
|
||||
<source>Select and download free Bibles.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="244"/>
|
||||
<source>Sample Themes</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="246"/>
|
||||
<source>Select and download sample themes.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="248"/>
|
||||
<source>Default Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="182"/>
|
||||
<source>Set up default values to be used by OpenLP</source>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="250"/>
|
||||
<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="184"/>
|
||||
<source>Default output display</source>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="252"/>
|
||||
<source>Setting Up And Importing</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="186"/>
|
||||
<source>Select the default Theme</source>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="254"/>
|
||||
<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="188"/>
|
||||
<source>Press finish to apply all your changes and start OpenLP</source>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="256"/>
|
||||
<source>Default output display:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="258"/>
|
||||
<source>Select default theme:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="260"/>
|
||||
<source>Starting configuration process...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
@ -1691,12 +1741,12 @@ Version: %s
|
||||
<context>
|
||||
<name>OpenLP.LanguageManager</name>
|
||||
<message>
|
||||
<location filename="openlp/core/utils/languagemanager.py" line="126"/>
|
||||
<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="126"/>
|
||||
<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>
|
||||
@ -2002,17 +2052,12 @@ Version: %s
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="428"/>
|
||||
<source>&Auto Detect</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="430"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="434"/>
|
||||
<source>Use the system language, if available.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="434"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="430"/>
|
||||
<source>Set the interface language to %s</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -2057,29 +2102,29 @@ Version: %s
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="644"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="642"/>
|
||||
<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="648"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="646"/>
|
||||
<source>OpenLP Version Updated</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="686"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="684"/>
|
||||
<source>OpenLP Main Display Blanked</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="686"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="684"/>
|
||||
<source>The Main Display has been blanked out</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="895"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="893"/>
|
||||
<source>Default Theme: %s</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -2095,12 +2140,12 @@ 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="817"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="815"/>
|
||||
<source>Close OpenLP</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="817"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="815"/>
|
||||
<source>Are you sure you want to close OpenLP?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -2129,11 +2174,16 @@ You can download the latest version from http://openlp.org/.</source>
|
||||
<source>&Configure Display Tags</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="432"/>
|
||||
<source>&Autodetect</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>OpenLP.MediaManagerItem</name>
|
||||
<message>
|
||||
<location filename="openlp/core/lib/__init__.py" line="287"/>
|
||||
<location filename="openlp/core/lib/__init__.py" line="286"/>
|
||||
<source>No Items Selected</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -2411,28 +2461,28 @@ You can download the latest version from http://openlp.org/.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="493"/>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="521"/>
|
||||
<source>File is not a valid service.
|
||||
The content encoding is not UTF-8.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="525"/>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="553"/>
|
||||
<source>File is not a valid service.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="1051"/>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="1079"/>
|
||||
<source>Missing Display Handler</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="1017"/>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="1045"/>
|
||||
<source>Your item cannot be displayed as there is no handler to display it</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="1051"/>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="1079"/>
|
||||
<source>Your item cannot be displayed as the plugin required to display it is missing or inactive</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -2462,7 +2512,7 @@ The content encoding is not UTF-8.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="466"/>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="494"/>
|
||||
<source>OpenLP Service Files (*.osz)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -3943,99 +3993,109 @@ The content encoding is not UTF-8.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="92"/>
|
||||
<location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="101"/>
|
||||
<source>usage_detail_%s_%s.txt</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="114"/>
|
||||
<location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="123"/>
|
||||
<source>Report Creation</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="114"/>
|
||||
<location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="123"/>
|
||||
<source>Report
|
||||
%s
|
||||
has been successfully created. </source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="92"/>
|
||||
<source>Output Path Not Selected</source>
|
||||
<translation type="unfinished"></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>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>SongsPlugin</name>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="104"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="103"/>
|
||||
<source>&Song</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="85"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="84"/>
|
||||
<source>Import songs using the import wizard.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="183"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="182"/>
|
||||
<source><strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="126"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="125"/>
|
||||
<source>&Re-index Songs</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="128"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="127"/>
|
||||
<source>Re-index the songs database to improve searching and ordering.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="141"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="140"/>
|
||||
<source>Reindexing songs...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="238"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="237"/>
|
||||
<source>Add a new Song</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="239"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="238"/>
|
||||
<source>Edit the selected Song</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="240"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="239"/>
|
||||
<source>Delete the selected Song</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="241"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="240"/>
|
||||
<source>Preview the selected Song</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="242"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="241"/>
|
||||
<source>Send the selected Song live</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="243"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="242"/>
|
||||
<source>Add the selected Song to the service</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="227"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="226"/>
|
||||
<source>Song</source>
|
||||
<comment>name singular</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="228"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="227"/>
|
||||
<source>Songs</source>
|
||||
<comment>name plural</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="232"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="231"/>
|
||||
<source>Songs</source>
|
||||
<comment>container title</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
@ -4129,7 +4189,7 @@ The encoding is responsible for the correct character representation.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="106"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="105"/>
|
||||
<source>Exports songs using the export wizard.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -4585,12 +4645,12 @@ The encoding is responsible for the correct character representation.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="318"/>
|
||||
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="321"/>
|
||||
<source>Delete Song(s)?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="400"/>
|
||||
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="403"/>
|
||||
<source>CCLI License: </source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -4600,7 +4660,7 @@ The encoding is responsible for the correct character representation.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message numerus="yes">
|
||||
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="318"/>
|
||||
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="321"/>
|
||||
<source>Are you sure you want to delete the %n selected song(s)?</source>
|
||||
<translation type="unfinished">
|
||||
<numerusform></numerusform>
|
||||
|
@ -210,7 +210,7 @@ Do you want to continue anyway?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/bibles/lib/mediaitem.py" line="540"/>
|
||||
<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>
|
||||
</message>
|
||||
@ -829,59 +829,59 @@ demand and thus an internet connection is required.</source>
|
||||
<context>
|
||||
<name>ImagePlugin</name>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="45"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="44"/>
|
||||
<source><strong>Image Plugin</strong><br />The image plugin provides displaying of images.<br />One of the distinguishing features of this plugin is the ability to group a number of images together in the service manager, making the displaying of multiple images easier. This plugin can also make use of OpenLP's "timed looping" feature to create a slide show that runs automatically. In addition to this, images from the plugin can be used to override the current theme's background, which renders text-based items like songs with the selected image as a background instead of the background provided by the theme.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="73"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="72"/>
|
||||
<source>Load a new Image</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="75"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="74"/>
|
||||
<source>Add a new Image</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="76"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="75"/>
|
||||
<source>Edit the selected Image</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="77"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="76"/>
|
||||
<source>Delete the selected Image</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="78"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="77"/>
|
||||
<source>Preview the selected Image</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="79"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="78"/>
|
||||
<source>Send the selected Image live</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="80"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="79"/>
|
||||
<source>Add the selected Image to the service</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="64"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="63"/>
|
||||
<source>Image</source>
|
||||
<comment>name singular</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="65"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="64"/>
|
||||
<source>Images</source>
|
||||
<comment>name plural</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="69"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="68"/>
|
||||
<source>Images</source>
|
||||
<comment>container title</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
@ -937,59 +937,59 @@ Do you want to add the other images anyway?</source>
|
||||
<context>
|
||||
<name>MediaPlugin</name>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="70"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="93"/>
|
||||
<source><strong>Media Plugin</strong><br />The media plugin provides playback of audio and video.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="89"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="112"/>
|
||||
<source>Load a new Media</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="91"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="114"/>
|
||||
<source>Add a new Media</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="92"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="115"/>
|
||||
<source>Edit the selected Media</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="93"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="116"/>
|
||||
<source>Delete the selected Media</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="94"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="117"/>
|
||||
<source>Preview the selected Media</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="95"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="118"/>
|
||||
<source>Send the selected Media live</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="96"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="119"/>
|
||||
<source>Add the selected Media to the service</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="80"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="103"/>
|
||||
<source>Media</source>
|
||||
<comment>name singular</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="81"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="104"/>
|
||||
<source>Media</source>
|
||||
<comment>name plural</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="85"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="108"/>
|
||||
<source>Media</source>
|
||||
<comment>container title</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
@ -1087,14 +1087,6 @@ OpenLP is written and maintained by volunteers. If you would like to see more fr
|
||||
<source> build %s</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</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,
|
||||
Meinert Jordan, Andreas Preikschat, Christian Richter, Philip
|
||||
Ridout, Maikel Stuivenberg, Martin Thompson, Jon Tibble, CarstennTinggaard, Frode Woldsund</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/aboutdialog.py" line="231"/>
|
||||
<source>This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License.</source>
|
||||
@ -1170,6 +1162,15 @@ Final Credit
|
||||
He has set us free.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</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,
|
||||
Meinert Jordan, Andreas Preikschat, Christian Richter, Philip
|
||||
Ridout, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Carsten
|
||||
Tinggaard, Frode Woldsund</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>OpenLP.AdvancedTab</name>
|
||||
@ -1273,17 +1274,17 @@ Final Credit
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/displaytagdialog.py" line="145"/>
|
||||
<source>Tag id</source>
|
||||
<source>Tag Id</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/displaytagdialog.py" line="147"/>
|
||||
<source>Start Html</source>
|
||||
<source>Start HTML</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/displaytagdialog.py" line="149"/>
|
||||
<source>End Html</source>
|
||||
<source>End HTML</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
@ -1421,151 +1422,200 @@ Version: %s
|
||||
<context>
|
||||
<name>OpenLP.FirstTimeLanguageForm</name>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimelanguagedialog.py" line="60"/>
|
||||
<source>Initial Set up Language</source>
|
||||
<location filename="openlp/core/ui/firsttimelanguagedialog.py" line="61"/>
|
||||
<source>Select Translation</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimelanguagedialog.py" line="62"/>
|
||||
<source>Select the language you'd like to use in OpenLP.</source>
|
||||
<location filename="openlp/core/ui/firsttimelanguagedialog.py" line="63"/>
|
||||
<source>Choose the translation you'd like to use in OpenLP.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimelanguagedialog.py" line="65"/>
|
||||
<source>Translation:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>OpenLP.FirstTimeWizard</name>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="154"/>
|
||||
<source>Songs</source>
|
||||
<location filename="openlp/core/ui/firsttimeform.py" line="61"/>
|
||||
<source>Downloading %s...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimeform.py" line="63"/>
|
||||
<source>Bibles</source>
|
||||
<location filename="openlp/core/ui/firsttimeform.py" line="212"/>
|
||||
<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="64"/>
|
||||
<source>Themes</source>
|
||||
<location filename="openlp/core/ui/firsttimeform.py" line="221"/>
|
||||
<source>Enabling selected plugins...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimeform.py" line="65"/>
|
||||
<source>Starting Updates</source>
|
||||
<location filename="openlp/core/ui/firsttimeform.py" line="244"/>
|
||||
<source>Overwrite Existing Songs?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimeform.py" line="67"/>
|
||||
<source>Downloading %s</source>
|
||||
<location filename="openlp/core/ui/firsttimeform.py" line="244"/>
|
||||
<source>Your songs database already exists and your current songs will be permanently lost, are you sure you want to replace it ?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="140"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="193"/>
|
||||
<source>First Time Wizard</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="142"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="195"/>
|
||||
<source>Welcome to the First Time Wizard</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="146"/>
|
||||
<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>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="199"/>
|
||||
<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="150"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="203"/>
|
||||
<source>Activate required Plugins</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="152"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="205"/>
|
||||
<source>Select the Plugins you wish to use. </source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="155"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="207"/>
|
||||
<source>Songs</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="208"/>
|
||||
<source>Custom Text</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="157"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="210"/>
|
||||
<source>Bible</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="158"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="211"/>
|
||||
<source>Images</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="160"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="213"/>
|
||||
<source>Presentations</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="162"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="215"/>
|
||||
<source>Media (Audio and Video)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="164"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="217"/>
|
||||
<source>Allow remote access</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="166"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="219"/>
|
||||
<source>Monitor Song Usage</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="168"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="221"/>
|
||||
<source>Allow Alerts</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="170"/>
|
||||
<source>Download Samples from OpenLP.org</source>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="223"/>
|
||||
<source>No Internet Connection</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="172"/>
|
||||
<source>Select samples to downlaod and install for use.</source>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="225"/>
|
||||
<source>Unable to detect an Internet connection.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="175"/>
|
||||
<source>No Internet connection found so unable to download any default files.</source>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="228"/>
|
||||
<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 type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="178"/>
|
||||
<source>Download Example Files</source>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="236"/>
|
||||
<source>Sample Songs</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="180"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="238"/>
|
||||
<source>Select and download public domain songs.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="240"/>
|
||||
<source>Sample Bibles</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="242"/>
|
||||
<source>Select and download free Bibles.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="244"/>
|
||||
<source>Sample Themes</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="246"/>
|
||||
<source>Select and download sample themes.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="248"/>
|
||||
<source>Default Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="182"/>
|
||||
<source>Set up default values to be used by OpenLP</source>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="250"/>
|
||||
<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="184"/>
|
||||
<source>Default output display</source>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="252"/>
|
||||
<source>Setting Up And Importing</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="186"/>
|
||||
<source>Select the default Theme</source>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="254"/>
|
||||
<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="188"/>
|
||||
<source>Press finish to apply all your changes and start OpenLP</source>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="256"/>
|
||||
<source>Default output display:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="258"/>
|
||||
<source>Select default theme:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="260"/>
|
||||
<source>Starting configuration process...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
@ -1690,12 +1740,12 @@ Version: %s
|
||||
<context>
|
||||
<name>OpenLP.LanguageManager</name>
|
||||
<message>
|
||||
<location filename="openlp/core/utils/languagemanager.py" line="126"/>
|
||||
<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="126"/>
|
||||
<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>
|
||||
@ -2001,17 +2051,12 @@ Version: %s
|
||||
<translation type="unfinished">&Internett side</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="428"/>
|
||||
<source>&Auto Detect</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="430"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="434"/>
|
||||
<source>Use the system language, if available.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="434"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="430"/>
|
||||
<source>Set the interface language to %s</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -2056,29 +2101,29 @@ Version: %s
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="644"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="642"/>
|
||||
<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="648"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="646"/>
|
||||
<source>OpenLP Version Updated</source>
|
||||
<translation type="unfinished">OpenLP versjonen har blitt oppdatert</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="686"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="684"/>
|
||||
<source>OpenLP Main Display Blanked</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="686"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="684"/>
|
||||
<source>The Main Display has been blanked out</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="895"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="893"/>
|
||||
<source>Default Theme: %s</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -2094,12 +2139,12 @@ 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="817"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="815"/>
|
||||
<source>Close OpenLP</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="817"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="815"/>
|
||||
<source>Are you sure you want to close OpenLP?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -2128,11 +2173,16 @@ You can download the latest version from http://openlp.org/.</source>
|
||||
<source>&Configure Display Tags</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="432"/>
|
||||
<source>&Autodetect</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>OpenLP.MediaManagerItem</name>
|
||||
<message>
|
||||
<location filename="openlp/core/lib/__init__.py" line="287"/>
|
||||
<location filename="openlp/core/lib/__init__.py" line="286"/>
|
||||
<source>No Items Selected</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -2410,28 +2460,28 @@ You can download the latest version from http://openlp.org/.</source>
|
||||
<translation type="unfinished">&Bytt objekttema</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="493"/>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="521"/>
|
||||
<source>File is not a valid service.
|
||||
The content encoding is not UTF-8.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="525"/>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="553"/>
|
||||
<source>File is not a valid service.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="1051"/>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="1079"/>
|
||||
<source>Missing Display Handler</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="1017"/>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="1045"/>
|
||||
<source>Your item cannot be displayed as there is no handler to display it</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="1051"/>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="1079"/>
|
||||
<source>Your item cannot be displayed as the plugin required to display it is missing or inactive</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -2461,7 +2511,7 @@ The content encoding is not UTF-8.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="466"/>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="494"/>
|
||||
<source>OpenLP Service Files (*.osz)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -3942,99 +3992,109 @@ The content encoding is not UTF-8.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="92"/>
|
||||
<location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="101"/>
|
||||
<source>usage_detail_%s_%s.txt</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="114"/>
|
||||
<location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="123"/>
|
||||
<source>Report Creation</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="114"/>
|
||||
<location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="123"/>
|
||||
<source>Report
|
||||
%s
|
||||
has been successfully created. </source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="92"/>
|
||||
<source>Output Path Not Selected</source>
|
||||
<translation type="unfinished"></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>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>SongsPlugin</name>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="104"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="103"/>
|
||||
<source>&Song</source>
|
||||
<translation>&Sang</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="85"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="84"/>
|
||||
<source>Import songs using the import wizard.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="183"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="182"/>
|
||||
<source><strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="126"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="125"/>
|
||||
<source>&Re-index Songs</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="128"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="127"/>
|
||||
<source>Re-index the songs database to improve searching and ordering.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="141"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="140"/>
|
||||
<source>Reindexing songs...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="238"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="237"/>
|
||||
<source>Add a new Song</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="239"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="238"/>
|
||||
<source>Edit the selected Song</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="240"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="239"/>
|
||||
<source>Delete the selected Song</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="241"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="240"/>
|
||||
<source>Preview the selected Song</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="242"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="241"/>
|
||||
<source>Send the selected Song live</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="243"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="242"/>
|
||||
<source>Add the selected Song to the service</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="227"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="226"/>
|
||||
<source>Song</source>
|
||||
<comment>name singular</comment>
|
||||
<translation type="unfinished">Sang</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="228"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="227"/>
|
||||
<source>Songs</source>
|
||||
<comment>name plural</comment>
|
||||
<translation type="unfinished">Sanger</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="232"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="231"/>
|
||||
<source>Songs</source>
|
||||
<comment>container title</comment>
|
||||
<translation type="unfinished">Sanger</translation>
|
||||
@ -4128,7 +4188,7 @@ The encoding is responsible for the correct character representation.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="106"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="105"/>
|
||||
<source>Exports songs using the export wizard.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -4584,12 +4644,12 @@ The encoding is responsible for the correct character representation.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="318"/>
|
||||
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="321"/>
|
||||
<source>Delete Song(s)?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="400"/>
|
||||
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="403"/>
|
||||
<source>CCLI License: </source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -4599,7 +4659,7 @@ The encoding is responsible for the correct character representation.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message numerus="yes">
|
||||
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="318"/>
|
||||
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="321"/>
|
||||
<source>Are you sure you want to delete the %n selected song(s)?</source>
|
||||
<translation type="unfinished">
|
||||
<numerusform></numerusform>
|
||||
|
@ -212,7 +212,7 @@ Toch doorgaan?</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/bibles/lib/mediaitem.py" line="540"/>
|
||||
<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>
|
||||
</message>
|
||||
@ -841,59 +841,59 @@ N.B. bijbelteksten worden gedownload indien nodig internetverbinding is dus nood
|
||||
<context>
|
||||
<name>ImagePlugin</name>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="45"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="44"/>
|
||||
<source><strong>Image Plugin</strong><br />The image plugin provides displaying of images.<br />One of the distinguishing features of this plugin is the ability to group a number of images together in the service manager, making the displaying of multiple images easier. This plugin can also make use of OpenLP's "timed looping" feature to create a slide show that runs automatically. In addition to this, images from the plugin can be used to override the current theme's background, which renders text-based items like songs with the selected image as a background instead of the background provided by the theme.</source>
|
||||
<translation><strong>Afbeeldingen Plugin</strong><br />De afbeeldingen plugin voorziet in de mogelijkheid afbeeldingen te laten zien.<br />Een van de bijzondere mogelijkheden is dat meerdere afbeeldingen als groep in de liturgie worden opgenomen, zodat weergave van meerdere afbeeldingen eenvoudiger wordt. Deze plugin maakt doorlopende diashows (bijv. om de 3 sec. een nieuwe dia) mogelijk. Ook kun met deze plugin de achtergrondafbeelding van het thema vervangen met een andere afbeelding. Ook de combinatie van tekst en beeld is mogelijk.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="73"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="72"/>
|
||||
<source>Load a new Image</source>
|
||||
<translation>Afbeelding laden</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="75"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="74"/>
|
||||
<source>Add a new Image</source>
|
||||
<translation>Afbeelding toevoegen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="76"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="75"/>
|
||||
<source>Edit the selected Image</source>
|
||||
<translation>Afbeelding bewerken</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="77"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="76"/>
|
||||
<source>Delete the selected Image</source>
|
||||
<translation>Geselecteerde afbeeldingen wissen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="78"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="77"/>
|
||||
<source>Preview the selected Image</source>
|
||||
<translation>Geselecteerde afbeeldingen voorbeeld bekijken</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="79"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="78"/>
|
||||
<source>Send the selected Image live</source>
|
||||
<translation>Geselecteerde afbeeldingen Live tonen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="80"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="79"/>
|
||||
<source>Add the selected Image to the service</source>
|
||||
<translation>Geselecteerde afbeeldingen aan liturgie toevoegen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="64"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="63"/>
|
||||
<source>Image</source>
|
||||
<comment>name singular</comment>
|
||||
<translation>Afbeelding</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="65"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="64"/>
|
||||
<source>Images</source>
|
||||
<comment>name plural</comment>
|
||||
<translation>Bilder</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="69"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="68"/>
|
||||
<source>Images</source>
|
||||
<comment>container title</comment>
|
||||
<translation>Afbeeldingen</translation>
|
||||
@ -950,59 +950,59 @@ De andere afbeeldingen alsnog toevoegen?</translation>
|
||||
<context>
|
||||
<name>MediaPlugin</name>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="70"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="93"/>
|
||||
<source><strong>Media Plugin</strong><br />The media plugin provides playback of audio and video.</source>
|
||||
<translation><strong>Media Plugin</strong><br />De media plugin voorziet in mogelijkheden audio en video af te spelen.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="89"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="112"/>
|
||||
<source>Load a new Media</source>
|
||||
<translation>Laad nieuw media bestand</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="91"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="114"/>
|
||||
<source>Add a new Media</source>
|
||||
<translation>Voeg nieuwe media toe</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="92"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="115"/>
|
||||
<source>Edit the selected Media</source>
|
||||
<translation>Bewerk geselecteerd media bestand</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="93"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="116"/>
|
||||
<source>Delete the selected Media</source>
|
||||
<translation>Verwijder geselecteerd media bestand</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="94"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="117"/>
|
||||
<source>Preview the selected Media</source>
|
||||
<translation>Toon voorbeeld van geselecteerd media bestand</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="95"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="118"/>
|
||||
<source>Send the selected Media live</source>
|
||||
<translation>Toon geselecteerd media bestand Live</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="96"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="119"/>
|
||||
<source>Add the selected Media to the service</source>
|
||||
<translation>Voeg geselecteerd media bestand aan liturgie toe</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="80"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="103"/>
|
||||
<source>Media</source>
|
||||
<comment>name singular</comment>
|
||||
<translation>Medien</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="81"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="104"/>
|
||||
<source>Media</source>
|
||||
<comment>name plural</comment>
|
||||
<translation>Medien</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="85"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="108"/>
|
||||
<source>Media</source>
|
||||
<comment>container title</comment>
|
||||
<translation>Media</translation>
|
||||
@ -1106,17 +1106,6 @@ OpenLP is written and maintained by volunteers. If you would like to see more fr
|
||||
<source> build %s</source>
|
||||
<translation> build %s</translation>
|
||||
</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,
|
||||
Meinert Jordan, Andreas Preikschat, Christian Richter, Philip
|
||||
Ridout, Maikel Stuivenberg, Martin Thompson, Jon Tibble, CarstennTinggaard, Frode Woldsund</source>
|
||||
<translation>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, CarstennTinggaard, Frode Woldsund</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/aboutdialog.py" line="231"/>
|
||||
<source>This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License.</source>
|
||||
@ -1192,6 +1181,15 @@ Final Credit
|
||||
He has set us free.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</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,
|
||||
Meinert Jordan, Andreas Preikschat, Christian Richter, Philip
|
||||
Ridout, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Carsten
|
||||
Tinggaard, Frode Woldsund</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>OpenLP.AdvancedTab</name>
|
||||
@ -1295,18 +1293,18 @@ Final Credit
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/displaytagdialog.py" line="145"/>
|
||||
<source>Tag id</source>
|
||||
<translation>Tag id</translation>
|
||||
<source>Tag Id</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/displaytagdialog.py" line="147"/>
|
||||
<source>Start Html</source>
|
||||
<translation>Start Html</translation>
|
||||
<source>Start HTML</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/displaytagdialog.py" line="149"/>
|
||||
<source>End Html</source>
|
||||
<translation>Eind Html</translation>
|
||||
<source>End HTML</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -1445,151 +1443,200 @@ Version: %s
|
||||
<context>
|
||||
<name>OpenLP.FirstTimeLanguageForm</name>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimelanguagedialog.py" line="60"/>
|
||||
<source>Initial Set up Language</source>
|
||||
<location filename="openlp/core/ui/firsttimelanguagedialog.py" line="61"/>
|
||||
<source>Select Translation</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimelanguagedialog.py" line="62"/>
|
||||
<source>Select the language you'd like to use in OpenLP.</source>
|
||||
<location filename="openlp/core/ui/firsttimelanguagedialog.py" line="63"/>
|
||||
<source>Choose the translation you'd like to use in OpenLP.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimelanguagedialog.py" line="65"/>
|
||||
<source>Translation:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>OpenLP.FirstTimeWizard</name>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="154"/>
|
||||
<source>Songs</source>
|
||||
<location filename="openlp/core/ui/firsttimeform.py" line="61"/>
|
||||
<source>Downloading %s...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimeform.py" line="63"/>
|
||||
<source>Bibles</source>
|
||||
<location filename="openlp/core/ui/firsttimeform.py" line="212"/>
|
||||
<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="64"/>
|
||||
<source>Themes</source>
|
||||
<location filename="openlp/core/ui/firsttimeform.py" line="221"/>
|
||||
<source>Enabling selected plugins...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimeform.py" line="65"/>
|
||||
<source>Starting Updates</source>
|
||||
<location filename="openlp/core/ui/firsttimeform.py" line="244"/>
|
||||
<source>Overwrite Existing Songs?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimeform.py" line="67"/>
|
||||
<source>Downloading %s</source>
|
||||
<location filename="openlp/core/ui/firsttimeform.py" line="244"/>
|
||||
<source>Your songs database already exists and your current songs will be permanently lost, are you sure you want to replace it ?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="140"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="193"/>
|
||||
<source>First Time Wizard</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="142"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="195"/>
|
||||
<source>Welcome to the First Time Wizard</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="146"/>
|
||||
<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>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="199"/>
|
||||
<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="150"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="203"/>
|
||||
<source>Activate required Plugins</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="152"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="205"/>
|
||||
<source>Select the Plugins you wish to use. </source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="155"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="207"/>
|
||||
<source>Songs</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="208"/>
|
||||
<source>Custom Text</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="157"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="210"/>
|
||||
<source>Bible</source>
|
||||
<translation type="unfinished">bijbeltekst</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="158"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="211"/>
|
||||
<source>Images</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="160"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="213"/>
|
||||
<source>Presentations</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="162"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="215"/>
|
||||
<source>Media (Audio and Video)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="164"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="217"/>
|
||||
<source>Allow remote access</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="166"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="219"/>
|
||||
<source>Monitor Song Usage</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="168"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="221"/>
|
||||
<source>Allow Alerts</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="170"/>
|
||||
<source>Download Samples from OpenLP.org</source>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="223"/>
|
||||
<source>No Internet Connection</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="172"/>
|
||||
<source>Select samples to downlaod and install for use.</source>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="225"/>
|
||||
<source>Unable to detect an Internet connection.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="175"/>
|
||||
<source>No Internet connection found so unable to download any default files.</source>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="228"/>
|
||||
<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 type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="178"/>
|
||||
<source>Download Example Files</source>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="236"/>
|
||||
<source>Sample Songs</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="180"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="238"/>
|
||||
<source>Select and download public domain songs.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="240"/>
|
||||
<source>Sample Bibles</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="242"/>
|
||||
<source>Select and download free Bibles.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="244"/>
|
||||
<source>Sample Themes</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="246"/>
|
||||
<source>Select and download sample themes.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="248"/>
|
||||
<source>Default Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="182"/>
|
||||
<source>Set up default values to be used by OpenLP</source>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="250"/>
|
||||
<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="184"/>
|
||||
<source>Default output display</source>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="252"/>
|
||||
<source>Setting Up And Importing</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="186"/>
|
||||
<source>Select the default Theme</source>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="254"/>
|
||||
<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="188"/>
|
||||
<source>Press finish to apply all your changes and start OpenLP</source>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="256"/>
|
||||
<source>Default output display:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="258"/>
|
||||
<source>Select default theme:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="260"/>
|
||||
<source>Starting configuration process...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
@ -1714,12 +1761,12 @@ Version: %s
|
||||
<context>
|
||||
<name>OpenLP.LanguageManager</name>
|
||||
<message>
|
||||
<location filename="openlp/core/utils/languagemanager.py" line="126"/>
|
||||
<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="126"/>
|
||||
<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>
|
||||
@ -2025,17 +2072,12 @@ Version: %s
|
||||
<translation>&Website</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="428"/>
|
||||
<source>&Auto Detect</source>
|
||||
<translation>&Automatisch detecteren</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="430"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="434"/>
|
||||
<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="434"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="430"/>
|
||||
<source>Set the interface language to %s</source>
|
||||
<translation>%s als taal in OpenLP gebruiken</translation>
|
||||
</message>
|
||||
@ -2080,27 +2122,27 @@ Version: %s
|
||||
<translation>Weergave modus naar Live.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="648"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="646"/>
|
||||
<source>OpenLP Version Updated</source>
|
||||
<translation>Nieuwe OpenLP versie beschikbaar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="686"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="684"/>
|
||||
<source>OpenLP Main Display Blanked</source>
|
||||
<translation>OpenLP projectie op zwart</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="686"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="684"/>
|
||||
<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="895"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="893"/>
|
||||
<source>Default Theme: %s</source>
|
||||
<translation>Standaardthema: %s</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="644"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="642"/>
|
||||
<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>
|
||||
@ -2120,12 +2162,12 @@ U kunt de laatste versie op http://openlp.org/ downloaden.</translation>
|
||||
<translation>&Sneltoetsen instellen...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="817"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="815"/>
|
||||
<source>Close OpenLP</source>
|
||||
<translation>OpenLP afsluiten</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="817"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="815"/>
|
||||
<source>Are you sure you want to close OpenLP?</source>
|
||||
<translation>OpenLP afsluiten?</translation>
|
||||
</message>
|
||||
@ -2154,11 +2196,16 @@ U kunt de laatste versie op http://openlp.org/ downloaden.</translation>
|
||||
<source>&Configure Display Tags</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="432"/>
|
||||
<source>&Autodetect</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>OpenLP.MediaManagerItem</name>
|
||||
<message>
|
||||
<location filename="openlp/core/lib/__init__.py" line="287"/>
|
||||
<location filename="openlp/core/lib/__init__.py" line="286"/>
|
||||
<source>No Items Selected</source>
|
||||
<translation>Niets geselecteerd</translation>
|
||||
</message>
|
||||
@ -2436,29 +2483,29 @@ U kunt de laatste versie op http://openlp.org/ downloaden.</translation>
|
||||
<translation>&Wijzig onderdeel thema</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="493"/>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="521"/>
|
||||
<source>File is not a valid service.
|
||||
The content encoding is not UTF-8.</source>
|
||||
<translation>Geen geldig liturgie bestand.
|
||||
Tekst codering is geen UTF-8.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="525"/>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="553"/>
|
||||
<source>File is not a valid service.</source>
|
||||
<translation>Geen geldig liturgie bestand.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="1051"/>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="1079"/>
|
||||
<source>Missing Display Handler</source>
|
||||
<translation>Ontbrekende weergave regelaar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="1017"/>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="1045"/>
|
||||
<source>Your item cannot be displayed as there is no handler to display it</source>
|
||||
<translation>Dit onderdeel kan niet weergegeven worden, omdat er een regelaar ontbreekt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="1051"/>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="1079"/>
|
||||
<source>Your item cannot be displayed as the plugin required to display it is missing or inactive</source>
|
||||
<translation>Dit onderdeel kan niet weergegeven worden omdat de benodigde plugin ontbreekt of inactief is</translation>
|
||||
</message>
|
||||
@ -2488,7 +2535,7 @@ Tekst codering is geen UTF-8.</translation>
|
||||
<translation>Open bestand</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="466"/>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="494"/>
|
||||
<source>OpenLP Service Files (*.osz)</source>
|
||||
<translation>OpenLP liturgie bestanden (*.osz)</translation>
|
||||
</message>
|
||||
@ -3970,99 +4017,109 @@ Tekst codering is geen UTF-8.</translation>
|
||||
<translation>Bestandslocatie</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="92"/>
|
||||
<location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="101"/>
|
||||
<source>usage_detail_%s_%s.txt</source>
|
||||
<translation>liedgebruik_details_%s_%s.txt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="114"/>
|
||||
<location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="123"/>
|
||||
<source>Report Creation</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="114"/>
|
||||
<location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="123"/>
|
||||
<source>Report
|
||||
%s
|
||||
has been successfully created. </source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="92"/>
|
||||
<source>Output Path Not Selected</source>
|
||||
<translation type="unfinished"></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>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>SongsPlugin</name>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="104"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="103"/>
|
||||
<source>&Song</source>
|
||||
<translation>&Lied</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="85"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="84"/>
|
||||
<source>Import songs using the import wizard.</source>
|
||||
<translation>Importeer liederen met de lied assistent.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="183"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="182"/>
|
||||
<source><strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs.</source>
|
||||
<translation><strong>Lied plugin</strong><br />De lied plugin regelt de weergave en het beheer van liederen.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="126"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="125"/>
|
||||
<source>&Re-index Songs</source>
|
||||
<translation>He&r-indexeer liederen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="128"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="127"/>
|
||||
<source>Re-index the songs database to improve searching and ordering.</source>
|
||||
<translation>Her-indexxer de liederen in de database om het zoeken en ordenen te verbeteren.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="141"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="140"/>
|
||||
<source>Reindexing songs...</source>
|
||||
<translation>Liederen her-indexeren...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="238"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="237"/>
|
||||
<source>Add a new Song</source>
|
||||
<translation>Voeg nieuw lied toe</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="239"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="238"/>
|
||||
<source>Edit the selected Song</source>
|
||||
<translation>Bewerk geselecteerde lied</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="240"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="239"/>
|
||||
<source>Delete the selected Song</source>
|
||||
<translation>Verwijder geselecteerde lied</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="241"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="240"/>
|
||||
<source>Preview the selected Song</source>
|
||||
<translation>Toon voorbeeld geselecteerd lied</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="242"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="241"/>
|
||||
<source>Send the selected Song live</source>
|
||||
<translation>Toon lied Live</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="243"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="242"/>
|
||||
<source>Add the selected Song to the service</source>
|
||||
<translation>Voeg geselecteerde lied toe aan de liturgie</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="227"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="226"/>
|
||||
<source>Song</source>
|
||||
<comment>name singular</comment>
|
||||
<translation>Lied</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="228"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="227"/>
|
||||
<source>Songs</source>
|
||||
<comment>name plural</comment>
|
||||
<translation>Lieder</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="232"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="231"/>
|
||||
<source>Songs</source>
|
||||
<comment>container title</comment>
|
||||
<translation>Liederen</translation>
|
||||
@ -4159,7 +4216,7 @@ een correcte weergave van lettertekens.
|
||||
Meestal voldoet de suggestie van OpenLP.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="106"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="105"/>
|
||||
<source>Exports songs using the export wizard.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -4615,12 +4672,12 @@ Meestal voldoet de suggestie van OpenLP.</translation>
|
||||
<translation>Liedtekst</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="318"/>
|
||||
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="321"/>
|
||||
<source>Delete Song(s)?</source>
|
||||
<translation type="unfinished">Delete Song(s)?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="400"/>
|
||||
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="403"/>
|
||||
<source>CCLI License: </source>
|
||||
<translation>CCLI Licentie: </translation>
|
||||
</message>
|
||||
@ -4630,7 +4687,7 @@ Meestal voldoet de suggestie van OpenLP.</translation>
|
||||
<translation>Gehele lied</translation>
|
||||
</message>
|
||||
<message numerus="yes">
|
||||
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="318"/>
|
||||
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="321"/>
|
||||
<source>Are you sure you want to delete the %n selected song(s)?</source>
|
||||
<translation>
|
||||
<numerusform>Weet u zeker dat u deze %n lied(eren) wilt verwijderen?</numerusform>
|
||||
|
@ -212,7 +212,7 @@ Você gostaria de continuar de qualquer maneira?</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/bibles/lib/mediaitem.py" line="540"/>
|
||||
<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>
|
||||
</message>
|
||||
@ -841,59 +841,59 @@ com o uso, portanto uma conexão com a internet é necessária.</translation>
|
||||
<context>
|
||||
<name>ImagePlugin</name>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="45"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="44"/>
|
||||
<source><strong>Image Plugin</strong><br />The image plugin provides displaying of images.<br />One of the distinguishing features of this plugin is the ability to group a number of images together in the service manager, making the displaying of multiple images easier. This plugin can also make use of OpenLP's "timed looping" feature to create a slide show that runs automatically. In addition to this, images from the plugin can be used to override the current theme's background, which renders text-based items like songs with the selected image as a background instead of the background provided by the theme.</source>
|
||||
<translation><strong>Plugin de Imagens</strong><br />O plugin de imagens fornece a exibição de imagens.<br />Uma das funcionalidades importantes deste plugin é a habilidade de agrupar várias imagens na Lista de Exibição, facilitando a exibição de várias imagens. Este plugin também pode usar a funcionalidade de "loop temporizado" do OpenLP para criar uma apresentação de slides que é executada automaticamente. Além disso, imagens do plugin podem ser usadas em sobreposição ao plano de fundo do tema atual, exibindo itens baseados em texto como músicas com a imagem selecionada ao fundo ao invés do plano de fundo fornecido pelo tema.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="73"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="72"/>
|
||||
<source>Load a new Image</source>
|
||||
<translation>Carregar um nova Imagem</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="75"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="74"/>
|
||||
<source>Add a new Image</source>
|
||||
<translation>Adicionar uma nova Imagem</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="76"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="75"/>
|
||||
<source>Edit the selected Image</source>
|
||||
<translation>Editar a Imagem selecionada</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="77"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="76"/>
|
||||
<source>Delete the selected Image</source>
|
||||
<translation>Excluir a Imagem selecionada</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="78"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="77"/>
|
||||
<source>Preview the selected Image</source>
|
||||
<translation>Visualizar a Imagem selecionada</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="79"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="78"/>
|
||||
<source>Send the selected Image live</source>
|
||||
<translation>Projetar a Imagem selecionada</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="80"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="79"/>
|
||||
<source>Add the selected Image to the service</source>
|
||||
<translation>Adicionar Imagem selecionada à Lista de Exibição</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="64"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="63"/>
|
||||
<source>Image</source>
|
||||
<comment>name singular</comment>
|
||||
<translation>Imagem</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="65"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="64"/>
|
||||
<source>Images</source>
|
||||
<comment>name plural</comment>
|
||||
<translation type="unfinished">Imagens</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="69"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="68"/>
|
||||
<source>Images</source>
|
||||
<comment>container title</comment>
|
||||
<translation>Imagens</translation>
|
||||
@ -950,59 +950,59 @@ Deseja continuar adicionando as outras imagens?</translation>
|
||||
<context>
|
||||
<name>MediaPlugin</name>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="70"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="93"/>
|
||||
<source><strong>Media Plugin</strong><br />The media plugin provides playback of audio and video.</source>
|
||||
<translation><strong>Plugin de Mídia</strong><br />O plugin de mídia faz a reprodução de áudio e vídeo.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="89"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="112"/>
|
||||
<source>Load a new Media</source>
|
||||
<translation>Carregar nova Mídia</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="91"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="114"/>
|
||||
<source>Add a new Media</source>
|
||||
<translation>Adicionar nova Mídia</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="92"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="115"/>
|
||||
<source>Edit the selected Media</source>
|
||||
<translation>Editar Mídia selecionada</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="93"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="116"/>
|
||||
<source>Delete the selected Media</source>
|
||||
<translation>Excluir a Mídia selecionada</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="94"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="117"/>
|
||||
<source>Preview the selected Media</source>
|
||||
<translation>Pré-visualizar a Mídia selecionada</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="95"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="118"/>
|
||||
<source>Send the selected Media live</source>
|
||||
<translation>Projetar a Mídia selecionada</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="96"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="119"/>
|
||||
<source>Add the selected Media to the service</source>
|
||||
<translation>Adicionar a Mídia selecionada à Lista de Exibição</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="80"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="103"/>
|
||||
<source>Media</source>
|
||||
<comment>name singular</comment>
|
||||
<translation type="unfinished">Mídia</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="81"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="104"/>
|
||||
<source>Media</source>
|
||||
<comment>name plural</comment>
|
||||
<translation type="unfinished">Mídia</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="85"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="108"/>
|
||||
<source>Media</source>
|
||||
<comment>container title</comment>
|
||||
<translation>Mídia</translation>
|
||||
@ -1106,17 +1106,6 @@ O OpenLP é escrito e mantido por voluntários. Se você gostaria de contribuir
|
||||
<source> build %s</source>
|
||||
<translation> compilação %s</translation>
|
||||
</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,
|
||||
Meinert Jordan, Andreas Preikschat, Christian Richter, Philip
|
||||
Ridout, Maikel Stuivenberg, Martin Thompson, Jon Tibble, CarstennTinggaard, Frode Woldsund</source>
|
||||
<translation>Direitos Autorais © 2004-2011 Raoul Snyman
|
||||
Porções de Direitos Autorais © 2004-2011 Tim Bentley, Jonathan Corwin, Michael Gorven, Scott Guerrieri,
|
||||
Meinert Jordan, Andreas Preikschat, Christian Richter, Philip
|
||||
Ridout, Maikel Stuivenberg, Martin Thompson, Jon Tibble, CarstennTinggaard, Frode Woldsund</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/aboutdialog.py" line="231"/>
|
||||
<source>This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License.</source>
|
||||
@ -1192,6 +1181,15 @@ Final Credit
|
||||
He has set us free.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</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,
|
||||
Meinert Jordan, Andreas Preikschat, Christian Richter, Philip
|
||||
Ridout, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Carsten
|
||||
Tinggaard, Frode Woldsund</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>OpenLP.AdvancedTab</name>
|
||||
@ -1295,18 +1293,18 @@ Final Credit
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/displaytagdialog.py" line="145"/>
|
||||
<source>Tag id</source>
|
||||
<translation>Id da Etiqueta</translation>
|
||||
<source>Tag Id</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/displaytagdialog.py" line="147"/>
|
||||
<source>Start Html</source>
|
||||
<translation>Html Inicial</translation>
|
||||
<source>Start HTML</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/displaytagdialog.py" line="149"/>
|
||||
<source>End Html</source>
|
||||
<translation>Html Final</translation>
|
||||
<source>End HTML</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -1472,151 +1470,200 @@ Agradecemos se for possível escrever seu relatório em inglês.</translation>
|
||||
<context>
|
||||
<name>OpenLP.FirstTimeLanguageForm</name>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimelanguagedialog.py" line="60"/>
|
||||
<source>Initial Set up Language</source>
|
||||
<location filename="openlp/core/ui/firsttimelanguagedialog.py" line="61"/>
|
||||
<source>Select Translation</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimelanguagedialog.py" line="62"/>
|
||||
<source>Select the language you'd like to use in OpenLP.</source>
|
||||
<location filename="openlp/core/ui/firsttimelanguagedialog.py" line="63"/>
|
||||
<source>Choose the translation you'd like to use in OpenLP.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimelanguagedialog.py" line="65"/>
|
||||
<source>Translation:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>OpenLP.FirstTimeWizard</name>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="154"/>
|
||||
<source>Songs</source>
|
||||
<translation type="unfinished">Músicas</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimeform.py" line="63"/>
|
||||
<source>Bibles</source>
|
||||
<translation type="unfinished">Bíblias</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimeform.py" line="64"/>
|
||||
<source>Themes</source>
|
||||
<translation type="unfinished">Temas</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimeform.py" line="65"/>
|
||||
<source>Starting Updates</source>
|
||||
<location filename="openlp/core/ui/firsttimeform.py" line="61"/>
|
||||
<source>Downloading %s...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimeform.py" line="67"/>
|
||||
<source>Downloading %s</source>
|
||||
<location filename="openlp/core/ui/firsttimeform.py" line="212"/>
|
||||
<source>Download complete. Click the finish button to start OpenLP.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="140"/>
|
||||
<location filename="openlp/core/ui/firsttimeform.py" line="221"/>
|
||||
<source>Enabling selected plugins...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimeform.py" line="244"/>
|
||||
<source>Overwrite Existing Songs?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimeform.py" line="244"/>
|
||||
<source>Your songs database already exists and your current songs will be permanently lost, are you sure you want to replace it ?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="193"/>
|
||||
<source>First Time Wizard</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="142"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="195"/>
|
||||
<source>Welcome to the First Time Wizard</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="146"/>
|
||||
<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>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="199"/>
|
||||
<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="150"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="203"/>
|
||||
<source>Activate required Plugins</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="152"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="205"/>
|
||||
<source>Select the Plugins you wish to use. </source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="155"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="207"/>
|
||||
<source>Songs</source>
|
||||
<translation type="unfinished">Músicas</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="208"/>
|
||||
<source>Custom Text</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="157"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="210"/>
|
||||
<source>Bible</source>
|
||||
<translation type="unfinished">Bíblia</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="158"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="211"/>
|
||||
<source>Images</source>
|
||||
<translation type="unfinished">Imagens</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="160"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="213"/>
|
||||
<source>Presentations</source>
|
||||
<translation type="unfinished">Apresentações</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="162"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="215"/>
|
||||
<source>Media (Audio and Video)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="164"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="217"/>
|
||||
<source>Allow remote access</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="166"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="219"/>
|
||||
<source>Monitor Song Usage</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="168"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="221"/>
|
||||
<source>Allow Alerts</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="170"/>
|
||||
<source>Download Samples from OpenLP.org</source>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="223"/>
|
||||
<source>No Internet Connection</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="172"/>
|
||||
<source>Select samples to downlaod and install for use.</source>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="225"/>
|
||||
<source>Unable to detect an Internet connection.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="175"/>
|
||||
<source>No Internet connection found so unable to download any default files.</source>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="228"/>
|
||||
<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 type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="178"/>
|
||||
<source>Download Example Files</source>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="236"/>
|
||||
<source>Sample Songs</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="180"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="238"/>
|
||||
<source>Select and download public domain songs.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="240"/>
|
||||
<source>Sample Bibles</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="242"/>
|
||||
<source>Select and download free Bibles.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="244"/>
|
||||
<source>Sample Themes</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="246"/>
|
||||
<source>Select and download sample themes.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="248"/>
|
||||
<source>Default Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="182"/>
|
||||
<source>Set up default values to be used by OpenLP</source>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="250"/>
|
||||
<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="184"/>
|
||||
<source>Default output display</source>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="252"/>
|
||||
<source>Setting Up And Importing</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="186"/>
|
||||
<source>Select the default Theme</source>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="254"/>
|
||||
<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="188"/>
|
||||
<source>Press finish to apply all your changes and start OpenLP</source>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="256"/>
|
||||
<source>Default output display:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="258"/>
|
||||
<source>Select default theme:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="260"/>
|
||||
<source>Starting configuration process...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
@ -1741,12 +1788,12 @@ Agradecemos se for possível escrever seu relatório em inglês.</translation>
|
||||
<context>
|
||||
<name>OpenLP.LanguageManager</name>
|
||||
<message>
|
||||
<location filename="openlp/core/utils/languagemanager.py" line="126"/>
|
||||
<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="126"/>
|
||||
<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>
|
||||
@ -2052,17 +2099,12 @@ Agradecemos se for possível escrever seu relatório em inglês.</translation>
|
||||
<translation>&Web Site</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="428"/>
|
||||
<source>&Auto Detect</source>
|
||||
<translation>&Auto-detectar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="430"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="434"/>
|
||||
<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="434"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="430"/>
|
||||
<source>Set the interface language to %s</source>
|
||||
<translation>Definir o idioma da interface como %s</translation>
|
||||
</message>
|
||||
@ -2107,7 +2149,7 @@ Agradecemos se for possível escrever seu relatório em inglês.</translation>
|
||||
<translation>Configurar o modo de visualização como Projeção.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="644"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="642"/>
|
||||
<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>
|
||||
@ -2116,22 +2158,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="648"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="646"/>
|
||||
<source>OpenLP Version Updated</source>
|
||||
<translation>Versão do OpenLP Atualizada</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="686"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="684"/>
|
||||
<source>OpenLP Main Display Blanked</source>
|
||||
<translation>Tela Principal do OpenLP em Branco</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="686"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="684"/>
|
||||
<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="895"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="893"/>
|
||||
<source>Default Theme: %s</source>
|
||||
<translation>Tema padrão: %s</translation>
|
||||
</message>
|
||||
@ -2147,12 +2189,12 @@ Voce pode baixar a versão mais nova em http://openlp.org/.</translation>
|
||||
<translation>Configurar &Atalhos...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="817"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="815"/>
|
||||
<source>Close OpenLP</source>
|
||||
<translation>Fechar o OpenLP</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="817"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="815"/>
|
||||
<source>Are you sure you want to close OpenLP?</source>
|
||||
<translation>Você tem certeza de que quer fechar o OpenLP?</translation>
|
||||
</message>
|
||||
@ -2181,11 +2223,16 @@ Voce pode baixar a versão mais nova em http://openlp.org/.</translation>
|
||||
<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="432"/>
|
||||
<source>&Autodetect</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>OpenLP.MediaManagerItem</name>
|
||||
<message>
|
||||
<location filename="openlp/core/lib/__init__.py" line="287"/>
|
||||
<location filename="openlp/core/lib/__init__.py" line="286"/>
|
||||
<source>No Items Selected</source>
|
||||
<translation>Nenhum Item Selecionado</translation>
|
||||
</message>
|
||||
@ -2463,29 +2510,29 @@ Voce pode baixar a versão mais nova em http://openlp.org/.</translation>
|
||||
<translation>&Alterar Tema do Item</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="493"/>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="521"/>
|
||||
<source>File is not a valid service.
|
||||
The content encoding is not UTF-8.</source>
|
||||
<translation>O arquivo não é uma lista válida.
|
||||
A codificação do conteúdo não é UTF-8.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="525"/>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="553"/>
|
||||
<source>File is not a valid service.</source>
|
||||
<translation>Arquivo não é uma Lista de Exibição válida.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="1051"/>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="1079"/>
|
||||
<source>Missing Display Handler</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="1017"/>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="1045"/>
|
||||
<source>Your item cannot be displayed as there is no handler to display it</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="1051"/>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="1079"/>
|
||||
<source>Your item cannot be displayed as the plugin required to display it is missing or inactive</source>
|
||||
<translation>O item não pode ser exibido porque o plugin necessário para visualizá-lo está faltando ou está inativo</translation>
|
||||
</message>
|
||||
@ -2515,7 +2562,7 @@ A codificação do conteúdo não é UTF-8.</translation>
|
||||
<translation>Abrir Arquivo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="466"/>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="494"/>
|
||||
<source>OpenLP Service Files (*.osz)</source>
|
||||
<translation>Listas de Exibição do OpenLP (*.osz)</translation>
|
||||
</message>
|
||||
@ -3997,17 +4044,17 @@ A codificação do conteúdo não é UTF-8.</translation>
|
||||
<translation>Local do arquivo de saída</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="92"/>
|
||||
<location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="101"/>
|
||||
<source>usage_detail_%s_%s.txt</source>
|
||||
<translation>detalhe_uso_%s_%s.txt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="114"/>
|
||||
<location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="123"/>
|
||||
<source>Report Creation</source>
|
||||
<translation>Criação de Relatório</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="114"/>
|
||||
<location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="123"/>
|
||||
<source>Report
|
||||
%s
|
||||
has been successfully created. </source>
|
||||
@ -4015,83 +4062,93 @@ has been successfully created. </source>
|
||||
%s
|
||||
foi criado com sucesso. </translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="92"/>
|
||||
<source>Output Path Not Selected</source>
|
||||
<translation type="unfinished"></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>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>SongsPlugin</name>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="104"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="103"/>
|
||||
<source>&Song</source>
|
||||
<translation>&Música</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="85"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="84"/>
|
||||
<source>Import songs using the import wizard.</source>
|
||||
<translation>Importar músicas com o assistente de importação.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="183"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="182"/>
|
||||
<source><strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs.</source>
|
||||
<translation><strong>Plugin de Músicas</strong><br />O plugin de músicas provê a habilidade de exibir e gerenciar músicas.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="126"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="125"/>
|
||||
<source>&Re-index Songs</source>
|
||||
<translation>&Re-indexar Músicas</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="128"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="127"/>
|
||||
<source>Re-index the songs database to improve searching and ordering.</source>
|
||||
<translation>Re-indexar o banco de dados de músicas para melhorar a busca e a ordenação.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="141"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="140"/>
|
||||
<source>Reindexing songs...</source>
|
||||
<translation>Reindexando músicas...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="238"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="237"/>
|
||||
<source>Add a new Song</source>
|
||||
<translation>Adicionar uma nova Música</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="239"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="238"/>
|
||||
<source>Edit the selected Song</source>
|
||||
<translation>Editar a Música selecioanda</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="240"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="239"/>
|
||||
<source>Delete the selected Song</source>
|
||||
<translation>Apagar a Música selecionada</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="241"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="240"/>
|
||||
<source>Preview the selected Song</source>
|
||||
<translation>Pré-visualizar a Música selecionada</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="242"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="241"/>
|
||||
<source>Send the selected Song live</source>
|
||||
<translation>Projetar a Música selecionada</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="243"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="242"/>
|
||||
<source>Add the selected Song to the service</source>
|
||||
<translation>Adicionar a Música selecionada à Lista de Exibição</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="227"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="226"/>
|
||||
<source>Song</source>
|
||||
<comment>name singular</comment>
|
||||
<translation>Música</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="228"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="227"/>
|
||||
<source>Songs</source>
|
||||
<comment>name plural</comment>
|
||||
<translation type="unfinished">Músicas</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="232"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="231"/>
|
||||
<source>Songs</source>
|
||||
<comment>container title</comment>
|
||||
<translation>Músicas</translation>
|
||||
@ -4188,7 +4245,7 @@ The encoding is responsible for the correct character representation.</source>
|
||||
A codificação é responsável pela correta representação dos caracteres.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="106"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="105"/>
|
||||
<source>Exports songs using the export wizard.</source>
|
||||
<translation>Exportar músicas utilizando o assistente.</translation>
|
||||
</message>
|
||||
@ -4644,12 +4701,12 @@ A codificação é responsável pela correta representação dos caracteres.</tr
|
||||
<translation>Letra</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="318"/>
|
||||
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="321"/>
|
||||
<source>Delete Song(s)?</source>
|
||||
<translation>Apagar Música(s)?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="400"/>
|
||||
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="403"/>
|
||||
<source>CCLI License: </source>
|
||||
<translation>Licença CCLI:</translation>
|
||||
</message>
|
||||
@ -4659,7 +4716,7 @@ A codificação é responsável pela correta representação dos caracteres.</tr
|
||||
<translation>Música Inteira</translation>
|
||||
</message>
|
||||
<message numerus="yes">
|
||||
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="318"/>
|
||||
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="321"/>
|
||||
<source>Are you sure you want to delete the %n selected song(s)?</source>
|
||||
<translation>
|
||||
<numerusform>Tem certeza de que quer apagar as %n música(s) selecionadas?</numerusform>
|
||||
|
@ -211,7 +211,7 @@ Do you want to continue anyway?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/bibles/lib/mediaitem.py" line="540"/>
|
||||
<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>
|
||||
</message>
|
||||
@ -831,60 +831,60 @@ demand and thus an internet connection is required.</source>
|
||||
<context>
|
||||
<name>ImagePlugin</name>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="45"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="44"/>
|
||||
<source><strong>Image Plugin</strong><br />The image plugin provides displaying of images.<br />One of the distinguishing features of this plugin is the ability to group a number of images together in the service manager, making the displaying of multiple images easier. This plugin can also make use of OpenLP's "timed looping" feature to create a slide show that runs automatically. In addition to this, images from the plugin can be used to override the current theme's background, which renders text-based items like songs with the selected image as a background instead of the background provided by the theme.</source>
|
||||
<translation><strong>Плагин Изображений</strong><br />Плагин изображений позволяет отображать изображения.<br />Одной из отличительных возможностей этого плагина является возможность группировать выбранные изображение в менеджере служения, что делает работу с большим количеством изображений более легкой. Этот плагин также позволяет использовать возможности "временной петли" OpenLP, чтобы создавать слайд-шоу, которые выполняются автоматически. В дополнение к этому, изображения из плагина могут быть использованы, чтобы заменить текущий фон, что позволяет отображать текстовые элементы, такие как песни, с выбранным изображением в качестве фона, вместо фона, который указан в теме.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="64"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="63"/>
|
||||
<source>Image</source>
|
||||
<comment>name singular</comment>
|
||||
<translation>Изображение</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="65"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="64"/>
|
||||
<source>Images</source>
|
||||
<comment>name plural</comment>
|
||||
<translation>Изображения</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="69"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="68"/>
|
||||
<source>Images</source>
|
||||
<comment>container title</comment>
|
||||
<translation>Изображения</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="73"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="72"/>
|
||||
<source>Load a new Image</source>
|
||||
<translation>Загрузить новое Изображение</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="75"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="74"/>
|
||||
<source>Add a new Image</source>
|
||||
<translation>Добавить новое Изображение</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="76"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="75"/>
|
||||
<source>Edit the selected Image</source>
|
||||
<translation>Изменить выбранное изображение</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="77"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="76"/>
|
||||
<source>Delete the selected Image</source>
|
||||
<translation>Удалить выбранное изображение</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="78"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="77"/>
|
||||
<source>Preview the selected Image</source>
|
||||
<translation>Просмотреть выбранное Изображение</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="79"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="78"/>
|
||||
<source>Send the selected Image live</source>
|
||||
<translation>Послать выбранное Изображение на проектор</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="80"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="79"/>
|
||||
<source>Add the selected Image to the service</source>
|
||||
<translation>Добавить выбранное изображение к Служению</translation>
|
||||
</message>
|
||||
@ -940,60 +940,60 @@ Do you want to add the other images anyway?</source>
|
||||
<context>
|
||||
<name>MediaPlugin</name>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="70"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="93"/>
|
||||
<source><strong>Media Plugin</strong><br />The media plugin provides playback of audio and video.</source>
|
||||
<translation><strong>Плагин Медиа</strong><br />Плагин Медиа обеспечивает проигрывание аудио и видео файлов.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="80"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="103"/>
|
||||
<source>Media</source>
|
||||
<comment>name singular</comment>
|
||||
<translation>Медиа</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="81"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="104"/>
|
||||
<source>Media</source>
|
||||
<comment>name plural</comment>
|
||||
<translation>Медиа</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="85"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="108"/>
|
||||
<source>Media</source>
|
||||
<comment>container title</comment>
|
||||
<translation>Медиа</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="89"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="112"/>
|
||||
<source>Load a new Media</source>
|
||||
<translation>Открыть новый медиафайл</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="91"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="114"/>
|
||||
<source>Add a new Media</source>
|
||||
<translation>Добавить новый медиафайл</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="92"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="115"/>
|
||||
<source>Edit the selected Media</source>
|
||||
<translation>Редактировать выбранный медиафайл</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="93"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="116"/>
|
||||
<source>Delete the selected Media</source>
|
||||
<translation>Удалить выбранный медиафайл</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="94"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="117"/>
|
||||
<source>Preview the selected Media</source>
|
||||
<translation>Предпросмотр выбранного медиафайла</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="95"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="118"/>
|
||||
<source>Send the selected Media live</source>
|
||||
<translation>Отправить выбранный медиафайл на проектор</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="96"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="119"/>
|
||||
<source>Add the selected Media to the service</source>
|
||||
<translation>Добавить выбранный медиафайл к служению</translation>
|
||||
</message>
|
||||
@ -1090,14 +1090,6 @@ OpenLP is written and maintained by volunteers. If you would like to see more fr
|
||||
<source> build %s</source>
|
||||
<translation> Билд %s</translation>
|
||||
</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,
|
||||
Meinert Jordan, Andreas Preikschat, Christian Richter, Philip
|
||||
Ridout, Maikel Stuivenberg, Martin Thompson, Jon Tibble, CarstennTinggaard, Frode Woldsund</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/aboutdialog.py" line="231"/>
|
||||
<source>This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License.</source>
|
||||
@ -1173,6 +1165,15 @@ Final Credit
|
||||
He has set us free.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</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,
|
||||
Meinert Jordan, Andreas Preikschat, Christian Richter, Philip
|
||||
Ridout, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Carsten
|
||||
Tinggaard, Frode Woldsund</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>OpenLP.AdvancedTab</name>
|
||||
@ -1276,17 +1277,17 @@ Final Credit
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/displaytagdialog.py" line="145"/>
|
||||
<source>Tag id</source>
|
||||
<source>Tag Id</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/displaytagdialog.py" line="147"/>
|
||||
<source>Start Html</source>
|
||||
<source>Start HTML</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/displaytagdialog.py" line="149"/>
|
||||
<source>End Html</source>
|
||||
<source>End HTML</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
@ -1424,151 +1425,200 @@ Version: %s
|
||||
<context>
|
||||
<name>OpenLP.FirstTimeLanguageForm</name>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimelanguagedialog.py" line="60"/>
|
||||
<source>Initial Set up Language</source>
|
||||
<location filename="openlp/core/ui/firsttimelanguagedialog.py" line="61"/>
|
||||
<source>Select Translation</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimelanguagedialog.py" line="62"/>
|
||||
<source>Select the language you'd like to use in OpenLP.</source>
|
||||
<location filename="openlp/core/ui/firsttimelanguagedialog.py" line="63"/>
|
||||
<source>Choose the translation you'd like to use in OpenLP.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimelanguagedialog.py" line="65"/>
|
||||
<source>Translation:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>OpenLP.FirstTimeWizard</name>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="154"/>
|
||||
<source>Songs</source>
|
||||
<translation type="unfinished">Псалмы</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimeform.py" line="63"/>
|
||||
<source>Bibles</source>
|
||||
<translation type="unfinished">Священное Писание</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimeform.py" line="64"/>
|
||||
<source>Themes</source>
|
||||
<location filename="openlp/core/ui/firsttimeform.py" line="61"/>
|
||||
<source>Downloading %s...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimeform.py" line="65"/>
|
||||
<source>Starting Updates</source>
|
||||
<location filename="openlp/core/ui/firsttimeform.py" line="212"/>
|
||||
<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="67"/>
|
||||
<source>Downloading %s</source>
|
||||
<location filename="openlp/core/ui/firsttimeform.py" line="221"/>
|
||||
<source>Enabling selected plugins...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="140"/>
|
||||
<location filename="openlp/core/ui/firsttimeform.py" line="244"/>
|
||||
<source>Overwrite Existing Songs?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimeform.py" line="244"/>
|
||||
<source>Your songs database already exists and your current songs will be permanently lost, are you sure you want to replace it ?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="193"/>
|
||||
<source>First Time Wizard</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="142"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="195"/>
|
||||
<source>Welcome to the First Time Wizard</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="146"/>
|
||||
<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>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="199"/>
|
||||
<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="150"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="203"/>
|
||||
<source>Activate required Plugins</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="152"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="205"/>
|
||||
<source>Select the Plugins you wish to use. </source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="155"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="207"/>
|
||||
<source>Songs</source>
|
||||
<translation type="unfinished">Псалмы</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="208"/>
|
||||
<source>Custom Text</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="157"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="210"/>
|
||||
<source>Bible</source>
|
||||
<translation type="unfinished">Библия</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="158"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="211"/>
|
||||
<source>Images</source>
|
||||
<translation type="unfinished">Изображения</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="160"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="213"/>
|
||||
<source>Presentations</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="162"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="215"/>
|
||||
<source>Media (Audio and Video)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="164"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="217"/>
|
||||
<source>Allow remote access</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="166"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="219"/>
|
||||
<source>Monitor Song Usage</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="168"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="221"/>
|
||||
<source>Allow Alerts</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="170"/>
|
||||
<source>Download Samples from OpenLP.org</source>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="223"/>
|
||||
<source>No Internet Connection</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="172"/>
|
||||
<source>Select samples to downlaod and install for use.</source>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="225"/>
|
||||
<source>Unable to detect an Internet connection.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="175"/>
|
||||
<source>No Internet connection found so unable to download any default files.</source>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="228"/>
|
||||
<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 type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="178"/>
|
||||
<source>Download Example Files</source>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="236"/>
|
||||
<source>Sample Songs</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="180"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="238"/>
|
||||
<source>Select and download public domain songs.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="240"/>
|
||||
<source>Sample Bibles</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="242"/>
|
||||
<source>Select and download free Bibles.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="244"/>
|
||||
<source>Sample Themes</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="246"/>
|
||||
<source>Select and download sample themes.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="248"/>
|
||||
<source>Default Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="182"/>
|
||||
<source>Set up default values to be used by OpenLP</source>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="250"/>
|
||||
<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="184"/>
|
||||
<source>Default output display</source>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="252"/>
|
||||
<source>Setting Up And Importing</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="186"/>
|
||||
<source>Select the default Theme</source>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="254"/>
|
||||
<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="188"/>
|
||||
<source>Press finish to apply all your changes and start OpenLP</source>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="256"/>
|
||||
<source>Default output display:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="258"/>
|
||||
<source>Select default theme:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="260"/>
|
||||
<source>Starting configuration process...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
@ -1693,12 +1743,12 @@ Version: %s
|
||||
<context>
|
||||
<name>OpenLP.LanguageManager</name>
|
||||
<message>
|
||||
<location filename="openlp/core/utils/languagemanager.py" line="126"/>
|
||||
<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="126"/>
|
||||
<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>
|
||||
@ -2019,17 +2069,12 @@ Version: %s
|
||||
<translation>&Веб-сайт</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="428"/>
|
||||
<source>&Auto Detect</source>
|
||||
<translation>&Автоопределение</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="430"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="434"/>
|
||||
<source>Use the system language, if available.</source>
|
||||
<translation>Использовать системный язык, если доступно.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="434"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="430"/>
|
||||
<source>Set the interface language to %s</source>
|
||||
<translation>Изменить язык интерфеса на %s</translation>
|
||||
</message>
|
||||
@ -2074,39 +2119,39 @@ Version: %s
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="644"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="642"/>
|
||||
<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="648"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="646"/>
|
||||
<source>OpenLP Version Updated</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="686"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="684"/>
|
||||
<source>OpenLP Main Display Blanked</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="686"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="684"/>
|
||||
<source>The Main Display has been blanked out</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="817"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="815"/>
|
||||
<source>Close OpenLP</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="817"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="815"/>
|
||||
<source>Are you sure you want to close OpenLP?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="895"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="893"/>
|
||||
<source>Default Theme: %s</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -2131,11 +2176,16 @@ You can download the latest version from http://openlp.org/.</source>
|
||||
<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="432"/>
|
||||
<source>&Autodetect</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>OpenLP.MediaManagerItem</name>
|
||||
<message>
|
||||
<location filename="openlp/core/lib/__init__.py" line="287"/>
|
||||
<location filename="openlp/core/lib/__init__.py" line="286"/>
|
||||
<source>No Items Selected</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -2463,7 +2513,7 @@ You can download the latest version from http://openlp.org/.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="466"/>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="494"/>
|
||||
<source>OpenLP Service Files (*.osz)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -2473,28 +2523,28 @@ You can download the latest version from http://openlp.org/.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="493"/>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="521"/>
|
||||
<source>File is not a valid service.
|
||||
The content encoding is not UTF-8.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="525"/>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="553"/>
|
||||
<source>File is not a valid service.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="1051"/>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="1079"/>
|
||||
<source>Missing Display Handler</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="1017"/>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="1045"/>
|
||||
<source>Your item cannot be displayed as there is no handler to display it</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="1051"/>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="1079"/>
|
||||
<source>Your item cannot be displayed as the plugin required to display it is missing or inactive</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -3945,22 +3995,32 @@ The content encoding is not UTF-8.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="92"/>
|
||||
<location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="101"/>
|
||||
<source>usage_detail_%s_%s.txt</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="114"/>
|
||||
<location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="123"/>
|
||||
<source>Report Creation</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="114"/>
|
||||
<location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="123"/>
|
||||
<source>Report
|
||||
%s
|
||||
has been successfully created. </source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="92"/>
|
||||
<source>Output Path Not Selected</source>
|
||||
<translation type="unfinished"></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>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>SongsPlugin</name>
|
||||
@ -4053,85 +4113,85 @@ The encoding is responsible for the correct character representation.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="104"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="103"/>
|
||||
<source>&Song</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="85"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="84"/>
|
||||
<source>Import songs using the import wizard.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="126"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="125"/>
|
||||
<source>&Re-index Songs</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="128"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="127"/>
|
||||
<source>Re-index the songs database to improve searching and ordering.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="141"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="140"/>
|
||||
<source>Reindexing songs...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="183"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="182"/>
|
||||
<source><strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="227"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="226"/>
|
||||
<source>Song</source>
|
||||
<comment>name singular</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="228"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="227"/>
|
||||
<source>Songs</source>
|
||||
<comment>name plural</comment>
|
||||
<translation type="unfinished">Псалмы</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="232"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="231"/>
|
||||
<source>Songs</source>
|
||||
<comment>container title</comment>
|
||||
<translation>Псалмы</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="238"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="237"/>
|
||||
<source>Add a new Song</source>
|
||||
<translation>Добавить новый Псалом</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="239"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="238"/>
|
||||
<source>Edit the selected Song</source>
|
||||
<translation>Редактировать выбранный Псалом</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="240"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="239"/>
|
||||
<source>Delete the selected Song</source>
|
||||
<translation>Удалить выбранный Псалом</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="241"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="240"/>
|
||||
<source>Preview the selected Song</source>
|
||||
<translation>Прсомотреть выбранный Псалом</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="242"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="241"/>
|
||||
<source>Send the selected Song live</source>
|
||||
<translation>Вывести выбранный псалом на Проектор</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="243"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="242"/>
|
||||
<source>Add the selected Song to the service</source>
|
||||
<translation>Добавить выбранный Псалом к служению</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="106"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="105"/>
|
||||
<source>Exports songs using the export wizard.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -4592,12 +4652,12 @@ The encoding is responsible for the correct character representation.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="318"/>
|
||||
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="321"/>
|
||||
<source>Delete Song(s)?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message numerus="yes">
|
||||
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="318"/>
|
||||
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="321"/>
|
||||
<source>Are you sure you want to delete the %n selected song(s)?</source>
|
||||
<translation type="unfinished">
|
||||
<numerusform></numerusform>
|
||||
@ -4606,7 +4666,7 @@ The encoding is responsible for the correct character representation.</source>
|
||||
</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="400"/>
|
||||
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="403"/>
|
||||
<source>CCLI License: </source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -211,7 +211,7 @@ Do you want to continue anyway?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/bibles/lib/mediaitem.py" line="540"/>
|
||||
<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>
|
||||
</message>
|
||||
@ -832,59 +832,59 @@ demand and thus an internet connection is required.</source>
|
||||
<context>
|
||||
<name>ImagePlugin</name>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="45"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="44"/>
|
||||
<source><strong>Image Plugin</strong><br />The image plugin provides displaying of images.<br />One of the distinguishing features of this plugin is the ability to group a number of images together in the service manager, making the displaying of multiple images easier. This plugin can also make use of OpenLP's "timed looping" feature to create a slide show that runs automatically. In addition to this, images from the plugin can be used to override the current theme's background, which renders text-based items like songs with the selected image as a background instead of the background provided by the theme.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="73"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="72"/>
|
||||
<source>Load a new Image</source>
|
||||
<translation>Ladda en ny bild</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="75"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="74"/>
|
||||
<source>Add a new Image</source>
|
||||
<translation>Lägg till en ny bild</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="76"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="75"/>
|
||||
<source>Edit the selected Image</source>
|
||||
<translation>Redigera vald bild</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="77"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="76"/>
|
||||
<source>Delete the selected Image</source>
|
||||
<translation>Ta bort vald bild</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="78"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="77"/>
|
||||
<source>Preview the selected Image</source>
|
||||
<translation>Förhandsgranska vald bild</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="79"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="78"/>
|
||||
<source>Send the selected Image live</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="80"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="79"/>
|
||||
<source>Add the selected Image to the service</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="64"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="63"/>
|
||||
<source>Image</source>
|
||||
<comment>name singular</comment>
|
||||
<translation type="unfinished">Bild</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="65"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="64"/>
|
||||
<source>Images</source>
|
||||
<comment>name plural</comment>
|
||||
<translation type="unfinished">Bilder</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="69"/>
|
||||
<location filename="openlp/plugins/images/imageplugin.py" line="68"/>
|
||||
<source>Images</source>
|
||||
<comment>container title</comment>
|
||||
<translation>Bilder</translation>
|
||||
@ -941,59 +941,59 @@ Vill du lägga till dom andra bilderna ändå?</translation>
|
||||
<context>
|
||||
<name>MediaPlugin</name>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="70"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="93"/>
|
||||
<source><strong>Media Plugin</strong><br />The media plugin provides playback of audio and video.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="89"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="112"/>
|
||||
<source>Load a new Media</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="91"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="114"/>
|
||||
<source>Add a new Media</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="92"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="115"/>
|
||||
<source>Edit the selected Media</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="93"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="116"/>
|
||||
<source>Delete the selected Media</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="94"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="117"/>
|
||||
<source>Preview the selected Media</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="95"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="118"/>
|
||||
<source>Send the selected Media live</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="96"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="119"/>
|
||||
<source>Add the selected Media to the service</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="80"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="103"/>
|
||||
<source>Media</source>
|
||||
<comment>name singular</comment>
|
||||
<translation type="unfinished">Media</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="81"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="104"/>
|
||||
<source>Media</source>
|
||||
<comment>name plural</comment>
|
||||
<translation type="unfinished">Media</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="85"/>
|
||||
<location filename="openlp/plugins/media/mediaplugin.py" line="108"/>
|
||||
<source>Media</source>
|
||||
<comment>container title</comment>
|
||||
<translation type="unfinished">Media</translation>
|
||||
@ -1091,14 +1091,6 @@ OpenLP is written and maintained by volunteers. If you would like to see more fr
|
||||
<source> build %s</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</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,
|
||||
Meinert Jordan, Andreas Preikschat, Christian Richter, Philip
|
||||
Ridout, Maikel Stuivenberg, Martin Thompson, Jon Tibble, CarstennTinggaard, Frode Woldsund</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/aboutdialog.py" line="231"/>
|
||||
<source>This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License.</source>
|
||||
@ -1174,6 +1166,15 @@ Final Credit
|
||||
He has set us free.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</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,
|
||||
Meinert Jordan, Andreas Preikschat, Christian Richter, Philip
|
||||
Ridout, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Carsten
|
||||
Tinggaard, Frode Woldsund</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>OpenLP.AdvancedTab</name>
|
||||
@ -1277,17 +1278,17 @@ Final Credit
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/displaytagdialog.py" line="145"/>
|
||||
<source>Tag id</source>
|
||||
<source>Tag Id</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/displaytagdialog.py" line="147"/>
|
||||
<source>Start Html</source>
|
||||
<source>Start HTML</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/displaytagdialog.py" line="149"/>
|
||||
<source>End Html</source>
|
||||
<source>End HTML</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
@ -1425,151 +1426,200 @@ Version: %s
|
||||
<context>
|
||||
<name>OpenLP.FirstTimeLanguageForm</name>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimelanguagedialog.py" line="60"/>
|
||||
<source>Initial Set up Language</source>
|
||||
<location filename="openlp/core/ui/firsttimelanguagedialog.py" line="61"/>
|
||||
<source>Select Translation</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimelanguagedialog.py" line="62"/>
|
||||
<source>Select the language you'd like to use in OpenLP.</source>
|
||||
<location filename="openlp/core/ui/firsttimelanguagedialog.py" line="63"/>
|
||||
<source>Choose the translation you'd like to use in OpenLP.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimelanguagedialog.py" line="65"/>
|
||||
<source>Translation:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>OpenLP.FirstTimeWizard</name>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="154"/>
|
||||
<source>Songs</source>
|
||||
<location filename="openlp/core/ui/firsttimeform.py" line="61"/>
|
||||
<source>Downloading %s...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimeform.py" line="63"/>
|
||||
<source>Bibles</source>
|
||||
<location filename="openlp/core/ui/firsttimeform.py" line="212"/>
|
||||
<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="64"/>
|
||||
<source>Themes</source>
|
||||
<location filename="openlp/core/ui/firsttimeform.py" line="221"/>
|
||||
<source>Enabling selected plugins...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimeform.py" line="65"/>
|
||||
<source>Starting Updates</source>
|
||||
<location filename="openlp/core/ui/firsttimeform.py" line="244"/>
|
||||
<source>Overwrite Existing Songs?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimeform.py" line="67"/>
|
||||
<source>Downloading %s</source>
|
||||
<location filename="openlp/core/ui/firsttimeform.py" line="244"/>
|
||||
<source>Your songs database already exists and your current songs will be permanently lost, are you sure you want to replace it ?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="140"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="193"/>
|
||||
<source>First Time Wizard</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="142"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="195"/>
|
||||
<source>Welcome to the First Time Wizard</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="146"/>
|
||||
<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>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="199"/>
|
||||
<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="150"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="203"/>
|
||||
<source>Activate required Plugins</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="152"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="205"/>
|
||||
<source>Select the Plugins you wish to use. </source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="155"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="207"/>
|
||||
<source>Songs</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="208"/>
|
||||
<source>Custom Text</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="157"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="210"/>
|
||||
<source>Bible</source>
|
||||
<translation type="unfinished">Bibel</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="158"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="211"/>
|
||||
<source>Images</source>
|
||||
<translation type="unfinished">Bilder</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="160"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="213"/>
|
||||
<source>Presentations</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="162"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="215"/>
|
||||
<source>Media (Audio and Video)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="164"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="217"/>
|
||||
<source>Allow remote access</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="166"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="219"/>
|
||||
<source>Monitor Song Usage</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="168"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="221"/>
|
||||
<source>Allow Alerts</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="170"/>
|
||||
<source>Download Samples from OpenLP.org</source>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="223"/>
|
||||
<source>No Internet Connection</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="172"/>
|
||||
<source>Select samples to downlaod and install for use.</source>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="225"/>
|
||||
<source>Unable to detect an Internet connection.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="175"/>
|
||||
<source>No Internet connection found so unable to download any default files.</source>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="228"/>
|
||||
<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 type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="178"/>
|
||||
<source>Download Example Files</source>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="236"/>
|
||||
<source>Sample Songs</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="180"/>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="238"/>
|
||||
<source>Select and download public domain songs.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="240"/>
|
||||
<source>Sample Bibles</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="242"/>
|
||||
<source>Select and download free Bibles.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="244"/>
|
||||
<source>Sample Themes</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="246"/>
|
||||
<source>Select and download sample themes.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="248"/>
|
||||
<source>Default Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="182"/>
|
||||
<source>Set up default values to be used by OpenLP</source>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="250"/>
|
||||
<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="184"/>
|
||||
<source>Default output display</source>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="252"/>
|
||||
<source>Setting Up And Importing</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="186"/>
|
||||
<source>Select the default Theme</source>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="254"/>
|
||||
<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="188"/>
|
||||
<source>Press finish to apply all your changes and start OpenLP</source>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="256"/>
|
||||
<source>Default output display:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="258"/>
|
||||
<source>Select default theme:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/firsttimewizard.py" line="260"/>
|
||||
<source>Starting configuration process...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
@ -1694,12 +1744,12 @@ Version: %s
|
||||
<context>
|
||||
<name>OpenLP.LanguageManager</name>
|
||||
<message>
|
||||
<location filename="openlp/core/utils/languagemanager.py" line="126"/>
|
||||
<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="126"/>
|
||||
<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>
|
||||
@ -2005,17 +2055,12 @@ Version: %s
|
||||
<translation type="unfinished">&Webbsida</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="428"/>
|
||||
<source>&Auto Detect</source>
|
||||
<translation>Välj &automatiskt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="430"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="434"/>
|
||||
<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="434"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="430"/>
|
||||
<source>Set the interface language to %s</source>
|
||||
<translation>Sätt användargränssnittets språk till %s</translation>
|
||||
</message>
|
||||
@ -2060,29 +2105,29 @@ Version: %s
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="644"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="642"/>
|
||||
<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="648"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="646"/>
|
||||
<source>OpenLP Version Updated</source>
|
||||
<translation>OpenLP-versionen uppdaterad</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="686"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="684"/>
|
||||
<source>OpenLP Main Display Blanked</source>
|
||||
<translation>OpenLPs huvuddisplay rensad</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="686"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="684"/>
|
||||
<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="895"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="893"/>
|
||||
<source>Default Theme: %s</source>
|
||||
<translation>Standardtema: %s</translation>
|
||||
</message>
|
||||
@ -2098,12 +2143,12 @@ 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="817"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="815"/>
|
||||
<source>Close OpenLP</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="817"/>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="815"/>
|
||||
<source>Are you sure you want to close OpenLP?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -2132,11 +2177,16 @@ You can download the latest version from http://openlp.org/.</source>
|
||||
<source>&Configure Display Tags</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/mainwindow.py" line="432"/>
|
||||
<source>&Autodetect</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>OpenLP.MediaManagerItem</name>
|
||||
<message>
|
||||
<location filename="openlp/core/lib/__init__.py" line="287"/>
|
||||
<location filename="openlp/core/lib/__init__.py" line="286"/>
|
||||
<source>No Items Selected</source>
|
||||
<translation>Inget objekt valt</translation>
|
||||
</message>
|
||||
@ -2414,28 +2464,28 @@ You can download the latest version from http://openlp.org/.</source>
|
||||
<translation type="unfinished">&Byt objektets tema</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="493"/>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="521"/>
|
||||
<source>File is not a valid service.
|
||||
The content encoding is not UTF-8.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="525"/>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="553"/>
|
||||
<source>File is not a valid service.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="1051"/>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="1079"/>
|
||||
<source>Missing Display Handler</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="1017"/>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="1045"/>
|
||||
<source>Your item cannot be displayed as there is no handler to display it</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="1051"/>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="1079"/>
|
||||
<source>Your item cannot be displayed as the plugin required to display it is missing or inactive</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -2465,7 +2515,7 @@ The content encoding is not UTF-8.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="466"/>
|
||||
<location filename="openlp/core/ui/servicemanager.py" line="494"/>
|
||||
<source>OpenLP Service Files (*.osz)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -3946,99 +3996,109 @@ The content encoding is not UTF-8.</source>
|
||||
<translation type="unfinished">Utfil sökväg</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="92"/>
|
||||
<location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="101"/>
|
||||
<source>usage_detail_%s_%s.txt</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="114"/>
|
||||
<location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="123"/>
|
||||
<source>Report Creation</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="114"/>
|
||||
<location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="123"/>
|
||||
<source>Report
|
||||
%s
|
||||
has been successfully created. </source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="92"/>
|
||||
<source>Output Path Not Selected</source>
|
||||
<translation type="unfinished"></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>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>SongsPlugin</name>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="104"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="103"/>
|
||||
<source>&Song</source>
|
||||
<translation>&Sång</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="85"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="84"/>
|
||||
<source>Import songs using the import wizard.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="183"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="182"/>
|
||||
<source><strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="126"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="125"/>
|
||||
<source>&Re-index Songs</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="128"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="127"/>
|
||||
<source>Re-index the songs database to improve searching and ordering.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="141"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="140"/>
|
||||
<source>Reindexing songs...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="238"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="237"/>
|
||||
<source>Add a new Song</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="239"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="238"/>
|
||||
<source>Edit the selected Song</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="240"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="239"/>
|
||||
<source>Delete the selected Song</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="241"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="240"/>
|
||||
<source>Preview the selected Song</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="242"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="241"/>
|
||||
<source>Send the selected Song live</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="243"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="242"/>
|
||||
<source>Add the selected Song to the service</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="227"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="226"/>
|
||||
<source>Song</source>
|
||||
<comment>name singular</comment>
|
||||
<translation type="unfinished">Sång</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="228"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="227"/>
|
||||
<source>Songs</source>
|
||||
<comment>name plural</comment>
|
||||
<translation type="unfinished">Sånger</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="232"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="231"/>
|
||||
<source>Songs</source>
|
||||
<comment>container title</comment>
|
||||
<translation type="unfinished">Sånger</translation>
|
||||
@ -4132,7 +4192,7 @@ The encoding is responsible for the correct character representation.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="106"/>
|
||||
<location filename="openlp/plugins/songs/songsplugin.py" line="105"/>
|
||||
<source>Exports songs using the export wizard.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -4588,12 +4648,12 @@ The encoding is responsible for the correct character representation.</source>
|
||||
<translation type="unfinished">Sångtexter</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="318"/>
|
||||
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="321"/>
|
||||
<source>Delete Song(s)?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="400"/>
|
||||
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="403"/>
|
||||
<source>CCLI License: </source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -4603,7 +4663,7 @@ The encoding is responsible for the correct character representation.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message numerus="yes">
|
||||
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="318"/>
|
||||
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="321"/>
|
||||
<source>Are you sure you want to delete the %n selected song(s)?</source>
|
||||
<translation type="unfinished">
|
||||
<numerusform></numerusform>
|
||||
|
4929
resources/i18n/zh_CN.ts
Normal file
4929
resources/i18n/zh_CN.ts
Normal file
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user