HEAD r1386

This commit is contained in:
Armin Köhler 2011-03-13 20:56:08 +01:00
commit 251c70fa47
35 changed files with 8303 additions and 2350 deletions

View File

@ -4,13 +4,10 @@ recursive-include openlp *.csv
recursive-include openlp *.html recursive-include openlp *.html
recursive-include openlp *.js recursive-include openlp *.js
recursive-include openlp *.css recursive-include openlp *.css
recursive-include openlp *.qm
recursive-include documentation * recursive-include documentation *
recursive-include resources/forms * recursive-include resources *
recursive-include resources/i18n * recursive-include scripts *
recursive-include resources/images *
recursive-include scripts *.py
include resources/*.desktop
include copyright.txt include copyright.txt
include LICENSE include LICENSE
include README.txt
include openlp/.version include openlp/.version

View File

@ -184,9 +184,8 @@ class OpenLP(QtGui.QApplication):
# make sure Qt really display the splash screen # make sure Qt really display the splash screen
self.processEvents() self.processEvents()
# start the main app window # start the main app window
self.appClipboard = self.clipboard() self.mainWindow = MainWindow(screens, app_version, self.clipboard(),
self.mainWindow = MainWindow(screens, app_version, self.appClipboard, not has_run_wizard)
has_run_wizard)
self.mainWindow.show() self.mainWindow.show()
if show_splash: if show_splash:
# now kill the splashscreen # now kill the splashscreen

View File

@ -49,16 +49,13 @@ class PluginManager(object):
``plugin_dir`` ``plugin_dir``
The directory to search for plugins. 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: if not plugin_dir in sys.path:
log.debug(u'Inserting %s into sys.path', plugin_dir) log.debug(u'Inserting %s into sys.path', plugin_dir)
sys.path.insert(0, plugin_dir) sys.path.insert(0, plugin_dir)
self.basepath = os.path.abspath(plugin_dir) self.basepath = os.path.abspath(plugin_dir)
log.debug(u'Base path %s ', self.basepath) log.debug(u'Base path %s ', self.basepath)
self.plugin_helpers = []
self.plugins = [] self.plugins = []
# this has to happen after the UI is sorted
# self.find_plugins(plugin_dir)
log.info(u'Plugin manager Initialised') log.info(u'Plugin manager Initialised')
def find_plugins(self, plugin_dir, plugin_helpers): 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. 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)) startdepth = len(os.path.abspath(plugin_dir).split(os.sep))
log.debug(u'finding plugins in %s at depth %d', log.debug(u'finding plugins in %s at depth %d',
unicode(plugin_dir), startdepth) unicode(plugin_dir), startdepth)
@ -102,11 +99,11 @@ class PluginManager(object):
plugin_objects = [] plugin_objects = []
for p in plugin_classes: for p in plugin_classes:
try: try:
plugin = p(self.plugin_helpers) plugin = p(plugin_helpers)
log.debug(u'Loaded plugin %s with helpers', unicode(p)) log.debug(u'Loaded plugin %s', unicode(p))
plugin_objects.append(plugin) plugin_objects.append(plugin)
except TypeError: 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) plugins_list = sorted(plugin_objects, self.order_by_weight)
for plugin in plugins_list: for plugin in plugins_list:
if plugin.checkPreConditions(): if plugin.checkPreConditions():
@ -203,6 +200,7 @@ class PluginManager(object):
Loop through all the plugins and give them an opportunity to Loop through all the plugins and give them an opportunity to
initialise themselves. initialise themselves.
""" """
log.info(u'Initialise Plugins - Started')
for plugin in self.plugins: for plugin in self.plugins:
log.info(u'initialising plugins %s in a %s state' log.info(u'initialising plugins %s in a %s state'
% (plugin.name, plugin.isActive())) % (plugin.name, plugin.isActive()))
@ -211,6 +209,7 @@ class PluginManager(object):
log.info(u'Initialisation Complete for %s ' % plugin.name) log.info(u'Initialisation Complete for %s ' % plugin.name)
if not plugin.isActive(): if not plugin.isActive():
plugin.removeToolboxItem() plugin.removeToolboxItem()
log.info(u'Initialise Plugins - Finished')
def finalise_plugins(self): def finalise_plugins(self):
""" """

View File

@ -183,6 +183,10 @@ class ServiceItem(object):
else: else:
log.error(u'Invalid value renderer :%s' % self.service_item_type) log.error(u'Invalid value renderer :%s' % self.service_item_type)
self.title = clean_tags(self.title) 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 = \ self.foot_text = \
u'<br>'.join([footer for footer in self.raw_footer if footer]) u'<br>'.join([footer for footer in self.raw_footer if footer])

View File

@ -48,7 +48,7 @@ class OpenLPToolbar(QtGui.QToolBar):
self.icons = {} self.icons = {}
self.setIconSize(QtCore.QSize(20, 20)) self.setIconSize(QtCore.QSize(20, 20))
self.actions = {} 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, def addToolbarButton(self, title, icon, tooltip=None, slot=None,
checkable=False, shortcut=0, alternate=0, checkable=False, shortcut=0, alternate=0,

View File

@ -143,11 +143,11 @@ class Ui_DisplayTagDialog(object):
self.tagTableWidget.horizontalHeaderItem(0).setText( self.tagTableWidget.horizontalHeaderItem(0).setText(
translate('OpenLP.DisplayTagDialog', 'Description')) translate('OpenLP.DisplayTagDialog', 'Description'))
self.tagTableWidget.horizontalHeaderItem(1).setText( self.tagTableWidget.horizontalHeaderItem(1).setText(
translate('OpenLP.DisplayTagDialog', 'Tag id')) translate('OpenLP.DisplayTagDialog', 'Tag Id'))
self.tagTableWidget.horizontalHeaderItem(2).setText( self.tagTableWidget.horizontalHeaderItem(2).setText(
translate('OpenLP.DisplayTagDialog', 'Start Html')) translate('OpenLP.DisplayTagDialog', 'Start HTML'))
self.tagTableWidget.horizontalHeaderItem(3).setText( self.tagTableWidget.horizontalHeaderItem(3).setText(
translate('OpenLP.DisplayTagDialog', 'End Html')) translate('OpenLP.DisplayTagDialog', 'End HTML'))
self.tagTableWidget.setColumnWidth(0, 120) self.tagTableWidget.setColumnWidth(0, 120)
self.tagTableWidget.setColumnWidth(1, 40) self.tagTableWidget.setColumnWidth(1, 40)
self.tagTableWidget.setColumnWidth(2, 240) self.tagTableWidget.setColumnWidth(2, 240)

View File

@ -178,8 +178,8 @@ class FirstTimeForm(QtGui.QWizard, Ui_FirstTimeWizard):
""" """
Prepare the UI for the process. Prepare the UI for the process.
""" """
# We start on 9 for the 9 plugins # We start on 2 for plugins status setting plus a "finished" point.
max_progress = 9 max_progress = 2
# Loop through the songs list and increase for each selected item # Loop through the songs list and increase for each selected item
for i in xrange(self.songsListWidget.count()): for i in xrange(self.songsListWidget.count()):
if self.songsListWidget.item(i).checkState() == QtCore.Qt.Checked: if self.songsListWidget.item(i).checkState() == QtCore.Qt.Checked:
@ -209,6 +209,8 @@ class FirstTimeForm(QtGui.QWizard, Ui_FirstTimeWizard):
self.finishButton.setEnabled(True) self.finishButton.setEnabled(True)
self.cancelButton.setVisible(False) self.cancelButton.setVisible(False)
self.nextButton.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') Receiver.send_message(u'openlp_process_events')
def _performWizard(self): def _performWizard(self):
@ -219,21 +221,13 @@ class FirstTimeForm(QtGui.QWizard, Ui_FirstTimeWizard):
self._incrementProgressBar(translate('OpenLP.FirstTimeWizard', self._incrementProgressBar(translate('OpenLP.FirstTimeWizard',
'Enabling selected plugins...')) 'Enabling selected plugins...'))
self._setPluginStatus(self.songsCheckBox, u'songs/status') self._setPluginStatus(self.songsCheckBox, u'songs/status')
self._incrementProgressBar(None)
self._setPluginStatus(self.bibleCheckBox, u'bibles/status') self._setPluginStatus(self.bibleCheckBox, u'bibles/status')
self._incrementProgressBar(None)
self._setPluginStatus(self.presentationCheckBox, u'presentations/status') self._setPluginStatus(self.presentationCheckBox, u'presentations/status')
self._incrementProgressBar(None)
self._setPluginStatus(self.imageCheckBox, u'images/status') self._setPluginStatus(self.imageCheckBox, u'images/status')
self._incrementProgressBar(None)
self._setPluginStatus(self.mediaCheckBox, u'media/status') self._setPluginStatus(self.mediaCheckBox, u'media/status')
self._incrementProgressBar(None)
self._setPluginStatus(self.remoteCheckBox, u'remotes/status') self._setPluginStatus(self.remoteCheckBox, u'remotes/status')
self._incrementProgressBar(None)
self._setPluginStatus(self.customCheckBox, u'custom/status') self._setPluginStatus(self.customCheckBox, u'custom/status')
self._incrementProgressBar(None)
self._setPluginStatus(self.songUsageCheckBox, u'songusage/status') self._setPluginStatus(self.songUsageCheckBox, u'songusage/status')
self._incrementProgressBar(None)
self._setPluginStatus(self.alertCheckBox, u'alerts/status') self._setPluginStatus(self.alertCheckBox, u'alerts/status')
# Build directories for downloads # Build directories for downloads
songs_destination = AppLocation.get_section_data_path(u'songs') songs_destination = AppLocation.get_section_data_path(u'songs')

View File

@ -35,6 +35,7 @@ import urllib2
from datetime import datetime from datetime import datetime
from PyQt4 import QtGui, QtCore from PyQt4 import QtGui, QtCore
if sys.platform != u'win32' and sys.platform != u'darwin': if sys.platform != u'win32' and sys.platform != u'darwin':
try: try:
from xdg import BaseDirectory from xdg import BaseDirectory
@ -134,7 +135,7 @@ class AppLocation(object):
elif dir_type == AppLocation.LanguageDir: elif dir_type == AppLocation.LanguageDir:
app_path = _get_frozen_path( app_path = _get_frozen_path(
os.path.abspath(os.path.split(sys.argv[0])[0]), 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') return os.path.join(app_path, u'i18n')
else: else:
return _get_os_dir_path(dir_type) return _get_os_dir_path(dir_type)
@ -169,15 +170,21 @@ def _get_os_dir_path(dir_type):
if dir_type == AppLocation.DataDir: if dir_type == AppLocation.DataDir:
return os.path.join(unicode(os.getenv(u'APPDATA'), encoding), return os.path.join(unicode(os.getenv(u'APPDATA'), encoding),
u'openlp', u'data') 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), return os.path.join(unicode(os.getenv(u'APPDATA'), encoding),
u'openlp') u'openlp')
elif sys.platform == u'darwin': elif sys.platform == u'darwin':
if dir_type == AppLocation.DataDir: if dir_type == AppLocation.DataDir:
return os.path.join(unicode(os.getenv(u'HOME'), encoding), return os.path.join(unicode(os.getenv(u'HOME'), encoding),
u'Library', u'Application Support', u'openlp', u'Data') 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), return os.path.join(unicode(os.getenv(u'HOME'), encoding),
u'Library', u'Application Support', u'openlp') u'Library', u'Application Support', u'openlp')
else: else:
if dir_type == AppLocation.LanguageDir:
return os.path.join(u'/usr', u'share', u'openlp')
if XDG_BASE_AVAILABLE: if XDG_BASE_AVAILABLE:
if dir_type == AppLocation.ConfigDir: if dir_type == AppLocation.ConfigDir:
return os.path.join(unicode(BaseDirectory.xdg_config_home, return os.path.join(unicode(BaseDirectory.xdg_config_home,

View File

@ -63,6 +63,8 @@ class LanguageManager(object):
""" """
Find all available language files in this OpenLP install 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( trans_dir = QtCore.QDir(AppLocation.get_directory(
AppLocation.LanguageDir)) AppLocation.LanguageDir))
file_names = trans_dir.entryList(QtCore.QStringList(u'*.qm'), file_names = trans_dir.entryList(QtCore.QStringList(u'*.qm'),

View File

@ -25,15 +25,15 @@
############################################################################### ###############################################################################
import logging import logging
import os
from PyQt4 import QtCore from PyQt4 import QtCore
from openlp.core.lib import Receiver, SettingsManager, translate 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 import parse_reference
from openlp.plugins.bibles.lib.db import BibleDB, BibleMeta, SpellingDB, \ from openlp.plugins.bibles.lib.db import BibleDB, BibleMeta, SpellingDB, \
Spelling, BiblesResourcesDB Spelling, BiblesResourcesDB
from csvbible import CSVBible from csvbible import CSVBible
from http import HTTPBible from http import HTTPBible
from opensong import OpenSongBible from opensong import OpenSongBible
@ -146,6 +146,10 @@ class BibleManager(object):
for filename in files: for filename in files:
bible = BibleDB(self.parent, path=self.path, file=filename) bible = BibleDB(self.parent, path=self.path, file=filename)
name = bible.get_name() 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) log.debug(u'Bible Name: "%s"', name)
self.db_cache[name] = bible self.db_cache[name] = bible
# Look to see if lazy load bible exists and get create getter. # 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 = {}
self.spelling_cache[u'spelling'] = SpellingDB(self.parent, self.spelling_cache[u'spelling'] = SpellingDB(self.parent,
path=self.path) 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') log.debug(u'Spelling reloaded')
def set_process_dialog(self, wizard): def set_process_dialog(self, wizard):

View File

@ -45,6 +45,18 @@ class MediaPlugin(Plugin):
self.icon = build_icon(self.icon_path) self.icon = build_icon(self.icon_path)
# passed with drag and drop messages # passed with drag and drop messages
self.dnd_id = u'Media' 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.audio_extensions_list = []
self.video_extensions_list = [] self.video_extensions_list = []
mimetypes.init() mimetypes.init()
@ -65,6 +77,17 @@ class MediaPlugin(Plugin):
self.serviceManager.supportedSuffixes(extension[1:]) self.serviceManager.supportedSuffixes(extension[1:])
log.info(u'MediaPlugin: %s extensions: %s' % (mimetype, log.info(u'MediaPlugin: %s extensions: %s' % (mimetype,
u' '.join(extensions))) 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): def about(self):
about_text = translate('MediaPlugin', '<strong>Media Plugin</strong>' about_text = translate('MediaPlugin', '<strong>Media Plugin</strong>'

View File

@ -256,7 +256,7 @@ def init_schema(url):
mapper(Song, songs_table, mapper(Song, songs_table,
properties={ properties={
'authors': relation(Author, backref='songs', 'authors': relation(Author, backref='songs',
secondary=authors_songs_table), secondary=authors_songs_table, lazy=False),
'book': relation(Book, backref='songs'), 'book': relation(Book, backref='songs'),
'media_files': relation(MediaFile, backref='songs', 'media_files': relation(MediaFile, backref='songs',
secondary=media_files_songs_table), secondary=media_files_songs_table),

View File

@ -253,9 +253,9 @@ class SongMediaItem(MediaManagerItem):
if self.searchAsYouType: if self.searchAsYouType:
search_length = 1 search_length = 1
if self.searchTextEdit.currentSearchType() == SongSearch.Entire: if self.searchTextEdit.currentSearchType() == SongSearch.Entire:
search_length = 7 search_length = 4
elif self.searchTextEdit.currentSearchType() == SongSearch.Lyrics: elif self.searchTextEdit.currentSearchType() == SongSearch.Lyrics:
search_length = 6 search_length = 3
if len(text) > search_length: if len(text) > search_length:
self.onSearchTextButtonClick() self.onSearchTextButtonClick()
elif len(text) == 0: elif len(text) == 0:
@ -310,6 +310,7 @@ class SongMediaItem(MediaManagerItem):
item_id = (self.editItem.data(QtCore.Qt.UserRole)).toInt()[0] item_id = (self.editItem.data(QtCore.Qt.UserRole)).toInt()[0]
self.edit_song_form.loadSong(item_id, False) self.edit_song_form.loadSong(item_id, False)
self.edit_song_form.exec_() self.edit_song_form.exec_()
self.editItem = None
def onDeleteClick(self): def onDeleteClick(self):
""" """

View File

@ -444,7 +444,6 @@ class OpenLyrics(object):
""" """
sxml = SongXML() sxml = SongXML()
search_text = u'' search_text = u''
temp_verse_order = []
for verse in lyrics.verse: for verse in lyrics.verse:
text = u'' text = u''
for lines in verse.lines: for lines in verse.lines:
@ -455,11 +454,10 @@ class OpenLyrics(object):
verse_type_index = VerseType.from_tag(verse_name[0]) verse_type_index = VerseType.from_tag(verse_name[0])
verse_type = VerseType.Names[verse_type_index] verse_type = VerseType.Names[verse_type_index]
verse_number = re.compile(u'[a-zA-Z]*').sub(u'', verse_name) 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". However, this does
# OpenLyrics allows e. g. "c", but we need "c1". # not correct the verse order.
if not verse_number: if not verse_number:
verse_number = u'1' verse_number = u'1'
temp_verse_order.append((verse_type, verse_number, verse_part))
lang = None lang = None
if self._get(verse, u'lang'): if self._get(verse, u'lang'):
lang = self._get(verse, u'lang') lang = self._get(verse, u'lang')
@ -470,24 +468,6 @@ class OpenLyrics(object):
# Process verse order # Process verse order
if hasattr(properties, u'verseOrder'): if hasattr(properties, u'verseOrder'):
song.verse_order = self._text(properties.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): def _process_songbooks(self, properties, song):
""" """

View File

@ -88,6 +88,15 @@ class SongUsageDetailForm(QtGui.QDialog, Ui_SongUsageDetailDialog):
""" """
log.debug(u'accept') log.debug(u'accept')
path = unicode(self.fileLineEdit.text()) 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) check_directory_exists(path)
filename = unicode(translate('SongUsagePlugin.SongUsageDetailForm', filename = unicode(translate('SongUsagePlugin.SongUsageDetailForm',
'usage_detail_%s_%s.txt')) % ( 'usage_detail_%s_%s.txt')) % (

View File

@ -2,12 +2,16 @@
# -*- makefile -*- # -*- makefile -*-
build: build:
mkdir -p openlp/i18n mkdir -p resources/i18n/qm
for TSFILE in resources/i18n/*.ts; do\ 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 done
install: 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: clean:
rm -fR resources/i18n/qm

View File

@ -2,8 +2,8 @@
DEB_PYTHON_SYSTEM := pysupport DEB_PYTHON_SYSTEM := pysupport
DEB_MAKE_BUILD_TARGET := build DEB_MAKE_BUILD_TARGET := build
DEB_MAKE_INSTALL_TARGET := DEB_MAKE_INSTALL_TARGET := install
DEB_MAKE_CLEAN_TARGET := DEB_MAKE_CLEAN_TARGET := clean
include /usr/share/cdbs/1/rules/debhelper.mk include /usr/share/cdbs/1/rules/debhelper.mk
include /usr/share/cdbs/1/class/python-distutils.mk include /usr/share/cdbs/1/class/python-distutils.mk

View File

@ -212,7 +212,7 @@ Gaan steeds voort?</translation>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>You cannot combine single and dual Bible verse search results. Do you want to delete your search results and start a new search?</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -841,59 +841,59 @@ afgelaai word en dus word &apos;n Internet konneksie benodig.</translation>
<context> <context>
<name>ImagePlugin</name> <name>ImagePlugin</name>
<message> <message>
<location filename="openlp/plugins/images/imageplugin.py" line="45"/> <location filename="openlp/plugins/images/imageplugin.py" line="44"/>
<source>&lt;strong&gt;Image Plugin&lt;/strong&gt;&lt;br /&gt;The image plugin provides displaying of images.&lt;br /&gt;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&apos;s &quot;timed looping&quot; 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&apos;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> <source>&lt;strong&gt;Image Plugin&lt;/strong&gt;&lt;br /&gt;The image plugin provides displaying of images.&lt;br /&gt;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&apos;s &quot;timed looping&quot; 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&apos;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>&lt;strong&gt;Beeld Mini-program&lt;/strong&gt;&lt;br/&gt;Die beeld mini-program verskaf vertoning van beelde.&lt;br/&gt;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 &quot;tydgebonde herhaling&quot;-funksie gebruik maak om &apos;n automatiese skyfe-vertoning te verkry. Verder kan beelde van hierdie mini-program gebruik word om die huidige tema se agtergrond te vervang hoewel &apos;n tema sy eie agtergrond het.</translation> <translation>&lt;strong&gt;Beeld Mini-program&lt;/strong&gt;&lt;br/&gt;Die beeld mini-program verskaf vertoning van beelde.&lt;br/&gt;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 &quot;tydgebonde herhaling&quot;-funksie gebruik maak om &apos;n automatiese skyfe-vertoning te verkry. Verder kan beelde van hierdie mini-program gebruik word om die huidige tema se agtergrond te vervang hoewel &apos;n tema sy eie agtergrond het.</translation>
</message> </message>
<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> <source>Load a new Image</source>
<translation>Laai &apos;n nuwe Beeld</translation> <translation>Laai &apos;n nuwe Beeld</translation>
</message> </message>
<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> <source>Add a new Image</source>
<translation>Voeg &apos;n nuwe Beeld by</translation> <translation>Voeg &apos;n nuwe Beeld by</translation>
</message> </message>
<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> <source>Edit the selected Image</source>
<translation>Redigeer die geselekteerde Beeld</translation> <translation>Redigeer die geselekteerde Beeld</translation>
</message> </message>
<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> <source>Delete the selected Image</source>
<translation>Wis die geselekteerde Beeld uit</translation> <translation>Wis die geselekteerde Beeld uit</translation>
</message> </message>
<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> <source>Preview the selected Image</source>
<translation>Sien voorskou van die geselekteerde Beeld</translation> <translation>Sien voorskou van die geselekteerde Beeld</translation>
</message> </message>
<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> <source>Send the selected Image live</source>
<translation>Stuur die geselekteerde Beeld regstreeks</translation> <translation>Stuur die geselekteerde Beeld regstreeks</translation>
</message> </message>
<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> <source>Add the selected Image to the service</source>
<translation>Voeg die geselekteerde Beeld by die diens</translation> <translation>Voeg die geselekteerde Beeld by die diens</translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/images/imageplugin.py" line="64"/> <location filename="openlp/plugins/images/imageplugin.py" line="63"/>
<source>Image</source> <source>Image</source>
<comment>name singular</comment> <comment>name singular</comment>
<translation type="unfinished">Beeld</translation> <translation type="unfinished">Beeld</translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/images/imageplugin.py" line="65"/> <location filename="openlp/plugins/images/imageplugin.py" line="64"/>
<source>Images</source> <source>Images</source>
<comment>name plural</comment> <comment>name plural</comment>
<translation type="unfinished">Beelde</translation> <translation type="unfinished">Beelde</translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/images/imageplugin.py" line="69"/> <location filename="openlp/plugins/images/imageplugin.py" line="68"/>
<source>Images</source> <source>Images</source>
<comment>container title</comment> <comment>container title</comment>
<translation>Beelde</translation> <translation>Beelde</translation>
@ -950,59 +950,59 @@ Voeg steeds die ander beelde by?</translation>
<context> <context>
<name>MediaPlugin</name> <name>MediaPlugin</name>
<message> <message>
<location filename="openlp/plugins/media/mediaplugin.py" line="70"/> <location filename="openlp/plugins/media/mediaplugin.py" line="93"/>
<source>&lt;strong&gt;Media Plugin&lt;/strong&gt;&lt;br /&gt;The media plugin provides playback of audio and video.</source> <source>&lt;strong&gt;Media Plugin&lt;/strong&gt;&lt;br /&gt;The media plugin provides playback of audio and video.</source>
<translation>&lt;strong&gt;Media Mini-program&lt;/strong&gt;&lt;br/&gt;Die media mini-program verskaf speel funksies van audio en video.</translation> <translation>&lt;strong&gt;Media Mini-program&lt;/strong&gt;&lt;br/&gt;Die media mini-program verskaf speel funksies van audio en video.</translation>
</message> </message>
<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> <source>Load a new Media</source>
<translation>Laai nuwe Media</translation> <translation>Laai nuwe Media</translation>
</message> </message>
<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> <source>Add a new Media</source>
<translation>Voeg nuwe Media by</translation> <translation>Voeg nuwe Media by</translation>
</message> </message>
<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> <source>Edit the selected Media</source>
<translation>Redigeer die geselekteerde Media</translation> <translation>Redigeer die geselekteerde Media</translation>
</message> </message>
<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> <source>Delete the selected Media</source>
<translation>Wis die geselekteerde Media uit</translation> <translation>Wis die geselekteerde Media uit</translation>
</message> </message>
<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> <source>Preview the selected Media</source>
<translation>Sien voorskou van die geselekteerde Media</translation> <translation>Sien voorskou van die geselekteerde Media</translation>
</message> </message>
<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> <source>Send the selected Media live</source>
<translation>Stuur die geselekteerde Media regstreeks</translation> <translation>Stuur die geselekteerde Media regstreeks</translation>
</message> </message>
<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> <source>Add the selected Media to the service</source>
<translation>Voeg die geselekteerde Media by die diens</translation> <translation>Voeg die geselekteerde Media by die diens</translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/media/mediaplugin.py" line="80"/> <location filename="openlp/plugins/media/mediaplugin.py" line="103"/>
<source>Media</source> <source>Media</source>
<comment>name singular</comment> <comment>name singular</comment>
<translation type="unfinished">Media</translation> <translation type="unfinished">Media</translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/media/mediaplugin.py" line="81"/> <location filename="openlp/plugins/media/mediaplugin.py" line="104"/>
<source>Media</source> <source>Media</source>
<comment>name plural</comment> <comment>name plural</comment>
<translation type="unfinished">Media</translation> <translation type="unfinished">Media</translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/media/mediaplugin.py" line="85"/> <location filename="openlp/plugins/media/mediaplugin.py" line="108"/>
<source>Media</source> <source>Media</source>
<comment>container title</comment> <comment>container title</comment>
<translation type="unfinished">Media</translation> <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> <source> build %s</source>
<translation>bou %s</translation> <translation>bou %s</translation>
</message> </message>
<message>
<location filename="openlp/core/ui/aboutdialog.py" line="224"/>
<source>Copyright &#xa9; 2004-2011 Raoul Snyman
Portions copyright &#xa9; 2004-2011 Tim Bentley, Jonathan Corwin, Michael Gorven, Scott Guerrieri,
Meinert Jordan, Andreas Preikschat, Christian Richter, Philip
Ridout, Maikel Stuivenberg, Martin Thompson, Jon Tibble, 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> <message>
<location filename="openlp/core/ui/aboutdialog.py" line="231"/> <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> <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> He has set us free.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message>
<location filename="openlp/core/ui/aboutdialog.py" line="224"/>
<source>Copyright &#xa9; 2004-2011 Raoul Snyman
Portions copyright &#xa9; 2004-2011 Tim Bentley, Jonathan Corwin, Michael Gorven, Scott Guerrieri,
Meinert Jordan, Andreas Preikschat, Christian Richter, Philip
Ridout, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Carsten
Tinggaard, Frode Woldsund</source>
<translation type="unfinished"></translation>
</message>
</context> </context>
<context> <context>
<name>OpenLP.AdvancedTab</name> <name>OpenLP.AdvancedTab</name>
@ -1295,18 +1293,18 @@ Final Credit
</message> </message>
<message> <message>
<location filename="openlp/core/ui/displaytagdialog.py" line="145"/> <location filename="openlp/core/ui/displaytagdialog.py" line="145"/>
<source>Tag id</source> <source>Tag Id</source>
<translation>Etiket id</translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/displaytagdialog.py" line="147"/> <location filename="openlp/core/ui/displaytagdialog.py" line="147"/>
<source>Start Html</source> <source>Start HTML</source>
<translation>Begin Html</translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/displaytagdialog.py" line="149"/> <location filename="openlp/core/ui/displaytagdialog.py" line="149"/>
<source>End Html</source> <source>End HTML</source>
<translation>Eind-Html</translation> <translation type="unfinished"></translation>
</message> </message>
</context> </context>
<context> <context>
@ -1471,151 +1469,200 @@ Version: %s
<context> <context>
<name>OpenLP.FirstTimeLanguageForm</name> <name>OpenLP.FirstTimeLanguageForm</name>
<message> <message>
<location filename="openlp/core/ui/firsttimelanguagedialog.py" line="60"/> <location filename="openlp/core/ui/firsttimelanguagedialog.py" line="61"/>
<source>Initial Set up Language</source> <source>Select Translation</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimelanguagedialog.py" line="62"/> <location filename="openlp/core/ui/firsttimelanguagedialog.py" line="63"/>
<source>Select the language you&apos;d like to use in OpenLP.</source> <source>Choose the translation you&apos;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> <translation type="unfinished"></translation>
</message> </message>
</context> </context>
<context> <context>
<name>OpenLP.FirstTimeWizard</name> <name>OpenLP.FirstTimeWizard</name>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="154"/> <location filename="openlp/core/ui/firsttimeform.py" line="61"/>
<source>Songs</source> <source>Downloading %s...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimeform.py" line="63"/> <location filename="openlp/core/ui/firsttimeform.py" line="212"/>
<source>Bibles</source> <source>Download complete. Click the finish button to start OpenLP.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimeform.py" line="64"/> <location filename="openlp/core/ui/firsttimeform.py" line="221"/>
<source>Themes</source> <source>Enabling selected plugins...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimeform.py" line="65"/> <location filename="openlp/core/ui/firsttimeform.py" line="244"/>
<source>Starting Updates</source> <source>Overwrite Existing Songs?</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimeform.py" line="67"/> <location filename="openlp/core/ui/firsttimeform.py" line="244"/>
<source>Downloading %s</source> <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> <translation type="unfinished"></translation>
</message> </message>
<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> <source>First Time Wizard</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Welcome to the First Time Wizard</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="146"/> <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> <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> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Activate required Plugins</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Select the Plugins you wish to use. </source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Custom Text</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="157"/> <location filename="openlp/core/ui/firsttimewizard.py" line="210"/>
<source>Bible</source> <source>Bible</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="158"/> <location filename="openlp/core/ui/firsttimewizard.py" line="211"/>
<source>Images</source> <source>Images</source>
<translation type="unfinished">Beelde</translation> <translation type="unfinished">Beelde</translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="160"/> <location filename="openlp/core/ui/firsttimewizard.py" line="213"/>
<source>Presentations</source> <source>Presentations</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Media (Audio and Video)</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Allow remote access</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Monitor Song Usage</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="168"/> <location filename="openlp/core/ui/firsttimewizard.py" line="221"/>
<source>Allow Alerts</source> <source>Allow Alerts</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="170"/> <location filename="openlp/core/ui/firsttimewizard.py" line="223"/>
<source>Download Samples from OpenLP.org</source> <source>No Internet Connection</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="172"/> <location filename="openlp/core/ui/firsttimewizard.py" line="225"/>
<source>Select samples to downlaod and install for use.</source> <source>Unable to detect an Internet connection.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="175"/> <location filename="openlp/core/ui/firsttimewizard.py" line="228"/>
<source>No Internet connection found so unable to download any default files.</source> <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> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="178"/> <location filename="openlp/core/ui/firsttimewizard.py" line="236"/>
<source>Download Example Files</source> <source>Sample Songs</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Default Settings</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="182"/> <location filename="openlp/core/ui/firsttimewizard.py" line="250"/>
<source>Set up default values to be used by OpenLP</source> <source>Set up default settings to be used by OpenLP.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="184"/> <location filename="openlp/core/ui/firsttimewizard.py" line="252"/>
<source>Default output display</source> <source>Setting Up And Importing</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="186"/> <location filename="openlp/core/ui/firsttimewizard.py" line="254"/>
<source>Select the default Theme</source> <source>Please wait while OpenLP is set up and your data is imported.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="188"/> <location filename="openlp/core/ui/firsttimewizard.py" line="256"/>
<source>Press finish to apply all your changes and start OpenLP</source> <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> <translation type="unfinished"></translation>
</message> </message>
</context> </context>
@ -1740,12 +1787,12 @@ Version: %s
<context> <context>
<name>OpenLP.LanguageManager</name> <name>OpenLP.LanguageManager</name>
<message> <message>
<location filename="openlp/core/utils/languagemanager.py" line="126"/> <location filename="openlp/core/utils/languagemanager.py" line="130"/>
<source>Language</source> <source>Language</source>
<translation>Taal</translation> <translation>Taal</translation>
</message> </message>
<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> <source>Please restart OpenLP to use your new language setting.</source>
<translation>Herlaai asseblief OpenLP om die nuwe taal instelling te gebruik.</translation> <translation>Herlaai asseblief OpenLP om die nuwe taal instelling te gebruik.</translation>
</message> </message>
@ -2051,17 +2098,12 @@ Version: %s
<translation>&amp;Web Tuiste</translation> <translation>&amp;Web Tuiste</translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/mainwindow.py" line="428"/> <location filename="openlp/core/ui/mainwindow.py" line="434"/>
<source>&amp;Auto Detect</source>
<translation>Verklik Outom&amp;aties</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="430"/>
<source>Use the system language, if available.</source> <source>Use the system language, if available.</source>
<translation>Gebruik die sisteem se taal as dit beskikbaar is.</translation> <translation>Gebruik die sisteem se taal as dit beskikbaar is.</translation>
</message> </message>
<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> <source>Set the interface language to %s</source>
<translation>Verstel die koppelvlak taal na %s</translation> <translation>Verstel die koppelvlak taal na %s</translation>
</message> </message>
@ -2106,7 +2148,7 @@ Version: %s
<translation>Verstel die skou modus na Regstreeks.</translation> <translation>Verstel die skou modus na Regstreeks.</translation>
</message> </message>
<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). <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> 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> Die nuutste weergawe kan afgelaai word vanaf http://openlp.org/.</translation>
</message> </message>
<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> <source>OpenLP Version Updated</source>
<translation>OpenLP Weergawe is Opdateer</translation> <translation>OpenLP Weergawe is Opdateer</translation>
</message> </message>
<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> <source>OpenLP Main Display Blanked</source>
<translation>OpenLP Hoof Vertoning Blanko</translation> <translation>OpenLP Hoof Vertoning Blanko</translation>
</message> </message>
<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> <source>The Main Display has been blanked out</source>
<translation>Die Hoof Skerm is afgeskakel</translation> <translation>Die Hoof Skerm is afgeskakel</translation>
</message> </message>
<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> <source>Default Theme: %s</source>
<translation>Verstek Tema: %s</translation> <translation>Verstek Tema: %s</translation>
</message> </message>
@ -2146,12 +2188,12 @@ Die nuutste weergawe kan afgelaai word vanaf http://openlp.org/.</translation>
<translation>Konfigureer Kortpaaie</translation> <translation>Konfigureer Kortpaaie</translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/mainwindow.py" line="817"/> <location filename="openlp/core/ui/mainwindow.py" line="815"/>
<source>Close OpenLP</source> <source>Close OpenLP</source>
<translation>Mook OpenLP toe</translation> <translation>Mook OpenLP toe</translation>
</message> </message>
<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> <source>Are you sure you want to close OpenLP?</source>
<translation>Maak OpenLP sekerlik toe?</translation> <translation>Maak OpenLP sekerlik toe?</translation>
</message> </message>
@ -2180,11 +2222,16 @@ Die nuutste weergawe kan afgelaai word vanaf http://openlp.org/.</translation>
<source>&amp;Configure Display Tags</source> <source>&amp;Configure Display Tags</source>
<translation>Konfigureer Vertoon Haakies</translation> <translation>Konfigureer Vertoon Haakies</translation>
</message> </message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="432"/>
<source>&amp;Autodetect</source>
<translation type="unfinished"></translation>
</message>
</context> </context>
<context> <context>
<name>OpenLP.MediaManagerItem</name> <name>OpenLP.MediaManagerItem</name>
<message> <message>
<location filename="openlp/core/lib/__init__.py" line="287"/> <location filename="openlp/core/lib/__init__.py" line="286"/>
<source>No Items Selected</source> <source>No Items Selected</source>
<translation>Geen item geselekteer nie</translation> <translation>Geen item geselekteer nie</translation>
</message> </message>
@ -2462,29 +2509,29 @@ Die nuutste weergawe kan afgelaai word vanaf http://openlp.org/.</translation>
<translation>&amp;Verander Item Tema</translation> <translation>&amp;Verander Item Tema</translation>
</message> </message>
<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. <source>File is not a valid service.
The content encoding is not UTF-8.</source> The content encoding is not UTF-8.</source>
<translation>Lêer is nie &apos;n geldige diens nie. <translation>Lêer is nie &apos;n geldige diens nie.
Die inhoud enkodering is nie UTF-8 nie.</translation> Die inhoud enkodering is nie UTF-8 nie.</translation>
</message> </message>
<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> <source>File is not a valid service.</source>
<translation>Lêer is nie &apos;n geldige diens nie.</translation> <translation>Lêer is nie &apos;n geldige diens nie.</translation>
</message> </message>
<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> <source>Missing Display Handler</source>
<translation>Vermisde Vertoon Hanteerder</translation> <translation>Vermisde Vertoon Hanteerder</translation>
</message> </message>
<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> <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 &apos;n hanteerder is om dit te vertoon nie</translation> <translation>Die item kan nie vertoon word nie omdat daar nie &apos;n hanteerder is om dit te vertoon nie</translation>
</message> </message>
<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> <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> <translation>Die item kan nie vertoon word nie omdat die mini-program wat dit moet vertoon vermis of onaktief is</translation>
</message> </message>
@ -2514,7 +2561,7 @@ Die inhoud enkodering is nie UTF-8 nie.</translation>
<translation type="unfinished">Maak Lêer oop</translation> <translation type="unfinished">Maak Lêer oop</translation>
</message> </message>
<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> <source>OpenLP Service Files (*.osz)</source>
<translation>OpenLP Diens Lêers (*.osz)</translation> <translation>OpenLP Diens Lêers (*.osz)</translation>
</message> </message>
@ -3996,17 +4043,17 @@ Die inhoud enkodering is nie UTF-8 nie.</translation>
<translation>Uitvoer Lêer Ligging</translation> <translation>Uitvoer Lêer Ligging</translation>
</message> </message>
<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> <source>usage_detail_%s_%s.txt</source>
<translation>usage_detail_%s_%s.txt</translation> <translation>usage_detail_%s_%s.txt</translation>
</message> </message>
<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> <source>Report Creation</source>
<translation>Verslag Skepping</translation> <translation>Verslag Skepping</translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="114"/> <location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="123"/>
<source>Report <source>Report
%s %s
has been successfully created. </source> has been successfully created. </source>
@ -4014,83 +4061,93 @@ has been successfully created. </source>
%s %s
was suksesvol geskep.</translation> was suksesvol geskep.</translation>
</message> </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>
<context> <context>
<name>SongsPlugin</name> <name>SongsPlugin</name>
<message> <message>
<location filename="openlp/plugins/songs/songsplugin.py" line="104"/> <location filename="openlp/plugins/songs/songsplugin.py" line="103"/>
<source>&amp;Song</source> <source>&amp;Song</source>
<translation>&amp;Lied</translation> <translation>&amp;Lied</translation>
</message> </message>
<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> <source>Import songs using the import wizard.</source>
<translation>Voer liedere in deur van die invoer helper gebruik te maak.</translation> <translation>Voer liedere in deur van die invoer helper gebruik te maak.</translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/songs/songsplugin.py" line="183"/> <location filename="openlp/plugins/songs/songsplugin.py" line="182"/>
<source>&lt;strong&gt;Songs Plugin&lt;/strong&gt;&lt;br /&gt;The songs plugin provides the ability to display and manage songs.</source> <source>&lt;strong&gt;Songs Plugin&lt;/strong&gt;&lt;br /&gt;The songs plugin provides the ability to display and manage songs.</source>
<translation>&lt;strong&gt;Liedere Mini-program&lt;/strong&gt;&lt;br/&gt;Die liedere mini-program verskaf die vermoë om liedere te vertoon en te bestuur.</translation> <translation>&lt;strong&gt;Liedere Mini-program&lt;/strong&gt;&lt;br/&gt;Die liedere mini-program verskaf die vermoë om liedere te vertoon en te bestuur.</translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/songs/songsplugin.py" line="126"/> <location filename="openlp/plugins/songs/songsplugin.py" line="125"/>
<source>&amp;Re-index Songs</source> <source>&amp;Re-index Songs</source>
<translation>He&amp;r-indeks Liedere</translation> <translation>He&amp;r-indeks Liedere</translation>
</message> </message>
<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> <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> <translation>Her-indeks die liedere databasis om lied-soektogte en organisering te verbeter.</translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/songs/songsplugin.py" line="141"/> <location filename="openlp/plugins/songs/songsplugin.py" line="140"/>
<source>Reindexing songs...</source> <source>Reindexing songs...</source>
<translation>Besig om liedere indek te herskep...</translation> <translation>Besig om liedere indek te herskep...</translation>
</message> </message>
<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> <source>Add a new Song</source>
<translation>Voeg &apos;n nuwe Lied by</translation> <translation>Voeg &apos;n nuwe Lied by</translation>
</message> </message>
<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> <source>Edit the selected Song</source>
<translation>Redigeer die geselekteerde Lied</translation> <translation>Redigeer die geselekteerde Lied</translation>
</message> </message>
<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> <source>Delete the selected Song</source>
<translation>Wis die geselekteerde Lied uit</translation> <translation>Wis die geselekteerde Lied uit</translation>
</message> </message>
<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> <source>Preview the selected Song</source>
<translation>Skou die geselekteerde Lied</translation> <translation>Skou die geselekteerde Lied</translation>
</message> </message>
<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> <source>Send the selected Song live</source>
<translation>Stuur die geselekteerde Lied regstreeks</translation> <translation>Stuur die geselekteerde Lied regstreeks</translation>
</message> </message>
<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> <source>Add the selected Song to the service</source>
<translation>Voeg die geselekteerde Lied by die diens</translation> <translation>Voeg die geselekteerde Lied by die diens</translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/songs/songsplugin.py" line="227"/> <location filename="openlp/plugins/songs/songsplugin.py" line="226"/>
<source>Song</source> <source>Song</source>
<comment>name singular</comment> <comment>name singular</comment>
<translation type="unfinished">Lied</translation> <translation type="unfinished">Lied</translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/songs/songsplugin.py" line="228"/> <location filename="openlp/plugins/songs/songsplugin.py" line="227"/>
<source>Songs</source> <source>Songs</source>
<comment>name plural</comment> <comment>name plural</comment>
<translation type="unfinished">Liedere</translation> <translation type="unfinished">Liedere</translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/songs/songsplugin.py" line="232"/> <location filename="openlp/plugins/songs/songsplugin.py" line="231"/>
<source>Songs</source> <source>Songs</source>
<comment>container title</comment> <comment>container title</comment>
<translation type="unfinished">Liedere</translation> <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> Die enkodering is verantwoordelik vir die korrekte karrakter voorstelling.</translation>
</message> </message>
<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> <source>Exports songs using the export wizard.</source>
<translation>Voer liedere uit deur gebruik te maak van die uitvoer gids.</translation> <translation>Voer liedere uit deur gebruik te maak van die uitvoer gids.</translation>
</message> </message>
@ -4644,12 +4701,12 @@ Die enkodering is verantwoordelik vir die korrekte karrakter voorstelling.</tran
<translation>Lirieke</translation> <translation>Lirieke</translation>
</message> </message>
<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> <source>Delete Song(s)?</source>
<translation>Wis Lied(ere) uit?</translation> <translation>Wis Lied(ere) uit?</translation>
</message> </message>
<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> <source>CCLI License: </source>
<translation>CCLI Lisensie:</translation> <translation>CCLI Lisensie:</translation>
</message> </message>
@ -4659,7 +4716,7 @@ Die enkodering is verantwoordelik vir die korrekte karrakter voorstelling.</tran
<translation>Volledige Lied</translation> <translation>Volledige Lied</translation>
</message> </message>
<message numerus="yes"> <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> <source>Are you sure you want to delete the %n selected song(s)?</source>
<translation> <translation>
<numerusform>Wis regtig die %n geselekteerde lied(ere)?</numerusform> <numerusform>Wis regtig die %n geselekteerde lied(ere)?</numerusform>

View File

@ -211,7 +211,7 @@ Do you want to continue anyway?</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>You cannot combine single and dual Bible verse search results. Do you want to delete your search results and start a new search?</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -834,60 +834,60 @@ Daher ist eine Verbindung zum Internet erforderlich.</translation>
<context> <context>
<name>ImagePlugin</name> <name>ImagePlugin</name>
<message> <message>
<location filename="openlp/plugins/images/imageplugin.py" line="45"/> <location filename="openlp/plugins/images/imageplugin.py" line="44"/>
<source>&lt;strong&gt;Image Plugin&lt;/strong&gt;&lt;br /&gt;The image plugin provides displaying of images.&lt;br /&gt;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&apos;s &quot;timed looping&quot; 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&apos;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> <source>&lt;strong&gt;Image Plugin&lt;/strong&gt;&lt;br /&gt;The image plugin provides displaying of images.&lt;br /&gt;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&apos;s &quot;timed looping&quot; 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&apos;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>&lt;strong&gt;Bilder Erweiterung&lt;/strong&gt;&lt;br /&gt;Die Erweiterung Bilder ermöglicht die Anzeige von Bildern.&lt;br /&gt;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> <translation>&lt;strong&gt;Bilder Erweiterung&lt;/strong&gt;&lt;br /&gt;Die Erweiterung Bilder ermöglicht die Anzeige von Bildern.&lt;br /&gt;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>
<message> <message>
<location filename="openlp/plugins/images/imageplugin.py" line="64"/> <location filename="openlp/plugins/images/imageplugin.py" line="63"/>
<source>Image</source> <source>Image</source>
<comment>name singular</comment> <comment>name singular</comment>
<translation>Bild</translation> <translation>Bild</translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/images/imageplugin.py" line="65"/> <location filename="openlp/plugins/images/imageplugin.py" line="64"/>
<source>Images</source> <source>Images</source>
<comment>name plural</comment> <comment>name plural</comment>
<translation>Bilder</translation> <translation>Bilder</translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/images/imageplugin.py" line="69"/> <location filename="openlp/plugins/images/imageplugin.py" line="68"/>
<source>Images</source> <source>Images</source>
<comment>container title</comment> <comment>container title</comment>
<translation>Bilder</translation> <translation>Bilder</translation>
</message> </message>
<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> <source>Load a new Image</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Add a new Image</source>
<translation>Füge eine neues Bild hinzu</translation> <translation>Füge eine neues Bild hinzu</translation>
</message> </message>
<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> <source>Edit the selected Image</source>
<translation>Bearbeite das ausgewählte Bild</translation> <translation>Bearbeite das ausgewählte Bild</translation>
</message> </message>
<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> <source>Delete the selected Image</source>
<translation>Lösche da ausgewählte Bild</translation> <translation>Lösche da ausgewählte Bild</translation>
</message> </message>
<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> <source>Preview the selected Image</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Send the selected Image live</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Add the selected Image to the service</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -943,60 +943,60 @@ Wollen Sie die anderen Bilder trotzdem hinzufügen?</translation>
<context> <context>
<name>MediaPlugin</name> <name>MediaPlugin</name>
<message> <message>
<location filename="openlp/plugins/media/mediaplugin.py" line="70"/> <location filename="openlp/plugins/media/mediaplugin.py" line="93"/>
<source>&lt;strong&gt;Media Plugin&lt;/strong&gt;&lt;br /&gt;The media plugin provides playback of audio and video.</source> <source>&lt;strong&gt;Media Plugin&lt;/strong&gt;&lt;br /&gt;The media plugin provides playback of audio and video.</source>
<translation>&lt;strong&gt;Erweiterung Medien&lt;/strong&gt;&lt;br /&gt;Die Erweiterung Medien ermöglicht es Audio- und Videodateien abzuspielen.</translation> <translation>&lt;strong&gt;Erweiterung Medien&lt;/strong&gt;&lt;br /&gt;Die Erweiterung Medien ermöglicht es Audio- und Videodateien abzuspielen.</translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/media/mediaplugin.py" line="80"/> <location filename="openlp/plugins/media/mediaplugin.py" line="103"/>
<source>Media</source> <source>Media</source>
<comment>name singular</comment> <comment>name singular</comment>
<translation>Medien</translation> <translation>Medien</translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/media/mediaplugin.py" line="81"/> <location filename="openlp/plugins/media/mediaplugin.py" line="104"/>
<source>Media</source> <source>Media</source>
<comment>name plural</comment> <comment>name plural</comment>
<translation>Medien</translation> <translation>Medien</translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/media/mediaplugin.py" line="85"/> <location filename="openlp/plugins/media/mediaplugin.py" line="108"/>
<source>Media</source> <source>Media</source>
<comment>container title</comment> <comment>container title</comment>
<translation>Medien</translation> <translation>Medien</translation>
</message> </message>
<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> <source>Load a new Media</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Add a new Media</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Edit the selected Media</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Delete the selected Media</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Preview the selected Media</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Send the selected Media live</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Add the selected Media to the service</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -1099,14 +1099,6 @@ OpenLP wird von freiwiligen Helfern programmiert und gewartet. Wenn Sie sich meh
<source> build %s</source> <source> build %s</source>
<translation> build %s</translation> <translation> build %s</translation>
</message> </message>
<message>
<location filename="openlp/core/ui/aboutdialog.py" line="224"/>
<source>Copyright &#xa9; 2004-2011 Raoul Snyman
Portions copyright &#xa9; 2004-2011 Tim Bentley, Jonathan Corwin, Michael Gorven, Scott Guerrieri,
Meinert Jordan, Andreas Preikschat, Christian Richter, Philip
Ridout, Maikel Stuivenberg, Martin Thompson, Jon Tibble, CarstennTinggaard, Frode Woldsund</source>
<translation type="unfinished"></translation>
</message>
<message> <message>
<location filename="openlp/core/ui/aboutdialog.py" line="231"/> <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> <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> He has set us free.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message>
<location filename="openlp/core/ui/aboutdialog.py" line="224"/>
<source>Copyright &#xa9; 2004-2011 Raoul Snyman
Portions copyright &#xa9; 2004-2011 Tim Bentley, Jonathan Corwin, Michael Gorven, Scott Guerrieri,
Meinert Jordan, Andreas Preikschat, Christian Richter, Philip
Ridout, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Carsten
Tinggaard, Frode Woldsund</source>
<translation type="unfinished"></translation>
</message>
</context> </context>
<context> <context>
<name>OpenLP.AdvancedTab</name> <name>OpenLP.AdvancedTab</name>
@ -1285,18 +1286,18 @@ Final Credit
</message> </message>
<message> <message>
<location filename="openlp/core/ui/displaytagdialog.py" line="145"/> <location filename="openlp/core/ui/displaytagdialog.py" line="145"/>
<source>Tag id</source> <source>Tag Id</source>
<translation type="unfinished">Tag ID</translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/displaytagdialog.py" line="147"/> <location filename="openlp/core/ui/displaytagdialog.py" line="147"/>
<source>Start Html</source> <source>Start HTML</source>
<translation type="unfinished">Anfangs HTML</translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/displaytagdialog.py" line="149"/> <location filename="openlp/core/ui/displaytagdialog.py" line="149"/>
<source>End Html</source> <source>End HTML</source>
<translation type="unfinished">End HTML</translation> <translation type="unfinished"></translation>
</message> </message>
</context> </context>
<context> <context>
@ -1435,151 +1436,200 @@ Version: %s
<context> <context>
<name>OpenLP.FirstTimeLanguageForm</name> <name>OpenLP.FirstTimeLanguageForm</name>
<message> <message>
<location filename="openlp/core/ui/firsttimelanguagedialog.py" line="60"/> <location filename="openlp/core/ui/firsttimelanguagedialog.py" line="61"/>
<source>Initial Set up Language</source> <source>Select Translation</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimelanguagedialog.py" line="62"/> <location filename="openlp/core/ui/firsttimelanguagedialog.py" line="63"/>
<source>Select the language you&apos;d like to use in OpenLP.</source> <source>Choose the translation you&apos;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> <translation type="unfinished"></translation>
</message> </message>
</context> </context>
<context> <context>
<name>OpenLP.FirstTimeWizard</name> <name>OpenLP.FirstTimeWizard</name>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="154"/> <location filename="openlp/core/ui/firsttimeform.py" line="61"/>
<source>Songs</source> <source>Downloading %s...</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>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimeform.py" line="65"/> <location filename="openlp/core/ui/firsttimeform.py" line="212"/>
<source>Starting Updates</source> <source>Download complete. Click the finish button to start OpenLP.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimeform.py" line="67"/> <location filename="openlp/core/ui/firsttimeform.py" line="221"/>
<source>Downloading %s</source> <source>Enabling selected plugins...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>First Time Wizard</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Welcome to the First Time Wizard</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="146"/> <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> <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> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Activate required Plugins</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Select the Plugins you wish to use. </source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Custom Text</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="157"/> <location filename="openlp/core/ui/firsttimewizard.py" line="210"/>
<source>Bible</source> <source>Bible</source>
<translation type="unfinished">Bibeltext</translation> <translation type="unfinished">Bibeltext</translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="158"/> <location filename="openlp/core/ui/firsttimewizard.py" line="211"/>
<source>Images</source> <source>Images</source>
<translation type="unfinished">Bilder</translation> <translation type="unfinished">Bilder</translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="160"/> <location filename="openlp/core/ui/firsttimewizard.py" line="213"/>
<source>Presentations</source> <source>Presentations</source>
<translation type="unfinished">Präsentationen</translation> <translation type="unfinished">Präsentationen</translation>
</message> </message>
<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> <source>Media (Audio and Video)</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Allow remote access</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Monitor Song Usage</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="168"/> <location filename="openlp/core/ui/firsttimewizard.py" line="221"/>
<source>Allow Alerts</source> <source>Allow Alerts</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="170"/> <location filename="openlp/core/ui/firsttimewizard.py" line="223"/>
<source>Download Samples from OpenLP.org</source> <source>No Internet Connection</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="172"/> <location filename="openlp/core/ui/firsttimewizard.py" line="225"/>
<source>Select samples to downlaod and install for use.</source> <source>Unable to detect an Internet connection.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="175"/> <location filename="openlp/core/ui/firsttimewizard.py" line="228"/>
<source>No Internet connection found so unable to download any default files.</source> <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> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="178"/> <location filename="openlp/core/ui/firsttimewizard.py" line="236"/>
<source>Download Example Files</source> <source>Sample Songs</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Default Settings</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="182"/> <location filename="openlp/core/ui/firsttimewizard.py" line="250"/>
<source>Set up default values to be used by OpenLP</source> <source>Set up default settings to be used by OpenLP.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="184"/> <location filename="openlp/core/ui/firsttimewizard.py" line="252"/>
<source>Default output display</source> <source>Setting Up And Importing</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="186"/> <location filename="openlp/core/ui/firsttimewizard.py" line="254"/>
<source>Select the default Theme</source> <source>Please wait while OpenLP is set up and your data is imported.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="188"/> <location filename="openlp/core/ui/firsttimewizard.py" line="256"/>
<source>Press finish to apply all your changes and start OpenLP</source> <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> <translation type="unfinished"></translation>
</message> </message>
</context> </context>
@ -1704,12 +1754,12 @@ Version: %s
<context> <context>
<name>OpenLP.LanguageManager</name> <name>OpenLP.LanguageManager</name>
<message> <message>
<location filename="openlp/core/utils/languagemanager.py" line="126"/> <location filename="openlp/core/utils/languagemanager.py" line="130"/>
<source>Language</source> <source>Language</source>
<translation>Sprache</translation> <translation>Sprache</translation>
</message> </message>
<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> <source>Please restart OpenLP to use your new language setting.</source>
<translation>Bitte starten Sie OpenLP neu, um die neue Spracheinstellung zu verwenden.</translation> <translation>Bitte starten Sie OpenLP neu, um die neue Spracheinstellung zu verwenden.</translation>
</message> </message>
@ -2015,17 +2065,12 @@ Version: %s
<translation>&amp;Webseite</translation> <translation>&amp;Webseite</translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/mainwindow.py" line="428"/> <location filename="openlp/core/ui/mainwindow.py" line="434"/>
<source>&amp;Auto Detect</source>
<translation>&amp;Automatische Auswahl</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="430"/>
<source>Use the system language, if available.</source> <source>Use the system language, if available.</source>
<translation>Die Systemsprache, sofern diese verfügbar ist, verwenden.</translation> <translation>Die Systemsprache, sofern diese verfügbar ist, verwenden.</translation>
</message> </message>
<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> <source>Set the interface language to %s</source>
<translation>Die Sprache von OpenLP auf %s stellen</translation> <translation>Die Sprache von OpenLP auf %s stellen</translation>
</message> </message>
@ -2070,27 +2115,27 @@ Version: %s
<translation>Die Ansicht für den Live-Betrieb optimieren.</translation> <translation>Die Ansicht für den Live-Betrieb optimieren.</translation>
</message> </message>
<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> <source>OpenLP Version Updated</source>
<translation>Neue OpenLP Version verfügbar</translation> <translation>Neue OpenLP Version verfügbar</translation>
</message> </message>
<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> <source>OpenLP Main Display Blanked</source>
<translation>Hauptbildschirm abgedunkelt</translation> <translation>Hauptbildschirm abgedunkelt</translation>
</message> </message>
<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> <source>The Main Display has been blanked out</source>
<translation>Die Projektion ist momentan nicht aktiv.</translation> <translation>Die Projektion ist momentan nicht aktiv.</translation>
</message> </message>
<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> <source>Default Theme: %s</source>
<translation>Standarddesign: %s</translation> <translation>Standarddesign: %s</translation>
</message> </message>
<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). <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> 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>&amp;Tastenkürzel einrichten...</translation> <translation>&amp;Tastenkürzel einrichten...</translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/mainwindow.py" line="817"/> <location filename="openlp/core/ui/mainwindow.py" line="815"/>
<source>Close OpenLP</source> <source>Close OpenLP</source>
<translation>OpenLP beenden</translation> <translation>OpenLP beenden</translation>
</message> </message>
<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> <source>Are you sure you want to close OpenLP?</source>
<translation>Sind Sie sicher, dass OpenLP beendet werden soll?</translation> <translation>Sind Sie sicher, dass OpenLP beendet werden soll?</translation>
</message> </message>
@ -2144,11 +2189,16 @@ Sie können die letzte Version auf http://openlp.org abrufen.</translation>
<source>&amp;Configure Display Tags</source> <source>&amp;Configure Display Tags</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="432"/>
<source>&amp;Autodetect</source>
<translation type="unfinished"></translation>
</message>
</context> </context>
<context> <context>
<name>OpenLP.MediaManagerItem</name> <name>OpenLP.MediaManagerItem</name>
<message> <message>
<location filename="openlp/core/lib/__init__.py" line="287"/> <location filename="openlp/core/lib/__init__.py" line="286"/>
<source>No Items Selected</source> <source>No Items Selected</source>
<translation>Keine Elemente ausgewählt.</translation> <translation>Keine Elemente ausgewählt.</translation>
</message> </message>
@ -2426,29 +2476,29 @@ Sie können die letzte Version auf http://openlp.org abrufen.</translation>
<translation>&amp;Design des Elements ändern</translation> <translation>&amp;Design des Elements ändern</translation>
</message> </message>
<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. <source>File is not a valid service.
The content encoding is not UTF-8.</source> The content encoding is not UTF-8.</source>
<translation>Die gewählte Datei ist keine gültige OpenLP Ablaufdatei. <translation>Die gewählte Datei ist keine gültige OpenLP Ablaufdatei.
Der Inhalt ist nicht in UTF-8 kodiert.</translation> Der Inhalt ist nicht in UTF-8 kodiert.</translation>
</message> </message>
<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> <source>File is not a valid service.</source>
<translation>Die Datei ist keine gültige OpenLP Ablaufdatei.</translation> <translation>Die Datei ist keine gültige OpenLP Ablaufdatei.</translation>
</message> </message>
<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> <source>Missing Display Handler</source>
<translation>Fehlende Anzeigesteuerung</translation> <translation>Fehlende Anzeigesteuerung</translation>
</message> </message>
<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> <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> <translation>Dieses Element kann nicht angezeigt werden, da es keine Steuerung dafür gibt.</translation>
</message> </message>
<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> <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> <translation>Dieses Element kann nicht angezeigt werden, da die zugehörige Erweiterung fehlt oder inaktiv ist.</translation>
</message> </message>
@ -2478,7 +2528,7 @@ Der Inhalt ist nicht in UTF-8 kodiert.</translation>
<translation>Ablauf öffnen</translation> <translation>Ablauf öffnen</translation>
</message> </message>
<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> <source>OpenLP Service Files (*.osz)</source>
<translation>OpenLP Ablaufdateien (*.osz)</translation> <translation>OpenLP Ablaufdateien (*.osz)</translation>
</message> </message>
@ -3960,69 +4010,79 @@ Sie ist nicht in UTF-8 kodiert.</translation>
<translation>Speicherort</translation> <translation>Speicherort</translation>
</message> </message>
<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> <source>usage_detail_%s_%s.txt</source>
<translation>Aufrufprotokoll_%s_%s.txt</translation> <translation>Aufrufprotokoll_%s_%s.txt</translation>
</message> </message>
<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> <source>Report Creation</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="114"/> <location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="123"/>
<source>Report <source>Report
%s %s
has been successfully created. </source> has been successfully created. </source>
<translation></translation> <translation></translation>
</message> </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>
<context> <context>
<name>SongsPlugin</name> <name>SongsPlugin</name>
<message> <message>
<location filename="openlp/plugins/songs/songsplugin.py" line="104"/> <location filename="openlp/plugins/songs/songsplugin.py" line="103"/>
<source>&amp;Song</source> <source>&amp;Song</source>
<translation>&amp;Lied</translation> <translation>&amp;Lied</translation>
</message> </message>
<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> <source>Import songs using the import wizard.</source>
<translation>Lieder importieren.</translation> <translation>Lieder importieren.</translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/songs/songsplugin.py" line="183"/> <location filename="openlp/plugins/songs/songsplugin.py" line="182"/>
<source>&lt;strong&gt;Songs Plugin&lt;/strong&gt;&lt;br /&gt;The songs plugin provides the ability to display and manage songs.</source> <source>&lt;strong&gt;Songs Plugin&lt;/strong&gt;&lt;br /&gt;The songs plugin provides the ability to display and manage songs.</source>
<translation>&lt;strong&gt;Erweiterung Lieder&lt;/strong&gt;&lt;br /&gt;Die Erweiterung Lieder ermöglicht die Darstellung und Verwaltung von Liedtexten.</translation> <translation>&lt;strong&gt;Erweiterung Lieder&lt;/strong&gt;&lt;br /&gt;Die Erweiterung Lieder ermöglicht die Darstellung und Verwaltung von Liedtexten.</translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/songs/songsplugin.py" line="126"/> <location filename="openlp/plugins/songs/songsplugin.py" line="125"/>
<source>&amp;Re-index Songs</source> <source>&amp;Re-index Songs</source>
<translation>Liederverzeichnis &amp;reindizieren</translation> <translation>Liederverzeichnis &amp;reindizieren</translation>
</message> </message>
<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> <source>Re-index the songs database to improve searching and ordering.</source>
<translation>Das reindizieren der Liederdatenbank kann die Suchergebnisse verbessern.</translation> <translation>Das reindizieren der Liederdatenbank kann die Suchergebnisse verbessern.</translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/songs/songsplugin.py" line="141"/> <location filename="openlp/plugins/songs/songsplugin.py" line="140"/>
<source>Reindexing songs...</source> <source>Reindexing songs...</source>
<translation>Reindiziere die Liederdatenbank...</translation> <translation>Reindiziere die Liederdatenbank...</translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/songs/songsplugin.py" line="227"/> <location filename="openlp/plugins/songs/songsplugin.py" line="226"/>
<source>Song</source> <source>Song</source>
<comment>name singular</comment> <comment>name singular</comment>
<translation>Lied</translation> <translation>Lied</translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/songs/songsplugin.py" line="228"/> <location filename="openlp/plugins/songs/songsplugin.py" line="227"/>
<source>Songs</source> <source>Songs</source>
<comment>name plural</comment> <comment>name plural</comment>
<translation>Lieder</translation> <translation>Lieder</translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/songs/songsplugin.py" line="232"/> <location filename="openlp/plugins/songs/songsplugin.py" line="231"/>
<source>Songs</source> <source>Songs</source>
<comment>container title</comment> <comment>container title</comment>
<translation>Lieder</translation> <translation>Lieder</translation>
@ -4117,37 +4177,37 @@ Usually you are fine with the preselected choice.</source>
<translation></translation> <translation></translation>
</message> </message>
<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> <source>Exports songs using the export wizard.</source>
<translation></translation> <translation></translation>
</message> </message>
<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> <source>Add a new Song</source>
<translation>Erstelle eine neues Lied</translation> <translation>Erstelle eine neues Lied</translation>
</message> </message>
<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> <source>Edit the selected Song</source>
<translation>Bearbeite das ausgewählte Lied</translation> <translation>Bearbeite das ausgewählte Lied</translation>
</message> </message>
<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> <source>Delete the selected Song</source>
<translation>Lösche das ausgewählte Lied</translation> <translation>Lösche das ausgewählte Lied</translation>
</message> </message>
<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> <source>Preview the selected Song</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Send the selected Song live</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Add the selected Song to the service</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -4603,12 +4663,12 @@ Usually you are fine with the preselected choice.</source>
<translation>Liedtext</translation> <translation>Liedtext</translation>
</message> </message>
<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> <source>Delete Song(s)?</source>
<translation>Lied(er) löschen?</translation> <translation>Lied(er) löschen?</translation>
</message> </message>
<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> <source>CCLI License: </source>
<translation>CCLI-Lizenz: </translation> <translation>CCLI-Lizenz: </translation>
</message> </message>
@ -4618,7 +4678,7 @@ Usually you are fine with the preselected choice.</source>
<translation>Ganzes Lied</translation> <translation>Ganzes Lied</translation>
</message> </message>
<message numerus="yes"> <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> <source>Are you sure you want to delete the %n selected song(s)?</source>
<translation> <translation>
<numerusform>Sind Sie sicher, dass das Lied gelöscht werden soll?</numerusform> <numerusform>Sind Sie sicher, dass das Lied gelöscht werden soll?</numerusform>

View File

@ -210,7 +210,7 @@ Do you want to continue anyway?</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>You cannot combine single and dual Bible verse search results. Do you want to delete your search results and start a new search?</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -829,59 +829,59 @@ demand and thus an internet connection is required.</source>
<context> <context>
<name>ImagePlugin</name> <name>ImagePlugin</name>
<message> <message>
<location filename="openlp/plugins/images/imageplugin.py" line="45"/> <location filename="openlp/plugins/images/imageplugin.py" line="44"/>
<source>&lt;strong&gt;Image Plugin&lt;/strong&gt;&lt;br /&gt;The image plugin provides displaying of images.&lt;br /&gt;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&apos;s &quot;timed looping&quot; 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&apos;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> <source>&lt;strong&gt;Image Plugin&lt;/strong&gt;&lt;br /&gt;The image plugin provides displaying of images.&lt;br /&gt;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&apos;s &quot;timed looping&quot; 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&apos;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> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Load a new Image</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Add a new Image</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Edit the selected Image</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Delete the selected Image</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Preview the selected Image</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Send the selected Image live</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Add the selected Image to the service</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/images/imageplugin.py" line="64"/> <location filename="openlp/plugins/images/imageplugin.py" line="63"/>
<source>Image</source> <source>Image</source>
<comment>name singular</comment> <comment>name singular</comment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/images/imageplugin.py" line="65"/> <location filename="openlp/plugins/images/imageplugin.py" line="64"/>
<source>Images</source> <source>Images</source>
<comment>name plural</comment> <comment>name plural</comment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/images/imageplugin.py" line="69"/> <location filename="openlp/plugins/images/imageplugin.py" line="68"/>
<source>Images</source> <source>Images</source>
<comment>container title</comment> <comment>container title</comment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
@ -937,59 +937,59 @@ Do you want to add the other images anyway?</source>
<context> <context>
<name>MediaPlugin</name> <name>MediaPlugin</name>
<message> <message>
<location filename="openlp/plugins/media/mediaplugin.py" line="70"/> <location filename="openlp/plugins/media/mediaplugin.py" line="93"/>
<source>&lt;strong&gt;Media Plugin&lt;/strong&gt;&lt;br /&gt;The media plugin provides playback of audio and video.</source> <source>&lt;strong&gt;Media Plugin&lt;/strong&gt;&lt;br /&gt;The media plugin provides playback of audio and video.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Load a new Media</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Add a new Media</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Edit the selected Media</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Delete the selected Media</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Preview the selected Media</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Send the selected Media live</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Add the selected Media to the service</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/media/mediaplugin.py" line="80"/> <location filename="openlp/plugins/media/mediaplugin.py" line="103"/>
<source>Media</source> <source>Media</source>
<comment>name singular</comment> <comment>name singular</comment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/media/mediaplugin.py" line="81"/> <location filename="openlp/plugins/media/mediaplugin.py" line="104"/>
<source>Media</source> <source>Media</source>
<comment>name plural</comment> <comment>name plural</comment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/media/mediaplugin.py" line="85"/> <location filename="openlp/plugins/media/mediaplugin.py" line="108"/>
<source>Media</source> <source>Media</source>
<comment>container title</comment> <comment>container title</comment>
<translation type="unfinished"></translation> <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> <source> build %s</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message>
<location filename="openlp/core/ui/aboutdialog.py" line="224"/>
<source>Copyright &#xa9; 2004-2011 Raoul Snyman
Portions copyright &#xa9; 2004-2011 Tim Bentley, Jonathan Corwin, Michael Gorven, Scott Guerrieri,
Meinert Jordan, Andreas Preikschat, Christian Richter, Philip
Ridout, Maikel Stuivenberg, Martin Thompson, Jon Tibble, CarstennTinggaard, Frode Woldsund</source>
<translation type="unfinished"></translation>
</message>
<message> <message>
<location filename="openlp/core/ui/aboutdialog.py" line="231"/> <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> <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> He has set us free.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message>
<location filename="openlp/core/ui/aboutdialog.py" line="224"/>
<source>Copyright &#xa9; 2004-2011 Raoul Snyman
Portions copyright &#xa9; 2004-2011 Tim Bentley, Jonathan Corwin, Michael Gorven, Scott Guerrieri,
Meinert Jordan, Andreas Preikschat, Christian Richter, Philip
Ridout, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Carsten
Tinggaard, Frode Woldsund</source>
<translation type="unfinished"></translation>
</message>
</context> </context>
<context> <context>
<name>OpenLP.AdvancedTab</name> <name>OpenLP.AdvancedTab</name>
@ -1273,17 +1274,17 @@ Final Credit
</message> </message>
<message> <message>
<location filename="openlp/core/ui/displaytagdialog.py" line="145"/> <location filename="openlp/core/ui/displaytagdialog.py" line="145"/>
<source>Tag id</source> <source>Tag Id</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/displaytagdialog.py" line="147"/> <location filename="openlp/core/ui/displaytagdialog.py" line="147"/>
<source>Start Html</source> <source>Start HTML</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/displaytagdialog.py" line="149"/> <location filename="openlp/core/ui/displaytagdialog.py" line="149"/>
<source>End Html</source> <source>End HTML</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
</context> </context>
@ -1421,151 +1422,200 @@ Version: %s
<context> <context>
<name>OpenLP.FirstTimeLanguageForm</name> <name>OpenLP.FirstTimeLanguageForm</name>
<message> <message>
<location filename="openlp/core/ui/firsttimelanguagedialog.py" line="60"/> <location filename="openlp/core/ui/firsttimelanguagedialog.py" line="61"/>
<source>Initial Set up Language</source> <source>Select Translation</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimelanguagedialog.py" line="62"/> <location filename="openlp/core/ui/firsttimelanguagedialog.py" line="63"/>
<source>Select the language you&apos;d like to use in OpenLP.</source> <source>Choose the translation you&apos;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> <translation type="unfinished"></translation>
</message> </message>
</context> </context>
<context> <context>
<name>OpenLP.FirstTimeWizard</name> <name>OpenLP.FirstTimeWizard</name>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="154"/> <location filename="openlp/core/ui/firsttimewizard.py" line="207"/>
<source>Songs</source> <source>Songs</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimeform.py" line="63"/> <location filename="openlp/core/ui/firsttimewizard.py" line="193"/>
<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"/>
<source>First Time Wizard</source> <source>First Time Wizard</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Welcome to the First Time Wizard</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="146"/> <location filename="openlp/core/ui/firsttimewizard.py" line="203"/>
<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"/>
<source>Activate required Plugins</source> <source>Activate required Plugins</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Select the Plugins you wish to use. </source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="155"/> <location filename="openlp/core/ui/firsttimewizard.py" line="208"/>
<source>Custom Text</source> <source>Custom Text</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="157"/> <location filename="openlp/core/ui/firsttimewizard.py" line="210"/>
<source>Bible</source> <source>Bible</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="158"/> <location filename="openlp/core/ui/firsttimewizard.py" line="211"/>
<source>Images</source> <source>Images</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="160"/> <location filename="openlp/core/ui/firsttimewizard.py" line="213"/>
<source>Presentations</source> <source>Presentations</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Media (Audio and Video)</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Allow remote access</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Monitor Song Usage</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="168"/> <location filename="openlp/core/ui/firsttimewizard.py" line="221"/>
<source>Allow Alerts</source> <source>Allow Alerts</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="170"/> <location filename="openlp/core/ui/firsttimewizard.py" line="248"/>
<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"/>
<source>Default Settings</source> <source>Default Settings</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="182"/> <location filename="openlp/core/ui/firsttimeform.py" line="61"/>
<source>Set up default values to be used by OpenLP</source> <source>Downloading %s...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="184"/> <location filename="openlp/core/ui/firsttimeform.py" line="212"/>
<source>Default output display</source> <source>Download complete. Click the finish button to start OpenLP.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="186"/> <location filename="openlp/core/ui/firsttimeform.py" line="221"/>
<source>Select the default Theme</source> <source>Enabling selected plugins...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="188"/> <location filename="openlp/core/ui/firsttimeform.py" line="244"/>
<source>Press finish to apply all your changes and start OpenLP</source> <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> <translation type="unfinished"></translation>
</message> </message>
</context> </context>
@ -1690,12 +1740,12 @@ Version: %s
<context> <context>
<name>OpenLP.LanguageManager</name> <name>OpenLP.LanguageManager</name>
<message> <message>
<location filename="openlp/core/utils/languagemanager.py" line="126"/> <location filename="openlp/core/utils/languagemanager.py" line="130"/>
<source>Language</source> <source>Language</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Please restart OpenLP to use your new language setting.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -2001,17 +2051,12 @@ Version: %s
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/mainwindow.py" line="428"/> <location filename="openlp/core/ui/mainwindow.py" line="434"/>
<source>&amp;Auto Detect</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="430"/>
<source>Use the system language, if available.</source> <source>Use the system language, if available.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Set the interface language to %s</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -2056,29 +2101,29 @@ Version: %s
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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). <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> You can download the latest version from http://openlp.org/.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>OpenLP Version Updated</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>OpenLP Main Display Blanked</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>The Main Display has been blanked out</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Default Theme: %s</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -2094,12 +2139,12 @@ You can download the latest version from http://openlp.org/.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/mainwindow.py" line="817"/> <location filename="openlp/core/ui/mainwindow.py" line="815"/>
<source>Close OpenLP</source> <source>Close OpenLP</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Are you sure you want to close OpenLP?</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </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> <source>Open the folder where songs, bibles and other data resides.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="432"/>
<source>&amp;Autodetect</source>
<translation type="unfinished"></translation>
</message>
</context> </context>
<context> <context>
<name>OpenLP.MediaManagerItem</name> <name>OpenLP.MediaManagerItem</name>
<message> <message>
<location filename="openlp/core/lib/__init__.py" line="287"/> <location filename="openlp/core/lib/__init__.py" line="286"/>
<source>No Items Selected</source> <source>No Items Selected</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -2410,33 +2460,33 @@ You can download the latest version from http://openlp.org/.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>OpenLP Service Files (*.osz)</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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. <source>File is not a valid service.
The content encoding is not UTF-8.</source> The content encoding is not UTF-8.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>File is not a valid service.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Missing Display Handler</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Your item cannot be displayed as there is no handler to display it</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Your item cannot be displayed as the plugin required to display it is missing or inactive</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -3942,82 +3992,92 @@ The content encoding is not UTF-8.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>usage_detail_%s_%s.txt</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Report Creation</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="114"/> <location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="123"/>
<source>Report <source>Report
%s %s
has been successfully created. </source> has been successfully created. </source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </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>
<context> <context>
<name>SongsPlugin</name> <name>SongsPlugin</name>
<message> <message>
<location filename="openlp/plugins/songs/songsplugin.py" line="104"/> <location filename="openlp/plugins/songs/songsplugin.py" line="103"/>
<source>&amp;Song</source> <source>&amp;Song</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Import songs using the import wizard.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/songs/songsplugin.py" line="183"/> <location filename="openlp/plugins/songs/songsplugin.py" line="182"/>
<source>&lt;strong&gt;Songs Plugin&lt;/strong&gt;&lt;br /&gt;The songs plugin provides the ability to display and manage songs.</source> <source>&lt;strong&gt;Songs Plugin&lt;/strong&gt;&lt;br /&gt;The songs plugin provides the ability to display and manage songs.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/songs/songsplugin.py" line="126"/> <location filename="openlp/plugins/songs/songsplugin.py" line="125"/>
<source>&amp;Re-index Songs</source> <source>&amp;Re-index Songs</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Re-index the songs database to improve searching and ordering.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/songs/songsplugin.py" line="141"/> <location filename="openlp/plugins/songs/songsplugin.py" line="140"/>
<source>Reindexing songs...</source> <source>Reindexing songs...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Add a new Song</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Edit the selected Song</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Delete the selected Song</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Preview the selected Song</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Send the selected Song live</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Add the selected Song to the service</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -4110,25 +4170,25 @@ The encoding is responsible for the correct character representation.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/songs/songsplugin.py" line="227"/> <location filename="openlp/plugins/songs/songsplugin.py" line="226"/>
<source>Song</source> <source>Song</source>
<comment>name singular</comment> <comment>name singular</comment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/songs/songsplugin.py" line="228"/> <location filename="openlp/plugins/songs/songsplugin.py" line="227"/>
<source>Songs</source> <source>Songs</source>
<comment>name plural</comment> <comment>name plural</comment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/songs/songsplugin.py" line="232"/> <location filename="openlp/plugins/songs/songsplugin.py" line="231"/>
<source>Songs</source> <source>Songs</source>
<comment>container title</comment> <comment>container title</comment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Exports songs using the export wizard.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -4584,12 +4644,12 @@ The encoding is responsible for the correct character representation.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Delete Song(s)?</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>CCLI License: </source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -4599,7 +4659,7 @@ The encoding is responsible for the correct character representation.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message numerus="yes"> <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> <source>Are you sure you want to delete the %n selected song(s)?</source>
<translation type="unfinished"> <translation type="unfinished">
<numerusform></numerusform> <numerusform></numerusform>

View File

@ -210,7 +210,7 @@ Do you want to continue anyway?</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>You cannot combine single and dual Bible verse search results. Do you want to delete your search results and start a new search?</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -830,59 +830,59 @@ demand and thus an internet connection is required.</source>
<context> <context>
<name>ImagePlugin</name> <name>ImagePlugin</name>
<message> <message>
<location filename="openlp/plugins/images/imageplugin.py" line="45"/> <location filename="openlp/plugins/images/imageplugin.py" line="44"/>
<source>&lt;strong&gt;Image Plugin&lt;/strong&gt;&lt;br /&gt;The image plugin provides displaying of images.&lt;br /&gt;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&apos;s &quot;timed looping&quot; 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&apos;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> <source>&lt;strong&gt;Image Plugin&lt;/strong&gt;&lt;br /&gt;The image plugin provides displaying of images.&lt;br /&gt;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&apos;s &quot;timed looping&quot; 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&apos;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>&lt;strong&gt;Image Plugin&lt;/strong&gt;&lt;br /&gt;The image plugin provides displaying of images.&lt;br /&gt;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&apos;s &quot;timed looping&quot; 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&apos;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> <translation>&lt;strong&gt;Image Plugin&lt;/strong&gt;&lt;br /&gt;The image plugin provides displaying of images.&lt;br /&gt;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&apos;s &quot;timed looping&quot; 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&apos;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>
<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> <source>Load a new Image</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Add a new Image</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Edit the selected Image</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Delete the selected Image</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Preview the selected Image</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Send the selected Image live</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Add the selected Image to the service</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/images/imageplugin.py" line="64"/> <location filename="openlp/plugins/images/imageplugin.py" line="63"/>
<source>Image</source> <source>Image</source>
<comment>name singular</comment> <comment>name singular</comment>
<translation type="unfinished">Image</translation> <translation type="unfinished">Image</translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/images/imageplugin.py" line="65"/> <location filename="openlp/plugins/images/imageplugin.py" line="64"/>
<source>Images</source> <source>Images</source>
<comment>name plural</comment> <comment>name plural</comment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/images/imageplugin.py" line="69"/> <location filename="openlp/plugins/images/imageplugin.py" line="68"/>
<source>Images</source> <source>Images</source>
<comment>container title</comment> <comment>container title</comment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
@ -938,59 +938,59 @@ Do you want to add the other images anyway?</source>
<context> <context>
<name>MediaPlugin</name> <name>MediaPlugin</name>
<message> <message>
<location filename="openlp/plugins/media/mediaplugin.py" line="70"/> <location filename="openlp/plugins/media/mediaplugin.py" line="93"/>
<source>&lt;strong&gt;Media Plugin&lt;/strong&gt;&lt;br /&gt;The media plugin provides playback of audio and video.</source> <source>&lt;strong&gt;Media Plugin&lt;/strong&gt;&lt;br /&gt;The media plugin provides playback of audio and video.</source>
<translation>&lt;strong&gt;Media Plugin&lt;/strong&gt;&lt;br /&gt;The media plugin provides playback of audio and video.</translation> <translation>&lt;strong&gt;Media Plugin&lt;/strong&gt;&lt;br /&gt;The media plugin provides playback of audio and video.</translation>
</message> </message>
<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> <source>Load a new Media</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Add a new Media</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Edit the selected Media</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Delete the selected Media</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Preview the selected Media</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Send the selected Media live</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Add the selected Media to the service</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/media/mediaplugin.py" line="80"/> <location filename="openlp/plugins/media/mediaplugin.py" line="103"/>
<source>Media</source> <source>Media</source>
<comment>name singular</comment> <comment>name singular</comment>
<translation type="unfinished">Media</translation> <translation type="unfinished">Media</translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/media/mediaplugin.py" line="81"/> <location filename="openlp/plugins/media/mediaplugin.py" line="104"/>
<source>Media</source> <source>Media</source>
<comment>name plural</comment> <comment>name plural</comment>
<translation type="unfinished">Media</translation> <translation type="unfinished">Media</translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/media/mediaplugin.py" line="85"/> <location filename="openlp/plugins/media/mediaplugin.py" line="108"/>
<source>Media</source> <source>Media</source>
<comment>container title</comment> <comment>container title</comment>
<translation type="unfinished">Media</translation> <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> <source> build %s</source>
<translation> build %s</translation> <translation> build %s</translation>
</message> </message>
<message>
<location filename="openlp/core/ui/aboutdialog.py" line="224"/>
<source>Copyright &#xa9; 2004-2011 Raoul Snyman
Portions copyright &#xa9; 2004-2011 Tim Bentley, Jonathan Corwin, Michael Gorven, Scott Guerrieri,
Meinert Jordan, Andreas Preikschat, Christian Richter, Philip
Ridout, Maikel Stuivenberg, Martin Thompson, Jon Tibble, CarstennTinggaard, Frode Woldsund</source>
<translation type="unfinished"></translation>
</message>
<message> <message>
<location filename="openlp/core/ui/aboutdialog.py" line="231"/> <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> <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> He has set us free.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message>
<location filename="openlp/core/ui/aboutdialog.py" line="224"/>
<source>Copyright &#xa9; 2004-2011 Raoul Snyman
Portions copyright &#xa9; 2004-2011 Tim Bentley, Jonathan Corwin, Michael Gorven, Scott Guerrieri,
Meinert Jordan, Andreas Preikschat, Christian Richter, Philip
Ridout, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Carsten
Tinggaard, Frode Woldsund</source>
<translation type="unfinished"></translation>
</message>
</context> </context>
<context> <context>
<name>OpenLP.AdvancedTab</name> <name>OpenLP.AdvancedTab</name>
@ -1280,17 +1281,17 @@ Final Credit
</message> </message>
<message> <message>
<location filename="openlp/core/ui/displaytagdialog.py" line="145"/> <location filename="openlp/core/ui/displaytagdialog.py" line="145"/>
<source>Tag id</source> <source>Tag Id</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/displaytagdialog.py" line="147"/> <location filename="openlp/core/ui/displaytagdialog.py" line="147"/>
<source>Start Html</source> <source>Start HTML</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/displaytagdialog.py" line="149"/> <location filename="openlp/core/ui/displaytagdialog.py" line="149"/>
<source>End Html</source> <source>End HTML</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
</context> </context>
@ -1428,151 +1429,200 @@ Version: %s
<context> <context>
<name>OpenLP.FirstTimeLanguageForm</name> <name>OpenLP.FirstTimeLanguageForm</name>
<message> <message>
<location filename="openlp/core/ui/firsttimelanguagedialog.py" line="60"/> <location filename="openlp/core/ui/firsttimelanguagedialog.py" line="61"/>
<source>Initial Set up Language</source> <source>Select Translation</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimelanguagedialog.py" line="62"/> <location filename="openlp/core/ui/firsttimelanguagedialog.py" line="63"/>
<source>Select the language you&apos;d like to use in OpenLP.</source> <source>Choose the translation you&apos;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> <translation type="unfinished"></translation>
</message> </message>
</context> </context>
<context> <context>
<name>OpenLP.FirstTimeWizard</name> <name>OpenLP.FirstTimeWizard</name>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="154"/> <location filename="openlp/core/ui/firsttimeform.py" line="61"/>
<source>Songs</source> <source>Downloading %s...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimeform.py" line="63"/> <location filename="openlp/core/ui/firsttimeform.py" line="212"/>
<source>Bibles</source> <source>Download complete. Click the finish button to start OpenLP.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimeform.py" line="64"/> <location filename="openlp/core/ui/firsttimeform.py" line="221"/>
<source>Themes</source> <source>Enabling selected plugins...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimeform.py" line="65"/> <location filename="openlp/core/ui/firsttimeform.py" line="244"/>
<source>Starting Updates</source> <source>Overwrite Existing Songs?</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimeform.py" line="67"/> <location filename="openlp/core/ui/firsttimeform.py" line="244"/>
<source>Downloading %s</source> <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> <translation type="unfinished"></translation>
</message> </message>
<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> <source>First Time Wizard</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Welcome to the First Time Wizard</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="146"/> <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> <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> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Activate required Plugins</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Select the Plugins you wish to use. </source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Custom Text</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="157"/> <location filename="openlp/core/ui/firsttimewizard.py" line="210"/>
<source>Bible</source> <source>Bible</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="158"/> <location filename="openlp/core/ui/firsttimewizard.py" line="211"/>
<source>Images</source> <source>Images</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="160"/> <location filename="openlp/core/ui/firsttimewizard.py" line="213"/>
<source>Presentations</source> <source>Presentations</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Media (Audio and Video)</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Allow remote access</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Monitor Song Usage</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="168"/> <location filename="openlp/core/ui/firsttimewizard.py" line="221"/>
<source>Allow Alerts</source> <source>Allow Alerts</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="170"/> <location filename="openlp/core/ui/firsttimewizard.py" line="223"/>
<source>Download Samples from OpenLP.org</source> <source>No Internet Connection</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="172"/> <location filename="openlp/core/ui/firsttimewizard.py" line="225"/>
<source>Select samples to downlaod and install for use.</source> <source>Unable to detect an Internet connection.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="175"/> <location filename="openlp/core/ui/firsttimewizard.py" line="228"/>
<source>No Internet connection found so unable to download any default files.</source> <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> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="178"/> <location filename="openlp/core/ui/firsttimewizard.py" line="236"/>
<source>Download Example Files</source> <source>Sample Songs</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Default Settings</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="182"/> <location filename="openlp/core/ui/firsttimewizard.py" line="250"/>
<source>Set up default values to be used by OpenLP</source> <source>Set up default settings to be used by OpenLP.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="184"/> <location filename="openlp/core/ui/firsttimewizard.py" line="252"/>
<source>Default output display</source> <source>Setting Up And Importing</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="186"/> <location filename="openlp/core/ui/firsttimewizard.py" line="254"/>
<source>Select the default Theme</source> <source>Please wait while OpenLP is set up and your data is imported.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="188"/> <location filename="openlp/core/ui/firsttimewizard.py" line="256"/>
<source>Press finish to apply all your changes and start OpenLP</source> <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> <translation type="unfinished"></translation>
</message> </message>
</context> </context>
@ -1697,12 +1747,12 @@ Version: %s
<context> <context>
<name>OpenLP.LanguageManager</name> <name>OpenLP.LanguageManager</name>
<message> <message>
<location filename="openlp/core/utils/languagemanager.py" line="126"/> <location filename="openlp/core/utils/languagemanager.py" line="130"/>
<source>Language</source> <source>Language</source>
<translation>Language</translation> <translation>Language</translation>
</message> </message>
<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> <source>Please restart OpenLP to use your new language setting.</source>
<translation>Please restart OpenLP to use your new language setting.</translation> <translation>Please restart OpenLP to use your new language setting.</translation>
</message> </message>
@ -2008,17 +2058,12 @@ Version: %s
<translation>&amp;Web Site</translation> <translation>&amp;Web Site</translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/mainwindow.py" line="428"/> <location filename="openlp/core/ui/mainwindow.py" line="434"/>
<source>&amp;Auto Detect</source>
<translation>&amp;Auto Detect</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="430"/>
<source>Use the system language, if available.</source> <source>Use the system language, if available.</source>
<translation>Use the system language, if available.</translation> <translation>Use the system language, if available.</translation>
</message> </message>
<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> <source>Set the interface language to %s</source>
<translation>Set the interface language to %s</translation> <translation>Set the interface language to %s</translation>
</message> </message>
@ -2063,7 +2108,7 @@ Version: %s
<translation>Set the view mode to Live.</translation> <translation>Set the view mode to Live.</translation>
</message> </message>
<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). <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> 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> You can download the latest version from http://openlp.org/.</translation>
</message> </message>
<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> <source>OpenLP Version Updated</source>
<translation>OpenLP Version Updated</translation> <translation>OpenLP Version Updated</translation>
</message> </message>
<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> <source>OpenLP Main Display Blanked</source>
<translation>OpenLP Main Display Blanked</translation> <translation>OpenLP Main Display Blanked</translation>
</message> </message>
<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> <source>The Main Display has been blanked out</source>
<translation>The Main Display has been blanked out</translation> <translation>The Main Display has been blanked out</translation>
</message> </message>
<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> <source>Default Theme: %s</source>
<translation>Default Theme: %s</translation> <translation>Default Theme: %s</translation>
</message> </message>
@ -2102,12 +2147,12 @@ You can download the latest version from http://openlp.org/.</translation>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/mainwindow.py" line="817"/> <location filename="openlp/core/ui/mainwindow.py" line="815"/>
<source>Close OpenLP</source> <source>Close OpenLP</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Are you sure you want to close OpenLP?</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -2136,11 +2181,16 @@ You can download the latest version from http://openlp.org/.</translation>
<source>&amp;Configure Display Tags</source> <source>&amp;Configure Display Tags</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="432"/>
<source>&amp;Autodetect</source>
<translation type="unfinished"></translation>
</message>
</context> </context>
<context> <context>
<name>OpenLP.MediaManagerItem</name> <name>OpenLP.MediaManagerItem</name>
<message> <message>
<location filename="openlp/core/lib/__init__.py" line="287"/> <location filename="openlp/core/lib/__init__.py" line="286"/>
<source>No Items Selected</source> <source>No Items Selected</source>
<translation>No Items Selected</translation> <translation>No Items Selected</translation>
</message> </message>
@ -2418,29 +2468,29 @@ You can download the latest version from http://openlp.org/.</translation>
<translation>&amp;Change Item Theme</translation> <translation>&amp;Change Item Theme</translation>
</message> </message>
<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. <source>File is not a valid service.
The content encoding is not UTF-8.</source> The content encoding is not UTF-8.</source>
<translation>File is not a valid service. <translation>File is not a valid service.
The content encoding is not UTF-8.</translation> The content encoding is not UTF-8.</translation>
</message> </message>
<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> <source>File is not a valid service.</source>
<translation>File is not a valid service.</translation> <translation>File is not a valid service.</translation>
</message> </message>
<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> <source>Missing Display Handler</source>
<translation>Missing Display Handler</translation> <translation>Missing Display Handler</translation>
</message> </message>
<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> <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> <translation>Your item cannot be displayed as there is no handler to display it</translation>
</message> </message>
<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> <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> <translation>Your item cannot be displayed as the plugin required to display it is missing or inactive</translation>
</message> </message>
@ -2470,7 +2520,7 @@ The content encoding is not UTF-8.</translation>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>OpenLP Service Files (*.osz)</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -3952,99 +4002,109 @@ The content encoding is not UTF-8.</translation>
<translation>Output File Location</translation> <translation>Output File Location</translation>
</message> </message>
<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> <source>usage_detail_%s_%s.txt</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Report Creation</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="114"/> <location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="123"/>
<source>Report <source>Report
%s %s
has been successfully created. </source> has been successfully created. </source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </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>
<context> <context>
<name>SongsPlugin</name> <name>SongsPlugin</name>
<message> <message>
<location filename="openlp/plugins/songs/songsplugin.py" line="104"/> <location filename="openlp/plugins/songs/songsplugin.py" line="103"/>
<source>&amp;Song</source> <source>&amp;Song</source>
<translation>&amp;Song</translation> <translation>&amp;Song</translation>
</message> </message>
<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> <source>Import songs using the import wizard.</source>
<translation>Import songs using the import wizard.</translation> <translation>Import songs using the import wizard.</translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/songs/songsplugin.py" line="183"/> <location filename="openlp/plugins/songs/songsplugin.py" line="182"/>
<source>&lt;strong&gt;Songs Plugin&lt;/strong&gt;&lt;br /&gt;The songs plugin provides the ability to display and manage songs.</source> <source>&lt;strong&gt;Songs Plugin&lt;/strong&gt;&lt;br /&gt;The songs plugin provides the ability to display and manage songs.</source>
<translation>&lt;strong&gt;Songs Plugin&lt;/strong&gt;&lt;br /&gt;The songs plugin provides the ability to display and manage songs.</translation> <translation>&lt;strong&gt;Songs Plugin&lt;/strong&gt;&lt;br /&gt;The songs plugin provides the ability to display and manage songs.</translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/songs/songsplugin.py" line="126"/> <location filename="openlp/plugins/songs/songsplugin.py" line="125"/>
<source>&amp;Re-index Songs</source> <source>&amp;Re-index Songs</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Re-index the songs database to improve searching and ordering.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/songs/songsplugin.py" line="141"/> <location filename="openlp/plugins/songs/songsplugin.py" line="140"/>
<source>Reindexing songs...</source> <source>Reindexing songs...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Add a new Song</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Edit the selected Song</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Delete the selected Song</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Preview the selected Song</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Send the selected Song live</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Add the selected Song to the service</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/songs/songsplugin.py" line="227"/> <location filename="openlp/plugins/songs/songsplugin.py" line="226"/>
<source>Song</source> <source>Song</source>
<comment>name singular</comment> <comment>name singular</comment>
<translation type="unfinished">Song</translation> <translation type="unfinished">Song</translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/songs/songsplugin.py" line="228"/> <location filename="openlp/plugins/songs/songsplugin.py" line="227"/>
<source>Songs</source> <source>Songs</source>
<comment>name plural</comment> <comment>name plural</comment>
<translation type="unfinished">Songs</translation> <translation type="unfinished">Songs</translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/songs/songsplugin.py" line="232"/> <location filename="openlp/plugins/songs/songsplugin.py" line="231"/>
<source>Songs</source> <source>Songs</source>
<comment>container title</comment> <comment>container title</comment>
<translation type="unfinished">Songs</translation> <translation type="unfinished">Songs</translation>
@ -4138,7 +4198,7 @@ The encoding is responsible for the correct character representation.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Exports songs using the export wizard.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -4594,12 +4654,12 @@ The encoding is responsible for the correct character representation.</source>
<translation>Lyrics</translation> <translation>Lyrics</translation>
</message> </message>
<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> <source>Delete Song(s)?</source>
<translation>Delete Song(s)?</translation> <translation>Delete Song(s)?</translation>
</message> </message>
<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> <source>CCLI License: </source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -4609,7 +4669,7 @@ The encoding is responsible for the correct character representation.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message numerus="yes"> <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> <source>Are you sure you want to delete the %n selected song(s)?</source>
<translation type="unfinished"> <translation type="unfinished">
<numerusform></numerusform> <numerusform></numerusform>

View File

@ -212,7 +212,7 @@ Do you want to continue anyway?</translation>
<translation>Bible not fully loaded.</translation> <translation>Bible not fully loaded.</translation>
</message> </message>
<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> <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> <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> </message>
@ -842,59 +842,59 @@ demand and thus an internet connection is required.</translation>
<context> <context>
<name>ImagePlugin</name> <name>ImagePlugin</name>
<message> <message>
<location filename="openlp/plugins/images/imageplugin.py" line="45"/> <location filename="openlp/plugins/images/imageplugin.py" line="44"/>
<source>&lt;strong&gt;Image Plugin&lt;/strong&gt;&lt;br /&gt;The image plugin provides displaying of images.&lt;br /&gt;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&apos;s &quot;timed looping&quot; 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&apos;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> <source>&lt;strong&gt;Image Plugin&lt;/strong&gt;&lt;br /&gt;The image plugin provides displaying of images.&lt;br /&gt;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&apos;s &quot;timed looping&quot; 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&apos;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>&lt;strong&gt;Image Plugin&lt;/strong&gt;&lt;br /&gt;The image plugin provides displaying of images.&lt;br /&gt;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&apos;s &quot;timed looping&quot; 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&apos;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> <translation>&lt;strong&gt;Image Plugin&lt;/strong&gt;&lt;br /&gt;The image plugin provides displaying of images.&lt;br /&gt;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&apos;s &quot;timed looping&quot; 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&apos;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>
<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> <source>Load a new Image</source>
<translation>Load a new Image</translation> <translation>Load a new Image</translation>
</message> </message>
<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> <source>Add a new Image</source>
<translation>Add a new Image</translation> <translation>Add a new Image</translation>
</message> </message>
<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> <source>Edit the selected Image</source>
<translation>Edit the selected Image</translation> <translation>Edit the selected Image</translation>
</message> </message>
<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> <source>Delete the selected Image</source>
<translation>Delete the selected Image</translation> <translation>Delete the selected Image</translation>
</message> </message>
<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> <source>Preview the selected Image</source>
<translation>Preview the selected Image</translation> <translation>Preview the selected Image</translation>
</message> </message>
<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> <source>Send the selected Image live</source>
<translation>Send the selected Image live</translation> <translation>Send the selected Image live</translation>
</message> </message>
<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> <source>Add the selected Image to the service</source>
<translation>Add the selected Image to the service</translation> <translation>Add the selected Image to the service</translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/images/imageplugin.py" line="64"/> <location filename="openlp/plugins/images/imageplugin.py" line="63"/>
<source>Image</source> <source>Image</source>
<comment>name singular</comment> <comment>name singular</comment>
<translation type="unfinished">Image</translation> <translation type="unfinished">Image</translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/images/imageplugin.py" line="65"/> <location filename="openlp/plugins/images/imageplugin.py" line="64"/>
<source>Images</source> <source>Images</source>
<comment>name plural</comment> <comment>name plural</comment>
<translation type="unfinished">Images</translation> <translation type="unfinished">Images</translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/images/imageplugin.py" line="69"/> <location filename="openlp/plugins/images/imageplugin.py" line="68"/>
<source>Images</source> <source>Images</source>
<comment>container title</comment> <comment>container title</comment>
<translation type="unfinished">Images</translation> <translation type="unfinished">Images</translation>
@ -951,59 +951,59 @@ Do you want to add the other images anyway?</translation>
<context> <context>
<name>MediaPlugin</name> <name>MediaPlugin</name>
<message> <message>
<location filename="openlp/plugins/media/mediaplugin.py" line="70"/> <location filename="openlp/plugins/media/mediaplugin.py" line="93"/>
<source>&lt;strong&gt;Media Plugin&lt;/strong&gt;&lt;br /&gt;The media plugin provides playback of audio and video.</source> <source>&lt;strong&gt;Media Plugin&lt;/strong&gt;&lt;br /&gt;The media plugin provides playback of audio and video.</source>
<translation>&lt;strong&gt;Media Plugin&lt;/strong&gt;&lt;br /&gt;The media plugin provides playback of audio and video.</translation> <translation>&lt;strong&gt;Media Plugin&lt;/strong&gt;&lt;br /&gt;The media plugin provides playback of audio and video.</translation>
</message> </message>
<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> <source>Load a new Media</source>
<translation>Load a new Media</translation> <translation>Load a new Media</translation>
</message> </message>
<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> <source>Add a new Media</source>
<translation>Add a new Media</translation> <translation>Add a new Media</translation>
</message> </message>
<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> <source>Edit the selected Media</source>
<translation>Edit the selected Media</translation> <translation>Edit the selected Media</translation>
</message> </message>
<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> <source>Delete the selected Media</source>
<translation>Delete the selected Media</translation> <translation>Delete the selected Media</translation>
</message> </message>
<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> <source>Preview the selected Media</source>
<translation>Preview the selected Media</translation> <translation>Preview the selected Media</translation>
</message> </message>
<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> <source>Send the selected Media live</source>
<translation>Send the selected Media live</translation> <translation>Send the selected Media live</translation>
</message> </message>
<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> <source>Add the selected Media to the service</source>
<translation>Add the selected Media to the service</translation> <translation>Add the selected Media to the service</translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/media/mediaplugin.py" line="80"/> <location filename="openlp/plugins/media/mediaplugin.py" line="103"/>
<source>Media</source> <source>Media</source>
<comment>name singular</comment> <comment>name singular</comment>
<translation type="unfinished">Media</translation> <translation type="unfinished">Media</translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/media/mediaplugin.py" line="81"/> <location filename="openlp/plugins/media/mediaplugin.py" line="104"/>
<source>Media</source> <source>Media</source>
<comment>name plural</comment> <comment>name plural</comment>
<translation type="unfinished">Media</translation> <translation type="unfinished">Media</translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/media/mediaplugin.py" line="85"/> <location filename="openlp/plugins/media/mediaplugin.py" line="108"/>
<source>Media</source> <source>Media</source>
<comment>container title</comment> <comment>container title</comment>
<translation type="unfinished">Media</translation> <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> <source> build %s</source>
<translation> build %s</translation> <translation> build %s</translation>
</message> </message>
<message>
<location filename="openlp/core/ui/aboutdialog.py" line="224"/>
<source>Copyright &#xa9; 2004-2011 Raoul Snyman
Portions copyright &#xa9; 2004-2011 Tim Bentley, Jonathan Corwin, Michael Gorven, Scott Guerrieri,
Meinert Jordan, Andreas Preikschat, Christian Richter, Philip
Ridout, Maikel Stuivenberg, Martin Thompson, Jon Tibble, 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> <message>
<location filename="openlp/core/ui/aboutdialog.py" line="231"/> <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> <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> He has set us free.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message>
<location filename="openlp/core/ui/aboutdialog.py" line="224"/>
<source>Copyright &#xa9; 2004-2011 Raoul Snyman
Portions copyright &#xa9; 2004-2011 Tim Bentley, Jonathan Corwin, Michael Gorven, Scott Guerrieri,
Meinert Jordan, Andreas Preikschat, Christian Richter, Philip
Ridout, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Carsten
Tinggaard, Frode Woldsund</source>
<translation type="unfinished"></translation>
</message>
</context> </context>
<context> <context>
<name>OpenLP.AdvancedTab</name> <name>OpenLP.AdvancedTab</name>
@ -1296,18 +1294,18 @@ Final Credit
</message> </message>
<message> <message>
<location filename="openlp/core/ui/displaytagdialog.py" line="145"/> <location filename="openlp/core/ui/displaytagdialog.py" line="145"/>
<source>Tag id</source> <source>Tag Id</source>
<translation>Tag Id</translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/displaytagdialog.py" line="147"/> <location filename="openlp/core/ui/displaytagdialog.py" line="147"/>
<source>Start Html</source> <source>Start HTML</source>
<translation>Start HTML</translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/displaytagdialog.py" line="149"/> <location filename="openlp/core/ui/displaytagdialog.py" line="149"/>
<source>End Html</source> <source>End HTML</source>
<translation>End HTML</translation> <translation type="unfinished"></translation>
</message> </message>
</context> </context>
<context> <context>
@ -1472,151 +1470,200 @@ Version: %s
<context> <context>
<name>OpenLP.FirstTimeLanguageForm</name> <name>OpenLP.FirstTimeLanguageForm</name>
<message> <message>
<location filename="openlp/core/ui/firsttimelanguagedialog.py" line="60"/> <location filename="openlp/core/ui/firsttimelanguagedialog.py" line="61"/>
<source>Initial Set up Language</source> <source>Select Translation</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimelanguagedialog.py" line="62"/> <location filename="openlp/core/ui/firsttimelanguagedialog.py" line="63"/>
<source>Select the language you&apos;d like to use in OpenLP.</source> <source>Choose the translation you&apos;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> <translation type="unfinished"></translation>
</message> </message>
</context> </context>
<context> <context>
<name>OpenLP.FirstTimeWizard</name> <name>OpenLP.FirstTimeWizard</name>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="154"/> <location filename="openlp/core/ui/firsttimeform.py" line="61"/>
<source>Songs</source> <source>Downloading %s...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimeform.py" line="63"/> <location filename="openlp/core/ui/firsttimeform.py" line="212"/>
<source>Bibles</source> <source>Download complete. Click the finish button to start OpenLP.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimeform.py" line="64"/> <location filename="openlp/core/ui/firsttimeform.py" line="221"/>
<source>Themes</source> <source>Enabling selected plugins...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimeform.py" line="65"/> <location filename="openlp/core/ui/firsttimeform.py" line="244"/>
<source>Starting Updates</source> <source>Overwrite Existing Songs?</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimeform.py" line="67"/> <location filename="openlp/core/ui/firsttimeform.py" line="244"/>
<source>Downloading %s</source> <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> <translation type="unfinished"></translation>
</message> </message>
<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> <source>First Time Wizard</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Welcome to the First Time Wizard</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="146"/> <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> <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> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Activate required Plugins</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Select the Plugins you wish to use. </source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Custom Text</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="157"/> <location filename="openlp/core/ui/firsttimewizard.py" line="210"/>
<source>Bible</source> <source>Bible</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="158"/> <location filename="openlp/core/ui/firsttimewizard.py" line="211"/>
<source>Images</source> <source>Images</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="160"/> <location filename="openlp/core/ui/firsttimewizard.py" line="213"/>
<source>Presentations</source> <source>Presentations</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Media (Audio and Video)</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Allow remote access</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Monitor Song Usage</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="168"/> <location filename="openlp/core/ui/firsttimewizard.py" line="221"/>
<source>Allow Alerts</source> <source>Allow Alerts</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="170"/> <location filename="openlp/core/ui/firsttimewizard.py" line="223"/>
<source>Download Samples from OpenLP.org</source> <source>No Internet Connection</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="172"/> <location filename="openlp/core/ui/firsttimewizard.py" line="225"/>
<source>Select samples to downlaod and install for use.</source> <source>Unable to detect an Internet connection.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="175"/> <location filename="openlp/core/ui/firsttimewizard.py" line="228"/>
<source>No Internet connection found so unable to download any default files.</source> <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> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="178"/> <location filename="openlp/core/ui/firsttimewizard.py" line="236"/>
<source>Download Example Files</source> <source>Sample Songs</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Default Settings</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="182"/> <location filename="openlp/core/ui/firsttimewizard.py" line="250"/>
<source>Set up default values to be used by OpenLP</source> <source>Set up default settings to be used by OpenLP.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="184"/> <location filename="openlp/core/ui/firsttimewizard.py" line="252"/>
<source>Default output display</source> <source>Setting Up And Importing</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="186"/> <location filename="openlp/core/ui/firsttimewizard.py" line="254"/>
<source>Select the default Theme</source> <source>Please wait while OpenLP is set up and your data is imported.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="188"/> <location filename="openlp/core/ui/firsttimewizard.py" line="256"/>
<source>Press finish to apply all your changes and start OpenLP</source> <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> <translation type="unfinished"></translation>
</message> </message>
</context> </context>
@ -1741,12 +1788,12 @@ Version: %s
<context> <context>
<name>OpenLP.LanguageManager</name> <name>OpenLP.LanguageManager</name>
<message> <message>
<location filename="openlp/core/utils/languagemanager.py" line="126"/> <location filename="openlp/core/utils/languagemanager.py" line="130"/>
<source>Language</source> <source>Language</source>
<translation>Language</translation> <translation>Language</translation>
</message> </message>
<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> <source>Please restart OpenLP to use your new language setting.</source>
<translation>Please restart OpenLP to use your new language setting.</translation> <translation>Please restart OpenLP to use your new language setting.</translation>
</message> </message>
@ -2052,17 +2099,12 @@ Version: %s
<translation>&amp;Web Site</translation> <translation>&amp;Web Site</translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/mainwindow.py" line="428"/> <location filename="openlp/core/ui/mainwindow.py" line="434"/>
<source>&amp;Auto Detect</source>
<translation>&amp;Auto Detect</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="430"/>
<source>Use the system language, if available.</source> <source>Use the system language, if available.</source>
<translation>Use the system language, if available.</translation> <translation>Use the system language, if available.</translation>
</message> </message>
<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> <source>Set the interface language to %s</source>
<translation>Set the interface language to %s</translation> <translation>Set the interface language to %s</translation>
</message> </message>
@ -2107,27 +2149,27 @@ Version: %s
<translation>Set the view mode to Live.</translation> <translation>Set the view mode to Live.</translation>
</message> </message>
<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> <source>OpenLP Version Updated</source>
<translation>OpenLP Version Updated</translation> <translation>OpenLP Version Updated</translation>
</message> </message>
<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> <source>OpenLP Main Display Blanked</source>
<translation>OpenLP Main Display Blanked</translation> <translation>OpenLP Main Display Blanked</translation>
</message> </message>
<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> <source>The Main Display has been blanked out</source>
<translation>The Main Display has been blanked out</translation> <translation>The Main Display has been blanked out</translation>
</message> </message>
<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> <source>Default Theme: %s</source>
<translation>Default Theme: %s</translation> <translation>Default Theme: %s</translation>
</message> </message>
<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). <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> 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 &amp;Shortcuts...</translation> <translation>Configure &amp;Shortcuts...</translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/mainwindow.py" line="817"/> <location filename="openlp/core/ui/mainwindow.py" line="815"/>
<source>Close OpenLP</source> <source>Close OpenLP</source>
<translation>Close OpenLP</translation> <translation>Close OpenLP</translation>
</message> </message>
<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> <source>Are you sure you want to close OpenLP?</source>
<translation>Are you sure you want to close OpenLP?</translation> <translation>Are you sure you want to close OpenLP?</translation>
</message> </message>
@ -2181,11 +2223,16 @@ You can download the latest version from http://openlp.org/.</translation>
<source>&amp;Configure Display Tags</source> <source>&amp;Configure Display Tags</source>
<translation>&amp;Configure Display Tags</translation> <translation>&amp;Configure Display Tags</translation>
</message> </message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="432"/>
<source>&amp;Autodetect</source>
<translation type="unfinished"></translation>
</message>
</context> </context>
<context> <context>
<name>OpenLP.MediaManagerItem</name> <name>OpenLP.MediaManagerItem</name>
<message> <message>
<location filename="openlp/core/lib/__init__.py" line="287"/> <location filename="openlp/core/lib/__init__.py" line="286"/>
<source>No Items Selected</source> <source>No Items Selected</source>
<translation>No Items Selected</translation> <translation>No Items Selected</translation>
</message> </message>
@ -2463,29 +2510,29 @@ You can download the latest version from http://openlp.org/.</translation>
<translation>&amp;Change Item Theme</translation> <translation>&amp;Change Item Theme</translation>
</message> </message>
<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. <source>File is not a valid service.
The content encoding is not UTF-8.</source> The content encoding is not UTF-8.</source>
<translation>File is not a valid service. <translation>File is not a valid service.
The content encoding is not UTF-8.</translation> The content encoding is not UTF-8.</translation>
</message> </message>
<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> <source>File is not a valid service.</source>
<translation>File is not a valid service.</translation> <translation>File is not a valid service.</translation>
</message> </message>
<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> <source>Missing Display Handler</source>
<translation>Missing Display Handler</translation> <translation>Missing Display Handler</translation>
</message> </message>
<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> <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> <translation>Your item cannot be displayed as there is no handler to display it</translation>
</message> </message>
<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> <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> <translation>Your item cannot be displayed as the plugin required to display it is missing or inactive</translation>
</message> </message>
@ -2515,7 +2562,7 @@ The content encoding is not UTF-8.</translation>
<translation>Open File</translation> <translation>Open File</translation>
</message> </message>
<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> <source>OpenLP Service Files (*.osz)</source>
<translation>OpenLP Service Files (*.osz)</translation> <translation>OpenLP Service Files (*.osz)</translation>
</message> </message>
@ -3997,17 +4044,17 @@ The content encoding is not UTF-8.</translation>
<translation>Report Location</translation> <translation>Report Location</translation>
</message> </message>
<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> <source>usage_detail_%s_%s.txt</source>
<translation>usage_detail_%s_%s.txt</translation> <translation>usage_detail_%s_%s.txt</translation>
</message> </message>
<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> <source>Report Creation</source>
<translation>Report Creation</translation> <translation>Report Creation</translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="114"/> <location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="123"/>
<source>Report <source>Report
%s %s
has been successfully created. </source> has been successfully created. </source>
@ -4015,83 +4062,93 @@ has been successfully created. </source>
%s %s
has been successfully created. </translation> has been successfully created. </translation>
</message> </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>
<context> <context>
<name>SongsPlugin</name> <name>SongsPlugin</name>
<message> <message>
<location filename="openlp/plugins/songs/songsplugin.py" line="104"/> <location filename="openlp/plugins/songs/songsplugin.py" line="103"/>
<source>&amp;Song</source> <source>&amp;Song</source>
<translation>&amp;Song</translation> <translation>&amp;Song</translation>
</message> </message>
<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> <source>Import songs using the import wizard.</source>
<translation>Import songs using the import wizard.</translation> <translation>Import songs using the import wizard.</translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/songs/songsplugin.py" line="183"/> <location filename="openlp/plugins/songs/songsplugin.py" line="182"/>
<source>&lt;strong&gt;Songs Plugin&lt;/strong&gt;&lt;br /&gt;The songs plugin provides the ability to display and manage songs.</source> <source>&lt;strong&gt;Songs Plugin&lt;/strong&gt;&lt;br /&gt;The songs plugin provides the ability to display and manage songs.</source>
<translation>&lt;strong&gt;Songs Plugin&lt;/strong&gt;&lt;br /&gt;The songs plugin provides the ability to display and manage songs.</translation> <translation>&lt;strong&gt;Songs Plugin&lt;/strong&gt;&lt;br /&gt;The songs plugin provides the ability to display and manage songs.</translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/songs/songsplugin.py" line="126"/> <location filename="openlp/plugins/songs/songsplugin.py" line="125"/>
<source>&amp;Re-index Songs</source> <source>&amp;Re-index Songs</source>
<translation>&amp;Re-index Songs</translation> <translation>&amp;Re-index Songs</translation>
</message> </message>
<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> <source>Re-index the songs database to improve searching and ordering.</source>
<translation>Re-index the songs database to improve searching and ordering.</translation> <translation>Re-index the songs database to improve searching and ordering.</translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/songs/songsplugin.py" line="141"/> <location filename="openlp/plugins/songs/songsplugin.py" line="140"/>
<source>Reindexing songs...</source> <source>Reindexing songs...</source>
<translation>Reindexing songs...</translation> <translation>Reindexing songs...</translation>
</message> </message>
<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> <source>Add a new Song</source>
<translation>Add a new Song</translation> <translation>Add a new Song</translation>
</message> </message>
<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> <source>Edit the selected Song</source>
<translation>Edit the selected Song</translation> <translation>Edit the selected Song</translation>
</message> </message>
<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> <source>Delete the selected Song</source>
<translation>Delete the selected Song</translation> <translation>Delete the selected Song</translation>
</message> </message>
<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> <source>Preview the selected Song</source>
<translation>Preview the selected Song</translation> <translation>Preview the selected Song</translation>
</message> </message>
<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> <source>Send the selected Song live</source>
<translation>Send the selected Song live</translation> <translation>Send the selected Song live</translation>
</message> </message>
<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> <source>Add the selected Song to the service</source>
<translation>Add the selected Song to the service</translation> <translation>Add the selected Song to the service</translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/songs/songsplugin.py" line="227"/> <location filename="openlp/plugins/songs/songsplugin.py" line="226"/>
<source>Song</source> <source>Song</source>
<comment>name singular</comment> <comment>name singular</comment>
<translation type="unfinished">Song</translation> <translation type="unfinished">Song</translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/songs/songsplugin.py" line="228"/> <location filename="openlp/plugins/songs/songsplugin.py" line="227"/>
<source>Songs</source> <source>Songs</source>
<comment>name plural</comment> <comment>name plural</comment>
<translation type="unfinished">Songs</translation> <translation type="unfinished">Songs</translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/songs/songsplugin.py" line="232"/> <location filename="openlp/plugins/songs/songsplugin.py" line="231"/>
<source>Songs</source> <source>Songs</source>
<comment>container title</comment> <comment>container title</comment>
<translation type="unfinished">Songs</translation> <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> The encoding is responsible for the correct character representation.</translation>
</message> </message>
<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> <source>Exports songs using the export wizard.</source>
<translation>Exports songs using the export wizard.</translation> <translation>Exports songs using the export wizard.</translation>
</message> </message>
@ -4644,12 +4701,12 @@ The encoding is responsible for the correct character representation.</translati
<translation>Lyrics</translation> <translation>Lyrics</translation>
</message> </message>
<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> <source>Delete Song(s)?</source>
<translation>Delete Song(s)?</translation> <translation>Delete Song(s)?</translation>
</message> </message>
<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> <source>CCLI License: </source>
<translation>CCLI License: </translation> <translation>CCLI License: </translation>
</message> </message>
@ -4659,7 +4716,7 @@ The encoding is responsible for the correct character representation.</translati
<translation>Entire Song</translation> <translation>Entire Song</translation>
</message> </message>
<message numerus="yes"> <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> <source>Are you sure you want to delete the %n selected song(s)?</source>
<translation> <translation>
<numerusform>Are you sure you want to delete the %n selected song(s)?</numerusform> <numerusform>Are you sure you want to delete the %n selected song(s)?</numerusform>

View File

@ -211,7 +211,7 @@ Do you want to continue anyway?</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>You cannot combine single and dual Bible verse search results. Do you want to delete your search results and start a new search?</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -830,59 +830,59 @@ demand and thus an internet connection is required.</source>
<context> <context>
<name>ImagePlugin</name> <name>ImagePlugin</name>
<message> <message>
<location filename="openlp/plugins/images/imageplugin.py" line="45"/> <location filename="openlp/plugins/images/imageplugin.py" line="44"/>
<source>&lt;strong&gt;Image Plugin&lt;/strong&gt;&lt;br /&gt;The image plugin provides displaying of images.&lt;br /&gt;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&apos;s &quot;timed looping&quot; 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&apos;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> <source>&lt;strong&gt;Image Plugin&lt;/strong&gt;&lt;br /&gt;The image plugin provides displaying of images.&lt;br /&gt;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&apos;s &quot;timed looping&quot; 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&apos;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> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Load a new Image</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Add a new Image</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Edit the selected Image</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Delete the selected Image</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Preview the selected Image</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Send the selected Image live</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Add the selected Image to the service</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/images/imageplugin.py" line="64"/> <location filename="openlp/plugins/images/imageplugin.py" line="63"/>
<source>Image</source> <source>Image</source>
<comment>name singular</comment> <comment>name singular</comment>
<translation type="unfinished">Imagen</translation> <translation type="unfinished">Imagen</translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/images/imageplugin.py" line="65"/> <location filename="openlp/plugins/images/imageplugin.py" line="64"/>
<source>Images</source> <source>Images</source>
<comment>name plural</comment> <comment>name plural</comment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/images/imageplugin.py" line="69"/> <location filename="openlp/plugins/images/imageplugin.py" line="68"/>
<source>Images</source> <source>Images</source>
<comment>container title</comment> <comment>container title</comment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
@ -938,59 +938,59 @@ Do you want to add the other images anyway?</source>
<context> <context>
<name>MediaPlugin</name> <name>MediaPlugin</name>
<message> <message>
<location filename="openlp/plugins/media/mediaplugin.py" line="70"/> <location filename="openlp/plugins/media/mediaplugin.py" line="93"/>
<source>&lt;strong&gt;Media Plugin&lt;/strong&gt;&lt;br /&gt;The media plugin provides playback of audio and video.</source> <source>&lt;strong&gt;Media Plugin&lt;/strong&gt;&lt;br /&gt;The media plugin provides playback of audio and video.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Load a new Media</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Add a new Media</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Edit the selected Media</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Delete the selected Media</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Preview the selected Media</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Send the selected Media live</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Add the selected Media to the service</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/media/mediaplugin.py" line="80"/> <location filename="openlp/plugins/media/mediaplugin.py" line="103"/>
<source>Media</source> <source>Media</source>
<comment>name singular</comment> <comment>name singular</comment>
<translation type="unfinished">Medios</translation> <translation type="unfinished">Medios</translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/media/mediaplugin.py" line="81"/> <location filename="openlp/plugins/media/mediaplugin.py" line="104"/>
<source>Media</source> <source>Media</source>
<comment>name plural</comment> <comment>name plural</comment>
<translation type="unfinished">Medios</translation> <translation type="unfinished">Medios</translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/media/mediaplugin.py" line="85"/> <location filename="openlp/plugins/media/mediaplugin.py" line="108"/>
<source>Media</source> <source>Media</source>
<comment>container title</comment> <comment>container title</comment>
<translation type="unfinished">Medios</translation> <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> <source> build %s</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message>
<location filename="openlp/core/ui/aboutdialog.py" line="224"/>
<source>Copyright &#xa9; 2004-2011 Raoul Snyman
Portions copyright &#xa9; 2004-2011 Tim Bentley, Jonathan Corwin, Michael Gorven, Scott Guerrieri,
Meinert Jordan, Andreas Preikschat, Christian Richter, Philip
Ridout, Maikel Stuivenberg, Martin Thompson, Jon Tibble, CarstennTinggaard, Frode Woldsund</source>
<translation type="unfinished"></translation>
</message>
<message> <message>
<location filename="openlp/core/ui/aboutdialog.py" line="231"/> <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> <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> He has set us free.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message>
<location filename="openlp/core/ui/aboutdialog.py" line="224"/>
<source>Copyright &#xa9; 2004-2011 Raoul Snyman
Portions copyright &#xa9; 2004-2011 Tim Bentley, Jonathan Corwin, Michael Gorven, Scott Guerrieri,
Meinert Jordan, Andreas Preikschat, Christian Richter, Philip
Ridout, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Carsten
Tinggaard, Frode Woldsund</source>
<translation type="unfinished"></translation>
</message>
</context> </context>
<context> <context>
<name>OpenLP.AdvancedTab</name> <name>OpenLP.AdvancedTab</name>
@ -1274,17 +1275,17 @@ Final Credit
</message> </message>
<message> <message>
<location filename="openlp/core/ui/displaytagdialog.py" line="145"/> <location filename="openlp/core/ui/displaytagdialog.py" line="145"/>
<source>Tag id</source> <source>Tag Id</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/displaytagdialog.py" line="147"/> <location filename="openlp/core/ui/displaytagdialog.py" line="147"/>
<source>Start Html</source> <source>Start HTML</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/displaytagdialog.py" line="149"/> <location filename="openlp/core/ui/displaytagdialog.py" line="149"/>
<source>End Html</source> <source>End HTML</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
</context> </context>
@ -1422,151 +1423,200 @@ Version: %s
<context> <context>
<name>OpenLP.FirstTimeLanguageForm</name> <name>OpenLP.FirstTimeLanguageForm</name>
<message> <message>
<location filename="openlp/core/ui/firsttimelanguagedialog.py" line="60"/> <location filename="openlp/core/ui/firsttimelanguagedialog.py" line="61"/>
<source>Initial Set up Language</source> <source>Select Translation</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimelanguagedialog.py" line="62"/> <location filename="openlp/core/ui/firsttimelanguagedialog.py" line="63"/>
<source>Select the language you&apos;d like to use in OpenLP.</source> <source>Choose the translation you&apos;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> <translation type="unfinished"></translation>
</message> </message>
</context> </context>
<context> <context>
<name>OpenLP.FirstTimeWizard</name> <name>OpenLP.FirstTimeWizard</name>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="154"/> <location filename="openlp/core/ui/firsttimeform.py" line="61"/>
<source>Songs</source> <source>Downloading %s...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimeform.py" line="63"/> <location filename="openlp/core/ui/firsttimeform.py" line="212"/>
<source>Bibles</source> <source>Download complete. Click the finish button to start OpenLP.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimeform.py" line="64"/> <location filename="openlp/core/ui/firsttimeform.py" line="221"/>
<source>Themes</source> <source>Enabling selected plugins...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimeform.py" line="65"/> <location filename="openlp/core/ui/firsttimeform.py" line="244"/>
<source>Starting Updates</source> <source>Overwrite Existing Songs?</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimeform.py" line="67"/> <location filename="openlp/core/ui/firsttimeform.py" line="244"/>
<source>Downloading %s</source> <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> <translation type="unfinished"></translation>
</message> </message>
<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> <source>First Time Wizard</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Welcome to the First Time Wizard</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="146"/> <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> <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> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Activate required Plugins</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Select the Plugins you wish to use. </source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Custom Text</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="157"/> <location filename="openlp/core/ui/firsttimewizard.py" line="210"/>
<source>Bible</source> <source>Bible</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="158"/> <location filename="openlp/core/ui/firsttimewizard.py" line="211"/>
<source>Images</source> <source>Images</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="160"/> <location filename="openlp/core/ui/firsttimewizard.py" line="213"/>
<source>Presentations</source> <source>Presentations</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Media (Audio and Video)</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Allow remote access</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Monitor Song Usage</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="168"/> <location filename="openlp/core/ui/firsttimewizard.py" line="221"/>
<source>Allow Alerts</source> <source>Allow Alerts</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="170"/> <location filename="openlp/core/ui/firsttimewizard.py" line="223"/>
<source>Download Samples from OpenLP.org</source> <source>No Internet Connection</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="172"/> <location filename="openlp/core/ui/firsttimewizard.py" line="225"/>
<source>Select samples to downlaod and install for use.</source> <source>Unable to detect an Internet connection.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="175"/> <location filename="openlp/core/ui/firsttimewizard.py" line="228"/>
<source>No Internet connection found so unable to download any default files.</source> <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> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="178"/> <location filename="openlp/core/ui/firsttimewizard.py" line="236"/>
<source>Download Example Files</source> <source>Sample Songs</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Default Settings</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="182"/> <location filename="openlp/core/ui/firsttimewizard.py" line="250"/>
<source>Set up default values to be used by OpenLP</source> <source>Set up default settings to be used by OpenLP.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="184"/> <location filename="openlp/core/ui/firsttimewizard.py" line="252"/>
<source>Default output display</source> <source>Setting Up And Importing</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="186"/> <location filename="openlp/core/ui/firsttimewizard.py" line="254"/>
<source>Select the default Theme</source> <source>Please wait while OpenLP is set up and your data is imported.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="188"/> <location filename="openlp/core/ui/firsttimewizard.py" line="256"/>
<source>Press finish to apply all your changes and start OpenLP</source> <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> <translation type="unfinished"></translation>
</message> </message>
</context> </context>
@ -1691,12 +1741,12 @@ Version: %s
<context> <context>
<name>OpenLP.LanguageManager</name> <name>OpenLP.LanguageManager</name>
<message> <message>
<location filename="openlp/core/utils/languagemanager.py" line="126"/> <location filename="openlp/core/utils/languagemanager.py" line="130"/>
<source>Language</source> <source>Language</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Please restart OpenLP to use your new language setting.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -2002,17 +2052,12 @@ Version: %s
<translation type="unfinished">Sitio &amp;Web</translation> <translation type="unfinished">Sitio &amp;Web</translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/mainwindow.py" line="428"/> <location filename="openlp/core/ui/mainwindow.py" line="434"/>
<source>&amp;Auto Detect</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="430"/>
<source>Use the system language, if available.</source> <source>Use the system language, if available.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Set the interface language to %s</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -2057,29 +2102,29 @@ Version: %s
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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). <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> You can download the latest version from http://openlp.org/.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>OpenLP Version Updated</source>
<translation type="unfinished">Versión de OpenLP Actualizada</translation> <translation type="unfinished">Versión de OpenLP Actualizada</translation>
</message> </message>
<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> <source>OpenLP Main Display Blanked</source>
<translation type="unfinished">Pantalla Principal de OpenLP en Blanco</translation> <translation type="unfinished">Pantalla Principal de OpenLP en Blanco</translation>
</message> </message>
<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> <source>The Main Display has been blanked out</source>
<translation type="unfinished">La Pantalla Principal esta en negro</translation> <translation type="unfinished">La Pantalla Principal esta en negro</translation>
</message> </message>
<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> <source>Default Theme: %s</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -2095,12 +2140,12 @@ You can download the latest version from http://openlp.org/.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/mainwindow.py" line="817"/> <location filename="openlp/core/ui/mainwindow.py" line="815"/>
<source>Close OpenLP</source> <source>Close OpenLP</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Are you sure you want to close OpenLP?</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -2129,11 +2174,16 @@ You can download the latest version from http://openlp.org/.</source>
<source>&amp;Configure Display Tags</source> <source>&amp;Configure Display Tags</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="432"/>
<source>&amp;Autodetect</source>
<translation type="unfinished"></translation>
</message>
</context> </context>
<context> <context>
<name>OpenLP.MediaManagerItem</name> <name>OpenLP.MediaManagerItem</name>
<message> <message>
<location filename="openlp/core/lib/__init__.py" line="287"/> <location filename="openlp/core/lib/__init__.py" line="286"/>
<source>No Items Selected</source> <source>No Items Selected</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -2411,28 +2461,28 @@ You can download the latest version from http://openlp.org/.</source>
<translation type="unfinished">&amp;Cambiar Tema de Ítem</translation> <translation type="unfinished">&amp;Cambiar Tema de Ítem</translation>
</message> </message>
<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. <source>File is not a valid service.
The content encoding is not UTF-8.</source> The content encoding is not UTF-8.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>File is not a valid service.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Missing Display Handler</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Your item cannot be displayed as there is no handler to display it</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Your item cannot be displayed as the plugin required to display it is missing or inactive</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -2462,7 +2512,7 @@ The content encoding is not UTF-8.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>OpenLP Service Files (*.osz)</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -3943,99 +3993,109 @@ The content encoding is not UTF-8.</source>
<translation type="unfinished">Archivo de Salida</translation> <translation type="unfinished">Archivo de Salida</translation>
</message> </message>
<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> <source>usage_detail_%s_%s.txt</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Report Creation</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="114"/> <location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="123"/>
<source>Report <source>Report
%s %s
has been successfully created. </source> has been successfully created. </source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </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>
<context> <context>
<name>SongsPlugin</name> <name>SongsPlugin</name>
<message> <message>
<location filename="openlp/plugins/songs/songsplugin.py" line="104"/> <location filename="openlp/plugins/songs/songsplugin.py" line="103"/>
<source>&amp;Song</source> <source>&amp;Song</source>
<translation type="unfinished">&amp;Canción</translation> <translation type="unfinished">&amp;Canción</translation>
</message> </message>
<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> <source>Import songs using the import wizard.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/songs/songsplugin.py" line="183"/> <location filename="openlp/plugins/songs/songsplugin.py" line="182"/>
<source>&lt;strong&gt;Songs Plugin&lt;/strong&gt;&lt;br /&gt;The songs plugin provides the ability to display and manage songs.</source> <source>&lt;strong&gt;Songs Plugin&lt;/strong&gt;&lt;br /&gt;The songs plugin provides the ability to display and manage songs.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/songs/songsplugin.py" line="126"/> <location filename="openlp/plugins/songs/songsplugin.py" line="125"/>
<source>&amp;Re-index Songs</source> <source>&amp;Re-index Songs</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Re-index the songs database to improve searching and ordering.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/songs/songsplugin.py" line="141"/> <location filename="openlp/plugins/songs/songsplugin.py" line="140"/>
<source>Reindexing songs...</source> <source>Reindexing songs...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Add a new Song</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Edit the selected Song</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Delete the selected Song</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Preview the selected Song</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Send the selected Song live</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Add the selected Song to the service</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/songs/songsplugin.py" line="227"/> <location filename="openlp/plugins/songs/songsplugin.py" line="226"/>
<source>Song</source> <source>Song</source>
<comment>name singular</comment> <comment>name singular</comment>
<translation type="unfinished">Canción</translation> <translation type="unfinished">Canción</translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/songs/songsplugin.py" line="228"/> <location filename="openlp/plugins/songs/songsplugin.py" line="227"/>
<source>Songs</source> <source>Songs</source>
<comment>name plural</comment> <comment>name plural</comment>
<translation type="unfinished">Canciones</translation> <translation type="unfinished">Canciones</translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/songs/songsplugin.py" line="232"/> <location filename="openlp/plugins/songs/songsplugin.py" line="231"/>
<source>Songs</source> <source>Songs</source>
<comment>container title</comment> <comment>container title</comment>
<translation type="unfinished">Canciones</translation> <translation type="unfinished">Canciones</translation>
@ -4129,7 +4189,7 @@ The encoding is responsible for the correct character representation.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Exports songs using the export wizard.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -4585,12 +4645,12 @@ The encoding is responsible for the correct character representation.</source>
<translation type="unfinished">Letra</translation> <translation type="unfinished">Letra</translation>
</message> </message>
<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> <source>Delete Song(s)?</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>CCLI License: </source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -4600,7 +4660,7 @@ The encoding is responsible for the correct character representation.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message numerus="yes"> <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> <source>Are you sure you want to delete the %n selected song(s)?</source>
<translation type="unfinished"> <translation type="unfinished">
<numerusform></numerusform> <numerusform></numerusform>

View File

@ -211,7 +211,7 @@ Do you want to continue anyway?</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>You cannot combine single and dual Bible verse search results. Do you want to delete your search results and start a new search?</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -840,59 +840,59 @@ vajadusel, seetõttu on vajalik internetiühendus.</translation>
<context> <context>
<name>ImagePlugin</name> <name>ImagePlugin</name>
<message> <message>
<location filename="openlp/plugins/images/imageplugin.py" line="45"/> <location filename="openlp/plugins/images/imageplugin.py" line="44"/>
<source>&lt;strong&gt;Image Plugin&lt;/strong&gt;&lt;br /&gt;The image plugin provides displaying of images.&lt;br /&gt;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&apos;s &quot;timed looping&quot; 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&apos;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> <source>&lt;strong&gt;Image Plugin&lt;/strong&gt;&lt;br /&gt;The image plugin provides displaying of images.&lt;br /&gt;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&apos;s &quot;timed looping&quot; 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&apos;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>&lt;strong&gt;Pildiplugin&lt;/strong&gt;&lt;br /&gt;Pildiplugin võimaldab piltide kuvamise.&lt;br /&gt;Ü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&apos;s &quot;timed looping&quot; 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&apos;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> <translation>&lt;strong&gt;Pildiplugin&lt;/strong&gt;&lt;br /&gt;Pildiplugin võimaldab piltide kuvamise.&lt;br /&gt;Ü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&apos;s &quot;timed looping&quot; 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&apos;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>
<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> <source>Load a new Image</source>
<translation>Uue pildi laadimine</translation> <translation>Uue pildi laadimine</translation>
</message> </message>
<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> <source>Add a new Image</source>
<translation>Uue pildi lisamine</translation> <translation>Uue pildi lisamine</translation>
</message> </message>
<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> <source>Edit the selected Image</source>
<translation>Valitud pildi muutmine</translation> <translation>Valitud pildi muutmine</translation>
</message> </message>
<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> <source>Delete the selected Image</source>
<translation>Valitud pildi kustutamine</translation> <translation>Valitud pildi kustutamine</translation>
</message> </message>
<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> <source>Preview the selected Image</source>
<translation>Valitud pildi eelvaatlemine</translation> <translation>Valitud pildi eelvaatlemine</translation>
</message> </message>
<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> <source>Send the selected Image live</source>
<translation>Valitud pildi saatmine ekraanile</translation> <translation>Valitud pildi saatmine ekraanile</translation>
</message> </message>
<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> <source>Add the selected Image to the service</source>
<translation>Valitud pildi lisamine teenistusele</translation> <translation>Valitud pildi lisamine teenistusele</translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/images/imageplugin.py" line="64"/> <location filename="openlp/plugins/images/imageplugin.py" line="63"/>
<source>Image</source> <source>Image</source>
<comment>name singular</comment> <comment>name singular</comment>
<translation>Pilt</translation> <translation>Pilt</translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/images/imageplugin.py" line="65"/> <location filename="openlp/plugins/images/imageplugin.py" line="64"/>
<source>Images</source> <source>Images</source>
<comment>name plural</comment> <comment>name plural</comment>
<translation>Pildid</translation> <translation>Pildid</translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/images/imageplugin.py" line="69"/> <location filename="openlp/plugins/images/imageplugin.py" line="68"/>
<source>Images</source> <source>Images</source>
<comment>container title</comment> <comment>container title</comment>
<translation>Pildid</translation> <translation>Pildid</translation>
@ -948,59 +948,59 @@ Do you want to add the other images anyway?</source>
<context> <context>
<name>MediaPlugin</name> <name>MediaPlugin</name>
<message> <message>
<location filename="openlp/plugins/media/mediaplugin.py" line="70"/> <location filename="openlp/plugins/media/mediaplugin.py" line="93"/>
<source>&lt;strong&gt;Media Plugin&lt;/strong&gt;&lt;br /&gt;The media plugin provides playback of audio and video.</source> <source>&lt;strong&gt;Media Plugin&lt;/strong&gt;&lt;br /&gt;The media plugin provides playback of audio and video.</source>
<translation>&lt;strong&gt;Meediaplugin&lt;/strong&gt;&lt;br /&gt;Meedia plugin võimaldab audio- ja videofailide taasesitamist.</translation> <translation>&lt;strong&gt;Meediaplugin&lt;/strong&gt;&lt;br /&gt;Meedia plugin võimaldab audio- ja videofailide taasesitamist.</translation>
</message> </message>
<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> <source>Load a new Media</source>
<translation>Uue meedia laadimine</translation> <translation>Uue meedia laadimine</translation>
</message> </message>
<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> <source>Add a new Media</source>
<translation>Uue meedia lisamine</translation> <translation>Uue meedia lisamine</translation>
</message> </message>
<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> <source>Edit the selected Media</source>
<translation>Valitud meedia muutmine</translation> <translation>Valitud meedia muutmine</translation>
</message> </message>
<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> <source>Delete the selected Media</source>
<translation>Valitud meedia kustutamine</translation> <translation>Valitud meedia kustutamine</translation>
</message> </message>
<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> <source>Preview the selected Media</source>
<translation>Valitud meedia eelvaatlus</translation> <translation>Valitud meedia eelvaatlus</translation>
</message> </message>
<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> <source>Send the selected Media live</source>
<translation>Valitud meedia saatmine ekraanile</translation> <translation>Valitud meedia saatmine ekraanile</translation>
</message> </message>
<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> <source>Add the selected Media to the service</source>
<translation>Valitud meedia lisamine teenistusse</translation> <translation>Valitud meedia lisamine teenistusse</translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/media/mediaplugin.py" line="80"/> <location filename="openlp/plugins/media/mediaplugin.py" line="103"/>
<source>Media</source> <source>Media</source>
<comment>name singular</comment> <comment>name singular</comment>
<translation>Meedia</translation> <translation>Meedia</translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/media/mediaplugin.py" line="81"/> <location filename="openlp/plugins/media/mediaplugin.py" line="104"/>
<source>Media</source> <source>Media</source>
<comment>name plural</comment> <comment>name plural</comment>
<translation>Meedia</translation> <translation>Meedia</translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/media/mediaplugin.py" line="85"/> <location filename="openlp/plugins/media/mediaplugin.py" line="108"/>
<source>Media</source> <source>Media</source>
<comment>container title</comment> <comment>container title</comment>
<translation>Meedia</translation> <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> 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>
<message>
<location filename="openlp/core/ui/aboutdialog.py" line="224"/>
<source>Copyright &#xa9; 2004-2011 Raoul Snyman
Portions copyright &#xa9; 2004-2011 Tim Bentley, Jonathan Corwin, Michael Gorven, Scott Guerrieri,
Meinert Jordan, Andreas Preikschat, Christian Richter, Philip
Ridout, Maikel Stuivenberg, Martin Thompson, Jon Tibble, CarstennTinggaard, Frode Woldsund</source>
<translation type="unfinished"></translation>
</message>
<message> <message>
<location filename="openlp/core/ui/aboutdialog.py" line="231"/> <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> <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> He has set us free.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message>
<location filename="openlp/core/ui/aboutdialog.py" line="224"/>
<source>Copyright &#xa9; 2004-2011 Raoul Snyman
Portions copyright &#xa9; 2004-2011 Tim Bentley, Jonathan Corwin, Michael Gorven, Scott Guerrieri,
Meinert Jordan, Andreas Preikschat, Christian Richter, Philip
Ridout, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Carsten
Tinggaard, Frode Woldsund</source>
<translation type="unfinished"></translation>
</message>
</context> </context>
<context> <context>
<name>OpenLP.AdvancedTab</name> <name>OpenLP.AdvancedTab</name>
@ -1290,18 +1291,18 @@ Final Credit
</message> </message>
<message> <message>
<location filename="openlp/core/ui/displaytagdialog.py" line="145"/> <location filename="openlp/core/ui/displaytagdialog.py" line="145"/>
<source>Tag id</source> <source>Tag Id</source>
<translation>Sildi ID</translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/displaytagdialog.py" line="147"/> <location filename="openlp/core/ui/displaytagdialog.py" line="147"/>
<source>Start Html</source> <source>Start HTML</source>
<translation>HTMLi algus</translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/displaytagdialog.py" line="149"/> <location filename="openlp/core/ui/displaytagdialog.py" line="149"/>
<source>End Html</source> <source>End HTML</source>
<translation>HTMLi lõpp</translation> <translation type="unfinished"></translation>
</message> </message>
</context> </context>
<context> <context>
@ -1466,151 +1467,200 @@ Version: %s
<context> <context>
<name>OpenLP.FirstTimeLanguageForm</name> <name>OpenLP.FirstTimeLanguageForm</name>
<message> <message>
<location filename="openlp/core/ui/firsttimelanguagedialog.py" line="60"/> <location filename="openlp/core/ui/firsttimelanguagedialog.py" line="61"/>
<source>Initial Set up Language</source> <source>Select Translation</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimelanguagedialog.py" line="62"/> <location filename="openlp/core/ui/firsttimelanguagedialog.py" line="63"/>
<source>Select the language you&apos;d like to use in OpenLP.</source> <source>Choose the translation you&apos;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> <translation type="unfinished"></translation>
</message> </message>
</context> </context>
<context> <context>
<name>OpenLP.FirstTimeWizard</name> <name>OpenLP.FirstTimeWizard</name>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="154"/> <location filename="openlp/core/ui/firsttimeform.py" line="61"/>
<source>Songs</source> <source>Downloading %s...</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>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimeform.py" line="67"/> <location filename="openlp/core/ui/firsttimeform.py" line="212"/>
<source>Downloading %s</source> <source>Download complete. Click the finish button to start OpenLP.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>First Time Wizard</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Welcome to the First Time Wizard</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="146"/> <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> <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> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Activate required Plugins</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Select the Plugins you wish to use. </source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Custom Text</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="157"/> <location filename="openlp/core/ui/firsttimewizard.py" line="210"/>
<source>Bible</source> <source>Bible</source>
<translation type="unfinished">Piibel</translation> <translation type="unfinished">Piibel</translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="158"/> <location filename="openlp/core/ui/firsttimewizard.py" line="211"/>
<source>Images</source> <source>Images</source>
<translation type="unfinished">Pildid</translation> <translation type="unfinished">Pildid</translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="160"/> <location filename="openlp/core/ui/firsttimewizard.py" line="213"/>
<source>Presentations</source> <source>Presentations</source>
<translation type="unfinished">Esitlused</translation> <translation type="unfinished">Esitlused</translation>
</message> </message>
<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> <source>Media (Audio and Video)</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Allow remote access</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Monitor Song Usage</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="168"/> <location filename="openlp/core/ui/firsttimewizard.py" line="221"/>
<source>Allow Alerts</source> <source>Allow Alerts</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="170"/> <location filename="openlp/core/ui/firsttimewizard.py" line="223"/>
<source>Download Samples from OpenLP.org</source> <source>No Internet Connection</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="172"/> <location filename="openlp/core/ui/firsttimewizard.py" line="225"/>
<source>Select samples to downlaod and install for use.</source> <source>Unable to detect an Internet connection.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="175"/> <location filename="openlp/core/ui/firsttimewizard.py" line="228"/>
<source>No Internet connection found so unable to download any default files.</source> <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> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="178"/> <location filename="openlp/core/ui/firsttimewizard.py" line="236"/>
<source>Download Example Files</source> <source>Sample Songs</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Default Settings</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="182"/> <location filename="openlp/core/ui/firsttimewizard.py" line="250"/>
<source>Set up default values to be used by OpenLP</source> <source>Set up default settings to be used by OpenLP.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="184"/> <location filename="openlp/core/ui/firsttimewizard.py" line="252"/>
<source>Default output display</source> <source>Setting Up And Importing</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="186"/> <location filename="openlp/core/ui/firsttimewizard.py" line="254"/>
<source>Select the default Theme</source> <source>Please wait while OpenLP is set up and your data is imported.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="188"/> <location filename="openlp/core/ui/firsttimewizard.py" line="256"/>
<source>Press finish to apply all your changes and start OpenLP</source> <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> <translation type="unfinished"></translation>
</message> </message>
</context> </context>
@ -1735,12 +1785,12 @@ Version: %s
<context> <context>
<name>OpenLP.LanguageManager</name> <name>OpenLP.LanguageManager</name>
<message> <message>
<location filename="openlp/core/utils/languagemanager.py" line="126"/> <location filename="openlp/core/utils/languagemanager.py" line="130"/>
<source>Language</source> <source>Language</source>
<translation>Keel</translation> <translation>Keel</translation>
</message> </message>
<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> <source>Please restart OpenLP to use your new language setting.</source>
<translation>Uue keele kasutamiseks käivita OpenLP uuesti.</translation> <translation>Uue keele kasutamiseks käivita OpenLP uuesti.</translation>
</message> </message>
@ -2046,17 +2096,12 @@ Version: %s
<translation>&amp;Veebileht</translation> <translation>&amp;Veebileht</translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/mainwindow.py" line="428"/> <location filename="openlp/core/ui/mainwindow.py" line="434"/>
<source>&amp;Auto Detect</source>
<translation>&amp;Isetuvastus</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="430"/>
<source>Use the system language, if available.</source> <source>Use the system language, if available.</source>
<translation>Kui saadaval, kasutatakse süsteemi keelt.</translation> <translation>Kui saadaval, kasutatakse süsteemi keelt.</translation>
</message> </message>
<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> <source>Set the interface language to %s</source>
<translation>Kasutajaliidese keeleks %s määramine</translation> <translation>Kasutajaliidese keeleks %s määramine</translation>
</message> </message>
@ -2101,27 +2146,27 @@ Version: %s
<translation>Vaate režiimiks ekraanivaate valimine.</translation> <translation>Vaate režiimiks ekraanivaate valimine.</translation>
</message> </message>
<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> <source>OpenLP Version Updated</source>
<translation>OpenLP uuendus</translation> <translation>OpenLP uuendus</translation>
</message> </message>
<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> <source>OpenLP Main Display Blanked</source>
<translation>OpenLP peakuva on tühi</translation> <translation>OpenLP peakuva on tühi</translation>
</message> </message>
<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> <source>The Main Display has been blanked out</source>
<translation>Peakuva on tühi</translation> <translation>Peakuva on tühi</translation>
</message> </message>
<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> <source>Default Theme: %s</source>
<translation>Vaikimisi kujundus: %s</translation> <translation>Vaikimisi kujundus: %s</translation>
</message> </message>
<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). <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> 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>&amp;Kiirklahvide seadistamine...</translation> <translation>&amp;Kiirklahvide seadistamine...</translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/mainwindow.py" line="817"/> <location filename="openlp/core/ui/mainwindow.py" line="815"/>
<source>Close OpenLP</source> <source>Close OpenLP</source>
<translation>OpenLP sulgemine</translation> <translation>OpenLP sulgemine</translation>
</message> </message>
<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> <source>Are you sure you want to close OpenLP?</source>
<translation>Kas oled kindel, et tahad OpenLP sulgeda?</translation> <translation>Kas oled kindel, et tahad OpenLP sulgeda?</translation>
</message> </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> <source>Open the folder where songs, bibles and other data resides.</source>
<translation>Laulude, Piiblite ja muude andmete kataloogi avamine.</translation> <translation>Laulude, Piiblite ja muude andmete kataloogi avamine.</translation>
</message> </message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="432"/>
<source>&amp;Autodetect</source>
<translation type="unfinished"></translation>
</message>
</context> </context>
<context> <context>
<name>OpenLP.MediaManagerItem</name> <name>OpenLP.MediaManagerItem</name>
<message> <message>
<location filename="openlp/core/lib/__init__.py" line="287"/> <location filename="openlp/core/lib/__init__.py" line="286"/>
<source>No Items Selected</source> <source>No Items Selected</source>
<translation>Ühtegi elementi pole valitud</translation> <translation>Ühtegi elementi pole valitud</translation>
</message> </message>
@ -2457,29 +2507,29 @@ Sa võid viimase versiooni alla laadida aadressilt http://openlp.org/.</translat
<translation>&amp;Muuda elemendi kujundust</translation> <translation>&amp;Muuda elemendi kujundust</translation>
</message> </message>
<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. <source>File is not a valid service.
The content encoding is not UTF-8.</source> The content encoding is not UTF-8.</source>
<translation>Fail ei ole sobiv teenistus. <translation>Fail ei ole sobiv teenistus.
Sisu ei ole UTF-8 kodeeringus.</translation> Sisu ei ole UTF-8 kodeeringus.</translation>
</message> </message>
<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> <source>File is not a valid service.</source>
<translation>Fail pole sobiv teenistus.</translation> <translation>Fail pole sobiv teenistus.</translation>
</message> </message>
<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> <source>Missing Display Handler</source>
<translation>Puudub kuvakäsitleja</translation> <translation>Puudub kuvakäsitleja</translation>
</message> </message>
<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> <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> <translation>Seda elementi pole võimalik näidata ekraanil, kuna puudub seda käsitsev programm</translation>
</message> </message>
<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> <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> <translation>Seda elementi pole võimalik näidata ekraanil, kuna puudub seda käsitsev programm</translation>
</message> </message>
@ -2509,7 +2559,7 @@ Sisu ei ole UTF-8 kodeeringus.</translation>
<translation>Faili avamine</translation> <translation>Faili avamine</translation>
</message> </message>
<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> <source>OpenLP Service Files (*.osz)</source>
<translation>OpenLP teenistuse failid (*.osz)</translation> <translation>OpenLP teenistuse failid (*.osz)</translation>
</message> </message>
@ -3991,17 +4041,17 @@ Sisu kodeering ei ole UTF-8.</translation>
<translation>Väljundfaili asukoht</translation> <translation>Väljundfaili asukoht</translation>
</message> </message>
<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> <source>usage_detail_%s_%s.txt</source>
<translation>laulukasutuse_andmed_%s_%s.txt</translation> <translation>laulukasutuse_andmed_%s_%s.txt</translation>
</message> </message>
<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> <source>Report Creation</source>
<translation>Raporti koostamine</translation> <translation>Raporti koostamine</translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="114"/> <location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="123"/>
<source>Report <source>Report
%s %s
has been successfully created. </source> has been successfully created. </source>
@ -4009,83 +4059,93 @@ has been successfully created. </source>
%s %s
on edukalt loodud.</translation> on edukalt loodud.</translation>
</message> </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>
<context> <context>
<name>SongsPlugin</name> <name>SongsPlugin</name>
<message> <message>
<location filename="openlp/plugins/songs/songsplugin.py" line="104"/> <location filename="openlp/plugins/songs/songsplugin.py" line="103"/>
<source>&amp;Song</source> <source>&amp;Song</source>
<translation>&amp;Laul</translation> <translation>&amp;Laul</translation>
</message> </message>
<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> <source>Import songs using the import wizard.</source>
<translation>Laulude importimine importimise nõustajaga.</translation> <translation>Laulude importimine importimise nõustajaga.</translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/songs/songsplugin.py" line="183"/> <location filename="openlp/plugins/songs/songsplugin.py" line="182"/>
<source>&lt;strong&gt;Songs Plugin&lt;/strong&gt;&lt;br /&gt;The songs plugin provides the ability to display and manage songs.</source> <source>&lt;strong&gt;Songs Plugin&lt;/strong&gt;&lt;br /&gt;The songs plugin provides the ability to display and manage songs.</source>
<translation>&lt;strong&gt;Laulude plugin&lt;/strong&gt;&lt;br /&gt;See plugin võimaldab laulude kuvamise ja haldamise.</translation> <translation>&lt;strong&gt;Laulude plugin&lt;/strong&gt;&lt;br /&gt;See plugin võimaldab laulude kuvamise ja haldamise.</translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/songs/songsplugin.py" line="126"/> <location filename="openlp/plugins/songs/songsplugin.py" line="125"/>
<source>&amp;Re-index Songs</source> <source>&amp;Re-index Songs</source>
<translation>&amp;Indekseeri laulud uuesti</translation> <translation>&amp;Indekseeri laulud uuesti</translation>
</message> </message>
<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> <source>Re-index the songs database to improve searching and ordering.</source>
<translation>Laulude andmebaasi kordusindekseerimine, et parendada otsimist ja järjekorda.</translation> <translation>Laulude andmebaasi kordusindekseerimine, et parendada otsimist ja järjekorda.</translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/songs/songsplugin.py" line="141"/> <location filename="openlp/plugins/songs/songsplugin.py" line="140"/>
<source>Reindexing songs...</source> <source>Reindexing songs...</source>
<translation>Laulude kordusindekseerimine...</translation> <translation>Laulude kordusindekseerimine...</translation>
</message> </message>
<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> <source>Add a new Song</source>
<translation>Uue laulu lisamine</translation> <translation>Uue laulu lisamine</translation>
</message> </message>
<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> <source>Edit the selected Song</source>
<translation>Valitud laulu muutmine</translation> <translation>Valitud laulu muutmine</translation>
</message> </message>
<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> <source>Delete the selected Song</source>
<translation>Valitud laulu kustutamine</translation> <translation>Valitud laulu kustutamine</translation>
</message> </message>
<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> <source>Preview the selected Song</source>
<translation>Valitud laulu eelvaatlus</translation> <translation>Valitud laulu eelvaatlus</translation>
</message> </message>
<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> <source>Send the selected Song live</source>
<translation>Valitud laulu saatmine ekraanile</translation> <translation>Valitud laulu saatmine ekraanile</translation>
</message> </message>
<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> <source>Add the selected Song to the service</source>
<translation>Valitud laulu lisamine teenistusele</translation> <translation>Valitud laulu lisamine teenistusele</translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/songs/songsplugin.py" line="227"/> <location filename="openlp/plugins/songs/songsplugin.py" line="226"/>
<source>Song</source> <source>Song</source>
<comment>name singular</comment> <comment>name singular</comment>
<translation>Laul</translation> <translation>Laul</translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/songs/songsplugin.py" line="228"/> <location filename="openlp/plugins/songs/songsplugin.py" line="227"/>
<source>Songs</source> <source>Songs</source>
<comment>name plural</comment> <comment>name plural</comment>
<translation>Laulud</translation> <translation>Laulud</translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/songs/songsplugin.py" line="232"/> <location filename="openlp/plugins/songs/songsplugin.py" line="231"/>
<source>Songs</source> <source>Songs</source>
<comment>container title</comment> <comment>container title</comment>
<translation>Laulud</translation> <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> Kodeering on vajalik märkide õige esitamise jaoks.</translation>
</message> </message>
<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> <source>Exports songs using the export wizard.</source>
<translation>Eksportimise nõustaja abil laulude eksportimine.</translation> <translation>Eksportimise nõustaja abil laulude eksportimine.</translation>
</message> </message>
@ -4637,12 +4697,12 @@ Kodeering on vajalik märkide õige esitamise jaoks.</translation>
<translation>Laulusõnad</translation> <translation>Laulusõnad</translation>
</message> </message>
<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> <source>Delete Song(s)?</source>
<translation>Kas kustutada laul(ud)?</translation> <translation>Kas kustutada laul(ud)?</translation>
</message> </message>
<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> <source>CCLI License: </source>
<translation>CCLI litsents: </translation> <translation>CCLI litsents: </translation>
</message> </message>
@ -4652,7 +4712,7 @@ Kodeering on vajalik märkide õige esitamise jaoks.</translation>
<translation>Kogu laulust</translation> <translation>Kogu laulust</translation>
</message> </message>
<message numerus="yes"> <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> <source>Are you sure you want to delete the %n selected song(s)?</source>
<translation type="unfinished"> <translation type="unfinished">
<numerusform></numerusform> <numerusform></numerusform>

View File

@ -210,7 +210,7 @@ Do you want to continue anyway?</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>You cannot combine single and dual Bible verse search results. Do you want to delete your search results and start a new search?</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -832,60 +832,60 @@ a la demande, une connexion Interner fiable est donc nécessaire.</translation>
<context> <context>
<name>ImagePlugin</name> <name>ImagePlugin</name>
<message> <message>
<location filename="openlp/plugins/images/imageplugin.py" line="45"/> <location filename="openlp/plugins/images/imageplugin.py" line="44"/>
<source>&lt;strong&gt;Image Plugin&lt;/strong&gt;&lt;br /&gt;The image plugin provides displaying of images.&lt;br /&gt;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&apos;s &quot;timed looping&quot; 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&apos;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> <source>&lt;strong&gt;Image Plugin&lt;/strong&gt;&lt;br /&gt;The image plugin provides displaying of images.&lt;br /&gt;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&apos;s &quot;timed looping&quot; 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&apos;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> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/images/imageplugin.py" line="64"/> <location filename="openlp/plugins/images/imageplugin.py" line="63"/>
<source>Image</source> <source>Image</source>
<comment>name singular</comment> <comment>name singular</comment>
<translation>Image</translation> <translation>Image</translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/images/imageplugin.py" line="65"/> <location filename="openlp/plugins/images/imageplugin.py" line="64"/>
<source>Images</source> <source>Images</source>
<comment>name plural</comment> <comment>name plural</comment>
<translation>Images</translation> <translation>Images</translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/images/imageplugin.py" line="69"/> <location filename="openlp/plugins/images/imageplugin.py" line="68"/>
<source>Images</source> <source>Images</source>
<comment>container title</comment> <comment>container title</comment>
<translation type="unfinished">Images</translation> <translation type="unfinished">Images</translation>
</message> </message>
<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> <source>Load a new Image</source>
<translation>Charge une nouvelle image</translation> <translation>Charge une nouvelle image</translation>
</message> </message>
<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> <source>Add a new Image</source>
<translation>Ajoute une nouvelle image</translation> <translation>Ajoute une nouvelle image</translation>
</message> </message>
<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> <source>Edit the selected Image</source>
<translation>Édite l&apos;image sélectionnée</translation> <translation>Édite l&apos;image sélectionnée</translation>
</message> </message>
<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> <source>Delete the selected Image</source>
<translation>Efface l&apos;image sélectionnée</translation> <translation>Efface l&apos;image sélectionnée</translation>
</message> </message>
<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> <source>Preview the selected Image</source>
<translation>Prévisualise l&apos;image sélectionnée</translation> <translation>Prévisualise l&apos;image sélectionnée</translation>
</message> </message>
<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> <source>Send the selected Image live</source>
<translation>Envoie l&apos;image sélectionnée en direct</translation> <translation>Envoie l&apos;image sélectionnée en direct</translation>
</message> </message>
<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> <source>Add the selected Image to the service</source>
<translation>Ajoute l&apos;image sélectionnée au service</translation> <translation>Ajoute l&apos;image sélectionnée au service</translation>
</message> </message>
@ -941,60 +941,60 @@ Voulez-vous ajouter de toute façon d&apos;autres images ?</translation>
<context> <context>
<name>MediaPlugin</name> <name>MediaPlugin</name>
<message> <message>
<location filename="openlp/plugins/media/mediaplugin.py" line="70"/> <location filename="openlp/plugins/media/mediaplugin.py" line="93"/>
<source>&lt;strong&gt;Media Plugin&lt;/strong&gt;&lt;br /&gt;The media plugin provides playback of audio and video.</source> <source>&lt;strong&gt;Media Plugin&lt;/strong&gt;&lt;br /&gt;The media plugin provides playback of audio and video.</source>
<translation>&lt;strong&gt;Module média&lt;/strong&gt;&lt;br /&gt;Le module média permet une lecture de contenu audio et vidéo.</translation> <translation>&lt;strong&gt;Module média&lt;/strong&gt;&lt;br /&gt;Le module média permet une lecture de contenu audio et vidéo.</translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/media/mediaplugin.py" line="80"/> <location filename="openlp/plugins/media/mediaplugin.py" line="103"/>
<source>Media</source> <source>Media</source>
<comment>name singular</comment> <comment>name singular</comment>
<translation>Médias</translation> <translation>Médias</translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/media/mediaplugin.py" line="81"/> <location filename="openlp/plugins/media/mediaplugin.py" line="104"/>
<source>Media</source> <source>Media</source>
<comment>name plural</comment> <comment>name plural</comment>
<translation type="unfinished">Médias</translation> <translation type="unfinished">Médias</translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/media/mediaplugin.py" line="85"/> <location filename="openlp/plugins/media/mediaplugin.py" line="108"/>
<source>Media</source> <source>Media</source>
<comment>container title</comment> <comment>container title</comment>
<translation type="unfinished">Médias</translation> <translation type="unfinished">Médias</translation>
</message> </message>
<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> <source>Load a new Media</source>
<translation>Charge un nouveau média</translation> <translation>Charge un nouveau média</translation>
</message> </message>
<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> <source>Add a new Media</source>
<translation>Ajoute un nouveau média</translation> <translation>Ajoute un nouveau média</translation>
</message> </message>
<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> <source>Edit the selected Media</source>
<translation>Édite le média sélectionné</translation> <translation>Édite le média sélectionné</translation>
</message> </message>
<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> <source>Delete the selected Media</source>
<translation>Efface le média sélectionné</translation> <translation>Efface le média sélectionné</translation>
</message> </message>
<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> <source>Preview the selected Media</source>
<translation>Prévisualise le média sélectionné</translation> <translation>Prévisualise le média sélectionné</translation>
</message> </message>
<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> <source>Send the selected Media live</source>
<translation>Envoie le média en direct</translation> <translation>Envoie le média en direct</translation>
</message> </message>
<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> <source>Add the selected Media to the service</source>
<translation type="unfinished">Ajouter le média sélectionné au service</translation> <translation type="unfinished">Ajouter le média sélectionné au service</translation>
</message> </message>
@ -1091,14 +1091,6 @@ OpenLP is written and maintained by volunteers. If you would like to see more fr
<source> build %s</source> <source> build %s</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message>
<location filename="openlp/core/ui/aboutdialog.py" line="224"/>
<source>Copyright &#xa9; 2004-2011 Raoul Snyman
Portions copyright &#xa9; 2004-2011 Tim Bentley, Jonathan Corwin, Michael Gorven, Scott Guerrieri,
Meinert Jordan, Andreas Preikschat, Christian Richter, Philip
Ridout, Maikel Stuivenberg, Martin Thompson, Jon Tibble, CarstennTinggaard, Frode Woldsund</source>
<translation type="unfinished"></translation>
</message>
<message> <message>
<location filename="openlp/core/ui/aboutdialog.py" line="231"/> <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> <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> He has set us free.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message>
<location filename="openlp/core/ui/aboutdialog.py" line="224"/>
<source>Copyright &#xa9; 2004-2011 Raoul Snyman
Portions copyright &#xa9; 2004-2011 Tim Bentley, Jonathan Corwin, Michael Gorven, Scott Guerrieri,
Meinert Jordan, Andreas Preikschat, Christian Richter, Philip
Ridout, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Carsten
Tinggaard, Frode Woldsund</source>
<translation type="unfinished"></translation>
</message>
</context> </context>
<context> <context>
<name>OpenLP.AdvancedTab</name> <name>OpenLP.AdvancedTab</name>
@ -1277,17 +1278,17 @@ Final Credit
</message> </message>
<message> <message>
<location filename="openlp/core/ui/displaytagdialog.py" line="145"/> <location filename="openlp/core/ui/displaytagdialog.py" line="145"/>
<source>Tag id</source> <source>Tag Id</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/displaytagdialog.py" line="147"/> <location filename="openlp/core/ui/displaytagdialog.py" line="147"/>
<source>Start Html</source> <source>Start HTML</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/displaytagdialog.py" line="149"/> <location filename="openlp/core/ui/displaytagdialog.py" line="149"/>
<source>End Html</source> <source>End HTML</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
</context> </context>
@ -1426,151 +1427,200 @@ Version: %s
<context> <context>
<name>OpenLP.FirstTimeLanguageForm</name> <name>OpenLP.FirstTimeLanguageForm</name>
<message> <message>
<location filename="openlp/core/ui/firsttimelanguagedialog.py" line="60"/> <location filename="openlp/core/ui/firsttimelanguagedialog.py" line="61"/>
<source>Initial Set up Language</source> <source>Select Translation</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimelanguagedialog.py" line="62"/> <location filename="openlp/core/ui/firsttimelanguagedialog.py" line="63"/>
<source>Select the language you&apos;d like to use in OpenLP.</source> <source>Choose the translation you&apos;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> <translation type="unfinished"></translation>
</message> </message>
</context> </context>
<context> <context>
<name>OpenLP.FirstTimeWizard</name> <name>OpenLP.FirstTimeWizard</name>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="154"/> <location filename="openlp/core/ui/firsttimeform.py" line="61"/>
<source>Songs</source> <source>Downloading %s...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimeform.py" line="63"/> <location filename="openlp/core/ui/firsttimeform.py" line="212"/>
<source>Bibles</source> <source>Download complete. Click the finish button to start OpenLP.</source>
<translation type="unfinished">Bibles</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimeform.py" line="64"/>
<source>Themes</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimeform.py" line="65"/> <location filename="openlp/core/ui/firsttimeform.py" line="221"/>
<source>Starting Updates</source> <source>Enabling selected plugins...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimeform.py" line="67"/> <location filename="openlp/core/ui/firsttimeform.py" line="244"/>
<source>Downloading %s</source> <source>Overwrite Existing Songs?</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>First Time Wizard</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Welcome to the First Time Wizard</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="146"/> <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> <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> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Activate required Plugins</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Select the Plugins you wish to use. </source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Custom Text</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="157"/> <location filename="openlp/core/ui/firsttimewizard.py" line="210"/>
<source>Bible</source> <source>Bible</source>
<translation type="unfinished">Bible</translation> <translation type="unfinished">Bible</translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="158"/> <location filename="openlp/core/ui/firsttimewizard.py" line="211"/>
<source>Images</source> <source>Images</source>
<translation type="unfinished">Images</translation> <translation type="unfinished">Images</translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="160"/> <location filename="openlp/core/ui/firsttimewizard.py" line="213"/>
<source>Presentations</source> <source>Presentations</source>
<translation type="unfinished">Présentations</translation> <translation type="unfinished">Présentations</translation>
</message> </message>
<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> <source>Media (Audio and Video)</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Allow remote access</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Monitor Song Usage</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="168"/> <location filename="openlp/core/ui/firsttimewizard.py" line="221"/>
<source>Allow Alerts</source> <source>Allow Alerts</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="170"/> <location filename="openlp/core/ui/firsttimewizard.py" line="223"/>
<source>Download Samples from OpenLP.org</source> <source>No Internet Connection</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="172"/> <location filename="openlp/core/ui/firsttimewizard.py" line="225"/>
<source>Select samples to downlaod and install for use.</source> <source>Unable to detect an Internet connection.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="175"/> <location filename="openlp/core/ui/firsttimewizard.py" line="228"/>
<source>No Internet connection found so unable to download any default files.</source> <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> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="178"/> <location filename="openlp/core/ui/firsttimewizard.py" line="236"/>
<source>Download Example Files</source> <source>Sample Songs</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Default Settings</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="182"/> <location filename="openlp/core/ui/firsttimewizard.py" line="250"/>
<source>Set up default values to be used by OpenLP</source> <source>Set up default settings to be used by OpenLP.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="184"/> <location filename="openlp/core/ui/firsttimewizard.py" line="252"/>
<source>Default output display</source> <source>Setting Up And Importing</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="186"/> <location filename="openlp/core/ui/firsttimewizard.py" line="254"/>
<source>Select the default Theme</source> <source>Please wait while OpenLP is set up and your data is imported.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="188"/> <location filename="openlp/core/ui/firsttimewizard.py" line="256"/>
<source>Press finish to apply all your changes and start OpenLP</source> <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> <translation type="unfinished"></translation>
</message> </message>
</context> </context>
@ -1695,12 +1745,12 @@ Version: %s
<context> <context>
<name>OpenLP.LanguageManager</name> <name>OpenLP.LanguageManager</name>
<message> <message>
<location filename="openlp/core/utils/languagemanager.py" line="126"/> <location filename="openlp/core/utils/languagemanager.py" line="130"/>
<source>Language</source> <source>Language</source>
<translation>Langage</translation> <translation>Langage</translation>
</message> </message>
<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> <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> <translation>Veuillez redémarrer OpenLP pour utiliser votre nouvelle propriété de langue.</translation>
</message> </message>
@ -2011,17 +2061,12 @@ Version: %s
<translation>Site &amp;Web</translation> <translation>Site &amp;Web</translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/mainwindow.py" line="428"/> <location filename="openlp/core/ui/mainwindow.py" line="434"/>
<source>&amp;Auto Detect</source>
<translation>Détection &amp;automatique</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="430"/>
<source>Use the system language, if available.</source> <source>Use the system language, if available.</source>
<translation>Utilise le langage système, si disponible.</translation> <translation>Utilise le langage système, si disponible.</translation>
</message> </message>
<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> <source>Set the interface language to %s</source>
<translation>Défini la langue de l&apos;interface à %s</translation> <translation>Défini la langue de l&apos;interface à %s</translation>
</message> </message>
@ -2066,7 +2111,7 @@ Version: %s
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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). <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> 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> Vous pouvez télécharger la dernière version depuis http://openlp.org/.</translation>
</message> </message>
<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> <source>OpenLP Version Updated</source>
<translation>Version d&apos;OpenLP mis a jours</translation> <translation>Version d&apos;OpenLP mis a jours</translation>
</message> </message>
<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> <source>OpenLP Main Display Blanked</source>
<translation>OpenLP affichage principale noirci</translation> <translation>OpenLP affichage principale noirci</translation>
</message> </message>
<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> <source>The Main Display has been blanked out</source>
<translation>L&apos;affichage principale a é noirci</translation> <translation>L&apos;affichage principale a é noirci</translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/mainwindow.py" line="817"/> <location filename="openlp/core/ui/mainwindow.py" line="815"/>
<source>Close OpenLP</source> <source>Close OpenLP</source>
<translation>Ferme OpenLP</translation> <translation>Ferme OpenLP</translation>
</message> </message>
<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> <source>Are you sure you want to close OpenLP?</source>
<translation>Êtes vous sur de vouloir fermer OpenLP ?</translation> <translation>Êtes vous sur de vouloir fermer OpenLP ?</translation>
</message> </message>
<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> <source>Default Theme: %s</source>
<translation>Thème par défaut : %s</translation> <translation>Thème par défaut : %s</translation>
</message> </message>
@ -2135,11 +2180,16 @@ Vous pouvez télécharger la dernière version depuis http://openlp.org/.</trans
<source>&amp;Configure Display Tags</source> <source>&amp;Configure Display Tags</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="432"/>
<source>&amp;Autodetect</source>
<translation type="unfinished"></translation>
</message>
</context> </context>
<context> <context>
<name>OpenLP.MediaManagerItem</name> <name>OpenLP.MediaManagerItem</name>
<message> <message>
<location filename="openlp/core/lib/__init__.py" line="287"/> <location filename="openlp/core/lib/__init__.py" line="286"/>
<source>No Items Selected</source> <source>No Items Selected</source>
<translation>Pas d&apos;éléments sélectionné</translation> <translation>Pas d&apos;éléments sélectionné</translation>
</message> </message>
@ -2462,34 +2512,34 @@ Vous pouvez télécharger la dernière version depuis http://openlp.org/.</trans
<translation>Ouvre un fichier</translation> <translation>Ouvre un fichier</translation>
</message> </message>
<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> <source>OpenLP Service Files (*.osz)</source>
<translation>Fichier service OpenLP (*.osz)</translation> <translation>Fichier service OpenLP (*.osz)</translation>
</message> </message>
<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. <source>File is not a valid service.
The content encoding is not UTF-8.</source> The content encoding is not UTF-8.</source>
<translation>Le fichier n&apos;est un service valide. <translation>Le fichier n&apos;est un service valide.
Le contenu n&apos;est pas de l&apos;UTF-8.</translation> Le contenu n&apos;est pas de l&apos;UTF-8.</translation>
</message> </message>
<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> <source>File is not a valid service.</source>
<translation>Le fichier n&apos;est pas un service valide.</translation> <translation>Le fichier n&apos;est pas un service valide.</translation>
</message> </message>
<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> <source>Missing Display Handler</source>
<translation>Délégué d&apos;affichage manquent</translation> <translation>Délégué d&apos;affichage manquent</translation>
</message> </message>
<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> <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&apos;y a pas de délégué pour l&apos;afficher</translation> <translation>Votre élément ne peut pas être affiché il n&apos;y a pas de délégué pour l&apos;afficher</translation>
</message> </message>
<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> <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&apos;afficher est manquant ou inactif</translation> <translation>Votre élément ne peut pas être affiché le module nécessaire pour l&apos;afficher est manquant ou inactif</translation>
</message> </message>
@ -3951,22 +4001,32 @@ Le contenu n&apos;est pas de l&apos;UTF-8.</translation>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>usage_detail_%s_%s.txt</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Report Creation</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="114"/> <location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="123"/>
<source>Report <source>Report
%s %s
has been successfully created. </source> has been successfully created. </source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </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>
<context> <context>
<name>SongsPlugin</name> <name>SongsPlugin</name>
@ -4059,85 +4119,85 @@ The encoding is responsible for the correct character representation.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/songs/songsplugin.py" line="104"/> <location filename="openlp/plugins/songs/songsplugin.py" line="103"/>
<source>&amp;Song</source> <source>&amp;Song</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Import songs using the import wizard.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/songs/songsplugin.py" line="126"/> <location filename="openlp/plugins/songs/songsplugin.py" line="125"/>
<source>&amp;Re-index Songs</source> <source>&amp;Re-index Songs</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Re-index the songs database to improve searching and ordering.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/songs/songsplugin.py" line="141"/> <location filename="openlp/plugins/songs/songsplugin.py" line="140"/>
<source>Reindexing songs...</source> <source>Reindexing songs...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/songs/songsplugin.py" line="183"/> <location filename="openlp/plugins/songs/songsplugin.py" line="182"/>
<source>&lt;strong&gt;Songs Plugin&lt;/strong&gt;&lt;br /&gt;The songs plugin provides the ability to display and manage songs.</source> <source>&lt;strong&gt;Songs Plugin&lt;/strong&gt;&lt;br /&gt;The songs plugin provides the ability to display and manage songs.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/songs/songsplugin.py" line="227"/> <location filename="openlp/plugins/songs/songsplugin.py" line="226"/>
<source>Song</source> <source>Song</source>
<comment>name singular</comment> <comment>name singular</comment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/songs/songsplugin.py" line="228"/> <location filename="openlp/plugins/songs/songsplugin.py" line="227"/>
<source>Songs</source> <source>Songs</source>
<comment>name plural</comment> <comment>name plural</comment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/songs/songsplugin.py" line="232"/> <location filename="openlp/plugins/songs/songsplugin.py" line="231"/>
<source>Songs</source> <source>Songs</source>
<comment>container title</comment> <comment>container title</comment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Add a new Song</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Edit the selected Song</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Delete the selected Song</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Preview the selected Song</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Send the selected Song live</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Add the selected Song to the service</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Exports songs using the export wizard.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -4598,12 +4658,12 @@ The encoding is responsible for the correct character representation.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Delete Song(s)?</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message numerus="yes"> <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> <source>Are you sure you want to delete the %n selected song(s)?</source>
<translation type="unfinished"> <translation type="unfinished">
<numerusform></numerusform> <numerusform></numerusform>
@ -4611,7 +4671,7 @@ The encoding is responsible for the correct character representation.</source>
</translation> </translation>
</message> </message>
<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> <source>CCLI License: </source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>

View File

@ -210,7 +210,7 @@ Do you want to continue anyway?</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>You cannot combine single and dual Bible verse search results. Do you want to delete your search results and start a new search?</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -830,59 +830,59 @@ demand and thus an internet connection is required.</source>
<context> <context>
<name>ImagePlugin</name> <name>ImagePlugin</name>
<message> <message>
<location filename="openlp/plugins/images/imageplugin.py" line="45"/> <location filename="openlp/plugins/images/imageplugin.py" line="44"/>
<source>&lt;strong&gt;Image Plugin&lt;/strong&gt;&lt;br /&gt;The image plugin provides displaying of images.&lt;br /&gt;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&apos;s &quot;timed looping&quot; 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&apos;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> <source>&lt;strong&gt;Image Plugin&lt;/strong&gt;&lt;br /&gt;The image plugin provides displaying of images.&lt;br /&gt;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&apos;s &quot;timed looping&quot; 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&apos;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>&lt;strong&gt;Kép bővítmény&lt;/strong&gt;&lt;br /&gt;A kép a bővítmény mindenféle kép vetítését teszi lehetővé.&lt;br /&gt;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> <translation>&lt;strong&gt;Kép bővítmény&lt;/strong&gt;&lt;br /&gt;A kép a bővítmény mindenféle kép vetítését teszi lehetővé.&lt;br /&gt;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>
<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> <source>Load a new Image</source>
<translation>Új kép betöltése</translation> <translation>Új kép betöltése</translation>
</message> </message>
<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> <source>Add a new Image</source>
<translation>Új kép hozzáadása</translation> <translation>Új kép hozzáadása</translation>
</message> </message>
<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> <source>Edit the selected Image</source>
<translation>A kijelölt kép szerkesztése</translation> <translation>A kijelölt kép szerkesztése</translation>
</message> </message>
<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> <source>Delete the selected Image</source>
<translation>A kijelölt kép törlése</translation> <translation>A kijelölt kép törlése</translation>
</message> </message>
<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> <source>Preview the selected Image</source>
<translation>A kijelölt kép előnézete</translation> <translation>A kijelölt kép előnézete</translation>
</message> </message>
<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> <source>Send the selected Image live</source>
<translation>A kijelölt kép é adásba küldése</translation> <translation>A kijelölt kép é adásba küldése</translation>
</message> </message>
<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> <source>Add the selected Image to the service</source>
<translation>A kijelölt kép hozzáadása a szolgálathoz</translation> <translation>A kijelölt kép hozzáadása a szolgálathoz</translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/images/imageplugin.py" line="64"/> <location filename="openlp/plugins/images/imageplugin.py" line="63"/>
<source>Image</source> <source>Image</source>
<comment>name singular</comment> <comment>name singular</comment>
<translation type="unfinished">Kép</translation> <translation type="unfinished">Kép</translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/images/imageplugin.py" line="65"/> <location filename="openlp/plugins/images/imageplugin.py" line="64"/>
<source>Images</source> <source>Images</source>
<comment>name plural</comment> <comment>name plural</comment>
<translation type="unfinished">Képek</translation> <translation type="unfinished">Képek</translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/images/imageplugin.py" line="69"/> <location filename="openlp/plugins/images/imageplugin.py" line="68"/>
<source>Images</source> <source>Images</source>
<comment>container title</comment> <comment>container title</comment>
<translation type="unfinished">Képek</translation> <translation type="unfinished">Képek</translation>
@ -938,59 +938,59 @@ Do you want to add the other images anyway?</source>
<context> <context>
<name>MediaPlugin</name> <name>MediaPlugin</name>
<message> <message>
<location filename="openlp/plugins/media/mediaplugin.py" line="70"/> <location filename="openlp/plugins/media/mediaplugin.py" line="93"/>
<source>&lt;strong&gt;Media Plugin&lt;/strong&gt;&lt;br /&gt;The media plugin provides playback of audio and video.</source> <source>&lt;strong&gt;Media Plugin&lt;/strong&gt;&lt;br /&gt;The media plugin provides playback of audio and video.</source>
<translation>&lt;strong&gt;Média bővítmény&lt;/strong&gt;&lt;br /&gt;A média bővítmény hangok és videók lejátszását teszi lehetővé.</translation> <translation>&lt;strong&gt;Média bővítmény&lt;/strong&gt;&lt;br /&gt;A média bővítmény hangok és videók lejátszását teszi lehetővé.</translation>
</message> </message>
<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> <source>Load a new Media</source>
<translation>Új médiaállomány betöltése</translation> <translation>Új médiaállomány betöltése</translation>
</message> </message>
<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> <source>Add a new Media</source>
<translation>Új médiaállomány hozzáadása</translation> <translation>Új médiaállomány hozzáadása</translation>
</message> </message>
<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> <source>Edit the selected Media</source>
<translation>A kijelölt médiaállomány szerkesztése</translation> <translation>A kijelölt médiaállomány szerkesztése</translation>
</message> </message>
<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> <source>Delete the selected Media</source>
<translation>A kijelölt médiaállomány törlése</translation> <translation>A kijelölt médiaállomány törlése</translation>
</message> </message>
<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> <source>Preview the selected Media</source>
<translation>A kijelölt médiaállomány előnézete</translation> <translation>A kijelölt médiaállomány előnézete</translation>
</message> </message>
<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> <source>Send the selected Media live</source>
<translation>A kijelölt médiaállomány é adásba küldése</translation> <translation>A kijelölt médiaállomány é adásba küldése</translation>
</message> </message>
<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> <source>Add the selected Media to the service</source>
<translation>A kijelölt médiaállomány hozzáadása a szolgálathoz</translation> <translation>A kijelölt médiaállomány hozzáadása a szolgálathoz</translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/media/mediaplugin.py" line="80"/> <location filename="openlp/plugins/media/mediaplugin.py" line="103"/>
<source>Media</source> <source>Media</source>
<comment>name singular</comment> <comment>name singular</comment>
<translation type="unfinished">Média</translation> <translation type="unfinished">Média</translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/media/mediaplugin.py" line="81"/> <location filename="openlp/plugins/media/mediaplugin.py" line="104"/>
<source>Media</source> <source>Media</source>
<comment>name plural</comment> <comment>name plural</comment>
<translation type="unfinished">Média</translation> <translation type="unfinished">Média</translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/media/mediaplugin.py" line="85"/> <location filename="openlp/plugins/media/mediaplugin.py" line="108"/>
<source>Media</source> <source>Media</source>
<comment>container title</comment> <comment>container title</comment>
<translation type="unfinished">Média</translation> <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> <source> build %s</source>
<translation></translation> <translation></translation>
</message> </message>
<message>
<location filename="openlp/core/ui/aboutdialog.py" line="224"/>
<source>Copyright &#xa9; 2004-2011 Raoul Snyman
Portions copyright &#xa9; 2004-2011 Tim Bentley, Jonathan Corwin, Michael Gorven, Scott Guerrieri,
Meinert Jordan, Andreas Preikschat, Christian Richter, Philip
Ridout, Maikel Stuivenberg, Martin Thompson, Jon Tibble, CarstennTinggaard, Frode Woldsund</source>
<translation type="unfinished"></translation>
</message>
<message> <message>
<location filename="openlp/core/ui/aboutdialog.py" line="231"/> <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> <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> He has set us free.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message>
<location filename="openlp/core/ui/aboutdialog.py" line="224"/>
<source>Copyright &#xa9; 2004-2011 Raoul Snyman
Portions copyright &#xa9; 2004-2011 Tim Bentley, Jonathan Corwin, Michael Gorven, Scott Guerrieri,
Meinert Jordan, Andreas Preikschat, Christian Richter, Philip
Ridout, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Carsten
Tinggaard, Frode Woldsund</source>
<translation type="unfinished"></translation>
</message>
</context> </context>
<context> <context>
<name>OpenLP.AdvancedTab</name> <name>OpenLP.AdvancedTab</name>
@ -1280,17 +1281,17 @@ Final Credit
</message> </message>
<message> <message>
<location filename="openlp/core/ui/displaytagdialog.py" line="145"/> <location filename="openlp/core/ui/displaytagdialog.py" line="145"/>
<source>Tag id</source> <source>Tag Id</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/displaytagdialog.py" line="147"/> <location filename="openlp/core/ui/displaytagdialog.py" line="147"/>
<source>Start Html</source> <source>Start HTML</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/displaytagdialog.py" line="149"/> <location filename="openlp/core/ui/displaytagdialog.py" line="149"/>
<source>End Html</source> <source>End HTML</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
</context> </context>
@ -1428,151 +1429,200 @@ Version: %s
<context> <context>
<name>OpenLP.FirstTimeLanguageForm</name> <name>OpenLP.FirstTimeLanguageForm</name>
<message> <message>
<location filename="openlp/core/ui/firsttimelanguagedialog.py" line="60"/> <location filename="openlp/core/ui/firsttimelanguagedialog.py" line="61"/>
<source>Initial Set up Language</source> <source>Select Translation</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimelanguagedialog.py" line="62"/> <location filename="openlp/core/ui/firsttimelanguagedialog.py" line="63"/>
<source>Select the language you&apos;d like to use in OpenLP.</source> <source>Choose the translation you&apos;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> <translation type="unfinished"></translation>
</message> </message>
</context> </context>
<context> <context>
<name>OpenLP.FirstTimeWizard</name> <name>OpenLP.FirstTimeWizard</name>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="154"/> <location filename="openlp/core/ui/firsttimeform.py" line="61"/>
<source>Songs</source> <source>Downloading %s...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimeform.py" line="63"/> <location filename="openlp/core/ui/firsttimeform.py" line="212"/>
<source>Bibles</source> <source>Download complete. Click the finish button to start OpenLP.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimeform.py" line="64"/> <location filename="openlp/core/ui/firsttimeform.py" line="221"/>
<source>Themes</source> <source>Enabling selected plugins...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimeform.py" line="65"/> <location filename="openlp/core/ui/firsttimeform.py" line="244"/>
<source>Starting Updates</source> <source>Overwrite Existing Songs?</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimeform.py" line="67"/> <location filename="openlp/core/ui/firsttimeform.py" line="244"/>
<source>Downloading %s</source> <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> <translation type="unfinished"></translation>
</message> </message>
<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> <source>First Time Wizard</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Welcome to the First Time Wizard</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="146"/> <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> <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> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Activate required Plugins</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Select the Plugins you wish to use. </source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Custom Text</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="157"/> <location filename="openlp/core/ui/firsttimewizard.py" line="210"/>
<source>Bible</source> <source>Bible</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="158"/> <location filename="openlp/core/ui/firsttimewizard.py" line="211"/>
<source>Images</source> <source>Images</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="160"/> <location filename="openlp/core/ui/firsttimewizard.py" line="213"/>
<source>Presentations</source> <source>Presentations</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Media (Audio and Video)</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Allow remote access</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Monitor Song Usage</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="168"/> <location filename="openlp/core/ui/firsttimewizard.py" line="221"/>
<source>Allow Alerts</source> <source>Allow Alerts</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="170"/> <location filename="openlp/core/ui/firsttimewizard.py" line="223"/>
<source>Download Samples from OpenLP.org</source> <source>No Internet Connection</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="172"/> <location filename="openlp/core/ui/firsttimewizard.py" line="225"/>
<source>Select samples to downlaod and install for use.</source> <source>Unable to detect an Internet connection.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="175"/> <location filename="openlp/core/ui/firsttimewizard.py" line="228"/>
<source>No Internet connection found so unable to download any default files.</source> <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> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="178"/> <location filename="openlp/core/ui/firsttimewizard.py" line="236"/>
<source>Download Example Files</source> <source>Sample Songs</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Default Settings</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="182"/> <location filename="openlp/core/ui/firsttimewizard.py" line="250"/>
<source>Set up default values to be used by OpenLP</source> <source>Set up default settings to be used by OpenLP.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="184"/> <location filename="openlp/core/ui/firsttimewizard.py" line="252"/>
<source>Default output display</source> <source>Setting Up And Importing</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="186"/> <location filename="openlp/core/ui/firsttimewizard.py" line="254"/>
<source>Select the default Theme</source> <source>Please wait while OpenLP is set up and your data is imported.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="188"/> <location filename="openlp/core/ui/firsttimewizard.py" line="256"/>
<source>Press finish to apply all your changes and start OpenLP</source> <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> <translation type="unfinished"></translation>
</message> </message>
</context> </context>
@ -1697,12 +1747,12 @@ Version: %s
<context> <context>
<name>OpenLP.LanguageManager</name> <name>OpenLP.LanguageManager</name>
<message> <message>
<location filename="openlp/core/utils/languagemanager.py" line="126"/> <location filename="openlp/core/utils/languagemanager.py" line="130"/>
<source>Language</source> <source>Language</source>
<translation>Nyelv</translation> <translation>Nyelv</translation>
</message> </message>
<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> <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> <translation>A nyelvi beállítások az OpenLP újraindítása után lépnek érvénybe.</translation>
</message> </message>
@ -2008,17 +2058,12 @@ Version: %s
<translation>&amp;Weboldal</translation> <translation>&amp;Weboldal</translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/mainwindow.py" line="428"/> <location filename="openlp/core/ui/mainwindow.py" line="434"/>
<source>&amp;Auto Detect</source>
<translation>&amp;Automatikus felismerés</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="430"/>
<source>Use the system language, if available.</source> <source>Use the system language, if available.</source>
<translation>Rendszernyelv használata, ha elérhető.</translation> <translation>Rendszernyelv használata, ha elérhető.</translation>
</message> </message>
<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> <source>Set the interface language to %s</source>
<translation>A felhasználói felület nyelvének átváltása erre: %s</translation> <translation>A felhasználói felület nyelvének átváltása erre: %s</translation>
</message> </message>
@ -2063,7 +2108,7 @@ Version: %s
<translation>Nézetmód váltása a É módra.</translation> <translation>Nézetmód váltása a É módra.</translation>
</message> </message>
<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). <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> 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> A legfrissebb verzió a http://openlp.org/ oldalról szerezhető be.</translation>
</message> </message>
<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> <source>OpenLP Version Updated</source>
<translation>OpenLP verziófrissítés</translation> <translation>OpenLP verziófrissítés</translation>
</message> </message>
<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> <source>OpenLP Main Display Blanked</source>
<translation>Sötét OpenLP képernyő</translation> <translation>Sötét OpenLP képernyő</translation>
</message> </message>
<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> <source>The Main Display has been blanked out</source>
<translation>A képernyő el lett sötétítve</translation> <translation>A képernyő el lett sötétítve</translation>
</message> </message>
<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> <source>Default Theme: %s</source>
<translation>Alapértelmezett téma: %s</translation> <translation>Alapértelmezett téma: %s</translation>
</message> </message>
@ -2103,12 +2148,12 @@ A legfrissebb verzió a http://openlp.org/ oldalról szerezhető be.</translatio
<translation>Magyar</translation> <translation>Magyar</translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/mainwindow.py" line="817"/> <location filename="openlp/core/ui/mainwindow.py" line="815"/>
<source>Close OpenLP</source> <source>Close OpenLP</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Are you sure you want to close OpenLP?</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -2137,11 +2182,16 @@ A legfrissebb verzió a http://openlp.org/ oldalról szerezhető be.</translatio
<source>&amp;Configure Display Tags</source> <source>&amp;Configure Display Tags</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="432"/>
<source>&amp;Autodetect</source>
<translation type="unfinished"></translation>
</message>
</context> </context>
<context> <context>
<name>OpenLP.MediaManagerItem</name> <name>OpenLP.MediaManagerItem</name>
<message> <message>
<location filename="openlp/core/lib/__init__.py" line="287"/> <location filename="openlp/core/lib/__init__.py" line="286"/>
<source>No Items Selected</source> <source>No Items Selected</source>
<translation>Nincs kijelölt elem</translation> <translation>Nincs kijelölt elem</translation>
</message> </message>
@ -2419,29 +2469,29 @@ A legfrissebb verzió a http://openlp.org/ oldalról szerezhető be.</translatio
<translation>Elem témájának &amp;módosítása</translation> <translation>Elem témájának &amp;módosítása</translation>
</message> </message>
<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. <source>File is not a valid service.
The content encoding is not UTF-8.</source> The content encoding is not UTF-8.</source>
<translation>A fájl nem érvényes szolgálat. <translation>A fájl nem érvényes szolgálat.
A tartalom kódolása nem UTF-8.</translation> A tartalom kódolása nem UTF-8.</translation>
</message> </message>
<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> <source>File is not a valid service.</source>
<translation>A fájl nem érvényes szolgálat.</translation> <translation>A fájl nem érvényes szolgálat.</translation>
</message> </message>
<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> <source>Missing Display Handler</source>
<translation>Hiányzó képernyő kezelő</translation> <translation>Hiányzó képernyő kezelő</translation>
</message> </message>
<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> <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> <translation>Az elemet nem lehet megjeleníteni, mert nincs kezelő, amely megjelenítené</translation>
</message> </message>
<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> <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> <translation>Az elemet nem lehet megjeleníteni, mert a bővítmény, amely kezelné, hiányzik vagy inaktív</translation>
</message> </message>
@ -2471,7 +2521,7 @@ A tartalom kódolása nem UTF-8.</translation>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>OpenLP Service Files (*.osz)</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -3953,99 +4003,109 @@ A tartalom kódolása nem UTF-8.</translation>
<translation>Kimeneti fájl elérési útvonala</translation> <translation>Kimeneti fájl elérési útvonala</translation>
</message> </message>
<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> <source>usage_detail_%s_%s.txt</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Report Creation</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="114"/> <location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="123"/>
<source>Report <source>Report
%s %s
has been successfully created. </source> has been successfully created. </source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </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>
<context> <context>
<name>SongsPlugin</name> <name>SongsPlugin</name>
<message> <message>
<location filename="openlp/plugins/songs/songsplugin.py" line="104"/> <location filename="openlp/plugins/songs/songsplugin.py" line="103"/>
<source>&amp;Song</source> <source>&amp;Song</source>
<translation>&amp;Dal</translation> <translation>&amp;Dal</translation>
</message> </message>
<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> <source>Import songs using the import wizard.</source>
<translation>Dalok importálása az importálás tündérrel.</translation> <translation>Dalok importálása az importálás tündérrel.</translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/songs/songsplugin.py" line="183"/> <location filename="openlp/plugins/songs/songsplugin.py" line="182"/>
<source>&lt;strong&gt;Songs Plugin&lt;/strong&gt;&lt;br /&gt;The songs plugin provides the ability to display and manage songs.</source> <source>&lt;strong&gt;Songs Plugin&lt;/strong&gt;&lt;br /&gt;The songs plugin provides the ability to display and manage songs.</source>
<translation>&lt;strong&gt;Dalok bővítmény&lt;/strong&gt;&lt;br /&gt;A dalok bővítmény dalok megjelenítését és kezelését teszi lehetővé.</translation> <translation>&lt;strong&gt;Dalok bővítmény&lt;/strong&gt;&lt;br /&gt;A dalok bővítmény dalok megjelenítését és kezelését teszi lehetővé.</translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/songs/songsplugin.py" line="126"/> <location filename="openlp/plugins/songs/songsplugin.py" line="125"/>
<source>&amp;Re-index Songs</source> <source>&amp;Re-index Songs</source>
<translation>Dalok újra&amp;indexelése</translation> <translation>Dalok újra&amp;indexelése</translation>
</message> </message>
<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> <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> <translation>Dal adatbázis újraindexelése a keresés és a rendezés javításához.</translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/songs/songsplugin.py" line="141"/> <location filename="openlp/plugins/songs/songsplugin.py" line="140"/>
<source>Reindexing songs...</source> <source>Reindexing songs...</source>
<translation>Dalok indexelése folyamatban...</translation> <translation>Dalok indexelése folyamatban...</translation>
</message> </message>
<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> <source>Add a new Song</source>
<translation>Új dal hozzáadása</translation> <translation>Új dal hozzáadása</translation>
</message> </message>
<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> <source>Edit the selected Song</source>
<translation>A kijelölt dal szerkesztése</translation> <translation>A kijelölt dal szerkesztése</translation>
</message> </message>
<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> <source>Delete the selected Song</source>
<translation>A kijelölt dal törlése</translation> <translation>A kijelölt dal törlése</translation>
</message> </message>
<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> <source>Preview the selected Song</source>
<translation>A kijelölt dal előnézete</translation> <translation>A kijelölt dal előnézete</translation>
</message> </message>
<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> <source>Send the selected Song live</source>
<translation>A kijelölt dal é adásba küldése</translation> <translation>A kijelölt dal é adásba küldése</translation>
</message> </message>
<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> <source>Add the selected Song to the service</source>
<translation>A kijelölt dal hozzáadása a szolgálathoz</translation> <translation>A kijelölt dal hozzáadása a szolgálathoz</translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/songs/songsplugin.py" line="227"/> <location filename="openlp/plugins/songs/songsplugin.py" line="226"/>
<source>Song</source> <source>Song</source>
<comment>name singular</comment> <comment>name singular</comment>
<translation type="unfinished">Dal</translation> <translation type="unfinished">Dal</translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/songs/songsplugin.py" line="228"/> <location filename="openlp/plugins/songs/songsplugin.py" line="227"/>
<source>Songs</source> <source>Songs</source>
<comment>name plural</comment> <comment>name plural</comment>
<translation type="unfinished">Dalok</translation> <translation type="unfinished">Dalok</translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/songs/songsplugin.py" line="232"/> <location filename="openlp/plugins/songs/songsplugin.py" line="231"/>
<source>Songs</source> <source>Songs</source>
<comment>container title</comment> <comment>container title</comment>
<translation type="unfinished">Dalok</translation> <translation type="unfinished">Dalok</translation>
@ -4139,7 +4199,7 @@ The encoding is responsible for the correct character representation.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Exports songs using the export wizard.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -4595,12 +4655,12 @@ The encoding is responsible for the correct character representation.</source>
<translation>Dalszöveg</translation> <translation>Dalszöveg</translation>
</message> </message>
<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> <source>Delete Song(s)?</source>
<translation>Törölhető(ek) a dal(ok)?</translation> <translation>Törölhető(ek) a dal(ok)?</translation>
</message> </message>
<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> <source>CCLI License: </source>
<translation>CCLI licenc:</translation> <translation>CCLI licenc:</translation>
</message> </message>
@ -4610,7 +4670,7 @@ The encoding is responsible for the correct character representation.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message numerus="yes"> <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> <source>Are you sure you want to delete the %n selected song(s)?</source>
<translation type="unfinished"> <translation type="unfinished">
<numerusform></numerusform> <numerusform></numerusform>

View File

@ -211,7 +211,7 @@ Do you want to continue anyway?</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>You cannot combine single and dual Bible verse search results. Do you want to delete your search results and start a new search?</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -831,59 +831,59 @@ demand and thus an internet connection is required.</source>
<context> <context>
<name>ImagePlugin</name> <name>ImagePlugin</name>
<message> <message>
<location filename="openlp/plugins/images/imageplugin.py" line="45"/> <location filename="openlp/plugins/images/imageplugin.py" line="44"/>
<source>&lt;strong&gt;Image Plugin&lt;/strong&gt;&lt;br /&gt;The image plugin provides displaying of images.&lt;br /&gt;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&apos;s &quot;timed looping&quot; 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&apos;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> <source>&lt;strong&gt;Image Plugin&lt;/strong&gt;&lt;br /&gt;The image plugin provides displaying of images.&lt;br /&gt;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&apos;s &quot;timed looping&quot; 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&apos;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> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Load a new Image</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Add a new Image</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Edit the selected Image</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Delete the selected Image</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Preview the selected Image</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Send the selected Image live</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Add the selected Image to the service</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/images/imageplugin.py" line="64"/> <location filename="openlp/plugins/images/imageplugin.py" line="63"/>
<source>Image</source> <source>Image</source>
<comment>name singular</comment> <comment>name singular</comment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/images/imageplugin.py" line="65"/> <location filename="openlp/plugins/images/imageplugin.py" line="64"/>
<source>Images</source> <source>Images</source>
<comment>name plural</comment> <comment>name plural</comment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/images/imageplugin.py" line="69"/> <location filename="openlp/plugins/images/imageplugin.py" line="68"/>
<source>Images</source> <source>Images</source>
<comment>container title</comment> <comment>container title</comment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
@ -939,59 +939,59 @@ Do you want to add the other images anyway?</source>
<context> <context>
<name>MediaPlugin</name> <name>MediaPlugin</name>
<message> <message>
<location filename="openlp/plugins/media/mediaplugin.py" line="70"/> <location filename="openlp/plugins/media/mediaplugin.py" line="93"/>
<source>&lt;strong&gt;Media Plugin&lt;/strong&gt;&lt;br /&gt;The media plugin provides playback of audio and video.</source> <source>&lt;strong&gt;Media Plugin&lt;/strong&gt;&lt;br /&gt;The media plugin provides playback of audio and video.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Load a new Media</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Add a new Media</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Edit the selected Media</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Delete the selected Media</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Preview the selected Media</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Send the selected Media live</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Add the selected Media to the service</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/media/mediaplugin.py" line="80"/> <location filename="openlp/plugins/media/mediaplugin.py" line="103"/>
<source>Media</source> <source>Media</source>
<comment>name singular</comment> <comment>name singular</comment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/media/mediaplugin.py" line="81"/> <location filename="openlp/plugins/media/mediaplugin.py" line="104"/>
<source>Media</source> <source>Media</source>
<comment>name plural</comment> <comment>name plural</comment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/media/mediaplugin.py" line="85"/> <location filename="openlp/plugins/media/mediaplugin.py" line="108"/>
<source>Media</source> <source>Media</source>
<comment>container title</comment> <comment>container title</comment>
<translation type="unfinished"></translation> <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> <source> build %s</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message>
<location filename="openlp/core/ui/aboutdialog.py" line="224"/>
<source>Copyright &#xa9; 2004-2011 Raoul Snyman
Portions copyright &#xa9; 2004-2011 Tim Bentley, Jonathan Corwin, Michael Gorven, Scott Guerrieri,
Meinert Jordan, Andreas Preikschat, Christian Richter, Philip
Ridout, Maikel Stuivenberg, Martin Thompson, Jon Tibble, CarstennTinggaard, Frode Woldsund</source>
<translation type="unfinished"></translation>
</message>
<message> <message>
<location filename="openlp/core/ui/aboutdialog.py" line="231"/> <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> <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> He has set us free.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message>
<location filename="openlp/core/ui/aboutdialog.py" line="224"/>
<source>Copyright &#xa9; 2004-2011 Raoul Snyman
Portions copyright &#xa9; 2004-2011 Tim Bentley, Jonathan Corwin, Michael Gorven, Scott Guerrieri,
Meinert Jordan, Andreas Preikschat, Christian Richter, Philip
Ridout, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Carsten
Tinggaard, Frode Woldsund</source>
<translation type="unfinished"></translation>
</message>
</context> </context>
<context> <context>
<name>OpenLP.AdvancedTab</name> <name>OpenLP.AdvancedTab</name>
@ -1275,17 +1276,17 @@ Final Credit
</message> </message>
<message> <message>
<location filename="openlp/core/ui/displaytagdialog.py" line="145"/> <location filename="openlp/core/ui/displaytagdialog.py" line="145"/>
<source>Tag id</source> <source>Tag Id</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/displaytagdialog.py" line="147"/> <location filename="openlp/core/ui/displaytagdialog.py" line="147"/>
<source>Start Html</source> <source>Start HTML</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/displaytagdialog.py" line="149"/> <location filename="openlp/core/ui/displaytagdialog.py" line="149"/>
<source>End Html</source> <source>End HTML</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
</context> </context>
@ -1423,151 +1424,200 @@ Version: %s
<context> <context>
<name>OpenLP.FirstTimeLanguageForm</name> <name>OpenLP.FirstTimeLanguageForm</name>
<message> <message>
<location filename="openlp/core/ui/firsttimelanguagedialog.py" line="60"/> <location filename="openlp/core/ui/firsttimelanguagedialog.py" line="61"/>
<source>Initial Set up Language</source> <source>Select Translation</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimelanguagedialog.py" line="62"/> <location filename="openlp/core/ui/firsttimelanguagedialog.py" line="63"/>
<source>Select the language you&apos;d like to use in OpenLP.</source> <source>Choose the translation you&apos;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> <translation type="unfinished"></translation>
</message> </message>
</context> </context>
<context> <context>
<name>OpenLP.FirstTimeWizard</name> <name>OpenLP.FirstTimeWizard</name>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="154"/> <location filename="openlp/core/ui/firsttimeform.py" line="61"/>
<source>Songs</source> <source>Downloading %s...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimeform.py" line="63"/> <location filename="openlp/core/ui/firsttimeform.py" line="212"/>
<source>Bibles</source> <source>Download complete. Click the finish button to start OpenLP.</source>
<translation type="unfinished">Alkitab</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimeform.py" line="64"/>
<source>Themes</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimeform.py" line="65"/> <location filename="openlp/core/ui/firsttimeform.py" line="221"/>
<source>Starting Updates</source> <source>Enabling selected plugins...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimeform.py" line="67"/> <location filename="openlp/core/ui/firsttimeform.py" line="244"/>
<source>Downloading %s</source> <source>Overwrite Existing Songs?</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>First Time Wizard</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Welcome to the First Time Wizard</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="146"/> <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> <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> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Activate required Plugins</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Select the Plugins you wish to use. </source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Custom Text</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="157"/> <location filename="openlp/core/ui/firsttimewizard.py" line="210"/>
<source>Bible</source> <source>Bible</source>
<translation type="unfinished">Alkitab</translation> <translation type="unfinished">Alkitab</translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="158"/> <location filename="openlp/core/ui/firsttimewizard.py" line="211"/>
<source>Images</source> <source>Images</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="160"/> <location filename="openlp/core/ui/firsttimewizard.py" line="213"/>
<source>Presentations</source> <source>Presentations</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Media (Audio and Video)</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Allow remote access</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Monitor Song Usage</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="168"/> <location filename="openlp/core/ui/firsttimewizard.py" line="221"/>
<source>Allow Alerts</source> <source>Allow Alerts</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="170"/> <location filename="openlp/core/ui/firsttimewizard.py" line="223"/>
<source>Download Samples from OpenLP.org</source> <source>No Internet Connection</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="172"/> <location filename="openlp/core/ui/firsttimewizard.py" line="225"/>
<source>Select samples to downlaod and install for use.</source> <source>Unable to detect an Internet connection.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="175"/> <location filename="openlp/core/ui/firsttimewizard.py" line="228"/>
<source>No Internet connection found so unable to download any default files.</source> <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> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="178"/> <location filename="openlp/core/ui/firsttimewizard.py" line="236"/>
<source>Download Example Files</source> <source>Sample Songs</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Default Settings</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="182"/> <location filename="openlp/core/ui/firsttimewizard.py" line="250"/>
<source>Set up default values to be used by OpenLP</source> <source>Set up default settings to be used by OpenLP.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="184"/> <location filename="openlp/core/ui/firsttimewizard.py" line="252"/>
<source>Default output display</source> <source>Setting Up And Importing</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="186"/> <location filename="openlp/core/ui/firsttimewizard.py" line="254"/>
<source>Select the default Theme</source> <source>Please wait while OpenLP is set up and your data is imported.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="188"/> <location filename="openlp/core/ui/firsttimewizard.py" line="256"/>
<source>Press finish to apply all your changes and start OpenLP</source> <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> <translation type="unfinished"></translation>
</message> </message>
</context> </context>
@ -1692,12 +1742,12 @@ Version: %s
<context> <context>
<name>OpenLP.LanguageManager</name> <name>OpenLP.LanguageManager</name>
<message> <message>
<location filename="openlp/core/utils/languagemanager.py" line="126"/> <location filename="openlp/core/utils/languagemanager.py" line="130"/>
<source>Language</source> <source>Language</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Please restart OpenLP to use your new language setting.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -2003,17 +2053,12 @@ Version: %s
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/mainwindow.py" line="428"/> <location filename="openlp/core/ui/mainwindow.py" line="434"/>
<source>&amp;Auto Detect</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="430"/>
<source>Use the system language, if available.</source> <source>Use the system language, if available.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Set the interface language to %s</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -2058,29 +2103,29 @@ Version: %s
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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). <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> You can download the latest version from http://openlp.org/.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>OpenLP Version Updated</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>OpenLP Main Display Blanked</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>The Main Display has been blanked out</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Default Theme: %s</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -2096,12 +2141,12 @@ You can download the latest version from http://openlp.org/.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/mainwindow.py" line="817"/> <location filename="openlp/core/ui/mainwindow.py" line="815"/>
<source>Close OpenLP</source> <source>Close OpenLP</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Are you sure you want to close OpenLP?</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -2130,11 +2175,16 @@ You can download the latest version from http://openlp.org/.</source>
<source>&amp;Configure Display Tags</source> <source>&amp;Configure Display Tags</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="432"/>
<source>&amp;Autodetect</source>
<translation type="unfinished"></translation>
</message>
</context> </context>
<context> <context>
<name>OpenLP.MediaManagerItem</name> <name>OpenLP.MediaManagerItem</name>
<message> <message>
<location filename="openlp/core/lib/__init__.py" line="287"/> <location filename="openlp/core/lib/__init__.py" line="286"/>
<source>No Items Selected</source> <source>No Items Selected</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -2412,33 +2462,33 @@ You can download the latest version from http://openlp.org/.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>OpenLP Service Files (*.osz)</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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. <source>File is not a valid service.
The content encoding is not UTF-8.</source> The content encoding is not UTF-8.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>File is not a valid service.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Missing Display Handler</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Your item cannot be displayed as there is no handler to display it</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Your item cannot be displayed as the plugin required to display it is missing or inactive</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -3944,82 +3994,92 @@ The content encoding is not UTF-8.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>usage_detail_%s_%s.txt</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Report Creation</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="114"/> <location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="123"/>
<source>Report <source>Report
%s %s
has been successfully created. </source> has been successfully created. </source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </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>
<context> <context>
<name>SongsPlugin</name> <name>SongsPlugin</name>
<message> <message>
<location filename="openlp/plugins/songs/songsplugin.py" line="104"/> <location filename="openlp/plugins/songs/songsplugin.py" line="103"/>
<source>&amp;Song</source> <source>&amp;Song</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Import songs using the import wizard.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/songs/songsplugin.py" line="183"/> <location filename="openlp/plugins/songs/songsplugin.py" line="182"/>
<source>&lt;strong&gt;Songs Plugin&lt;/strong&gt;&lt;br /&gt;The songs plugin provides the ability to display and manage songs.</source> <source>&lt;strong&gt;Songs Plugin&lt;/strong&gt;&lt;br /&gt;The songs plugin provides the ability to display and manage songs.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/songs/songsplugin.py" line="126"/> <location filename="openlp/plugins/songs/songsplugin.py" line="125"/>
<source>&amp;Re-index Songs</source> <source>&amp;Re-index Songs</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Re-index the songs database to improve searching and ordering.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/songs/songsplugin.py" line="141"/> <location filename="openlp/plugins/songs/songsplugin.py" line="140"/>
<source>Reindexing songs...</source> <source>Reindexing songs...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Add a new Song</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Edit the selected Song</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Delete the selected Song</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Preview the selected Song</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Send the selected Song live</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Add the selected Song to the service</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -4112,25 +4172,25 @@ The encoding is responsible for the correct character representation.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/songs/songsplugin.py" line="227"/> <location filename="openlp/plugins/songs/songsplugin.py" line="226"/>
<source>Song</source> <source>Song</source>
<comment>name singular</comment> <comment>name singular</comment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/songs/songsplugin.py" line="228"/> <location filename="openlp/plugins/songs/songsplugin.py" line="227"/>
<source>Songs</source> <source>Songs</source>
<comment>name plural</comment> <comment>name plural</comment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/songs/songsplugin.py" line="232"/> <location filename="openlp/plugins/songs/songsplugin.py" line="231"/>
<source>Songs</source> <source>Songs</source>
<comment>container title</comment> <comment>container title</comment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Exports songs using the export wizard.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -4586,12 +4646,12 @@ The encoding is responsible for the correct character representation.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Delete Song(s)?</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>CCLI License: </source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -4601,7 +4661,7 @@ The encoding is responsible for the correct character representation.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message numerus="yes"> <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> <source>Are you sure you want to delete the %n selected song(s)?</source>
<translation type="unfinished"> <translation type="unfinished">
<numerusform></numerusform> <numerusform></numerusform>

File diff suppressed because it is too large Load Diff

View File

@ -210,7 +210,7 @@ Do you want to continue anyway?</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>You cannot combine single and dual Bible verse search results. Do you want to delete your search results and start a new search?</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -830,59 +830,59 @@ demand and thus an internet connection is required.</source>
<context> <context>
<name>ImagePlugin</name> <name>ImagePlugin</name>
<message> <message>
<location filename="openlp/plugins/images/imageplugin.py" line="45"/> <location filename="openlp/plugins/images/imageplugin.py" line="44"/>
<source>&lt;strong&gt;Image Plugin&lt;/strong&gt;&lt;br /&gt;The image plugin provides displaying of images.&lt;br /&gt;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&apos;s &quot;timed looping&quot; 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&apos;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> <source>&lt;strong&gt;Image Plugin&lt;/strong&gt;&lt;br /&gt;The image plugin provides displaying of images.&lt;br /&gt;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&apos;s &quot;timed looping&quot; 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&apos;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> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Load a new Image</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Add a new Image</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Edit the selected Image</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Delete the selected Image</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Preview the selected Image</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Send the selected Image live</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Add the selected Image to the service</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/images/imageplugin.py" line="64"/> <location filename="openlp/plugins/images/imageplugin.py" line="63"/>
<source>Image</source> <source>Image</source>
<comment>name singular</comment> <comment>name singular</comment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/images/imageplugin.py" line="65"/> <location filename="openlp/plugins/images/imageplugin.py" line="64"/>
<source>Images</source> <source>Images</source>
<comment>name plural</comment> <comment>name plural</comment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/images/imageplugin.py" line="69"/> <location filename="openlp/plugins/images/imageplugin.py" line="68"/>
<source>Images</source> <source>Images</source>
<comment>container title</comment> <comment>container title</comment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
@ -938,59 +938,59 @@ Do you want to add the other images anyway?</source>
<context> <context>
<name>MediaPlugin</name> <name>MediaPlugin</name>
<message> <message>
<location filename="openlp/plugins/media/mediaplugin.py" line="70"/> <location filename="openlp/plugins/media/mediaplugin.py" line="93"/>
<source>&lt;strong&gt;Media Plugin&lt;/strong&gt;&lt;br /&gt;The media plugin provides playback of audio and video.</source> <source>&lt;strong&gt;Media Plugin&lt;/strong&gt;&lt;br /&gt;The media plugin provides playback of audio and video.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Load a new Media</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Add a new Media</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Edit the selected Media</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Delete the selected Media</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Preview the selected Media</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Send the selected Media live</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Add the selected Media to the service</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/media/mediaplugin.py" line="80"/> <location filename="openlp/plugins/media/mediaplugin.py" line="103"/>
<source>Media</source> <source>Media</source>
<comment>name singular</comment> <comment>name singular</comment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/media/mediaplugin.py" line="81"/> <location filename="openlp/plugins/media/mediaplugin.py" line="104"/>
<source>Media</source> <source>Media</source>
<comment>name plural</comment> <comment>name plural</comment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/media/mediaplugin.py" line="85"/> <location filename="openlp/plugins/media/mediaplugin.py" line="108"/>
<source>Media</source> <source>Media</source>
<comment>container title</comment> <comment>container title</comment>
<translation type="unfinished"></translation> <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> <source> build %s</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message>
<location filename="openlp/core/ui/aboutdialog.py" line="224"/>
<source>Copyright &#xa9; 2004-2011 Raoul Snyman
Portions copyright &#xa9; 2004-2011 Tim Bentley, Jonathan Corwin, Michael Gorven, Scott Guerrieri,
Meinert Jordan, Andreas Preikschat, Christian Richter, Philip
Ridout, Maikel Stuivenberg, Martin Thompson, Jon Tibble, CarstennTinggaard, Frode Woldsund</source>
<translation type="unfinished"></translation>
</message>
<message> <message>
<location filename="openlp/core/ui/aboutdialog.py" line="231"/> <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> <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> He has set us free.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message>
<location filename="openlp/core/ui/aboutdialog.py" line="224"/>
<source>Copyright &#xa9; 2004-2011 Raoul Snyman
Portions copyright &#xa9; 2004-2011 Tim Bentley, Jonathan Corwin, Michael Gorven, Scott Guerrieri,
Meinert Jordan, Andreas Preikschat, Christian Richter, Philip
Ridout, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Carsten
Tinggaard, Frode Woldsund</source>
<translation type="unfinished"></translation>
</message>
</context> </context>
<context> <context>
<name>OpenLP.AdvancedTab</name> <name>OpenLP.AdvancedTab</name>
@ -1274,17 +1275,17 @@ Final Credit
</message> </message>
<message> <message>
<location filename="openlp/core/ui/displaytagdialog.py" line="145"/> <location filename="openlp/core/ui/displaytagdialog.py" line="145"/>
<source>Tag id</source> <source>Tag Id</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/displaytagdialog.py" line="147"/> <location filename="openlp/core/ui/displaytagdialog.py" line="147"/>
<source>Start Html</source> <source>Start HTML</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/displaytagdialog.py" line="149"/> <location filename="openlp/core/ui/displaytagdialog.py" line="149"/>
<source>End Html</source> <source>End HTML</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
</context> </context>
@ -1422,151 +1423,200 @@ Version: %s
<context> <context>
<name>OpenLP.FirstTimeLanguageForm</name> <name>OpenLP.FirstTimeLanguageForm</name>
<message> <message>
<location filename="openlp/core/ui/firsttimelanguagedialog.py" line="60"/> <location filename="openlp/core/ui/firsttimelanguagedialog.py" line="61"/>
<source>Initial Set up Language</source> <source>Select Translation</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimelanguagedialog.py" line="62"/> <location filename="openlp/core/ui/firsttimelanguagedialog.py" line="63"/>
<source>Select the language you&apos;d like to use in OpenLP.</source> <source>Choose the translation you&apos;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> <translation type="unfinished"></translation>
</message> </message>
</context> </context>
<context> <context>
<name>OpenLP.FirstTimeWizard</name> <name>OpenLP.FirstTimeWizard</name>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="154"/> <location filename="openlp/core/ui/firsttimeform.py" line="61"/>
<source>Songs</source> <source>Downloading %s...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimeform.py" line="63"/> <location filename="openlp/core/ui/firsttimeform.py" line="212"/>
<source>Bibles</source> <source>Download complete. Click the finish button to start OpenLP.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimeform.py" line="64"/> <location filename="openlp/core/ui/firsttimeform.py" line="221"/>
<source>Themes</source> <source>Enabling selected plugins...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimeform.py" line="65"/> <location filename="openlp/core/ui/firsttimeform.py" line="244"/>
<source>Starting Updates</source> <source>Overwrite Existing Songs?</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimeform.py" line="67"/> <location filename="openlp/core/ui/firsttimeform.py" line="244"/>
<source>Downloading %s</source> <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> <translation type="unfinished"></translation>
</message> </message>
<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> <source>First Time Wizard</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Welcome to the First Time Wizard</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="146"/> <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> <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> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Activate required Plugins</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Select the Plugins you wish to use. </source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Custom Text</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="157"/> <location filename="openlp/core/ui/firsttimewizard.py" line="210"/>
<source>Bible</source> <source>Bible</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="158"/> <location filename="openlp/core/ui/firsttimewizard.py" line="211"/>
<source>Images</source> <source>Images</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="160"/> <location filename="openlp/core/ui/firsttimewizard.py" line="213"/>
<source>Presentations</source> <source>Presentations</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Media (Audio and Video)</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Allow remote access</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Monitor Song Usage</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="168"/> <location filename="openlp/core/ui/firsttimewizard.py" line="221"/>
<source>Allow Alerts</source> <source>Allow Alerts</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="170"/> <location filename="openlp/core/ui/firsttimewizard.py" line="223"/>
<source>Download Samples from OpenLP.org</source> <source>No Internet Connection</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="172"/> <location filename="openlp/core/ui/firsttimewizard.py" line="225"/>
<source>Select samples to downlaod and install for use.</source> <source>Unable to detect an Internet connection.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="175"/> <location filename="openlp/core/ui/firsttimewizard.py" line="228"/>
<source>No Internet connection found so unable to download any default files.</source> <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> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="178"/> <location filename="openlp/core/ui/firsttimewizard.py" line="236"/>
<source>Download Example Files</source> <source>Sample Songs</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Default Settings</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="182"/> <location filename="openlp/core/ui/firsttimewizard.py" line="250"/>
<source>Set up default values to be used by OpenLP</source> <source>Set up default settings to be used by OpenLP.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="184"/> <location filename="openlp/core/ui/firsttimewizard.py" line="252"/>
<source>Default output display</source> <source>Setting Up And Importing</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="186"/> <location filename="openlp/core/ui/firsttimewizard.py" line="254"/>
<source>Select the default Theme</source> <source>Please wait while OpenLP is set up and your data is imported.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="188"/> <location filename="openlp/core/ui/firsttimewizard.py" line="256"/>
<source>Press finish to apply all your changes and start OpenLP</source> <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> <translation type="unfinished"></translation>
</message> </message>
</context> </context>
@ -1691,12 +1741,12 @@ Version: %s
<context> <context>
<name>OpenLP.LanguageManager</name> <name>OpenLP.LanguageManager</name>
<message> <message>
<location filename="openlp/core/utils/languagemanager.py" line="126"/> <location filename="openlp/core/utils/languagemanager.py" line="130"/>
<source>Language</source> <source>Language</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Please restart OpenLP to use your new language setting.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -2002,17 +2052,12 @@ Version: %s
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/mainwindow.py" line="428"/> <location filename="openlp/core/ui/mainwindow.py" line="434"/>
<source>&amp;Auto Detect</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="430"/>
<source>Use the system language, if available.</source> <source>Use the system language, if available.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Set the interface language to %s</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -2057,29 +2102,29 @@ Version: %s
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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). <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> You can download the latest version from http://openlp.org/.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>OpenLP Version Updated</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>OpenLP Main Display Blanked</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>The Main Display has been blanked out</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Default Theme: %s</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -2095,12 +2140,12 @@ You can download the latest version from http://openlp.org/.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/mainwindow.py" line="817"/> <location filename="openlp/core/ui/mainwindow.py" line="815"/>
<source>Close OpenLP</source> <source>Close OpenLP</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Are you sure you want to close OpenLP?</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -2129,11 +2174,16 @@ You can download the latest version from http://openlp.org/.</source>
<source>&amp;Configure Display Tags</source> <source>&amp;Configure Display Tags</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="432"/>
<source>&amp;Autodetect</source>
<translation type="unfinished"></translation>
</message>
</context> </context>
<context> <context>
<name>OpenLP.MediaManagerItem</name> <name>OpenLP.MediaManagerItem</name>
<message> <message>
<location filename="openlp/core/lib/__init__.py" line="287"/> <location filename="openlp/core/lib/__init__.py" line="286"/>
<source>No Items Selected</source> <source>No Items Selected</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -2411,28 +2461,28 @@ You can download the latest version from http://openlp.org/.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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. <source>File is not a valid service.
The content encoding is not UTF-8.</source> The content encoding is not UTF-8.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>File is not a valid service.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Missing Display Handler</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Your item cannot be displayed as there is no handler to display it</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Your item cannot be displayed as the plugin required to display it is missing or inactive</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -2462,7 +2512,7 @@ The content encoding is not UTF-8.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>OpenLP Service Files (*.osz)</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -3943,99 +3993,109 @@ The content encoding is not UTF-8.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>usage_detail_%s_%s.txt</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Report Creation</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="114"/> <location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="123"/>
<source>Report <source>Report
%s %s
has been successfully created. </source> has been successfully created. </source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </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>
<context> <context>
<name>SongsPlugin</name> <name>SongsPlugin</name>
<message> <message>
<location filename="openlp/plugins/songs/songsplugin.py" line="104"/> <location filename="openlp/plugins/songs/songsplugin.py" line="103"/>
<source>&amp;Song</source> <source>&amp;Song</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Import songs using the import wizard.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/songs/songsplugin.py" line="183"/> <location filename="openlp/plugins/songs/songsplugin.py" line="182"/>
<source>&lt;strong&gt;Songs Plugin&lt;/strong&gt;&lt;br /&gt;The songs plugin provides the ability to display and manage songs.</source> <source>&lt;strong&gt;Songs Plugin&lt;/strong&gt;&lt;br /&gt;The songs plugin provides the ability to display and manage songs.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/songs/songsplugin.py" line="126"/> <location filename="openlp/plugins/songs/songsplugin.py" line="125"/>
<source>&amp;Re-index Songs</source> <source>&amp;Re-index Songs</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Re-index the songs database to improve searching and ordering.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/songs/songsplugin.py" line="141"/> <location filename="openlp/plugins/songs/songsplugin.py" line="140"/>
<source>Reindexing songs...</source> <source>Reindexing songs...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Add a new Song</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Edit the selected Song</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Delete the selected Song</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Preview the selected Song</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Send the selected Song live</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Add the selected Song to the service</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/songs/songsplugin.py" line="227"/> <location filename="openlp/plugins/songs/songsplugin.py" line="226"/>
<source>Song</source> <source>Song</source>
<comment>name singular</comment> <comment>name singular</comment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/songs/songsplugin.py" line="228"/> <location filename="openlp/plugins/songs/songsplugin.py" line="227"/>
<source>Songs</source> <source>Songs</source>
<comment>name plural</comment> <comment>name plural</comment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/songs/songsplugin.py" line="232"/> <location filename="openlp/plugins/songs/songsplugin.py" line="231"/>
<source>Songs</source> <source>Songs</source>
<comment>container title</comment> <comment>container title</comment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
@ -4129,7 +4189,7 @@ The encoding is responsible for the correct character representation.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Exports songs using the export wizard.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -4585,12 +4645,12 @@ The encoding is responsible for the correct character representation.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Delete Song(s)?</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>CCLI License: </source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -4600,7 +4660,7 @@ The encoding is responsible for the correct character representation.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message numerus="yes"> <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> <source>Are you sure you want to delete the %n selected song(s)?</source>
<translation type="unfinished"> <translation type="unfinished">
<numerusform></numerusform> <numerusform></numerusform>

View File

@ -210,7 +210,7 @@ Do you want to continue anyway?</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>You cannot combine single and dual Bible verse search results. Do you want to delete your search results and start a new search?</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -829,59 +829,59 @@ demand and thus an internet connection is required.</source>
<context> <context>
<name>ImagePlugin</name> <name>ImagePlugin</name>
<message> <message>
<location filename="openlp/plugins/images/imageplugin.py" line="45"/> <location filename="openlp/plugins/images/imageplugin.py" line="44"/>
<source>&lt;strong&gt;Image Plugin&lt;/strong&gt;&lt;br /&gt;The image plugin provides displaying of images.&lt;br /&gt;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&apos;s &quot;timed looping&quot; 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&apos;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> <source>&lt;strong&gt;Image Plugin&lt;/strong&gt;&lt;br /&gt;The image plugin provides displaying of images.&lt;br /&gt;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&apos;s &quot;timed looping&quot; 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&apos;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> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Load a new Image</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Add a new Image</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Edit the selected Image</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Delete the selected Image</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Preview the selected Image</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Send the selected Image live</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Add the selected Image to the service</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/images/imageplugin.py" line="64"/> <location filename="openlp/plugins/images/imageplugin.py" line="63"/>
<source>Image</source> <source>Image</source>
<comment>name singular</comment> <comment>name singular</comment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/images/imageplugin.py" line="65"/> <location filename="openlp/plugins/images/imageplugin.py" line="64"/>
<source>Images</source> <source>Images</source>
<comment>name plural</comment> <comment>name plural</comment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/images/imageplugin.py" line="69"/> <location filename="openlp/plugins/images/imageplugin.py" line="68"/>
<source>Images</source> <source>Images</source>
<comment>container title</comment> <comment>container title</comment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
@ -937,59 +937,59 @@ Do you want to add the other images anyway?</source>
<context> <context>
<name>MediaPlugin</name> <name>MediaPlugin</name>
<message> <message>
<location filename="openlp/plugins/media/mediaplugin.py" line="70"/> <location filename="openlp/plugins/media/mediaplugin.py" line="93"/>
<source>&lt;strong&gt;Media Plugin&lt;/strong&gt;&lt;br /&gt;The media plugin provides playback of audio and video.</source> <source>&lt;strong&gt;Media Plugin&lt;/strong&gt;&lt;br /&gt;The media plugin provides playback of audio and video.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Load a new Media</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Add a new Media</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Edit the selected Media</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Delete the selected Media</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Preview the selected Media</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Send the selected Media live</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Add the selected Media to the service</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/media/mediaplugin.py" line="80"/> <location filename="openlp/plugins/media/mediaplugin.py" line="103"/>
<source>Media</source> <source>Media</source>
<comment>name singular</comment> <comment>name singular</comment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/media/mediaplugin.py" line="81"/> <location filename="openlp/plugins/media/mediaplugin.py" line="104"/>
<source>Media</source> <source>Media</source>
<comment>name plural</comment> <comment>name plural</comment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/media/mediaplugin.py" line="85"/> <location filename="openlp/plugins/media/mediaplugin.py" line="108"/>
<source>Media</source> <source>Media</source>
<comment>container title</comment> <comment>container title</comment>
<translation type="unfinished"></translation> <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> <source> build %s</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message>
<location filename="openlp/core/ui/aboutdialog.py" line="224"/>
<source>Copyright &#xa9; 2004-2011 Raoul Snyman
Portions copyright &#xa9; 2004-2011 Tim Bentley, Jonathan Corwin, Michael Gorven, Scott Guerrieri,
Meinert Jordan, Andreas Preikschat, Christian Richter, Philip
Ridout, Maikel Stuivenberg, Martin Thompson, Jon Tibble, CarstennTinggaard, Frode Woldsund</source>
<translation type="unfinished"></translation>
</message>
<message> <message>
<location filename="openlp/core/ui/aboutdialog.py" line="231"/> <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> <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> He has set us free.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message>
<location filename="openlp/core/ui/aboutdialog.py" line="224"/>
<source>Copyright &#xa9; 2004-2011 Raoul Snyman
Portions copyright &#xa9; 2004-2011 Tim Bentley, Jonathan Corwin, Michael Gorven, Scott Guerrieri,
Meinert Jordan, Andreas Preikschat, Christian Richter, Philip
Ridout, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Carsten
Tinggaard, Frode Woldsund</source>
<translation type="unfinished"></translation>
</message>
</context> </context>
<context> <context>
<name>OpenLP.AdvancedTab</name> <name>OpenLP.AdvancedTab</name>
@ -1273,17 +1274,17 @@ Final Credit
</message> </message>
<message> <message>
<location filename="openlp/core/ui/displaytagdialog.py" line="145"/> <location filename="openlp/core/ui/displaytagdialog.py" line="145"/>
<source>Tag id</source> <source>Tag Id</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/displaytagdialog.py" line="147"/> <location filename="openlp/core/ui/displaytagdialog.py" line="147"/>
<source>Start Html</source> <source>Start HTML</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/displaytagdialog.py" line="149"/> <location filename="openlp/core/ui/displaytagdialog.py" line="149"/>
<source>End Html</source> <source>End HTML</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
</context> </context>
@ -1421,151 +1422,200 @@ Version: %s
<context> <context>
<name>OpenLP.FirstTimeLanguageForm</name> <name>OpenLP.FirstTimeLanguageForm</name>
<message> <message>
<location filename="openlp/core/ui/firsttimelanguagedialog.py" line="60"/> <location filename="openlp/core/ui/firsttimelanguagedialog.py" line="61"/>
<source>Initial Set up Language</source> <source>Select Translation</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimelanguagedialog.py" line="62"/> <location filename="openlp/core/ui/firsttimelanguagedialog.py" line="63"/>
<source>Select the language you&apos;d like to use in OpenLP.</source> <source>Choose the translation you&apos;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> <translation type="unfinished"></translation>
</message> </message>
</context> </context>
<context> <context>
<name>OpenLP.FirstTimeWizard</name> <name>OpenLP.FirstTimeWizard</name>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="154"/> <location filename="openlp/core/ui/firsttimeform.py" line="61"/>
<source>Songs</source> <source>Downloading %s...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimeform.py" line="63"/> <location filename="openlp/core/ui/firsttimeform.py" line="212"/>
<source>Bibles</source> <source>Download complete. Click the finish button to start OpenLP.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimeform.py" line="64"/> <location filename="openlp/core/ui/firsttimeform.py" line="221"/>
<source>Themes</source> <source>Enabling selected plugins...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimeform.py" line="65"/> <location filename="openlp/core/ui/firsttimeform.py" line="244"/>
<source>Starting Updates</source> <source>Overwrite Existing Songs?</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimeform.py" line="67"/> <location filename="openlp/core/ui/firsttimeform.py" line="244"/>
<source>Downloading %s</source> <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> <translation type="unfinished"></translation>
</message> </message>
<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> <source>First Time Wizard</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Welcome to the First Time Wizard</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="146"/> <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> <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> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Activate required Plugins</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Select the Plugins you wish to use. </source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Custom Text</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="157"/> <location filename="openlp/core/ui/firsttimewizard.py" line="210"/>
<source>Bible</source> <source>Bible</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="158"/> <location filename="openlp/core/ui/firsttimewizard.py" line="211"/>
<source>Images</source> <source>Images</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="160"/> <location filename="openlp/core/ui/firsttimewizard.py" line="213"/>
<source>Presentations</source> <source>Presentations</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Media (Audio and Video)</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Allow remote access</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Monitor Song Usage</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="168"/> <location filename="openlp/core/ui/firsttimewizard.py" line="221"/>
<source>Allow Alerts</source> <source>Allow Alerts</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="170"/> <location filename="openlp/core/ui/firsttimewizard.py" line="223"/>
<source>Download Samples from OpenLP.org</source> <source>No Internet Connection</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="172"/> <location filename="openlp/core/ui/firsttimewizard.py" line="225"/>
<source>Select samples to downlaod and install for use.</source> <source>Unable to detect an Internet connection.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="175"/> <location filename="openlp/core/ui/firsttimewizard.py" line="228"/>
<source>No Internet connection found so unable to download any default files.</source> <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> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="178"/> <location filename="openlp/core/ui/firsttimewizard.py" line="236"/>
<source>Download Example Files</source> <source>Sample Songs</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Default Settings</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="182"/> <location filename="openlp/core/ui/firsttimewizard.py" line="250"/>
<source>Set up default values to be used by OpenLP</source> <source>Set up default settings to be used by OpenLP.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="184"/> <location filename="openlp/core/ui/firsttimewizard.py" line="252"/>
<source>Default output display</source> <source>Setting Up And Importing</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="186"/> <location filename="openlp/core/ui/firsttimewizard.py" line="254"/>
<source>Select the default Theme</source> <source>Please wait while OpenLP is set up and your data is imported.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="188"/> <location filename="openlp/core/ui/firsttimewizard.py" line="256"/>
<source>Press finish to apply all your changes and start OpenLP</source> <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> <translation type="unfinished"></translation>
</message> </message>
</context> </context>
@ -1690,12 +1740,12 @@ Version: %s
<context> <context>
<name>OpenLP.LanguageManager</name> <name>OpenLP.LanguageManager</name>
<message> <message>
<location filename="openlp/core/utils/languagemanager.py" line="126"/> <location filename="openlp/core/utils/languagemanager.py" line="130"/>
<source>Language</source> <source>Language</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Please restart OpenLP to use your new language setting.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -2001,17 +2051,12 @@ Version: %s
<translation type="unfinished">&amp;Internett side</translation> <translation type="unfinished">&amp;Internett side</translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/mainwindow.py" line="428"/> <location filename="openlp/core/ui/mainwindow.py" line="434"/>
<source>&amp;Auto Detect</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="430"/>
<source>Use the system language, if available.</source> <source>Use the system language, if available.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Set the interface language to %s</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -2056,29 +2101,29 @@ Version: %s
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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). <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> You can download the latest version from http://openlp.org/.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>OpenLP Version Updated</source>
<translation type="unfinished">OpenLP versjonen har blitt oppdatert</translation> <translation type="unfinished">OpenLP versjonen har blitt oppdatert</translation>
</message> </message>
<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> <source>OpenLP Main Display Blanked</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>The Main Display has been blanked out</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Default Theme: %s</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -2094,12 +2139,12 @@ You can download the latest version from http://openlp.org/.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/mainwindow.py" line="817"/> <location filename="openlp/core/ui/mainwindow.py" line="815"/>
<source>Close OpenLP</source> <source>Close OpenLP</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Are you sure you want to close OpenLP?</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -2128,11 +2173,16 @@ You can download the latest version from http://openlp.org/.</source>
<source>&amp;Configure Display Tags</source> <source>&amp;Configure Display Tags</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="432"/>
<source>&amp;Autodetect</source>
<translation type="unfinished"></translation>
</message>
</context> </context>
<context> <context>
<name>OpenLP.MediaManagerItem</name> <name>OpenLP.MediaManagerItem</name>
<message> <message>
<location filename="openlp/core/lib/__init__.py" line="287"/> <location filename="openlp/core/lib/__init__.py" line="286"/>
<source>No Items Selected</source> <source>No Items Selected</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -2410,28 +2460,28 @@ You can download the latest version from http://openlp.org/.</source>
<translation type="unfinished">&amp;Bytt objekttema</translation> <translation type="unfinished">&amp;Bytt objekttema</translation>
</message> </message>
<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. <source>File is not a valid service.
The content encoding is not UTF-8.</source> The content encoding is not UTF-8.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>File is not a valid service.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Missing Display Handler</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Your item cannot be displayed as there is no handler to display it</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Your item cannot be displayed as the plugin required to display it is missing or inactive</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -2461,7 +2511,7 @@ The content encoding is not UTF-8.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>OpenLP Service Files (*.osz)</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -3942,99 +3992,109 @@ The content encoding is not UTF-8.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>usage_detail_%s_%s.txt</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Report Creation</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="114"/> <location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="123"/>
<source>Report <source>Report
%s %s
has been successfully created. </source> has been successfully created. </source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </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>
<context> <context>
<name>SongsPlugin</name> <name>SongsPlugin</name>
<message> <message>
<location filename="openlp/plugins/songs/songsplugin.py" line="104"/> <location filename="openlp/plugins/songs/songsplugin.py" line="103"/>
<source>&amp;Song</source> <source>&amp;Song</source>
<translation>&amp;Sang</translation> <translation>&amp;Sang</translation>
</message> </message>
<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> <source>Import songs using the import wizard.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/songs/songsplugin.py" line="183"/> <location filename="openlp/plugins/songs/songsplugin.py" line="182"/>
<source>&lt;strong&gt;Songs Plugin&lt;/strong&gt;&lt;br /&gt;The songs plugin provides the ability to display and manage songs.</source> <source>&lt;strong&gt;Songs Plugin&lt;/strong&gt;&lt;br /&gt;The songs plugin provides the ability to display and manage songs.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/songs/songsplugin.py" line="126"/> <location filename="openlp/plugins/songs/songsplugin.py" line="125"/>
<source>&amp;Re-index Songs</source> <source>&amp;Re-index Songs</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Re-index the songs database to improve searching and ordering.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/songs/songsplugin.py" line="141"/> <location filename="openlp/plugins/songs/songsplugin.py" line="140"/>
<source>Reindexing songs...</source> <source>Reindexing songs...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Add a new Song</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Edit the selected Song</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Delete the selected Song</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Preview the selected Song</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Send the selected Song live</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Add the selected Song to the service</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/songs/songsplugin.py" line="227"/> <location filename="openlp/plugins/songs/songsplugin.py" line="226"/>
<source>Song</source> <source>Song</source>
<comment>name singular</comment> <comment>name singular</comment>
<translation type="unfinished">Sang</translation> <translation type="unfinished">Sang</translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/songs/songsplugin.py" line="228"/> <location filename="openlp/plugins/songs/songsplugin.py" line="227"/>
<source>Songs</source> <source>Songs</source>
<comment>name plural</comment> <comment>name plural</comment>
<translation type="unfinished">Sanger</translation> <translation type="unfinished">Sanger</translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/songs/songsplugin.py" line="232"/> <location filename="openlp/plugins/songs/songsplugin.py" line="231"/>
<source>Songs</source> <source>Songs</source>
<comment>container title</comment> <comment>container title</comment>
<translation type="unfinished">Sanger</translation> <translation type="unfinished">Sanger</translation>
@ -4128,7 +4188,7 @@ The encoding is responsible for the correct character representation.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Exports songs using the export wizard.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -4584,12 +4644,12 @@ The encoding is responsible for the correct character representation.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Delete Song(s)?</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>CCLI License: </source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -4599,7 +4659,7 @@ The encoding is responsible for the correct character representation.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message numerus="yes"> <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> <source>Are you sure you want to delete the %n selected song(s)?</source>
<translation type="unfinished"> <translation type="unfinished">
<numerusform></numerusform> <numerusform></numerusform>

View File

@ -212,7 +212,7 @@ Toch doorgaan?</translation>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>You cannot combine single and dual Bible verse search results. Do you want to delete your search results and start a new search?</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -841,59 +841,59 @@ N.B. bijbelteksten worden gedownload indien nodig internetverbinding is dus nood
<context> <context>
<name>ImagePlugin</name> <name>ImagePlugin</name>
<message> <message>
<location filename="openlp/plugins/images/imageplugin.py" line="45"/> <location filename="openlp/plugins/images/imageplugin.py" line="44"/>
<source>&lt;strong&gt;Image Plugin&lt;/strong&gt;&lt;br /&gt;The image plugin provides displaying of images.&lt;br /&gt;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&apos;s &quot;timed looping&quot; 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&apos;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> <source>&lt;strong&gt;Image Plugin&lt;/strong&gt;&lt;br /&gt;The image plugin provides displaying of images.&lt;br /&gt;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&apos;s &quot;timed looping&quot; 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&apos;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>&lt;strong&gt;Afbeeldingen Plugin&lt;/strong&gt;&lt;br /&gt;De afbeeldingen plugin voorziet in de mogelijkheid afbeeldingen te laten zien.&lt;br /&gt;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> <translation>&lt;strong&gt;Afbeeldingen Plugin&lt;/strong&gt;&lt;br /&gt;De afbeeldingen plugin voorziet in de mogelijkheid afbeeldingen te laten zien.&lt;br /&gt;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>
<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> <source>Load a new Image</source>
<translation>Afbeelding laden</translation> <translation>Afbeelding laden</translation>
</message> </message>
<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> <source>Add a new Image</source>
<translation>Afbeelding toevoegen</translation> <translation>Afbeelding toevoegen</translation>
</message> </message>
<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> <source>Edit the selected Image</source>
<translation>Afbeelding bewerken</translation> <translation>Afbeelding bewerken</translation>
</message> </message>
<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> <source>Delete the selected Image</source>
<translation>Geselecteerde afbeeldingen wissen</translation> <translation>Geselecteerde afbeeldingen wissen</translation>
</message> </message>
<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> <source>Preview the selected Image</source>
<translation>Geselecteerde afbeeldingen voorbeeld bekijken</translation> <translation>Geselecteerde afbeeldingen voorbeeld bekijken</translation>
</message> </message>
<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> <source>Send the selected Image live</source>
<translation>Geselecteerde afbeeldingen Live tonen</translation> <translation>Geselecteerde afbeeldingen Live tonen</translation>
</message> </message>
<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> <source>Add the selected Image to the service</source>
<translation>Geselecteerde afbeeldingen aan liturgie toevoegen</translation> <translation>Geselecteerde afbeeldingen aan liturgie toevoegen</translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/images/imageplugin.py" line="64"/> <location filename="openlp/plugins/images/imageplugin.py" line="63"/>
<source>Image</source> <source>Image</source>
<comment>name singular</comment> <comment>name singular</comment>
<translation>Afbeelding</translation> <translation>Afbeelding</translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/images/imageplugin.py" line="65"/> <location filename="openlp/plugins/images/imageplugin.py" line="64"/>
<source>Images</source> <source>Images</source>
<comment>name plural</comment> <comment>name plural</comment>
<translation>Bilder</translation> <translation>Bilder</translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/images/imageplugin.py" line="69"/> <location filename="openlp/plugins/images/imageplugin.py" line="68"/>
<source>Images</source> <source>Images</source>
<comment>container title</comment> <comment>container title</comment>
<translation>Afbeeldingen</translation> <translation>Afbeeldingen</translation>
@ -950,59 +950,59 @@ De andere afbeeldingen alsnog toevoegen?</translation>
<context> <context>
<name>MediaPlugin</name> <name>MediaPlugin</name>
<message> <message>
<location filename="openlp/plugins/media/mediaplugin.py" line="70"/> <location filename="openlp/plugins/media/mediaplugin.py" line="93"/>
<source>&lt;strong&gt;Media Plugin&lt;/strong&gt;&lt;br /&gt;The media plugin provides playback of audio and video.</source> <source>&lt;strong&gt;Media Plugin&lt;/strong&gt;&lt;br /&gt;The media plugin provides playback of audio and video.</source>
<translation>&lt;strong&gt;Media Plugin&lt;/strong&gt;&lt;br /&gt;De media plugin voorziet in mogelijkheden audio en video af te spelen.</translation> <translation>&lt;strong&gt;Media Plugin&lt;/strong&gt;&lt;br /&gt;De media plugin voorziet in mogelijkheden audio en video af te spelen.</translation>
</message> </message>
<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> <source>Load a new Media</source>
<translation>Laad nieuw media bestand</translation> <translation>Laad nieuw media bestand</translation>
</message> </message>
<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> <source>Add a new Media</source>
<translation>Voeg nieuwe media toe</translation> <translation>Voeg nieuwe media toe</translation>
</message> </message>
<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> <source>Edit the selected Media</source>
<translation>Bewerk geselecteerd media bestand</translation> <translation>Bewerk geselecteerd media bestand</translation>
</message> </message>
<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> <source>Delete the selected Media</source>
<translation>Verwijder geselecteerd media bestand</translation> <translation>Verwijder geselecteerd media bestand</translation>
</message> </message>
<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> <source>Preview the selected Media</source>
<translation>Toon voorbeeld van geselecteerd media bestand</translation> <translation>Toon voorbeeld van geselecteerd media bestand</translation>
</message> </message>
<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> <source>Send the selected Media live</source>
<translation>Toon geselecteerd media bestand Live</translation> <translation>Toon geselecteerd media bestand Live</translation>
</message> </message>
<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> <source>Add the selected Media to the service</source>
<translation>Voeg geselecteerd media bestand aan liturgie toe</translation> <translation>Voeg geselecteerd media bestand aan liturgie toe</translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/media/mediaplugin.py" line="80"/> <location filename="openlp/plugins/media/mediaplugin.py" line="103"/>
<source>Media</source> <source>Media</source>
<comment>name singular</comment> <comment>name singular</comment>
<translation>Medien</translation> <translation>Medien</translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/media/mediaplugin.py" line="81"/> <location filename="openlp/plugins/media/mediaplugin.py" line="104"/>
<source>Media</source> <source>Media</source>
<comment>name plural</comment> <comment>name plural</comment>
<translation>Medien</translation> <translation>Medien</translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/media/mediaplugin.py" line="85"/> <location filename="openlp/plugins/media/mediaplugin.py" line="108"/>
<source>Media</source> <source>Media</source>
<comment>container title</comment> <comment>container title</comment>
<translation>Media</translation> <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> <source> build %s</source>
<translation> build %s</translation> <translation> build %s</translation>
</message> </message>
<message>
<location filename="openlp/core/ui/aboutdialog.py" line="224"/>
<source>Copyright &#xa9; 2004-2011 Raoul Snyman
Portions copyright &#xa9; 2004-2011 Tim Bentley, Jonathan Corwin, Michael Gorven, Scott Guerrieri,
Meinert Jordan, Andreas Preikschat, Christian Richter, Philip
Ridout, Maikel Stuivenberg, Martin Thompson, Jon Tibble, 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> <message>
<location filename="openlp/core/ui/aboutdialog.py" line="231"/> <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> <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> He has set us free.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message>
<location filename="openlp/core/ui/aboutdialog.py" line="224"/>
<source>Copyright &#xa9; 2004-2011 Raoul Snyman
Portions copyright &#xa9; 2004-2011 Tim Bentley, Jonathan Corwin, Michael Gorven, Scott Guerrieri,
Meinert Jordan, Andreas Preikschat, Christian Richter, Philip
Ridout, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Carsten
Tinggaard, Frode Woldsund</source>
<translation type="unfinished"></translation>
</message>
</context> </context>
<context> <context>
<name>OpenLP.AdvancedTab</name> <name>OpenLP.AdvancedTab</name>
@ -1295,18 +1293,18 @@ Final Credit
</message> </message>
<message> <message>
<location filename="openlp/core/ui/displaytagdialog.py" line="145"/> <location filename="openlp/core/ui/displaytagdialog.py" line="145"/>
<source>Tag id</source> <source>Tag Id</source>
<translation>Tag id</translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/displaytagdialog.py" line="147"/> <location filename="openlp/core/ui/displaytagdialog.py" line="147"/>
<source>Start Html</source> <source>Start HTML</source>
<translation>Start Html</translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/displaytagdialog.py" line="149"/> <location filename="openlp/core/ui/displaytagdialog.py" line="149"/>
<source>End Html</source> <source>End HTML</source>
<translation>Eind Html</translation> <translation type="unfinished"></translation>
</message> </message>
</context> </context>
<context> <context>
@ -1445,151 +1443,200 @@ Version: %s
<context> <context>
<name>OpenLP.FirstTimeLanguageForm</name> <name>OpenLP.FirstTimeLanguageForm</name>
<message> <message>
<location filename="openlp/core/ui/firsttimelanguagedialog.py" line="60"/> <location filename="openlp/core/ui/firsttimelanguagedialog.py" line="61"/>
<source>Initial Set up Language</source> <source>Select Translation</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimelanguagedialog.py" line="62"/> <location filename="openlp/core/ui/firsttimelanguagedialog.py" line="63"/>
<source>Select the language you&apos;d like to use in OpenLP.</source> <source>Choose the translation you&apos;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> <translation type="unfinished"></translation>
</message> </message>
</context> </context>
<context> <context>
<name>OpenLP.FirstTimeWizard</name> <name>OpenLP.FirstTimeWizard</name>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="154"/> <location filename="openlp/core/ui/firsttimeform.py" line="61"/>
<source>Songs</source> <source>Downloading %s...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimeform.py" line="63"/> <location filename="openlp/core/ui/firsttimeform.py" line="212"/>
<source>Bibles</source> <source>Download complete. Click the finish button to start OpenLP.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimeform.py" line="64"/> <location filename="openlp/core/ui/firsttimeform.py" line="221"/>
<source>Themes</source> <source>Enabling selected plugins...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimeform.py" line="65"/> <location filename="openlp/core/ui/firsttimeform.py" line="244"/>
<source>Starting Updates</source> <source>Overwrite Existing Songs?</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimeform.py" line="67"/> <location filename="openlp/core/ui/firsttimeform.py" line="244"/>
<source>Downloading %s</source> <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> <translation type="unfinished"></translation>
</message> </message>
<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> <source>First Time Wizard</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Welcome to the First Time Wizard</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="146"/> <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> <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> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Activate required Plugins</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Select the Plugins you wish to use. </source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Custom Text</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="157"/> <location filename="openlp/core/ui/firsttimewizard.py" line="210"/>
<source>Bible</source> <source>Bible</source>
<translation type="unfinished">bijbeltekst</translation> <translation type="unfinished">bijbeltekst</translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="158"/> <location filename="openlp/core/ui/firsttimewizard.py" line="211"/>
<source>Images</source> <source>Images</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="160"/> <location filename="openlp/core/ui/firsttimewizard.py" line="213"/>
<source>Presentations</source> <source>Presentations</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Media (Audio and Video)</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Allow remote access</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Monitor Song Usage</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="168"/> <location filename="openlp/core/ui/firsttimewizard.py" line="221"/>
<source>Allow Alerts</source> <source>Allow Alerts</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="170"/> <location filename="openlp/core/ui/firsttimewizard.py" line="223"/>
<source>Download Samples from OpenLP.org</source> <source>No Internet Connection</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="172"/> <location filename="openlp/core/ui/firsttimewizard.py" line="225"/>
<source>Select samples to downlaod and install for use.</source> <source>Unable to detect an Internet connection.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="175"/> <location filename="openlp/core/ui/firsttimewizard.py" line="228"/>
<source>No Internet connection found so unable to download any default files.</source> <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> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="178"/> <location filename="openlp/core/ui/firsttimewizard.py" line="236"/>
<source>Download Example Files</source> <source>Sample Songs</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Default Settings</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="182"/> <location filename="openlp/core/ui/firsttimewizard.py" line="250"/>
<source>Set up default values to be used by OpenLP</source> <source>Set up default settings to be used by OpenLP.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="184"/> <location filename="openlp/core/ui/firsttimewizard.py" line="252"/>
<source>Default output display</source> <source>Setting Up And Importing</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="186"/> <location filename="openlp/core/ui/firsttimewizard.py" line="254"/>
<source>Select the default Theme</source> <source>Please wait while OpenLP is set up and your data is imported.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="188"/> <location filename="openlp/core/ui/firsttimewizard.py" line="256"/>
<source>Press finish to apply all your changes and start OpenLP</source> <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> <translation type="unfinished"></translation>
</message> </message>
</context> </context>
@ -1714,12 +1761,12 @@ Version: %s
<context> <context>
<name>OpenLP.LanguageManager</name> <name>OpenLP.LanguageManager</name>
<message> <message>
<location filename="openlp/core/utils/languagemanager.py" line="126"/> <location filename="openlp/core/utils/languagemanager.py" line="130"/>
<source>Language</source> <source>Language</source>
<translation>Taal</translation> <translation>Taal</translation>
</message> </message>
<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> <source>Please restart OpenLP to use your new language setting.</source>
<translation>Start OpenLP opnieuw op om de nieuwe taalinstellingen te gebruiken.</translation> <translation>Start OpenLP opnieuw op om de nieuwe taalinstellingen te gebruiken.</translation>
</message> </message>
@ -2025,17 +2072,12 @@ Version: %s
<translation>&amp;Website</translation> <translation>&amp;Website</translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/mainwindow.py" line="428"/> <location filename="openlp/core/ui/mainwindow.py" line="434"/>
<source>&amp;Auto Detect</source>
<translation>&amp;Automatisch detecteren</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="430"/>
<source>Use the system language, if available.</source> <source>Use the system language, if available.</source>
<translation>Gebruik systeem standaardtaal, indien mogelijk.</translation> <translation>Gebruik systeem standaardtaal, indien mogelijk.</translation>
</message> </message>
<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> <source>Set the interface language to %s</source>
<translation>%s als taal in OpenLP gebruiken</translation> <translation>%s als taal in OpenLP gebruiken</translation>
</message> </message>
@ -2080,27 +2122,27 @@ Version: %s
<translation>Weergave modus naar Live.</translation> <translation>Weergave modus naar Live.</translation>
</message> </message>
<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> <source>OpenLP Version Updated</source>
<translation>Nieuwe OpenLP versie beschikbaar</translation> <translation>Nieuwe OpenLP versie beschikbaar</translation>
</message> </message>
<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> <source>OpenLP Main Display Blanked</source>
<translation>OpenLP projectie op zwart</translation> <translation>OpenLP projectie op zwart</translation>
</message> </message>
<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> <source>The Main Display has been blanked out</source>
<translation>Projectie is uitgeschakeld: scherm staat op zwart</translation> <translation>Projectie is uitgeschakeld: scherm staat op zwart</translation>
</message> </message>
<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> <source>Default Theme: %s</source>
<translation>Standaardthema: %s</translation> <translation>Standaardthema: %s</translation>
</message> </message>
<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). <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> 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>&amp;Sneltoetsen instellen...</translation> <translation>&amp;Sneltoetsen instellen...</translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/mainwindow.py" line="817"/> <location filename="openlp/core/ui/mainwindow.py" line="815"/>
<source>Close OpenLP</source> <source>Close OpenLP</source>
<translation>OpenLP afsluiten</translation> <translation>OpenLP afsluiten</translation>
</message> </message>
<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> <source>Are you sure you want to close OpenLP?</source>
<translation>OpenLP afsluiten?</translation> <translation>OpenLP afsluiten?</translation>
</message> </message>
@ -2154,11 +2196,16 @@ U kunt de laatste versie op http://openlp.org/ downloaden.</translation>
<source>&amp;Configure Display Tags</source> <source>&amp;Configure Display Tags</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="432"/>
<source>&amp;Autodetect</source>
<translation type="unfinished"></translation>
</message>
</context> </context>
<context> <context>
<name>OpenLP.MediaManagerItem</name> <name>OpenLP.MediaManagerItem</name>
<message> <message>
<location filename="openlp/core/lib/__init__.py" line="287"/> <location filename="openlp/core/lib/__init__.py" line="286"/>
<source>No Items Selected</source> <source>No Items Selected</source>
<translation>Niets geselecteerd</translation> <translation>Niets geselecteerd</translation>
</message> </message>
@ -2436,29 +2483,29 @@ U kunt de laatste versie op http://openlp.org/ downloaden.</translation>
<translation>&amp;Wijzig onderdeel thema</translation> <translation>&amp;Wijzig onderdeel thema</translation>
</message> </message>
<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. <source>File is not a valid service.
The content encoding is not UTF-8.</source> The content encoding is not UTF-8.</source>
<translation>Geen geldig liturgie bestand. <translation>Geen geldig liturgie bestand.
Tekst codering is geen UTF-8.</translation> Tekst codering is geen UTF-8.</translation>
</message> </message>
<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> <source>File is not a valid service.</source>
<translation>Geen geldig liturgie bestand.</translation> <translation>Geen geldig liturgie bestand.</translation>
</message> </message>
<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> <source>Missing Display Handler</source>
<translation>Ontbrekende weergave regelaar</translation> <translation>Ontbrekende weergave regelaar</translation>
</message> </message>
<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> <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> <translation>Dit onderdeel kan niet weergegeven worden, omdat er een regelaar ontbreekt</translation>
</message> </message>
<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> <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> <translation>Dit onderdeel kan niet weergegeven worden omdat de benodigde plugin ontbreekt of inactief is</translation>
</message> </message>
@ -2488,7 +2535,7 @@ Tekst codering is geen UTF-8.</translation>
<translation>Open bestand</translation> <translation>Open bestand</translation>
</message> </message>
<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> <source>OpenLP Service Files (*.osz)</source>
<translation>OpenLP liturgie bestanden (*.osz)</translation> <translation>OpenLP liturgie bestanden (*.osz)</translation>
</message> </message>
@ -3970,99 +4017,109 @@ Tekst codering is geen UTF-8.</translation>
<translation>Bestandslocatie</translation> <translation>Bestandslocatie</translation>
</message> </message>
<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> <source>usage_detail_%s_%s.txt</source>
<translation>liedgebruik_details_%s_%s.txt</translation> <translation>liedgebruik_details_%s_%s.txt</translation>
</message> </message>
<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> <source>Report Creation</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="114"/> <location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="123"/>
<source>Report <source>Report
%s %s
has been successfully created. </source> has been successfully created. </source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </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>
<context> <context>
<name>SongsPlugin</name> <name>SongsPlugin</name>
<message> <message>
<location filename="openlp/plugins/songs/songsplugin.py" line="104"/> <location filename="openlp/plugins/songs/songsplugin.py" line="103"/>
<source>&amp;Song</source> <source>&amp;Song</source>
<translation>&amp;Lied</translation> <translation>&amp;Lied</translation>
</message> </message>
<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> <source>Import songs using the import wizard.</source>
<translation>Importeer liederen met de lied assistent.</translation> <translation>Importeer liederen met de lied assistent.</translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/songs/songsplugin.py" line="183"/> <location filename="openlp/plugins/songs/songsplugin.py" line="182"/>
<source>&lt;strong&gt;Songs Plugin&lt;/strong&gt;&lt;br /&gt;The songs plugin provides the ability to display and manage songs.</source> <source>&lt;strong&gt;Songs Plugin&lt;/strong&gt;&lt;br /&gt;The songs plugin provides the ability to display and manage songs.</source>
<translation>&lt;strong&gt;Lied plugin&lt;/strong&gt;&lt;br /&gt;De lied plugin regelt de weergave en het beheer van liederen.</translation> <translation>&lt;strong&gt;Lied plugin&lt;/strong&gt;&lt;br /&gt;De lied plugin regelt de weergave en het beheer van liederen.</translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/songs/songsplugin.py" line="126"/> <location filename="openlp/plugins/songs/songsplugin.py" line="125"/>
<source>&amp;Re-index Songs</source> <source>&amp;Re-index Songs</source>
<translation>He&amp;r-indexeer liederen</translation> <translation>He&amp;r-indexeer liederen</translation>
</message> </message>
<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> <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> <translation>Her-indexxer de liederen in de database om het zoeken en ordenen te verbeteren.</translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/songs/songsplugin.py" line="141"/> <location filename="openlp/plugins/songs/songsplugin.py" line="140"/>
<source>Reindexing songs...</source> <source>Reindexing songs...</source>
<translation>Liederen her-indexeren...</translation> <translation>Liederen her-indexeren...</translation>
</message> </message>
<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> <source>Add a new Song</source>
<translation>Voeg nieuw lied toe</translation> <translation>Voeg nieuw lied toe</translation>
</message> </message>
<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> <source>Edit the selected Song</source>
<translation>Bewerk geselecteerde lied</translation> <translation>Bewerk geselecteerde lied</translation>
</message> </message>
<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> <source>Delete the selected Song</source>
<translation>Verwijder geselecteerde lied</translation> <translation>Verwijder geselecteerde lied</translation>
</message> </message>
<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> <source>Preview the selected Song</source>
<translation>Toon voorbeeld geselecteerd lied</translation> <translation>Toon voorbeeld geselecteerd lied</translation>
</message> </message>
<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> <source>Send the selected Song live</source>
<translation>Toon lied Live</translation> <translation>Toon lied Live</translation>
</message> </message>
<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> <source>Add the selected Song to the service</source>
<translation>Voeg geselecteerde lied toe aan de liturgie</translation> <translation>Voeg geselecteerde lied toe aan de liturgie</translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/songs/songsplugin.py" line="227"/> <location filename="openlp/plugins/songs/songsplugin.py" line="226"/>
<source>Song</source> <source>Song</source>
<comment>name singular</comment> <comment>name singular</comment>
<translation>Lied</translation> <translation>Lied</translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/songs/songsplugin.py" line="228"/> <location filename="openlp/plugins/songs/songsplugin.py" line="227"/>
<source>Songs</source> <source>Songs</source>
<comment>name plural</comment> <comment>name plural</comment>
<translation>Lieder</translation> <translation>Lieder</translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/songs/songsplugin.py" line="232"/> <location filename="openlp/plugins/songs/songsplugin.py" line="231"/>
<source>Songs</source> <source>Songs</source>
<comment>container title</comment> <comment>container title</comment>
<translation>Liederen</translation> <translation>Liederen</translation>
@ -4159,7 +4216,7 @@ een correcte weergave van lettertekens.
Meestal voldoet de suggestie van OpenLP.</translation> Meestal voldoet de suggestie van OpenLP.</translation>
</message> </message>
<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> <source>Exports songs using the export wizard.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -4615,12 +4672,12 @@ Meestal voldoet de suggestie van OpenLP.</translation>
<translation>Liedtekst</translation> <translation>Liedtekst</translation>
</message> </message>
<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> <source>Delete Song(s)?</source>
<translation type="unfinished">Delete Song(s)?</translation> <translation type="unfinished">Delete Song(s)?</translation>
</message> </message>
<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> <source>CCLI License: </source>
<translation>CCLI Licentie: </translation> <translation>CCLI Licentie: </translation>
</message> </message>
@ -4630,7 +4687,7 @@ Meestal voldoet de suggestie van OpenLP.</translation>
<translation>Gehele lied</translation> <translation>Gehele lied</translation>
</message> </message>
<message numerus="yes"> <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> <source>Are you sure you want to delete the %n selected song(s)?</source>
<translation> <translation>
<numerusform>Weet u zeker dat u deze %n lied(eren) wilt verwijderen?</numerusform> <numerusform>Weet u zeker dat u deze %n lied(eren) wilt verwijderen?</numerusform>

View File

@ -212,7 +212,7 @@ Você gostaria de continuar de qualquer maneira?</translation>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>You cannot combine single and dual Bible verse search results. Do you want to delete your search results and start a new search?</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -841,59 +841,59 @@ com o uso, portanto uma conexão com a internet é necessária.</translation>
<context> <context>
<name>ImagePlugin</name> <name>ImagePlugin</name>
<message> <message>
<location filename="openlp/plugins/images/imageplugin.py" line="45"/> <location filename="openlp/plugins/images/imageplugin.py" line="44"/>
<source>&lt;strong&gt;Image Plugin&lt;/strong&gt;&lt;br /&gt;The image plugin provides displaying of images.&lt;br /&gt;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&apos;s &quot;timed looping&quot; 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&apos;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> <source>&lt;strong&gt;Image Plugin&lt;/strong&gt;&lt;br /&gt;The image plugin provides displaying of images.&lt;br /&gt;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&apos;s &quot;timed looping&quot; 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&apos;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>&lt;strong&gt;Plugin de Imagens&lt;/strong&gt;&lt;br /&gt;O plugin de imagens fornece a exibição de imagens.&lt;br /&gt;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 &quot;loop temporizado&quot; 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> <translation>&lt;strong&gt;Plugin de Imagens&lt;/strong&gt;&lt;br /&gt;O plugin de imagens fornece a exibição de imagens.&lt;br /&gt;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 &quot;loop temporizado&quot; 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>
<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> <source>Load a new Image</source>
<translation>Carregar um nova Imagem</translation> <translation>Carregar um nova Imagem</translation>
</message> </message>
<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> <source>Add a new Image</source>
<translation>Adicionar uma nova Imagem</translation> <translation>Adicionar uma nova Imagem</translation>
</message> </message>
<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> <source>Edit the selected Image</source>
<translation>Editar a Imagem selecionada</translation> <translation>Editar a Imagem selecionada</translation>
</message> </message>
<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> <source>Delete the selected Image</source>
<translation>Excluir a Imagem selecionada</translation> <translation>Excluir a Imagem selecionada</translation>
</message> </message>
<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> <source>Preview the selected Image</source>
<translation>Visualizar a Imagem selecionada</translation> <translation>Visualizar a Imagem selecionada</translation>
</message> </message>
<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> <source>Send the selected Image live</source>
<translation>Projetar a Imagem selecionada</translation> <translation>Projetar a Imagem selecionada</translation>
</message> </message>
<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> <source>Add the selected Image to the service</source>
<translation>Adicionar Imagem selecionada à Lista de Exibição</translation> <translation>Adicionar Imagem selecionada à Lista de Exibição</translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/images/imageplugin.py" line="64"/> <location filename="openlp/plugins/images/imageplugin.py" line="63"/>
<source>Image</source> <source>Image</source>
<comment>name singular</comment> <comment>name singular</comment>
<translation>Imagem</translation> <translation>Imagem</translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/images/imageplugin.py" line="65"/> <location filename="openlp/plugins/images/imageplugin.py" line="64"/>
<source>Images</source> <source>Images</source>
<comment>name plural</comment> <comment>name plural</comment>
<translation type="unfinished">Imagens</translation> <translation type="unfinished">Imagens</translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/images/imageplugin.py" line="69"/> <location filename="openlp/plugins/images/imageplugin.py" line="68"/>
<source>Images</source> <source>Images</source>
<comment>container title</comment> <comment>container title</comment>
<translation>Imagens</translation> <translation>Imagens</translation>
@ -950,59 +950,59 @@ Deseja continuar adicionando as outras imagens?</translation>
<context> <context>
<name>MediaPlugin</name> <name>MediaPlugin</name>
<message> <message>
<location filename="openlp/plugins/media/mediaplugin.py" line="70"/> <location filename="openlp/plugins/media/mediaplugin.py" line="93"/>
<source>&lt;strong&gt;Media Plugin&lt;/strong&gt;&lt;br /&gt;The media plugin provides playback of audio and video.</source> <source>&lt;strong&gt;Media Plugin&lt;/strong&gt;&lt;br /&gt;The media plugin provides playback of audio and video.</source>
<translation>&lt;strong&gt;Plugin de Mídia&lt;/strong&gt;&lt;br /&gt;O plugin de mídia faz a reprodução de áudio e vídeo.</translation> <translation>&lt;strong&gt;Plugin de Mídia&lt;/strong&gt;&lt;br /&gt;O plugin de mídia faz a reprodução de áudio e vídeo.</translation>
</message> </message>
<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> <source>Load a new Media</source>
<translation>Carregar nova Mídia</translation> <translation>Carregar nova Mídia</translation>
</message> </message>
<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> <source>Add a new Media</source>
<translation>Adicionar nova Mídia</translation> <translation>Adicionar nova Mídia</translation>
</message> </message>
<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> <source>Edit the selected Media</source>
<translation>Editar Mídia selecionada</translation> <translation>Editar Mídia selecionada</translation>
</message> </message>
<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> <source>Delete the selected Media</source>
<translation>Excluir a Mídia selecionada</translation> <translation>Excluir a Mídia selecionada</translation>
</message> </message>
<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> <source>Preview the selected Media</source>
<translation>Pré-visualizar a Mídia selecionada</translation> <translation>Pré-visualizar a Mídia selecionada</translation>
</message> </message>
<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> <source>Send the selected Media live</source>
<translation>Projetar a Mídia selecionada</translation> <translation>Projetar a Mídia selecionada</translation>
</message> </message>
<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> <source>Add the selected Media to the service</source>
<translation>Adicionar a Mídia selecionada à Lista de Exibição</translation> <translation>Adicionar a Mídia selecionada à Lista de Exibição</translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/media/mediaplugin.py" line="80"/> <location filename="openlp/plugins/media/mediaplugin.py" line="103"/>
<source>Media</source> <source>Media</source>
<comment>name singular</comment> <comment>name singular</comment>
<translation type="unfinished">Mídia</translation> <translation type="unfinished">Mídia</translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/media/mediaplugin.py" line="81"/> <location filename="openlp/plugins/media/mediaplugin.py" line="104"/>
<source>Media</source> <source>Media</source>
<comment>name plural</comment> <comment>name plural</comment>
<translation type="unfinished">Mídia</translation> <translation type="unfinished">Mídia</translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/media/mediaplugin.py" line="85"/> <location filename="openlp/plugins/media/mediaplugin.py" line="108"/>
<source>Media</source> <source>Media</source>
<comment>container title</comment> <comment>container title</comment>
<translation>Mídia</translation> <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> <source> build %s</source>
<translation> compilação %s</translation> <translation> compilação %s</translation>
</message> </message>
<message>
<location filename="openlp/core/ui/aboutdialog.py" line="224"/>
<source>Copyright &#xa9; 2004-2011 Raoul Snyman
Portions copyright &#xa9; 2004-2011 Tim Bentley, Jonathan Corwin, Michael Gorven, Scott Guerrieri,
Meinert Jordan, Andreas Preikschat, Christian Richter, Philip
Ridout, Maikel Stuivenberg, Martin Thompson, Jon Tibble, 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> <message>
<location filename="openlp/core/ui/aboutdialog.py" line="231"/> <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> <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> He has set us free.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message>
<location filename="openlp/core/ui/aboutdialog.py" line="224"/>
<source>Copyright &#xa9; 2004-2011 Raoul Snyman
Portions copyright &#xa9; 2004-2011 Tim Bentley, Jonathan Corwin, Michael Gorven, Scott Guerrieri,
Meinert Jordan, Andreas Preikschat, Christian Richter, Philip
Ridout, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Carsten
Tinggaard, Frode Woldsund</source>
<translation type="unfinished"></translation>
</message>
</context> </context>
<context> <context>
<name>OpenLP.AdvancedTab</name> <name>OpenLP.AdvancedTab</name>
@ -1295,18 +1293,18 @@ Final Credit
</message> </message>
<message> <message>
<location filename="openlp/core/ui/displaytagdialog.py" line="145"/> <location filename="openlp/core/ui/displaytagdialog.py" line="145"/>
<source>Tag id</source> <source>Tag Id</source>
<translation>Id da Etiqueta</translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/displaytagdialog.py" line="147"/> <location filename="openlp/core/ui/displaytagdialog.py" line="147"/>
<source>Start Html</source> <source>Start HTML</source>
<translation>Html Inicial</translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/displaytagdialog.py" line="149"/> <location filename="openlp/core/ui/displaytagdialog.py" line="149"/>
<source>End Html</source> <source>End HTML</source>
<translation>Html Final</translation> <translation type="unfinished"></translation>
</message> </message>
</context> </context>
<context> <context>
@ -1472,151 +1470,200 @@ Agradecemos se for possível escrever seu relatório em inglês.</translation>
<context> <context>
<name>OpenLP.FirstTimeLanguageForm</name> <name>OpenLP.FirstTimeLanguageForm</name>
<message> <message>
<location filename="openlp/core/ui/firsttimelanguagedialog.py" line="60"/> <location filename="openlp/core/ui/firsttimelanguagedialog.py" line="61"/>
<source>Initial Set up Language</source> <source>Select Translation</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimelanguagedialog.py" line="62"/> <location filename="openlp/core/ui/firsttimelanguagedialog.py" line="63"/>
<source>Select the language you&apos;d like to use in OpenLP.</source> <source>Choose the translation you&apos;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> <translation type="unfinished"></translation>
</message> </message>
</context> </context>
<context> <context>
<name>OpenLP.FirstTimeWizard</name> <name>OpenLP.FirstTimeWizard</name>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="154"/> <location filename="openlp/core/ui/firsttimeform.py" line="61"/>
<source>Songs</source> <source>Downloading %s...</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>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimeform.py" line="67"/> <location filename="openlp/core/ui/firsttimeform.py" line="212"/>
<source>Downloading %s</source> <source>Download complete. Click the finish button to start OpenLP.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>First Time Wizard</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Welcome to the First Time Wizard</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="146"/> <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> <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> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Activate required Plugins</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Select the Plugins you wish to use. </source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Custom Text</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="157"/> <location filename="openlp/core/ui/firsttimewizard.py" line="210"/>
<source>Bible</source> <source>Bible</source>
<translation type="unfinished">Bíblia</translation> <translation type="unfinished">Bíblia</translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="158"/> <location filename="openlp/core/ui/firsttimewizard.py" line="211"/>
<source>Images</source> <source>Images</source>
<translation type="unfinished">Imagens</translation> <translation type="unfinished">Imagens</translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="160"/> <location filename="openlp/core/ui/firsttimewizard.py" line="213"/>
<source>Presentations</source> <source>Presentations</source>
<translation type="unfinished">Apresentações</translation> <translation type="unfinished">Apresentações</translation>
</message> </message>
<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> <source>Media (Audio and Video)</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Allow remote access</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Monitor Song Usage</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="168"/> <location filename="openlp/core/ui/firsttimewizard.py" line="221"/>
<source>Allow Alerts</source> <source>Allow Alerts</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="170"/> <location filename="openlp/core/ui/firsttimewizard.py" line="223"/>
<source>Download Samples from OpenLP.org</source> <source>No Internet Connection</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="172"/> <location filename="openlp/core/ui/firsttimewizard.py" line="225"/>
<source>Select samples to downlaod and install for use.</source> <source>Unable to detect an Internet connection.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="175"/> <location filename="openlp/core/ui/firsttimewizard.py" line="228"/>
<source>No Internet connection found so unable to download any default files.</source> <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> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="178"/> <location filename="openlp/core/ui/firsttimewizard.py" line="236"/>
<source>Download Example Files</source> <source>Sample Songs</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Default Settings</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="182"/> <location filename="openlp/core/ui/firsttimewizard.py" line="250"/>
<source>Set up default values to be used by OpenLP</source> <source>Set up default settings to be used by OpenLP.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="184"/> <location filename="openlp/core/ui/firsttimewizard.py" line="252"/>
<source>Default output display</source> <source>Setting Up And Importing</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="186"/> <location filename="openlp/core/ui/firsttimewizard.py" line="254"/>
<source>Select the default Theme</source> <source>Please wait while OpenLP is set up and your data is imported.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="188"/> <location filename="openlp/core/ui/firsttimewizard.py" line="256"/>
<source>Press finish to apply all your changes and start OpenLP</source> <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> <translation type="unfinished"></translation>
</message> </message>
</context> </context>
@ -1741,12 +1788,12 @@ Agradecemos se for possível escrever seu relatório em inglês.</translation>
<context> <context>
<name>OpenLP.LanguageManager</name> <name>OpenLP.LanguageManager</name>
<message> <message>
<location filename="openlp/core/utils/languagemanager.py" line="126"/> <location filename="openlp/core/utils/languagemanager.py" line="130"/>
<source>Language</source> <source>Language</source>
<translation>Idioma</translation> <translation>Idioma</translation>
</message> </message>
<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> <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> <translation>Por favor reinicie o OpenLP para usar a nova configuração de idioma.</translation>
</message> </message>
@ -2052,17 +2099,12 @@ Agradecemos se for possível escrever seu relatório em inglês.</translation>
<translation>&amp;Web Site</translation> <translation>&amp;Web Site</translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/mainwindow.py" line="428"/> <location filename="openlp/core/ui/mainwindow.py" line="434"/>
<source>&amp;Auto Detect</source>
<translation>&amp;Auto-detectar</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="430"/>
<source>Use the system language, if available.</source> <source>Use the system language, if available.</source>
<translation>Usar o idioma do sistema, caso disponível.</translation> <translation>Usar o idioma do sistema, caso disponível.</translation>
</message> </message>
<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> <source>Set the interface language to %s</source>
<translation>Definir o idioma da interface como %s</translation> <translation>Definir o idioma da interface como %s</translation>
</message> </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> <translation>Configurar o modo de visualização como Projeção.</translation>
</message> </message>
<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). <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> 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> Voce pode baixar a versão mais nova em http://openlp.org/.</translation>
</message> </message>
<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> <source>OpenLP Version Updated</source>
<translation>Versão do OpenLP Atualizada</translation> <translation>Versão do OpenLP Atualizada</translation>
</message> </message>
<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> <source>OpenLP Main Display Blanked</source>
<translation>Tela Principal do OpenLP em Branco</translation> <translation>Tela Principal do OpenLP em Branco</translation>
</message> </message>
<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> <source>The Main Display has been blanked out</source>
<translation>A Tela Principal foi apagada</translation> <translation>A Tela Principal foi apagada</translation>
</message> </message>
<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> <source>Default Theme: %s</source>
<translation>Tema padrão: %s</translation> <translation>Tema padrão: %s</translation>
</message> </message>
@ -2147,12 +2189,12 @@ Voce pode baixar a versão mais nova em http://openlp.org/.</translation>
<translation>Configurar &amp;Atalhos...</translation> <translation>Configurar &amp;Atalhos...</translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/mainwindow.py" line="817"/> <location filename="openlp/core/ui/mainwindow.py" line="815"/>
<source>Close OpenLP</source> <source>Close OpenLP</source>
<translation>Fechar o OpenLP</translation> <translation>Fechar o OpenLP</translation>
</message> </message>
<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> <source>Are you sure you want to close OpenLP?</source>
<translation>Você tem certeza de que quer fechar o OpenLP?</translation> <translation>Você tem certeza de que quer fechar o OpenLP?</translation>
</message> </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> <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> <translation>Abrir a pasta na qual músicas, Bíblias e outros arquivos são armazenados.</translation>
</message> </message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="432"/>
<source>&amp;Autodetect</source>
<translation type="unfinished"></translation>
</message>
</context> </context>
<context> <context>
<name>OpenLP.MediaManagerItem</name> <name>OpenLP.MediaManagerItem</name>
<message> <message>
<location filename="openlp/core/lib/__init__.py" line="287"/> <location filename="openlp/core/lib/__init__.py" line="286"/>
<source>No Items Selected</source> <source>No Items Selected</source>
<translation>Nenhum Item Selecionado</translation> <translation>Nenhum Item Selecionado</translation>
</message> </message>
@ -2463,29 +2510,29 @@ Voce pode baixar a versão mais nova em http://openlp.org/.</translation>
<translation>&amp;Alterar Tema do Item</translation> <translation>&amp;Alterar Tema do Item</translation>
</message> </message>
<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. <source>File is not a valid service.
The content encoding is not UTF-8.</source> The content encoding is not UTF-8.</source>
<translation>O arquivo não é uma lista válida. <translation>O arquivo não é uma lista válida.
A codificação do conteúdo não é UTF-8.</translation> A codificação do conteúdo não é UTF-8.</translation>
</message> </message>
<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> <source>File is not a valid service.</source>
<translation>Arquivo não é uma Lista de Exibição válida.</translation> <translation>Arquivo não é uma Lista de Exibição válida.</translation>
</message> </message>
<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> <source>Missing Display Handler</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Your item cannot be displayed as there is no handler to display it</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <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> <translation>O item não pode ser exibido porque o plugin necessário para visualizá-lo está faltando ou está inativo</translation>
</message> </message>
@ -2515,7 +2562,7 @@ A codificação do conteúdo não é UTF-8.</translation>
<translation>Abrir Arquivo</translation> <translation>Abrir Arquivo</translation>
</message> </message>
<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> <source>OpenLP Service Files (*.osz)</source>
<translation>Listas de Exibição do OpenLP (*.osz)</translation> <translation>Listas de Exibição do OpenLP (*.osz)</translation>
</message> </message>
@ -3997,17 +4044,17 @@ A codificação do conteúdo não é UTF-8.</translation>
<translation>Local do arquivo de saída</translation> <translation>Local do arquivo de saída</translation>
</message> </message>
<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> <source>usage_detail_%s_%s.txt</source>
<translation>detalhe_uso_%s_%s.txt</translation> <translation>detalhe_uso_%s_%s.txt</translation>
</message> </message>
<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> <source>Report Creation</source>
<translation>Criação de Relatório</translation> <translation>Criação de Relatório</translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="114"/> <location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="123"/>
<source>Report <source>Report
%s %s
has been successfully created. </source> has been successfully created. </source>
@ -4015,83 +4062,93 @@ has been successfully created. </source>
%s %s
foi criado com sucesso. </translation> foi criado com sucesso. </translation>
</message> </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>
<context> <context>
<name>SongsPlugin</name> <name>SongsPlugin</name>
<message> <message>
<location filename="openlp/plugins/songs/songsplugin.py" line="104"/> <location filename="openlp/plugins/songs/songsplugin.py" line="103"/>
<source>&amp;Song</source> <source>&amp;Song</source>
<translation>&amp;Música</translation> <translation>&amp;Música</translation>
</message> </message>
<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> <source>Import songs using the import wizard.</source>
<translation>Importar músicas com o assistente de importação.</translation> <translation>Importar músicas com o assistente de importação.</translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/songs/songsplugin.py" line="183"/> <location filename="openlp/plugins/songs/songsplugin.py" line="182"/>
<source>&lt;strong&gt;Songs Plugin&lt;/strong&gt;&lt;br /&gt;The songs plugin provides the ability to display and manage songs.</source> <source>&lt;strong&gt;Songs Plugin&lt;/strong&gt;&lt;br /&gt;The songs plugin provides the ability to display and manage songs.</source>
<translation>&lt;strong&gt;Plugin de Músicas&lt;/strong&gt;&lt;br /&gt;O plugin de músicas provê a habilidade de exibir e gerenciar músicas.</translation> <translation>&lt;strong&gt;Plugin de Músicas&lt;/strong&gt;&lt;br /&gt;O plugin de músicas provê a habilidade de exibir e gerenciar músicas.</translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/songs/songsplugin.py" line="126"/> <location filename="openlp/plugins/songs/songsplugin.py" line="125"/>
<source>&amp;Re-index Songs</source> <source>&amp;Re-index Songs</source>
<translation>&amp;Re-indexar Músicas</translation> <translation>&amp;Re-indexar Músicas</translation>
</message> </message>
<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> <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> <translation>Re-indexar o banco de dados de músicas para melhorar a busca e a ordenação.</translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/songs/songsplugin.py" line="141"/> <location filename="openlp/plugins/songs/songsplugin.py" line="140"/>
<source>Reindexing songs...</source> <source>Reindexing songs...</source>
<translation>Reindexando músicas...</translation> <translation>Reindexando músicas...</translation>
</message> </message>
<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> <source>Add a new Song</source>
<translation>Adicionar uma nova Música</translation> <translation>Adicionar uma nova Música</translation>
</message> </message>
<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> <source>Edit the selected Song</source>
<translation>Editar a Música selecioanda</translation> <translation>Editar a Música selecioanda</translation>
</message> </message>
<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> <source>Delete the selected Song</source>
<translation>Apagar a Música selecionada</translation> <translation>Apagar a Música selecionada</translation>
</message> </message>
<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> <source>Preview the selected Song</source>
<translation>Pré-visualizar a Música selecionada</translation> <translation>Pré-visualizar a Música selecionada</translation>
</message> </message>
<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> <source>Send the selected Song live</source>
<translation>Projetar a Música selecionada</translation> <translation>Projetar a Música selecionada</translation>
</message> </message>
<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> <source>Add the selected Song to the service</source>
<translation>Adicionar a Música selecionada à Lista de Exibição</translation> <translation>Adicionar a Música selecionada à Lista de Exibição</translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/songs/songsplugin.py" line="227"/> <location filename="openlp/plugins/songs/songsplugin.py" line="226"/>
<source>Song</source> <source>Song</source>
<comment>name singular</comment> <comment>name singular</comment>
<translation>Música</translation> <translation>Música</translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/songs/songsplugin.py" line="228"/> <location filename="openlp/plugins/songs/songsplugin.py" line="227"/>
<source>Songs</source> <source>Songs</source>
<comment>name plural</comment> <comment>name plural</comment>
<translation type="unfinished">Músicas</translation> <translation type="unfinished">Músicas</translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/songs/songsplugin.py" line="232"/> <location filename="openlp/plugins/songs/songsplugin.py" line="231"/>
<source>Songs</source> <source>Songs</source>
<comment>container title</comment> <comment>container title</comment>
<translation>Músicas</translation> <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> A codificação é responsável pela correta representação dos caracteres.</translation>
</message> </message>
<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> <source>Exports songs using the export wizard.</source>
<translation>Exportar músicas utilizando o assistente.</translation> <translation>Exportar músicas utilizando o assistente.</translation>
</message> </message>
@ -4644,12 +4701,12 @@ A codificação é responsável pela correta representação dos caracteres.</tr
<translation>Letra</translation> <translation>Letra</translation>
</message> </message>
<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> <source>Delete Song(s)?</source>
<translation>Apagar Música(s)?</translation> <translation>Apagar Música(s)?</translation>
</message> </message>
<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> <source>CCLI License: </source>
<translation>Licença CCLI:</translation> <translation>Licença CCLI:</translation>
</message> </message>
@ -4659,7 +4716,7 @@ A codificação é responsável pela correta representação dos caracteres.</tr
<translation>Música Inteira</translation> <translation>Música Inteira</translation>
</message> </message>
<message numerus="yes"> <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> <source>Are you sure you want to delete the %n selected song(s)?</source>
<translation> <translation>
<numerusform>Tem certeza de que quer apagar as %n música(s) selecionadas?</numerusform> <numerusform>Tem certeza de que quer apagar as %n música(s) selecionadas?</numerusform>

View File

@ -211,7 +211,7 @@ Do you want to continue anyway?</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>You cannot combine single and dual Bible verse search results. Do you want to delete your search results and start a new search?</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -831,60 +831,60 @@ demand and thus an internet connection is required.</source>
<context> <context>
<name>ImagePlugin</name> <name>ImagePlugin</name>
<message> <message>
<location filename="openlp/plugins/images/imageplugin.py" line="45"/> <location filename="openlp/plugins/images/imageplugin.py" line="44"/>
<source>&lt;strong&gt;Image Plugin&lt;/strong&gt;&lt;br /&gt;The image plugin provides displaying of images.&lt;br /&gt;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&apos;s &quot;timed looping&quot; 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&apos;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> <source>&lt;strong&gt;Image Plugin&lt;/strong&gt;&lt;br /&gt;The image plugin provides displaying of images.&lt;br /&gt;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&apos;s &quot;timed looping&quot; 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&apos;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>&lt;strong&gt;Плагин Изображений&lt;/strong&gt;&lt;br /&gt;Плагин изображений позволяет отображать изображения.&lt;br /&gt;Одной из отличительных возможностей этого плагина является возможность группировать выбранные изображение в менеджере служения, что делает работу с большим количеством изображений более легкой. Этот плагин также позволяет использовать возможности &quot;временной петли&quot; OpenLP, чтобы создавать слайд-шоу, которые выполняются автоматически. В дополнение к этому, изображения из плагина могут быть использованы, чтобы заменить текущий фон, что позволяет отображать текстовые элементы, такие как песни, с выбранным изображением в качестве фона, вместо фона, который указан в теме.</translation> <translation>&lt;strong&gt;Плагин Изображений&lt;/strong&gt;&lt;br /&gt;Плагин изображений позволяет отображать изображения.&lt;br /&gt;Одной из отличительных возможностей этого плагина является возможность группировать выбранные изображение в менеджере служения, что делает работу с большим количеством изображений более легкой. Этот плагин также позволяет использовать возможности &quot;временной петли&quot; OpenLP, чтобы создавать слайд-шоу, которые выполняются автоматически. В дополнение к этому, изображения из плагина могут быть использованы, чтобы заменить текущий фон, что позволяет отображать текстовые элементы, такие как песни, с выбранным изображением в качестве фона, вместо фона, который указан в теме.</translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/images/imageplugin.py" line="64"/> <location filename="openlp/plugins/images/imageplugin.py" line="63"/>
<source>Image</source> <source>Image</source>
<comment>name singular</comment> <comment>name singular</comment>
<translation>Изображение</translation> <translation>Изображение</translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/images/imageplugin.py" line="65"/> <location filename="openlp/plugins/images/imageplugin.py" line="64"/>
<source>Images</source> <source>Images</source>
<comment>name plural</comment> <comment>name plural</comment>
<translation>Изображения</translation> <translation>Изображения</translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/images/imageplugin.py" line="69"/> <location filename="openlp/plugins/images/imageplugin.py" line="68"/>
<source>Images</source> <source>Images</source>
<comment>container title</comment> <comment>container title</comment>
<translation>Изображения</translation> <translation>Изображения</translation>
</message> </message>
<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> <source>Load a new Image</source>
<translation>Загрузить новое Изображение</translation> <translation>Загрузить новое Изображение</translation>
</message> </message>
<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> <source>Add a new Image</source>
<translation>Добавить новое Изображение</translation> <translation>Добавить новое Изображение</translation>
</message> </message>
<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> <source>Edit the selected Image</source>
<translation>Изменить выбранное изображение</translation> <translation>Изменить выбранное изображение</translation>
</message> </message>
<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> <source>Delete the selected Image</source>
<translation>Удалить выбранное изображение</translation> <translation>Удалить выбранное изображение</translation>
</message> </message>
<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> <source>Preview the selected Image</source>
<translation>Просмотреть выбранное Изображение</translation> <translation>Просмотреть выбранное Изображение</translation>
</message> </message>
<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> <source>Send the selected Image live</source>
<translation>Послать выбранное Изображение на проектор</translation> <translation>Послать выбранное Изображение на проектор</translation>
</message> </message>
<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> <source>Add the selected Image to the service</source>
<translation>Добавить выбранное изображение к Служению</translation> <translation>Добавить выбранное изображение к Служению</translation>
</message> </message>
@ -940,60 +940,60 @@ Do you want to add the other images anyway?</source>
<context> <context>
<name>MediaPlugin</name> <name>MediaPlugin</name>
<message> <message>
<location filename="openlp/plugins/media/mediaplugin.py" line="70"/> <location filename="openlp/plugins/media/mediaplugin.py" line="93"/>
<source>&lt;strong&gt;Media Plugin&lt;/strong&gt;&lt;br /&gt;The media plugin provides playback of audio and video.</source> <source>&lt;strong&gt;Media Plugin&lt;/strong&gt;&lt;br /&gt;The media plugin provides playback of audio and video.</source>
<translation>&lt;strong&gt;Плагин Медиа&lt;/strong&gt;&lt;br /&gt;Плагин Медиа обеспечивает проигрывание аудио и видео файлов.</translation> <translation>&lt;strong&gt;Плагин Медиа&lt;/strong&gt;&lt;br /&gt;Плагин Медиа обеспечивает проигрывание аудио и видео файлов.</translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/media/mediaplugin.py" line="80"/> <location filename="openlp/plugins/media/mediaplugin.py" line="103"/>
<source>Media</source> <source>Media</source>
<comment>name singular</comment> <comment>name singular</comment>
<translation>Медиа</translation> <translation>Медиа</translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/media/mediaplugin.py" line="81"/> <location filename="openlp/plugins/media/mediaplugin.py" line="104"/>
<source>Media</source> <source>Media</source>
<comment>name plural</comment> <comment>name plural</comment>
<translation>Медиа</translation> <translation>Медиа</translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/media/mediaplugin.py" line="85"/> <location filename="openlp/plugins/media/mediaplugin.py" line="108"/>
<source>Media</source> <source>Media</source>
<comment>container title</comment> <comment>container title</comment>
<translation>Медиа</translation> <translation>Медиа</translation>
</message> </message>
<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> <source>Load a new Media</source>
<translation>Открыть новый медиафайл</translation> <translation>Открыть новый медиафайл</translation>
</message> </message>
<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> <source>Add a new Media</source>
<translation>Добавить новый медиафайл</translation> <translation>Добавить новый медиафайл</translation>
</message> </message>
<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> <source>Edit the selected Media</source>
<translation>Редактировать выбранный медиафайл</translation> <translation>Редактировать выбранный медиафайл</translation>
</message> </message>
<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> <source>Delete the selected Media</source>
<translation>Удалить выбранный медиафайл</translation> <translation>Удалить выбранный медиафайл</translation>
</message> </message>
<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> <source>Preview the selected Media</source>
<translation>Предпросмотр выбранного медиафайла</translation> <translation>Предпросмотр выбранного медиафайла</translation>
</message> </message>
<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> <source>Send the selected Media live</source>
<translation>Отправить выбранный медиафайл на проектор</translation> <translation>Отправить выбранный медиафайл на проектор</translation>
</message> </message>
<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> <source>Add the selected Media to the service</source>
<translation>Добавить выбранный медиафайл к служению</translation> <translation>Добавить выбранный медиафайл к служению</translation>
</message> </message>
@ -1090,14 +1090,6 @@ OpenLP is written and maintained by volunteers. If you would like to see more fr
<source> build %s</source> <source> build %s</source>
<translation> Билд %s</translation> <translation> Билд %s</translation>
</message> </message>
<message>
<location filename="openlp/core/ui/aboutdialog.py" line="224"/>
<source>Copyright &#xa9; 2004-2011 Raoul Snyman
Portions copyright &#xa9; 2004-2011 Tim Bentley, Jonathan Corwin, Michael Gorven, Scott Guerrieri,
Meinert Jordan, Andreas Preikschat, Christian Richter, Philip
Ridout, Maikel Stuivenberg, Martin Thompson, Jon Tibble, CarstennTinggaard, Frode Woldsund</source>
<translation type="unfinished"></translation>
</message>
<message> <message>
<location filename="openlp/core/ui/aboutdialog.py" line="231"/> <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> <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> He has set us free.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message>
<location filename="openlp/core/ui/aboutdialog.py" line="224"/>
<source>Copyright &#xa9; 2004-2011 Raoul Snyman
Portions copyright &#xa9; 2004-2011 Tim Bentley, Jonathan Corwin, Michael Gorven, Scott Guerrieri,
Meinert Jordan, Andreas Preikschat, Christian Richter, Philip
Ridout, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Carsten
Tinggaard, Frode Woldsund</source>
<translation type="unfinished"></translation>
</message>
</context> </context>
<context> <context>
<name>OpenLP.AdvancedTab</name> <name>OpenLP.AdvancedTab</name>
@ -1276,17 +1277,17 @@ Final Credit
</message> </message>
<message> <message>
<location filename="openlp/core/ui/displaytagdialog.py" line="145"/> <location filename="openlp/core/ui/displaytagdialog.py" line="145"/>
<source>Tag id</source> <source>Tag Id</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/displaytagdialog.py" line="147"/> <location filename="openlp/core/ui/displaytagdialog.py" line="147"/>
<source>Start Html</source> <source>Start HTML</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/displaytagdialog.py" line="149"/> <location filename="openlp/core/ui/displaytagdialog.py" line="149"/>
<source>End Html</source> <source>End HTML</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
</context> </context>
@ -1424,151 +1425,200 @@ Version: %s
<context> <context>
<name>OpenLP.FirstTimeLanguageForm</name> <name>OpenLP.FirstTimeLanguageForm</name>
<message> <message>
<location filename="openlp/core/ui/firsttimelanguagedialog.py" line="60"/> <location filename="openlp/core/ui/firsttimelanguagedialog.py" line="61"/>
<source>Initial Set up Language</source> <source>Select Translation</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimelanguagedialog.py" line="62"/> <location filename="openlp/core/ui/firsttimelanguagedialog.py" line="63"/>
<source>Select the language you&apos;d like to use in OpenLP.</source> <source>Choose the translation you&apos;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> <translation type="unfinished"></translation>
</message> </message>
</context> </context>
<context> <context>
<name>OpenLP.FirstTimeWizard</name> <name>OpenLP.FirstTimeWizard</name>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="154"/> <location filename="openlp/core/ui/firsttimeform.py" line="61"/>
<source>Songs</source> <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">Священное Писание</translation>
</message>
<message>
<location filename="openlp/core/ui/firsttimeform.py" line="64"/>
<source>Themes</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimeform.py" line="65"/> <location filename="openlp/core/ui/firsttimeform.py" line="212"/>
<source>Starting Updates</source> <source>Download complete. Click the finish button to start OpenLP.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimeform.py" line="67"/> <location filename="openlp/core/ui/firsttimeform.py" line="221"/>
<source>Downloading %s</source> <source>Enabling selected plugins...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>First Time Wizard</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Welcome to the First Time Wizard</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="146"/> <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> <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> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Activate required Plugins</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Select the Plugins you wish to use. </source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Custom Text</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="157"/> <location filename="openlp/core/ui/firsttimewizard.py" line="210"/>
<source>Bible</source> <source>Bible</source>
<translation type="unfinished">Библия</translation> <translation type="unfinished">Библия</translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="158"/> <location filename="openlp/core/ui/firsttimewizard.py" line="211"/>
<source>Images</source> <source>Images</source>
<translation type="unfinished">Изображения</translation> <translation type="unfinished">Изображения</translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="160"/> <location filename="openlp/core/ui/firsttimewizard.py" line="213"/>
<source>Presentations</source> <source>Presentations</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Media (Audio and Video)</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Allow remote access</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Monitor Song Usage</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="168"/> <location filename="openlp/core/ui/firsttimewizard.py" line="221"/>
<source>Allow Alerts</source> <source>Allow Alerts</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="170"/> <location filename="openlp/core/ui/firsttimewizard.py" line="223"/>
<source>Download Samples from OpenLP.org</source> <source>No Internet Connection</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="172"/> <location filename="openlp/core/ui/firsttimewizard.py" line="225"/>
<source>Select samples to downlaod and install for use.</source> <source>Unable to detect an Internet connection.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="175"/> <location filename="openlp/core/ui/firsttimewizard.py" line="228"/>
<source>No Internet connection found so unable to download any default files.</source> <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> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="178"/> <location filename="openlp/core/ui/firsttimewizard.py" line="236"/>
<source>Download Example Files</source> <source>Sample Songs</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Default Settings</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="182"/> <location filename="openlp/core/ui/firsttimewizard.py" line="250"/>
<source>Set up default values to be used by OpenLP</source> <source>Set up default settings to be used by OpenLP.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="184"/> <location filename="openlp/core/ui/firsttimewizard.py" line="252"/>
<source>Default output display</source> <source>Setting Up And Importing</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="186"/> <location filename="openlp/core/ui/firsttimewizard.py" line="254"/>
<source>Select the default Theme</source> <source>Please wait while OpenLP is set up and your data is imported.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="188"/> <location filename="openlp/core/ui/firsttimewizard.py" line="256"/>
<source>Press finish to apply all your changes and start OpenLP</source> <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> <translation type="unfinished"></translation>
</message> </message>
</context> </context>
@ -1693,12 +1743,12 @@ Version: %s
<context> <context>
<name>OpenLP.LanguageManager</name> <name>OpenLP.LanguageManager</name>
<message> <message>
<location filename="openlp/core/utils/languagemanager.py" line="126"/> <location filename="openlp/core/utils/languagemanager.py" line="130"/>
<source>Language</source> <source>Language</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Please restart OpenLP to use your new language setting.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -2019,17 +2069,12 @@ Version: %s
<translation>&amp;Веб-сайт</translation> <translation>&amp;Веб-сайт</translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/mainwindow.py" line="428"/> <location filename="openlp/core/ui/mainwindow.py" line="434"/>
<source>&amp;Auto Detect</source>
<translation>&amp;Автоопределение</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="430"/>
<source>Use the system language, if available.</source> <source>Use the system language, if available.</source>
<translation>Использовать системный язык, если доступно.</translation> <translation>Использовать системный язык, если доступно.</translation>
</message> </message>
<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> <source>Set the interface language to %s</source>
<translation>Изменить язык интерфеса на %s</translation> <translation>Изменить язык интерфеса на %s</translation>
</message> </message>
@ -2074,39 +2119,39 @@ Version: %s
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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). <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> You can download the latest version from http://openlp.org/.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>OpenLP Version Updated</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>OpenLP Main Display Blanked</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>The Main Display has been blanked out</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/mainwindow.py" line="817"/> <location filename="openlp/core/ui/mainwindow.py" line="815"/>
<source>Close OpenLP</source> <source>Close OpenLP</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Are you sure you want to close OpenLP?</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Default Theme: %s</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </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> <source>Open the folder where songs, bibles and other data resides.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="432"/>
<source>&amp;Autodetect</source>
<translation type="unfinished"></translation>
</message>
</context> </context>
<context> <context>
<name>OpenLP.MediaManagerItem</name> <name>OpenLP.MediaManagerItem</name>
<message> <message>
<location filename="openlp/core/lib/__init__.py" line="287"/> <location filename="openlp/core/lib/__init__.py" line="286"/>
<source>No Items Selected</source> <source>No Items Selected</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -2463,7 +2513,7 @@ You can download the latest version from http://openlp.org/.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>OpenLP Service Files (*.osz)</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -2473,28 +2523,28 @@ You can download the latest version from http://openlp.org/.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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. <source>File is not a valid service.
The content encoding is not UTF-8.</source> The content encoding is not UTF-8.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>File is not a valid service.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Missing Display Handler</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Your item cannot be displayed as there is no handler to display it</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Your item cannot be displayed as the plugin required to display it is missing or inactive</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -3945,22 +3995,32 @@ The content encoding is not UTF-8.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>usage_detail_%s_%s.txt</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Report Creation</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="114"/> <location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="123"/>
<source>Report <source>Report
%s %s
has been successfully created. </source> has been successfully created. </source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </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>
<context> <context>
<name>SongsPlugin</name> <name>SongsPlugin</name>
@ -4053,85 +4113,85 @@ The encoding is responsible for the correct character representation.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/songs/songsplugin.py" line="104"/> <location filename="openlp/plugins/songs/songsplugin.py" line="103"/>
<source>&amp;Song</source> <source>&amp;Song</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Import songs using the import wizard.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/songs/songsplugin.py" line="126"/> <location filename="openlp/plugins/songs/songsplugin.py" line="125"/>
<source>&amp;Re-index Songs</source> <source>&amp;Re-index Songs</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Re-index the songs database to improve searching and ordering.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/songs/songsplugin.py" line="141"/> <location filename="openlp/plugins/songs/songsplugin.py" line="140"/>
<source>Reindexing songs...</source> <source>Reindexing songs...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/songs/songsplugin.py" line="183"/> <location filename="openlp/plugins/songs/songsplugin.py" line="182"/>
<source>&lt;strong&gt;Songs Plugin&lt;/strong&gt;&lt;br /&gt;The songs plugin provides the ability to display and manage songs.</source> <source>&lt;strong&gt;Songs Plugin&lt;/strong&gt;&lt;br /&gt;The songs plugin provides the ability to display and manage songs.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/songs/songsplugin.py" line="227"/> <location filename="openlp/plugins/songs/songsplugin.py" line="226"/>
<source>Song</source> <source>Song</source>
<comment>name singular</comment> <comment>name singular</comment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/songs/songsplugin.py" line="228"/> <location filename="openlp/plugins/songs/songsplugin.py" line="227"/>
<source>Songs</source> <source>Songs</source>
<comment>name plural</comment> <comment>name plural</comment>
<translation type="unfinished">Псалмы</translation> <translation type="unfinished">Псалмы</translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/songs/songsplugin.py" line="232"/> <location filename="openlp/plugins/songs/songsplugin.py" line="231"/>
<source>Songs</source> <source>Songs</source>
<comment>container title</comment> <comment>container title</comment>
<translation>Псалмы</translation> <translation>Псалмы</translation>
</message> </message>
<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> <source>Add a new Song</source>
<translation>Добавить новый Псалом</translation> <translation>Добавить новый Псалом</translation>
</message> </message>
<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> <source>Edit the selected Song</source>
<translation>Редактировать выбранный Псалом</translation> <translation>Редактировать выбранный Псалом</translation>
</message> </message>
<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> <source>Delete the selected Song</source>
<translation>Удалить выбранный Псалом</translation> <translation>Удалить выбранный Псалом</translation>
</message> </message>
<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> <source>Preview the selected Song</source>
<translation>Прсомотреть выбранный Псалом</translation> <translation>Прсомотреть выбранный Псалом</translation>
</message> </message>
<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> <source>Send the selected Song live</source>
<translation>Вывести выбранный псалом на Проектор</translation> <translation>Вывести выбранный псалом на Проектор</translation>
</message> </message>
<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> <source>Add the selected Song to the service</source>
<translation>Добавить выбранный Псалом к служению</translation> <translation>Добавить выбранный Псалом к служению</translation>
</message> </message>
<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> <source>Exports songs using the export wizard.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -4592,12 +4652,12 @@ The encoding is responsible for the correct character representation.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Delete Song(s)?</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message numerus="yes"> <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> <source>Are you sure you want to delete the %n selected song(s)?</source>
<translation type="unfinished"> <translation type="unfinished">
<numerusform></numerusform> <numerusform></numerusform>
@ -4606,7 +4666,7 @@ The encoding is responsible for the correct character representation.</source>
</translation> </translation>
</message> </message>
<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> <source>CCLI License: </source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>

View File

@ -211,7 +211,7 @@ Do you want to continue anyway?</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>You cannot combine single and dual Bible verse search results. Do you want to delete your search results and start a new search?</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -832,59 +832,59 @@ demand and thus an internet connection is required.</source>
<context> <context>
<name>ImagePlugin</name> <name>ImagePlugin</name>
<message> <message>
<location filename="openlp/plugins/images/imageplugin.py" line="45"/> <location filename="openlp/plugins/images/imageplugin.py" line="44"/>
<source>&lt;strong&gt;Image Plugin&lt;/strong&gt;&lt;br /&gt;The image plugin provides displaying of images.&lt;br /&gt;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&apos;s &quot;timed looping&quot; 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&apos;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> <source>&lt;strong&gt;Image Plugin&lt;/strong&gt;&lt;br /&gt;The image plugin provides displaying of images.&lt;br /&gt;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&apos;s &quot;timed looping&quot; 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&apos;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> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Load a new Image</source>
<translation>Ladda en ny bild</translation> <translation>Ladda en ny bild</translation>
</message> </message>
<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> <source>Add a new Image</source>
<translation>Lägg till en ny bild</translation> <translation>Lägg till en ny bild</translation>
</message> </message>
<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> <source>Edit the selected Image</source>
<translation>Redigera vald bild</translation> <translation>Redigera vald bild</translation>
</message> </message>
<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> <source>Delete the selected Image</source>
<translation>Ta bort vald bild</translation> <translation>Ta bort vald bild</translation>
</message> </message>
<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> <source>Preview the selected Image</source>
<translation>Förhandsgranska vald bild</translation> <translation>Förhandsgranska vald bild</translation>
</message> </message>
<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> <source>Send the selected Image live</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Add the selected Image to the service</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/images/imageplugin.py" line="64"/> <location filename="openlp/plugins/images/imageplugin.py" line="63"/>
<source>Image</source> <source>Image</source>
<comment>name singular</comment> <comment>name singular</comment>
<translation type="unfinished">Bild</translation> <translation type="unfinished">Bild</translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/images/imageplugin.py" line="65"/> <location filename="openlp/plugins/images/imageplugin.py" line="64"/>
<source>Images</source> <source>Images</source>
<comment>name plural</comment> <comment>name plural</comment>
<translation type="unfinished">Bilder</translation> <translation type="unfinished">Bilder</translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/images/imageplugin.py" line="69"/> <location filename="openlp/plugins/images/imageplugin.py" line="68"/>
<source>Images</source> <source>Images</source>
<comment>container title</comment> <comment>container title</comment>
<translation>Bilder</translation> <translation>Bilder</translation>
@ -941,59 +941,59 @@ Vill du lägga till dom andra bilderna ändå?</translation>
<context> <context>
<name>MediaPlugin</name> <name>MediaPlugin</name>
<message> <message>
<location filename="openlp/plugins/media/mediaplugin.py" line="70"/> <location filename="openlp/plugins/media/mediaplugin.py" line="93"/>
<source>&lt;strong&gt;Media Plugin&lt;/strong&gt;&lt;br /&gt;The media plugin provides playback of audio and video.</source> <source>&lt;strong&gt;Media Plugin&lt;/strong&gt;&lt;br /&gt;The media plugin provides playback of audio and video.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Load a new Media</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Add a new Media</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Edit the selected Media</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Delete the selected Media</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Preview the selected Media</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Send the selected Media live</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Add the selected Media to the service</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/media/mediaplugin.py" line="80"/> <location filename="openlp/plugins/media/mediaplugin.py" line="103"/>
<source>Media</source> <source>Media</source>
<comment>name singular</comment> <comment>name singular</comment>
<translation type="unfinished">Media</translation> <translation type="unfinished">Media</translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/media/mediaplugin.py" line="81"/> <location filename="openlp/plugins/media/mediaplugin.py" line="104"/>
<source>Media</source> <source>Media</source>
<comment>name plural</comment> <comment>name plural</comment>
<translation type="unfinished">Media</translation> <translation type="unfinished">Media</translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/media/mediaplugin.py" line="85"/> <location filename="openlp/plugins/media/mediaplugin.py" line="108"/>
<source>Media</source> <source>Media</source>
<comment>container title</comment> <comment>container title</comment>
<translation type="unfinished">Media</translation> <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> <source> build %s</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message>
<location filename="openlp/core/ui/aboutdialog.py" line="224"/>
<source>Copyright &#xa9; 2004-2011 Raoul Snyman
Portions copyright &#xa9; 2004-2011 Tim Bentley, Jonathan Corwin, Michael Gorven, Scott Guerrieri,
Meinert Jordan, Andreas Preikschat, Christian Richter, Philip
Ridout, Maikel Stuivenberg, Martin Thompson, Jon Tibble, CarstennTinggaard, Frode Woldsund</source>
<translation type="unfinished"></translation>
</message>
<message> <message>
<location filename="openlp/core/ui/aboutdialog.py" line="231"/> <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> <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> He has set us free.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message>
<location filename="openlp/core/ui/aboutdialog.py" line="224"/>
<source>Copyright &#xa9; 2004-2011 Raoul Snyman
Portions copyright &#xa9; 2004-2011 Tim Bentley, Jonathan Corwin, Michael Gorven, Scott Guerrieri,
Meinert Jordan, Andreas Preikschat, Christian Richter, Philip
Ridout, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Carsten
Tinggaard, Frode Woldsund</source>
<translation type="unfinished"></translation>
</message>
</context> </context>
<context> <context>
<name>OpenLP.AdvancedTab</name> <name>OpenLP.AdvancedTab</name>
@ -1277,17 +1278,17 @@ Final Credit
</message> </message>
<message> <message>
<location filename="openlp/core/ui/displaytagdialog.py" line="145"/> <location filename="openlp/core/ui/displaytagdialog.py" line="145"/>
<source>Tag id</source> <source>Tag Id</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/displaytagdialog.py" line="147"/> <location filename="openlp/core/ui/displaytagdialog.py" line="147"/>
<source>Start Html</source> <source>Start HTML</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/displaytagdialog.py" line="149"/> <location filename="openlp/core/ui/displaytagdialog.py" line="149"/>
<source>End Html</source> <source>End HTML</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
</context> </context>
@ -1425,151 +1426,200 @@ Version: %s
<context> <context>
<name>OpenLP.FirstTimeLanguageForm</name> <name>OpenLP.FirstTimeLanguageForm</name>
<message> <message>
<location filename="openlp/core/ui/firsttimelanguagedialog.py" line="60"/> <location filename="openlp/core/ui/firsttimelanguagedialog.py" line="61"/>
<source>Initial Set up Language</source> <source>Select Translation</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimelanguagedialog.py" line="62"/> <location filename="openlp/core/ui/firsttimelanguagedialog.py" line="63"/>
<source>Select the language you&apos;d like to use in OpenLP.</source> <source>Choose the translation you&apos;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> <translation type="unfinished"></translation>
</message> </message>
</context> </context>
<context> <context>
<name>OpenLP.FirstTimeWizard</name> <name>OpenLP.FirstTimeWizard</name>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="154"/> <location filename="openlp/core/ui/firsttimeform.py" line="61"/>
<source>Songs</source> <source>Downloading %s...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimeform.py" line="63"/> <location filename="openlp/core/ui/firsttimeform.py" line="212"/>
<source>Bibles</source> <source>Download complete. Click the finish button to start OpenLP.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimeform.py" line="64"/> <location filename="openlp/core/ui/firsttimeform.py" line="221"/>
<source>Themes</source> <source>Enabling selected plugins...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimeform.py" line="65"/> <location filename="openlp/core/ui/firsttimeform.py" line="244"/>
<source>Starting Updates</source> <source>Overwrite Existing Songs?</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimeform.py" line="67"/> <location filename="openlp/core/ui/firsttimeform.py" line="244"/>
<source>Downloading %s</source> <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> <translation type="unfinished"></translation>
</message> </message>
<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> <source>First Time Wizard</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Welcome to the First Time Wizard</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="146"/> <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> <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> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Activate required Plugins</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Select the Plugins you wish to use. </source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Custom Text</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="157"/> <location filename="openlp/core/ui/firsttimewizard.py" line="210"/>
<source>Bible</source> <source>Bible</source>
<translation type="unfinished">Bibel</translation> <translation type="unfinished">Bibel</translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="158"/> <location filename="openlp/core/ui/firsttimewizard.py" line="211"/>
<source>Images</source> <source>Images</source>
<translation type="unfinished">Bilder</translation> <translation type="unfinished">Bilder</translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="160"/> <location filename="openlp/core/ui/firsttimewizard.py" line="213"/>
<source>Presentations</source> <source>Presentations</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Media (Audio and Video)</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Allow remote access</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Monitor Song Usage</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="168"/> <location filename="openlp/core/ui/firsttimewizard.py" line="221"/>
<source>Allow Alerts</source> <source>Allow Alerts</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="170"/> <location filename="openlp/core/ui/firsttimewizard.py" line="223"/>
<source>Download Samples from OpenLP.org</source> <source>No Internet Connection</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="172"/> <location filename="openlp/core/ui/firsttimewizard.py" line="225"/>
<source>Select samples to downlaod and install for use.</source> <source>Unable to detect an Internet connection.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="175"/> <location filename="openlp/core/ui/firsttimewizard.py" line="228"/>
<source>No Internet connection found so unable to download any default files.</source> <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> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="178"/> <location filename="openlp/core/ui/firsttimewizard.py" line="236"/>
<source>Download Example Files</source> <source>Sample Songs</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Default Settings</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="182"/> <location filename="openlp/core/ui/firsttimewizard.py" line="250"/>
<source>Set up default values to be used by OpenLP</source> <source>Set up default settings to be used by OpenLP.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="184"/> <location filename="openlp/core/ui/firsttimewizard.py" line="252"/>
<source>Default output display</source> <source>Setting Up And Importing</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="186"/> <location filename="openlp/core/ui/firsttimewizard.py" line="254"/>
<source>Select the default Theme</source> <source>Please wait while OpenLP is set up and your data is imported.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/firsttimewizard.py" line="188"/> <location filename="openlp/core/ui/firsttimewizard.py" line="256"/>
<source>Press finish to apply all your changes and start OpenLP</source> <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> <translation type="unfinished"></translation>
</message> </message>
</context> </context>
@ -1694,12 +1744,12 @@ Version: %s
<context> <context>
<name>OpenLP.LanguageManager</name> <name>OpenLP.LanguageManager</name>
<message> <message>
<location filename="openlp/core/utils/languagemanager.py" line="126"/> <location filename="openlp/core/utils/languagemanager.py" line="130"/>
<source>Language</source> <source>Language</source>
<translation>Språk</translation> <translation>Språk</translation>
</message> </message>
<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> <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> <translation>Vänligen starta om OpenLP för att aktivera dina nya språkinställningar.</translation>
</message> </message>
@ -2005,17 +2055,12 @@ Version: %s
<translation type="unfinished">&amp;Webbsida</translation> <translation type="unfinished">&amp;Webbsida</translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/mainwindow.py" line="428"/> <location filename="openlp/core/ui/mainwindow.py" line="434"/>
<source>&amp;Auto Detect</source>
<translation>Välj &amp;automatiskt</translation>
</message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="430"/>
<source>Use the system language, if available.</source> <source>Use the system language, if available.</source>
<translation>Använd systemspråket om möjligt.</translation> <translation>Använd systemspråket om möjligt.</translation>
</message> </message>
<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> <source>Set the interface language to %s</source>
<translation>Sätt användargränssnittets språk till %s</translation> <translation>Sätt användargränssnittets språk till %s</translation>
</message> </message>
@ -2060,29 +2105,29 @@ Version: %s
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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). <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> You can download the latest version from http://openlp.org/.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>OpenLP Version Updated</source>
<translation>OpenLP-versionen uppdaterad</translation> <translation>OpenLP-versionen uppdaterad</translation>
</message> </message>
<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> <source>OpenLP Main Display Blanked</source>
<translation>OpenLPs huvuddisplay rensad</translation> <translation>OpenLPs huvuddisplay rensad</translation>
</message> </message>
<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> <source>The Main Display has been blanked out</source>
<translation type="unfinished">Huvuddisplayen har rensats</translation> <translation type="unfinished">Huvuddisplayen har rensats</translation>
</message> </message>
<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> <source>Default Theme: %s</source>
<translation>Standardtema: %s</translation> <translation>Standardtema: %s</translation>
</message> </message>
@ -2098,12 +2143,12 @@ You can download the latest version from http://openlp.org/.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/core/ui/mainwindow.py" line="817"/> <location filename="openlp/core/ui/mainwindow.py" line="815"/>
<source>Close OpenLP</source> <source>Close OpenLP</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Are you sure you want to close OpenLP?</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -2132,11 +2177,16 @@ You can download the latest version from http://openlp.org/.</source>
<source>&amp;Configure Display Tags</source> <source>&amp;Configure Display Tags</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message>
<location filename="openlp/core/ui/mainwindow.py" line="432"/>
<source>&amp;Autodetect</source>
<translation type="unfinished"></translation>
</message>
</context> </context>
<context> <context>
<name>OpenLP.MediaManagerItem</name> <name>OpenLP.MediaManagerItem</name>
<message> <message>
<location filename="openlp/core/lib/__init__.py" line="287"/> <location filename="openlp/core/lib/__init__.py" line="286"/>
<source>No Items Selected</source> <source>No Items Selected</source>
<translation>Inget objekt valt</translation> <translation>Inget objekt valt</translation>
</message> </message>
@ -2414,28 +2464,28 @@ You can download the latest version from http://openlp.org/.</source>
<translation type="unfinished">&amp;Byt objektets tema</translation> <translation type="unfinished">&amp;Byt objektets tema</translation>
</message> </message>
<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. <source>File is not a valid service.
The content encoding is not UTF-8.</source> The content encoding is not UTF-8.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>File is not a valid service.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Missing Display Handler</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Your item cannot be displayed as there is no handler to display it</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Your item cannot be displayed as the plugin required to display it is missing or inactive</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -2465,7 +2515,7 @@ The content encoding is not UTF-8.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>OpenLP Service Files (*.osz)</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -3946,99 +3996,109 @@ The content encoding is not UTF-8.</source>
<translation type="unfinished">Utfil sökväg</translation> <translation type="unfinished">Utfil sökväg</translation>
</message> </message>
<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> <source>usage_detail_%s_%s.txt</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Report Creation</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="114"/> <location filename="openlp/plugins/songusage/forms/songusagedetailform.py" line="123"/>
<source>Report <source>Report
%s %s
has been successfully created. </source> has been successfully created. </source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </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>
<context> <context>
<name>SongsPlugin</name> <name>SongsPlugin</name>
<message> <message>
<location filename="openlp/plugins/songs/songsplugin.py" line="104"/> <location filename="openlp/plugins/songs/songsplugin.py" line="103"/>
<source>&amp;Song</source> <source>&amp;Song</source>
<translation>&amp;Sång</translation> <translation>&amp;Sång</translation>
</message> </message>
<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> <source>Import songs using the import wizard.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/songs/songsplugin.py" line="183"/> <location filename="openlp/plugins/songs/songsplugin.py" line="182"/>
<source>&lt;strong&gt;Songs Plugin&lt;/strong&gt;&lt;br /&gt;The songs plugin provides the ability to display and manage songs.</source> <source>&lt;strong&gt;Songs Plugin&lt;/strong&gt;&lt;br /&gt;The songs plugin provides the ability to display and manage songs.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/songs/songsplugin.py" line="126"/> <location filename="openlp/plugins/songs/songsplugin.py" line="125"/>
<source>&amp;Re-index Songs</source> <source>&amp;Re-index Songs</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Re-index the songs database to improve searching and ordering.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/songs/songsplugin.py" line="141"/> <location filename="openlp/plugins/songs/songsplugin.py" line="140"/>
<source>Reindexing songs...</source> <source>Reindexing songs...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Add a new Song</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Edit the selected Song</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Delete the selected Song</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Preview the selected Song</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Send the selected Song live</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Add the selected Song to the service</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/songs/songsplugin.py" line="227"/> <location filename="openlp/plugins/songs/songsplugin.py" line="226"/>
<source>Song</source> <source>Song</source>
<comment>name singular</comment> <comment>name singular</comment>
<translation type="unfinished">Sång</translation> <translation type="unfinished">Sång</translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/songs/songsplugin.py" line="228"/> <location filename="openlp/plugins/songs/songsplugin.py" line="227"/>
<source>Songs</source> <source>Songs</source>
<comment>name plural</comment> <comment>name plural</comment>
<translation type="unfinished">Sånger</translation> <translation type="unfinished">Sånger</translation>
</message> </message>
<message> <message>
<location filename="openlp/plugins/songs/songsplugin.py" line="232"/> <location filename="openlp/plugins/songs/songsplugin.py" line="231"/>
<source>Songs</source> <source>Songs</source>
<comment>container title</comment> <comment>container title</comment>
<translation type="unfinished">Sånger</translation> <translation type="unfinished">Sånger</translation>
@ -4132,7 +4192,7 @@ The encoding is responsible for the correct character representation.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>Exports songs using the export wizard.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -4588,12 +4648,12 @@ The encoding is responsible for the correct character representation.</source>
<translation type="unfinished">Sångtexter</translation> <translation type="unfinished">Sångtexter</translation>
</message> </message>
<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> <source>Delete Song(s)?</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<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> <source>CCLI License: </source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -4603,7 +4663,7 @@ The encoding is responsible for the correct character representation.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message numerus="yes"> <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> <source>Are you sure you want to delete the %n selected song(s)?</source>
<translation type="unfinished"> <translation type="unfinished">
<numerusform></numerusform> <numerusform></numerusform>

4929
resources/i18n/zh_CN.ts Normal file

File diff suppressed because it is too large Load Diff