diff --git a/MANIFEST.in b/MANIFEST.in
index 992685bcf..b51cd4c06 100644
--- a/MANIFEST.in
+++ b/MANIFEST.in
@@ -4,13 +4,10 @@ recursive-include openlp *.csv
recursive-include openlp *.html
recursive-include openlp *.js
recursive-include openlp *.css
-recursive-include openlp *.qm
recursive-include documentation *
-recursive-include resources/forms *
-recursive-include resources/i18n *
-recursive-include resources/images *
-recursive-include scripts *.py
-include resources/*.desktop
+recursive-include resources *
+recursive-include scripts *
include copyright.txt
include LICENSE
+include README.txt
include openlp/.version
diff --git a/openlp.pyw b/openlp.pyw
index 3dee7452b..416b2bb13 100755
--- a/openlp.pyw
+++ b/openlp.pyw
@@ -184,9 +184,8 @@ class OpenLP(QtGui.QApplication):
# make sure Qt really display the splash screen
self.processEvents()
# start the main app window
- self.appClipboard = self.clipboard()
- self.mainWindow = MainWindow(screens, app_version, self.appClipboard,
- has_run_wizard)
+ self.mainWindow = MainWindow(screens, app_version, self.clipboard(),
+ not has_run_wizard)
self.mainWindow.show()
if show_splash:
# now kill the splashscreen
diff --git a/openlp/core/lib/pluginmanager.py b/openlp/core/lib/pluginmanager.py
index d2b05ab7c..6085b0da3 100644
--- a/openlp/core/lib/pluginmanager.py
+++ b/openlp/core/lib/pluginmanager.py
@@ -49,16 +49,13 @@ class PluginManager(object):
``plugin_dir``
The directory to search for plugins.
"""
- log.info(u'Plugin manager initing')
+ log.info(u'Plugin manager Initialising')
if not plugin_dir in sys.path:
log.debug(u'Inserting %s into sys.path', plugin_dir)
sys.path.insert(0, plugin_dir)
self.basepath = os.path.abspath(plugin_dir)
log.debug(u'Base path %s ', self.basepath)
- self.plugin_helpers = []
self.plugins = []
- # this has to happen after the UI is sorted
- # self.find_plugins(plugin_dir)
log.info(u'Plugin manager Initialised')
def find_plugins(self, plugin_dir, plugin_helpers):
@@ -73,7 +70,7 @@ class PluginManager(object):
A list of helper objects to pass to the plugins.
"""
- self.plugin_helpers = plugin_helpers
+ log.info(u'Finding plugins')
startdepth = len(os.path.abspath(plugin_dir).split(os.sep))
log.debug(u'finding plugins in %s at depth %d',
unicode(plugin_dir), startdepth)
@@ -102,11 +99,11 @@ class PluginManager(object):
plugin_objects = []
for p in plugin_classes:
try:
- plugin = p(self.plugin_helpers)
- log.debug(u'Loaded plugin %s with helpers', unicode(p))
+ plugin = p(plugin_helpers)
+ log.debug(u'Loaded plugin %s', unicode(p))
plugin_objects.append(plugin)
except TypeError:
- log.exception(u'loaded plugin %s has no helpers', unicode(p))
+ log.exception(u'Failed to load plugin %s', unicode(p))
plugins_list = sorted(plugin_objects, self.order_by_weight)
for plugin in plugins_list:
if plugin.checkPreConditions():
@@ -203,6 +200,7 @@ class PluginManager(object):
Loop through all the plugins and give them an opportunity to
initialise themselves.
"""
+ log.info(u'Initialise Plugins - Started')
for plugin in self.plugins:
log.info(u'initialising plugins %s in a %s state'
% (plugin.name, plugin.isActive()))
@@ -211,6 +209,7 @@ class PluginManager(object):
log.info(u'Initialisation Complete for %s ' % plugin.name)
if not plugin.isActive():
plugin.removeToolboxItem()
+ log.info(u'Initialise Plugins - Finished')
def finalise_plugins(self):
"""
diff --git a/openlp/core/lib/serviceitem.py b/openlp/core/lib/serviceitem.py
index 2dd87f6f5..2d7f542d6 100644
--- a/openlp/core/lib/serviceitem.py
+++ b/openlp/core/lib/serviceitem.py
@@ -183,6 +183,10 @@ class ServiceItem(object):
else:
log.error(u'Invalid value renderer :%s' % self.service_item_type)
self.title = clean_tags(self.title)
+ # The footer should never be None, but to be compatible with older
+ # release of OpenLP, we have to correct this to avoid tracebacks.
+ if self.raw_footer is None:
+ self.raw_footer = []
self.foot_text = \
u'
'.join([footer for footer in self.raw_footer if footer])
diff --git a/openlp/core/lib/toolbar.py b/openlp/core/lib/toolbar.py
index 37fb67d52..1da68d72d 100644
--- a/openlp/core/lib/toolbar.py
+++ b/openlp/core/lib/toolbar.py
@@ -48,7 +48,7 @@ class OpenLPToolbar(QtGui.QToolBar):
self.icons = {}
self.setIconSize(QtCore.QSize(20, 20))
self.actions = {}
- log.debug(u'Init done')
+ log.debug(u'Init done for %s' % parent.__class__.__name__)
def addToolbarButton(self, title, icon, tooltip=None, slot=None,
checkable=False, shortcut=0, alternate=0,
diff --git a/openlp/core/ui/displaytagdialog.py b/openlp/core/ui/displaytagdialog.py
index 2b6441e16..6a1d8ca2c 100644
--- a/openlp/core/ui/displaytagdialog.py
+++ b/openlp/core/ui/displaytagdialog.py
@@ -143,11 +143,11 @@ class Ui_DisplayTagDialog(object):
self.tagTableWidget.horizontalHeaderItem(0).setText(
translate('OpenLP.DisplayTagDialog', 'Description'))
self.tagTableWidget.horizontalHeaderItem(1).setText(
- translate('OpenLP.DisplayTagDialog', 'Tag id'))
+ translate('OpenLP.DisplayTagDialog', 'Tag Id'))
self.tagTableWidget.horizontalHeaderItem(2).setText(
- translate('OpenLP.DisplayTagDialog', 'Start Html'))
+ translate('OpenLP.DisplayTagDialog', 'Start HTML'))
self.tagTableWidget.horizontalHeaderItem(3).setText(
- translate('OpenLP.DisplayTagDialog', 'End Html'))
+ translate('OpenLP.DisplayTagDialog', 'End HTML'))
self.tagTableWidget.setColumnWidth(0, 120)
self.tagTableWidget.setColumnWidth(1, 40)
self.tagTableWidget.setColumnWidth(2, 240)
diff --git a/openlp/core/ui/firsttimeform.py b/openlp/core/ui/firsttimeform.py
index 9f211e49e..b049e2ea7 100644
--- a/openlp/core/ui/firsttimeform.py
+++ b/openlp/core/ui/firsttimeform.py
@@ -178,8 +178,8 @@ class FirstTimeForm(QtGui.QWizard, Ui_FirstTimeWizard):
"""
Prepare the UI for the process.
"""
- # We start on 9 for the 9 plugins
- max_progress = 9
+ # We start on 2 for plugins status setting plus a "finished" point.
+ max_progress = 2
# Loop through the songs list and increase for each selected item
for i in xrange(self.songsListWidget.count()):
if self.songsListWidget.item(i).checkState() == QtCore.Qt.Checked:
@@ -209,6 +209,8 @@ class FirstTimeForm(QtGui.QWizard, Ui_FirstTimeWizard):
self.finishButton.setEnabled(True)
self.cancelButton.setVisible(False)
self.nextButton.setVisible(False)
+ self.progressLabel.setText(translate('OpenLP.FirstTimeWizard',
+ 'Download complete. Click the finish button to start OpenLP.'))
Receiver.send_message(u'openlp_process_events')
def _performWizard(self):
@@ -219,21 +221,13 @@ class FirstTimeForm(QtGui.QWizard, Ui_FirstTimeWizard):
self._incrementProgressBar(translate('OpenLP.FirstTimeWizard',
'Enabling selected plugins...'))
self._setPluginStatus(self.songsCheckBox, u'songs/status')
- self._incrementProgressBar(None)
self._setPluginStatus(self.bibleCheckBox, u'bibles/status')
- self._incrementProgressBar(None)
self._setPluginStatus(self.presentationCheckBox, u'presentations/status')
- self._incrementProgressBar(None)
self._setPluginStatus(self.imageCheckBox, u'images/status')
- self._incrementProgressBar(None)
self._setPluginStatus(self.mediaCheckBox, u'media/status')
- self._incrementProgressBar(None)
self._setPluginStatus(self.remoteCheckBox, u'remotes/status')
- self._incrementProgressBar(None)
self._setPluginStatus(self.customCheckBox, u'custom/status')
- self._incrementProgressBar(None)
self._setPluginStatus(self.songUsageCheckBox, u'songusage/status')
- self._incrementProgressBar(None)
self._setPluginStatus(self.alertCheckBox, u'alerts/status')
# Build directories for downloads
songs_destination = AppLocation.get_section_data_path(u'songs')
diff --git a/openlp/core/utils/__init__.py b/openlp/core/utils/__init__.py
index f3dacee88..381712977 100644
--- a/openlp/core/utils/__init__.py
+++ b/openlp/core/utils/__init__.py
@@ -35,6 +35,7 @@ import urllib2
from datetime import datetime
from PyQt4 import QtGui, QtCore
+
if sys.platform != u'win32' and sys.platform != u'darwin':
try:
from xdg import BaseDirectory
@@ -134,7 +135,7 @@ class AppLocation(object):
elif dir_type == AppLocation.LanguageDir:
app_path = _get_frozen_path(
os.path.abspath(os.path.split(sys.argv[0])[0]),
- os.path.split(openlp.__file__)[0])
+ _get_os_dir_path(dir_type))
return os.path.join(app_path, u'i18n')
else:
return _get_os_dir_path(dir_type)
@@ -169,15 +170,21 @@ def _get_os_dir_path(dir_type):
if dir_type == AppLocation.DataDir:
return os.path.join(unicode(os.getenv(u'APPDATA'), encoding),
u'openlp', u'data')
+ elif dir_type == AppLocation.LanguageDir:
+ return os.path.split(openlp.__file__)[0]
return os.path.join(unicode(os.getenv(u'APPDATA'), encoding),
u'openlp')
elif sys.platform == u'darwin':
if dir_type == AppLocation.DataDir:
return os.path.join(unicode(os.getenv(u'HOME'), encoding),
u'Library', u'Application Support', u'openlp', u'Data')
+ elif dir_type == AppLocation.LanguageDir:
+ return os.path.split(openlp.__file__)[0]
return os.path.join(unicode(os.getenv(u'HOME'), encoding),
u'Library', u'Application Support', u'openlp')
else:
+ if dir_type == AppLocation.LanguageDir:
+ return os.path.join(u'/usr', u'share', u'openlp')
if XDG_BASE_AVAILABLE:
if dir_type == AppLocation.ConfigDir:
return os.path.join(unicode(BaseDirectory.xdg_config_home,
diff --git a/openlp/core/utils/languagemanager.py b/openlp/core/utils/languagemanager.py
index 28a8b06f8..8e5ab1f54 100644
--- a/openlp/core/utils/languagemanager.py
+++ b/openlp/core/utils/languagemanager.py
@@ -63,6 +63,8 @@ class LanguageManager(object):
"""
Find all available language files in this OpenLP install
"""
+ log.debug(u'Translation files: %s', AppLocation.get_directory(
+ AppLocation.LanguageDir))
trans_dir = QtCore.QDir(AppLocation.get_directory(
AppLocation.LanguageDir))
file_names = trans_dir.entryList(QtCore.QStringList(u'*.qm'),
diff --git a/openlp/plugins/bibles/lib/manager.py b/openlp/plugins/bibles/lib/manager.py
index 46dc0ce3b..6a12c3877 100644
--- a/openlp/plugins/bibles/lib/manager.py
+++ b/openlp/plugins/bibles/lib/manager.py
@@ -25,15 +25,15 @@
###############################################################################
import logging
+import os
from PyQt4 import QtCore
from openlp.core.lib import Receiver, SettingsManager, translate
-from openlp.core.utils import AppLocation
+from openlp.core.utils import AppLocation, delete_file
from openlp.plugins.bibles.lib import parse_reference
from openlp.plugins.bibles.lib.db import BibleDB, BibleMeta, SpellingDB, \
- Spelling, BiblesResourcesDB
-
+ Spelling, BiblesResourcesDB
from csvbible import CSVBible
from http import HTTPBible
from opensong import OpenSongBible
@@ -146,6 +146,10 @@ class BibleManager(object):
for filename in files:
bible = BibleDB(self.parent, path=self.path, file=filename)
name = bible.get_name()
+ # Remove corrupted files.
+ if name is None:
+ delete_file(os.path.join(self.path, filename))
+ continue
log.debug(u'Bible Name: "%s"', name)
self.db_cache[name] = bible
# Look to see if lazy load bible exists and get create getter.
@@ -173,13 +177,6 @@ class BibleManager(object):
self.spelling_cache = {}
self.spelling_cache[u'spelling'] = SpellingDB(self.parent,
path=self.path)
- #db_spelling = self.spelling_cache[u'spelling'].get_book_reference_id(u'Markus', 40)
- #db_spelling = BiblesResourcesDB.get_spelling(u'1.Mose', 30)
- #db_spelling = BiblesResourcesDB.get_language(u'de')
- #db_spelling = BiblesResourcesDB.get_books()
- #db_spelling = BiblesResourcesDB.get_testament_reference()
- #db_spelling = self.spelling_cache[u'spelling'] .create_spelling(u'Johannes', 43, 40)
- #log.debug(u'Spellings: %s' % db_spelling)
log.debug(u'Spelling reloaded')
def set_process_dialog(self, wizard):
diff --git a/openlp/plugins/media/mediaplugin.py b/openlp/plugins/media/mediaplugin.py
index b1c1a2f3e..06936cd44 100644
--- a/openlp/plugins/media/mediaplugin.py
+++ b/openlp/plugins/media/mediaplugin.py
@@ -45,6 +45,18 @@ class MediaPlugin(Plugin):
self.icon = build_icon(self.icon_path)
# passed with drag and drop messages
self.dnd_id = u'Media'
+ self.additional_extensions = {
+ u'audio/ac3': [u'.ac3'],
+ u'audio/flac': [u'.flac'],
+ u'audio/x-m4a': [u'.m4a'],
+ u'audio/x-mp3': [u'.mp3'],
+ u'audio/mpeg': [u'.mp3', u'.mp2', u'.mpga', u'.mpega', u'.m4a'],
+ u'audio/qcelp': [u'.qcp'],
+ u'audio/x-wma': [u'.wma'],
+ u'audio/x-ms-wma': [u'.wma'],
+ u'video/x-matroska': [u'.mpv', u'.mkv'],
+ u'video/x-wmv': [u'.wmv'],
+ u'video/x-ms-wmv': [u'.wmv']}
self.audio_extensions_list = []
self.video_extensions_list = []
mimetypes.init()
@@ -65,6 +77,17 @@ class MediaPlugin(Plugin):
self.serviceManager.supportedSuffixes(extension[1:])
log.info(u'MediaPlugin: %s extensions: %s' % (mimetype,
u' '.join(extensions)))
+ # Add extensions for this mimetype from self.additional_extensions.
+ # This hack clears mimetypes' and operating system's shortcomings
+ # by providing possibly missing extensions.
+ if mimetype in self.additional_extensions.keys():
+ for extension in self.additional_extensions[mimetype]:
+ ext = u'*%s' % extension
+ if ext not in list:
+ list.append(ext)
+ self.serviceManager.supportedSuffixes(extension[1:])
+ log.info(u'MediaPlugin: %s additional extensions: %s' % (mimetype,
+ u' '.join(self.additional_extensions[mimetype])))
def about(self):
about_text = translate('MediaPlugin', 'Media Plugin'
diff --git a/openlp/plugins/songs/lib/db.py b/openlp/plugins/songs/lib/db.py
index a6255476a..b72517f70 100644
--- a/openlp/plugins/songs/lib/db.py
+++ b/openlp/plugins/songs/lib/db.py
@@ -256,7 +256,7 @@ def init_schema(url):
mapper(Song, songs_table,
properties={
'authors': relation(Author, backref='songs',
- secondary=authors_songs_table),
+ secondary=authors_songs_table, lazy=False),
'book': relation(Book, backref='songs'),
'media_files': relation(MediaFile, backref='songs',
secondary=media_files_songs_table),
diff --git a/openlp/plugins/songs/lib/mediaitem.py b/openlp/plugins/songs/lib/mediaitem.py
index 46c027316..feabc98b7 100644
--- a/openlp/plugins/songs/lib/mediaitem.py
+++ b/openlp/plugins/songs/lib/mediaitem.py
@@ -253,9 +253,9 @@ class SongMediaItem(MediaManagerItem):
if self.searchAsYouType:
search_length = 1
if self.searchTextEdit.currentSearchType() == SongSearch.Entire:
- search_length = 7
+ search_length = 4
elif self.searchTextEdit.currentSearchType() == SongSearch.Lyrics:
- search_length = 6
+ search_length = 3
if len(text) > search_length:
self.onSearchTextButtonClick()
elif len(text) == 0:
@@ -310,6 +310,7 @@ class SongMediaItem(MediaManagerItem):
item_id = (self.editItem.data(QtCore.Qt.UserRole)).toInt()[0]
self.edit_song_form.loadSong(item_id, False)
self.edit_song_form.exec_()
+ self.editItem = None
def onDeleteClick(self):
"""
diff --git a/openlp/plugins/songs/lib/xml.py b/openlp/plugins/songs/lib/xml.py
index bd22ea4b2..a59395d65 100644
--- a/openlp/plugins/songs/lib/xml.py
+++ b/openlp/plugins/songs/lib/xml.py
@@ -444,7 +444,6 @@ class OpenLyrics(object):
"""
sxml = SongXML()
search_text = u''
- temp_verse_order = []
for verse in lyrics.verse:
text = u''
for lines in verse.lines:
@@ -455,11 +454,10 @@ class OpenLyrics(object):
verse_type_index = VerseType.from_tag(verse_name[0])
verse_type = VerseType.Names[verse_type_index]
verse_number = re.compile(u'[a-zA-Z]*').sub(u'', verse_name)
- verse_part = re.compile(u'[0-9]*').sub(u'', verse_name[1:])
- # OpenLyrics allows e. g. "c", but we need "c1".
+ # OpenLyrics allows e. g. "c", but we need "c1". However, this does
+ # not correct the verse order.
if not verse_number:
verse_number = u'1'
- temp_verse_order.append((verse_type, verse_number, verse_part))
lang = None
if self._get(verse, u'lang'):
lang = self._get(verse, u'lang')
@@ -470,24 +468,6 @@ class OpenLyrics(object):
# Process verse order
if hasattr(properties, u'verseOrder'):
song.verse_order = self._text(properties.verseOrder)
- else:
- # We have to process the temp_verse_order, as the verseOrder
- # property is not present.
- previous_type = u''
- previous_number = u''
- previous_part = u''
- verse_order = []
- # Currently we do not support different "parts"!
- for name in temp_verse_order:
- if name[0] == previous_type:
- if name[1] != previous_number:
- verse_order.append(u''.join((name[0][0], name[1])))
- else:
- verse_order.append(u''.join((name[0][0], name[1])))
- previous_type = name[0]
- previous_number = name[1]
- previous_part = name[2]
- song.verse_order = u' '.join(verse_order)
def _process_songbooks(self, properties, song):
"""
diff --git a/openlp/plugins/songusage/forms/songusagedetailform.py b/openlp/plugins/songusage/forms/songusagedetailform.py
index ee37b2a9c..edfee3595 100644
--- a/openlp/plugins/songusage/forms/songusagedetailform.py
+++ b/openlp/plugins/songusage/forms/songusagedetailform.py
@@ -88,6 +88,15 @@ class SongUsageDetailForm(QtGui.QDialog, Ui_SongUsageDetailDialog):
"""
log.debug(u'accept')
path = unicode(self.fileLineEdit.text())
+ if path == u'':
+ Receiver.send_message(u'openlp_error_message', {
+ u'title': translate('SongUsagePlugin.SongUsageDetailForm',
+ 'Output Path Not Selected'),
+ u'message': unicode(translate(
+ 'SongUsagePlugin.SongUsageDetailForm', 'You have not set a '
+ 'valid output location for your song usage report. Please '
+ 'select an existing path on your computer.'))})
+ return
check_directory_exists(path)
filename = unicode(translate('SongUsagePlugin.SongUsageDetailForm',
'usage_detail_%s_%s.txt')) % (
diff --git a/resources/debian/Makefile b/resources/debian/Makefile
index fd19cffb7..1fe02b479 100644
--- a/resources/debian/Makefile
+++ b/resources/debian/Makefile
@@ -2,12 +2,16 @@
# -*- makefile -*-
build:
- mkdir -p openlp/i18n
+ mkdir -p resources/i18n/qm
for TSFILE in resources/i18n/*.ts; do\
- lrelease-qt4 $$TSFILE -qm openlp/i18n/`basename $$TSFILE .ts`.qm;\
+ lrelease-qt4 $$TSFILE -qm resources/i18n/qm/`basename $$TSFILE .ts`.qm;\
done
install:
+ mkdir -p $(DESTDIR)/usr/share/openlp/i18n
+ cd resources/i18n/qm && for QMFILE in*.qm; do\
+ mv $QMFILE $(DESTDIR)/usr/share/openlp/i18n;\
+ done
clean:
-
+ rm -fR resources/i18n/qm
diff --git a/resources/debian/debian/rules b/resources/debian/debian/rules
index 18a593660..c8fe91ecc 100755
--- a/resources/debian/debian/rules
+++ b/resources/debian/debian/rules
@@ -1,9 +1,9 @@
#!/usr/bin/make -f
-
+
DEB_PYTHON_SYSTEM := pysupport
DEB_MAKE_BUILD_TARGET := build
-DEB_MAKE_INSTALL_TARGET :=
-DEB_MAKE_CLEAN_TARGET :=
+DEB_MAKE_INSTALL_TARGET := install
+DEB_MAKE_CLEAN_TARGET := clean
include /usr/share/cdbs/1/rules/debhelper.mk
include /usr/share/cdbs/1/class/python-distutils.mk
@@ -14,8 +14,8 @@ binary-post-install/openlp::
mkdir -p debian/openlp/usr/share/icons/hicolor/$$SIZE/apps && \
cp resources/images/openlp-logo-$$SIZE.png debian/openlp/usr/share/icons/hicolor/$$SIZE/apps/openlp.png; \
done
-
+
mkdir -p debian/openlp/usr/share/icons/hicolor/scalable/apps && \
cp resources/images/openlp-logo.svg debian/openlp/usr/share/icons/hicolor/scalable/apps/openlp.svg
-
+
cd debian/openlp/usr/bin/ && mv openlp.pyw openlp
diff --git a/resources/i18n/af.ts b/resources/i18n/af.ts
index 17dd303f3..1b913d27f 100644
--- a/resources/i18n/af.ts
+++ b/resources/i18n/af.ts
@@ -212,7 +212,7 @@ Gaan steeds voort?
-
+
@@ -841,59 +841,59 @@ afgelaai word en dus word 'n Internet konneksie benodig.
ImagePlugin
-
+
<strong>Beeld Mini-program</strong><br/>Die beeld mini-program verskaf vertoning van beelde.<br/>Een van die onderskeidende kenmerke van hierdie mini-program is die vermoë om beelde te groepeer in die diensbestuurder wat dit maklik maak om verskeie beelde te vertoon. Die mini-program kan ook van OpenLP se "tydgebonde herhaling"-funksie gebruik maak om 'n automatiese skyfe-vertoning te verkry. Verder kan beelde van hierdie mini-program gebruik word om die huidige tema se agtergrond te vervang hoewel 'n tema sy eie agtergrond het.
-
+
Laai 'n nuwe Beeld
-
+
Voeg 'n nuwe Beeld by
-
+
Redigeer die geselekteerde Beeld
-
+
Wis die geselekteerde Beeld uit
-
+
Sien voorskou van die geselekteerde Beeld
-
+
Stuur die geselekteerde Beeld regstreeks
-
+
Voeg die geselekteerde Beeld by die diens
-
+
name singular
Beeld
-
+
name plural
Beelde
-
+
container title
Beelde
@@ -950,59 +950,59 @@ Voeg steeds die ander beelde by?
MediaPlugin
-
+
<strong>Media Mini-program</strong><br/>Die media mini-program verskaf speel funksies van audio en video.
-
+
Laai nuwe Media
-
+
Voeg nuwe Media by
-
+
Redigeer die geselekteerde Media
-
+
Wis die geselekteerde Media uit
-
+
Sien voorskou van die geselekteerde Media
-
+
Stuur die geselekteerde Media regstreeks
-
+
Voeg die geselekteerde Media by die diens
-
+
name singular
Media
-
+
name plural
Media
-
+
container title
Media
@@ -1106,17 +1106,6 @@ OpenLP is geskryf en word onderhou deur vrywilligers. As u graag wil sien dat me
bou %s
-
-
-
- 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
-
@@ -1192,6 +1181,15 @@ Final Credit
He has set us free.
+
+
+
+
+
OpenLP.AdvancedTab
@@ -1295,18 +1293,18 @@ Final Credit
-
- Etiket id
+
+
-
- Begin Html
+
+
-
- Eind-Html
+
+
@@ -1471,151 +1469,200 @@ Version: %s
OpenLP.FirstTimeLanguageForm
-
-
+
+
-
-
+
+
+
+
+
+
+
OpenLP.FirstTimeWizard
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
+
-
+
-
-
+
+
-
+
-
+
-
+
+
+
+
+
+
-
+
-
+
Beelde
-
+
-
+
-
+
-
+
-
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
+
+
+
+
+
+
+
+
+
+
@@ -1740,12 +1787,12 @@ Version: %s
OpenLP.LanguageManager
-
+
Taal
-
+
Herlaai asseblief OpenLP om die nuwe taal instelling te gebruik.
@@ -2051,17 +2098,12 @@ Version: %s
&Web Tuiste
-
-
- Verklik Outom&aties
-
-
-
+
Gebruik die sisteem se taal as dit beskikbaar is.
-
+
Verstel die koppelvlak taal na %s
@@ -2106,7 +2148,7 @@ Version: %s
Verstel die skou modus na Regstreeks.
-
+
@@ -2115,22 +2157,22 @@ You can download the latest version from http://openlp.org/.
Die nuutste weergawe kan afgelaai word vanaf http://openlp.org/.
-
+
OpenLP Weergawe is Opdateer
-
+
OpenLP Hoof Vertoning Blanko
-
+
Die Hoof Skerm is afgeskakel
-
+
Verstek Tema: %s
@@ -2146,12 +2188,12 @@ Die nuutste weergawe kan afgelaai word vanaf http://openlp.org/.
Konfigureer Kortpaaie
-
+
Mook OpenLP toe
-
+
Maak OpenLP sekerlik toe?
@@ -2180,11 +2222,16 @@ Die nuutste weergawe kan afgelaai word vanaf http://openlp.org/.
Konfigureer Vertoon Haakies
+
+
+
+
+
OpenLP.MediaManagerItem
-
+
Geen item geselekteer nie
@@ -2462,29 +2509,29 @@ Die nuutste weergawe kan afgelaai word vanaf http://openlp.org/.
&Verander Item Tema
-
+
Lêer is nie 'n geldige diens nie.
Die inhoud enkodering is nie UTF-8 nie.
-
+
Lêer is nie 'n geldige diens nie.
-
+
Vermisde Vertoon Hanteerder
-
+
Die item kan nie vertoon word nie omdat daar nie 'n hanteerder is om dit te vertoon nie
-
+
Die item kan nie vertoon word nie omdat die mini-program wat dit moet vertoon vermis of onaktief is
@@ -2514,7 +2561,7 @@ Die inhoud enkodering is nie UTF-8 nie.
Maak Lêer oop
-
+
OpenLP Diens Lêers (*.osz)
@@ -3996,17 +4043,17 @@ Die inhoud enkodering is nie UTF-8 nie.
Uitvoer Lêer Ligging
-
+
usage_detail_%s_%s.txt
-
+
Verslag Skepping
-
+
@@ -4014,83 +4061,93 @@ has been successfully created.
%s
was suksesvol geskep.
+
+
+
+
+
+
+
+
+
+
SongsPlugin
-
+
&Lied
-
+
Voer liedere in deur van die invoer helper gebruik te maak.
-
+
<strong>Liedere Mini-program</strong><br/>Die liedere mini-program verskaf die vermoë om liedere te vertoon en te bestuur.
-
+
He&r-indeks Liedere
-
+
Her-indeks die liedere databasis om lied-soektogte en organisering te verbeter.
-
+
Besig om liedere indek te herskep...
-
+
Voeg 'n nuwe Lied by
-
+
Redigeer die geselekteerde Lied
-
+
Wis die geselekteerde Lied uit
-
+
Skou die geselekteerde Lied
-
+
Stuur die geselekteerde Lied regstreeks
-
+
Voeg die geselekteerde Lied by die diens
-
+
name singular
Lied
-
+
name plural
Liedere
-
+
container title
Liedere
@@ -4188,7 +4245,7 @@ The encoding is responsible for the correct character representation.
Die enkodering is verantwoordelik vir die korrekte karrakter voorstelling.
-
+
Voer liedere uit deur gebruik te maak van die uitvoer gids.
@@ -4644,12 +4701,12 @@ Die enkodering is verantwoordelik vir die korrekte karrakter voorstelling.Lirieke
-
+
Wis Lied(ere) uit?
-
+
CCLI Lisensie:
@@ -4659,7 +4716,7 @@ Die enkodering is verantwoordelik vir die korrekte karrakter voorstelling.Volledige Lied
-
+
Wis regtig die %n geselekteerde lied(ere)?
diff --git a/resources/i18n/de.ts b/resources/i18n/de.ts
index 9b628a52d..8fa214d0a 100644
--- a/resources/i18n/de.ts
+++ b/resources/i18n/de.ts
@@ -211,7 +211,7 @@ Do you want to continue anyway?
-
+
@@ -834,60 +834,60 @@ Daher ist eine Verbindung zum Internet erforderlich.
ImagePlugin
-
+
<strong>Bilder Erweiterung</strong><br />Die Erweiterung Bilder ermöglicht die Anzeige von Bildern.<br />Eine der besonderen Eigenschaften dieser Erweiterung ist die Möglichkeit, in der Ablaufverwaltung, mehrere Bilder zu einer Gruppe zusammen zu fassen. Dies vereinfacht die die Anzeige mehrerer Bilder. Ebenso kann mit Hilfe der Zeitschleife, sehr einfach eine Diaschau erzeugt werden, welche dann automatisch abläuft. Des weiteren können mit dieser Erweiterung Bilder benutzt werden, um das Hintergrundbild des aktuellen Design zu ersetzen.
-
+
name singular
Bild
-
+
name plural
Bilder
-
+
container title
Bilder
-
+
-
+
Füge eine neues Bild hinzu
-
+
Bearbeite das ausgewählte Bild
-
+
Lösche da ausgewählte Bild
-
+
-
+
-
+
@@ -943,60 +943,60 @@ Wollen Sie die anderen Bilder trotzdem hinzufügen?
MediaPlugin
-
+
<strong>Erweiterung Medien</strong><br />Die Erweiterung Medien ermöglicht es Audio- und Videodateien abzuspielen.
-
+
name singular
Medien
-
+
name plural
Medien
-
+
container title
Medien
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -1099,14 +1099,6 @@ OpenLP wird von freiwiligen Helfern programmiert und gewartet. Wenn Sie sich meh
build %s
-
-
-
-
-
@@ -1182,6 +1174,15 @@ Final Credit
He has set us free.
+
+
+
+
+
OpenLP.AdvancedTab
@@ -1285,18 +1286,18 @@ Final Credit
-
- Tag ID
+
+
-
- Anfangs HTML
+
+
-
- End HTML
+
+
@@ -1435,151 +1436,200 @@ Version: %s
OpenLP.FirstTimeLanguageForm
-
-
+
+
-
-
+
+
+
+
+
+
+
OpenLP.FirstTimeWizard
-
-
- Lieder
-
-
-
-
- Bibeln
-
-
-
-
+
+
-
-
+
+
-
-
+
+
-
+
+
+
+
+
+
+
+
+
+
+
-
+
-
-
+
+
-
+
-
+
-
+
+
+ Lieder
+
+
+
-
+
Bibeltext
-
+
Bilder
-
+
Präsentationen
-
+
-
+
-
+
-
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
+
+
+
+
+
+
+
+
+
+
@@ -1704,12 +1754,12 @@ Version: %s
OpenLP.LanguageManager
-
+
Sprache
-
+
Bitte starten Sie OpenLP neu, um die neue Spracheinstellung zu verwenden.
@@ -2015,17 +2065,12 @@ Version: %s
&Webseite
-
-
- &Automatische Auswahl
-
-
-
+
Die Systemsprache, sofern diese verfügbar ist, verwenden.
-
+
Die Sprache von OpenLP auf %s stellen
@@ -2070,27 +2115,27 @@ Version: %s
Die Ansicht für den Live-Betrieb optimieren.
-
+
Neue OpenLP Version verfügbar
-
+
Hauptbildschirm abgedunkelt
-
+
Die Projektion ist momentan nicht aktiv.
-
+
Standarddesign: %s
-
+
@@ -2110,12 +2155,12 @@ Sie können die letzte Version auf http://openlp.org abrufen.
&Tastenkürzel einrichten...
-
+
OpenLP beenden
-
+
Sind Sie sicher, dass OpenLP beendet werden soll?
@@ -2144,11 +2189,16 @@ Sie können die letzte Version auf http://openlp.org abrufen.
+
+
+
+
+
OpenLP.MediaManagerItem
-
+
Keine Elemente ausgewählt.
@@ -2426,29 +2476,29 @@ Sie können die letzte Version auf http://openlp.org abrufen.
&Design des Elements ändern
-
+
Die gewählte Datei ist keine gültige OpenLP Ablaufdatei.
Der Inhalt ist nicht in UTF-8 kodiert.
-
+
Die Datei ist keine gültige OpenLP Ablaufdatei.
-
+
Fehlende Anzeigesteuerung
-
+
Dieses Element kann nicht angezeigt werden, da es keine Steuerung dafür gibt.
-
+
Dieses Element kann nicht angezeigt werden, da die zugehörige Erweiterung fehlt oder inaktiv ist.
@@ -2478,7 +2528,7 @@ Der Inhalt ist nicht in UTF-8 kodiert.
Ablauf öffnen
-
+
OpenLP Ablaufdateien (*.osz)
@@ -3960,69 +4010,79 @@ Sie ist nicht in UTF-8 kodiert.
Speicherort
-
+
Aufrufprotokoll_%s_%s.txt
-
+
-
+
+
+
+
+
+
+
+
+
+
+
SongsPlugin
-
+
&Lied
-
+
Lieder importieren.
-
+
<strong>Erweiterung Lieder</strong><br />Die Erweiterung Lieder ermöglicht die Darstellung und Verwaltung von Liedtexten.
-
+
Liederverzeichnis &reindizieren
-
+
Das reindizieren der Liederdatenbank kann die Suchergebnisse verbessern.
-
+
Reindiziere die Liederdatenbank...
-
+
name singular
Lied
-
+
name plural
Lieder
-
+
container title
Lieder
@@ -4117,37 +4177,37 @@ Usually you are fine with the preselected choice.
-
+
-
+
Erstelle eine neues Lied
-
+
Bearbeite das ausgewählte Lied
-
+
Lösche das ausgewählte Lied
-
+
-
+
-
+
@@ -4603,12 +4663,12 @@ Usually you are fine with the preselected choice.
Liedtext
-
+
Lied(er) löschen?
-
+
CCLI-Lizenz:
@@ -4618,7 +4678,7 @@ Usually you are fine with the preselected choice.
Ganzes Lied
-
+
Sind Sie sicher, dass das Lied gelöscht werden soll?
diff --git a/resources/i18n/en.ts b/resources/i18n/en.ts
index 11ff4d7f3..0897347d7 100644
--- a/resources/i18n/en.ts
+++ b/resources/i18n/en.ts
@@ -210,7 +210,7 @@ Do you want to continue anyway?
-
+
@@ -829,59 +829,59 @@ demand and thus an internet connection is required.
ImagePlugin
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
name singular
-
+
name plural
-
+
container title
@@ -937,59 +937,59 @@ Do you want to add the other images anyway?
MediaPlugin
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
name singular
-
+
name plural
-
+
container title
@@ -1087,14 +1087,6 @@ OpenLP is written and maintained by volunteers. If you would like to see more fr
-
-
-
-
-
@@ -1170,6 +1162,15 @@ Final Credit
He has set us free.
+
+
+
+
+
OpenLP.AdvancedTab
@@ -1273,17 +1274,17 @@ Final Credit
-
+
-
+
-
+
@@ -1421,151 +1422,200 @@ Version: %s
OpenLP.FirstTimeLanguageForm
-
-
+
+
-
-
+
+
+
+
+
+
+
OpenLP.FirstTimeWizard
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
-
+
-
-
-
-
-
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -1690,12 +1740,12 @@ Version: %s
OpenLP.LanguageManager
-
+
-
+
@@ -2001,17 +2051,12 @@ Version: %s
-
-
-
-
-
-
+
-
+
@@ -2056,29 +2101,29 @@ Version: %s
-
+
-
+
-
+
-
+
-
+
@@ -2094,12 +2139,12 @@ You can download the latest version from http://openlp.org/.
-
+
-
+
@@ -2128,11 +2173,16 @@ You can download the latest version from http://openlp.org/.
+
+
+
+
+
OpenLP.MediaManagerItem
-
+
@@ -2410,33 +2460,33 @@ You can download the latest version from http://openlp.org/.
-
+
-
+
-
+
-
+
-
+
-
+
@@ -3942,82 +3992,92 @@ The content encoding is not UTF-8.
-
+
-
+
-
+
+
+
+
+
+
+
+
+
+
+
SongsPlugin
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -4110,25 +4170,25 @@ The encoding is responsible for the correct character representation.
-
+
name singular
-
+
name plural
-
+
container title
-
+
@@ -4584,12 +4644,12 @@ The encoding is responsible for the correct character representation.
-
+
-
+
@@ -4599,7 +4659,7 @@ The encoding is responsible for the correct character representation.
-
+
diff --git a/resources/i18n/en_GB.ts b/resources/i18n/en_GB.ts
index 8ed8984a9..1c1c672b5 100644
--- a/resources/i18n/en_GB.ts
+++ b/resources/i18n/en_GB.ts
@@ -210,7 +210,7 @@ Do you want to continue anyway?
-
+
@@ -830,59 +830,59 @@ demand and thus an internet connection is required.
ImagePlugin
-
+
<strong>Image Plugin</strong><br />The image plugin provides displaying of images.<br />One of the distinguishing features of this plugin is the ability to group a number of images together in the service manager, making the displaying of multiple images easier. This plugin can also make use of OpenLP's "timed looping" feature to create a slide show that runs automatically. In addition to this, images from the plugin can be used to override the current theme's background, which renders text-based items like songs with the selected image as a background instead of the background provided by the theme.
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
name singular
Image
-
+
name plural
-
+
container title
@@ -938,59 +938,59 @@ Do you want to add the other images anyway?
MediaPlugin
-
+
<strong>Media Plugin</strong><br />The media plugin provides playback of audio and video.
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
name singular
Media
-
+
name plural
Media
-
+
container title
Media
@@ -1094,14 +1094,6 @@ OpenLP is written and maintained by volunteers. If you would like to see more fr
build %s
-
-
-
-
-
@@ -1177,6 +1169,15 @@ Final Credit
He has set us free.
+
+
+
+
+
OpenLP.AdvancedTab
@@ -1280,17 +1281,17 @@ Final Credit
-
+
-
+
-
+
@@ -1428,151 +1429,200 @@ Version: %s
OpenLP.FirstTimeLanguageForm
-
-
+
+
-
-
+
+
+
+
+
+
+
OpenLP.FirstTimeWizard
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
+
-
+
-
-
+
+
-
+
-
+
-
+
+
+
+
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
+
+
+
+
+
+
+
+
+
+
@@ -1697,12 +1747,12 @@ Version: %s
OpenLP.LanguageManager
-
+
Language
-
+
Please restart OpenLP to use your new language setting.
@@ -2008,17 +2058,12 @@ Version: %s
&Web Site
-
-
- &Auto Detect
-
-
-
+
Use the system language, if available.
-
+
Set the interface language to %s
@@ -2063,7 +2108,7 @@ Version: %s
Set the view mode to Live.
-
+
@@ -2071,22 +2116,22 @@ You can download the latest version from http://openlp.org/.
You can download the latest version from http://openlp.org/.
-
+
OpenLP Version Updated
-
+
OpenLP Main Display Blanked
-
+
The Main Display has been blanked out
-
+
Default Theme: %s
@@ -2102,12 +2147,12 @@ You can download the latest version from http://openlp.org/.
-
+
-
+
@@ -2136,11 +2181,16 @@ You can download the latest version from http://openlp.org/.
+
+
+
+
+
OpenLP.MediaManagerItem
-
+
No Items Selected
@@ -2418,29 +2468,29 @@ You can download the latest version from http://openlp.org/.
&Change Item Theme
-
+
File is not a valid service.
The content encoding is not UTF-8.
-
+
File is not a valid service.
-
+
Missing Display Handler
-
+
Your item cannot be displayed as there is no handler to display it
-
+
Your item cannot be displayed as the plugin required to display it is missing or inactive
@@ -2470,7 +2520,7 @@ The content encoding is not UTF-8.
-
+
@@ -3952,99 +4002,109 @@ The content encoding is not UTF-8.
Output File Location
-
+
-
+
-
+
+
+
+
+
+
+
+
+
+
+
SongsPlugin
-
+
&Song
-
+
Import songs using the import wizard.
-
+
<strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs.
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
name singular
Song
-
+
name plural
Songs
-
+
container title
Songs
@@ -4138,7 +4198,7 @@ The encoding is responsible for the correct character representation.
-
+
@@ -4594,12 +4654,12 @@ The encoding is responsible for the correct character representation.
Lyrics
-
+
Delete Song(s)?
-
+
@@ -4609,7 +4669,7 @@ The encoding is responsible for the correct character representation.
-
+
diff --git a/resources/i18n/en_ZA.ts b/resources/i18n/en_ZA.ts
index bb54aba46..176d72218 100644
--- a/resources/i18n/en_ZA.ts
+++ b/resources/i18n/en_ZA.ts
@@ -212,7 +212,7 @@ Do you want to continue anyway?
Bible not fully loaded.
-
+
You cannot combine single and dual Bible verse search results. Do you want to delete your search results and start a new search?
@@ -842,59 +842,59 @@ demand and thus an internet connection is required.
ImagePlugin
-
+
<strong>Image Plugin</strong><br />The image plugin provides displaying of images.<br />One of the distinguishing features of this plugin is the ability to group a number of images together in the service manager, making the displaying of multiple images easier. This plugin can also make use of OpenLP's "timed looping" feature to create a slide show that runs automatically. In addition to this, images from the plugin can be used to override the current theme's background, which renders text-based items like songs with the selected image as a background instead of the background provided by the theme.
-
+
Load a new Image
-
+
Add a new Image
-
+
Edit the selected Image
-
+
Delete the selected Image
-
+
Preview the selected Image
-
+
Send the selected Image live
-
+
Add the selected Image to the service
-
+
name singular
Image
-
+
name plural
Images
-
+
container title
Images
@@ -951,59 +951,59 @@ Do you want to add the other images anyway?
MediaPlugin
-
+
<strong>Media Plugin</strong><br />The media plugin provides playback of audio and video.
-
+
Load a new Media
-
+
Add a new Media
-
+
Edit the selected Media
-
+
Delete the selected Media
-
+
Preview the selected Media
-
+
Send the selected Media live
-
+
Add the selected Media to the service
-
+
name singular
Media
-
+
name plural
Media
-
+
container title
Media
@@ -1107,17 +1107,6 @@ OpenLP is written and maintained by volunteers. If you would like to see more fr
build %s
-
-
-
- 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
-
@@ -1193,6 +1182,15 @@ Final Credit
He has set us free.
+
+
+
+
+
OpenLP.AdvancedTab
@@ -1296,18 +1294,18 @@ Final Credit
-
- Tag Id
+
+
-
- Start HTML
+
+
-
- End HTML
+
+
@@ -1472,151 +1470,200 @@ Version: %s
OpenLP.FirstTimeLanguageForm
-
-
+
+
-
-
+
+
+
+
+
+
+
OpenLP.FirstTimeWizard
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
+
-
+
-
-
+
+
-
+
-
+
-
+
+
+
+
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
+
+
+
+
+
+
+
+
+
+
@@ -1741,12 +1788,12 @@ Version: %s
OpenLP.LanguageManager
-
+
Language
-
+
Please restart OpenLP to use your new language setting.
@@ -2052,17 +2099,12 @@ Version: %s
&Web Site
-
-
- &Auto Detect
-
-
-
+
Use the system language, if available.
-
+
Set the interface language to %s
@@ -2107,27 +2149,27 @@ Version: %s
Set the view mode to Live.
-
+
OpenLP Version Updated
-
+
OpenLP Main Display Blanked
-
+
The Main Display has been blanked out
-
+
Default Theme: %s
-
+
@@ -2147,12 +2189,12 @@ You can download the latest version from http://openlp.org/.
Configure &Shortcuts...
-
+
Close OpenLP
-
+
Are you sure you want to close OpenLP?
@@ -2181,11 +2223,16 @@ You can download the latest version from http://openlp.org/.
&Configure Display Tags
+
+
+
+
+
OpenLP.MediaManagerItem
-
+
No Items Selected
@@ -2463,29 +2510,29 @@ You can download the latest version from http://openlp.org/.
&Change Item Theme
-
+
File is not a valid service.
The content encoding is not UTF-8.
-
+
File is not a valid service.
-
+
Missing Display Handler
-
+
Your item cannot be displayed as there is no handler to display it
-
+
Your item cannot be displayed as the plugin required to display it is missing or inactive
@@ -2515,7 +2562,7 @@ The content encoding is not UTF-8.
Open File
-
+
OpenLP Service Files (*.osz)
@@ -3997,17 +4044,17 @@ The content encoding is not UTF-8.
Report Location
-
+
usage_detail_%s_%s.txt
-
+
Report Creation
-
+
@@ -4015,83 +4062,93 @@ has been successfully created.
%s
has been successfully created.
+
+
+
+
+
+
+
+
+
+
SongsPlugin
-
+
&Song
-
+
Import songs using the import wizard.
-
+
<strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs.
-
+
&Re-index Songs
-
+
Re-index the songs database to improve searching and ordering.
-
+
Reindexing songs...
-
+
Add a new Song
-
+
Edit the selected Song
-
+
Delete the selected Song
-
+
Preview the selected Song
-
+
Send the selected Song live
-
+
Add the selected Song to the service
-
+
name singular
Song
-
+
name plural
Songs
-
+
container title
Songs
@@ -4188,7 +4245,7 @@ The encoding is responsible for the correct character representation.
The encoding is responsible for the correct character representation.
-
+
Exports songs using the export wizard.
@@ -4644,12 +4701,12 @@ The encoding is responsible for the correct character representation.Lyrics
-
+
Delete Song(s)?
-
+
CCLI License:
@@ -4659,7 +4716,7 @@ The encoding is responsible for the correct character representation.Entire Song
-
+
Are you sure you want to delete the %n selected song(s)?
diff --git a/resources/i18n/es.ts b/resources/i18n/es.ts
index 4623ae889..e2d926a23 100644
--- a/resources/i18n/es.ts
+++ b/resources/i18n/es.ts
@@ -211,7 +211,7 @@ Do you want to continue anyway?
-
+
@@ -830,59 +830,59 @@ demand and thus an internet connection is required.
ImagePlugin
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
name singular
Imagen
-
+
name plural
-
+
container title
@@ -938,59 +938,59 @@ Do you want to add the other images anyway?
MediaPlugin
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
name singular
Medios
-
+
name plural
Medios
-
+
container title
Medios
@@ -1088,14 +1088,6 @@ OpenLP is written and maintained by volunteers. If you would like to see more fr
-
-
-
-
-
@@ -1171,6 +1163,15 @@ Final Credit
He has set us free.
+
+
+
+
+
OpenLP.AdvancedTab
@@ -1274,17 +1275,17 @@ Final Credit
-
+
-
+
-
+
@@ -1422,151 +1423,200 @@ Version: %s
OpenLP.FirstTimeLanguageForm
-
-
+
+
-
-
+
+
+
+
+
+
+
OpenLP.FirstTimeWizard
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
+
-
+
-
-
+
+
-
+
-
+
-
+
+
+
+
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
+
+
+
+
+
+
+
+
+
+
@@ -1691,12 +1741,12 @@ Version: %s
OpenLP.LanguageManager
-
+
-
+
@@ -2002,17 +2052,12 @@ Version: %s
Sitio &Web
-
-
-
-
-
-
+
-
+
@@ -2057,29 +2102,29 @@ Version: %s
-
+
-
+
Versión de OpenLP Actualizada
-
+
Pantalla Principal de OpenLP en Blanco
-
+
La Pantalla Principal esta en negro
-
+
@@ -2095,12 +2140,12 @@ You can download the latest version from http://openlp.org/.
-
+
-
+
@@ -2129,11 +2174,16 @@ You can download the latest version from http://openlp.org/.
+
+
+
+
+
OpenLP.MediaManagerItem
-
+
@@ -2411,28 +2461,28 @@ You can download the latest version from http://openlp.org/.
&Cambiar Tema de Ítem
-
+
-
+
-
+
-
+
-
+
@@ -2462,7 +2512,7 @@ The content encoding is not UTF-8.
-
+
@@ -3943,99 +3993,109 @@ The content encoding is not UTF-8.
Archivo de Salida
-
+
-
+
-
+
+
+
+
+
+
+
+
+
+
+
SongsPlugin
-
+
&Canción
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
name singular
Canción
-
+
name plural
Canciones
-
+
container title
Canciones
@@ -4129,7 +4189,7 @@ The encoding is responsible for the correct character representation.
-
+
@@ -4585,12 +4645,12 @@ The encoding is responsible for the correct character representation.
Letra
-
+
-
+
@@ -4600,7 +4660,7 @@ The encoding is responsible for the correct character representation.
-
+
diff --git a/resources/i18n/et.ts b/resources/i18n/et.ts
index 18bcc29df..04a040232 100644
--- a/resources/i18n/et.ts
+++ b/resources/i18n/et.ts
@@ -211,7 +211,7 @@ Do you want to continue anyway?
-
+
@@ -840,59 +840,59 @@ vajadusel, seetõttu on vajalik internetiühendus.
ImagePlugin
-
+
<strong>Pildiplugin</strong><br />Pildiplugin võimaldab piltide kuvamise.<br />Üks selle plugina One of the distinguishing features of this plugin is the ability to group a number of images together in the service manager, making the displaying of multiple images easier. This plugin can also make use of OpenLP's "timed looping" feature to create a slide show that runs automatically. In addition to this, images from the plugin can be used to override the current theme's background, which renders text-based items like songs with the selected image as a background instead of the background provided by the theme.
-
+
Uue pildi laadimine
-
+
Uue pildi lisamine
-
+
Valitud pildi muutmine
-
+
Valitud pildi kustutamine
-
+
Valitud pildi eelvaatlemine
-
+
Valitud pildi saatmine ekraanile
-
+
Valitud pildi lisamine teenistusele
-
+
name singular
Pilt
-
+
name plural
Pildid
-
+
container title
Pildid
@@ -948,59 +948,59 @@ Do you want to add the other images anyway?
MediaPlugin
-
+
<strong>Meediaplugin</strong><br />Meedia plugin võimaldab audio- ja videofailide taasesitamist.
-
+
Uue meedia laadimine
-
+
Uue meedia lisamine
-
+
Valitud meedia muutmine
-
+
Valitud meedia kustutamine
-
+
Valitud meedia eelvaatlus
-
+
Valitud meedia saatmine ekraanile
-
+
Valitud meedia lisamine teenistusse
-
+
name singular
Meedia
-
+
name plural
Meedia
-
+
container title
Meedia
@@ -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.
-
-
-
-
-
@@ -1187,6 +1179,15 @@ Final Credit
He has set us free.
+
+
+
+
+
OpenLP.AdvancedTab
@@ -1290,18 +1291,18 @@ Final Credit
-
- Sildi ID
+
+
-
- HTMLi algus
+
+
-
- HTMLi lõpp
+
+
@@ -1466,151 +1467,200 @@ Version: %s
OpenLP.FirstTimeLanguageForm
-
-
+
+
-
-
+
+
+
+
+
+
+
OpenLP.FirstTimeWizard
-
-
- Laulud
-
-
-
-
- Piiblid
-
-
-
-
- Kujundused
-
-
-
-
+
+
-
-
+
+
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
-
-
+
+
-
+
-
+
-
+
+
+ Laulud
+
+
+
-
+
Piibel
-
+
Pildid
-
+
Esitlused
-
+
-
+
-
+
-
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
+
+
+
+
+
+
+
+
+
+
@@ -1735,12 +1785,12 @@ Version: %s
OpenLP.LanguageManager
-
+
Keel
-
+
Uue keele kasutamiseks käivita OpenLP uuesti.
@@ -2046,17 +2096,12 @@ Version: %s
&Veebileht
-
-
- &Isetuvastus
-
-
-
+
Kui saadaval, kasutatakse süsteemi keelt.
-
+
Kasutajaliidese keeleks %s määramine
@@ -2101,27 +2146,27 @@ Version: %s
Vaate režiimiks ekraanivaate valimine.
-
+
OpenLP uuendus
-
+
OpenLP peakuva on tühi
-
+
Peakuva on tühi
-
+
Vaikimisi kujundus: %s
-
+
@@ -2141,12 +2186,12 @@ Sa võid viimase versiooni alla laadida aadressilt http://openlp.org/.&Kiirklahvide seadistamine...
-
+
OpenLP sulgemine
-
+
Kas oled kindel, et tahad OpenLP sulgeda?
@@ -2175,11 +2220,16 @@ Sa võid viimase versiooni alla laadida aadressilt http://openlp.org/.Open the folder where songs, bibles and other data resides.
Laulude, Piiblite ja muude andmete kataloogi avamine.
+
+
+
+
+
OpenLP.MediaManagerItem
-
+
Ühtegi elementi pole valitud
@@ -2457,29 +2507,29 @@ Sa võid viimase versiooni alla laadida aadressilt http://openlp.org/.&Muuda elemendi kujundust
-
+
Fail ei ole sobiv teenistus.
Sisu ei ole UTF-8 kodeeringus.
-
+
Fail pole sobiv teenistus.
-
+
Puudub kuvakäsitleja
-
+
Seda elementi pole võimalik näidata ekraanil, kuna puudub seda käsitsev programm
-
+
Seda elementi pole võimalik näidata ekraanil, kuna puudub seda käsitsev programm
@@ -2509,7 +2559,7 @@ Sisu ei ole UTF-8 kodeeringus.
Faili avamine
-
+
OpenLP teenistuse failid (*.osz)
@@ -3991,17 +4041,17 @@ Sisu kodeering ei ole UTF-8.
Väljundfaili asukoht
-
+
laulukasutuse_andmed_%s_%s.txt
-
+
Raporti koostamine
-
+
@@ -4009,83 +4059,93 @@ has been successfully created.
%s
on edukalt loodud.
+
+
+
+
+
+
+
+
+
+
SongsPlugin
-
+
&Laul
-
+
Laulude importimine importimise nõustajaga.
-
+
<strong>Laulude plugin</strong><br />See plugin võimaldab laulude kuvamise ja haldamise.
-
+
&Indekseeri laulud uuesti
-
+
Laulude andmebaasi kordusindekseerimine, et parendada otsimist ja järjekorda.
-
+
Laulude kordusindekseerimine...
-
+
Uue laulu lisamine
-
+
Valitud laulu muutmine
-
+
Valitud laulu kustutamine
-
+
Valitud laulu eelvaatlus
-
+
Valitud laulu saatmine ekraanile
-
+
Valitud laulu lisamine teenistusele
-
+
name singular
Laul
-
+
name plural
Laulud
-
+
container title
Laulud
@@ -4181,7 +4241,7 @@ The encoding is responsible for the correct character representation.
Kodeering on vajalik märkide õige esitamise jaoks.
-
+
Eksportimise nõustaja abil laulude eksportimine.
@@ -4637,12 +4697,12 @@ Kodeering on vajalik märkide õige esitamise jaoks.
Laulusõnad
-
+
Kas kustutada laul(ud)?
-
+
CCLI litsents:
@@ -4652,7 +4712,7 @@ Kodeering on vajalik märkide õige esitamise jaoks.
Kogu laulust
-
+
diff --git a/resources/i18n/fr.ts b/resources/i18n/fr.ts
index ecc5dba71..02140b8e5 100644
--- a/resources/i18n/fr.ts
+++ b/resources/i18n/fr.ts
@@ -210,7 +210,7 @@ Do you want to continue anyway?
-
+
@@ -832,60 +832,60 @@ a la demande, une connexion Interner fiable est donc nécessaire.
ImagePlugin
-
+
-
+
name singular
Image
-
+
name plural
Images
-
+
container title
Images
-
+
Charge une nouvelle image
-
+
Ajoute une nouvelle image
-
+
Édite l'image sélectionnée
-
+
Efface l'image sélectionnée
-
+
Prévisualise l'image sélectionnée
-
+
Envoie l'image sélectionnée en direct
-
+
Ajoute l'image sélectionnée au service
@@ -941,60 +941,60 @@ Voulez-vous ajouter de toute façon d'autres images ?
MediaPlugin
-
+
<strong>Module média</strong><br />Le module média permet une lecture de contenu audio et vidéo.
-
+
name singular
Médias
-
+
name plural
Médias
-
+
container title
Médias
-
+
Charge un nouveau média
-
+
Ajoute un nouveau média
-
+
Édite le média sélectionné
-
+
Efface le média sélectionné
-
+
Prévisualise le média sélectionné
-
+
Envoie le média en direct
-
+
Ajouter le média sélectionné au service
@@ -1091,14 +1091,6 @@ OpenLP is written and maintained by volunteers. If you would like to see more fr
-
-
-
-
-
@@ -1174,6 +1166,15 @@ Final Credit
He has set us free.
+
+
+
+
+
OpenLP.AdvancedTab
@@ -1277,17 +1278,17 @@ Final Credit
-
+
-
+
-
+
@@ -1426,151 +1427,200 @@ Version: %s
OpenLP.FirstTimeLanguageForm
-
-
+
+
-
-
+
+
+
+
+
+
+
OpenLP.FirstTimeWizard
-
-
+
+
-
-
- Bibles
-
-
-
-
+
+
-
-
+
+
-
-
+
+
-
+
+
+
+
+
+
-
+
-
-
+
+
-
+
-
+
-
+
+
+
+
+
+
-
+
Bible
-
+
Images
-
+
Présentations
-
+
-
+
-
+
-
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
+
+
+
+
+
+
+
+
+
+
@@ -1695,12 +1745,12 @@ Version: %s
OpenLP.LanguageManager
-
+
Langage
-
+
Veuillez redémarrer OpenLP pour utiliser votre nouvelle propriété de langue.
@@ -2011,17 +2061,12 @@ Version: %s
Site &Web
-
-
- Détection &automatique
-
-
-
+
Utilise le langage système, si disponible.
-
+
Défini la langue de l'interface à %s
@@ -2066,7 +2111,7 @@ Version: %s
-
+
@@ -2075,32 +2120,32 @@ You can download the latest version from http://openlp.org/.
Vous pouvez télécharger la dernière version depuis http://openlp.org/.
-
+
Version d'OpenLP mis a jours
-
+
OpenLP affichage principale noirci
-
+
L'affichage principale a été noirci
-
+
Ferme OpenLP
-
+
Êtes vous sur de vouloir fermer OpenLP ?
-
+
Thème par défaut : %s
@@ -2135,11 +2180,16 @@ Vous pouvez télécharger la dernière version depuis http://openlp.org/.&Configure Display Tags
+
+
+
+
+
OpenLP.MediaManagerItem
-
+
Pas d'éléments sélectionné
@@ -2462,34 +2512,34 @@ Vous pouvez télécharger la dernière version depuis http://openlp.org/.Ouvre un fichier
-
+
Fichier service OpenLP (*.osz)
-
+
Le fichier n'est un service valide.
Le contenu n'est pas de l'UTF-8.
-
+
Le fichier n'est pas un service valide.
-
+
Délégué d'affichage manquent
-
+
Votre élément ne peut pas être affiché il n'y a pas de délégué pour l'afficher
-
+
Votre élément ne peut pas être affiché le module nécessaire pour l'afficher est manquant ou inactif
@@ -3951,22 +4001,32 @@ Le contenu n'est pas de l'UTF-8.
-
+
-
+
-
+
+
+
+
+
+
+
+
+
+
+
SongsPlugin
@@ -4059,85 +4119,85 @@ The encoding is responsible for the correct character representation.
-
+
-
+
-
+
-
+
-
+
-
+
-
+
name singular
-
+
name plural
-
+
container title
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -4598,12 +4658,12 @@ The encoding is responsible for the correct character representation.
-
+
-
+
@@ -4611,7 +4671,7 @@ The encoding is responsible for the correct character representation.
-
+
diff --git a/resources/i18n/hu.ts b/resources/i18n/hu.ts
index 7d571331a..7469a72fd 100644
--- a/resources/i18n/hu.ts
+++ b/resources/i18n/hu.ts
@@ -210,7 +210,7 @@ Do you want to continue anyway?
-
+
@@ -830,59 +830,59 @@ demand and thus an internet connection is required.
ImagePlugin
-
+
<strong>Kép bővítmény</strong><br />A kép a bővítmény mindenféle kép vetítését teszi lehetővé.<br />A bővítmény egyik különös figyelmet érdemlő képessége az, hogy képes a szolgálatkezelőn csoportba foglalni a képeket, így könnyebbé téve sok kép vetítését. A bővítmény képes az OpenLP „időzített körkörös” lejátszásra is, amivel a diákat automatikusan tudjuk léptetni. Továbbá, a bővítményben megadott képekkel felülírhatjuk a téma háttérképét, amellyel a szöveg alapú elemek, mint pl. a dalok, a megadott háttérképpel jelennek meg, a témában beállított háttérkép helyett.
-
+
Új kép betöltése
-
+
Új kép hozzáadása
-
+
A kijelölt kép szerkesztése
-
+
A kijelölt kép törlése
-
+
A kijelölt kép előnézete
-
+
A kijelölt kép élő adásba küldése
-
+
A kijelölt kép hozzáadása a szolgálathoz
-
+
name singular
Kép
-
+
name plural
Képek
-
+
container title
Képek
@@ -938,59 +938,59 @@ Do you want to add the other images anyway?
MediaPlugin
-
+
<strong>Média bővítmény</strong><br />A média bővítmény hangok és videók lejátszását teszi lehetővé.
-
+
Új médiaállomány betöltése
-
+
Új médiaállomány hozzáadása
-
+
A kijelölt médiaállomány szerkesztése
-
+
A kijelölt médiaállomány törlése
-
+
A kijelölt médiaállomány előnézete
-
+
A kijelölt médiaállomány élő adásba küldése
-
+
A kijelölt médiaállomány hozzáadása a szolgálathoz
-
+
name singular
Média
-
+
name plural
Média
-
+
container title
Média
@@ -1094,14 +1094,6 @@ Az OpenLP-t önkéntesek készítették és tartják karban. Ha szeretnél több
-
-
-
-
-
@@ -1177,6 +1169,15 @@ Final Credit
He has set us free.
+
+
+
+
+
OpenLP.AdvancedTab
@@ -1280,17 +1281,17 @@ Final Credit
-
+
-
+
-
+
@@ -1428,151 +1429,200 @@ Version: %s
OpenLP.FirstTimeLanguageForm
-
-
+
+
-
-
+
+
+
+
+
+
+
OpenLP.FirstTimeWizard
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
+
-
+
-
-
+
+
-
+
-
+
-
+
+
+
+
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
+
+
+
+
+
+
+
+
+
+
@@ -1697,12 +1747,12 @@ Version: %s
OpenLP.LanguageManager
-
+
Nyelv
-
+
A nyelvi beállítások az OpenLP újraindítása után lépnek érvénybe.
@@ -2008,17 +2058,12 @@ Version: %s
&Weboldal
-
-
- &Automatikus felismerés
-
-
-
+
Rendszernyelv használata, ha elérhető.
-
+
A felhasználói felület nyelvének átváltása erre: %s
@@ -2063,7 +2108,7 @@ Version: %s
Nézetmód váltása a Élő módra.
-
+
@@ -2072,22 +2117,22 @@ You can download the latest version from http://openlp.org/.
A legfrissebb verzió a http://openlp.org/ oldalról szerezhető be.
-
+
OpenLP verziófrissítés
-
+
Sötét OpenLP fő képernyő
-
+
A fő képernyő el lett sötétítve
-
+
Alapértelmezett téma: %s
@@ -2103,12 +2148,12 @@ A legfrissebb verzió a http://openlp.org/ oldalról szerezhető be.Magyar
-
+
-
+
@@ -2137,11 +2182,16 @@ A legfrissebb verzió a http://openlp.org/ oldalról szerezhető be.&Configure Display Tags
+
+
+
+
+
OpenLP.MediaManagerItem
-
+
Nincs kijelölt elem
@@ -2419,29 +2469,29 @@ A legfrissebb verzió a http://openlp.org/ oldalról szerezhető be.Elem témájának &módosítása
-
+
A fájl nem érvényes szolgálat.
A tartalom kódolása nem UTF-8.
-
+
A fájl nem érvényes szolgálat.
-
+
Hiányzó képernyő kezelő
-
+
Az elemet nem lehet megjeleníteni, mert nincs kezelő, amely megjelenítené
-
+
Az elemet nem lehet megjeleníteni, mert a bővítmény, amely kezelné, hiányzik vagy inaktív
@@ -2471,7 +2521,7 @@ A tartalom kódolása nem UTF-8.
-
+
@@ -3953,99 +4003,109 @@ A tartalom kódolása nem UTF-8.
Kimeneti fájl elérési útvonala
-
+
-
+
-
+
+
+
+
+
+
+
+
+
+
+
SongsPlugin
-
+
&Dal
-
+
Dalok importálása az importálás tündérrel.
-
+
<strong>Dalok bővítmény</strong><br />A dalok bővítmény dalok megjelenítését és kezelését teszi lehetővé.
-
+
Dalok újra&indexelése
-
+
Dal adatbázis újraindexelése a keresés és a rendezés javításához.
-
+
Dalok indexelése folyamatban...
-
+
Új dal hozzáadása
-
+
A kijelölt dal szerkesztése
-
+
A kijelölt dal törlése
-
+
A kijelölt dal előnézete
-
+
A kijelölt dal élő adásba küldése
-
+
A kijelölt dal hozzáadása a szolgálathoz
-
+
name singular
Dal
-
+
name plural
Dalok
-
+
container title
Dalok
@@ -4139,7 +4199,7 @@ The encoding is responsible for the correct character representation.
-
+
@@ -4595,12 +4655,12 @@ The encoding is responsible for the correct character representation.
Dalszöveg
-
+
Törölhető(ek) a dal(ok)?
-
+
CCLI licenc:
@@ -4610,7 +4670,7 @@ The encoding is responsible for the correct character representation.
-
+
diff --git a/resources/i18n/id.ts b/resources/i18n/id.ts
index de88d406a..873c6f642 100644
--- a/resources/i18n/id.ts
+++ b/resources/i18n/id.ts
@@ -211,7 +211,7 @@ Do you want to continue anyway?
-
+
@@ -831,59 +831,59 @@ demand and thus an internet connection is required.
ImagePlugin
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
name singular
-
+
name plural
-
+
container title
@@ -939,59 +939,59 @@ Do you want to add the other images anyway?
MediaPlugin
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
name singular
-
+
name plural
-
+
container title
@@ -1089,14 +1089,6 @@ OpenLP is written and maintained by volunteers. If you would like to see more fr
-
-
-
-
-
@@ -1172,6 +1164,15 @@ Final Credit
He has set us free.
+
+
+
+
+
OpenLP.AdvancedTab
@@ -1275,17 +1276,17 @@ Final Credit
-
+
-
+
-
+
@@ -1423,151 +1424,200 @@ Version: %s
OpenLP.FirstTimeLanguageForm
-
-
+
+
-
-
+
+
+
+
+
+
+
OpenLP.FirstTimeWizard
-
-
+
+
-
-
- Alkitab
-
-
-
-
+
+
-
-
+
+
-
-
+
+
-
+
+
+
+
+
+
-
+
-
-
+
+
-
+
-
+
-
+
+
+
+
+
+
-
+
Alkitab
-
+
-
+
-
+
-
+
-
+
-
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
+
+
+
+
+
+
+
+
+
+
@@ -1692,12 +1742,12 @@ Version: %s
OpenLP.LanguageManager
-
+
-
+
@@ -2003,17 +2053,12 @@ Version: %s
-
-
-
-
-
-
+
-
+
@@ -2058,29 +2103,29 @@ Version: %s
-
+
-
+
-
+
-
+
-
+
@@ -2096,12 +2141,12 @@ You can download the latest version from http://openlp.org/.
-
+
-
+
@@ -2130,11 +2175,16 @@ You can download the latest version from http://openlp.org/.
+
+
+
+
+
OpenLP.MediaManagerItem
-
+
@@ -2412,33 +2462,33 @@ You can download the latest version from http://openlp.org/.
-
+
-
+
-
+
-
+
-
+
-
+
@@ -3944,82 +3994,92 @@ The content encoding is not UTF-8.
-
+
-
+
-
+
+
+
+
+
+
+
+
+
+
+
SongsPlugin
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -4112,25 +4172,25 @@ The encoding is responsible for the correct character representation.
-
+
name singular
-
+
name plural
-
+
container title
-
+
@@ -4586,12 +4646,12 @@ The encoding is responsible for the correct character representation.
-
+
-
+
@@ -4601,7 +4661,7 @@ The encoding is responsible for the correct character representation.
-
+
diff --git a/resources/i18n/ja.ts b/resources/i18n/ja.ts
index 841ac90b5..a9d298ea0 100644
--- a/resources/i18n/ja.ts
+++ b/resources/i18n/ja.ts
@@ -212,7 +212,7 @@ Do you want to continue anyway?
-
+
@@ -372,7 +372,7 @@ Book Chapter:Verse-Chapter:Verse
- 聖書のテーマ:
+ 聖書の外観テーマ:
@@ -592,7 +592,7 @@ demand and thus an internet connection is required.
-
+ 新旧訳ファイルを指定していません。インポートを継続しますか?
@@ -752,7 +752,7 @@ demand and thus an internet connection is required.
- テーマ(&m):
+ 外観テーマ(&m):
@@ -839,59 +839,59 @@ demand and thus an internet connection is required.
ImagePlugin
-
+
- <strong>画像プラグイン</strong><br />画像プラグインは、画像を表示する機能を提供します。<br />礼拝プログラムで複数の画像をグループ化したり、複数の画像を簡単に表示することができます。タイムアウトループの機能を使用してスライドショーを自動的に表示することもできます。さらに、賛美などのテキストベースの項目の背景を、テーマで指定されたものからこのプラグインの画像に変更することもできます。
+ <strong>画像プラグイン</strong><br />画像プラグインは、画像を表示する機能を提供します。<br />礼拝プログラムで複数の画像をグループ化したり、複数の画像を簡単に表示することができます。タイムアウトループの機能を使用してスライドショーを自動的に表示することもできます。さらに、賛美などのテキストベースの項目の背景を、外観テーマで指定されたものからこのプラグインの画像に変更することもできます。
-
+
新しい画像を読み込み
-
+
新しい画像を追加
-
+
選択した画像を編集
-
+
選択した画像を削除
-
+
選択した画像をプレビュー
-
+
選択した画像をライブへ送る
-
+
選択した画像を礼拝プログラムに追加
-
+
name singular
画像
-
+
name plural
画像
-
+
container title
画像
@@ -948,59 +948,59 @@ Do you want to add the other images anyway?
MediaPlugin
-
+
<strong>メディアプラグイン</strong><br />メディアプラグインは、音声や動画を再生する機能を提供します。
-
+
新しいメディアを読み込み
-
+
新しいメディアを追加
-
+
選択したメディアを編集
-
+
選択したメディアを削除
-
+
選択したメディアをプレビュー
-
+
選択したメディアをライブへ送る
-
+
選択したメディアを礼拝プログラムに追加
-
+
name singular
メディア
-
+
name plural
メディア
-
+
container title
メディア
@@ -1184,7 +1184,8 @@ Final Credit
+Ridout, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Carsten
+Tinggaard, Frode Woldsund
@@ -1203,7 +1204,7 @@ Ridout, Maikel Stuivenberg, Martin Thompson, Jon Tibble, CarstennTinggaard, Frod
- 起動時に前回のメディアマネージャを開く
+ 起動時に前回のメディアマネジャーを開く
@@ -1290,18 +1291,18 @@ Ridout, Maikel Stuivenberg, Martin Thompson, Jon Tibble, CarstennTinggaard, Frod
-
- タグID
+
+
-
- 開始タグ
+
+
-
- 終了タグ
+
+
@@ -1465,151 +1466,200 @@ Version: %s
OpenLP.FirstTimeLanguageForm
-
-
+
+
-
-
+
+
+
+
+
+
+
OpenLP.FirstTimeWizard
-
-
- 賛美
-
-
-
-
- 聖書
-
-
-
-
- テーマ
-
-
-
-
+
+
-
-
+
+
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
-
-
+
+
-
+
-
+
-
+
+
+ 賛美
+
+
+
-
+
聖書
-
+
画像
-
+
プレゼンテーション
-
+
-
+
-
+
-
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
+
+
+
+
+
+
+
+
+
+
@@ -1734,12 +1784,12 @@ Version: %s
OpenLP.LanguageManager
-
+
言語
-
+
新しい言語設定を使用するために、OpenLPを再起動してください。
@@ -1802,7 +1852,7 @@ Version: %s
- メディアマネージャ
+ メディアマネジャー
@@ -1812,7 +1862,7 @@ Version: %s
- テーママネージャ
+ 外観テーママネジャー
@@ -1892,7 +1942,7 @@ Version: %s
- テーマ(&T)
+ 外観テーマ(&T)
@@ -1902,7 +1952,7 @@ Version: %s
- メディアマネージャ(&M)
+ メディアマネジャー(&M)
@@ -1922,17 +1972,17 @@ Version: %s
- テーママネージャ(&T)
+ 外観テーママネジャー(&T)
- テーママネジャーの切り替え
+ 外観テーママネジャーの切り替え
- テーママネジャーの可視性を切り替える。
+ 外観テーママネジャーの可視性を切り替える。
@@ -2045,17 +2095,12 @@ Version: %s
ウェブサイト(&W)
-
-
- 自動検出(&A)
-
-
-
+
システム言語を可能であれば使用します。
-
+
インターフェイス言語を%sに設定
@@ -2100,7 +2145,7 @@ Version: %s
表示モードをライブにします。
-
+
@@ -2109,24 +2154,24 @@ You can download the latest version from http://openlp.org/.
http://openlp.org/から最新版がダウンロード可能です。
-
+
OpenLPのバージョンアップ完了
-
+
OpenLPのプライマリディスプレイがブランクです
-
+
OpenLPのプライマリディスプレイがブランクになりました
-
+
- 既定テーマ
+ 既定外観テーマ
@@ -2140,12 +2185,12 @@ http://openlp.org/から最新版がダウンロード可能です。ショートカットの設定(&S)...
-
+
OpenLPの終了
-
+
本当にOpenLPを終了してもよろしいですか?
@@ -2174,11 +2219,16 @@ http://openlp.org/から最新版がダウンロード可能です。Open the folder where songs, bibles and other data resides.
賛美、聖書データなどのデータが含まれているフォルダを開く。
+
+
+
+
+
OpenLP.MediaManagerItem
-
+
項目の選択がありません
@@ -2373,7 +2423,7 @@ http://openlp.org/から最新版がダウンロード可能です。
- 礼拝プログラムのテーマを選択
+ 礼拝プログラムの外観テーマを選択
@@ -2453,32 +2503,32 @@ http://openlp.org/から最新版がダウンロード可能です。
- 項目のテーマを変更(&C)
+ 項目の外観テーマを変更(&C)
-
+
礼拝プログラムファイルが有効でありません。
エンコードがUTF-8でありません。
-
+
礼拝プログラムファイルが有効でありません。
-
+
ディスプレイハンドラが見つかりません
-
+
ディスプレイハンドラが見つからないため項目を表示する事ができません
-
+
必要なプラグインが見つからないか無効なため、項目を表示する事ができません
@@ -2508,7 +2558,7 @@ The content encoding is not UTF-8.
ファイルを開く
-
+
OpenLP 礼拝プログラムファイル (*.osz)
@@ -2692,7 +2742,7 @@ The content encoding is not UTF-8.
- テーマをブランク
+ 外観テーマをブランク
@@ -2781,22 +2831,22 @@ The content encoding is not UTF-8.
- テーマ名が不明です
+ 外観テーマ名が不明です
- テーマ名がありません。入力してください。
+ 外観テーマ名がありません。入力してください。
- 無効なテーマ名
+ 無効な外観テーマ名
- 無効なテーマ名です。入力してください。
+ 無効な外観テーマ名です。入力してください。
@@ -2809,57 +2859,57 @@ The content encoding is not UTF-8.
- 新しいテーマを作成する。
+ 新しい外観テーマを作成する。
- テーマ編集
+ 外観テーマ編集
- テーマの編集する。
+ 外観テーマの編集する。
- テーマ削除
+ 外観テーマ削除
- テーマの削除する。
+ 外観テーマの削除する。
- テーマインポート
+ 外観テーマインポート
- テーマのインポートをする。
+ 外観テーマのインポートをする。
- テーマのエキスポート
+ 外観テーマのエキスポート
- テーマのエキスポートをする。
+ 外観テーマのエキスポートをする。
- テーマの編集(&E)
+ 外観テーマの編集(&E)
- テーマの削除(&D)
+ 外観テーマの削除(&D)
@@ -2874,83 +2924,83 @@ The content encoding is not UTF-8.
- 編集するテーマを選択してください。
+ 編集する外観テーマを選択してください。
- 既定のテーマを削除する事はできません。
+ 既定の外観テーマを削除する事はできません。
- %s プラグインでこのテーマは利用されています。
+ %s プラグインでこの外観テーマは利用されています。
- テーマの選択がありません。
+ 外観テーマの選択がありません。
- テーマを保存 - (%s)
+ 外観テーマを保存 - (%s)
- テーマエキスポート
+ 外観テーマエキスポート
- テーマは正常にエキスポートされました。
+ 外観テーマは正常にエキスポートされました。
- テーマのエキスポート失敗
+ 外観テーマのエキスポート失敗
- エラーが発生したためテーマは、エキスポートされませんでした。
+ エラーが発生したため外観テーマは、エキスポートされませんでした。
- インポート対象のテーマファイル選択
+ インポート対象の外観テーマファイル選択
- ファイルは無効なテーマです。文字コードがUTF-8ではありません。
+ ファイルは無効な外観テーマです。文字コードがUTF-8ではありません。
- 無効なテーマファイルです。
+ 無効な外観テーマファイルです。
- テーマのコピー(&C)
+ 外観テーマのコピー(&C)
- テーマの名前を変更(&N)
+ 外観テーマの名前を変更(&N)
- テーマのエキスポート(&E)
+ 外観テーマのエキスポート(&E)
- 名前を変更するテーマを選択してください。
+ 名前を変更する外観テーマを選択してください。
@@ -2960,12 +3010,12 @@ The content encoding is not UTF-8.
- %sテーマの名前を変更します。宜しいですか?
+ %s外観テーマの名前を変更します。宜しいですか?
- 削除するテーマを選択してください。
+ 削除する外観テーマを選択してください。
@@ -2975,7 +3025,7 @@ The content encoding is not UTF-8.
- %s テーマを削除します。宜しいですか?
+ %s 外観テーマを削除します。宜しいですか?
@@ -2985,12 +3035,12 @@ The content encoding is not UTF-8.
- 同名のテーマが既に存在します。
+ 同名の外観テーマが既に存在します。
- OpenLP テーマ (*.theme *.otz)
+ OpenLP 外観テーマ (*.theme *.otz)
@@ -2998,12 +3048,12 @@ The content encoding is not UTF-8.
- テーマガイド
+ 外観テーマガイド
- テーマガイドをようこそ
+ 外観テーマガイドをようこそ
@@ -3013,7 +3063,7 @@ The content encoding is not UTF-8.
- 以下の項目に応じて、テーマに使用する背景を設定してください。
+ 以下の項目に応じて、外観テーマに使用する背景を設定してください。
@@ -3208,17 +3258,17 @@ The content encoding is not UTF-8.
- テーマを表示し、現在のテーマを置き換えるか名前を変更して新しいテーマを作成し、保存する
+ 外観テーマを表示し、現在の外観テーマを置き換えるか名前を変更して新しい外観テーマを作成し、保存する
- テーマ名:
+ 外観テーマ名:
- このガイドは、あなたのテーマを作成編集する手助けをします。次へをクリックして、背景を選択してください。
+ このガイドは、あなたの外観テーマを作成編集する手助けをします。次へをクリックして、背景を選択してください。
@@ -3233,7 +3283,7 @@ The content encoding is not UTF-8.
- テーマ編集 - %s
+ 外観テーマ編集 - %s
@@ -3241,12 +3291,12 @@ The content encoding is not UTF-8.
- 全体テーマ
+ 全体外観テーマ
- テーマレベル
+ 外観テーマレベル
@@ -3256,7 +3306,7 @@ The content encoding is not UTF-8.
- データベース内のそれぞれの賛美のテーマを使用します。賛美にテーマが設定されていない場合、礼拝プログラムのテーマを使用します。礼拝プログラムにテーマが設定されていなければ、全体設定のテーマを使用します。
+ データベース内のそれぞれの賛美の外観テーマを使用します。賛美に外観テーマが設定されていない場合、礼拝プログラムの外観テーマを使用します。礼拝プログラムに外観テーマが設定されていなければ、全体設定の外観テーマを使用します。
@@ -3266,7 +3316,7 @@ The content encoding is not UTF-8.
- 礼拝プログラムのテーマを用い、賛美個々のテーマを上書きします。礼拝プログラムにテーマが設定されていなければ、全体設定のテーマを使用します。
+ 礼拝プログラムの外観テーマを用い、賛美個々の外観テーマを上書きします。礼拝プログラムに外観テーマが設定されていなければ、全体設定の外観テーマを使用します。
@@ -3276,7 +3326,7 @@ The content encoding is not UTF-8.
- 全体テーマを用い、すべての礼拝プログラムや賛美に関連付けられたテーマを上書きします。
+ 全体外観テーマを用い、すべての礼拝プログラムや賛美に関連付けられた外観テーマを上書きします。
@@ -3425,7 +3475,7 @@ The content encoding is not UTF-8.
- 新しいテーマ
+ 新しい外観テーマ
@@ -3546,13 +3596,13 @@ The content encoding is not UTF-8.
Singular
- テーマ
+ 外観テーマ
Plural
- テーマ
+ 外観テーマ
@@ -3989,17 +4039,17 @@ The content encoding is not UTF-8.
レポートの出力場所
-
+
-
+
レポート生成
-
+
@@ -4007,83 +4057,93 @@ has been successfully created.
%s
- は正常に生成されました。
+
+
+
+
+
+
+
+
+
+
SongsPlugin
-
+
賛美(&S)
-
+
インポートウィザードを使用して賛美をインポートします。
-
+
<strong>賛美プラグイン</strong><br />賛美プラグインは、賛美を表示し管理する機能を提供します。
-
+
賛美のインデックスを再作成(&R)
-
+
賛美データベースのインデックスを再作成し、検索や並べ替えを速くします。
-
+
賛美のインデックスを再作成中...
-
+
賛美を追加
-
+
選択した賛美を編集
-
+
選択した賛美を削除
-
+
選択した賛美をプレビュー
-
+
選択した賛美をライブへ送る
-
+
選択した賛美を礼拝プログラムに追加
-
+
name singular
賛美
-
+
name plural
賛美
-
+
container title
賛美
@@ -4121,7 +4181,7 @@ has been successfully created.
-
+ 日本語 (CP-932)
@@ -4177,7 +4237,7 @@ The encoding is responsible for the correct character representation.
文字コードを選択してください。文字が正常に表示されるのに必要な設定です。
-
+
エキスポートガイドを使って賛美をエキスポートする。
@@ -4308,7 +4368,7 @@ The encoding is responsible for the correct character representation.
- 新しいテーマ(&N)
+ 新しい外観テーマ(&N)
@@ -4323,7 +4383,7 @@ The encoding is responsible for the correct character representation.
- テーマ、著作情報 && コメント
+ 外観テーマ、著作情報 && コメント
@@ -4633,12 +4693,12 @@ The encoding is responsible for the correct character representation.
賛美詞
-
+
これらの賛美を削除しますか?
-
+
CCLI ライセンス:
@@ -4648,7 +4708,7 @@ The encoding is responsible for the correct character representation.
賛美全体
-
+
選択された%n件の賛美を削除します。宜しいですか?
diff --git a/resources/i18n/ko.ts b/resources/i18n/ko.ts
index 106f9d685..b65182f64 100644
--- a/resources/i18n/ko.ts
+++ b/resources/i18n/ko.ts
@@ -210,7 +210,7 @@ Do you want to continue anyway?
-
+
@@ -830,59 +830,59 @@ demand and thus an internet connection is required.
ImagePlugin
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
name singular
-
+
name plural
-
+
container title
@@ -938,59 +938,59 @@ Do you want to add the other images anyway?
MediaPlugin
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
name singular
-
+
name plural
-
+
container title
@@ -1088,14 +1088,6 @@ OpenLP is written and maintained by volunteers. If you would like to see more fr
-
-
-
-
-
@@ -1171,6 +1163,15 @@ Final Credit
He has set us free.
+
+
+
+
+
OpenLP.AdvancedTab
@@ -1274,17 +1275,17 @@ Final Credit
-
+
-
+
-
+
@@ -1422,151 +1423,200 @@ Version: %s
OpenLP.FirstTimeLanguageForm
-
-
+
+
-
-
+
+
+
+
+
+
+
OpenLP.FirstTimeWizard
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
+
-
+
-
-
+
+
-
+
-
+
-
+
+
+
+
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
+
+
+
+
+
+
+
+
+
+
@@ -1691,12 +1741,12 @@ Version: %s
OpenLP.LanguageManager
-
+
-
+
@@ -2002,17 +2052,12 @@ Version: %s
-
-
-
-
-
-
+
-
+
@@ -2057,29 +2102,29 @@ Version: %s
-
+
-
+
-
+
-
+
-
+
@@ -2095,12 +2140,12 @@ You can download the latest version from http://openlp.org/.
-
+
-
+
@@ -2129,11 +2174,16 @@ You can download the latest version from http://openlp.org/.
+
+
+
+
+
OpenLP.MediaManagerItem
-
+
@@ -2411,28 +2461,28 @@ You can download the latest version from http://openlp.org/.
-
+
-
+
-
+
-
+
-
+
@@ -2462,7 +2512,7 @@ The content encoding is not UTF-8.
-
+
@@ -3943,99 +3993,109 @@ The content encoding is not UTF-8.
-
+
-
+
-
+
+
+
+
+
+
+
+
+
+
+
SongsPlugin
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
name singular
-
+
name plural
-
+
container title
@@ -4129,7 +4189,7 @@ The encoding is responsible for the correct character representation.
-
+
@@ -4585,12 +4645,12 @@ The encoding is responsible for the correct character representation.
-
+
-
+
@@ -4600,7 +4660,7 @@ The encoding is responsible for the correct character representation.
-
+
diff --git a/resources/i18n/nb.ts b/resources/i18n/nb.ts
index ae049959d..09d5ba427 100644
--- a/resources/i18n/nb.ts
+++ b/resources/i18n/nb.ts
@@ -210,7 +210,7 @@ Do you want to continue anyway?
-
+
@@ -829,59 +829,59 @@ demand and thus an internet connection is required.
ImagePlugin
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
name singular
-
+
name plural
-
+
container title
@@ -937,59 +937,59 @@ Do you want to add the other images anyway?
MediaPlugin
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
name singular
-
+
name plural
-
+
container title
@@ -1087,14 +1087,6 @@ OpenLP is written and maintained by volunteers. If you would like to see more fr
-
-
-
-
-
@@ -1170,6 +1162,15 @@ Final Credit
He has set us free.
+
+
+
+
+
OpenLP.AdvancedTab
@@ -1273,17 +1274,17 @@ Final Credit
-
+
-
+
-
+
@@ -1421,151 +1422,200 @@ Version: %s
OpenLP.FirstTimeLanguageForm
-
-
+
+
-
-
+
+
+
+
+
+
+
OpenLP.FirstTimeWizard
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
+
-
+
-
-
+
+
-
+
-
+
-
+
+
+
+
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
+
+
+
+
+
+
+
+
+
+
@@ -1690,12 +1740,12 @@ Version: %s
OpenLP.LanguageManager
-
+
-
+
@@ -2001,17 +2051,12 @@ Version: %s
&Internett side
-
-
-
-
-
-
+
-
+
@@ -2056,29 +2101,29 @@ Version: %s
-
+
-
+
OpenLP versjonen har blitt oppdatert
-
+
-
+
-
+
@@ -2094,12 +2139,12 @@ You can download the latest version from http://openlp.org/.
-
+
-
+
@@ -2128,11 +2173,16 @@ You can download the latest version from http://openlp.org/.
+
+
+
+
+
OpenLP.MediaManagerItem
-
+
@@ -2410,28 +2460,28 @@ You can download the latest version from http://openlp.org/.
&Bytt objekttema
-
+
-
+
-
+
-
+
-
+
@@ -2461,7 +2511,7 @@ The content encoding is not UTF-8.
-
+
@@ -3942,99 +3992,109 @@ The content encoding is not UTF-8.
-
+
-
+
-
+
+
+
+
+
+
+
+
+
+
+
SongsPlugin
-
+
&Sang
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
name singular
Sang
-
+
name plural
Sanger
-
+
container title
Sanger
@@ -4128,7 +4188,7 @@ The encoding is responsible for the correct character representation.
-
+
@@ -4584,12 +4644,12 @@ The encoding is responsible for the correct character representation.
-
+
-
+
@@ -4599,7 +4659,7 @@ The encoding is responsible for the correct character representation.
-
+
diff --git a/resources/i18n/nl.ts b/resources/i18n/nl.ts
index c39446796..ef499af93 100644
--- a/resources/i18n/nl.ts
+++ b/resources/i18n/nl.ts
@@ -212,7 +212,7 @@ Toch doorgaan?
-
+
@@ -841,59 +841,59 @@ N.B. bijbelteksten worden gedownload indien nodig internetverbinding is dus nood
ImagePlugin
-
+
<strong>Afbeeldingen Plugin</strong><br />De afbeeldingen plugin voorziet in de mogelijkheid afbeeldingen te laten zien.<br />Een van de bijzondere mogelijkheden is dat meerdere afbeeldingen als groep in de liturgie worden opgenomen, zodat weergave van meerdere afbeeldingen eenvoudiger wordt. Deze plugin maakt doorlopende diashows (bijv. om de 3 sec. een nieuwe dia) mogelijk. Ook kun met deze plugin de achtergrondafbeelding van het thema vervangen met een andere afbeelding. Ook de combinatie van tekst en beeld is mogelijk.
-
+
Afbeelding laden
-
+
Afbeelding toevoegen
-
+
Afbeelding bewerken
-
+
Geselecteerde afbeeldingen wissen
-
+
Geselecteerde afbeeldingen voorbeeld bekijken
-
+
Geselecteerde afbeeldingen Live tonen
-
+
Geselecteerde afbeeldingen aan liturgie toevoegen
-
+
name singular
Afbeelding
-
+
name plural
Bilder
-
+
container title
Afbeeldingen
@@ -950,59 +950,59 @@ De andere afbeeldingen alsnog toevoegen?
MediaPlugin
-
+
<strong>Media Plugin</strong><br />De media plugin voorziet in mogelijkheden audio en video af te spelen.
-
+
Laad nieuw media bestand
-
+
Voeg nieuwe media toe
-
+
Bewerk geselecteerd media bestand
-
+
Verwijder geselecteerd media bestand
-
+
Toon voorbeeld van geselecteerd media bestand
-
+
Toon geselecteerd media bestand Live
-
+
Voeg geselecteerd media bestand aan liturgie toe
-
+
name singular
Medien
-
+
name plural
Medien
-
+
container title
Media
@@ -1106,17 +1106,6 @@ OpenLP is written and maintained by volunteers. If you would like to see more fr
build %s
-
-
-
- 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
-
@@ -1192,6 +1181,15 @@ Final Credit
He has set us free.
+
+
+
+
+
OpenLP.AdvancedTab
@@ -1295,18 +1293,18 @@ Final Credit
-
- Tag id
+
+
-
- Start Html
+
+
-
- Eind Html
+
+
@@ -1445,151 +1443,200 @@ Version: %s
OpenLP.FirstTimeLanguageForm
-
-
+
+
-
-
+
+
+
+
+
+
+
OpenLP.FirstTimeWizard
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
+
-
+
-
-
+
+
-
+
-
+
-
+
+
+
+
+
+
-
+
bijbeltekst
-
+
-
+
-
+
-
+
-
+
-
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
+
+
+
+
+
+
+
+
+
+
@@ -1714,12 +1761,12 @@ Version: %s
OpenLP.LanguageManager
-
+
Taal
-
+
Start OpenLP opnieuw op om de nieuwe taalinstellingen te gebruiken.
@@ -2025,17 +2072,12 @@ Version: %s
&Website
-
-
- &Automatisch detecteren
-
-
-
+
Gebruik systeem standaardtaal, indien mogelijk.
-
+
%s als taal in OpenLP gebruiken
@@ -2080,27 +2122,27 @@ Version: %s
Weergave modus naar Live.
-
+
Nieuwe OpenLP versie beschikbaar
-
+
OpenLP projectie op zwart
-
+
Projectie is uitgeschakeld: scherm staat op zwart
-
+
Standaardthema: %s
-
+
@@ -2120,12 +2162,12 @@ U kunt de laatste versie op http://openlp.org/ downloaden.
&Sneltoetsen instellen...
-
+
OpenLP afsluiten
-
+
OpenLP afsluiten?
@@ -2154,11 +2196,16 @@ U kunt de laatste versie op http://openlp.org/ downloaden.
+
+
+
+
+
OpenLP.MediaManagerItem
-
+
Niets geselecteerd
@@ -2436,29 +2483,29 @@ U kunt de laatste versie op http://openlp.org/ downloaden.
&Wijzig onderdeel thema
-
+
Geen geldig liturgie bestand.
Tekst codering is geen UTF-8.
-
+
Geen geldig liturgie bestand.
-
+
Ontbrekende weergave regelaar
-
+
Dit onderdeel kan niet weergegeven worden, omdat er een regelaar ontbreekt
-
+
Dit onderdeel kan niet weergegeven worden omdat de benodigde plugin ontbreekt of inactief is
@@ -2488,7 +2535,7 @@ Tekst codering is geen UTF-8.
Open bestand
-
+
OpenLP liturgie bestanden (*.osz)
@@ -3970,99 +4017,109 @@ Tekst codering is geen UTF-8.
Bestandslocatie
-
+
liedgebruik_details_%s_%s.txt
-
+
-
+
+
+
+
+
+
+
+
+
+
+
SongsPlugin
-
+
&Lied
-
+
Importeer liederen met de lied assistent.
-
+
<strong>Lied plugin</strong><br />De lied plugin regelt de weergave en het beheer van liederen.
-
+
He&r-indexeer liederen
-
+
Her-indexxer de liederen in de database om het zoeken en ordenen te verbeteren.
-
+
Liederen her-indexeren...
-
+
Voeg nieuw lied toe
-
+
Bewerk geselecteerde lied
-
+
Verwijder geselecteerde lied
-
+
Toon voorbeeld geselecteerd lied
-
+
Toon lied Live
-
+
Voeg geselecteerde lied toe aan de liturgie
-
+
name singular
Lied
-
+
name plural
Lieder
-
+
container title
Liederen
@@ -4159,7 +4216,7 @@ een correcte weergave van lettertekens.
Meestal voldoet de suggestie van OpenLP.
-
+
@@ -4615,12 +4672,12 @@ Meestal voldoet de suggestie van OpenLP.
Liedtekst
-
+
Delete Song(s)?
-
+
CCLI Licentie:
@@ -4630,7 +4687,7 @@ Meestal voldoet de suggestie van OpenLP.
Gehele lied
-
+
Weet u zeker dat u deze %n lied(eren) wilt verwijderen?
diff --git a/resources/i18n/pt_BR.ts b/resources/i18n/pt_BR.ts
index a36e643a5..681764422 100644
--- a/resources/i18n/pt_BR.ts
+++ b/resources/i18n/pt_BR.ts
@@ -212,7 +212,7 @@ Você gostaria de continuar de qualquer maneira?
-
+
@@ -841,59 +841,59 @@ com o uso, portanto uma conexão com a internet é necessária.
ImagePlugin
-
+
<strong>Plugin de Imagens</strong><br />O plugin de imagens fornece a exibição de imagens.<br />Uma das funcionalidades importantes deste plugin é a habilidade de agrupar várias imagens na Lista de Exibição, facilitando a exibição de várias imagens. Este plugin também pode usar a funcionalidade de "loop temporizado" do OpenLP para criar uma apresentação de slides que é executada automaticamente. Além disso, imagens do plugin podem ser usadas em sobreposição ao plano de fundo do tema atual, exibindo itens baseados em texto como músicas com a imagem selecionada ao fundo ao invés do plano de fundo fornecido pelo tema.
-
+
Carregar um nova Imagem
-
+
Adicionar uma nova Imagem
-
+
Editar a Imagem selecionada
-
+
Excluir a Imagem selecionada
-
+
Visualizar a Imagem selecionada
-
+
Projetar a Imagem selecionada
-
+
Adicionar Imagem selecionada à Lista de Exibição
-
+
name singular
Imagem
-
+
name plural
Imagens
-
+
container title
Imagens
@@ -950,59 +950,59 @@ Deseja continuar adicionando as outras imagens?
MediaPlugin
-
+
<strong>Plugin de Mídia</strong><br />O plugin de mídia faz a reprodução de áudio e vídeo.
-
+
Carregar nova Mídia
-
+
Adicionar nova Mídia
-
+
Editar Mídia selecionada
-
+
Excluir a Mídia selecionada
-
+
Pré-visualizar a Mídia selecionada
-
+
Projetar a Mídia selecionada
-
+
Adicionar a Mídia selecionada à Lista de Exibição
-
+
name singular
Mídia
-
+
name plural
Mídia
-
+
container title
Mídia
@@ -1106,17 +1106,6 @@ O OpenLP é escrito e mantido por voluntários. Se você gostaria de contribuir
compilação %s
-
-
-
- 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
-
@@ -1192,6 +1181,15 @@ Final Credit
He has set us free.
+
+
+
+
+
OpenLP.AdvancedTab
@@ -1295,18 +1293,18 @@ Final Credit
-
- Id da Etiqueta
+
+
-
- Html Inicial
+
+
-
- Html Final
+
+
@@ -1472,151 +1470,200 @@ Agradecemos se for possível escrever seu relatório em inglês.
OpenLP.FirstTimeLanguageForm
-
-
+
+
-
-
+
+
+
+
+
+
+
OpenLP.FirstTimeWizard
-
-
- Músicas
-
-
-
-
- Bíblias
-
-
-
-
- Temas
-
-
-
-
+
+
-
-
+
+
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
-
-
+
+
-
+
-
+
-
+
+
+ Músicas
+
+
+
-
+
Bíblia
-
+
Imagens
-
+
Apresentações
-
+
-
+
-
+
-
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
+
+
+
+
+
+
+
+
+
+
@@ -1741,12 +1788,12 @@ Agradecemos se for possível escrever seu relatório em inglês.
OpenLP.LanguageManager
-
+
Idioma
-
+
Por favor reinicie o OpenLP para usar a nova configuração de idioma.
@@ -2052,17 +2099,12 @@ Agradecemos se for possível escrever seu relatório em inglês.
&Web Site
-
-
- &Auto-detectar
-
-
-
+
Usar o idioma do sistema, caso disponível.
-
+
Definir o idioma da interface como %s
@@ -2107,7 +2149,7 @@ Agradecemos se for possível escrever seu relatório em inglês.
Configurar o modo de visualização como Projeção.
-
+
@@ -2116,22 +2158,22 @@ You can download the latest version from http://openlp.org/.
Voce pode baixar a versão mais nova em http://openlp.org/.
-
+
Versão do OpenLP Atualizada
-
+
Tela Principal do OpenLP em Branco
-
+
A Tela Principal foi apagada
-
+
Tema padrão: %s
@@ -2147,12 +2189,12 @@ Voce pode baixar a versão mais nova em http://openlp.org/.
Configurar &Atalhos...
-
+
Fechar o OpenLP
-
+
Você tem certeza de que quer fechar o OpenLP?
@@ -2181,11 +2223,16 @@ Voce pode baixar a versão mais nova em http://openlp.org/.
Abrir a pasta na qual músicas, Bíblias e outros arquivos são armazenados.
+
+
+
+
+
OpenLP.MediaManagerItem
-
+
Nenhum Item Selecionado
@@ -2463,29 +2510,29 @@ Voce pode baixar a versão mais nova em http://openlp.org/.
&Alterar Tema do Item
-
+
O arquivo não é uma lista válida.
A codificação do conteúdo não é UTF-8.
-
+
Arquivo não é uma Lista de Exibição válida.
-
+
-
+
-
+
O item não pode ser exibido porque o plugin necessário para visualizá-lo está faltando ou está inativo
@@ -2515,7 +2562,7 @@ A codificação do conteúdo não é UTF-8.
Abrir Arquivo
-
+
Listas de Exibição do OpenLP (*.osz)
@@ -3997,17 +4044,17 @@ A codificação do conteúdo não é UTF-8.
Local do arquivo de saída
-
+
detalhe_uso_%s_%s.txt
-
+
Criação de Relatório
-
+
@@ -4015,83 +4062,93 @@ has been successfully created.
%s
foi criado com sucesso.
+
+
+
+
+
+
+
+
+
+
SongsPlugin
-
+
&Música
-
+
Importar músicas com o assistente de importação.
-
+
<strong>Plugin de Músicas</strong><br />O plugin de músicas provê a habilidade de exibir e gerenciar músicas.
-
+
&Re-indexar Músicas
-
+
Re-indexar o banco de dados de músicas para melhorar a busca e a ordenação.
-
+
Reindexando músicas...
-
+
Adicionar uma nova Música
-
+
Editar a Música selecioanda
-
+
Apagar a Música selecionada
-
+
Pré-visualizar a Música selecionada
-
+
Projetar a Música selecionada
-
+
Adicionar a Música selecionada à Lista de Exibição
-
+
name singular
Música
-
+
name plural
Músicas
-
+
container title
Músicas
@@ -4188,7 +4245,7 @@ The encoding is responsible for the correct character representation.
A codificação é responsável pela correta representação dos caracteres.
-
+
Exportar músicas utilizando o assistente.
@@ -4644,12 +4701,12 @@ A codificação é responsável pela correta representação dos caracteres.Letra
-
+
Apagar Música(s)?
-
+
Licença CCLI:
@@ -4659,7 +4716,7 @@ A codificação é responsável pela correta representação dos caracteres.Música Inteira
-
+
Tem certeza de que quer apagar as %n música(s) selecionadas?
diff --git a/resources/i18n/ru.ts b/resources/i18n/ru.ts
index b9d77073b..bfecb65cb 100644
--- a/resources/i18n/ru.ts
+++ b/resources/i18n/ru.ts
@@ -211,7 +211,7 @@ Do you want to continue anyway?
-
+
@@ -831,60 +831,60 @@ demand and thus an internet connection is required.
ImagePlugin
-
+
<strong>Плагин Изображений</strong><br />Плагин изображений позволяет отображать изображения.<br />Одной из отличительных возможностей этого плагина является возможность группировать выбранные изображение в менеджере служения, что делает работу с большим количеством изображений более легкой. Этот плагин также позволяет использовать возможности "временной петли" OpenLP, чтобы создавать слайд-шоу, которые выполняются автоматически. В дополнение к этому, изображения из плагина могут быть использованы, чтобы заменить текущий фон, что позволяет отображать текстовые элементы, такие как песни, с выбранным изображением в качестве фона, вместо фона, который указан в теме.
-
+
name singular
Изображение
-
+
name plural
Изображения
-
+
container title
Изображения
-
+
Загрузить новое Изображение
-
+
Добавить новое Изображение
-
+
Изменить выбранное изображение
-
+
Удалить выбранное изображение
-
+
Просмотреть выбранное Изображение
-
+
Послать выбранное Изображение на проектор
-
+
Добавить выбранное изображение к Служению
@@ -940,60 +940,60 @@ Do you want to add the other images anyway?
MediaPlugin
-
+
<strong>Плагин Медиа</strong><br />Плагин Медиа обеспечивает проигрывание аудио и видео файлов.
-
+
name singular
Медиа
-
+
name plural
Медиа
-
+
container title
Медиа
-
+
Открыть новый медиафайл
-
+
Добавить новый медиафайл
-
+
Редактировать выбранный медиафайл
-
+
Удалить выбранный медиафайл
-
+
Предпросмотр выбранного медиафайла
-
+
Отправить выбранный медиафайл на проектор
-
+
Добавить выбранный медиафайл к служению
@@ -1090,14 +1090,6 @@ OpenLP is written and maintained by volunteers. If you would like to see more fr
Билд %s
-
-
-
-
-
@@ -1173,6 +1165,15 @@ Final Credit
He has set us free.
+
+
+
+
+
OpenLP.AdvancedTab
@@ -1276,17 +1277,17 @@ Final Credit
-
+
-
+
-
+
@@ -1424,151 +1425,200 @@ Version: %s
OpenLP.FirstTimeLanguageForm
-
-
+
+
-
-
+
+
+
+
+
+
+
OpenLP.FirstTimeWizard
-
-
- Псалмы
-
-
-
-
- Священное Писание
-
-
-
-
+
+
-
-
+
+
-
-
+
+
-
+
+
+
+
+
+
+
+
+
+
+
-
+
-
-
+
+
-
+
-
+
-
+
+
+ Псалмы
+
+
+
-
+
Библия
-
+
Изображения
-
+
-
+
-
+
-
+
-
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
+
+
+
+
+
+
+
+
+
+
@@ -1693,12 +1743,12 @@ Version: %s
OpenLP.LanguageManager
-
+
-
+
@@ -2019,17 +2069,12 @@ Version: %s
&Веб-сайт
-
-
- &Автоопределение
-
-
-
+
Использовать системный язык, если доступно.
-
+
Изменить язык интерфеса на %s
@@ -2074,39 +2119,39 @@ Version: %s
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -2131,11 +2176,16 @@ You can download the latest version from http://openlp.org/.
+
+
+
+
+
OpenLP.MediaManagerItem
-
+
@@ -2463,7 +2513,7 @@ You can download the latest version from http://openlp.org/.
-
+
@@ -2473,28 +2523,28 @@ You can download the latest version from http://openlp.org/.
-
+
-
+
-
+
-
+
-
+
@@ -3945,22 +3995,32 @@ The content encoding is not UTF-8.
-
+
-
+
-
+
+
+
+
+
+
+
+
+
+
+
SongsPlugin
@@ -4053,85 +4113,85 @@ The encoding is responsible for the correct character representation.
-
+
-
+
-
+
-
+
-
+
-
+
-
+
name singular
-
+
name plural
Псалмы
-
+
container title
Псалмы
-
+
Добавить новый Псалом
-
+
Редактировать выбранный Псалом
-
+
Удалить выбранный Псалом
-
+
Прсомотреть выбранный Псалом
-
+
Вывести выбранный псалом на Проектор
-
+
Добавить выбранный Псалом к служению
-
+
@@ -4592,12 +4652,12 @@ The encoding is responsible for the correct character representation.
-
+
-
+
@@ -4606,7 +4666,7 @@ The encoding is responsible for the correct character representation.
-
+
diff --git a/resources/i18n/sv.ts b/resources/i18n/sv.ts
index fc97c08a0..1c5d7eb81 100644
--- a/resources/i18n/sv.ts
+++ b/resources/i18n/sv.ts
@@ -211,7 +211,7 @@ Do you want to continue anyway?
-
+
@@ -832,59 +832,59 @@ demand and thus an internet connection is required.
ImagePlugin
-
+
-
+
Ladda en ny bild
-
+
Lägg till en ny bild
-
+
Redigera vald bild
-
+
Ta bort vald bild
-
+
Förhandsgranska vald bild
-
+
-
+
-
+
name singular
Bild
-
+
name plural
Bilder
-
+
container title
Bilder
@@ -941,59 +941,59 @@ Vill du lägga till dom andra bilderna ändå?
MediaPlugin
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
name singular
Media
-
+
name plural
Media
-
+
container title
Media
@@ -1091,14 +1091,6 @@ OpenLP is written and maintained by volunteers. If you would like to see more fr
-
-
-
-
-
@@ -1174,6 +1166,15 @@ Final Credit
He has set us free.
+
+
+
+
+
OpenLP.AdvancedTab
@@ -1277,17 +1278,17 @@ Final Credit
-
+
-
+
-
+
@@ -1425,151 +1426,200 @@ Version: %s
OpenLP.FirstTimeLanguageForm
-
-
+
+
-
-
+
+
+
+
+
+
+
OpenLP.FirstTimeWizard
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
+
-
+
-
-
+
+
-
+
-
+
-
+
+
+
+
+
+
-
+
Bibel
-
+
Bilder
-
+
-
+
-
+
-
+
-
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
+
+
+
+
+
+
+
+
+
+
@@ -1694,12 +1744,12 @@ Version: %s
OpenLP.LanguageManager
-
+
Språk
-
+
Vänligen starta om OpenLP för att aktivera dina nya språkinställningar.
@@ -2005,17 +2055,12 @@ Version: %s
&Webbsida
-
-
- Välj &automatiskt
-
-
-
+
Använd systemspråket om möjligt.
-
+
Sätt användargränssnittets språk till %s
@@ -2060,29 +2105,29 @@ Version: %s
-
+
-
+
OpenLP-versionen uppdaterad
-
+
OpenLPs huvuddisplay rensad
-
+
Huvuddisplayen har rensats
-
+
Standardtema: %s
@@ -2098,12 +2143,12 @@ You can download the latest version from http://openlp.org/.
-
+
-
+
@@ -2132,11 +2177,16 @@ You can download the latest version from http://openlp.org/.
+
+
+
+
+
OpenLP.MediaManagerItem
-
+
Inget objekt valt
@@ -2414,28 +2464,28 @@ You can download the latest version from http://openlp.org/.
&Byt objektets tema
-
+
-
+
-
+
-
+
-
+
@@ -2465,7 +2515,7 @@ The content encoding is not UTF-8.
-
+
@@ -3946,99 +3996,109 @@ The content encoding is not UTF-8.
Utfil sökväg
-
+
-
+
-
+
+
+
+
+
+
+
+
+
+
+
SongsPlugin
-
+
&Sång
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
name singular
Sång
-
+
name plural
Sånger
-
+
container title
Sånger
@@ -4132,7 +4192,7 @@ The encoding is responsible for the correct character representation.
-
+
@@ -4588,12 +4648,12 @@ The encoding is responsible for the correct character representation.
Sångtexter
-
+
-
+
@@ -4603,7 +4663,7 @@ The encoding is responsible for the correct character representation.
-
+
diff --git a/resources/i18n/zh_CN.ts b/resources/i18n/zh_CN.ts
new file mode 100644
index 000000000..1292d0c54
--- /dev/null
+++ b/resources/i18n/zh_CN.ts
@@ -0,0 +1,4929 @@
+
+
+
+ AlertPlugin.AlertForm
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ AlertsPlugin
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ name singular
+
+
+
+
+
+ name plural
+
+
+
+
+
+ container title
+
+
+
+
+ AlertsPlugin.AlertForm
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ AlertsPlugin.AlertsManager
+
+
+
+
+
+
+
+ AlertsPlugin.AlertsTab
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ BibleDB.Wizard
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Importing verses from <book name>...
+
+
+
+
+
+
+
+
+
+ BiblePlugin.HTTPBible
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ BiblePlugin.MediaItem
+
+
+
+
+
+
+
+
+
+
+
+
+ BiblesPlugin
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ name singular
+
+
+
+
+
+ name plural
+
+
+
+
+
+ container title
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ BiblesPlugin.BibleManager
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ BiblesPlugin.BiblesTab
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ BiblesPlugin.ImportWizardForm
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ BiblesPlugin.MediaItem
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ BiblesPlugin.Opensong
+
+
+
+ Importing <book name> <chapter>...
+
+
+
+
+ BiblesPlugin.OsisImport
+
+
+
+
+
+
+
+
+ Importing <book name> <chapter>...
+
+
+
+
+ CustomPlugin
+
+
+
+
+
+
+
+ CustomPlugin.CustomTab
+
+
+
+
+
+
+
+
+
+
+
+
+ CustomPlugin.EditCustomForm
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ CustomsPlugin
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ name singular
+
+
+
+
+
+ name plural
+
+
+
+
+
+ container title
+
+
+
+
+ ImagePlugin
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ name singular
+
+
+
+
+
+ name plural
+
+
+
+
+
+ container title
+
+
+
+
+ ImagePlugin.ExceptionDialog
+
+
+
+
+
+
+
+ ImagePlugin.MediaItem
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ MediaPlugin
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ name singular
+
+
+
+
+
+ name plural
+
+
+
+
+
+ container title
+
+
+
+
+ MediaPlugin.MediaItem
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ MediaPlugin.MediaTab
+
+
+
+
+
+
+
+
+
+
+
+
+ OpenLP
+
+
+
+
+
+
+
+ OpenLP.AboutForm
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ OpenLP.AdvancedTab
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ OpenLP.DisplayTagDialog
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ OpenLP.DisplayTagTab
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ OpenLP.ExceptionDialog
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ OpenLP.ExceptionForm
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Please add the information that bug reports are favoured written in English.
+
+
+
+
+ OpenLP.FileRenameForm
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ OpenLP.FirstTimeLanguageForm
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ OpenLP.FirstTimeWizard
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ OpenLP.GeneralTab
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ OpenLP.LanguageManager
+
+
+
+
+
+
+
+
+
+
+
+
+ OpenLP.MainDisplay
+
+
+
+
+
+
+
+ OpenLP.MainWindow
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Please add the name of your language here
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ OpenLP.MediaManagerItem
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ OpenLP.PluginForm
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ OpenLP.PrintServiceDialog
+
+
+
+
+
+
+
+
+
+
+
+
+ OpenLP.PrintServiceForm
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ OpenLP.ScreenList
+
+
+
+
+
+
+
+
+
+
+
+
+ OpenLP.ServiceItemEditForm
+
+
+
+
+
+
+
+ OpenLP.ServiceManager
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ OpenLP.ServiceNoteForm
+
+
+
+
+
+
+
+ OpenLP.SettingsForm
+
+
+
+
+
+
+
+ OpenLP.ShortcutListDialog
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ OpenLP.SlideController
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ OpenLP.SpellTextEdit
+
+
+
+
+
+
+
+
+
+
+
+
+ OpenLP.StartTimeForm
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ OpenLP.ThemeForm
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ OpenLP.ThemeManager
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ OpenLP.ThemeWizard
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ OpenLP.ThemesTab
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ OpenLP.Ui
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Abbreviated font pointsize unit
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Singular
+
+
+
+
+
+ Plural
+
+
+
+
+
+ Singular
+
+
+
+
+
+ Plural
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ The abbreviated unit for seconds
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Singular
+
+
+
+
+
+ Plural
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ A file type e.g. OpenSong
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Singular
+
+
+
+
+
+ Plural
+
+
+
+
+
+ Copyright symbol.
+
+
+
+
+
+ Singular
+
+
+
+
+
+ Plural
+
+
+
+
+
+
+
+
+
+
+ Singular
+
+
+
+
+
+ Plural
+
+
+
+
+ OpenLP.displayTagDialog
+
+
+
+
+
+
+
+ PresentationPlugin
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ name singular
+
+
+
+
+
+ name plural
+
+
+
+
+
+ container title
+
+
+
+
+ PresentationPlugin.MediaItem
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ PresentationPlugin.PresentationTab
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ RemotePlugin
+
+
+
+
+
+
+
+
+ name singular
+
+
+
+
+
+ name plural
+
+
+
+
+
+ container title
+
+
+
+
+ RemotePlugin.RemoteTab
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ SongUsagePlugin
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ name singular
+
+
+
+
+
+ name plural
+
+
+
+
+
+ container title
+
+
+
+
+ SongUsagePlugin.SongUsageDeleteForm
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ SongUsagePlugin.SongUsageDetailForm
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ SongsPlugin
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ name singular
+
+
+
+
+
+ name plural
+
+
+
+
+
+ container title
+
+
+
+
+
+
+
+
+
+ SongsPlugin.AuthorsForm
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ SongsPlugin.CCLIFileImport
+
+
+
+
+
+
+
+ SongsPlugin.EditSongForm
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ SongsPlugin.EditVerseForm
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ SongsPlugin.ExportWizardForm
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ SongsPlugin.ImportWizardForm
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ SongsPlugin.MediaItem
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ SongsPlugin.OpenLPSongImport
+
+
+
+
+
+
+
+ SongsPlugin.OpenLyricsExport
+
+
+
+
+
+
+
+ SongsPlugin.SongBookForm
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ SongsPlugin.SongExportForm
+
+
+
+
+
+
+
+
+
+
+
+
+ SongsPlugin.SongImport
+
+
+
+
+
+
+
+ SongsPlugin.SongImportForm
+
+
+
+
+
+
+
+ SongsPlugin.SongMaintenanceForm
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ SongsPlugin.SongsTab
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ SongsPlugin.TopicsForm
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ SongsPlugin.VerseType
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+