From b1c27d98a4976ebeb45be9bb75ea5b933e6d6866 Mon Sep 17 00:00:00 2001 From: Philip Ridout Date: Sun, 10 Jun 2012 21:57:36 +0100 Subject: [PATCH 01/76] Fixes 1011286 Song Editor -> Edit All Crashes with out valid verse splitter Fixes: https://launchpad.net/bugs/1011286 --- openlp/plugins/songs/forms/editverseform.py | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/openlp/plugins/songs/forms/editverseform.py b/openlp/plugins/songs/forms/editverseform.py index 21285f39d..ad1acc06d 100644 --- a/openlp/plugins/songs/forms/editverseform.py +++ b/openlp/plugins/songs/forms/editverseform.py @@ -189,8 +189,14 @@ class EditVerseForm(QtGui.QDialog, Ui_EditVerseDialog): if self.hasSingleVerse: value = unicode(self.getVerse()[0]) else: - log.debug(unicode(self.getVerse()[0]).split(u'\n')) - value = unicode(self.getVerse()[0]).split(u'\n')[1] + lines = unicode(self.getVerse()[0]).split(u'\n') + log.debug(lines) + if len(lines) <= 1: + critical_error_message_box( + message=translate('SongsPlugin.EditSongForm', + 'Invalid entry, you need a verse splitter and some text.')) + return False + value = lines[1] if not value: lines = unicode(self.getVerse()[0]).split(u'\n') index = 2 From f51d270ba8599b42961eac957ef43ddafe301e72 Mon Sep 17 00:00:00 2001 From: Philip Ridout Date: Mon, 11 Jun 2012 07:12:23 +0100 Subject: [PATCH 02/76] Removed debug.log statment --- openlp/plugins/songs/forms/editverseform.py | 1 - 1 file changed, 1 deletion(-) diff --git a/openlp/plugins/songs/forms/editverseform.py b/openlp/plugins/songs/forms/editverseform.py index ad1acc06d..203f21b19 100644 --- a/openlp/plugins/songs/forms/editverseform.py +++ b/openlp/plugins/songs/forms/editverseform.py @@ -190,7 +190,6 @@ class EditVerseForm(QtGui.QDialog, Ui_EditVerseDialog): value = unicode(self.getVerse()[0]) else: lines = unicode(self.getVerse()[0]).split(u'\n') - log.debug(lines) if len(lines) <= 1: critical_error_message_box( message=translate('SongsPlugin.EditSongForm', From 6124de5a51282378eb5f0ed23e76efa64ba6f600 Mon Sep 17 00:00:00 2001 From: Philip Ridout Date: Sat, 16 Jun 2012 09:20:23 +0100 Subject: [PATCH 03/76] Removed input validation on "Edit All" Dialog, as per Raouls comment on my previous merge request --- openlp/plugins/songs/forms/editverseform.py | 19 ++----------------- 1 file changed, 2 insertions(+), 17 deletions(-) diff --git a/openlp/plugins/songs/forms/editverseform.py b/openlp/plugins/songs/forms/editverseform.py index 203f21b19..1c00217b6 100644 --- a/openlp/plugins/songs/forms/editverseform.py +++ b/openlp/plugins/songs/forms/editverseform.py @@ -187,24 +187,9 @@ class EditVerseForm(QtGui.QDialog, Ui_EditVerseDialog): def accept(self): if self.hasSingleVerse: - value = unicode(self.getVerse()[0]) - else: - lines = unicode(self.getVerse()[0]).split(u'\n') - if len(lines) <= 1: + if not self.getVerse()[0]: critical_error_message_box( message=translate('SongsPlugin.EditSongForm', - 'Invalid entry, you need a verse splitter and some text.')) + 'You need to type some text in to the verse.')) return False - value = lines[1] - if not value: - lines = unicode(self.getVerse()[0]).split(u'\n') - index = 2 - while index < len(lines) and not value: - value = lines[index] - index += 1 - if not value: - critical_error_message_box( - message=translate('SongsPlugin.EditSongForm', - 'You need to type some text in to the verse.')) - return False QtGui.QDialog.accept(self) From d41f69ce8cd11b79da163c3b19743cab381467bf Mon Sep 17 00:00:00 2001 From: Philip Ridout Date: Wed, 11 Jul 2012 21:41:31 +0100 Subject: [PATCH 04/76] Fixes 1011286 Song Editor -> Edit All Crashes with out valid verse splitter. Plus a small bit of refactoring --- openlp/plugins/songs/forms/editverseform.py | 19 ++++++++++++++++--- 1 file changed, 16 insertions(+), 3 deletions(-) diff --git a/openlp/plugins/songs/forms/editverseform.py b/openlp/plugins/songs/forms/editverseform.py index 1c00217b6..8493825b0 100644 --- a/openlp/plugins/songs/forms/editverseform.py +++ b/openlp/plugins/songs/forms/editverseform.py @@ -186,10 +186,23 @@ class EditVerseForm(QtGui.QDialog, Ui_EditVerseDialog): return text def accept(self): - if self.hasSingleVerse: - if not self.getVerse()[0]: + value = unicode(self.getVerse()[0]) + if not self.hasSingleVerse: + value = value.split(u'\n') + if len(value) <= 1: critical_error_message_box( message=translate('SongsPlugin.EditSongForm', - 'You need to type some text in to the verse.')) + 'Invalid entry, you need a verse splitter and some text.')) return False + if not value: + lines = unicode(self.getVerse()[0]).split(u'\n') + index = 2 + while index < len(lines) and not value: + value = lines[index] + index += 1 + if not value: + critical_error_message_box( + message=translate('SongsPlugin.EditSongForm', + 'You need to type some text in to the verse.')) + return False QtGui.QDialog.accept(self) From 33510c3346ba264331749a6fd400c0449875669a Mon Sep 17 00:00:00 2001 From: Philip Ridout Date: Sat, 14 Jul 2012 18:53:24 +0100 Subject: [PATCH 05/76] Refactored validation of edit all form so that it does not crash on empty textedit, and so that it does not allow empty verses. Ideally we would accept empty verses, but these are removed automatically else where. Changed the save button to OK as per the reasons in my email. --- openlp/plugins/songs/forms/editversedialog.py | 2 +- openlp/plugins/songs/forms/editverseform.py | 15 ++------------- 2 files changed, 3 insertions(+), 14 deletions(-) diff --git a/openlp/plugins/songs/forms/editversedialog.py b/openlp/plugins/songs/forms/editversedialog.py index fb5698c88..7cc7670bf 100644 --- a/openlp/plugins/songs/forms/editversedialog.py +++ b/openlp/plugins/songs/forms/editversedialog.py @@ -66,7 +66,7 @@ class Ui_EditVerseDialog(object): self.verseTypeLayout.addStretch() self.dialogLayout.addLayout(self.verseTypeLayout) self.buttonBox = create_button_box(editVerseDialog, u'buttonBox', - [u'cancel', u'save']) + [u'cancel', u'ok']) self.dialogLayout.addWidget(self.buttonBox) self.retranslateUi(editVerseDialog) diff --git a/openlp/plugins/songs/forms/editverseform.py b/openlp/plugins/songs/forms/editverseform.py index 8493825b0..417707844 100644 --- a/openlp/plugins/songs/forms/editverseform.py +++ b/openlp/plugins/songs/forms/editverseform.py @@ -188,21 +188,10 @@ class EditVerseForm(QtGui.QDialog, Ui_EditVerseDialog): def accept(self): value = unicode(self.getVerse()[0]) if not self.hasSingleVerse: - value = value.split(u'\n') - if len(value) <= 1: - critical_error_message_box( - message=translate('SongsPlugin.EditSongForm', - 'Invalid entry, you need a verse splitter and some text.')) - return False - if not value: - lines = unicode(self.getVerse()[0]).split(u'\n') - index = 2 - while index < len(lines) and not value: - value = lines[index] - index += 1 + value = not u'' in re.split(r'---\[[^\]]*\]---\n*', value)[1:] if not value: critical_error_message_box( message=translate('SongsPlugin.EditSongForm', - 'You need to type some text in to the verse.')) + 'You must enter text for each verse.')) return False QtGui.QDialog.accept(self) From 22c3c76a5ac581b7e7c71dca3c676f976c4429ed Mon Sep 17 00:00:00 2001 From: Philip Ridout Date: Sat, 14 Jul 2012 21:35:19 +0100 Subject: [PATCH 06/76] Fixes https://bugs.launchpad.net/openlp/+bug/1015524 Note: If a title is not present in the song, it is still added. I feel this is the right action, as it apears that that is how it was in Foil Presenter --- .../plugins/songs/lib/foilpresenterimport.py | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/openlp/plugins/songs/lib/foilpresenterimport.py b/openlp/plugins/songs/lib/foilpresenterimport.py index 2f17f02bc..f77b2f379 100644 --- a/openlp/plugins/songs/lib/foilpresenterimport.py +++ b/openlp/plugins/songs/lib/foilpresenterimport.py @@ -483,8 +483,9 @@ class FoilPresenter(object): # Process verse order verse_order = [] verse_strophenr = [] - for strophennummer in foilpresenterfolie.reihenfolge.strophennummer: - verse_strophenr.append(strophennummer) + if hasattr(foilpresenterfolie, u'reihenfolge.strophennummer'): + for strophennummer in foilpresenterfolie.reihenfolge.strophennummer: + verse_strophenr.append(strophennummer) # Currently we do not support different "parts"! if u'0' in temp_verse_order: for vers in temp_verse_order_backup: @@ -538,12 +539,13 @@ class FoilPresenter(object): ``song`` The song object. """ - for title_string in foilpresenterfolie.titel.titelstring: - if not song.title: - song.title = self._child(title_string) - song.alternate_title = u'' - else: - song.alternate_title = self._child(title_string) + if hasattr(foilpresenterfolie, u'titel.titelstring'): + for title_string in foilpresenterfolie.titel.titelstring: + if not song.title: + song.title = self._child(title_string) + song.alternate_title = u'' + else: + song.alternate_title = self._child(title_string) def _process_topics(self, foilpresenterfolie, song): """ From b37bf5022c3b42146dc4109f2b5a21ddf2a520ed Mon Sep 17 00:00:00 2001 From: Philip Ridout Date: Sat, 14 Jul 2012 22:10:20 +0100 Subject: [PATCH 07/76] Now uses the first line of the first verse if no title present --- openlp/plugins/songs/lib/foilpresenterimport.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/openlp/plugins/songs/lib/foilpresenterimport.py b/openlp/plugins/songs/lib/foilpresenterimport.py index f77b2f379..744fafcf8 100644 --- a/openlp/plugins/songs/lib/foilpresenterimport.py +++ b/openlp/plugins/songs/lib/foilpresenterimport.py @@ -546,6 +546,11 @@ class FoilPresenter(object): song.alternate_title = u'' else: song.alternate_title = self._child(title_string) + else: + # Use first line of first verse + #if hasattr(foilpresenterfolie, u'strophen.strophe'): + first_line = self._child(foilpresenterfolie.strophen.strophe.text_) + song.title = first_line.split('\n')[0] def _process_topics(self, foilpresenterfolie, song): """ From ae37f749f1e39b56ab45696308b738cfab0a4291 Mon Sep 17 00:00:00 2001 From: Philip Ridout Date: Sun, 15 Jul 2012 09:03:37 +0100 Subject: [PATCH 08/76] A real fix this time! --- openlp/plugins/songs/lib/foilpresenterimport.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/openlp/plugins/songs/lib/foilpresenterimport.py b/openlp/plugins/songs/lib/foilpresenterimport.py index 744fafcf8..0397d41cb 100644 --- a/openlp/plugins/songs/lib/foilpresenterimport.py +++ b/openlp/plugins/songs/lib/foilpresenterimport.py @@ -483,9 +483,11 @@ class FoilPresenter(object): # Process verse order verse_order = [] verse_strophenr = [] - if hasattr(foilpresenterfolie, u'reihenfolge.strophennummer'): + try: for strophennummer in foilpresenterfolie.reihenfolge.strophennummer: verse_strophenr.append(strophennummer) + except AttributeError: + pass # Currently we do not support different "parts"! if u'0' in temp_verse_order: for vers in temp_verse_order_backup: @@ -539,16 +541,15 @@ class FoilPresenter(object): ``song`` The song object. """ - if hasattr(foilpresenterfolie, u'titel.titelstring'): + try: for title_string in foilpresenterfolie.titel.titelstring: if not song.title: song.title = self._child(title_string) song.alternate_title = u'' else: song.alternate_title = self._child(title_string) - else: + except AttributeError: # Use first line of first verse - #if hasattr(foilpresenterfolie, u'strophen.strophe'): first_line = self._child(foilpresenterfolie.strophen.strophe.text_) song.title = first_line.split('\n')[0] From cf1a0b27ea7b00ed5e5fe2aefc1aa29b8257037b Mon Sep 17 00:00:00 2001 From: ElderP Date: Sun, 15 Jul 2012 07:59:55 -0400 Subject: [PATCH 09/76] Added code to hide data location wizard if running portable --- openlp/core/ui/advancedtab.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/openlp/core/ui/advancedtab.py b/openlp/core/ui/advancedtab.py index 25c6f7a26..c31728a11 100644 --- a/openlp/core/ui/advancedtab.py +++ b/openlp/core/ui/advancedtab.py @@ -545,6 +545,10 @@ class AdvancedTab(SettingsTab): self.currentDataPath)) self.defaultColorButton.setStyleSheet( u'background-color: %s' % self.defaultColor) + # Don't allow data directory move if running portable. + if Settings().value(u'advanced/is portable', + QtCore.QVariant(False)).toBool(): + self.dataDirectoryGroupBox.hide() def save(self): """ From a10c56e97688876c00c65932741a7574f96ee1f7 Mon Sep 17 00:00:00 2001 From: Andreas Preikschat Date: Thu, 19 Jul 2012 19:26:04 +0200 Subject: [PATCH 10/76] fixed bug 1023585 (No handlers could be found for logger 'openlp.core.lib') Fixes: https://launchpad.net/bugs/1023585 --- openlp/core/__init__.py | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/openlp/core/__init__.py b/openlp/core/__init__.py index 13c344367..7ea737709 100644 --- a/openlp/core/__init__.py +++ b/openlp/core/__init__.py @@ -248,6 +248,13 @@ def main(args=None): # Parse command line options and deal with them. # Use args supplied programatically if possible. (options, args) = parser.parse_args(args) if args else parser.parse_args() + if options.portable: + app_path = AppLocation.get_directory(AppLocation.AppDir) + set_up_logging(os.path.abspath(os.path.join(app_path, u'..', + u'..', u'Other'))) + log.info(u'Running portable') + else: + set_up_logging(AppLocation.get_directory(AppLocation.CacheDir)) qt_args = [] if options.loglevel.lower() in ['d', 'debug']: log.setLevel(logging.DEBUG) @@ -269,10 +276,6 @@ def main(args=None): app.setApplicationName(u'OpenLPPortable') Settings.setDefaultFormat(Settings.IniFormat) # Get location OpenLPPortable.ini - app_path = AppLocation.get_directory(AppLocation.AppDir) - set_up_logging(os.path.abspath(os.path.join(app_path, u'..', - u'..', u'Other'))) - log.info(u'Running portable') portable_settings_file = os.path.abspath(os.path.join(app_path, u'..', u'..', u'Data', u'OpenLP.ini')) # Make this our settings file @@ -289,7 +292,6 @@ def main(args=None): portable_settings.sync() else: app.setApplicationName(u'OpenLP') - set_up_logging(AppLocation.get_directory(AppLocation.CacheDir)) app.setApplicationVersion(get_application_version()[u'version']) # Instance check if not options.testing: From 73ad78e3ad5cec629fbdf287075da74a8fa65077 Mon Sep 17 00:00:00 2001 From: Philip Ridout Date: Fri, 20 Jul 2012 20:25:55 +0100 Subject: [PATCH 11/76] Fix for bug:1020915 OpenSong Bible import has uncaught exception on non-xml file --- openlp/plugins/bibles/lib/opensong.py | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/openlp/plugins/bibles/lib/opensong.py b/openlp/plugins/bibles/lib/opensong.py index 706d6d451..4d8ef0ede 100644 --- a/openlp/plugins/bibles/lib/opensong.py +++ b/openlp/plugins/bibles/lib/opensong.py @@ -27,9 +27,10 @@ ############################################################################### import logging -from lxml import objectify +from lxml import etree, objectify from openlp.core.lib import Receiver, translate +from openlp.core.lib.ui import critical_error_message_box from openlp.plugins.bibles.lib.db import BibleDB, BiblesResourcesDB log = logging.getLogger(__name__) @@ -113,6 +114,13 @@ class OpenSongBible(BibleDB): (db_book.name, int(chapter.attrib[u'n'].split()[-1]))) self.session.commit() Receiver.send_message(u'openlp_process_events') + except etree.XMLSyntaxError as inst: + critical_error_message_box( + message=translate('BiblesPlugin.OpenSongImport', + 'Incorrect bible file type supplied. OpenSong bibles may be ' + 'compressed. You must decompress them before import.')) + log.exception(inst) + success = False except (IOError, AttributeError): log.exception(u'Loading bible from OpenSong file failed') success = False From e1cc13d54d8c0f574d4b8f499dc0a24e0686c288 Mon Sep 17 00:00:00 2001 From: Philip Ridout Date: Sat, 21 Jul 2012 22:32:04 +0100 Subject: [PATCH 12/76] Changed bible to Bible --- openlp/plugins/bibles/lib/opensong.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/openlp/plugins/bibles/lib/opensong.py b/openlp/plugins/bibles/lib/opensong.py index 4d8ef0ede..b31064596 100644 --- a/openlp/plugins/bibles/lib/opensong.py +++ b/openlp/plugins/bibles/lib/opensong.py @@ -117,12 +117,12 @@ class OpenSongBible(BibleDB): except etree.XMLSyntaxError as inst: critical_error_message_box( message=translate('BiblesPlugin.OpenSongImport', - 'Incorrect bible file type supplied. OpenSong bibles may be ' + 'Incorrect Bible file type supplied. OpenSong Bibles may be ' 'compressed. You must decompress them before import.')) log.exception(inst) success = False except (IOError, AttributeError): - log.exception(u'Loading bible from OpenSong file failed') + log.exception(u'Loading Bible from OpenSong file failed') success = False finally: if file: From e2184c4a0290fee58676364007e62b1aaf291e29 Mon Sep 17 00:00:00 2001 From: Tim Bentley Date: Sun, 22 Jul 2012 06:30:21 +0100 Subject: [PATCH 13/76] Add title --- openlp/plugins/custom/forms/editcustomslidedialog.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/openlp/plugins/custom/forms/editcustomslidedialog.py b/openlp/plugins/custom/forms/editcustomslidedialog.py index 6cece6be7..afbf0e776 100644 --- a/openlp/plugins/custom/forms/editcustomslidedialog.py +++ b/openlp/plugins/custom/forms/editcustomslidedialog.py @@ -49,6 +49,8 @@ class Ui_CustomSlideEditDialog(object): self.retranslateUi(customSlideEditDialog) def retranslateUi(self, customSlideEditDialog): + customSlideEditDialog.setWindowTitle( + translate('CustomPlugin.EditVerseForm', 'Edit Slide')) self.splitButton.setText(UiStrings().Split) self.splitButton.setToolTip(UiStrings().SplitToolTip) self.insertButton.setText( From 1d4e5c9430c1bac33a017516f9ef51222c76fec3 Mon Sep 17 00:00:00 2001 From: Philip Ridout Date: Sun, 22 Jul 2012 09:50:37 +0100 Subject: [PATCH 14/76] I have actually fixed the entering of verses with no text! --- openlp/core/lib/renderer.py | 2 +- openlp/plugins/songs/forms/editsongform.py | 2 +- openlp/plugins/songs/forms/editverseform.py | 11 ----------- 3 files changed, 2 insertions(+), 13 deletions(-) diff --git a/openlp/core/lib/renderer.py b/openlp/core/lib/renderer.py index 6ce51ab60..f95e29d52 100644 --- a/openlp/core/lib/renderer.py +++ b/openlp/core/lib/renderer.py @@ -450,7 +450,7 @@ class Renderer(object): previous_html, previous_raw, html_lines, lines, separator, u'') else: previous_raw = separator.join(lines) - if previous_raw: + if previous_raw or previous_raw == u'': formatted.append(previous_raw) log.debug(u'_paginate_slide - End') return formatted diff --git a/openlp/plugins/songs/forms/editsongform.py b/openlp/plugins/songs/forms/editsongform.py index 226d8baa1..17f77ce20 100644 --- a/openlp/plugins/songs/forms/editsongform.py +++ b/openlp/plugins/songs/forms/editsongform.py @@ -528,7 +528,7 @@ class EditSongForm(QtGui.QDialog, Ui_EditSongDialog): for row in self.findVerseSplit.split(verse_list): for match in row.split(u'---['): for count, parts in enumerate(match.split(u']---\n')): - if len(parts) <= 1: + if count == 0 and len(parts) <= 0: continue if count == 0: # handling carefully user inputted versetags diff --git a/openlp/plugins/songs/forms/editverseform.py b/openlp/plugins/songs/forms/editverseform.py index 417707844..2ff077814 100644 --- a/openlp/plugins/songs/forms/editverseform.py +++ b/openlp/plugins/songs/forms/editverseform.py @@ -184,14 +184,3 @@ class EditVerseForm(QtGui.QDialog, Ui_EditVerseDialog): text = u'---[%s:1]---\n%s' % \ (VerseType.TranslatedNames[VerseType.Verse], text) return text - - def accept(self): - value = unicode(self.getVerse()[0]) - if not self.hasSingleVerse: - value = not u'' in re.split(r'---\[[^\]]*\]---\n*', value)[1:] - if not value: - critical_error_message_box( - message=translate('SongsPlugin.EditSongForm', - 'You must enter text for each verse.')) - return False - QtGui.QDialog.accept(self) From c6d85d3ab84335f29a6a2ef53a6d91477ca5e7c3 Mon Sep 17 00:00:00 2001 From: Philip Ridout Date: Sun, 22 Jul 2012 21:20:53 +0100 Subject: [PATCH 15/76] Implemented gushies changes --- openlp/core/lib/renderer.py | 2 +- openlp/plugins/songs/forms/editsongform.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/openlp/core/lib/renderer.py b/openlp/core/lib/renderer.py index f95e29d52..98b6b9861 100644 --- a/openlp/core/lib/renderer.py +++ b/openlp/core/lib/renderer.py @@ -450,7 +450,7 @@ class Renderer(object): previous_html, previous_raw, html_lines, lines, separator, u'') else: previous_raw = separator.join(lines) - if previous_raw or previous_raw == u'': + if previous_raw is not None: formatted.append(previous_raw) log.debug(u'_paginate_slide - End') return formatted diff --git a/openlp/plugins/songs/forms/editsongform.py b/openlp/plugins/songs/forms/editsongform.py index 17f77ce20..261863944 100644 --- a/openlp/plugins/songs/forms/editsongform.py +++ b/openlp/plugins/songs/forms/editsongform.py @@ -528,9 +528,9 @@ class EditSongForm(QtGui.QDialog, Ui_EditSongDialog): for row in self.findVerseSplit.split(verse_list): for match in row.split(u'---['): for count, parts in enumerate(match.split(u']---\n')): - if count == 0 and len(parts) <= 0: - continue if count == 0: + if len(parts) == 0: + continue # handling carefully user inputted versetags separator = parts.find(u':') if separator >= 0: From 63dde030e51f979f6914690d911ea74e7fabcdeb Mon Sep 17 00:00:00 2001 From: Tim Bentley Date: Sat, 28 Jul 2012 08:31:42 +0100 Subject: [PATCH 16/76] Translations - outbound --- resources/i18n/af.ts | 219 +- resources/i18n/cs.ts | 219 +- resources/i18n/da.ts | 217 +- resources/i18n/de.ts | 219 +- resources/i18n/el.ts | 219 +- resources/i18n/en.ts | 223 +- resources/i18n/en_GB.ts | 223 +- resources/i18n/en_ZA.ts | 217 +- resources/i18n/es.ts | 223 +- resources/i18n/et.ts | 295 +- resources/i18n/fi.ts | 243 +- resources/i18n/fr.ts | 318 +- resources/i18n/hu.ts | 223 +- resources/i18n/id.ts | 217 +- resources/i18n/it.ts | 217 +- resources/i18n/ja.ts | 221 +- resources/i18n/ko.ts | 217 +- resources/i18n/nb.ts | 217 +- resources/i18n/nl.ts | 223 +- resources/i18n/pl.ts | 217 +- resources/i18n/pt_BR.ts | 219 +- resources/i18n/ru.ts | 217 +- resources/i18n/sk.ts | 7253 +++++++++++++++++++++++++++++++++++++++ resources/i18n/sq.ts | 217 +- resources/i18n/sv.ts | 225 +- resources/i18n/zh_CN.ts | 217 +- 26 files changed, 10611 insertions(+), 2324 deletions(-) create mode 100644 resources/i18n/sk.ts diff --git a/resources/i18n/af.ts b/resources/i18n/af.ts index d1700606c..be47daf14 100644 --- a/resources/i18n/af.ts +++ b/resources/i18n/af.ts @@ -1345,12 +1345,12 @@ vraag afgelaai word en dus is 'n internet konneksie nodig. Die Bybel is nie ten volle gelaai nie. - + Information Informasie - + The second Bible does not contain all the verses that are in the main Bible. Only verses found in both Bibles will be shown. %d verses have not been included in the results. Die tweede Bybel het nie al die verse wat in die hoof Bybel is nie. Slegs verse wat in beide Bybels voorkom, sal gewys word. %d verse is nie by die resultate ingesluit nie. @@ -1366,14 +1366,24 @@ vraag afgelaai word en dus is 'n internet konneksie nodig. - Are you sure you want to delete "%s"? - Wis "%s" sekerlik uit? + Are you sure you want to completely delete "%s" Bible from OpenLP? + +You will need to re-import this Bible to use it again. + + + + + BiblesPlugin.OpenSongImport + + + Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. + BiblesPlugin.Opensong - + Importing %s %s... Importing <book name> <chapter>... Invoer %s %s... @@ -1651,7 +1661,7 @@ word en dus is 'n Internet verbinding nodig. Redigeer al die skyfies tegelyk. - + Split a slide into two by inserting a slide splitter. Verdeel 'n skyfie deur 'n skyfie-verdeler te gebruik. @@ -1681,11 +1691,19 @@ word en dus is 'n Internet verbinding nodig. Red&igeer Alles - + Insert Slide Voeg 'n Skyfie in + + CustomPlugin.EditVerseForm + + + Edit Slide + + + CustomPlugin.MediaItem @@ -1974,7 +1992,7 @@ Voeg steeds die ander beelde by? OpenLP - + Image Files Beeld Lêers @@ -2232,7 +2250,7 @@ Gedeeltelike kopiereg © 2004-2012 %s Beeld lêer: - + Open File Maak Lêer oop @@ -2359,7 +2377,7 @@ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for Werk om X11 Venster Bestuurder - + Syntax error. Sintaks fout. @@ -2419,22 +2437,22 @@ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for Data Lêer Fout - + Select Data Directory Location Selekteer Data Lêer Ligging - + Confirm Data Directory Change Bevestig Data Lêer Verandering - + Reset Data Directory Herstel Data Lêer - + Are you sure you want to change the location of the OpenLP data directory to the default location? This location will be used after OpenLP is closed. @@ -2443,7 +2461,7 @@ This location will be used after OpenLP is closed. Hierdie ligging sal gebruik word nadat OpenLP toegemaak is. - + Overwrite Existing Data Oorskryf Bestaande Data @@ -2836,25 +2854,10 @@ Om die Eerste Keer Gids heeltemal te kanselleer (en verhoed dat OpenLP begin), k Beskrywing - + Tag Etiket - - - Start tag - Begin etiket - - - - End tag - Eind-etiket - - - - Tag Id - Etiket Id - Start HTML @@ -2869,7 +2872,7 @@ Om die Eerste Keer Gids heeltemal te kanselleer (en verhoed dat OpenLP begin), k OpenLP.FormattingTagForm - + Update Error Opdateer Fout @@ -2894,7 +2897,7 @@ Om die Eerste Keer Gids heeltemal te kanselleer (en verhoed dat OpenLP begin), k </en hier> - + Tag %s already defined. Etiket %s alreeds gedefinieër. @@ -3931,82 +3934,82 @@ Suffix not supported OpenLP.ServiceManager - + Move to &top Skuif boon&toe - + Move item to the top of the service. Skuif item tot heel bo in die diens. - + Move &up Sk&uif op - + Move item up one position in the service. Skuif item een posisie boontoe in die diens. - + Move &down Skuif &af - + Move item down one position in the service. Skuif item een posisie af in die diens. - + Move to &bottom Skuif &tot heel onder - + Move item to the end of the service. Skuif item tot aan die einde van die diens. - + &Delete From Service Wis uit vanaf die &Diens - + Delete the selected item from the service. Wis geselekteerde item van die diens af. - + &Add New Item &Voeg Nuwe Item By - + &Add to Selected Item &Voeg by Geselekteerde Item - + &Edit Item R&edigeer Item - + &Reorder Item Ve&rander Item orde - + &Notes &Notas - + &Change Item Theme &Verander Item Tema @@ -4043,72 +4046,72 @@ Die inhoud enkodering is nie UTF-8 nie. Die item kan nie vertoon word nie omdat die mini-program wat dit moet vertoon vermis of onaktief is - + &Expand all Br&ei alles uit - + Expand all the service items. Brei al die diens items uit. - + &Collapse all Sto&rt alles ineen - + Collapse all the service items. Stort al die diens items ineen. - + Open File Maak Lêer oop - + Moves the selection down the window. Skuif die geselekteerde afwaarts in die venster. - + Move up Skuif op - + Moves the selection up the window. Skuif die geselekteerde opwaarts in die venster. - + Go Live Gaan Regstreeks - + Send the selected item to Live. Stuur die geselekteerde item Regstreeks. - + &Start Time &Begin Tyd - + Show &Preview Wys &Voorskou - + Modified Service Redigeer Diens - + The current service has been modified. Would you like to save this service? Die huidige diens was verander. Stoor hierdie diens? @@ -4128,7 +4131,7 @@ Die inhoud enkodering is nie UTF-8 nie. Speel tyd: - + Untitled Service Ongetitelde Diens @@ -4153,17 +4156,17 @@ Die inhoud enkodering is nie UTF-8 nie. Korrupte Lêer - + Load an existing service. Laai 'n bestaande diens. - + Save this service. Stoor die diens. - + Select a theme for the service. Kies 'n tema vir die diens. @@ -4173,7 +4176,7 @@ Die inhoud enkodering is nie UTF-8 nie. Die lêer is óf korrup óf is nie 'n OpenLP 2.0 diens lêer nie. - + Service File Missing Diens Lêer Vermis @@ -6765,7 +6768,7 @@ Die enkodering is verantwoordelik vir die korrekte karrakter voorstelling. SongsPlugin.ImportWizardForm - + Select Document/Presentation Files Selekteer Dokument/Aanbieding Lêers @@ -6780,7 +6783,7 @@ Die enkodering is verantwoordelik vir die korrekte karrakter voorstelling.Hierdie gids help met die invoer van liedere in verskillende formate. Kliek die volgende knoppie hieronder om die proses te begin deur 'n formaat te kies wat gebruik moet word vir invoer. - + Generic Document/Presentation Generiese Dokumentasie/Aanbieding @@ -6800,37 +6803,37 @@ Die enkodering is verantwoordelik vir die korrekte karrakter voorstelling.Wag asseblief terwyl die liedere ingevoer word. - + OpenLP 2.0 Databases OpenLP 2.0 Databasisse - + openlp.org v1.x Databases openlp.org v1.x Databasisse - + Words Of Worship Song Files Words Of Worship Lied Lêers - + Songs Of Fellowship Song Files Songs Of Fellowship Lied Lêers - + SongBeamer Files SongBeamer Lêers - + SongShow Plus Song Files SongShow Plus Lied Lêers - + Foilpresenter Song Files Foilpresenter Lied Lêers @@ -6845,65 +6848,95 @@ Die enkodering is verantwoordelik vir die korrekte karrakter voorstelling.Stoor na Lêer - + The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. Die Liedere van Volgelinge invoerder is onaktief gestel omdat OpenLP nie toegang tot OpenOffice of LibreOffice het nie. - + The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. Die generiese dokument/aanbieding invoerder is onaktief gestel omdat OpenLP nie toegang tot OpenOffice of LibreOffice het nie. - + OpenLyrics or OpenLP 2.0 Exported Song OpenLyrics of OpenLP 2.0 Uitgevoerde Lied - + OpenLyrics Files OpenLyrics Lêers - + CCLI SongSelect Files CCLI SongSelect Lêers - + EasySlides XML File EeasySlides XML Lêer - + EasyWorship Song Database EasyWorship Lied Databasis - + DreamBeam Song Files DreamBeam Lied Lêers - + You need to specify a valid PowerSong 1.0 database folder. 'n Geldige PowerSong 1.0 databasis gids moet gespesifiseer word. - + ZionWorx (CSV) ZionWorx (CSV) - + First convert your ZionWorx database to a CSV text file, as explained in the <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">User Manual</a>. Verwerk eers jou ZionWorx databasis na 'n CSV teks lêer, soos verduidelik word in die <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">Gebruikers Handleiding</a>. - + SundayPlus Song Files + + + This importer has been disabled. + + + + + MediaShout Database + + + + + The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. + + + + + SongPro Text Files + + + + + SongPro (Export File) + + + + + In SongPro, export your songs using the File -> Export menu + + SongsPlugin.MediaFilesForm @@ -6985,6 +7018,14 @@ Die enkodering is verantwoordelik vir die korrekte karrakter voorstelling.Soek Lied Boeke... + + SongsPlugin.MediaShoutImport + + + Unable to open the MediaShout database. + + + SongsPlugin.OpenLP1SongImport diff --git a/resources/i18n/cs.ts b/resources/i18n/cs.ts index 8e189bd44..5aafdd306 100644 --- a/resources/i18n/cs.ts +++ b/resources/i18n/cs.ts @@ -1343,12 +1343,12 @@ demand and thus an internet connection is required. Bible není načtena celá. - + Information Informace - + The second Bible does not contain all the verses that are in the main Bible. Only verses found in both Bibles will be shown. %d verses have not been included in the results. Druhá Bible neobsahuje všechny verše jako jsou v hlavní Bibli. Budou zobrazeny jen verše nalezené v obou Biblích. %d veršů nebylo zahrnuto ve výsledcích. @@ -1364,14 +1364,24 @@ demand and thus an internet connection is required. - Are you sure you want to delete "%s"? - Jste si jisti, že chcete smazat "%s"? + Are you sure you want to completely delete "%s" Bible from OpenLP? + +You will need to re-import this Bible to use it again. + + + + + BiblesPlugin.OpenSongImport + + + Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. + BiblesPlugin.Opensong - + Importing %s %s... Importing <book name> <chapter>... Importuji %s %s... @@ -1647,7 +1657,7 @@ Upozornění: Verše z www Bible budou stáhnuty na vyžádání a proto je vyž Upravit všechny snímky najednou. - + Split a slide into two by inserting a slide splitter. Vložením oddělovače se snímek rozdělí na dva. @@ -1677,11 +1687,19 @@ Upozornění: Verše z www Bible budou stáhnuty na vyžádání a proto je vyž Upra&it vše - + Insert Slide Vložit snímek + + CustomPlugin.EditVerseForm + + + Edit Slide + + + CustomPlugin.MediaItem @@ -1971,7 +1989,7 @@ Chcete přidat ostatní obrázky? OpenLP - + Image Files Soubory s obrázky @@ -2230,7 +2248,7 @@ Portions copyright © 2004-2012 %s Soubor s obrázkem: - + Open File Otevřít soubor @@ -2357,7 +2375,7 @@ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for Obejít správce oken X11 - + Syntax error. Chyba syntaxe. @@ -2417,22 +2435,22 @@ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for Chyba datové složky - + Select Data Directory Location Vybrat umístění datové složky - + Confirm Data Directory Change Potvrdit změnu datové složky - + Reset Data Directory Obnovit datovou složku - + Are you sure you want to change the location of the OpenLP data directory to the default location? This location will be used after OpenLP is closed. @@ -2441,7 +2459,7 @@ This location will be used after OpenLP is closed. Toto umístění se použije po zavření aplikace OpenLP. - + Overwrite Existing Data Přepsat existující data @@ -2830,25 +2848,10 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can Popis - + Tag Značka - - - Start tag - Začátek značky - - - - End tag - Konec značky - - - - Tag Id - Id značky - Start HTML @@ -2863,7 +2866,7 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can OpenLP.FormattingTagForm - + Update Error Chyba aktualizace @@ -2888,7 +2891,7 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can </and zde> - + Tag %s already defined. Značka %s je už definovaná. @@ -3926,82 +3929,82 @@ Přípona není podporována OpenLP.ServiceManager - + Move to &top Přesun &nahoru - + Move item to the top of the service. Přesun položky ve službě úplně nahoru. - + Move &up Přesun &výše - + Move item up one position in the service. Přesun položky ve službě o jednu pozici výše. - + Move &down P?esun &níže - + Move item down one position in the service. P?esun položky ve služb? o jednu pozici níže. - + Move to &bottom Přesun &dolu - + Move item to the end of the service. Přesun položky ve službě úplně dolů. - + &Delete From Service &Smazat ze služby - + Delete the selected item from the service. Smazat vybranou položku ze služby. - + &Add New Item &Přidat novou položku - + &Add to Selected Item &Přidat k vybrané položce - + &Edit Item &Upravit položku - + &Reorder Item &Změnit pořadí položky - + &Notes &Poznámky - + &Change Item Theme &Změnit motiv položky @@ -4038,72 +4041,72 @@ Obsah souboru není v kódování UTF-8. Položku není možno zobrazit, protože modul potřebný pro zobrazení položky chybí nebo je neaktivní - + &Expand all &Rozvinou vše - + Expand all the service items. Rozvinout všechny položky služby. - + &Collapse all &Svinout vše - + Collapse all the service items. Svinout všechny položky služby. - + Open File Otevřít soubor - + Moves the selection down the window. Přesune výběr v rámci okna dolu. - + Move up Přesun nahoru - + Moves the selection up the window. Přesune výběr v rámci okna nahoru. - + Go Live Zobrazit naživo - + Send the selected item to Live. Zobrazí vybranou položku naživo. - + &Start Time &Spustit čas - + Show &Preview Zobrazit &náhled - + Modified Service Změněná služba - + The current service has been modified. Would you like to save this service? Současná služba byla změněna. Přejete si službu uložit? @@ -4123,7 +4126,7 @@ Obsah souboru není v kódování UTF-8. Čas přehrávání: - + Untitled Service Prázdná služba @@ -4148,17 +4151,17 @@ Obsah souboru není v kódování UTF-8. Poškozený soubor - + Load an existing service. Načíst existující službu. - + Save this service. Uložit tuto službu. - + Select a theme for the service. Vybrat motiv pro službu. @@ -4168,7 +4171,7 @@ Obsah souboru není v kódování UTF-8. Soubor je buďto poškozen nebo se nejedná o soubor se službou z aplikace OpenLP 2.0. - + Service File Missing Chybějící soubor se službou @@ -6759,7 +6762,7 @@ Kódování zodpovídá za správnou reprezentaci znaků. SongsPlugin.ImportWizardForm - + Select Document/Presentation Files Vybrat dokumentové/prezentační soubory @@ -6774,7 +6777,7 @@ Kódování zodpovídá za správnou reprezentaci znaků. Tento průvodce pomáhá importovat písně z různých formátů. Importování se spustí klepnutím níže na tlačítko další a výběrem formátu, ze kterého se bude importovat. - + Generic Document/Presentation Obecný dokument/prezentace @@ -6794,37 +6797,37 @@ Kódování zodpovídá za správnou reprezentaci znaků. Čekejte prosím, než písně budou importovány. - + OpenLP 2.0 Databases Databáze OpenLP 2.0 - + openlp.org v1.x Databases Databáze openlp.org v1.x - + Words Of Worship Song Files Soubory s písněmi Words of Worship - + Songs Of Fellowship Song Files Soubory s písněmi Songs Of Fellowship - + SongBeamer Files Soubory SongBeamer - + SongShow Plus Song Files Soubory s písněmi SongShow Plus - + Foilpresenter Song Files Soubory s písněmi Foilpresenter @@ -6839,65 +6842,95 @@ Kódování zodpovídá za správnou reprezentaci znaků. Uložit do souboru - + The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. Import ze Songs of Fellowship byl zakázán, protože aplikace OpenLP nemůže přistupovat k aplikacím OpenOffice nebo LibreOffice. - + The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. Import obecných dokumentů/prezentaci byl zakázán, protože aplikace OpenLP nemůže přistupovat k aplikacím OpenOffice nebo LibreOffice. - + OpenLyrics or OpenLP 2.0 Exported Song OpenLyrics nebo písně exportované z OpenLP 2.0 - + OpenLyrics Files Soubory OpenLyrics - + CCLI SongSelect Files Soubory CCLI SongSelect - + EasySlides XML File XML soubory EasySlides - + EasyWorship Song Database Databáze písní EasyWorship - + DreamBeam Song Files Soubory s písněmi DreamBeam - + You need to specify a valid PowerSong 1.0 database folder. Je potřeba upřesnit platnou složku s databází PowerSong 1.0. - + ZionWorx (CSV) ZionWorx (CSV) - + First convert your ZionWorx database to a CSV text file, as explained in the <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">User Manual</a>. Nejprve je nutno převést databázi ZionWorx do textového CSV souboru, jak je vysvětleno v <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">uživatelské dokumentaci</a>. - + SundayPlus Song Files + + + This importer has been disabled. + + + + + MediaShout Database + + + + + The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. + + + + + SongPro Text Files + + + + + SongPro (Export File) + + + + + In SongPro, export your songs using the File -> Export menu + + SongsPlugin.MediaFilesForm @@ -6980,6 +7013,14 @@ Kódování zodpovídá za správnou reprezentaci znaků. Hledat zpěvníky... + + SongsPlugin.MediaShoutImport + + + Unable to open the MediaShout database. + + + SongsPlugin.OpenLP1SongImport diff --git a/resources/i18n/da.ts b/resources/i18n/da.ts index 8b4e289b1..28aac28bc 100644 --- a/resources/i18n/da.ts +++ b/resources/i18n/da.ts @@ -1325,12 +1325,12 @@ forespørgsel og en internetforbindelse er derfor påkrævet. Bibel ikke færdigindlæst. - + Information Information - + The second Bible does not contain all the verses that are in the main Bible. Only verses found in both Bibles will be shown. %d verses have not been included in the results. Den sekundære bibel indeholder ikke alle versene der er i den primære bibel. Kun de vers der kan findes i begge bibler vil blive vist. %d vers er ikke blevet inkluderet blandt resultaterne. @@ -1346,14 +1346,24 @@ forespørgsel og en internetforbindelse er derfor påkrævet. - Are you sure you want to delete "%s"? + Are you sure you want to completely delete "%s" Bible from OpenLP? + +You will need to re-import this Bible to use it again. + + + + + BiblesPlugin.OpenSongImport + + + Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. BiblesPlugin.Opensong - + Importing %s %s... Importing <book name> <chapter>... Importerer %s %s... @@ -1629,7 +1639,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I Redigér alle dias på samme tid. - + Split a slide into two by inserting a slide splitter. Del et dias op i to ved at indsætte en diasopdeler. @@ -1659,11 +1669,19 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I Re&digér alle - + Insert Slide Indsæt dias + + CustomPlugin.EditVerseForm + + + Edit Slide + + + CustomPlugin.MediaItem @@ -1952,7 +1970,7 @@ Vil du tilføje de andre billede alligevel? OpenLP - + Image Files Billedfiler @@ -2204,7 +2222,7 @@ Portions copyright © 2004-2012 %s Billedfil: - + Open File Åben fil @@ -2331,7 +2349,7 @@ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for - + Syntax error. @@ -2391,29 +2409,29 @@ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for - + Select Data Directory Location - + Confirm Data Directory Change - + Reset Data Directory - + Are you sure you want to change the location of the OpenLP data directory to the default location? This location will be used after OpenLP is closed. - + Overwrite Existing Data @@ -2776,25 +2794,10 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can Beskrivelse - + Tag Mærke - - - Start tag - Start mærke - - - - End tag - Afslut mærke - - - - Tag Id - Mærke id - Start HTML @@ -2809,7 +2812,7 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can OpenLP.FormattingTagForm - + Update Error Opdateringsfejl @@ -2834,7 +2837,7 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can </and her> - + Tag %s already defined. Mærke %s er allerede defineret. @@ -3862,82 +3865,82 @@ Endelsen er ikke understøttet OpenLP.ServiceManager - + Move to &top Flyt til &top - + Move item to the top of the service. Flyt element til toppen af programmet. - + Move &up Flyt &op - + Move item up one position in the service. Flyt element en placering op i programmet. - + Move &down Flyt &ned - + Move item down one position in the service. Flyt element en placering ned i programmet. - + Move to &bottom Flyt til &bunden - + Move item to the end of the service. Flyt element til slutningen af programmet. - + &Delete From Service &Slet fra programmet - + Delete the selected item from the service. Slet det valgte element fra programmet. - + &Add New Item &Tilføj nyt emne - + &Add to Selected Item &Tilføj til det valgte emne - + &Edit Item &Redigér emne - + &Reorder Item &Omrokér element - + &Notes &Noter - + &Change Item Theme @@ -3974,72 +3977,72 @@ Indholdet er ikke UTF-8. - + &Expand all &Udvid alle - + Expand all the service items. Udvid alle program-elementerne. - + &Collapse all &Sammenfold alle - + Collapse all the service items. Sammenfold alle program-elementerne. - + Open File Åben fil - + Moves the selection down the window. - + Move up Flyt op - + Moves the selection up the window. - + Go Live - + Send the selected item to Live. - + &Start Time &Start tid - + Show &Preview Vis &forhåndsvisning - + Modified Service Modificeret program - + The current service has been modified. Would you like to save this service? Det nuværende program er blevet ændret. Vil du gemme dette program? @@ -4059,7 +4062,7 @@ Indholdet er ikke UTF-8. Afspilningstid: - + Untitled Service Unavngivet program @@ -4084,17 +4087,17 @@ Indholdet er ikke UTF-8. Korrupt fil - + Load an existing service. Indlæs et eksisterende program. - + Save this service. Gem dette program. - + Select a theme for the service. Vælg et tema for dette program. @@ -4104,7 +4107,7 @@ Indholdet er ikke UTF-8. - + Service File Missing @@ -6690,7 +6693,7 @@ The encoding is responsible for the correct character representation. SongsPlugin.ImportWizardForm - + Select Document/Presentation Files Vælg dokument-/præsentationfiler @@ -6705,7 +6708,7 @@ The encoding is responsible for the correct character representation. Denne guide vil hjælpe dig med at importere sange fra forskellige formater. Klik på næste-knappen herunder for at starte processen ved at vælge et format du vil importere fra. - + Generic Document/Presentation @@ -6725,37 +6728,37 @@ The encoding is responsible for the correct character representation. Vent imens dine sange bliver importeret. - + OpenLP 2.0 Databases OpenLP 2.0 databaser - + openlp.org v1.x Databases openlp.org v1.x databaser - + Words Of Worship Song Files Words Of Worship sangfiler - + Songs Of Fellowship Song Files Songs Of Fellowship sangfiler - + SongBeamer Files SongBeamer filer - + SongShow Plus Song Files SongShow Plus sangfiler - + Foilpresenter Song Files Foilpresenter sangfiler @@ -6770,65 +6773,95 @@ The encoding is responsible for the correct character representation. Gem til fil - + The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. Songs of Fellowship-importeringen er blevet deaktiveret på grund af at OpenLP ikke kan oprette forbindelse til OpenOffice, eller LibreOffice. - + The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. - + OpenLyrics or OpenLP 2.0 Exported Song OpenLyrics eller OpenLP 2.0 eksporteret sang - + OpenLyrics Files OpenLyrics filer - + CCLI SongSelect Files - + EasySlides XML File - + EasyWorship Song Database - + DreamBeam Song Files - + You need to specify a valid PowerSong 1.0 database folder. - + ZionWorx (CSV) - + First convert your ZionWorx database to a CSV text file, as explained in the <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">User Manual</a>. - + SundayPlus Song Files + + + This importer has been disabled. + + + + + MediaShout Database + + + + + The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. + + + + + SongPro Text Files + + + + + SongPro (Export File) + + + + + In SongPro, export your songs using the File -> Export menu + + SongsPlugin.MediaFilesForm @@ -6910,6 +6943,14 @@ The encoding is responsible for the correct character representation. + + SongsPlugin.MediaShoutImport + + + Unable to open the MediaShout database. + + + SongsPlugin.OpenLP1SongImport diff --git a/resources/i18n/de.ts b/resources/i18n/de.ts index 65f2fed84..2def182a2 100644 --- a/resources/i18n/de.ts +++ b/resources/i18n/de.ts @@ -1347,12 +1347,12 @@ werden. Daher ist eine Internetverbindung erforderlich. Bibel wurde nicht vollständig geladen. - + Information Hinweis - + The second Bible does not contain all the verses that are in the main Bible. Only verses found in both Bibles will be shown. %d verses have not been included in the results. Die Vergleichsbibel enthält nicht alle Verse, die in der Hauptbibel vorhanden sind. Nur die Verse, die in beiden Bibeln vorhanden sind, werden angezeigt. %d Verse sind nicht enthalten. @@ -1368,14 +1368,24 @@ werden. Daher ist eine Internetverbindung erforderlich. - Are you sure you want to delete "%s"? - Sind Sie sicher, dass Sie "%s" löschen möchten? + Are you sure you want to completely delete "%s" Bible from OpenLP? + +You will need to re-import this Bible to use it again. + + + + + BiblesPlugin.OpenSongImport + + + Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. + BiblesPlugin.Opensong - + Importing %s %s... Importing <book name> <chapter>... %s %s wird importiert... @@ -1652,7 +1662,7 @@ Bitte beachten Sie, dass Bibeltexte von Onlinebibeln bei Bedarf heruntergeladen Bearbeite alle Folien. - + Split a slide into two by inserting a slide splitter. Füge einen Folienumbruch ein. @@ -1682,11 +1692,19 @@ Bitte beachten Sie, dass Bibeltexte von Onlinebibeln bei Bedarf heruntergeladen &Alle bearbeiten - + Insert Slide Folie einfügen + + CustomPlugin.EditVerseForm + + + Edit Slide + + + CustomPlugin.MediaItem @@ -1975,7 +1993,7 @@ Wollen Sie die anderen Bilder trotzdem hinzufügen? OpenLP - + Image Files Bilddateien @@ -2237,7 +2255,7 @@ Anteiliges Copyright © 2004-2012 %s Bild-Datei: - + Open File Datei öffnen @@ -2365,7 +2383,7 @@ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for Fenstermanager X11 umgehen - + Syntax error. Syntaxfehler. @@ -2425,22 +2443,22 @@ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for Fehler im Daten Ordner - + Select Data Directory Location Bitte wählen Sie Pfad des Daten Ordners - + Confirm Data Directory Change Bitte bestätigen Sie die Änderung des Daten Ordners - + Reset Data Directory Daten Ordner zurücksetzen - + Are you sure you want to change the location of the OpenLP data directory to the default location? This location will be used after OpenLP is closed. @@ -2449,7 +2467,7 @@ This location will be used after OpenLP is closed. Dieser Ort wird beim nächsten Start benutzt. - + Overwrite Existing Data Existierende Daten überschreiben @@ -2843,25 +2861,10 @@ Um den Einrichtungsassistenten zu unterbrechen (und OpenLP nicht zu starten), bi Beschreibung - + Tag Tag - - - Start tag - Anfangs Tag - - - - End tag - End Tag - - - - Tag Id - Tag Nr. - Start HTML @@ -2876,7 +2879,7 @@ Um den Einrichtungsassistenten zu unterbrechen (und OpenLP nicht zu starten), bi OpenLP.FormattingTagForm - + Update Error Aktualisierungsfehler @@ -2901,7 +2904,7 @@ Um den Einrichtungsassistenten zu unterbrechen (und OpenLP nicht zu starten), bi </und hier> - + Tag %s already defined. Tag »%s« bereits definiert. @@ -3939,82 +3942,82 @@ Dateiendung nicht unterstützt. OpenLP.ServiceManager - + Move to &top Zum &Anfang schieben - + Move item to the top of the service. Das ausgewählte Element an den Anfang des Ablaufs verschieben. - + Move &up Nach &oben schieben - + Move item up one position in the service. Das ausgewählte Element um eine Position im Ablauf nach oben verschieben. - + Move &down Nach &unten schieben - + Move item down one position in the service. Das ausgewählte Element um eine Position im Ablauf nach unten verschieben. - + Move to &bottom Zum &Ende schieben - + Move item to the end of the service. Das ausgewählte Element an das Ende des Ablaufs verschieben. - + &Delete From Service Vom Ablauf &löschen - + Delete the selected item from the service. Das ausgewählte Element aus dem Ablaufs entfernen. - + &Add New Item &Neues Element hinzufügen - + &Add to Selected Item &Zum gewählten Element hinzufügen - + &Edit Item Element &bearbeiten - + &Reorder Item &Aufnahmeelement - + &Notes &Notizen - + &Change Item Theme &Design des Elements ändern @@ -4051,72 +4054,72 @@ Der Inhalt ist nicht in UTF-8 kodiert. Dieses Element kann nicht angezeigt werden, da die zugehörige Erweiterung fehlt oder inaktiv ist. - + &Expand all Alle au&sklappen - + Expand all the service items. Alle Ablaufelemente ausklappen. - + &Collapse all Alle ei&nklappen - + Collapse all the service items. Alle Ablaufelemente einklappen. - + Open File Ablauf öffnen - + Moves the selection down the window. Ausgewähltes nach unten schieben - + Move up Nach oben - + Moves the selection up the window. Ausgewähltes nach oben schieben - + Go Live Live - + Send the selected item to Live. Zeige das ausgewählte Element Live. - + &Start Time &Startzeit - + Show &Preview &Vorschau - + Modified Service Modifizierter Ablauf - + The current service has been modified. Would you like to save this service? Der momentane Ablauf wurde modifiziert. Möchten Sie ihn speichern? @@ -4136,7 +4139,7 @@ Der Inhalt ist nicht in UTF-8 kodiert. Spiellänge: - + Untitled Service Unbenannt @@ -4161,17 +4164,17 @@ Der Inhalt ist nicht in UTF-8 kodiert. Dehlerhaft Datei - + Load an existing service. Einen bestehenden Ablauf öffnen. - + Save this service. Den aktuellen Ablauf speichern. - + Select a theme for the service. Design für den Ablauf auswählen. @@ -4181,7 +4184,7 @@ Der Inhalt ist nicht in UTF-8 kodiert. Entweder ist die Datei fehlerhaft oder sie ist keine OpenLP 2.0 Ablauf-Datei. - + Service File Missing Ablaufdatei fehlt @@ -6773,7 +6776,7 @@ Easy Worship] SongsPlugin.ImportWizardForm - + Select Document/Presentation Files Präsentationen/Textdokumente auswählen @@ -6788,7 +6791,7 @@ Easy Worship] Dieser Assistent hilft Ihnen Liedtexte aus verschiedenen Formaten zu importieren. Klicken Sie auf »Weiter« um das Quellformat auszuwählen, aus dem Sie importieren möchten. - + Generic Document/Presentation Präsentation/Textdokument @@ -6808,37 +6811,37 @@ Easy Worship] Die Liedtexte werden importiert. Bitte warten. - + OpenLP 2.0 Databases »OpenLP 2.0« Lieddatenbanken - + openlp.org v1.x Databases »openlp.org 1.x« Lieddatenbanken - + Words Of Worship Song Files »Words of Worship« Lieddateien - + Songs Of Fellowship Song Files Songs Of Fellowship Song Dateien - + SongBeamer Files SongBeamer Dateien - + SongShow Plus Song Files SongShow Plus Song Dateien - + Foilpresenter Song Files Foilpresenter Lied-Dateien @@ -6853,65 +6856,95 @@ Easy Worship] In Datei speichern - + The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. Der Songs of Fellowship importer wurde deaktiviert, weil OpenLP nicht OpenOffice oder LibreOffice öffnen konnte. - + The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. Der Präsentation/Textdokument importer wurde deaktiviert, weil OpenLP nicht OpenOffice oder LibreOffice öffnen konnte. - + OpenLyrics or OpenLP 2.0 Exported Song OpenLyrics oder OpenLP 2.0 exportiere Lieder - + OpenLyrics Files »OpenLyrics« Datei - + CCLI SongSelect Files CLI SongSelect Dateien - + EasySlides XML File EasySlides XML Datei - + EasyWorship Song Database EasyWorship Lieddatenbank - + DreamBeam Song Files DreamBeam Lied Dateien - + You need to specify a valid PowerSong 1.0 database folder. Bitte wählen sie einen gültigen PowerSong 1.0 Datenbank Ordner. - + ZionWorx (CSV) ZionWorx(CSV) - + First convert your ZionWorx database to a CSV text file, as explained in the <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">User Manual</a>. Bitte konvertieren Sie zuerst die ZionWorx Datenbank in eine CSV Text Datei, wie beschrieben im <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">User Manual</a>. - + SundayPlus Song Files + + + This importer has been disabled. + + + + + MediaShout Database + + + + + The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. + + + + + SongPro Text Files + + + + + SongPro (Export File) + + + + + In SongPro, export your songs using the File -> Export menu + + SongsPlugin.MediaFilesForm @@ -6993,6 +7026,14 @@ Easy Worship] Suche Liederbücher... + + SongsPlugin.MediaShoutImport + + + Unable to open the MediaShout database. + + + SongsPlugin.OpenLP1SongImport diff --git a/resources/i18n/el.ts b/resources/i18n/el.ts index 9764be76b..d7ea9e9b3 100644 --- a/resources/i18n/el.ts +++ b/resources/i18n/el.ts @@ -1344,12 +1344,12 @@ demand and thus an internet connection is required. Βίβλος ατελώς φορτωμένη. - + Information Πληροφορίες - + The second Bible does not contain all the verses that are in the main Bible. Only verses found in both Bibles will be shown. %d verses have not been included in the results. Η δεύτερη Βίβλος δεν περιέχει όλα τα εδάφια που υπάρχουν στην κύρια Βίβλο. Θα εμφανιστούν μόνο τα εδάφια που βρίσκονται και στις δύο Βίβλους. %d εδάφια δεν έχουν συμπεριληφθεί στα αποτελέσματα. @@ -1365,14 +1365,24 @@ demand and thus an internet connection is required. - Are you sure you want to delete "%s"? - Είστε σίγουροι ότι θέλετε να διαγράψετε το "%s" ; + Are you sure you want to completely delete "%s" Bible from OpenLP? + +You will need to re-import this Bible to use it again. + + + + + BiblesPlugin.OpenSongImport + + + Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. + BiblesPlugin.Opensong - + Importing %s %s... Importing <book name> <chapter>... Εισαγωγή %s %s... @@ -1649,7 +1659,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I Επεξεργασία όλων των διαφανειών ταυτόχρονα. - + Split a slide into two by inserting a slide splitter. Χωρίστε μια διαφάνεια σε δύο με εισαγωγή ενός διαχωριστή διαφανειών. @@ -1679,11 +1689,19 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I &Επεξεργασία Όλων - + Insert Slide Εισαγωγή Διαφάνειας + + CustomPlugin.EditVerseForm + + + Edit Slide + + + CustomPlugin.MediaItem @@ -1972,7 +1990,7 @@ Do you want to add the other images anyway? OpenLP - + Image Files Αρχεία Εικόνων @@ -2231,7 +2249,7 @@ Portions copyright © 2004-2012 %s Αρχείο εικόνας: - + Open File Άνοιγμα Αρχείου @@ -2358,7 +2376,7 @@ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for Παράκαμψη Διαχειριστή Παραθύρων X11 - + Syntax error. Σφάλμα Σύνταξης. @@ -2418,22 +2436,22 @@ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for Σφάλμα Φακέλου Δεδομένων - + Select Data Directory Location Επιλογή Τοποθεσίας Φακέλου Δεδομένων - + Confirm Data Directory Change Επιβεβαίωση Αλλαγής Φακέλου Δεδομένων - + Reset Data Directory Επαναφορά Φακέλου Δεδομένων - + Are you sure you want to change the location of the OpenLP data directory to the default location? This location will be used after OpenLP is closed. @@ -2442,7 +2460,7 @@ This location will be used after OpenLP is closed. Η τοποθεσία αυτή θα χρησιμοποιηθεί αφού κλείσετε το OpenLP. - + Overwrite Existing Data Αντικατάσταση Υπάρχοντων Δεδομένων @@ -2836,25 +2854,10 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can Περιγραφή - + Tag Ετικέτα - - - Start tag - Ετικέτα έναρξης - - - - End tag - Ετικέτα λήξης - - - - Tag Id - ID ετικέτας - Start HTML @@ -2869,7 +2872,7 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can OpenLP.FormattingTagForm - + Update Error Σφάλμα Ενημέρωσης @@ -2894,7 +2897,7 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can </και εδώ> - + Tag %s already defined. Η ετικέτα %s έχει ήδη οριστεί. @@ -3932,82 +3935,82 @@ Suffix not supported OpenLP.ServiceManager - + Move to &top Μετακίνηση στην &κορυφή - + Move item to the top of the service. Μετακίνηση αντικειμένου στην κορυφή της λειτουργίας. - + Move &up Μετακίνηση &επάνω - + Move item up one position in the service. Μετακίνηση μία θέση επάνω στην λειτουργία. - + Move &down Μετακίνηση κά&τω - + Move item down one position in the service. Μετακίνηση μία θέση κάτω στην λειτουργία. - + Move to &bottom Μετακίνηση στο &τέλος - + Move item to the end of the service. Μετακίνηση στο τέλος της λειτουργίας. - + &Delete From Service &Διαγραφή Από την Λειτουργία - + Delete the selected item from the service. Διαγραφή του επιλεγμένου αντικειμένου από την λειτουργία. - + &Add New Item &Προσθήκη Νέου Αντικειμένου - + &Add to Selected Item &Προσθήκη στο Επιλεγμένο Αντικείμενο - + &Edit Item &Επεξεργασία Αντικειμένου - + &Reorder Item &Ανακατανομή Αντικειμένου - + &Notes &Σημειώσεις - + &Change Item Theme &Αλλαγή Θέματος Αντικειμένου @@ -4044,72 +4047,72 @@ The content encoding is not UTF-8. Το αντικείμενό σας δεν μπορεί να προβληθεί αφού το πρόσθετο που απαιτείται για την προβολή απουσιάζει ή είναι ανενεργό - + &Expand all &Ανάπτυξη όλων - + Expand all the service items. Ανάπτυξη όλων των αντικειμένων λειτουργίας. - + &Collapse all &Σύμπτυξη όλων - + Collapse all the service items. Σύμπτυξη όλων των αντικειμένων λειτουργίας. - + Open File Άνοιγμα Αρχείου - + Moves the selection down the window. Μετακίνηση της επιλογής κάτω στο παράθυρο. - + Move up Μετακίνηση επάνω - + Moves the selection up the window. Μετακίνηση της επιλογής προς τα πάνω στο παράθυρο. - + Go Live Προβολή - + Send the selected item to Live. Προβολή του επιλεγμένου αντικειμένου. - + &Start Time Ώρα &Έναρξης - + Show &Preview Προβολή &Προεπισκόπησης - + Modified Service Τροποποιημένη Λειτουργία - + The current service has been modified. Would you like to save this service? Η τρέχουσα λειτουργία έχει τροποποιηθεί. Θέλετε να αποθηκεύσετε ετούτη την λειτουργία; @@ -4129,7 +4132,7 @@ The content encoding is not UTF-8. Χρόνος Αναπαραγωγής: - + Untitled Service Ανώνυμη Λειτουργία @@ -4154,17 +4157,17 @@ The content encoding is not UTF-8. Φθαρμένο Αρχείο - + Load an existing service. Άνοιγμα υπάρχουσας λειτουργίας. - + Save this service. Αποθήκευση ετούτης της λειτουργίας. - + Select a theme for the service. Επιλέξτε ένα θέμα για την λειτουργία. @@ -4174,7 +4177,7 @@ The content encoding is not UTF-8. Αυτό το αρχείο είναι είτε φθαρμένο είτε δεν είναι αρχείο λειτουργίας του OpenLP 2.0. - + Service File Missing Απουσία Αρχείου Λειτουργίας @@ -6765,7 +6768,7 @@ The encoding is responsible for the correct character representation. SongsPlugin.ImportWizardForm - + Select Document/Presentation Files Επιλέξτε Αρχεία Εγγράφων/Παρουσιάσεων @@ -6780,7 +6783,7 @@ The encoding is responsible for the correct character representation. Ο οδηγός αυτος θα σας βοηθήσει να εισάγετε ύμνους διαφόρων μορφών. Κάντε κλικ στο κουμπί "επόμενο" παρακάτω για να ξεκινήσετε την διαδικασία επιλέγοντας την μορφή από την οποία θέλετε να εισάγετε. - + Generic Document/Presentation Γενικό Έγγραφο/Παρουσίαση @@ -6800,37 +6803,37 @@ The encoding is responsible for the correct character representation. Παρακαλούμε περιμένετε όσο οι ύμνοι σας εισάγονται. - + OpenLP 2.0 Databases Βάσεις Δεδομένων OpenLP 2.0 - + openlp.org v1.x Databases Βάσεις Δεδομένων openlp.org v 1.x - + Words Of Worship Song Files Αρχεία Ύμνων Words Of Worship - + Songs Of Fellowship Song Files Αρχεία Ύμνων Songs Of Fellowship - + SongBeamer Files Αρχεία SongBeamer - + SongShow Plus Song Files Αρχεία Ύμνων SongShow Plus - + Foilpresenter Song Files Αρχεία Ύμνων Foilpresenter @@ -6845,65 +6848,95 @@ The encoding is responsible for the correct character representation. Αποθήκευση στο Αρχείο - + The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. Η εισαγωγή αρχείων τύπου Songs of Fellowship έχει απενεργοποιηθεί επειδή το OpenLP δεν έχει προσβαση στο OpenOffice ή το Libreoffice. - + The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. Η εισαγωγή αρχείων γενικού τύπου έχει απενεργοποιηθεί επειδή το OpenLP δεν έχει προσβαση στο OpenOffice ή το Libreoffice. - + OpenLyrics or OpenLP 2.0 Exported Song Ύμνος εξηγμένος από το OpenLyrics ή το OpenLP 2.0 - + OpenLyrics Files Αρχεία OpenLyrics - + CCLI SongSelect Files Αρχεία CCLI SongSelect - + EasySlides XML File Αρχείο EasySlides XML - + EasyWorship Song Database Βάση Δεδομένων Ύμνων EasyWorship - + DreamBeam Song Files Αρχεία Ύμνων DreamBeam - + You need to specify a valid PowerSong 1.0 database folder. Πρέπει να καθορίσετε έναν έγκυρο φάκελο βάσης δεδομένων του PowerSong 1.0. - + ZionWorx (CSV) ZionWorx (CSV) - + First convert your ZionWorx database to a CSV text file, as explained in the <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">User Manual</a>. Πρώτα μετατρέψτε την βάση δεδομένων του ZionWorx σε αρχείο κειμένου CSV, όπως περιγράφεται στο <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">User Manual</a>. - + SundayPlus Song Files + + + This importer has been disabled. + + + + + MediaShout Database + + + + + The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. + + + + + SongPro Text Files + + + + + SongPro (Export File) + + + + + In SongPro, export your songs using the File -> Export menu + + SongsPlugin.MediaFilesForm @@ -6985,6 +7018,14 @@ The encoding is responsible for the correct character representation. Αναζήτηση Βιβλίων Ύμνων... + + SongsPlugin.MediaShoutImport + + + Unable to open the MediaShout database. + + + SongsPlugin.OpenLP1SongImport diff --git a/resources/i18n/en.ts b/resources/i18n/en.ts index 37ffe8a90..9e17c7ed2 100644 --- a/resources/i18n/en.ts +++ b/resources/i18n/en.ts @@ -1344,12 +1344,12 @@ demand and thus an internet connection is required. Bible not fully loaded. - + Information Information - + The second Bible does not contain all the verses that are in the main Bible. Only verses found in both Bibles will be shown. %d verses have not been included in the results. The second Bible does not contain all the verses that are in the main Bible. Only verses found in both Bibles will be shown. %d verses have not been included in the results. @@ -1365,14 +1365,24 @@ demand and thus an internet connection is required. - Are you sure you want to delete "%s"? - Are you sure you want to delete "%s"? + Are you sure you want to completely delete "%s" Bible from OpenLP? + +You will need to re-import this Bible to use it again. + + + + + BiblesPlugin.OpenSongImport + + + Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. + BiblesPlugin.Opensong - + Importing %s %s... Importing <book name> <chapter>... Importing %s %s... @@ -1649,7 +1659,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I Edit all the slides at once. - + Split a slide into two by inserting a slide splitter. Split a slide into two by inserting a slide splitter. @@ -1679,11 +1689,19 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I Ed&it All - + Insert Slide Insert Slide + + CustomPlugin.EditVerseForm + + + Edit Slide + + + CustomPlugin.MediaItem @@ -1972,7 +1990,7 @@ Do you want to add the other images anyway? OpenLP - + Image Files Image Files @@ -2231,7 +2249,7 @@ Portions copyright © 2004-2012 %s Image file: - + Open File Open File @@ -2358,7 +2376,7 @@ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for Bypass X11 Window Manager - + Syntax error. Syntax error. @@ -2418,22 +2436,22 @@ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for Data Directory Error - + Select Data Directory Location Select Data Directory Location - + Confirm Data Directory Change Confirm Data Directory Change - + Reset Data Directory Reset Data Directory - + Are you sure you want to change the location of the OpenLP data directory to the default location? This location will be used after OpenLP is closed. @@ -2442,7 +2460,7 @@ This location will be used after OpenLP is closed. This location will be used after OpenLP is closed. - + Overwrite Existing Data Overwrite Existing Data @@ -2835,25 +2853,10 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can Description - + Tag Tag - - - Start tag - Start tag - - - - End tag - End tag - - - - Tag Id - Tag Id - Start HTML @@ -2868,7 +2871,7 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can OpenLP.FormattingTagForm - + Update Error Update Error @@ -2893,7 +2896,7 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can </and here> - + Tag %s already defined. Tag %s already defined. @@ -3931,82 +3934,82 @@ Suffix not supported OpenLP.ServiceManager - + Move to &top Move to &top - + Move item to the top of the service. Move item to the top of the service. - + Move &up Move &up - + Move item up one position in the service. Move item up one position in the service. - + Move &down Move &down - + Move item down one position in the service. Move item down one position in the service. - + Move to &bottom Move to &bottom - + Move item to the end of the service. Move item to the end of the service. - + &Delete From Service &Delete From Service - + Delete the selected item from the service. Delete the selected item from the service. - + &Add New Item &Add New Item - + &Add to Selected Item &Add to Selected Item - + &Edit Item &Edit Item - + &Reorder Item &Reorder Item - + &Notes &Notes - + &Change Item Theme &Change Item Theme @@ -4043,72 +4046,72 @@ The content encoding is not UTF-8. Your item cannot be displayed as the plugin required to display it is missing or inactive - + &Expand all &Expand all - + Expand all the service items. Expand all the service items. - + &Collapse all &Collapse all - + Collapse all the service items. Collapse all the service items. - + Open File Open File - + Moves the selection down the window. Moves the selection down the window. - + Move up Move up - + Moves the selection up the window. Moves the selection up the window. - + Go Live Go Live - + Send the selected item to Live. Send the selected item to Live. - + &Start Time &Start Time - + Show &Preview Show &Preview - + Modified Service Modified Service - + The current service has been modified. Would you like to save this service? The current service has been modified. Would you like to save this service? @@ -4128,7 +4131,7 @@ The content encoding is not UTF-8. Playing time: - + Untitled Service Untitled Service @@ -4153,17 +4156,17 @@ The content encoding is not UTF-8. Corrupt File - + Load an existing service. Load an existing service. - + Save this service. Save this service. - + Select a theme for the service. Select a theme for the service. @@ -4173,7 +4176,7 @@ The content encoding is not UTF-8. This file is either corrupt or it is not an OpenLP 2.0 service file. - + Service File Missing Service File Missing @@ -5043,12 +5046,12 @@ The content encoding is not UTF-8. Preview and Save - + Preview and Save Preview the theme and save it. - + Preview the theme and save it. @@ -6764,7 +6767,7 @@ The encoding is responsible for the correct character representation. SongsPlugin.ImportWizardForm - + Select Document/Presentation Files Select Document/Presentation Files @@ -6779,7 +6782,7 @@ The encoding is responsible for the correct character representation.This wizard will help you to import songs from a variety of formats. Click the next button below to start the process by selecting a format to import from. - + Generic Document/Presentation Generic Document/Presentation @@ -6799,37 +6802,37 @@ The encoding is responsible for the correct character representation.Please wait while your songs are imported. - + OpenLP 2.0 Databases OpenLP 2.0 Databases - + openlp.org v1.x Databases openlp.org v1.x Databases - + Words Of Worship Song Files Words Of Worship Song Files - + Songs Of Fellowship Song Files Songs Of Fellowship Song Files - + SongBeamer Files SongBeamer Files - + SongShow Plus Song Files SongShow Plus Song Files - + Foilpresenter Song Files Foilpresenter Song Files @@ -6844,63 +6847,93 @@ The encoding is responsible for the correct character representation.Save to File - + The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. - + The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. - + OpenLyrics or OpenLP 2.0 Exported Song OpenLyrics or OpenLP 2.0 Exported Song - + OpenLyrics Files OpenLyrics Files - + CCLI SongSelect Files CCLI SongSelect Files - + EasySlides XML File EasySlides XML File - + EasyWorship Song Database EasyWorship Song Database - + DreamBeam Song Files DreamBeam Song Files - + You need to specify a valid PowerSong 1.0 database folder. You need to specify a valid PowerSong 1.0 database folder. - + ZionWorx (CSV) ZionWorx (CSV) - + First convert your ZionWorx database to a CSV text file, as explained in the <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">User Manual</a>. First convert your ZionWorx database to a CSV text file, as explained in the <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">User Manual</a>. - + SundayPlus Song Files + SundayPlus Song Files + + + + This importer has been disabled. + + + + + MediaShout Database + + + + + The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. + + + + + SongPro Text Files + + + + + SongPro (Export File) + + + + + In SongPro, export your songs using the File -> Export menu @@ -6984,6 +7017,14 @@ The encoding is responsible for the correct character representation.Search Song Books... + + SongsPlugin.MediaShoutImport + + + Unable to open the MediaShout database. + + + SongsPlugin.OpenLP1SongImport diff --git a/resources/i18n/en_GB.ts b/resources/i18n/en_GB.ts index 061457490..41ee805b8 100644 --- a/resources/i18n/en_GB.ts +++ b/resources/i18n/en_GB.ts @@ -1344,12 +1344,12 @@ demand and thus an internet connection is required. Bible not fully loaded. - + Information Information - + The second Bible does not contain all the verses that are in the main Bible. Only verses found in both Bibles will be shown. %d verses have not been included in the results. The second Bible does not contain all the verses that are in the main Bible. Only verses found in both Bibles will be shown. %d verses have not been included in the results. @@ -1365,14 +1365,24 @@ demand and thus an internet connection is required. - Are you sure you want to delete "%s"? - Are you sure you want to delete "%s"? + Are you sure you want to completely delete "%s" Bible from OpenLP? + +You will need to re-import this Bible to use it again. + + + + + BiblesPlugin.OpenSongImport + + + Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. + BiblesPlugin.Opensong - + Importing %s %s... Importing <book name> <chapter>... Importing %s %s... @@ -1649,7 +1659,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I Edit all the slides at once. - + Split a slide into two by inserting a slide splitter. Split a slide into two by inserting a slide splitter. @@ -1679,11 +1689,19 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I Ed&it All - + Insert Slide Insert Slide + + CustomPlugin.EditVerseForm + + + Edit Slide + + + CustomPlugin.MediaItem @@ -1972,7 +1990,7 @@ Do you want to add the other images anyway? OpenLP - + Image Files Image Files @@ -2231,7 +2249,7 @@ Portions copyright © 2004-2012 %s Image file: - + Open File Open File @@ -2358,7 +2376,7 @@ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for Bypass X11 Window Manager - + Syntax error. Syntax error. @@ -2418,22 +2436,22 @@ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for Data Directory Error - + Select Data Directory Location Select Data Directory Location - + Confirm Data Directory Change Confirm Data Directory Change - + Reset Data Directory Reset Data Directory - + Are you sure you want to change the location of the OpenLP data directory to the default location? This location will be used after OpenLP is closed. @@ -2442,7 +2460,7 @@ This location will be used after OpenLP is closed. This location will be used after OpenLP is closed. - + Overwrite Existing Data Overwrite Existing Data @@ -2835,25 +2853,10 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can Description - + Tag Tag - - - Start tag - Start tag - - - - End tag - End tag - - - - Tag Id - Tag Id - Start HTML @@ -2868,7 +2871,7 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can OpenLP.FormattingTagForm - + Update Error Update Error @@ -2893,7 +2896,7 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can </and here> - + Tag %s already defined. Tag %s already defined. @@ -3930,82 +3933,82 @@ Suffix not supported OpenLP.ServiceManager - + Move to &top Move to &top - + Move item to the top of the service. Move item to the top of the service. - + Move &up Move &up - + Move item up one position in the service. Move item up one position in the service. - + Move &down Move &down - + Move item down one position in the service. Move item down one position in the service. - + Move to &bottom Move to &bottom - + Move item to the end of the service. Move item to the end of the service. - + &Delete From Service &Delete From Service - + Delete the selected item from the service. Delete the selected item from the service. - + &Add New Item &Add New Item - + &Add to Selected Item &Add to Selected Item - + &Edit Item &Edit Item - + &Reorder Item &Reorder Item - + &Notes &Notes - + &Change Item Theme &Change Item Theme @@ -4042,72 +4045,72 @@ The content encoding is not UTF-8. Your item cannot be displayed as the plugin required to display it is missing or inactive - + &Expand all &Expand all - + Expand all the service items. Expand all the service items. - + &Collapse all &Collapse all - + Collapse all the service items. Collapse all the service items. - + Open File Open File - + Moves the selection down the window. Moves the selection down the window. - + Move up Move up - + Moves the selection up the window. Moves the selection up the window. - + Go Live Go Live - + Send the selected item to Live. Send the selected item to Live. - + &Start Time &Start Time - + Show &Preview Show &Preview - + Modified Service Modified Service - + The current service has been modified. Would you like to save this service? The current service has been modified. Would you like to save this service? @@ -4127,7 +4130,7 @@ The content encoding is not UTF-8. Playing time: - + Untitled Service Untitled Service @@ -4152,17 +4155,17 @@ The content encoding is not UTF-8. Corrupt File - + Load an existing service. Load an existing service. - + Save this service. Save this service. - + Select a theme for the service. Select a theme for the service. @@ -4172,7 +4175,7 @@ The content encoding is not UTF-8. This file is either corrupt or it is not an OpenLP 2.0 service file. - + Service File Missing Service File Missing @@ -5042,12 +5045,12 @@ The content encoding is not UTF-8. Preview and Save - + Preview and Save Preview the theme and save it. - + Preview the theme and save it. @@ -6763,7 +6766,7 @@ The encoding is responsible for the correct character representation. SongsPlugin.ImportWizardForm - + Select Document/Presentation Files Select Document/Presentation Files @@ -6778,7 +6781,7 @@ The encoding is responsible for the correct character representation.This wizard will help you to import songs from a variety of formats. Click the next button below to start the process by selecting a format to import from. - + Generic Document/Presentation Generic Document/Presentation @@ -6798,37 +6801,37 @@ The encoding is responsible for the correct character representation.Please wait while your songs are imported. - + OpenLP 2.0 Databases OpenLP 2.0 Databases - + openlp.org v1.x Databases openlp.org v1.x Databases - + Words Of Worship Song Files Words Of Worship Song Files - + Songs Of Fellowship Song Files Songs Of Fellowship Song Files - + SongBeamer Files SongBeamer Files - + SongShow Plus Song Files SongShow Plus Song Files - + Foilpresenter Song Files Foilpresenter Song Files @@ -6843,63 +6846,93 @@ The encoding is responsible for the correct character representation.Save to File - + The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. - + The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. - + OpenLyrics or OpenLP 2.0 Exported Song OpenLyrics or OpenLP 2.0 Exported Song - + OpenLyrics Files OpenLyrics Files - + CCLI SongSelect Files CCLI SongSelect Files - + EasySlides XML File EasySlides XML File - + EasyWorship Song Database EasyWorship Song Database - + DreamBeam Song Files DreamBeam Song Files - + You need to specify a valid PowerSong 1.0 database folder. You need to specify a valid PowerSong 1.0 database folder. - + ZionWorx (CSV) ZionWorx (CSV) - + First convert your ZionWorx database to a CSV text file, as explained in the <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">User Manual</a>. First convert your ZionWorx database to a CSV text file, as explained in the <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">User Manual</a>. - + SundayPlus Song Files + SundayPlus Song Files + + + + This importer has been disabled. + + + + + MediaShout Database + + + + + The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. + + + + + SongPro Text Files + + + + + SongPro (Export File) + + + + + In SongPro, export your songs using the File -> Export menu @@ -6983,6 +7016,14 @@ The encoding is responsible for the correct character representation.Search Song Books... + + SongsPlugin.MediaShoutImport + + + Unable to open the MediaShout database. + + + SongsPlugin.OpenLP1SongImport diff --git a/resources/i18n/en_ZA.ts b/resources/i18n/en_ZA.ts index 04d4971f2..7f7c60326 100644 --- a/resources/i18n/en_ZA.ts +++ b/resources/i18n/en_ZA.ts @@ -1340,12 +1340,12 @@ demand and thus an internet connection is required. Bible not fully loaded. - + Information Information - + The second Bible does not contain all the verses that are in the main Bible. Only verses found in both Bibles will be shown. %d verses have not been included in the results. The second Bible does not contain all the verses that are in the main Bible. Only verses found in both Bibles will be shown. %d verses have not been included in the results. @@ -1361,14 +1361,24 @@ demand and thus an internet connection is required. - Are you sure you want to delete "%s"? + Are you sure you want to completely delete "%s" Bible from OpenLP? + +You will need to re-import this Bible to use it again. + + + + + BiblesPlugin.OpenSongImport + + + Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. BiblesPlugin.Opensong - + Importing %s %s... Importing <book name> <chapter>... Importing %s %s... @@ -1645,7 +1655,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I Edit all the slides at once. - + Split a slide into two by inserting a slide splitter. Split a slide into two by inserting a slide splitter. @@ -1675,11 +1685,19 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I Ed&it All - + Insert Slide Insert Slide + + CustomPlugin.EditVerseForm + + + Edit Slide + + + CustomPlugin.MediaItem @@ -1968,7 +1986,7 @@ Do you want to add the other images anyway? OpenLP - + Image Files Image Files @@ -2227,7 +2245,7 @@ Portions copyright © 2004-2012 %s Image file: - + Open File Open File @@ -2354,7 +2372,7 @@ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for Bypass X11 Window Manager - + Syntax error. Syntax error. @@ -2414,29 +2432,29 @@ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for - + Select Data Directory Location - + Confirm Data Directory Change - + Reset Data Directory - + Are you sure you want to change the location of the OpenLP data directory to the default location? This location will be used after OpenLP is closed. - + Overwrite Existing Data @@ -2825,25 +2843,10 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can Description - + Tag Tag - - - Start tag - Start tag - - - - End tag - End tag - - - - Tag Id - Tag Id - Start HTML @@ -2858,7 +2861,7 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can OpenLP.FormattingTagForm - + Update Error Update Error @@ -2883,7 +2886,7 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can </and here> - + Tag %s already defined. Tag %s already defined. @@ -3921,82 +3924,82 @@ Suffix not supported OpenLP.ServiceManager - + Move to &top Move to &top - + Move item to the top of the service. Move item to the top of the service. - + Move &up Move &up - + Move item up one position in the service. Move item up one position in the service. - + Move &down Move &down - + Move item down one position in the service. Move item down one position in the service. - + Move to &bottom Move to &bottom - + Move item to the end of the service. Move item to the end of the service. - + &Delete From Service &Delete From Service - + Delete the selected item from the service. Delete the selected item from the service. - + &Add New Item &Add New Item - + &Add to Selected Item &Add to Selected Item - + &Edit Item &Edit Item - + &Reorder Item &Reorder Item - + &Notes &Notes - + &Change Item Theme &Change Item Theme @@ -4033,72 +4036,72 @@ The content encoding is not UTF-8. Your item cannot be displayed as the plugin required to display it is missing or inactive - + &Expand all &Expand all - + Expand all the service items. Expand all the service items. - + &Collapse all &Collapse all - + Collapse all the service items. Collapse all the service items. - + Open File Open File - + Moves the selection down the window. Moves the selection down the window. - + Move up Move up - + Moves the selection up the window. Moves the selection up the window. - + Go Live Go Live - + Send the selected item to Live. Send the selected item to Live. - + &Start Time &Start Time - + Show &Preview Show &Preview - + Modified Service Modified Service - + The current service has been modified. Would you like to save this service? The current service has been modified. Would you like to save this service? @@ -4118,7 +4121,7 @@ The content encoding is not UTF-8. Playing time: - + Untitled Service Untitled Service @@ -4143,17 +4146,17 @@ The content encoding is not UTF-8. Corrupt File - + Load an existing service. Load an existing service. - + Save this service. Save this service. - + Select a theme for the service. Select a theme for the service. @@ -4163,7 +4166,7 @@ The content encoding is not UTF-8. This file is either corrupt or it is not an OpenLP 2.0 service file. - + Service File Missing Service File Missing @@ -6754,7 +6757,7 @@ The encoding is responsible for the correct character representation. SongsPlugin.ImportWizardForm - + Select Document/Presentation Files Select Document/Presentation Files @@ -6769,7 +6772,7 @@ The encoding is responsible for the correct character representation.This wizard will help you to import songs from a variety of formats. Click the next button below to start the process by selecting a format to import from. - + Generic Document/Presentation Generic Document/Presentation @@ -6789,37 +6792,37 @@ The encoding is responsible for the correct character representation.Please wait while your songs are imported. - + OpenLP 2.0 Databases OpenLP 2.0 Databases - + openlp.org v1.x Databases openlp.org v1.x Databases - + Words Of Worship Song Files Words Of Worship Song Files - + Songs Of Fellowship Song Files Songs Of Fellowship Song Files - + SongBeamer Files SongBeamer Files - + SongShow Plus Song Files SongShow Plus Song Files - + Foilpresenter Song Files Foilpresenter Song Files @@ -6834,65 +6837,95 @@ The encoding is responsible for the correct character representation.Save to File - + The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. - + The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. - + OpenLyrics or OpenLP 2.0 Exported Song OpenLyrics or OpenLP 2.0 Exported Song - + OpenLyrics Files OpenLyrics Files - + CCLI SongSelect Files - + EasySlides XML File - + EasyWorship Song Database - + DreamBeam Song Files - + You need to specify a valid PowerSong 1.0 database folder. - + ZionWorx (CSV) - + First convert your ZionWorx database to a CSV text file, as explained in the <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">User Manual</a>. - + SundayPlus Song Files + + + This importer has been disabled. + + + + + MediaShout Database + + + + + The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. + + + + + SongPro Text Files + + + + + SongPro (Export File) + + + + + In SongPro, export your songs using the File -> Export menu + + SongsPlugin.MediaFilesForm @@ -6974,6 +7007,14 @@ The encoding is responsible for the correct character representation. + + SongsPlugin.MediaShoutImport + + + Unable to open the MediaShout database. + + + SongsPlugin.OpenLP1SongImport diff --git a/resources/i18n/es.ts b/resources/i18n/es.ts index b043d6f4c..6493232d5 100644 --- a/resources/i18n/es.ts +++ b/resources/i18n/es.ts @@ -1344,12 +1344,12 @@ sea necesario, por lo que debe contar con una conexión a internet.Biblia incompleta. - + Information Información - + The second Bible does not contain all the verses that are in the main Bible. Only verses found in both Bibles will be shown. %d verses have not been included in the results. La Biblia secundaria no contiene todos los versículos de la Biblia principal. Solo se muestran los versículos comunes. Versículos %d no se incluyen en los resultados. @@ -1365,14 +1365,24 @@ sea necesario, por lo que debe contar con una conexión a internet. - Are you sure you want to delete "%s"? - ¿Desea realmente borrar "%s"? + Are you sure you want to completely delete "%s" Bible from OpenLP? + +You will need to re-import this Bible to use it again. + + + + + BiblesPlugin.OpenSongImport + + + Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. + BiblesPlugin.Opensong - + Importing %s %s... Importing <book name> <chapter>... Importando %s %s... @@ -1649,7 +1659,7 @@ Note que los versículos se descargarán según sea necesario, por lo que debe c Editar todas las diapositivas a la vez. - + Split a slide into two by inserting a slide splitter. Dividir la diapositiva insertando un separador. @@ -1679,11 +1689,19 @@ Note que los versículos se descargarán según sea necesario, por lo que debe c Ed&itar Todo - + Insert Slide Insertar + + CustomPlugin.EditVerseForm + + + Edit Slide + + + CustomPlugin.MediaItem @@ -1972,7 +1990,7 @@ Do you want to add the other images anyway? OpenLP - + Image Files Archivos de Imagen @@ -2231,7 +2249,7 @@ Portions copyright © 2004-2012 %s Archivo: - + Open File Abrir Archivo @@ -2358,7 +2376,7 @@ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for No usar el Administrador de Ventanas de X11 - + Syntax error. Error de Sintaxis. @@ -2418,22 +2436,22 @@ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for Error en Directorio de Datos - + Select Data Directory Location Seleccione Ubicación de Datos - + Confirm Data Directory Change Confirme Cambio de Directorio - + Reset Data Directory Reestablecer Directorio de Datos - + Are you sure you want to change the location of the OpenLP data directory to the default location? This location will be used after OpenLP is closed. @@ -2442,7 +2460,7 @@ This location will be used after OpenLP is closed. Esta ubicación se utilizará luego de cerrar OpenLP. - + Overwrite Existing Data Sobrescribir los Datos Actuales @@ -2836,25 +2854,10 @@ Para detener el Asistente Inicial (y no iniciar OpenLP), presione Cancelar ahora Descripción - + Tag Etiqueta - - - Start tag - Etiqueta de inicio - - - - End tag - Etiqueta de final - - - - Tag Id - ID de Etiqueta - Start HTML @@ -2869,7 +2872,7 @@ Para detener el Asistente Inicial (y no iniciar OpenLP), presione Cancelar ahora OpenLP.FormattingTagForm - + Update Error Error de Actualización @@ -2894,7 +2897,7 @@ Para detener el Asistente Inicial (y no iniciar OpenLP), presione Cancelar ahora </and aquí> - + Tag %s already defined. Etiqueta %s ya definida. @@ -3932,82 +3935,82 @@ Extensión no admitida OpenLP.ServiceManager - + Move to &top Mover al &inicio - + Move item to the top of the service. Mover el elemento al inicio del servicio. - + Move &up S&ubir - + Move item up one position in the service. Mover el elemento una posición hacia arriba. - + Move &down Ba&jar - + Move item down one position in the service. Mover el elemento una posición hacia abajo. - + Move to &bottom Mover al &final - + Move item to the end of the service. Mover el elemento al final del servicio. - + &Delete From Service &Eliminar Del Servicio - + Delete the selected item from the service. Eliminar el elemento seleccionado del servicio. - + &Add New Item &Agregar Nuevo Elemento - + &Add to Selected Item &Agregar al Elemento Seleccionado - + &Edit Item &Editar Elemento - + &Reorder Item &Reorganizar Elemento - + &Notes &Notas - + &Change Item Theme &Cambiar Tema de elemento @@ -4044,72 +4047,72 @@ La codificación del contenido no es UTF-8. El elemento no se puede mostar porque falta el complemento requerido o esta desabilitado - + &Expand all &Expandir todo - + Expand all the service items. Expandir todos los elementos del servicio. - + &Collapse all &Colapsar todo - + Collapse all the service items. Colapsar todos los elementos del servicio. - + Open File Abrir Archivo - + Moves the selection down the window. Mover selección hacia abajo. - + Move up Subir - + Moves the selection up the window. Mover selección hacia arriba. - + Go Live Proyectar - + Send the selected item to Live. Proyectar el elemento seleccionado. - + &Start Time &Tiempo de Inicio - + Show &Preview Mostrar &Vista Previa - + Modified Service Servicio Modificado - + The current service has been modified. Would you like to save this service? El servicio actual a sido modificado. ¿Desea guardar este servicio? @@ -4129,7 +4132,7 @@ La codificación del contenido no es UTF-8. Tiempo de reproducción: - + Untitled Service Servicio Sin nombre @@ -4154,17 +4157,17 @@ La codificación del contenido no es UTF-8. Archivo Corrompido - + Load an existing service. Abrir un servicio existente. - + Save this service. Guardar este servicio. - + Select a theme for the service. Seleccione un tema para el servicio. @@ -4174,7 +4177,7 @@ La codificación del contenido no es UTF-8. El archivo está corrupto o no es un archivo OpenLP 2.0 válido. - + Service File Missing Archivo de Servicio faltante @@ -5044,12 +5047,12 @@ La codificación del contenido no es UTF-8. Preview and Save - + Previsualizar y Guardar Preview the theme and save it. - + Previsualizar el tema y guardarlo. @@ -6765,7 +6768,7 @@ La codificación se encarga de la correcta representación de caracteres. SongsPlugin.ImportWizardForm - + Select Document/Presentation Files Seleccione Documento/Presentación @@ -6780,7 +6783,7 @@ La codificación se encarga de la correcta representación de caracteres.Este asistente le ayudará a importar canciones de diversos formatos. Presione Siguiente para iniciar el proceso al seleccionar un formato a importar. - + Generic Document/Presentation Documento/Presentación genérica @@ -6800,37 +6803,37 @@ La codificación se encarga de la correcta representación de caracteres.Por favor espere mientras se exportan las canciones. - + OpenLP 2.0 Databases Base de Datos OpenLP 2.0 - + openlp.org v1.x Databases Base de datos openlp v1.x - + Words Of Worship Song Files Archivo Words Of Worship - + Songs Of Fellowship Song Files Archivo Songs Of Fellowship - + SongBeamer Files Archivo SongBeamer - + SongShow Plus Song Files Archivo SongShow Plus - + Foilpresenter Song Files Archivo Foilpresenter @@ -6845,63 +6848,93 @@ La codificación se encarga de la correcta representación de caracteres.Guardar a Archivo - + The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. El importador de Songs of Fellowship se ha deshabilitado porque OpenOffice.org o LibreOffice no esta disponible. - + The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. El importador documento/presentación se ha deshabilitado porque OpenOffice.org o LibreOffice no esta disponible. - + OpenLyrics or OpenLP 2.0 Exported Song Canción exportada de OpenLyrics o OpenLP 2.0 - + OpenLyrics Files Archivos OpenLyrics - + CCLI SongSelect Files Archivos CCLI SongSelect - + EasySlides XML File Archivo EasySlides XML - + EasyWorship Song Database Base de Datos EasyWorship - + DreamBeam Song Files Archivos de Canción DreamBeam - + You need to specify a valid PowerSong 1.0 database folder. Debe especificar un folder de datos PowerSong 1.0 válido. - + ZionWorx (CSV) ZionWorx (CSV) - + First convert your ZionWorx database to a CSV text file, as explained in the <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">User Manual</a>. Primero convierta su base de datos ZionWork a un archivo de texto CSV, como se explica en el <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">Manual de Usuario</a>. - + SundayPlus Song Files + Archivos de SundayPlus + + + + This importer has been disabled. + + + + + MediaShout Database + + + + + The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. + + + + + SongPro Text Files + + + + + SongPro (Export File) + + + + + In SongPro, export your songs using the File -> Export menu @@ -6985,6 +7018,14 @@ La codificación se encarga de la correcta representación de caracteres.Buscar Himnarios... + + SongsPlugin.MediaShoutImport + + + Unable to open the MediaShout database. + + + SongsPlugin.OpenLP1SongImport diff --git a/resources/i18n/et.ts b/resources/i18n/et.ts index 14771b815..5265835db 100644 --- a/resources/i18n/et.ts +++ b/resources/i18n/et.ts @@ -940,7 +940,7 @@ otsingutulemustes ja ekraanil: The following book name cannot be matched up internally. Please select the corresponding name from the list. - + Järgneva raamatu nimele ei leitud vastet. Palun vali õige nimi loetelust. @@ -1343,12 +1343,12 @@ vastavalt vajadusele ning seetõttu on vaja internetiühendust. Piibel ei ole täielikult laaditud. - + Information Andmed - + The second Bible does not contain all the verses that are in the main Bible. Only verses found in both Bibles will be shown. %d verses have not been included in the results. Teine Piibel ei sisalda kõiki salme, mis on peamises Piiblis. Näidatakse ainult neid salme, mis leiduvad mõlemas Piiblis. %d salmi ei kaasatud tulemustesse. @@ -1364,14 +1364,24 @@ vastavalt vajadusele ning seetõttu on vaja internetiühendust. - Are you sure you want to delete "%s"? - Kas sa oled kindel, et tahad "%s" kustutada? + Are you sure you want to completely delete "%s" Bible from OpenLP? + +You will need to re-import this Bible to use it again. + + + + + BiblesPlugin.OpenSongImport + + + Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. + BiblesPlugin.Opensong - + Importing %s %s... Importing <book name> <chapter>... %s %s. peatüki importimine... @@ -1648,7 +1658,7 @@ Pane tähele, et veebipiiblite salmid laaditakse internetist vajadusel, seega on Kõigi slaidide muutmine ühekorraga. - + Split a slide into two by inserting a slide splitter. Slaidi lõikamine kaheks, sisestades slaidide eraldaja. @@ -1678,11 +1688,19 @@ Pane tähele, et veebipiiblite salmid laaditakse internetist vajadusel, seega on Muuda &kõiki - + Insert Slide Uus slaid + + CustomPlugin.EditVerseForm + + + Edit Slide + + + CustomPlugin.MediaItem @@ -1971,7 +1989,7 @@ Kas tahad teised pildid sellest hoolimata lisada? OpenLP - + Image Files Pildifailid @@ -2229,7 +2247,7 @@ Osaline copyright © 2004-2012 %s Pildifail: - + Open File Faili avamine @@ -2356,91 +2374,93 @@ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for X11 aknahaldur jäetakse vahele - + Syntax error. Süntaksi viga. Data Location - + Andmete asukoht Current path: - + Praegune asukoht: Custom path: - + Kohandatud asukoht: Browse for new data file location. - + Sirvimine andmete faili uue asukoha leidmiseks. Set the data location to the default. - + Andmete vaikimisi asukoha taastamine. Cancel - Loobu + Loobu Cancel OpenLP data directory location change. - + Loobu OpenLP andmete kataloogi asukoha muutusest. Copy data to new location. - + Kopeeri andmed uude asukohta. Copy the OpenLP data files to the new location. - + OpenLP andmefailide kopeerimine uude asukohta. <strong>WARNING:</strong> New data directory location contains OpenLP data files. These files WILL be replaced during a copy. - + <strong>HOIATUS:</strong> Uus OpenLP andmefailide kataloog juba sisaldab andmefaile. Kopeerimisel need failid ASENDATAKSE. Data Directory Error - + Andmete kataloogi tõrge - + Select Data Directory Location - + Andmekausta asukoha valimine - + Confirm Data Directory Change - + Andmekausta muutmise kinnitus - + Reset Data Directory - + Taasta esialgne andmekaust - + Are you sure you want to change the location of the OpenLP data directory to the default location? This location will be used after OpenLP is closed. - + Kas sa oled kindel, et tahad taastada OpenLP andmekausta vaikimisi asukoha? + +Seda asukohta kasutatakse pärast OpenLP sulgemist. - + Overwrite Existing Data - + Olemasolevate andmete ülekirjutamine @@ -2833,25 +2853,10 @@ Esmakäivituse nõustajast loobumiseks (ning OpenLP mittekäivitamiseks) klõpsa Kirjeldus - + Tag Märgis - - - Start tag - Alustav märgis - - - - End tag - Lõpetav märgis - - - - Tag Id - Märgise ID - Start HTML @@ -2866,7 +2871,7 @@ Esmakäivituse nõustajast loobumiseks (ning OpenLP mittekäivitamiseks) klõpsa OpenLP.FormattingTagForm - + Update Error Tõrge uuendamisel @@ -2891,7 +2896,7 @@ Esmakäivituse nõustajast loobumiseks (ning OpenLP mittekäivitamiseks) klõpsa </ja siia> - + Tag %s already defined. Märgis %s on juba defineeritud. @@ -3641,7 +3646,7 @@ Väärade sätete importimine võib põhjustada OpenLP väära käitumist või s New Data Directory Error - + Uue andmekausta viga @@ -3929,82 +3934,82 @@ Selle lõpuga fail ei ole toetatud OpenLP.ServiceManager - + Move to &top Tõsta ü&lemiseks - + Move item to the top of the service. Teenistuse algusesse tõstmine. - + Move &up Liiguta &üles - + Move item up one position in the service. Elemendi liigutamine teenistuses ühe koha võrra ettepoole. - + Move &down Liiguta &alla - + Move item down one position in the service. Elemendi liigutamine teenistuses ühe koha võrra tahapoole. - + Move to &bottom Tõsta &alumiseks - + Move item to the end of the service. Teenistuse lõppu tõstmine. - + &Delete From Service &Kustuta teenistusest - + Delete the selected item from the service. Valitud elemendi kustutamine teenistusest. - + &Add New Item &Lisa uus element - + &Add to Selected Item &Lisa valitud elemendile - + &Edit Item &Muuda kirjet - + &Reorder Item &Muuda elemendi kohta järjekorras - + &Notes &Märkmed - + &Change Item Theme &Muuda elemendi kujundust @@ -4041,72 +4046,72 @@ Sisu ei ole UTF-8 kodeeringus. Seda elementi pole võimalik näidata, kuna vajalik plugin on puudu või pole aktiivne - + &Expand all &Laienda kõik - + Expand all the service items. Kõigi teenistuse kirjete laiendamine. - + &Collapse all &Ahenda kõik - + Collapse all the service items. Kõigi teenistuse kirjete ahendamine. - + Open File Faili avamine - + Moves the selection down the window. Valiku tõstmine aknas allapoole. - + Move up Liiguta üles - + Moves the selection up the window. Valiku tõstmine aknas ülespoole. - + Go Live Ekraanile - + Send the selected item to Live. Valitud kirje saatmine ekraanile. - + &Start Time &Alguse aeg - + Show &Preview Näita &eelvaadet - + Modified Service Teenistust on muudetud - + The current service has been modified. Would you like to save this service? Praegust teenistust on muudetud. Kas tahad selle teenistuse salvestada? @@ -4126,7 +4131,7 @@ Sisu ei ole UTF-8 kodeeringus. Kestus: - + Untitled Service Pealkirjata teenistus @@ -4151,17 +4156,17 @@ Sisu ei ole UTF-8 kodeeringus. Rikutud fail - + Load an existing service. Olemasoleva teenistuse laadimine. - + Save this service. Selle teenistuse salvestamine. - + Select a theme for the service. Teenistuse jaoks kujunduse valimine. @@ -4171,7 +4176,7 @@ Sisu ei ole UTF-8 kodeeringus. See fail on rikutud või ei ole see OpenLP 2.0 teenistuse fail. - + Service File Missing Teenistuse fail puudub @@ -4198,12 +4203,12 @@ Sisu ei ole UTF-8 kodeeringus. Error Saving File - + Viga faili salvestamisel There was an error saving your file. - + Sinu faili salvestamisel esines tõrge. @@ -5041,12 +5046,12 @@ Sisu ei ole UTF-8 kodeeringus. Preview and Save - + Eelvaatle ja salvesta Preview the theme and save it. - + Kujunduse eelvaade ja salvestamine. @@ -5652,42 +5657,42 @@ Sisu ei ole UTF-8 kodeeringus. Invalid Folder Selected Singular - + Valiti sobimatu kataloog Invalid File Selected Singular - + Valiti sobimatu fail Invalid Files Selected Plural - + Valiti sobimatud failid No Folder Selected Singular - + Ühtegi kasuta pole valitud Open %s Folder - + Ava %s kaust You need to specify one %s file to import from. A file type e.g. OpenSong - + Pead valim ühe %s faili, millest importida. You need to specify one %s folder to import from. A song format e.g. PowerSong - + Pead valima ühe %s kausta, millest importida. @@ -5813,12 +5818,12 @@ Sisu ei ole UTF-8 kodeeringus. The presentation %s is incomplete, please reload. - + Esitlus %s pole täielik, palun laadi uuesti. The presentation %s no longer exists. - + Esitlust %s pole enam olemas. @@ -6761,7 +6766,7 @@ Kodeering on vajalik märkide õige esitamise jaoks. SongsPlugin.ImportWizardForm - + Select Document/Presentation Files Dokumentide/esitluste valimine @@ -6776,7 +6781,7 @@ Kodeering on vajalik märkide õige esitamise jaoks. See nõustaja aitab importida paljudes erinevates vormingutes laule. Klõpsa all asuvat edasi nuppu, et jätkata importimise vormingu valimisega. - + Generic Document/Presentation Tavaline dokument/esitlus @@ -6796,37 +6801,37 @@ Kodeering on vajalik märkide õige esitamise jaoks. Palun oota, kuni laule imporditakse. - + OpenLP 2.0 Databases OpenLP 2.0 andmebaas - + openlp.org v1.x Databases openlp.org v1.x andmebaas - + Words Of Worship Song Files Words Of Worship Song failid - + Songs Of Fellowship Song Files Songs Of Fellowship laulufailid - + SongBeamer Files SongBeameri laulufailid - + SongShow Plus Song Files SongShow Plus laulufailid - + Foilpresenter Song Files Foilpresenteri laulufailid @@ -6841,63 +6846,93 @@ Kodeering on vajalik märkide õige esitamise jaoks. Salvesta faili - + The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. Songs of Fellowship importija on keelatud, kuna OpenLP-l puudub ligiäpääs OpenOffice'le või LibreOffice'le. - + The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. Tavalise dokumendi/esitluse importija on keelatud, kuna OpenLP-l puudub ligipääs OpenOffice'le või LibreOffice'le. - + OpenLyrics or OpenLP 2.0 Exported Song OpenLyrics või OpenLP 2.0-st eksporditud laul - + OpenLyrics Files OpenLyrics failid - + CCLI SongSelect Files CCLI SongSelecti failid - + EasySlides XML File EasySlides XML fail - + EasyWorship Song Database EasyWorship laulude andmebaas - + DreamBeam Song Files - + DreamBeam'i laulufailid - + You need to specify a valid PowerSong 1.0 database folder. - + Pead valima õige PowerSong 1.0 andmebaasi kataloogi. - + ZionWorx (CSV) - + ZionWorx (CSV) - + First convert your ZionWorx database to a CSV text file, as explained in the <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">User Manual</a>. + Kõigepealt teisenda oma ZionWorx andmebaas CSV tekstifailiks, vastavalt juhendile <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">kasutaja käsiraamatus</a>. + + + + SundayPlus Song Files + SundayPlus'i laulufailid + + + + This importer has been disabled. - - SundayPlus Song Files + + MediaShout Database + + + + + The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. + + + + + SongPro Text Files + + + + + SongPro (Export File) + + + + + In SongPro, export your songs using the File -> Export menu @@ -6981,6 +7016,14 @@ Kodeering on vajalik märkide õige esitamise jaoks. Laulikute otsimine... + + SongsPlugin.MediaShoutImport + + + Unable to open the MediaShout database. + + + SongsPlugin.OpenLP1SongImport @@ -7010,12 +7053,12 @@ Kodeering on vajalik märkide õige esitamise jaoks. No songs to import. - + Pole laule, mida importida. Verses not found. Missing "PART" header. - + Salme ei leitud. "PART" päis puudub. diff --git a/resources/i18n/fi.ts b/resources/i18n/fi.ts index 64430dd72..19505a8e2 100644 --- a/resources/i18n/fi.ts +++ b/resources/i18n/fi.ts @@ -5,35 +5,35 @@ &Alert - + &Hälytys Show an alert message. - + Näytä Alert name singular - + Hälytys Alerts name plural - + Hälytykset Alerts container title - + Hälytykset <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of nursery alerts on the display screen. - + <strong>Hälytykset liitännäinen</strong><br />Hälytykset liitännäinen huolehtii lastenhoidon viestien näyttämisestä esityksen aikana. @@ -41,22 +41,22 @@ Alert Message - + Hälytysviesti Alert &text: - + Hälytyksen &teksti &New - + &Uusi &Save - + &Tallenna @@ -1320,12 +1320,12 @@ demand and thus an internet connection is required. - + Information - + The second Bible does not contain all the verses that are in the main Bible. Only verses found in both Bibles will be shown. %d verses have not been included in the results. @@ -1341,14 +1341,24 @@ demand and thus an internet connection is required. - Are you sure you want to delete "%s"? + Are you sure you want to completely delete "%s" Bible from OpenLP? + +You will need to re-import this Bible to use it again. + + + + + BiblesPlugin.OpenSongImport + + + Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. BiblesPlugin.Opensong - + Importing %s %s... Importing <book name> <chapter>... @@ -1619,7 +1629,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I - + Split a slide into two by inserting a slide splitter. @@ -1649,11 +1659,19 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I - + Insert Slide + + CustomPlugin.EditVerseForm + + + Edit Slide + + + CustomPlugin.MediaItem @@ -1941,7 +1959,7 @@ Do you want to add the other images anyway? OpenLP - + Image Files @@ -2131,7 +2149,7 @@ Portions copyright © 2004-2012 %s - + Open File @@ -2258,7 +2276,7 @@ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for - + Syntax error. @@ -2318,29 +2336,29 @@ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for - + Select Data Directory Location - + Confirm Data Directory Change - + Reset Data Directory - + Are you sure you want to change the location of the OpenLP data directory to the default location? This location will be used after OpenLP is closed. - + Overwrite Existing Data @@ -2700,24 +2718,9 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can Description - - - Tag - - - - - Start tag - - - - - End tag - - - Tag Id + Tag @@ -2734,7 +2737,7 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can OpenLP.FormattingTagForm - + Update Error @@ -2759,7 +2762,7 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can - + Tag %s already defined. @@ -3091,7 +3094,7 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can &New - + &Uusi @@ -3106,7 +3109,7 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can &Save - + &Tallenna @@ -3784,82 +3787,82 @@ Suffix not supported OpenLP.ServiceManager - + Move to &top - + Move item to the top of the service. - + Move &up - + Move item up one position in the service. - + Move &down - + Move item down one position in the service. - + Move to &bottom - + Move item to the end of the service. - + &Delete From Service - + Delete the selected item from the service. - + &Add New Item - + &Add to Selected Item - + &Edit Item - + &Reorder Item - + &Notes - + &Change Item Theme @@ -3895,72 +3898,72 @@ The content encoding is not UTF-8. - + &Expand all - + Expand all the service items. - + &Collapse all - + Collapse all the service items. - + Open File - + Moves the selection down the window. - + Move up - + Moves the selection up the window. - + Go Live - + Send the selected item to Live. - + &Start Time - + Show &Preview - + Modified Service - + The current service has been modified. Would you like to save this service? @@ -3980,7 +3983,7 @@ The content encoding is not UTF-8. - + Untitled Service @@ -4005,17 +4008,17 @@ The content encoding is not UTF-8. - + Load an existing service. - + Save this service. - + Select a theme for the service. @@ -4025,7 +4028,7 @@ The content encoding is not UTF-8. - + Service File Missing @@ -5744,7 +5747,7 @@ The content encoding is not UTF-8. Alerts - + Hälytykset @@ -6609,7 +6612,7 @@ The encoding is responsible for the correct character representation. SongsPlugin.ImportWizardForm - + Select Document/Presentation Files @@ -6624,7 +6627,7 @@ The encoding is responsible for the correct character representation. - + Generic Document/Presentation @@ -6644,37 +6647,37 @@ The encoding is responsible for the correct character representation. - + OpenLP 2.0 Databases - + openlp.org v1.x Databases - + Words Of Worship Song Files - + Songs Of Fellowship Song Files - + SongBeamer Files - + SongShow Plus Song Files - + Foilpresenter Song Files @@ -6689,65 +6692,95 @@ The encoding is responsible for the correct character representation. - + The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. - + The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. - + OpenLyrics or OpenLP 2.0 Exported Song - + OpenLyrics Files - + CCLI SongSelect Files - + EasySlides XML File - + EasyWorship Song Database - + DreamBeam Song Files - + You need to specify a valid PowerSong 1.0 database folder. - + ZionWorx (CSV) - + First convert your ZionWorx database to a CSV text file, as explained in the <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">User Manual</a>. - + SundayPlus Song Files + + + This importer has been disabled. + + + + + MediaShout Database + + + + + The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. + + + + + SongPro Text Files + + + + + SongPro (Export File) + + + + + In SongPro, export your songs using the File -> Export menu + + SongsPlugin.MediaFilesForm @@ -6829,6 +6862,14 @@ The encoding is responsible for the correct character representation. + + SongsPlugin.MediaShoutImport + + + Unable to open the MediaShout database. + + + SongsPlugin.OpenLP1SongImport diff --git a/resources/i18n/fr.ts b/resources/i18n/fr.ts index cbede3479..3bb5812a5 100644 --- a/resources/i18n/fr.ts +++ b/resources/i18n/fr.ts @@ -693,7 +693,8 @@ Voulez-vous tout de même continuer ? The book name "%s" is not correct. Numbers can only be used at the beginning and must be followed by one or more non-numeric characters. - + Le nom du livre "%s" est incorrect. +Les nombres peuvent être utilisés uniquement au début et doivent être suivis par un ou plusieurs caractères non numériques. @@ -885,7 +886,8 @@ Veuillez supprimer cette ligne pour utiliser la valeur par défaut. Book name language in search field, search results and on display: - + Langue du livre dans le champ de recherche, +résultats de recherche et à l'affichage : @@ -938,7 +940,7 @@ search results and on display: The following book name cannot be matched up internally. Please select the corresponding name from the list. - + Le nom du livre suivant ne correspond pas. Veuillez sélectionner le bon nom dans la liste. @@ -1003,7 +1005,7 @@ search results and on display: Book name language in search field, search results and on display: - + Langue du livre dans le champ de recherche, résultats de recherche et à l'affichage : @@ -1029,12 +1031,13 @@ search results and on display: This is a Web Download Bible. It is not possible to customize the Book Names. - + C'est une Bible Web téléchargée. +Ce n'est pas possible de personnaliser le nom des livres. To use the customized book names, "Bible language" must be selected on the Meta Data tab or, if "Global settings" is selected, on the Bible page in Configure OpenLP. - + Pour utiliser les noms de livres personnalisés, "Langue de bible" doit être sélectionné à partir de l'onglet Méta données ou, si "Paramètres globales" est sélectionné, dans la page Bible de la configuration d'OpenLP. @@ -1340,12 +1343,12 @@ demand and thus an internet connection is required. Bible partiellement chargée. - + Information Information - + The second Bible does not contain all the verses that are in the main Bible. Only verses found in both Bibles will be shown. %d verses have not been included in the results. La seconde Bible ne contient pas tous les versets présents dans la Bible principale. Seulement les versets trouvés dans les deux Bibles seront affichés. %d versets n'ont pas été inclus dans les résultats. @@ -1361,14 +1364,24 @@ demand and thus an internet connection is required. - Are you sure you want to delete "%s"? - Etes-vous sur de vouloir supprimer "%s" ? + Are you sure you want to completely delete "%s" Bible from OpenLP? + +You will need to re-import this Bible to use it again. + + + + + BiblesPlugin.OpenSongImport + + + Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. + BiblesPlugin.Opensong - + Importing %s %s... Importing <book name> <chapter>... Importation %s %s... @@ -1645,7 +1658,7 @@ Veuillez noter que les versets des Bibles Web seront téléchargés à la demand Édite toutes les diapositives en une. - + Split a slide into two by inserting a slide splitter. Sépare la diapositive en deux en insérant un séparateur de diapositive. @@ -1675,11 +1688,19 @@ Veuillez noter que les versets des Bibles Web seront téléchargés à la demand Édite &tous - + Insert Slide Insère une diapositive + + CustomPlugin.EditVerseForm + + + Edit Slide + + + CustomPlugin.MediaItem @@ -1968,7 +1989,7 @@ Voulez-vous ajouter les autres images malgré tout ? OpenLP - + Image Files Fichiers image @@ -2227,7 +2248,7 @@ Portions copyright © 2004-2012 %s Fichier image : - + Open File Ouvre un fichier @@ -2354,91 +2375,93 @@ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for Contourner le gestionnaire de fenêtres X11 - + Syntax error. Erreur de syntaxe. Data Location - + Emplacement des données Current path: - + Chemin courant : Custom path: - + Chemin personnalisé : Browse for new data file location. - + Sélectionnez un nouvel emplacement pour le fichier de données. Set the data location to the default. - + Définir cet emplacement pour les données comme emplacement par défaut. Cancel - Annuler + Annuler Cancel OpenLP data directory location change. - + Annuler le changement d'emplacement du dossier de données d'OpenLP. Copy data to new location. - + Copier les données vers un nouvel emplacement. Copy the OpenLP data files to the new location. - + Copier les fichiers de données d'OpenLP vers le nouvel emplacement. <strong>WARNING:</strong> New data directory location contains OpenLP data files. These files WILL be replaced during a copy. - + <strong>ATTENTION:</strong> Le nouveau dossier de données contient des fichiers de données OpenLP. Ces fichiers seront remplacés pendant la copie. Data Directory Error - + Erreur du dossier de données - + Select Data Directory Location - + Sélectionnez un emplacement pour le dossier de données - + Confirm Data Directory Change - + Confirmez le changement de dossier de données - + Reset Data Directory - + Remise à zéro du dossier de données - + Are you sure you want to change the location of the OpenLP data directory to the default location? This location will be used after OpenLP is closed. - + Etes-vous sûr de vouloir restaurer l'emplacement du dossier de données par défaut d'OpenLP ? + +Cet emplacement sera utilisé après avoir fermé OpenLP. - + Overwrite Existing Data - + Écraser les données existantes @@ -2799,7 +2822,9 @@ To re-run the First Time Wizard and import this sample data at a later time, che To cancel the First Time Wizard completely (and not start OpenLP), click the Cancel button now. - + + +Pour annuler complètement le premier assistant (et ne pas lancer OpenLP), cliquez sur le bouton Annuler maintenant. @@ -2825,25 +2850,10 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can Description - + Tag Balise - - - Start tag - Balise de début - - - - End tag - Balise de fin - - - - Tag Id - Identifiant de balise - Start HTML @@ -2858,7 +2868,7 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can OpenLP.FormattingTagForm - + Update Error Erreur de mise à jour @@ -2883,7 +2893,7 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can </et ici> - + Tag %s already defined. Balise %s déjà définie. @@ -3633,7 +3643,7 @@ L'import de configurations incorrect peut provoquer des comportements impr New Data Directory Error - + Erreur du nouveau dossier de données @@ -3921,82 +3931,82 @@ Extension non supportée OpenLP.ServiceManager - + Move to &top Place en &premier - + Move item to the top of the service. Place l'élément au début du service. - + Move &up Déplace en &haut - + Move item up one position in the service. Déplace l'élément d'une position en haut. - + Move &down Déplace en &bas - + Move item down one position in the service. Déplace l'élément d'une position en bas. - + Move to &bottom Place en &dernier - + Move item to the end of the service. Place l'élément a la fin du service. - + &Delete From Service &Retire du service - + Delete the selected item from the service. Retire l'élément sélectionné du service. - + &Add New Item &Ajoute un nouvel élément - + &Add to Selected Item &Ajoute à l'élément sélectionné - + &Edit Item &Édite l'élément - + &Reorder Item &Réordonne l'élément - + &Notes &Notes - + &Change Item Theme &Change le thème de l'élément @@ -4033,72 +4043,72 @@ Le contenu n'est pas de l'UTF-8. Votre élément ne peut pas être affiché parce que le module nécessaire est manquant ou désactivé - + &Expand all &Développer tout - + Expand all the service items. Développe tous les éléments du service. - + &Collapse all &Réduire tout - + Collapse all the service items. Réduit tous les éléments du service. - + Open File Ouvre un fichier - + Moves the selection down the window. Déplace la sélection en bas de la fenêtre. - + Move up Déplace en haut - + Moves the selection up the window. Déplace la sélection en haut de la fenêtre. - + Go Live Lance le direct - + Send the selected item to Live. Affiche l'élément sélectionné en direct. - + &Start Time Temps de &début - + Show &Preview Affiche en &prévisualisation - + Modified Service Service modifié - + The current service has been modified. Would you like to save this service? Le service courant à été modifié. Voulez-vous l'enregistrer ? @@ -4118,7 +4128,7 @@ Le contenu n'est pas de l'UTF-8. Durée du service : - + Untitled Service Service sans titre @@ -4143,17 +4153,17 @@ Le contenu n'est pas de l'UTF-8. Fichier corrompu - + Load an existing service. Charge un service existant. - + Save this service. Enregistre ce service. - + Select a theme for the service. Sélectionne un thème pour le service. @@ -4163,7 +4173,7 @@ Le contenu n'est pas de l'UTF-8. Ce fichier est sois corrompu ou n'est pas un fichier de service OpenLP 2.0. - + Service File Missing Fichier de service manquant @@ -4190,12 +4200,12 @@ Le contenu n'est pas de l'UTF-8. Error Saving File - + Erreur de sauvegarde du fichier There was an error saving your file. - + Une erreur est survenue lors de la sauvegarde de votre fichier. @@ -5033,12 +5043,12 @@ Le contenu n'est pas de l'UTF-8. Preview and Save - + Prévisualiser et Sauvegarder Preview the theme and save it. - + Prévisualiser le thème et le sauvegarder. @@ -5638,48 +5648,48 @@ Le contenu n'est pas de l'UTF-8. Optional &Split - + Optionnel &Partager Invalid Folder Selected Singular - + Dossier sélectionné invalide Invalid File Selected Singular - + Fichier sélectionné invalide Invalid Files Selected Plural - + Fichiers sélectionnés invalides No Folder Selected Singular - + Aucun dossier sélectionné Open %s Folder - + Ouvrir le dossier %s You need to specify one %s file to import from. A file type e.g. OpenSong - + Vous devez spécifier un fichier %s à importer. You need to specify one %s folder to import from. A song format e.g. PowerSong - + Vous devez spécifier un dossier %s à importer. @@ -5805,12 +5815,12 @@ Le contenu n'est pas de l'UTF-8. The presentation %s is incomplete, please reload. - + La présentation %s est incomplète, veuillez la recharger. The presentation %s no longer exists. - + La présentation %s n'existe plus. @@ -5962,7 +5972,7 @@ Le contenu n'est pas de l'UTF-8. Add &amp; Go to Service - + Ajouter &amp; Se rendre au Service @@ -6754,7 +6764,7 @@ L'encodage permet un affichage correct des caractères. SongsPlugin.ImportWizardForm - + Select Document/Presentation Files Sélectionne les fichiers Document/Présentation @@ -6769,7 +6779,7 @@ L'encodage permet un affichage correct des caractères. Cet assistant vous permet d'importer des chants de divers formats. Cliquez sur le bouton suivant ci-dessous pour démarrer le processus en sélectionnant le format à importer. - + Generic Document/Presentation Document/Présentation générique @@ -6789,37 +6799,37 @@ L'encodage permet un affichage correct des caractères. Veuillez patienter pendant l'import de vos chants. - + OpenLP 2.0 Databases Base de données OpenLP 2.0 - + openlp.org v1.x Databases Base de données openlp.org 1.x - + Words Of Worship Song Files Fichiers Chant Words Of Worship - + Songs Of Fellowship Song Files Fichiers Chant Songs Of Fellowship - + SongBeamer Files Fichiers SongBeamer - + SongShow Plus Song Files Fichiers Chant SongShow Plus - + Foilpresenter Song Files Fichiers Chant Foilpresenter @@ -6834,63 +6844,93 @@ L'encodage permet un affichage correct des caractères. Enregistre dans le fichier - + The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. L'import de chants Fellowship a été désactivé car OpenLP ne peut accéder à OpenOffice ou LibreOffice. - + The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. L'import générique de document/présentation a été désactivé car OpenLP ne peut accéder à OpenOffice ou LibreOffice. - + OpenLyrics or OpenLP 2.0 Exported Song Chant exporté OpenLyrics ou OpenLP 2.0 - + OpenLyrics Files Fichiers OpenLyrics - + CCLI SongSelect Files CCLI Song Sélectionner Fichiers - + EasySlides XML File Fichier XML EasySlides - + EasyWorship Song Database Base de données de chants d'EasyWorship - + DreamBeam Song Files - + Fichiers chants DreamBeam - + You need to specify a valid PowerSong 1.0 database folder. - + Vous devez spécifier un dossier de données PowerSong 1.0 valide. - + ZionWorx (CSV) - + ZionWorx (CSV) - + First convert your ZionWorx database to a CSV text file, as explained in the <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">User Manual</a>. - + SundayPlus Song Files + Fichier chants SundayPlus + + + + This importer has been disabled. + + + + + MediaShout Database + + + + + The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. + + + + + SongPro Text Files + + + + + SongPro (Export File) + + + + + In SongPro, export your songs using the File -> Export menu @@ -6974,6 +7014,14 @@ L'encodage permet un affichage correct des caractères. Recherche dans les carnets de chants... + + SongsPlugin.MediaShoutImport + + + Unable to open the MediaShout database. + + + SongsPlugin.OpenLP1SongImport @@ -7003,12 +7051,12 @@ L'encodage permet un affichage correct des caractères. No songs to import. - + Aucun chant à importer. Verses not found. Missing "PART" header. - + Versets non trouvé. Entête "PART" manquante. @@ -7272,12 +7320,12 @@ L'encodage permet un affichage correct des caractères. Error reading CSV file. - + Impossible de lire le fichier CSV. File not valid ZionWorx CSV format. - + Format de fichier CSV ZionWorx invalide. diff --git a/resources/i18n/hu.ts b/resources/i18n/hu.ts index 1a15dc6f6..4658b97b2 100644 --- a/resources/i18n/hu.ts +++ b/resources/i18n/hu.ts @@ -1344,12 +1344,12 @@ demand and thus an internet connection is required. A biblia nem töltődött be teljesen. - + Information Információ - + The second Bible does not contain all the verses that are in the main Bible. Only verses found in both Bibles will be shown. %d verses have not been included in the results. A második biblia nem tartalmaz minden verset, ami az elsőben megtalálható. Csak a mindkét bibliában fellelhető versek fognak megjelenni. Ezek a versek nem lesznek megtalálhatóak: %d. @@ -1365,14 +1365,24 @@ demand and thus an internet connection is required. - Are you sure you want to delete "%s"? - Valóban törölhető ez: %s? + Are you sure you want to completely delete "%s" Bible from OpenLP? + +You will need to re-import this Bible to use it again. + + + + + BiblesPlugin.OpenSongImport + + + Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. + BiblesPlugin.Opensong - + Importing %s %s... Importing <book name> <chapter>... Importálás: %s %s… @@ -1649,7 +1659,7 @@ Megjegyzés: a webes bibliák versei csak kérésre lesznek letöltve és ekkor Minden kijelölt dia szerkesztése egyszerre. - + Split a slide into two by inserting a slide splitter. Dia ketté vágása egy diaelválasztó beszúrásával. @@ -1679,11 +1689,19 @@ Megjegyzés: a webes bibliák versei csak kérésre lesznek letöltve és ekkor &Összes szerkesztése - + Insert Slide Dia beszúrása + + CustomPlugin.EditVerseForm + + + Edit Slide + + + CustomPlugin.MediaItem @@ -1971,7 +1989,7 @@ Szeretnél más képeket megadni? OpenLP - + Image Files Kép fájlok @@ -2231,7 +2249,7 @@ Részleges szerzői jog © 2004-2012 %s Kép fájl: - + Open File Fájl megnyitása @@ -2358,7 +2376,7 @@ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for X11 ablakkezelő megkerülése - + Syntax error. Szintaktikai hiba. @@ -2418,22 +2436,22 @@ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for Adatmappa hiba - + Select Data Directory Location Adapmappa helyének kijelölése - + Confirm Data Directory Change Adatmappa változásának megerősítése - + Reset Data Directory Adatmappa visszaállítása - + Are you sure you want to change the location of the OpenLP data directory to the default location? This location will be used after OpenLP is closed. @@ -2442,7 +2460,7 @@ This location will be used after OpenLP is closed. Az OpenLP bezárása után jut érvényre a változás. - + Overwrite Existing Data Meglévő adatok felülírása @@ -2835,25 +2853,10 @@ A tündér teljes leállításához (és az OpenLP bezárásához) kattints a M Leírás - + Tag Címke - - - Start tag - Nyitó címke - - - - End tag - Záró címke - - - - Tag Id - ID - Start HTML @@ -2868,7 +2871,7 @@ A tündér teljes leállításához (és az OpenLP bezárásához) kattints a M OpenLP.FormattingTagForm - + Update Error Frissítési hiba @@ -2893,7 +2896,7 @@ A tündér teljes leállításához (és az OpenLP bezárásához) kattints a M </és itt> - + Tag %s already defined. A címke már létezik: %s. @@ -3931,82 +3934,82 @@ Az utótag nem támogatott OpenLP.ServiceManager - + Move to &top Mozgatás &felülre - + Move item to the top of the service. Elem mozgatása a sorrend elejére. - + Move &up Mozgatás f&eljebb - + Move item up one position in the service. Elem mozgatása a sorrendben eggyel feljebb. - + Move &down Mozgatás &lejjebb - + Move item down one position in the service. Elem mozgatása a sorrendben eggyel lejjebb. - + Move to &bottom Mozgatás &alulra - + Move item to the end of the service. Elem mozgatása a sorrend végére. - + &Delete From Service &Törlés a sorrendből - + Delete the selected item from the service. Kijelölt elem törlése a sorrendből. - + &Add New Item Új elem &hozzáadása - + &Add to Selected Item &Hozzáadás a kijelölt elemhez - + &Edit Item &Elem szerkesztése - + &Reorder Item Elem újra&rendezése - + &Notes &Jegyzetek - + &Change Item Theme Elem témájának &módosítása @@ -4043,72 +4046,72 @@ A tartalom kódolása nem UTF-8. Az elemet nem lehet megjeleníteni, mert a bővítmény, amely kezelné, hiányzik vagy inaktív - + &Expand all Mind &kibontása - + Expand all the service items. Minden sorrend elem kibontása. - + &Collapse all Mind össze&csukása - + Collapse all the service items. Minden sorrend elem összecsukása. - + Open File Fájl megnyitása - + Moves the selection down the window. A kiválasztás lejjebb mozgatja az ablakot. - + Move up Mozgatás feljebb - + Moves the selection up the window. A kiválasztás feljebb mozgatja az ablakot. - + Go Live Élő adásba - + Send the selected item to Live. A kiválasztott elem élő adásba küldése. - + &Start Time &Kezdő időpont - + Show &Preview &Előnézet megjelenítése - + Modified Service Módosított sorrend - + The current service has been modified. Would you like to save this service? Az aktuális sorrend módosult. Szeretnéd elmenteni? @@ -4128,7 +4131,7 @@ A tartalom kódolása nem UTF-8. Lejátszási idő: - + Untitled Service Névtelen szolgálat @@ -4153,17 +4156,17 @@ A tartalom kódolása nem UTF-8. Sérült fájl - + Load an existing service. Egy meglévő szolgálati sorrend betöltése. - + Save this service. Sorrend mentése. - + Select a theme for the service. Jelöljön ki egy témát a sorrendhez. @@ -4173,7 +4176,7 @@ A tartalom kódolása nem UTF-8. A fájl vagy sérült vagy nem egy OpenLP 2.0 szolgálati sorrend fájl. - + Service File Missing Hiányzó sorrend fájl @@ -5043,12 +5046,12 @@ A tartalom kódolása nem UTF-8. Preview and Save - + Előnézet és mentés Preview the theme and save it. - + Téma előnézete és mentése. @@ -6763,7 +6766,7 @@ EasyWorshipből kerültek importálásra] SongsPlugin.ImportWizardForm - + Select Document/Presentation Files Jelölj ki egy dokumentum vagy egy bemutató fájlokat @@ -6778,7 +6781,7 @@ EasyWorshipből kerültek importálásra] A tündér segít a különféle formátumú dalok importálásában. Kattints az alábbi Következő gombra a folyamat első lépésének indításhoz, a formátum kiválasztásához. - + Generic Document/Presentation Általános dokumentum vagy bemutató @@ -6798,37 +6801,37 @@ EasyWorshipből kerültek importálásra] Kérlek, várj, míg a dalok importálás alatt állnak. - + OpenLP 2.0 Databases OpenLP 2.0 adatbázisok - + openlp.org v1.x Databases openlp.org v1.x adatbázisok - + Words Of Worship Song Files Words of Worship dal fájlok - + Songs Of Fellowship Song Files Songs Of Fellowship dal fájlok - + SongBeamer Files SongBeamer fájlok - + SongShow Plus Song Files SongShow Plus dal fájlok - + Foilpresenter Song Files Foilpresenter dal fájlok @@ -6843,63 +6846,93 @@ EasyWorshipből kerültek importálásra] Mentés fájlba - + The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. A Songs of Fellowship importáló le lett tiltva, mivel az OpenLP nem talál OpenOffice-t vagy LibreOffice-t a számítógépen. - + The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. Az általános dokumentum, ill. bemutató importáló le lett tiltva, mivel az OpenLP nem talál OpenOffice-t vagy LibreOffice-t a számítógépen. - + OpenLyrics or OpenLP 2.0 Exported Song OpenLyrics vagy OpenLP 2.0 epoxrtált dal - + OpenLyrics Files OpenLyrics fájlok - + CCLI SongSelect Files CCLI SongSelect fájlok - + EasySlides XML File EasySlides XML fájl - + EasyWorship Song Database EasyWorship dal adatbázis - + DreamBeam Song Files DreamBeam dal fájlok - + You need to specify a valid PowerSong 1.0 database folder. Meg kell adni egy érvényes PowerSong 1.0 adatvázis mappát. - + ZionWorx (CSV) ZionWorx (CSV) - + First convert your ZionWorx database to a CSV text file, as explained in the <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">User Manual</a>. Előbb CSV szövegfájllá kell konvertálni a ZionWorx adatbázist a <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">Felhasználói kézikönyv</a> útmutatása szerint. - + SundayPlus Song Files + SundayPlus dal fájlok + + + + This importer has been disabled. + + + + + MediaShout Database + + + + + The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. + + + + + SongPro Text Files + + + + + SongPro (Export File) + + + + + In SongPro, export your songs using the File -> Export menu @@ -6982,6 +7015,14 @@ EasyWorshipből kerültek importálásra] Énekeskönyvek keresése... + + SongsPlugin.MediaShoutImport + + + Unable to open the MediaShout database. + + + SongsPlugin.OpenLP1SongImport diff --git a/resources/i18n/id.ts b/resources/i18n/id.ts index ebbeda409..49f0a8fbb 100644 --- a/resources/i18n/id.ts +++ b/resources/i18n/id.ts @@ -1325,12 +1325,12 @@ dibutuhkan dan membutuhkan koneksi internet. Alkitab belum termuat seluruhnya. - + Information Informasi - + The second Bible does not contain all the verses that are in the main Bible. Only verses found in both Bibles will be shown. %d verses have not been included in the results. Alkitab kedua tidak memiliki seluruh ayat yang ada di Alkitab utama. Hanya ayat yang ditemukan di kedua Alkitab yang akan ditampilkan. %d ayat tidak terlihat di hasil. @@ -1346,14 +1346,24 @@ dibutuhkan dan membutuhkan koneksi internet. - Are you sure you want to delete "%s"? + Are you sure you want to completely delete "%s" Bible from OpenLP? + +You will need to re-import this Bible to use it again. + + + + + BiblesPlugin.OpenSongImport + + + Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. BiblesPlugin.Opensong - + Importing %s %s... Importing <book name> <chapter>... Mengimpor %s %s... @@ -1630,7 +1640,7 @@ Perhatikan bahwa ayat dari Alkitab Web akan diunduh saat diminta dan sambungan i Sunting seluruh slide bersamaan. - + Split a slide into two by inserting a slide splitter. Pecah slide menjadi dua menggunakan pemecah slide. @@ -1660,11 +1670,19 @@ Perhatikan bahwa ayat dari Alkitab Web akan diunduh saat diminta dan sambungan i Sun&ting Semua - + Insert Slide Tampilan Suai + + CustomPlugin.EditVerseForm + + + Edit Slide + + + CustomPlugin.MediaItem @@ -1952,7 +1970,7 @@ Ingin tetap menambah gambar lain? OpenLP - + Image Files Berkas Gambar @@ -2211,7 +2229,7 @@ Portions copyright © 2004-2012 %s Berkas gambar: - + Open File Buka Berkas @@ -2338,7 +2356,7 @@ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for - + Syntax error. @@ -2398,29 +2416,29 @@ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for - + Select Data Directory Location - + Confirm Data Directory Change - + Reset Data Directory - + Are you sure you want to change the location of the OpenLP data directory to the default location? This location will be used after OpenLP is closed. - + Overwrite Existing Data @@ -2809,25 +2827,10 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can Deskripsi - + Tag Label - - - Start tag - Label awal - - - - End tag - Label akhir - - - - Tag Id - ID Label - Start HTML @@ -2842,7 +2845,7 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can OpenLP.FormattingTagForm - + Update Error Galat dalam Memperbarui @@ -2867,7 +2870,7 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can </dan sini> - + Tag %s already defined. Label %s telah terdefinisi. @@ -3896,82 +3899,82 @@ Suffix not supported OpenLP.ServiceManager - + Move to &top Pindahkan ke punc&ak - + Move item to the top of the service. Pindahkan butir ke puncak daftar layanan. - + Move &up Pindahkan ke a&tas - + Move item up one position in the service. Naikkan butir satu posisi pada daftar layanan. - + Move &down Pindahkan ke &bawah - + Move item down one position in the service. Turunkan butir satu posisi pada daftar layanan. - + Move to &bottom Pindahkan ke &kaki - + Move item to the end of the service. Pindahkan butir ke kaki daftar layanan. - + &Delete From Service Hapus &dari Layanan - + Delete the selected item from the service. Hapus butir terpilih dari layanan. - + &Add New Item T&ambahkan Butir Baru - + &Add to Selected Item T&ambahkan ke Butir Terpilih - + &Edit Item &Sunting Butir - + &Reorder Item Atu&r Ulang Butir - + &Notes Catata&n - + &Change Item Theme &Ubah Tema @@ -4008,72 +4011,72 @@ Isi berkas tidak berupa UTF-8. Butir ini tidak dapat ditampilkan karena plugin yang dibutuhkan untuk menampilkannya hilang atau tidak aktif - + &Expand all &Kembangkan semua - + Expand all the service items. Kembangkan seluruh butir layanan. - + &Collapse all K&empiskan semua - + Collapse all the service items. Kempiskan seluruh butir layanan. - + Open File Buka Berkas - + Moves the selection down the window. Gerakkan pilihan ke bawah. - + Move up Pindah atas - + Moves the selection up the window. Pindahkan pilihan ke atas jendela - + Go Live Tayangkan - + Send the selected item to Live. Tayangkan butir terpilih. - + &Start Time &Waktu Mulai - + Show &Preview Tampilkan &Pratinjau - + Modified Service Layanan Terubah Suai - + The current service has been modified. Would you like to save this service? Layanan saat ini telah terubah suai. Ingin menyimpan layanan ini? @@ -4093,7 +4096,7 @@ Isi berkas tidak berupa UTF-8. - + Untitled Service @@ -4118,17 +4121,17 @@ Isi berkas tidak berupa UTF-8. Berkas Rusak - + Load an existing service. - + Save this service. - + Select a theme for the service. @@ -4138,7 +4141,7 @@ Isi berkas tidak berupa UTF-8. - + Service File Missing @@ -6722,7 +6725,7 @@ The encoding is responsible for the correct character representation. SongsPlugin.ImportWizardForm - + Select Document/Presentation Files @@ -6737,7 +6740,7 @@ The encoding is responsible for the correct character representation. - + Generic Document/Presentation @@ -6757,37 +6760,37 @@ The encoding is responsible for the correct character representation. - + OpenLP 2.0 Databases - + openlp.org v1.x Databases - + Words Of Worship Song Files - + Songs Of Fellowship Song Files - + SongBeamer Files - + SongShow Plus Song Files - + Foilpresenter Song Files @@ -6802,65 +6805,95 @@ The encoding is responsible for the correct character representation. Simpan menjadi Berkas - + The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. - + The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. - + OpenLyrics or OpenLP 2.0 Exported Song - + OpenLyrics Files - + CCLI SongSelect Files - + EasySlides XML File - + EasyWorship Song Database - + DreamBeam Song Files - + You need to specify a valid PowerSong 1.0 database folder. - + ZionWorx (CSV) - + First convert your ZionWorx database to a CSV text file, as explained in the <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">User Manual</a>. - + SundayPlus Song Files + + + This importer has been disabled. + + + + + MediaShout Database + + + + + The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. + + + + + SongPro Text Files + + + + + SongPro (Export File) + + + + + In SongPro, export your songs using the File -> Export menu + + SongsPlugin.MediaFilesForm @@ -6941,6 +6974,14 @@ The encoding is responsible for the correct character representation. + + SongsPlugin.MediaShoutImport + + + Unable to open the MediaShout database. + + + SongsPlugin.OpenLP1SongImport diff --git a/resources/i18n/it.ts b/resources/i18n/it.ts index 73c49e99d..c5b05524a 100644 --- a/resources/i18n/it.ts +++ b/resources/i18n/it.ts @@ -1324,12 +1324,12 @@ demand and thus an internet connection is required. - + Information - + The second Bible does not contain all the verses that are in the main Bible. Only verses found in both Bibles will be shown. %d verses have not been included in the results. @@ -1345,14 +1345,24 @@ demand and thus an internet connection is required. - Are you sure you want to delete "%s"? + Are you sure you want to completely delete "%s" Bible from OpenLP? + +You will need to re-import this Bible to use it again. + + + + + BiblesPlugin.OpenSongImport + + + Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. BiblesPlugin.Opensong - + Importing %s %s... Importing <book name> <chapter>... @@ -1623,7 +1633,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I - + Split a slide into two by inserting a slide splitter. @@ -1653,11 +1663,19 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I - + Insert Slide + + CustomPlugin.EditVerseForm + + + Edit Slide + + + CustomPlugin.MediaItem @@ -1945,7 +1963,7 @@ Do you want to add the other images anyway? OpenLP - + Image Files @@ -2135,7 +2153,7 @@ Portions copyright © 2004-2012 %s - + Open File @@ -2262,7 +2280,7 @@ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for - + Syntax error. @@ -2322,29 +2340,29 @@ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for - + Select Data Directory Location - + Confirm Data Directory Change - + Reset Data Directory - + Are you sure you want to change the location of the OpenLP data directory to the default location? This location will be used after OpenLP is closed. - + Overwrite Existing Data @@ -2704,24 +2722,9 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can Description - - - Tag - - - - - Start tag - - - - - End tag - - - Tag Id + Tag @@ -2738,7 +2741,7 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can OpenLP.FormattingTagForm - + Update Error @@ -2763,7 +2766,7 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can - + Tag %s already defined. @@ -3788,82 +3791,82 @@ Suffix not supported OpenLP.ServiceManager - + Move to &top - + Move item to the top of the service. - + Move &up - + Move item up one position in the service. - + Move &down - + Move item down one position in the service. - + Move to &bottom - + Move item to the end of the service. - + &Delete From Service - + Delete the selected item from the service. - + &Add New Item - + &Add to Selected Item - + &Edit Item - + &Reorder Item - + &Notes - + &Change Item Theme @@ -3899,72 +3902,72 @@ The content encoding is not UTF-8. - + &Expand all - + Expand all the service items. - + &Collapse all - + Collapse all the service items. - + Open File - + Moves the selection down the window. - + Move up - + Moves the selection up the window. - + Go Live - + Send the selected item to Live. - + &Start Time - + Show &Preview - + Modified Service - + The current service has been modified. Would you like to save this service? @@ -3984,7 +3987,7 @@ The content encoding is not UTF-8. - + Untitled Service @@ -4009,17 +4012,17 @@ The content encoding is not UTF-8. - + Load an existing service. - + Save this service. - + Select a theme for the service. @@ -4029,7 +4032,7 @@ The content encoding is not UTF-8. - + Service File Missing @@ -6613,7 +6616,7 @@ The encoding is responsible for the correct character representation. SongsPlugin.ImportWizardForm - + Select Document/Presentation Files @@ -6628,7 +6631,7 @@ The encoding is responsible for the correct character representation. - + Generic Document/Presentation @@ -6648,37 +6651,37 @@ The encoding is responsible for the correct character representation. - + OpenLP 2.0 Databases - + openlp.org v1.x Databases - + Words Of Worship Song Files - + Songs Of Fellowship Song Files - + SongBeamer Files - + SongShow Plus Song Files - + Foilpresenter Song Files @@ -6693,65 +6696,95 @@ The encoding is responsible for the correct character representation. - + The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. - + The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. - + OpenLyrics or OpenLP 2.0 Exported Song - + OpenLyrics Files - + CCLI SongSelect Files - + EasySlides XML File - + EasyWorship Song Database - + DreamBeam Song Files - + You need to specify a valid PowerSong 1.0 database folder. - + ZionWorx (CSV) - + First convert your ZionWorx database to a CSV text file, as explained in the <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">User Manual</a>. - + SundayPlus Song Files + + + This importer has been disabled. + + + + + MediaShout Database + + + + + The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. + + + + + SongPro Text Files + + + + + SongPro (Export File) + + + + + In SongPro, export your songs using the File -> Export menu + + SongsPlugin.MediaFilesForm @@ -6833,6 +6866,14 @@ The encoding is responsible for the correct character representation. + + SongsPlugin.MediaShoutImport + + + Unable to open the MediaShout database. + + + SongsPlugin.OpenLP1SongImport diff --git a/resources/i18n/ja.ts b/resources/i18n/ja.ts index 3a97bb7a3..0f332376b 100644 --- a/resources/i18n/ja.ts +++ b/resources/i18n/ja.ts @@ -1340,12 +1340,12 @@ demand and thus an internet connection is required. 聖書が完全に読み込まれていません。 - + Information 情報 - + The second Bible does not contain all the verses that are in the main Bible. Only verses found in both Bibles will be shown. %d verses have not been included in the results. 第二訳には検索した箇所すべてが含まれていません。両方の聖書に含まれている箇所を表示します。第 %d 節が除外されます。 @@ -1361,14 +1361,24 @@ demand and thus an internet connection is required. - Are you sure you want to delete "%s"? - 「%s」を削除してよいですか? + Are you sure you want to completely delete "%s" Bible from OpenLP? + +You will need to re-import this Bible to use it again. + + + + + BiblesPlugin.OpenSongImport + + + Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. + BiblesPlugin.Opensong - + Importing %s %s... Importing <book name> <chapter>... %s %s をインポート中... @@ -1645,7 +1655,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I すべてのスライドを一度に編集します。 - + Split a slide into two by inserting a slide splitter. スライド分割機能を用い、スライドを分割します。 @@ -1675,11 +1685,19 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I すべて編集(&I) - + Insert Slide スライドを挿入 + + CustomPlugin.EditVerseForm + + + Edit Slide + + + CustomPlugin.MediaItem @@ -1967,7 +1985,7 @@ Do you want to add the other images anyway? OpenLP - + Image Files 画像ファイル @@ -2228,7 +2246,7 @@ Portions copyright © 2004-2012 %s 画像ファイル: - + Open File ファイルを開く @@ -2355,7 +2373,7 @@ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for X11をバイパスする - + Syntax error. 構文エラーです。 @@ -2415,22 +2433,22 @@ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for データディレクトリエラー - + Select Data Directory Location データの保存場所を選ぶ - + Confirm Data Directory Change データの保存場所の変更を確認 - + Reset Data Directory データの保存場所をリセット - + Are you sure you want to change the location of the OpenLP data directory to the default location? This location will be used after OpenLP is closed. @@ -2438,7 +2456,7 @@ This location will be used after OpenLP is closed. この保存場所はOpenLPの終了後より使用されます。 - + Overwrite Existing Data 存在するデータの上書き @@ -2829,25 +2847,10 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can 説明 - + Tag タグ - - - Start tag - 開始タグ - - - - End tag - 終了タグ - - - - Tag Id - タグID - Start HTML @@ -2862,7 +2865,7 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can OpenLP.FormattingTagForm - + Update Error 更新エラー @@ -2887,7 +2890,7 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can </and here> - + Tag %s already defined. タグ「%s」は既に定義されています。 @@ -3925,82 +3928,82 @@ Suffix not supported OpenLP.ServiceManager - + Move to &top 一番上に移動(&t) - + Move item to the top of the service. 選択した項目を最も上に移動する。 - + Move &up 一つ上に移動(&u) - + Move item up one position in the service. 選択した項目を1つ上に移動する。 - + Move &down 一つ下に移動(&d) - + Move item down one position in the service. 選択した項目を1つ下に移動する。 - + Move to &bottom 一番下に移動(&b) - + Move item to the end of the service. 選択した項目を最も下に移動する。 - + &Delete From Service 削除(&D) - + Delete the selected item from the service. 選択した項目を礼拝プログラムから削除する。 - + &Add New Item 新しい項目を追加(&A) - + &Add to Selected Item 選択された項目を追加(&A) - + &Edit Item 項目の編集(&E) - + &Reorder Item 項目を並べ替え(&R) - + &Notes メモ(&N) - + &Change Item Theme 項目の外観テーマを変更(&C) @@ -4037,72 +4040,72 @@ The content encoding is not UTF-8. 必要なプラグインが見つからないか無効なため、項目を表示する事ができません - + &Expand all すべて展開(&E) - + Expand all the service items. 全ての項目を展開する。 - + &Collapse all すべて折り畳む(&C) - + Collapse all the service items. 全ての項目を折り畳みます。 - + Open File ファイルを開く - + Moves the selection down the window. 選択をウィンドウの下に移動する。 - + Move up 上に移動 - + Moves the selection up the window. 選択をウィンドウの上に移動する。 - + Go Live ライブへ送る - + Send the selected item to Live. 選択された項目をライブ表示する。 - + &Start Time 開始時間(&S) - + Show &Preview プレビュー表示(&P) - + Modified Service 礼拝プログラムの編集 - + The current service has been modified. Would you like to save this service? 現在の礼拝プログラムは、編集されています。保存しますか? @@ -4122,7 +4125,7 @@ The content encoding is not UTF-8. 再生時間: - + Untitled Service 無題 @@ -4147,17 +4150,17 @@ The content encoding is not UTF-8. 破損したファイル - + Load an existing service. 既存の礼拝プログラムを読み込みます。 - + Save this service. 礼拝プログラムを保存します。 - + Select a theme for the service. 礼拝プログラムの外観テーマを選択します。 @@ -4167,7 +4170,7 @@ The content encoding is not UTF-8. このファイルは破損しているかOpenLP 2.0の礼拝プログラムファイルではありません。 - + Service File Missing 礼拝プログラムファイルが見つかりません @@ -5037,7 +5040,7 @@ The content encoding is not UTF-8. Preview and Save - + 保存しプレビュー @@ -6754,7 +6757,7 @@ The encoding is responsible for the correct character representation. SongsPlugin.ImportWizardForm - + Select Document/Presentation Files ドキュメント/プレゼンテーションファイル選択 @@ -6769,7 +6772,7 @@ The encoding is responsible for the correct character representation. このウィザードで、様々な形式の賛美をインポートします。次へをクリックし、インポートするファイルの形式を選択してください。 - + Generic Document/Presentation 汎用ドキュメント/プレゼンテーション @@ -6789,37 +6792,37 @@ The encoding is responsible for the correct character representation. 賛美がインポートされるまでしばらくお待ちください。 - + OpenLP 2.0 Databases OpenLP 2.0 データベース - + openlp.org v1.x Databases openlp.org v1.x データベース - + Words Of Worship Song Files Words Of Worship Song ファイル - + Songs Of Fellowship Song Files Songs Of Fellowship Song ファイル - + SongBeamer Files SongBeamerファイル - + SongShow Plus Song Files SongShow Plus Songファイル - + Foilpresenter Song Files Foilpresenter Song ファイル @@ -6834,65 +6837,95 @@ The encoding is responsible for the correct character representation. ファイルに保存 - + The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. OpenOfficeまたはLibreOfficeに接続できないため、Songs of Fellowshipのインポート機能は無効になっています。 - + The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. OpenOfficeまたはLibreOfficeに接続できないため、汎用ドキュメント/プレゼンテーションのインポート機能は無効になっています。 - + OpenLyrics or OpenLP 2.0 Exported Song OpenLyrics OpenLP 2.0からエクスポートされたデータ - + OpenLyrics Files OpenLyricsファイル - + CCLI SongSelect Files CCLI SongSelectファイル - + EasySlides XML File Easy Slides XMLファイル - + EasyWorship Song Database EasyWorship Songデータベース - + DreamBeam Song Files DreamBeam Song ファイル - + You need to specify a valid PowerSong 1.0 database folder. 有効なPowerSong 1.0データベースフォールダを選択する必要があります。 - + ZionWorx (CSV) ZionWorx (CSV) - + First convert your ZionWorx database to a CSV text file, as explained in the <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">User Manual</a>. <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">User Manual</a>に従ってZionWorxデータベースファイルをCSVへ変換してください。 - + SundayPlus Song Files + + + This importer has been disabled. + + + + + MediaShout Database + + + + + The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. + + + + + SongPro Text Files + + + + + SongPro (Export File) + + + + + In SongPro, export your songs using the File -> Export menu + + SongsPlugin.MediaFilesForm @@ -6973,6 +7006,14 @@ The encoding is responsible for the correct character representation. アルバムを検索中... + + SongsPlugin.MediaShoutImport + + + Unable to open the MediaShout database. + + + SongsPlugin.OpenLP1SongImport diff --git a/resources/i18n/ko.ts b/resources/i18n/ko.ts index ec74bb534..527d6c1cf 100644 --- a/resources/i18n/ko.ts +++ b/resources/i18n/ko.ts @@ -1321,12 +1321,12 @@ demand and thus an internet connection is required. - + Information 정보 - + The second Bible does not contain all the verses that are in the main Bible. Only verses found in both Bibles will be shown. %d verses have not been included in the results. @@ -1342,14 +1342,24 @@ demand and thus an internet connection is required. - Are you sure you want to delete "%s"? + Are you sure you want to completely delete "%s" Bible from OpenLP? + +You will need to re-import this Bible to use it again. + + + + + BiblesPlugin.OpenSongImport + + + Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. BiblesPlugin.Opensong - + Importing %s %s... Importing <book name> <chapter>... @@ -1620,7 +1630,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I - + Split a slide into two by inserting a slide splitter. @@ -1650,11 +1660,19 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I - + Insert Slide + + CustomPlugin.EditVerseForm + + + Edit Slide + + + CustomPlugin.MediaItem @@ -1941,7 +1959,7 @@ Do you want to add the other images anyway? OpenLP - + Image Files @@ -2131,7 +2149,7 @@ Portions copyright © 2004-2012 %s - + Open File @@ -2258,7 +2276,7 @@ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for - + Syntax error. @@ -2318,29 +2336,29 @@ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for - + Select Data Directory Location - + Confirm Data Directory Change - + Reset Data Directory - + Are you sure you want to change the location of the OpenLP data directory to the default location? This location will be used after OpenLP is closed. - + Overwrite Existing Data @@ -2700,24 +2718,9 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can Description - - - Tag - - - - - Start tag - - - - - End tag - - - Tag Id + Tag @@ -2734,7 +2737,7 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can OpenLP.FormattingTagForm - + Update Error @@ -2759,7 +2762,7 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can - + Tag %s already defined. @@ -3784,82 +3787,82 @@ Suffix not supported OpenLP.ServiceManager - + Move to &top - + Move item to the top of the service. - + Move &up - + Move item up one position in the service. - + Move &down - + Move item down one position in the service. - + Move to &bottom - + Move item to the end of the service. - + &Delete From Service - + Delete the selected item from the service. - + &Add New Item - + &Add to Selected Item - + &Edit Item - + &Reorder Item - + &Notes - + &Change Item Theme @@ -3895,72 +3898,72 @@ The content encoding is not UTF-8. - + &Expand all - + Expand all the service items. - + &Collapse all - + Collapse all the service items. - + Open File - + Moves the selection down the window. - + Move up - + Moves the selection up the window. - + Go Live - + Send the selected item to Live. - + &Start Time - + Show &Preview - + Modified Service - + The current service has been modified. Would you like to save this service? @@ -3980,7 +3983,7 @@ The content encoding is not UTF-8. - + Untitled Service @@ -4005,17 +4008,17 @@ The content encoding is not UTF-8. - + Load an existing service. - + Save this service. - + Select a theme for the service. @@ -4025,7 +4028,7 @@ The content encoding is not UTF-8. - + Service File Missing @@ -6609,7 +6612,7 @@ The encoding is responsible for the correct character representation. SongsPlugin.ImportWizardForm - + Select Document/Presentation Files @@ -6624,7 +6627,7 @@ The encoding is responsible for the correct character representation. - + Generic Document/Presentation @@ -6644,37 +6647,37 @@ The encoding is responsible for the correct character representation. - + OpenLP 2.0 Databases - + openlp.org v1.x Databases - + Words Of Worship Song Files - + Songs Of Fellowship Song Files - + SongBeamer Files - + SongShow Plus Song Files - + Foilpresenter Song Files @@ -6689,65 +6692,95 @@ The encoding is responsible for the correct character representation. - + The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. - + The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. - + OpenLyrics or OpenLP 2.0 Exported Song - + OpenLyrics Files - + CCLI SongSelect Files - + EasySlides XML File - + EasyWorship Song Database - + DreamBeam Song Files - + You need to specify a valid PowerSong 1.0 database folder. - + ZionWorx (CSV) - + First convert your ZionWorx database to a CSV text file, as explained in the <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">User Manual</a>. - + SundayPlus Song Files + + + This importer has been disabled. + + + + + MediaShout Database + + + + + The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. + + + + + SongPro Text Files + + + + + SongPro (Export File) + + + + + In SongPro, export your songs using the File -> Export menu + + SongsPlugin.MediaFilesForm @@ -6828,6 +6861,14 @@ The encoding is responsible for the correct character representation. + + SongsPlugin.MediaShoutImport + + + Unable to open the MediaShout database. + + + SongsPlugin.OpenLP1SongImport diff --git a/resources/i18n/nb.ts b/resources/i18n/nb.ts index bda9ec644..5ab2a6272 100644 --- a/resources/i18n/nb.ts +++ b/resources/i18n/nb.ts @@ -1322,12 +1322,12 @@ demand and thus an internet connection is required. - + Information - + The second Bible does not contain all the verses that are in the main Bible. Only verses found in both Bibles will be shown. %d verses have not been included in the results. @@ -1343,14 +1343,24 @@ demand and thus an internet connection is required. - Are you sure you want to delete "%s"? + Are you sure you want to completely delete "%s" Bible from OpenLP? + +You will need to re-import this Bible to use it again. + + + + + BiblesPlugin.OpenSongImport + + + Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. BiblesPlugin.Opensong - + Importing %s %s... Importing <book name> <chapter>... Importerer %s %s... @@ -1621,7 +1631,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I Rediger alle lysbilder på en gang. - + Split a slide into two by inserting a slide splitter. Del lysbilde i to ved å sette inn en lysbildedeler. @@ -1651,11 +1661,19 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I Rediger alle - + Insert Slide + + CustomPlugin.EditVerseForm + + + Edit Slide + + + CustomPlugin.MediaItem @@ -1944,7 +1962,7 @@ Vil du likevel legge til de andre bildene? OpenLP - + Image Files Bildefiler @@ -2194,7 +2212,7 @@ Portions copyright © 2004-2012 %s - + Open File @@ -2321,7 +2339,7 @@ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for - + Syntax error. @@ -2381,29 +2399,29 @@ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for - + Select Data Directory Location - + Confirm Data Directory Change - + Reset Data Directory - + Are you sure you want to change the location of the OpenLP data directory to the default location? This location will be used after OpenLP is closed. - + Overwrite Existing Data @@ -2763,24 +2781,9 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can Description - - - Tag - - - - - Start tag - - - - - End tag - - - Tag Id + Tag @@ -2797,7 +2800,7 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can OpenLP.FormattingTagForm - + Update Error @@ -2822,7 +2825,7 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can - + Tag %s already defined. @@ -3847,82 +3850,82 @@ Suffix not supported OpenLP.ServiceManager - + Move to &top - + Move item to the top of the service. - + Move &up - + Move item up one position in the service. - + Move &down - + Move item down one position in the service. - + Move to &bottom - + Move item to the end of the service. - + &Delete From Service - + Delete the selected item from the service. - + &Add New Item - + &Add to Selected Item - + &Edit Item - + &Reorder Item - + &Notes - + &Change Item Theme @@ -3958,72 +3961,72 @@ The content encoding is not UTF-8. - + &Expand all - + Expand all the service items. - + &Collapse all - + Collapse all the service items. - + Open File - + Moves the selection down the window. - + Move up - + Moves the selection up the window. - + Go Live - + Send the selected item to Live. - + &Start Time - + Show &Preview - + Modified Service - + The current service has been modified. Would you like to save this service? @@ -4043,7 +4046,7 @@ The content encoding is not UTF-8. - + Untitled Service @@ -4068,17 +4071,17 @@ The content encoding is not UTF-8. - + Load an existing service. - + Save this service. - + Select a theme for the service. @@ -4088,7 +4091,7 @@ The content encoding is not UTF-8. - + Service File Missing @@ -6672,7 +6675,7 @@ The encoding is responsible for the correct character representation. SongsPlugin.ImportWizardForm - + Select Document/Presentation Files @@ -6687,7 +6690,7 @@ The encoding is responsible for the correct character representation. - + Generic Document/Presentation @@ -6707,37 +6710,37 @@ The encoding is responsible for the correct character representation. - + OpenLP 2.0 Databases - + openlp.org v1.x Databases - + Words Of Worship Song Files - + Songs Of Fellowship Song Files - + SongBeamer Files - + SongShow Plus Song Files - + Foilpresenter Song Files @@ -6752,65 +6755,95 @@ The encoding is responsible for the correct character representation. - + The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. - + The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. - + OpenLyrics or OpenLP 2.0 Exported Song - + OpenLyrics Files - + CCLI SongSelect Files - + EasySlides XML File - + EasyWorship Song Database - + DreamBeam Song Files - + You need to specify a valid PowerSong 1.0 database folder. - + ZionWorx (CSV) - + First convert your ZionWorx database to a CSV text file, as explained in the <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">User Manual</a>. - + SundayPlus Song Files + + + This importer has been disabled. + + + + + MediaShout Database + + + + + The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. + + + + + SongPro Text Files + + + + + SongPro (Export File) + + + + + In SongPro, export your songs using the File -> Export menu + + SongsPlugin.MediaFilesForm @@ -6892,6 +6925,14 @@ The encoding is responsible for the correct character representation. + + SongsPlugin.MediaShoutImport + + + Unable to open the MediaShout database. + + + SongsPlugin.OpenLP1SongImport diff --git a/resources/i18n/nl.ts b/resources/i18n/nl.ts index 4260ddab2..7adb93649 100644 --- a/resources/i18n/nl.ts +++ b/resources/i18n/nl.ts @@ -1344,12 +1344,12 @@ indien nodig en een internetverbinding is dus noodzakelijk. Bijbel niet geheel geladen. - + Information Informatie - + The second Bible does not contain all the verses that are in the main Bible. Only verses found in both Bibles will be shown. %d verses have not been included in the results. De tweede bijbelvertaling bevat niet alle verzen die in de eerste bijbelvertaling staan. Alleen de verzen die in beide vertalingen voorkomen worden getoond. %d verzen zijn niet opgenomen in de resultaten. @@ -1365,14 +1365,24 @@ indien nodig en een internetverbinding is dus noodzakelijk. - Are you sure you want to delete "%s"? - Weet u zeker dat u "%s" wilt verwijderen? + Are you sure you want to completely delete "%s" Bible from OpenLP? + +You will need to re-import this Bible to use it again. + + + + + BiblesPlugin.OpenSongImport + + + Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. + BiblesPlugin.Opensong - + Importing %s %s... Importing <book name> <chapter>... %s %s wordt geïmporteerd... @@ -1649,7 +1659,7 @@ Let op, de bijbelverzen worden gedownload indien nodig en een internetverbinding Alle dia's tegelijk bewerken. - + Split a slide into two by inserting a slide splitter. Dia doormidden delen door een dia 'splitter' in te voegen. @@ -1679,11 +1689,19 @@ Let op, de bijbelverzen worden gedownload indien nodig en een internetverbinding &Alles bewerken - + Insert Slide Invoegen dia + + CustomPlugin.EditVerseForm + + + Edit Slide + + + CustomPlugin.MediaItem @@ -1972,7 +1990,7 @@ De andere afbeeldingen alsnog toevoegen? OpenLP - + Image Files Afbeeldingsbestanden @@ -2233,7 +2251,7 @@ Portions copyright © 2004-2012 %s Afbeeldingsbestand: - + Open File Open bestand @@ -2360,7 +2378,7 @@ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for Negeer X11 Window Manager - + Syntax error. Syntax error. @@ -2420,22 +2438,22 @@ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for Bestandslocatie fout - + Select Data Directory Location Selecteer bestandslocatie - + Confirm Data Directory Change Bevestig wijziging bestandslocatie - + Reset Data Directory Herstel bestandslocatie data - + Are you sure you want to change the location of the OpenLP data directory to the default location? This location will be used after OpenLP is closed. @@ -2444,7 +2462,7 @@ This location will be used after OpenLP is closed. Deze bestandslocatie wordt gebruikt nadat OpenLP is afgesloten. - + Overwrite Existing Data Overschrijf bestaande data @@ -2838,25 +2856,10 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can Omschrijving - + Tag Tag - - - Start tag - Start tag - - - - End tag - Eind tag - - - - Tag Id - Tag Id - Start HTML @@ -2871,7 +2874,7 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can OpenLP.FormattingTagForm - + Update Error Update Fout @@ -2896,7 +2899,7 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can </and here> - + Tag %s already defined. Tag %s bestaat al. @@ -3934,82 +3937,82 @@ Extensie niet ondersteund OpenLP.ServiceManager - + Move to &top Bovenaan plaa&tsen - + Move item to the top of the service. Plaats dit onderdeel bovenaan. - + Move &up Naar b&oven - + Move item up one position in the service. Verplaats een plek naar boven. - + Move &down Naar bene&den - + Move item down one position in the service. Verplaats een plek naar beneden. - + Move to &bottom Onderaan &plaatsen - + Move item to the end of the service. Plaats dit onderdeel onderaan. - + &Delete From Service Verwij&deren uit de liturgie - + Delete the selected item from the service. Verwijder dit onderdeel uit de liturgie. - + &Add New Item &Voeg toe - + &Add to Selected Item &Voeg selectie toe - + &Edit Item B&ewerk onderdeel - + &Reorder Item He&rschik onderdeel - + &Notes Aa&ntekeningen - + &Change Item Theme &Wijzig onderdeel thema @@ -4046,72 +4049,72 @@ Tekst codering is geen UTF-8. Dit onderdeel kan niet weergegeven worden omdat de benodigde plugin ontbreekt of inactief is - + &Expand all Alles &uitklappen - + Expand all the service items. Alle liturgie onderdelen uitklappen. - + &Collapse all Alles &inklappen - + Collapse all the service items. Alle liturgie onderdelen inklappen. - + Open File Open bestand - + Moves the selection down the window. Verplaatst de selectie naar beneden. - + Move up Naar boven - + Moves the selection up the window. Verplaatst de selectie naar boven. - + Go Live Ga Live - + Send the selected item to Live. Toon selectie Live. - + &Start Time &Start Tijd - + Show &Preview Toon &Voorbeeld - + Modified Service Gewijzigde liturgie - + The current service has been modified. Would you like to save this service? De huidige liturgie is gewijzigd. Veranderingen opslaan? @@ -4131,7 +4134,7 @@ Tekst codering is geen UTF-8. Speeltijd: - + Untitled Service Liturgie zonder naam @@ -4156,17 +4159,17 @@ Tekst codering is geen UTF-8. Corrupt bestand - + Load an existing service. Laad een bestaande liturgie. - + Save this service. Deze liturgie opslaan. - + Select a theme for the service. Selecteer een thema voor de liturgie. @@ -4176,7 +4179,7 @@ Tekst codering is geen UTF-8. Dit bestand is beschadigd of geen OpenLP 2.0 liturgie bestand. - + Service File Missing Ontbrekend liturgiebestand @@ -5046,12 +5049,12 @@ Tekst codering is geen UTF-8. Preview and Save - + Voorbeeld en opslaan Preview the theme and save it. - + Toon een voorbeeld en sla het thema op. @@ -6767,7 +6770,7 @@ De tekstcodering is verantwoordelijk voor een correcte weergave van lettertekens SongsPlugin.ImportWizardForm - + Select Document/Presentation Files Selecteer Documenten/Presentatie bestanden @@ -6782,7 +6785,7 @@ De tekstcodering is verantwoordelijk voor een correcte weergave van lettertekens Deze assistent helpt liederen in verschillende bestandsformaten te importeren in OpenLP. Klik op volgende en kies daarna het bestandsformaat van het te importeren lied. - + Generic Document/Presentation Algemeen Document/Presentatie @@ -6802,37 +6805,37 @@ De tekstcodering is verantwoordelijk voor een correcte weergave van lettertekens Even geduld tijdens het importeren. - + OpenLP 2.0 Databases OpenLP 2.0 Databases - + openlp.org v1.x Databases openlp.org v1.x Databases - + Words Of Worship Song Files Words Of Worship Lied bestanden - + Songs Of Fellowship Song Files Songs Of Fellowship lied bestanden - + SongBeamer Files SongBeamer bestanden - + SongShow Plus Song Files SongShow Plus lied bestanden - + Foilpresenter Song Files Foilpresenter lied bestanden @@ -6847,63 +6850,93 @@ De tekstcodering is verantwoordelijk voor een correcte weergave van lettertekens Opslaan als bestand - + The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. Songs of Fellowship import is uitgeschakeld omdat OpenLP OpenOffice.org niet kan vinden op deze computer. - + The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. Algemeen document/presentatie import is uitgeschakeld omdat OpenLP OpenOffice.org niet kan vinden op deze computer. - + OpenLyrics or OpenLP 2.0 Exported Song OpenLyrics of OpenLP 2.0 geëxporteerd lied - + OpenLyrics Files OpenLyrics bestanden - + CCLI SongSelect Files CCLI SongSelect bestanden - + EasySlides XML File EasySlides XML bestanden - + EasyWorship Song Database EasyWorship Lied Database - + DreamBeam Song Files DreamBeam liedbestanden - + You need to specify a valid PowerSong 1.0 database folder. Specificeer een geldige PowerSong 1.0 database map. - + ZionWorx (CSV) ZionWorx (CSV) - + First convert your ZionWorx database to a CSV text file, as explained in the <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">User Manual</a>. Convert uw ZionWorx database naar een CSV tekstbestand, zoals staat uitgelegd in de engelstalige <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">gebruikershandleiding</a>. - + SundayPlus Song Files + SundayPlus liedbestanden + + + + This importer has been disabled. + + + + + MediaShout Database + + + + + The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. + + + + + SongPro Text Files + + + + + SongPro (Export File) + + + + + In SongPro, export your songs using the File -> Export menu @@ -6987,6 +7020,14 @@ De tekstcodering is verantwoordelijk voor een correcte weergave van lettertekens Doorzoek liedboeken... + + SongsPlugin.MediaShoutImport + + + Unable to open the MediaShout database. + + + SongsPlugin.OpenLP1SongImport diff --git a/resources/i18n/pl.ts b/resources/i18n/pl.ts index a5d77e16c..c8d2bbe67 100644 --- a/resources/i18n/pl.ts +++ b/resources/i18n/pl.ts @@ -1320,12 +1320,12 @@ demand and thus an internet connection is required. - + Information - + The second Bible does not contain all the verses that are in the main Bible. Only verses found in both Bibles will be shown. %d verses have not been included in the results. @@ -1341,14 +1341,24 @@ demand and thus an internet connection is required. - Are you sure you want to delete "%s"? + Are you sure you want to completely delete "%s" Bible from OpenLP? + +You will need to re-import this Bible to use it again. + + + + + BiblesPlugin.OpenSongImport + + + Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. BiblesPlugin.Opensong - + Importing %s %s... Importing <book name> <chapter>... @@ -1619,7 +1629,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I - + Split a slide into two by inserting a slide splitter. @@ -1649,11 +1659,19 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I - + Insert Slide + + CustomPlugin.EditVerseForm + + + Edit Slide + + + CustomPlugin.MediaItem @@ -1942,7 +1960,7 @@ Do you want to add the other images anyway? OpenLP - + Image Files @@ -2132,7 +2150,7 @@ Portions copyright © 2004-2012 %s - + Open File @@ -2259,7 +2277,7 @@ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for - + Syntax error. @@ -2319,29 +2337,29 @@ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for - + Select Data Directory Location - + Confirm Data Directory Change - + Reset Data Directory - + Are you sure you want to change the location of the OpenLP data directory to the default location? This location will be used after OpenLP is closed. - + Overwrite Existing Data @@ -2701,24 +2719,9 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can Description - - - Tag - - - - - Start tag - - - - - End tag - - - Tag Id + Tag @@ -2735,7 +2738,7 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can OpenLP.FormattingTagForm - + Update Error @@ -2760,7 +2763,7 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can - + Tag %s already defined. @@ -3785,82 +3788,82 @@ Suffix not supported OpenLP.ServiceManager - + Move to &top - + Move item to the top of the service. - + Move &up - + Move item up one position in the service. - + Move &down - + Move item down one position in the service. - + Move to &bottom - + Move item to the end of the service. - + &Delete From Service - + Delete the selected item from the service. - + &Add New Item - + &Add to Selected Item - + &Edit Item - + &Reorder Item - + &Notes - + &Change Item Theme @@ -3896,72 +3899,72 @@ The content encoding is not UTF-8. - + &Expand all - + Expand all the service items. - + &Collapse all - + Collapse all the service items. - + Open File - + Moves the selection down the window. - + Move up - + Moves the selection up the window. - + Go Live - + Send the selected item to Live. - + &Start Time - + Show &Preview - + Modified Service - + The current service has been modified. Would you like to save this service? @@ -3981,7 +3984,7 @@ The content encoding is not UTF-8. - + Untitled Service @@ -4006,17 +4009,17 @@ The content encoding is not UTF-8. - + Load an existing service. - + Save this service. - + Select a theme for the service. @@ -4026,7 +4029,7 @@ The content encoding is not UTF-8. - + Service File Missing @@ -6610,7 +6613,7 @@ The encoding is responsible for the correct character representation. SongsPlugin.ImportWizardForm - + Select Document/Presentation Files @@ -6625,7 +6628,7 @@ The encoding is responsible for the correct character representation. - + Generic Document/Presentation @@ -6645,37 +6648,37 @@ The encoding is responsible for the correct character representation. - + OpenLP 2.0 Databases - + openlp.org v1.x Databases - + Words Of Worship Song Files - + Songs Of Fellowship Song Files - + SongBeamer Files - + SongShow Plus Song Files - + Foilpresenter Song Files @@ -6690,65 +6693,95 @@ The encoding is responsible for the correct character representation. - + The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. - + The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. - + OpenLyrics or OpenLP 2.0 Exported Song - + OpenLyrics Files - + CCLI SongSelect Files - + EasySlides XML File - + EasyWorship Song Database - + DreamBeam Song Files - + You need to specify a valid PowerSong 1.0 database folder. - + ZionWorx (CSV) - + First convert your ZionWorx database to a CSV text file, as explained in the <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">User Manual</a>. - + SundayPlus Song Files + + + This importer has been disabled. + + + + + MediaShout Database + + + + + The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. + + + + + SongPro Text Files + + + + + SongPro (Export File) + + + + + In SongPro, export your songs using the File -> Export menu + + SongsPlugin.MediaFilesForm @@ -6831,6 +6864,14 @@ The encoding is responsible for the correct character representation. + + SongsPlugin.MediaShoutImport + + + Unable to open the MediaShout database. + + + SongsPlugin.OpenLP1SongImport diff --git a/resources/i18n/pt_BR.ts b/resources/i18n/pt_BR.ts index f8c528043..ea997536d 100644 --- a/resources/i18n/pt_BR.ts +++ b/resources/i18n/pt_BR.ts @@ -1344,12 +1344,12 @@ com o usu, portanto uma conexão com a internet é necessária. Bíblia não carregada completamente. - + Information Informações - + The second Bible does not contain all the verses that are in the main Bible. Only verses found in both Bibles will be shown. %d verses have not been included in the results. A Bíblia secundária não contém todos os versículos que estão na Bíblia principal. Somente versículos encontrados em ambas as Bíblias serão exibidas. %d versículos não foram inclusos nos resultados. @@ -1365,14 +1365,24 @@ com o usu, portanto uma conexão com a internet é necessária. - Are you sure you want to delete "%s"? - Tem certeza de que desejas apagar "%s"? + Are you sure you want to completely delete "%s" Bible from OpenLP? + +You will need to re-import this Bible to use it again. + + + + + BiblesPlugin.OpenSongImport + + + Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. + BiblesPlugin.Opensong - + Importing %s %s... Importing <book name> <chapter>... Importando %s %s... @@ -1649,7 +1659,7 @@ Observe, que versículos das Bíblias Internet serão transferidos sob demanda e Editar todos os slides de uma vez. - + Split a slide into two by inserting a slide splitter. Dividir um slide em dois, inserindo um divisor de slides. @@ -1679,11 +1689,19 @@ Observe, que versículos das Bíblias Internet serão transferidos sob demanda e &Editar Todos - + Insert Slide Inserir Slide + + CustomPlugin.EditVerseForm + + + Edit Slide + + + CustomPlugin.MediaItem @@ -1972,7 +1990,7 @@ Mesmo assim, deseja continuar adicionando as outras imagens? OpenLP - + Image Files Arquivos de Imagem @@ -2231,7 +2249,7 @@ Porções copyright © 2004-2012 %s Arquivo de Imagem: - + Open File Abrir Arquivo @@ -2358,7 +2376,7 @@ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for Desativar Gerenciador de Janelas X11 - + Syntax error. Erro de sintaxe. @@ -2418,22 +2436,22 @@ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for Erro no Diretório de Dados - + Select Data Directory Location Seleciona a Localização do Diretório de Dados - + Confirm Data Directory Change Confirmar Mudança do Diretório de Dados - + Reset Data Directory Restabelecer o Diretório de Dados - + Are you sure you want to change the location of the OpenLP data directory to the default location? This location will be used after OpenLP is closed. @@ -2442,7 +2460,7 @@ This location will be used after OpenLP is closed. Esta localização será usada depois que o OpenLP for fechado. - + Overwrite Existing Data Sobrescrever Dados Existentes @@ -2840,25 +2858,10 @@ Para cancelar o Assistente de Primeira Execução (e não iniciar o OpenLP), cli Descrição - + Tag Tag - - - Start tag - Tag Inicial - - - - End tag - Tag Final - - - - Tag Id - Id do Tag - Start HTML @@ -2873,7 +2876,7 @@ Para cancelar o Assistente de Primeira Execução (e não iniciar o OpenLP), cli OpenLP.FormattingTagForm - + Update Error Erro na Atualização @@ -2898,7 +2901,7 @@ Para cancelar o Assistente de Primeira Execução (e não iniciar o OpenLP), cli </e aqui> - + Tag %s already defined. Tag %s já está definida. @@ -3936,82 +3939,82 @@ Sufixo não suportado OpenLP.ServiceManager - + Move to &top Mover para o &topo - + Move item to the top of the service. Mover item para o topo do culto. - + Move &up Mover para &cima - + Move item up one position in the service. Mover item uma posição para cima no culto. - + Move &down Mover para &baixo - + Move item down one position in the service. Mover item uma posição para baixo no culto. - + Move to &bottom Mover para o &final - + Move item to the end of the service. Mover item para o final do culto. - + &Delete From Service &Excluir do Culto - + Delete the selected item from the service. Excluir o item selecionado do culto. - + &Add New Item &Adicionar um Novo Item - + &Add to Selected Item &Adicionar ao Item Selecionado - + &Edit Item &Editar Item - + &Reorder Item &Reordenar Item - + &Notes &Anotações - + &Change Item Theme &Alterar Tema do Item @@ -4048,72 +4051,72 @@ A codificação do conteúdo não é UTF-8. O item não pode ser exibido porque o plugin necessário para visualizá-lo está ausente ou está desativado - + &Expand all &Expandir todos - + Expand all the service items. Expandir todos os itens do culto. - + &Collapse all &Recolher todos - + Collapse all the service items. Recolher todos os itens do culto. - + Open File Abrir Arquivo - + Moves the selection down the window. Move a seleção para baixo dentro da janela. - + Move up Mover para cima - + Moves the selection up the window. Move a seleção para cima dentro da janela. - + Go Live Projetar - + Send the selected item to Live. Enviar o item selecionado para a Projeção. - + &Start Time &Horário Inicial - + Show &Preview Exibir &Pré-visualização - + Modified Service Culto Modificado - + The current service has been modified. Would you like to save this service? O culto atual foi modificada. Você gostaria de salvar este culto? @@ -4133,7 +4136,7 @@ A codificação do conteúdo não é UTF-8. Duração: - + Untitled Service Culto Sem Nome @@ -4158,17 +4161,17 @@ A codificação do conteúdo não é UTF-8. Arquivo corrompido - + Load an existing service. Carregar um culto existente. - + Save this service. Salvar este culto. - + Select a theme for the service. Selecionar um tema para o culto. @@ -4178,7 +4181,7 @@ A codificação do conteúdo não é UTF-8. Este arquivo está corrompido ou não é um arquivo de culto do OpenLP 2.0. - + Service File Missing Arquivo do Culto não encontrado @@ -6769,7 +6772,7 @@ EasyWorship] SongsPlugin.ImportWizardForm - + Select Document/Presentation Files Selecione Arquivos de Documentos/Apresentações @@ -6784,7 +6787,7 @@ EasyWorship] Este assistente irá ajudá-lo a importar músicas de uma variedade de formatos. Clique no abaixo no botão Próximo para iniciar o processo, escolhendo um desses formatos. - + Generic Document/Presentation Documento/Apresentação Genérica @@ -6804,37 +6807,37 @@ EasyWorship] Por favor espere enquanto as suas músicas são importadas. - + OpenLP 2.0 Databases Bancos de Dados do OpenLP 2.0 - + openlp.org v1.x Databases Bancos de Dados do openlp.org v1.x - + Words Of Worship Song Files Arquivos de Música do Words Of Worship - + Songs Of Fellowship Song Files Arquivos do Songs Of Fellowship - + SongBeamer Files Arquivos do SongBeamer - + SongShow Plus Song Files Arquivos do SongShow Plus - + Foilpresenter Song Files Arquivos do Folipresenter @@ -6849,65 +6852,95 @@ EasyWorship] Salvar em Arquivo - + The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. A importação Songs of Fellowship foi desabilitada porque OpenLP não consegue acessar OpenOffice ou LibreOffice. - + The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. A importação de documentos/apresentações genéricos foi desabilitada porque OpenLP não consegue acessar OpenOffice ou LibreOffice. - + OpenLyrics or OpenLP 2.0 Exported Song Música Exportada OpenLyrics ou OpenLP 2.0 - + OpenLyrics Files Arquivos OpenLyrics - + CCLI SongSelect Files Arquivos CCLI - + EasySlides XML File Arquivo XML EasySlides - + EasyWorship Song Database Músicas EasyWorship - + DreamBeam Song Files Arquivos de Música DreamBeam - + You need to specify a valid PowerSong 1.0 database folder. Você precisa especificar um diretório válido de banco de dados do PowerSong 1.0. - + ZionWorx (CSV) ZionWorx (CSV) - + First convert your ZionWorx database to a CSV text file, as explained in the <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">User Manual</a>. Primeiro converta o seu banco de dados do ZionWorx, como explicado no <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">Manual do Usuário</a> - + SundayPlus Song Files + + + This importer has been disabled. + + + + + MediaShout Database + + + + + The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. + + + + + SongPro Text Files + + + + + SongPro (Export File) + + + + + In SongPro, export your songs using the File -> Export menu + + SongsPlugin.MediaFilesForm @@ -6989,6 +7022,14 @@ EasyWorship] Pesquisar hinos... + + SongsPlugin.MediaShoutImport + + + Unable to open the MediaShout database. + + + SongsPlugin.OpenLP1SongImport diff --git a/resources/i18n/ru.ts b/resources/i18n/ru.ts index 67f1e3b52..11a628dec 100644 --- a/resources/i18n/ru.ts +++ b/resources/i18n/ru.ts @@ -1324,12 +1324,12 @@ demand and thus an internet connection is required. - + Information Информация - + The second Bible does not contain all the verses that are in the main Bible. Only verses found in both Bibles will be shown. %d verses have not been included in the results. Альтернативный перевод Библии не содержит всех стихов, которые требует основной перевод. Будут показаны только те стихи, которые найдены в обеих вариантах перевод. %d стихов не будут включены в результаты. @@ -1345,14 +1345,24 @@ demand and thus an internet connection is required. - Are you sure you want to delete "%s"? + Are you sure you want to completely delete "%s" Bible from OpenLP? + +You will need to re-import this Bible to use it again. + + + + + BiblesPlugin.OpenSongImport + + + Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. BiblesPlugin.Opensong - + Importing %s %s... Importing <book name> <chapter>... Импортирую %s %s... @@ -1629,7 +1639,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I Редактировать все слайды сразу. - + Split a slide into two by inserting a slide splitter. Разделить слайд, добавив к нему разделитель. @@ -1659,11 +1669,19 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I Редактировать &все - + Insert Slide Вставить слайд + + CustomPlugin.EditVerseForm + + + Edit Slide + + + CustomPlugin.MediaItem @@ -1953,7 +1971,7 @@ Do you want to add the other images anyway? OpenLP - + Image Files Файлы изображений @@ -2211,7 +2229,7 @@ Portions copyright © 2004-2012 %s Файл изображения: - + Open File Открыть файл @@ -2338,7 +2356,7 @@ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for - + Syntax error. @@ -2398,29 +2416,29 @@ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for - + Select Data Directory Location - + Confirm Data Directory Change - + Reset Data Directory - + Are you sure you want to change the location of the OpenLP data directory to the default location? This location will be used after OpenLP is closed. - + Overwrite Existing Data @@ -2808,24 +2826,9 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can Description - - - Tag - - - - - Start tag - - - - - End tag - - - Tag Id + Tag @@ -2842,7 +2845,7 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can OpenLP.FormattingTagForm - + Update Error @@ -2867,7 +2870,7 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can - + Tag %s already defined. @@ -3897,82 +3900,82 @@ Suffix not supported OpenLP.ServiceManager - + Move to &top Передвинуть &вверх - + Move item to the top of the service. Передвинуть объект в начало служения. - + Move &up - + Move item up one position in the service. Передвинуть объект на одну позицию в служении - + Move &down - + Move item down one position in the service. Передвинуть объект на одну позицию вниз в служении. - + Move to &bottom Передвинуть &вниз - + Move item to the end of the service. Передвинуть объект в конец служения. - + &Delete From Service &Удалить из служения - + Delete the selected item from the service. Удалить выбранный объект из служения. - + &Add New Item &Добавить новый элемент - + &Add to Selected Item &Добавить к выбранному элементу - + &Edit Item &Изменить элемент - + &Reorder Item &Упорядочить элементы - + &Notes &Заметки - + &Change Item Theme &Изменить тему элемента @@ -4009,72 +4012,72 @@ The content encoding is not UTF-8. Элемент служения не может быть показан, поскольку требуемый плагин отсутствует или отключен - + &Expand all &Расширить все - + Expand all the service items. Расширить все объекты служения. - + &Collapse all &Свернуть все - + Collapse all the service items. Свернуть все объекты служения. - + Open File Открыть файл - + Moves the selection down the window. Передвинуть выделенное вниз окна. - + Move up Передвинуть вверх - + Moves the selection up the window. Передвинуть выделенное вверх окна. - + Go Live Показать - + Send the selected item to Live. Показать выбранный объект. - + &Start Time &Время начала - + Show &Preview Показать &Просмотр - + Modified Service Измененное служение - + The current service has been modified. Would you like to save this service? Текущее служение было изменено. Вы хотите сохранить это служение? @@ -4094,7 +4097,7 @@ The content encoding is not UTF-8. Время игры: - + Untitled Service Служение без названия @@ -4119,17 +4122,17 @@ The content encoding is not UTF-8. Поврежденный файл - + Load an existing service. Загрузить существующее служение. - + Save this service. Сохранить это служение. - + Select a theme for the service. Выбрать тему для служения. @@ -4139,7 +4142,7 @@ The content encoding is not UTF-8. Этот файл поврежден или не является файлом служения OpenLP 2.0. - + Service File Missing Файл служения отсутствует @@ -6727,7 +6730,7 @@ The encoding is responsible for the correct character representation. SongsPlugin.ImportWizardForm - + Select Document/Presentation Files Выберите файл документа или презентации @@ -6742,7 +6745,7 @@ The encoding is responsible for the correct character representation. Этот Мастер поможет Вам импортировать песни из различных форматов. Выберите кнопку Далее чтобы начать процесс выбора формата для импорта. - + Generic Document/Presentation Общий формат или презентация @@ -6762,37 +6765,37 @@ The encoding is responsible for the correct character representation. Дождитесь, пока песни будут импортированы. - + OpenLP 2.0 Databases База данных OpenLP 2.0 - + openlp.org v1.x Databases База данных openlp.org v1.x - + Words Of Worship Song Files - + Songs Of Fellowship Song Files Файлы песен Songs Of Fellowship - + SongBeamer Files Файлы SongBeamer - + SongShow Plus Song Files Файлы SongShow Plus - + Foilpresenter Song Files Foilpresenter Song Files @@ -6807,65 +6810,95 @@ The encoding is responsible for the correct character representation. Сохранить в файл - + The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. - + The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. - + OpenLyrics or OpenLP 2.0 Exported Song - + OpenLyrics Files - + CCLI SongSelect Files - + EasySlides XML File - + EasyWorship Song Database - + DreamBeam Song Files - + You need to specify a valid PowerSong 1.0 database folder. - + ZionWorx (CSV) - + First convert your ZionWorx database to a CSV text file, as explained in the <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">User Manual</a>. - + SundayPlus Song Files + + + This importer has been disabled. + + + + + MediaShout Database + + + + + The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. + + + + + SongPro Text Files + + + + + SongPro (Export File) + + + + + In SongPro, export your songs using the File -> Export menu + + SongsPlugin.MediaFilesForm @@ -6948,6 +6981,14 @@ The encoding is responsible for the correct character representation. + + SongsPlugin.MediaShoutImport + + + Unable to open the MediaShout database. + + + SongsPlugin.OpenLP1SongImport diff --git a/resources/i18n/sk.ts b/resources/i18n/sk.ts new file mode 100644 index 000000000..a55e10e9a --- /dev/null +++ b/resources/i18n/sk.ts @@ -0,0 +1,7253 @@ + + + + AlertsPlugin + + + &Alert + &Upozornenie + + + + Show an alert message. + Zobraziť upozornenie. + + + + Alert + name singular + Upozornenie + + + + Alerts + name plural + Upozornenia + + + + Alerts + container title + Upozornenia + + + + <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of nursery alerts on the display screen. + <strong>Modul upozornení</strong><br />Modul upozornení umožňuje zobrazovat rôzne hlášky a upozornenia na zobrazovacej obrazovke. + + + + AlertsPlugin.AlertForm + + + Alert Message + Upozornenie + + + + Alert &text: + &Text upozornenia: + + + + &New + &Nový + + + + &Save + &Uložiť + + + + Displ&ay + &Zobraziť + + + + Display && Cl&ose + Zobraziť a za&vrieť + + + + New Alert + Nové upozornenie + + + + You haven't specified any text for your alert. Please type in some text before clicking New. + Nebyl zadaný žiadny text upozornenia. Pred klepnutím na Nový prosím zadajte nejaký text. + + + + &Parameter: + &Parameter: + + + + No Parameter Found + Parameter sa nepodarilo nájsť + + + + You have not entered a parameter to be replaced. +Do you want to continue anyway? + Nebol zadaný žiadny parameter pre nahradenie. Chcete napriek tomu pokračovat? Parameter sa nepodarilo nájsť + + + + No Placeholder Found + Zástupný znak sa nepodarilo nájsť + + + + The alert text does not contain '<>'. +Do you want to continue anyway? + Text upozornenia neobsahuje '<>'. Chcete napriek tomu pokračovat? + + + + AlertsPlugin.AlertsManager + + + Alert message created and displayed. + Upozorňovacia správa bola vytvorená a zobrazená. + + + + AlertsPlugin.AlertsTab + + + Font + Písmo + + + + Font name: + Názov písma: + + + + Font color: + Farba písma: + + + + Background color: + Farba pozadia: + + + + Font size: + Veľkosť písma: + + + + Alert timeout: + Čas pre vypršanie upozornenia: + + + + BiblesPlugin + + + &Bible + &Biblia + + + + Bible + name singular + Biblia + + + + Bibles + name plural + Biblie + + + + Bibles + container title + Biblie + + + + No Book Found + Kniha sa nenašla + + + + No matching book could be found in this Bible. Check that you have spelled the name of the book correctly. + V Bibli sa nenašla hľadaná kniha. Uistite sa, že názov knihy bol zadaný správne. + + + + Import a Bible. + Import Biblie. + + + + Add a new Bible. + Pridať novú Bibliu. + + + + Edit the selected Bible. + Upraviť označenú Bibliu. + + + + Delete the selected Bible. + Zmazať označenú Bibliu. + + + + Preview the selected Bible. + Náhľad označenej Biblie. + + + + Send the selected Bible live. + Zobraziť označenú Bibliu naživo. + + + + Add the selected Bible to the service. + Pridať označenú Bibliu do služby. + + + + <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display Bible verses from different sources during the service. + <strong>Modul Biblia</strong><br />Modul Biblia umožňuje počay služby zobrazovať verše z rôznych zdrojov. + + + + &Upgrade older Bibles + &Aktualizovať staršie Biblie + + + + Upgrade the Bible databases to the latest format. + Aktualizovať databázu Biblie na najnovší formát. + + + + Genesis + + + + + Exodus + + + + + Leviticus + + + + + Numbers + + + + + Deuteronomy + + + + + Joshua + + + + + Judges + + + + + Ruth + + + + + 1 Samuel + + + + + 2 Samuel + + + + + 1 Kings + + + + + 2 Kings + + + + + 1 Chronicles + + + + + 2 Chronicles + + + + + Ezra + + + + + Nehemiah + + + + + Esther + + + + + Job + + + + + Psalms + + + + + Proverbs + + + + + Ecclesiastes + + + + + Song of Solomon + + + + + Isaiah + + + + + Jeremiah + + + + + Lamentations + + + + + Ezekiel + + + + + Daniel + + + + + Hosea + + + + + Joel + + + + + Amos + + + + + Obadiah + + + + + Jonah + + + + + Micah + + + + + Nahum + + + + + Habakkuk + + + + + Zephaniah + + + + + Haggai + + + + + Zechariah + + + + + Malachi + + + + + Matthew + + + + + Mark + + + + + Luke + + + + + John + + + + + Acts + + + + + Romans + + + + + 1 Corinthians + + + + + 2 Corinthians + + + + + Galatians + + + + + Ephesians + + + + + Philippians + + + + + Colossians + + + + + 1 Thessalonians + + + + + 2 Thessalonians + + + + + 1 Timothy + + + + + 2 Timothy + + + + + Titus + + + + + Philemon + + + + + Hebrews + + + + + James + + + + + 1 Peter + + + + + 2 Peter + + + + + 1 John + + + + + 2 John + + + + + 3 John + + + + + Jude + + + + + Revelation + + + + + Judith + + + + + Wisdom + + + + + Tobit + + + + + Sirach + + + + + Baruch + + + + + 1 Maccabees + + + + + 2 Maccabees + + + + + 3 Maccabees + + + + + 4 Maccabees + + + + + Rest of Daniel + + + + + Rest of Esther + + + + + Prayer of Manasses + + + + + Letter of Jeremiah + + + + + Prayer of Azariah + + + + + Susanna + + + + + Bel + + + + + 1 Esdras + + + + + 2 Esdras + + + + + :|v|V|verse|verses;;-|to;;,|and;;end + Double-semicolon delimited separators for parsing references. Consult the developers for further information. + + + + + BiblesPlugin.BibleEditForm + + + You need to specify a version name for your Bible. + Je potrebné uviesť názov verzie Biblie. + + + + You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. + K Biblii je potrebné nastaviť autorské práva, diela, ktoré sú voľné, je potrebné takto označiť. + + + + Bible Exists + Biblia existuje + + + + This Bible already exists. Please import a different Bible or first delete the existing one. + Táto Biblia už existuje. Importujte prosím inú Bibliu, alebo najprv vymažte existujúcu. + + + + You need to specify a book name for "%s". + + + + + The book name "%s" is not correct. +Numbers can only be used at the beginning and must +be followed by one or more non-numeric characters. + + + + + Duplicate Book Name + + + + + The Book Name "%s" has been entered more than once. + + + + + BiblesPlugin.BibleManager + + + Scripture Reference Error + Chyba v odkazu Biblie + + + + Web Bible cannot be used + Biblia z www sa nedá použiť + + + + Text Search is not available with Web Bibles. + Hľadanie textu nie je dostupné v Biblii z www. + + + + You did not enter a search keyword. +You can separate different keywords by a space to search for all of your keywords and you can separate them by a comma to search for one of them. + Nebolo zadané slovo pre vyhľadávaniu. Na vyhľadávanie textu obsahujúceho všetky slová je potrebné tieto slová oddělit medzerou. Oddelením slov čiarkou bude sa bude vyhľadávať text obsahujúcí aspoň jedno zo zadaných slov. + + + + There are no Bibles currently installed. Please use the Import Wizard to install one or more Bibles. + Žiadne Biblie nie sú nainštalované. Na pridanie jednej alebo viac Biblii prosím použite Sprievodcu importom. + + + + No Bibles Available + Žiadne Biblie k dispozícii. + + + + Your scripture reference is either not supported by OpenLP or is invalid. Please make sure your reference conforms to one of the following patterns or consult the manual: + +Book Chapter +Book Chapter%(range)sChapter +Book Chapter%(verse)sVerse%(range)sVerse +Book Chapter%(verse)sVerse%(range)sVerse%(list)sVerse%(range)sVerse +Book Chapter%(verse)sVerse%(range)sVerse%(list)sChapter%(verse)sVerse%(range)sVerse +Book Chapter%(verse)sVerse%(range)sChapter%(verse)sVerse + Please pay attention to the appended "s" of the wildcards and refrain from translating the words inside the names in the brackets. + + + + + BiblesPlugin.BiblesTab + + + Verse Display + Zobraziť verš + + + + Only show new chapter numbers + Zobraziť len číslo novej kapitoly + + + + Bible theme: + Motív Biblie: + + + + No Brackets + Žiadne zátvorky + + + + ( And ) + (A) + + + + { And } + { A } + + + + [ And ] + [ A ] + + + + Note: +Changes do not affect verses already in the service. + Poznámka: Verše, které sú už v službe, nie sú ovplyvnené zmenami. + + + + Display second Bible verses + Zobraziť druhé verše z Biblie + + + + Custom Scripture References + + + + + Verse Separator: + + + + + Range Separator: + + + + + List Separator: + + + + + End Mark: + + + + + Multiple alternative verse separators may be defined. +They have to be separated by a vertical bar "|". +Please clear this edit line to use the default value. + + + + + Multiple alternative range separators may be defined. +They have to be separated by a vertical bar "|". +Please clear this edit line to use the default value. + + + + + Multiple alternative list separators may be defined. +They have to be separated by a vertical bar "|". +Please clear this edit line to use the default value. + + + + + Multiple alternative end marks may be defined. +They have to be separated by a vertical bar "|". +Please clear this edit line to use the default value. + + + + + English + + + + + Default Bible Language + + + + + Book name language in search field, +search results and on display: + + + + + Bible Language + + + + + Application Language + + + + + BiblesPlugin.BookNameDialog + + + Select Book Name + Vybrať názov knihy + + + + Current name: + Súčasný názov: + + + + Corresponding name: + Zodpovedajúci názov: + + + + Show Books From + Zobraziť knihy od + + + + Old Testament + Starý zákon + + + + New Testament + Nový zákon + + + + Apocrypha + Apokryfy + + + + The following book name cannot be matched up internally. Please select the corresponding name from the list. + + + + + BiblesPlugin.BookNameForm + + + You need to select a book. + Je potrebné vybrať knihu. + + + + BiblesPlugin.CSVBible + + + Importing books... %s + Import kníh... %s + + + + Importing verses from %s... + Importing verses from <book name>... + Import veršov z %s... + + + + Importing verses... done. + Import veršov... dokončené. + + + + BiblesPlugin.EditBibleForm + + + Bible Editor + + + + + License Details + Podrobnosti licencie + + + + Version name: + Názov verzie: + + + + Copyright: + Autorské práva: + + + + Permissions: + Povolenia: + + + + Default Bible Language + + + + + Book name language in search field, search results and on display: + + + + + Global Settings + + + + + Bible Language + + + + + Application Language + + + + + English + + + + + This is a Web Download Bible. +It is not possible to customize the Book Names. + + + + + To use the customized book names, "Bible language" must be selected on the Meta Data tab or, if "Global settings" is selected, on the Bible page in Configure OpenLP. + + + + + BiblesPlugin.HTTPBible + + + Registering Bible and loading books... + Registrujem Bibliu a sťahujem knihy... + + + + Registering Language... + Registrujem Jazyk... + + + + Importing %s... + Importing <book name>... + Importujem %s... + + + + Download Error + Vyskytla sa chyba pri sťahovaní + + + + There was a problem downloading your verse selection. Please check your Internet connection, and if this error continues to occur please consider reporting a bug. + Pri sťahovaní výberu veršov sa vyskytol problém. Prosím preverte svoje internetové pripojenie. Pokiaľ sa táto chyba stále objavuje, zvážte prosím nahlásenie chyby. + + + + Parse Error + Chyba pri spracovaní + + + + There was a problem extracting your verse selection. If this error continues to occur please consider reporting a bug. + Pri rozbalovaní výberu veršov sa vyskytol problém. Pokiaľ sa táto chyba stále objavuje, zvážte prosím nahlásenie chyby. + + + + BiblesPlugin.ImportWizardForm + + + Bible Import Wizard + Sprievodca importom Biblie + + + + This wizard will help you to import Bibles from a variety of formats. Click the next button below to start the process by selecting a format to import from. + Tento sprievodca uľahčí import Biblií z rôzných formátov. Proces importu sa spustí klepnutím nižšie na tlačítko ďalší. Potom vyberte formát, z ktorého sa bude Biblia importovať. + + + + Web Download + Stiahnutie z webu + + + + Location: + Umiestnenie: + + + + Crosswalk + Crosswalk + + + + BibleGateway + BibleGateway + + + + Bible: + Biblia: + + + + Download Options + Voľby sťahovania + + + + Server: + Server: + + + + Username: + Používateľské meno: + + + + Password: + Heslo: + + + + Proxy Server (Optional) + Proxy Server (Voliteľné) + + + + License Details + Podrobnosti licencie + + + + Set up the Bible's license details. + Nastaviť podrobnosti k licencii Biblie + + + + Version name: + Názov verzie: + + + + Copyright: + Autorské práva: + + + + Please wait while your Bible is imported. + Prosím počkajte, kým sa Biblia importuje. + + + + You need to specify a file with books of the Bible to use in the import. + Je potrebné určiť súbor s knihami Biblie. Tento súbor sa použije pri importe. + + + + You need to specify a file of Bible verses to import. + Pre import je potrebné určiť súbor s veršami Biblie. + + + + You need to specify a version name for your Bible. + Je potrebné uviesť názov verzie Biblie. + + + + You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. + K Biblii je potrebné nastaviť autorské práva, diela, ktoré sú voľné, je potrebné takto označiť. + + + + Bible Exists + Biblia existuje + + + + This Bible already exists. Please import a different Bible or first delete the existing one. + Táto Biblia už existuje. Importujte prosím inú Bibliu, alebo najprv vymažte existujúcu. + + + + Your Bible import failed. + Import Biblie sa nepodaril. + + + + CSV File + CSV súbor + + + + Bibleserver + Bibleserver + + + + Permissions: + Povolenia: + + + + Bible file: + Súbor s Bibliou: + + + + Books file: + Súbor s knihami: + + + + Verses file: + Súbor s veršami: + + + + openlp.org 1.x Bible Files + Súbor s Bibliou z openlp.org 1.x + + + + Registering Bible... + Registrujem Bibliu... + + + + Registered Bible. Please note, that verses will be downloaded on +demand and thus an internet connection is required. + Registrovaná Biblia. Upozornenie: Verše budú sťahované na vyžiadanie, preto je potrebné internetové pripojenie. + + + + BiblesPlugin.LanguageDialog + + + Select Language + Vyber jazyk + + + + OpenLP is unable to determine the language of this translation of the Bible. Please select the language from the list below. + OpenLP nie je schopný určiť jazyk tohto prekladu Biblie. Vyberte prosím jazyk zo zoznamu nižšie. + + + + Language: + Jazyk: + + + + BiblesPlugin.LanguageForm + + + You need to choose a language. + Je potrebné vybrať jazyk. + + + + BiblesPlugin.MediaItem + + + Quick + Rýchly + + + + Find: + Hľadať: + + + + Book: + Kniha: + + + + Chapter: + Kapitula: + + + + Verse: + Verš: + + + + From: + Od: + + + + To: + Do: + + + + Text Search + Vyhľadávanie textu + + + + Second: + Druhý: + + + + Scripture Reference + Odkaz do Biblie + + + + Toggle to keep or clear the previous results. + Prepnúť ponechanie alebo zmazanie predchádzajúcich výsledkov. + + + + You cannot combine single and dual Bible verse search results. Do you want to delete your search results and start a new search? + Nie je možné kombinovať jednoduché a dvojité výsledky hľadania veršov v Bibli. Prajete si zmazať výsledky hľadania a začať s novým vyhľadávaním? + + + + Bible not fully loaded. + Biblia nie je načítaná celá. + + + + Information + Informácie + + + + The second Bible does not contain all the verses that are in the main Bible. Only verses found in both Bibles will be shown. %d verses have not been included in the results. + Druhá Biblia neobsahuje všetky verše ako sú v hlavnej Biblii. Budú zobrazené len verše nájdené v obidvoch Bibliách. %d veršov nebolo zahrnutých vo výsledkoch. + + + + Search Scripture Reference... + + + + + Search Text... + + + + + Are you sure you want to completely delete "%s" Bible from OpenLP? + +You will need to re-import this Bible to use it again. + + + + + BiblesPlugin.OpenSongImport + + + Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. + + + + + BiblesPlugin.Opensong + + + Importing %s %s... + Importing <book name> <chapter>... + Importujem %s %s... + + + + BiblesPlugin.OsisImport + + + Detecting encoding (this may take a few minutes)... + Zisťujem kódovanie (môže trvat niekoľko minút)... + + + + Importing %s %s... + Importing <book name> <chapter>... + Importujem %s %s... + + + + BiblesPlugin.UpgradeWizardForm + + + Select a Backup Directory + Vybrať priečinok pre zálohu + + + + Bible Upgrade Wizard + Sprievodca aktualizácie Biblie + + + + This wizard will help you to upgrade your existing Bibles from a prior version of OpenLP 2. Click the next button below to start the upgrade process. + Tento sprievodca pomáhá s aktualizáciou existujúcich Biblií z predchádzajúcej verzie OpenLP 2. Pre spustenie aktualizácie kliknite nižšie na tlačítko Ďalej. + + + + Select Backup Directory + Vybrať prečinok pre zálohu + + + + Please select a backup directory for your Bibles + Vyberte prosím priečinok pre zálohu Biblií + + + + Previous releases of OpenLP 2.0 are unable to use upgraded Bibles. This will create a backup of your current Bibles so that you can simply copy the files back to your OpenLP data directory if you need to revert to a previous release of OpenLP. Instructions on how to restore the files can be found in our <a href="http://wiki.openlp.org/faq">Frequently Asked Questions</a>. + Predchádzajúce vydania OpenLP 2.0 nie sú schopné aktualizovať Bibliu. Bude vytvorená záloha súčasných Biblií, aby bylo možné v prípadě potreby jednoducho nakopírovať súbory späť do dátoveho pričinku aplikácie OpenLP. Inštrukcie, ako obnoviť súbory, nájdete v <a href="http://wiki.openlp.org/faq">často kladených otázkach</a>. + + + + Please select a backup location for your Bibles. + Vyberte prosím umiestenie pre zálohu Biblie. + + + + Backup Directory: + Priečinok pre zálohu: + + + + There is no need to backup my Bibles + Nie je potrebné zálohovať Bibliu + + + + Select Bibles + Vybrať Bibliu + + + + Please select the Bibles to upgrade + Vyberte prosím Bibliu na aktualizáciu + + + + Upgrading + Aktualizujuem + + + + Please wait while your Bibles are upgraded. + Čakajte prosím, až budú Biblie aktualizované. + + + + The backup was not successful. +To backup your Bibles you need permission to write to the given directory. + Záloha nebola úspešná. Pre zálohu Biblií je potrebné oprávnenie k zápisu do zadaného priečinku. + + + + Upgrading Bible %s of %s: "%s" +Failed + Aktualizácia Biblie %s z %s: "%s" Zlyhala + + + + Upgrading Bible %s of %s: "%s" +Upgrading ... + Aktualizujem Bibliu %s z %s: "%s" Aktualizujem ... + + + + Download Error + Chyba pri sťahovaní + + + + To upgrade your Web Bibles an Internet connection is required. + Pre aktualizáciu Biblií z www je potrebné internetové pripojenie. + + + + Upgrading Bible %s of %s: "%s" +Upgrading %s ... + Aktualizujem Bibliu %s z %s: "%s" Aktualizujem %s ... + + + + Upgrading Bible %s of %s: "%s" +Complete + Aktualizujem Biblie %s z %s: "%s" Dokončené + + + + , %s failed + , %s zlyhalo + + + + Upgrading Bible(s): %s successful%s +Please note that verses from Web Bibles will be downloaded on demand and so an Internet connection is required. + Aktualizácia Biblií: %s úspešná%s Upozornenie: Verše z www Biblie budú stiahnuté na vyžiadanie a preto je potrebné internetové pripojenie. + + + + Upgrading Bible(s): %s successful%s + Aktualizácia Biblií: %s úspešná%s + + + + Upgrade failed. + Aktualizácia zlyhala. + + + + You need to specify a backup directory for your Bibles. + Je potrebné upresniť priečinok pre zálohu Biblií. + + + + Starting upgrade... + Spúšťam aktualizáciu... + + + + There are no Bibles that need to be upgraded. + Nie sú žiadne , ktoré treba aktualizovať. + + + + + CustomPlugin + + + <strong>Custom Slide Plugin</strong><br />The custom slide plugin provides the ability to set up custom text slides that can be displayed on the screen the same way songs are. This plugin provides greater freedom over the songs plugin. + <strong>Vlastný doplnok snímku</strong><br />Vlastný modul snímok poskytuje možnosť nastaviť vlastné textové snímky, ktoré môžu byť zobrazené na obrazovke rovnako ako piesne . Tento modul poskytuje väčšie možnosti s modulmi piesní. + + + + Custom Slide + name singular + Vlastný snímok + + + + Custom Slides + name plural + Vlastné snímky + + + + Custom Slides + container title + Vlastné snímky + + + + Load a new custom slide. + Načítaj nový vlastný snímok, + + + + Import a custom slide. + Vlož vlastný snímok. + + + + Add a new custom slide. + Pridaj nový vlastný snímok. + + + + Edit the selected custom slide. + Uprav vybraný vlastný snímok. + + + + Delete the selected custom slide. + Zmaž vybraný vlastný snímok. + + + + Preview the selected custom slide. + Zobraz vybraný vlastný snímok. + + + + Send the selected custom slide live. + Teraz odošli vybraný vlastný snímok + + + + Add the selected custom slide to the service. + Pridaj vybraný vlastný snímok do služby + + + + CustomPlugin.CustomTab + + + Custom Display + Vlastné zobrazenie. + + + + Display footer + Päta zobrazenia. + + + + CustomPlugin.EditCustomForm + + + Edit Custom Slides + Uprav vlastné snímky.. + + + + &Title: + &Názov: + + + + Add a new slide at bottom. + Pridaj nový snímok na spodok. + + + + Edit the selected slide. + Upraviť vybraný snímok. + + + + Edit all the slides at once. + Upraviť všetky snímky naraz. + + + + Split a slide into two by inserting a slide splitter. + Vložením oddeľovača sa snímok rozdelí na dva. + + + + The&me: + &Motív: + + + + &Credits: + &Zásluhy: + + + + You need to type in a title. + Je potrebné zadať názov. + + + + You need to add at least one slide + Je nutné pridať aspoň jeden snímok + + + + Ed&it All + Upra&iť všetky + + + + Insert Slide + Vložiť snímok + + + + CustomPlugin.EditVerseForm + + + Edit Slide + + + + + CustomPlugin.MediaItem + + + Are you sure you want to delete the %n selected custom slide(s)? + + + + + + + + + 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. + <strong>Modul obrázok</strong><br />Modul obrázok sa stará o zobrazovanie obrázkov.<br />Jednou z charakteristických funkcí tohto modulu je schopnosť v správcovi služby zoskúpiť niekoľko obrázkov dohromady. Táto vlastnosť zjednodušuje zobrazenie viacero obrázkov. Tento modul tiež využívá vlastnosti "časová smyčka" aplikace OpenLP a je tiež možné vytvoriť prezentáciu obrázkov, které pobežia samostatne. Taktiež využitím obrázkov z modulu je možné prekryť pozadie súčasného motívu. + + + + Image + name singular + Obrázok + + + + Images + name plural + Obrázky + + + + Images + container title + Obrázky + + + + Load a new image. + Načítať nový obrázok. + + + + Add a new image. + Pridať nový obrázok. + + + + Edit the selected image. + Upraviť vybraný obrázok. + + + + Delete the selected image. + Zmazať vybraný obrázok. + + + + Preview the selected image. + Náhľad vybraného obrázku. + + + + Send the selected image live. + Zobraziť vybraný obrázok naživo. + + + + Add the selected image to the service. + Pridať vybraný obrázok do služby. + + + + ImagePlugin.ExceptionDialog + + + Select Attachment + Vybrať prílohu + + + + ImagePlugin.MediaItem + + + Select Image(s) + Vybrať obrázky + + + + You must select an image to delete. + Pre zmazanie musíte najskôr vybrať obrázok. + + + + You must select an image to replace the background with. + Pre nahradenie pozadia musíte najskôr vybrať obrázok. + + + + Missing Image(s) + Chýbajúce obrázky + + + + The following image(s) no longer exist: %s + Tieto obrázky už neexistujú: %s + + + + The following image(s) no longer exist: %s +Do you want to add the other images anyway? + Nasledujúci obrázok(y) neexistujú.%s +Chcete pridať ďaľšie obrázky? + + + + There was a problem replacing your background, the image file "%s" no longer exists. + Problém s nahradením pozadia. Obrázok "%s" už neexistuje. + + + + There was no display item to amend. + Žiadna položka na zobrazenie nebola zmenená. + + + + ImagesPlugin.ImageTab + + + Background Color + Farba pozadia + + + + Default Color: + Predvolená farba: + + + + Visible background for images with aspect ratio different to screen. + + + + + MediaPlugin + + + <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. + <strong>Modul média</strong><br />Modul média umožňuje prehrávať audio a video. + + + + Media + name singular + Médium + + + + Media + name plural + Média + + + + Media + container title + Média + + + + Load new media. + Načítať nové médium. + + + + Add new media. + Pridať nové médium. + + + + Edit the selected media. + Upraviť vybrané médium. + + + + Delete the selected media. + Zmazať vybrané médium. + + + + Preview the selected media. + Náhľad vybraného média. + + + + Send the selected media live. + Zobraziť vybrané médium naživo. + + + + Add the selected media to the service. + Pridať vybrané médium do služby. + + + + MediaPlugin.MediaItem + + + Select Media + Vybrať médium + + + + You must select a media file to delete. + Pre zmazanie musíte najskôr vybrať súbor s médiom. + + + + You must select a media file to replace the background with. + Pre nahradenie pozadia musíte najskôr vybrať súbor s médiom. + + + + There was a problem replacing your background, the media file "%s" no longer exists. + Problém s nahradením pozadia. Súbor s médiom "%s" už neexistuje. + + + + Missing Media File + Chybajúce súbory s médiami + + + + The file %s no longer exists. + Súbor %s už neexistuje. + + + + Videos (%s);;Audio (%s);;%s (*) + Video (%s);;Audio (%s);;%s (*) + + + + There was no display item to amend. + Žiadna položka na zobrazenie nebola zmenená. + + + + Unsupported File + Nepodporovaný súbor + + + + Automatic + Automatický + + + + Use Player: + Použi prehrávač: + + + + MediaPlugin.MediaTab + + + Available Media Players + Dostupné prehrávače médií + + + + %s (unavailable) + %s (nedostupné) + + + + Player Order + Poradie hráčov + + + + Allow media player to be overridden + + + + + OpenLP + + + Image Files + Súbory obrázkov + + + + Information + Informácie + + + + Bible format has changed. +You have to upgrade your existing Bibles. +Should OpenLP upgrade now? + Formát Biblie sa zmenil. +Je nutné upgradovať existujúcu Bibliu. +Má OpenLP upgradovať teraz? + + + + OpenLP.AboutForm + + + Credits + Kredity + + + + License + Licencia + + + + Contribute + Prispieť + + + + build %s + stavba %s + + + + This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. + Tento program je slobodný softvér, môžete ho šíriť a / alebo modifikovať podľa ustanovení GNU General Public License, vydávanej Free Software Foundation, verzia 2 tejto licencie. + + + + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See below for more details. + Tento program je rozširovaný v nádeji, že bude užitočný, ale BEZ AKEJKOĽVEK ZÁRUKY; neposkytujú sa ani odvodené záruky PREDAJNOSTI alebo VHODNOSTI PRE URČITÝ ÚČEL. Pozri dole pre ďalšie podrobnosti. + + + + Project Lead + %s + +Developers + %s + +Contributors + %s + +Testers + %s + +Packagers + %s + +Translators + Afrikaans (af) + %s + German (de) + %s + English, United Kingdom (en_GB) + %s + English, South Africa (en_ZA) + %s + Estonian (et) + %s + French (fr) + %s + Hungarian (hu) + %s + Japanese (ja) + %s + Norwegian Bokmål (nb) + %s + Dutch (nl) + %s + Portuguese, Brazil (pt_BR) + %s + Russian (ru) + %s + +Documentation + %s + +Built With + Python: http://www.python.org/ + Qt4: http://qt.nokia.com/ + PyQt4: http://www.riverbankcomputing.co.uk/software/pyqt/intro + Oxygen Icons: http://oxygen-icons.org/ + +Final Credit + "For God so loved the world that He gave + His one and only Son, so that whoever + believes in Him will not perish but inherit + eternal life." -- John 3:16 + + And last but not least, final credit goes to + God our Father, for sending His Son to die + on the cross, setting us free from sin. We + bring this software to you for free because + He has set us free. + Projekt líder + %s + +Vývojári + %s + +Prispievatelia + %s + +Testeri + %s + +Baliči + %s + +Prekladatelia + Afrikaans (af) + %s + German (de) + %s + English, United Kingdom (en_GB) + %s + English, South Africa (en_ZA) + %s + Estonian (et) + %s + French (fr) + %s + Hungarian (hu) + %s + Japanese (ja) + %s + Norwegian Bokmål (nb) + %s + Dutch (nl) + %s + Portuguese, Brazil (pt_BR) + %s + Russian (ru) + %s + +Dokumentáacia + %s + +Vytvorené v + Python: http://www.python.org/ + Qt4: http://qt.nokia.com/ + PyQt4: http://www.riverbankcomputing.co.uk/software/pyqt/intro + Oxygen Icons: http://oxygen-icons.org/ + +Poďakovanie + "Lebo Boh tak miloval svet, že dal +     svojho jediného syna, aby ten, kto +     verí v neho, nezahynul, ale mal +     posmrtný život." -- Ján 3:16 + + A v neposlednom rade ide poďakovanie +     Bohu, nášmu Otcovi, pre zaslanie svojho Syna na smrť +     na kríži, ktorým nás oslobodzuje od hriechu. My +    vám dávame tento softvér pre vás zdarma, pretože +     On nás oslobodil. + + + + OpenLP <version><revision> - Open Source Lyrics Projection + +OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if Impress, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. + +Find out more about OpenLP: http://openlp.org/ + +OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider contributing by using the button below. + OpenLP <version><revision> - Open Source Lyrics Projection + +OpenLP je bezplatný kostolný prezentačný softvér, alebo textový projekčný softvér, ktorý sa používa na zobrazenie snímok z piesní, biblických veršov, videí, obrázkov, a dokonca aj prezentácií (ak zapôsobí, PowerPoint alebo PowerPoint Viewer je nainštalovaný) na kostolné chvály s použitím počítača a dátového projektora. + +Nájdi viac o OpenLP: http://openlp.org/ + +OpenLP je napísaný a udržiavaný dobrovoľníkmi. Ak by ste chceli mať viac voľného kresťanského softvéru, zvážte prosím prispievať pomocou tlačidla nižšie. + + + + Copyright © 2004-2012 %s +Portions copyright © 2004-2012 %s + + + + + OpenLP.AdvancedTab + + + UI Settings + Nastavenia používateľského rozhrania + + + + Number of recent files to display: + Počet zobrazených posledných súborov: + + + + Remember active media manager tab on startup + Zapamätanie si karty akívneho manažéra médií pri spustení + + + + Double-click to send items straight to live + Dvakrát klikni pre live zobrazenie položiek + + + + Expand new service items on creation + Zobraz nové pomocné položky na tvorbu + + + + Enable application exit confirmation + Sprístupni potvrdenie ukončenia aplikácie + + + + Mouse Cursor + Kurzor myši + + + + Hide mouse cursor when over display window + Skry kurzor myši počas prechodu cez okno zobrazenia + + + + Default Image + Pôvodný obrázok + + + + Background color: + Farba pozadia: + + + + Image file: + Obrázok: + + + + Open File + Otvor súbor + + + + Advanced + Pokročilé + + + + Preview items when clicked in Media Manager + Obrázky zobrazíš kliknutím na manažér médií + + + + Click to select a color. + Klikni pre vybratie farby. + + + + Browse for an image file to display. + Prehľadávaj obrázky na zobrazenie. + + + + Revert to the default OpenLP logo. + Obnov pôvodné OpenLP logo. + + + + Service %Y-%m-%d %H-%M + This may not contain any of the following characters: /\?*|<>[]":+ +See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for more information. + + + + + Default Service Name + + + + + Enable default service name + + + + + Date and Time: + + + + + Monday + + + + + Tuesday + + + + + Wednesday + + + + + Thurdsday + + + + + Friday + + + + + Saturday + + + + + Sunday + + + + + Now + + + + + Time when usual service starts. + + + + + Name: + + + + + Consult the OpenLP manual for usage. + + + + + Revert to the default service name "%s". + + + + + Example: + + + + + X11 + + + + + Bypass X11 Window Manager + + + + + Syntax error. + + + + + Data Location + + + + + Current path: + + + + + Custom path: + + + + + Browse for new data file location. + + + + + Set the data location to the default. + + + + + Cancel + + + + + Cancel OpenLP data directory location change. + + + + + Copy data to new location. + + + + + Copy the OpenLP data files to the new location. + + + + + <strong>WARNING:</strong> New data directory location contains OpenLP data files. These files WILL be replaced during a copy. + + + + + Data Directory Error + + + + + Select Data Directory Location + + + + + Confirm Data Directory Change + + + + + Reset Data Directory + + + + + Are you sure you want to change the location of the OpenLP data directory to the default location? + +This location will be used after OpenLP is closed. + + + + + Overwrite Existing Data + Prepísať existujúce údaje + + + + OpenLP.ExceptionDialog + + + Error Occurred + Vyskytla sa chyba + + + + Oops! OpenLP hit a problem, and couldn't recover. The text in the box below contains information that might be helpful to the OpenLP developers, so please e-mail it to bugs@openlp.org, along with a detailed description of what you were doing when the problem occurred. + Ups! V OpenLP sa vyskytol problém a nemohol sa obnoviť. Text v poli nižšie obsahuje informácie, ktoré by mohli byť užitočné pre OpenLP vývojárov, takže prosím pošlite e-mail na bugs@openlp.org spolu s podrobným popisom toho, čo ste robili, keď sa problém vyskytol. + + + + Send E-Mail + Pošli email. + + + + Save to File + Uložiť do súboru + + + + Please enter a description of what you were doing to cause this error +(Minimum 20 characters) + Prosím, popíšte, čo ste robili, keď sa vyskytla chyba +(najmenej 20 znakov) + + + + Attach File + Pripoj súbor + + + + Description characters to enter : %s + Popisné znaky na potvrdenie : %s + + + + OpenLP.ExceptionForm + + + Platform: %s + + Platforma: %s + + + + + Save Crash Report + Ulož správu o zlyhaní + + + + Text files (*.txt *.log *.text) + Textové súbory (*.txt *.log *.text) + + + + **OpenLP Bug Report** +Version: %s + +--- Details of the Exception. --- + +%s + + --- Exception Traceback --- +%s +--- System information --- +%s +--- Library Versions --- +%s + + + + + + *OpenLP Bug Report* +Version: %s + +--- Details of the Exception. --- + +%s + + --- Exception Traceback --- +%s +--- System information --- +%s +--- Library Versions --- +%s + + Please add the information that bug reports are favoured written in English. + + + + + OpenLP.FileRenameForm + + + File Rename + Premenovanie súboru + + + + New File Name: + Nový názov súboru: + + + + File Copy + Kopírovanie súboru + + + + OpenLP.FirstTimeLanguageForm + + + Select Translation + Vyber preklad + + + + Choose the translation you'd like to use in OpenLP. + Vyber preklad, ktorý chceš použiť v OpenLP. + + + + Translation: + Preklad: + + + + OpenLP.FirstTimeWizard + + + Songs + Piesne + + + + First Time Wizard + Sprievodca prvým použitím + + + + Welcome to the First Time Wizard + Vitajte v sprievodcovi prvým použitím + + + + Activate required Plugins + Aktivácia požadovaných pluginov + + + + Select the Plugins you wish to use. + Vyberte pluginy, ktoré chcete použiť. + + + + Bible + Biblia + + + + Images + Obrázky + + + + Presentations + Prezentácie + + + + Media (Audio and Video) + Médiá(Zvuk a Video) + + + + Allow remote access + Povolenie vzdialeného prístupu + + + + Monitor Song Usage + Monitorovanie použitia piesní + + + + Allow Alerts + Povolenie upozornení + + + + Default Settings + Pôvodné nastavenia. + + + + Downloading %s... + Sťahovanie %s... + + + + Download complete. Click the finish button to start OpenLP. + Sťahovanie dokončené. Kliknutím na tlačítko finish spustíte OpenLP: + + + + Enabling selected plugins... + Povoľovanie vybratých pluginov... + + + + No Internet Connection + Žiadne internetové pripojenie + + + + Unable to detect an Internet connection. + Nedá sa zistiť internetové pripojenie. + + + + Sample Songs + Ukážkové piesne + + + + Select and download public domain songs. + Vyber a stiahni verejne prístupné piesne. + + + + Sample Bibles + Ukážkové Biblie. + + + + Select and download free Bibles. + + + + + Sample Themes + Ukážkové témy + + + + Select and download sample themes. + Vyber a stiahni ukážkové témy. + + + + Set up default settings to be used by OpenLP. + Nastav pôvodné nastavenia použité v OpenLP + + + + Default output display: + Pôvodné výstupné zobrazenie: + + + + Select default theme: + Vyber základnú tému. + + + + Starting configuration process... + Začínanie konfiguračného procesu... + + + + This wizard will help you to configure OpenLP for initial use. Click the next button below to start. + + + + + Setting Up And Downloading + + + + + Please wait while OpenLP is set up and your data is downloaded. + + + + + Setting Up + + + + + Click the finish button to start OpenLP. + + + + + Download complete. Click the finish button to return to OpenLP. + + + + + Click the finish button to return to OpenLP. + + + + + Custom Slides + Vlastné snímky + + + + Finish + + + + + No Internet connection was found. The First Time Wizard needs an Internet connection in order to be able to download sample songs, Bibles and themes. Click the Finish button now to start OpenLP with initial settings and no sample data. + +To re-run the First Time Wizard and import this sample data at a later time, check your Internet connection and re-run this wizard by selecting "Tools/Re-run First Time Wizard" from OpenLP. + + + + + + +To cancel the First Time Wizard completely (and not start OpenLP), click the Cancel button now. + + + + + OpenLP.FormattingTagDialog + + + Configure Formatting Tags + + + + + Edit Selection + + + + + Save + + + + + Description + + + + + Tag + + + + + Start HTML + + + + + End HTML + + + + + OpenLP.FormattingTagForm + + + Update Error + + + + + Tag "n" already defined. + + + + + New Tag + + + + + <HTML here> + + + + + </and here> + + + + + Tag %s already defined. + + + + + OpenLP.FormattingTags + + + Red + + + + + Black + + + + + Blue + + + + + Yellow + + + + + Green + + + + + Pink + + + + + Orange + + + + + Purple + + + + + White + + + + + Superscript + + + + + Subscript + + + + + Paragraph + + + + + Bold + + + + + Italics + + + + + Underline + + + + + Break + + + + + OpenLP.GeneralTab + + + General + + + + + Monitors + + + + + Select monitor for output display: + + + + + Display if a single screen + + + + + Application Startup + + + + + Show blank screen warning + + + + + Automatically open the last service + + + + + Show the splash screen + + + + + Application Settings + + + + + Prompt to save before starting a new service + + + + + Automatically preview next item in service + + + + + sec + + + + + CCLI Details + + + + + SongSelect username: + + + + + SongSelect password: + + + + + X + + + + + Y + + + + + Height + + + + + Width + + + + + Check for updates to OpenLP + + + + + Unblank display when adding new live item + + + + + Timed slide interval: + + + + + Background Audio + + + + + Start background audio paused + + + + + Service Item Slide Limits + + + + + Override display position: + + + + + Repeat track list + + + + + Behavior of next/previous on the last/first slide: + + + + + &Remain on Slide + + + + + &Wrap around + + + + + &Move to next/previous service item + + + + + OpenLP.LanguageManager + + + Language + + + + + Please restart OpenLP to use your new language setting. + + + + + OpenLP.MainDisplay + + + OpenLP Display + + + + + OpenLP.MainWindow + + + &File + + + + + &Import + + + + + &Export + + + + + &View + + + + + M&ode + + + + + &Tools + + + + + &Settings + + + + + &Language + + + + + &Help + + + + + Media Manager + + + + + Service Manager + + + + + Theme Manager + + + + + &New + &Nový + + + + &Open + + + + + Open an existing service. + + + + + &Save + &Uložiť + + + + Save the current service to disk. + + + + + Save &As... + + + + + Save Service As + + + + + Save the current service under a new name. + + + + + E&xit + + + + + Quit OpenLP + + + + + &Theme + + + + + &Configure OpenLP... + + + + + &Media Manager + + + + + Toggle Media Manager + + + + + Toggle the visibility of the media manager. + + + + + &Theme Manager + + + + + Toggle Theme Manager + + + + + Toggle the visibility of the theme manager. + + + + + &Service Manager + + + + + Toggle Service Manager + + + + + Toggle the visibility of the service manager. + + + + + &Preview Panel + + + + + Toggle Preview Panel + + + + + Toggle the visibility of the preview panel. + + + + + &Live Panel + + + + + Toggle Live Panel + + + + + Toggle the visibility of the live panel. + + + + + &Plugin List + + + + + List the Plugins + + + + + &User Guide + + + + + &About + + + + + More information about OpenLP + + + + + &Online Help + + + + + &Web Site + + + + + Use the system language, if available. + + + + + Set the interface language to %s + + + + + Add &Tool... + + + + + Add an application to the list of tools. + + + + + &Default + + + + + Set the view mode back to the default. + + + + + &Setup + + + + + Set the view mode to Setup. + + + + + &Live + + + + + Set the view mode to Live. + + + + + Version %s of OpenLP is now available for download (you are currently running version %s). + +You can download the latest version from http://openlp.org/. + + + + + OpenLP Version Updated + + + + + OpenLP Main Display Blanked + + + + + The Main Display has been blanked out + + + + + Default Theme: %s + + + + + English + Please add the name of your language here + + + + + Configure &Shortcuts... + + + + + Close OpenLP + + + + + Are you sure you want to close OpenLP? + + + + + Open &Data Folder... + + + + + Open the folder where songs, bibles and other data resides. + + + + + &Autodetect + + + + + Update Theme Images + + + + + Update the preview images for all themes. + + + + + Print the current service. + + + + + &Recent Files + + + + + L&ock Panels + + + + + Prevent the panels being moved. + + + + + Re-run First Time Wizard + + + + + Re-run the First Time Wizard, importing songs, Bibles and themes. + + + + + Re-run First Time Wizard? + + + + + Are you sure you want to re-run the First Time Wizard? + +Re-running this wizard may make changes to your current OpenLP configuration and possibly add songs to your existing songs list and change your default theme. + + + + + Clear List + Clear List of recent files + + + + + Clear the list of recent files. + + + + + Configure &Formatting Tags... + + + + + Export OpenLP settings to a specified *.config file + + + + + Settings + + + + + Import OpenLP settings from a specified *.config file previously exported on this or another machine + + + + + Import settings? + + + + + Are you sure you want to import settings? + +Importing settings will make permanent changes to your current OpenLP configuration. + +Importing incorrect settings may cause erratic behaviour or OpenLP to terminate abnormally. + + + + + Open File + Otvor súbor + + + + OpenLP Export Settings Files (*.conf) + + + + + Import settings + + + + + OpenLP will now close. Imported settings will be applied the next time you start OpenLP. + + + + + Export Settings File + + + + + OpenLP Export Settings File (*.conf) + + + + + New Data Directory Error + + + + + OpenLP.Manager + + + Database Error + + + + + The database being loaded was created in a more recent version of OpenLP. The database is version %d, while OpenLP expects version %d. The database will not be loaded. + +Database: %s + + + + + OpenLP cannot load your database. + +Database: %s + + + + + OpenLP.MediaManagerItem + + + No Items Selected + + + + + &Add to selected Service Item + + + + + You must select one or more items to preview. + + + + + You must select one or more items to send live. + + + + + You must select one or more items. + + + + + You must select an existing service item to add to. + + + + + Invalid Service Item + + + + + You must select a %s service item. + + + + + You must select one or more items to add. + + + + + No Search Results + + + + + Invalid File Type + + + + + Invalid File %s. +Suffix not supported + + + + + &Clone + + + + + Duplicate files were found on import and were ignored. + + + + + OpenLP.OpenLyricsImportError + + + <lyrics> tag is missing. + + + + + <verse> tag is missing. + + + + + OpenLP.PluginForm + + + Plugin List + + + + + Plugin Details + + + + + Status: + + + + + Active + + + + + Inactive + + + + + %s (Inactive) + + + + + %s (Active) + + + + + %s (Disabled) + + + + + OpenLP.PrintServiceDialog + + + Fit Page + + + + + Fit Width + + + + + OpenLP.PrintServiceForm + + + Options + + + + + Copy + + + + + Copy as HTML + + + + + Zoom In + + + + + Zoom Out + + + + + Zoom Original + + + + + Other Options + + + + + Include slide text if available + + + + + Include service item notes + + + + + Include play length of media items + + + + + Add page break before each text item + + + + + Service Sheet + + + + + Print + + + + + Title: + + + + + Custom Footer Text: + + + + + OpenLP.ScreenList + + + Screen + + + + + primary + + + + + OpenLP.ServiceItem + + + <strong>Start</strong>: %s + + + + + <strong>Length</strong>: %s + + + + + OpenLP.ServiceItemEditForm + + + Reorder Service Item + + + + + OpenLP.ServiceManager + + + Move to &top + + + + + Move item to the top of the service. + + + + + Move &up + + + + + Move item up one position in the service. + + + + + Move &down + + + + + Move item down one position in the service. + + + + + Move to &bottom + + + + + Move item to the end of the service. + + + + + &Delete From Service + + + + + Delete the selected item from the service. + + + + + &Add New Item + + + + + &Add to Selected Item + + + + + &Edit Item + + + + + &Reorder Item + + + + + &Notes + + + + + &Change Item Theme + + + + + OpenLP Service Files (*.osz) + + + + + 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 + + + + + &Expand all + + + + + Expand all the service items. + + + + + &Collapse all + + + + + Collapse all the service items. + + + + + Open File + Otvor súbor + + + + Moves the selection down the window. + + + + + Move up + + + + + Moves the selection up the window. + + + + + Go Live + + + + + Send the selected item to Live. + + + + + &Start Time + + + + + Show &Preview + + + + + Modified Service + + + + + The current service has been modified. Would you like to save this service? + + + + + Custom Service Notes: + + + + + Notes: + + + + + Playing time: + + + + + Untitled Service + + + + + File could not be opened because it is corrupt. + + + + + Empty File + + + + + This service file does not contain any data. + + + + + Corrupt File + + + + + Load an existing service. + + + + + Save this service. + + + + + Select a theme for the service. + + + + + This file is either corrupt or it is not an OpenLP 2.0 service file. + + + + + Service File Missing + + + + + Slide theme + + + + + Notes + + + + + Edit + + + + + Service copy only + + + + + Error Saving File + Chyba pri ukladaní súboru. + + + + There was an error saving your file. + Chyba pri ukladaní súboru. + + + + OpenLP.ServiceNoteForm + + + Service Item Notes + + + + + OpenLP.SettingsForm + + + Configure OpenLP + + + + + OpenLP.ShortcutListDialog + + + Action + + + + + Shortcut + + + + + Duplicate Shortcut + + + + + The shortcut "%s" is already assigned to another action, please use a different shortcut. + + + + + Alternate + + + + + Select an action and click one of the buttons below to start capturing a new primary or alternate shortcut, respectively. + + + + + Default + + + + + Custom + + + + + Capture shortcut. + + + + + Restore the default shortcut of this action. + + + + + Restore Default Shortcuts + + + + + Do you want to restore all shortcuts to their defaults? + + + + + Configure Shortcuts + + + + + OpenLP.SlideController + + + Hide + + + + + Go To + + + + + Blank Screen + + + + + Blank to Theme + + + + + Show Desktop + + + + + Previous Service + + + + + Next Service + + + + + Escape Item + + + + + Move to previous. + + + + + Move to next. + + + + + Play Slides + + + + + Delay between slides in seconds. + + + + + Move to live. + + + + + Add to Service. + + + + + Edit and reload song preview. + + + + + Start playing media. + + + + + Pause audio. + + + + + Pause playing media. + + + + + Stop playing media. + + + + + Video position. + + + + + Audio Volume. + + + + + Go to "Verse" + + + + + Go to "Chorus" + + + + + Go to "Bridge" + + + + + Go to "Pre-Chorus" + + + + + Go to "Intro" + + + + + Go to "Ending" + + + + + Go to "Other" + + + + + Previous Slide + + + + + Next Slide + + + + + Pause Audio + + + + + Background Audio + + + + + Go to next audio track. + + + + + Tracks + + + + + OpenLP.SpellTextEdit + + + Spelling Suggestions + + + + + Formatting Tags + + + + + Language: + Jazyk: + + + + OpenLP.StartTimeForm + + + Hours: + + + + + Minutes: + + + + + Seconds: + + + + + Item Start and Finish Time + + + + + Start + + + + + Finish + + + + + Length + + + + + Time Validation Error + + + + + Finish time is set after the end of the media item + + + + + Start time is after the finish time of the media item + + + + + Theme Layout + + + + + The blue box shows the main area. + + + + + The red box shows the footer. + + + + + OpenLP.ThemeForm + + + Select Image + + + + + Theme Name Missing + + + + + There is no name for this theme. Please enter one. + + + + + Theme Name Invalid + + + + + Invalid theme name. Please enter one. + + + + + (approximately %d lines per slide) + + + + + OpenLP.ThemeManager + + + Create a new theme. + + + + + Edit Theme + + + + + Edit a theme. + + + + + Delete Theme + + + + + Delete a theme. + + + + + Import Theme + + + + + Import a theme. + + + + + Export Theme + + + + + Export a theme. + + + + + &Edit Theme + + + + + &Delete Theme + + + + + Set As &Global Default + + + + + %s (default) + + + + + You must select a theme to edit. + + + + + You are unable to delete the default theme. + + + + + Theme %s is used in the %s plugin. + + + + + You have not selected a theme. + + + + + Save Theme - (%s) + + + + + Theme Exported + + + + + Your theme has been successfully exported. + + + + + Theme Export Failed + + + + + Your theme could not be exported due to an error. + + + + + Select Theme Import File + + + + + File is not a valid theme. + + + + + &Copy Theme + + + + + &Rename Theme + + + + + &Export Theme + + + + + You must select a theme to rename. + + + + + Rename Confirmation + + + + + Rename %s theme? + + + + + You must select a theme to delete. + + + + + Delete Confirmation + + + + + Delete %s theme? + + + + + Validation Error + + + + + A theme with this name already exists. + + + + + OpenLP Themes (*.theme *.otz) + + + + + Copy of %s + Copy of <theme name> + + + + + Theme Already Exists + + + + + OpenLP.ThemeWizard + + + Theme Wizard + + + + + Welcome to the Theme Wizard + + + + + Set Up Background + + + + + Set up your theme's background according to the parameters below. + + + + + Background type: + + + + + Solid Color + + + + + Gradient + + + + + Color: + + + + + Gradient: + + + + + Horizontal + + + + + Vertical + + + + + Circular + + + + + Top Left - Bottom Right + + + + + Bottom Left - Top Right + + + + + Main Area Font Details + + + + + Define the font and display characteristics for the Display text + + + + + Font: + + + + + Size: + + + + + Line Spacing: + + + + + &Outline: + + + + + &Shadow: + + + + + Bold + + + + + Italic + + + + + Footer Area Font Details + + + + + Define the font and display characteristics for the Footer text + + + + + Text Formatting Details + + + + + Allows additional display formatting information to be defined + + + + + Horizontal Align: + + + + + Left + + + + + Right + + + + + Center + + + + + Output Area Locations + + + + + Allows you to change and move the main and footer areas. + + + + + &Main Area + + + + + &Use default location + + + + + X position: + + + + + px + + + + + Y position: + + + + + Width: + + + + + Height: + + + + + Use default location + + + + + Theme name: + + + + + Edit Theme - %s + + + + + This wizard will help you to create and edit your themes. Click the next button below to start the process by setting up your background. + + + + + Transitions: + + + + + &Footer Area + + + + + Starting color: + + + + + Ending color: + + + + + Background color: + Farba pozadia: + + + + Justify + + + + + Layout Preview + + + + + Transparent + + + + + Preview and Save + + + + + Preview the theme and save it. + + + + + OpenLP.ThemesTab + + + Global Theme + + + + + Theme Level + + + + + S&ong Level + + + + + Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. + + + + + &Service Level + + + + + Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. + + + + + &Global Level + + + + + Use the global theme, overriding any themes associated with either the service or the songs. + + + + + Themes + + + + + OpenLP.Ui + + + Error + + + + + About + + + + + &Add + + + + + Advanced + Pokročilé + + + + All Files + + + + + Bottom + + + + + Browse... + + + + + Cancel + + + + + CCLI number: + + + + + Create a new service. + + + + + &Delete + + + + + &Edit + + + + + Empty Field + + + + + Export + + + + + pt + Abbreviated font pointsize unit + + + + + Image + Obrázok + + + + Import + + + + + Live + + + + + Live Background Error + + + + + Load + + + + + Middle + + + + + New + + + + + New Service + + + + + New Theme + + + + + No File Selected + Singular + + + + + No Files Selected + Plural + + + + + No Item Selected + Singular + + + + + No Items Selected + Plural + + + + + openlp.org 1.x + + + + + OpenLP 2.0 + + + + + Preview + + + + + Replace Background + + + + + Reset Background + + + + + s + The abbreviated unit for seconds + + + + + Save && Preview + + + + + Search + + + + + You must select an item to delete. + + + + + You must select an item to edit. + + + + + Save Service + + + + + Service + + + + + Start %s + + + + + Theme + Singular + + + + + Themes + Plural + + + + + Top + + + + + Version + + + + + Delete the selected item. + + + + + Move selection up one position. + + + + + Move selection down one position. + + + + + &Vertical Align: + + + + + Finished import. + + + + + Format: + + + + + Importing + + + + + Importing "%s"... + + + + + Select Import Source + + + + + Select the import format and the location to import from. + + + + + The openlp.org 1.x importer has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "python-sqlite" module. + + + + + Open %s File + + + + + %p% + + + + + Ready. + + + + + Starting import... + + + + + You need to specify at least one %s file to import from. + A file type e.g. OpenSong + + + + + Welcome to the Bible Import Wizard + + + + + Welcome to the Song Export Wizard + + + + + Welcome to the Song Import Wizard + + + + + Author + Singular + + + + + Authors + Plural + + + + + © + Copyright symbol. + + + + + Song Book + Singular + + + + + Song Books + Plural + + + + + Song Maintenance + + + + + Topic + Singular + + + + + Topics + Plural + + + + + Continuous + + + + + Default + + + + + Display style: + + + + + Duplicate Error + + + + + File + + + + + Help + + + + + h + The abbreviated unit for hours + + + + + Layout style: + + + + + Live Toolbar + + + + + m + The abbreviated unit for minutes + + + + + OpenLP is already running. Do you wish to continue? + + + + + Settings + + + + + Tools + + + + + Unsupported File + Nepodporovaný súbor + + + + Verse Per Slide + + + + + Verse Per Line + + + + + View + + + + + Title and/or verses not found + + + + + XML syntax error + + + + + View Mode + + + + + Open service. + + + + + Print Service + + + + + Replace live background. + + + + + Reset live background. + + + + + Split a slide into two only if it does not fit on the screen as one slide. + + + + + Welcome to the Bible Upgrade Wizard + + + + + Confirm Delete + + + + + Play Slides in Loop + + + + + Play Slides to End + + + + + Stop Play Slides in Loop + + + + + Stop Play Slides to End + + + + + Next Track + + + + + Search Themes... + Search bar place holder text + + + + + Optional &Split + + + + + Invalid Folder Selected + Singular + Vybrali ste nesprávny priečinok + + + + Invalid File Selected + Singular + Vybrali ste nesprávny súbor + + + + Invalid Files Selected + Plural + Vybrali ste nesprávne súbory + + + + No Folder Selected + Singular + Nevybrali ste žiadny priečinok + + + + Open %s Folder + Otvorte %s Priečinok + + + + You need to specify one %s file to import from. + A file type e.g. OpenSong + Určte jeden %s súbor z kade sa bude importovať. + + + + You need to specify one %s folder to import from. + A song format e.g. PowerSong + Určte jeden %s priečinok z kade sa bude importovať. + + + + OpenLP.core.lib + + + %1 and %2 + Locale list separator: 2 items + + + + + %1, and %2 + Locale list separator: end + + + + + %1, %2 + Locale list separator: middle + + + + + %1, %2 + Locale list separator: start + + + + + PresentationPlugin + + + <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. + + + + + Presentation + name singular + + + + + Presentations + name plural + Prezentácie + + + + Presentations + container title + Prezentácie + + + + Load a new presentation. + + + + + Delete the selected presentation. + + + + + Preview the selected presentation. + + + + + Send the selected presentation live. + + + + + Add the selected presentation to the service. + + + + + PresentationPlugin.MediaItem + + + Select Presentation(s) + + + + + Automatic + Automatický + + + + Present using: + + + + + File Exists + + + + + A presentation with that filename already exists. + + + + + This type of presentation is not supported. + + + + + Presentations (%s) + + + + + Missing Presentation + + + + + The presentation %s is incomplete, please reload. + Prezentácia %s nie je kompletná, opäť ju načítajte. + + + + The presentation %s no longer exists. + Prezentácia %s už neexistuje. + + + + PresentationPlugin.PresentationTab + + + Available Controllers + + + + + %s (unavailable) + %s (nedostupné) + + + + Allow presentation application to be overridden + + + + + RemotePlugin + + + <strong>Remote Plugin</strong><br />The remote plugin provides the ability to send messages to a running version of OpenLP on a different computer via a web browser or through the remote API. + + + + + Remote + name singular + + + + + Remotes + name plural + + + + + Remote + container title + + + + + RemotePlugin.Mobile + + + OpenLP 2.0 Remote + + + + + OpenLP 2.0 Stage View + + + + + Service Manager + + + + + Slide Controller + + + + + Alerts + Upozornenia + + + + Search + + + + + Refresh + + + + + Blank + + + + + Show + + + + + Prev + + + + + Next + + + + + Text + + + + + Show Alert + + + + + Go Live + + + + + No Results + + + + + Options + + + + + Add to Service + + + + + Home + + + + + Theme + + + + + Desktop + + + + + Add &amp; Go to Service + + + + + RemotePlugin.RemoteTab + + + Serve on IP address: + + + + + Port number: + + + + + Server Settings + + + + + Remote URL: + + + + + Stage view URL: + + + + + Display stage time in 12h format + + + + + Android App + + + + + Scan the QR code or click <a href="https://market.android.com/details?id=org.openlp.android">download</a> to install the Android app from the Market. + + + + + SongUsagePlugin + + + &Song Usage Tracking + + + + + &Delete Tracking Data + + + + + Delete song usage data up to a specified date. + + + + + &Extract Tracking Data + + + + + Generate a report on song usage. + + + + + Toggle Tracking + + + + + Toggle the tracking of song usage. + + + + + <strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services. + + + + + SongUsage + name singular + + + + + SongUsage + name plural + + + + + SongUsage + container title + + + + + Song Usage + + + + + Song usage tracking is active. + + + + + Song usage tracking is inactive. + + + + + display + + + + + printed + + + + + SongUsagePlugin.SongUsageDeleteForm + + + Delete Song Usage Data + + + + + Delete Selected Song Usage Events? + + + + + Are you sure you want to delete selected Song Usage data? + + + + + Deletion Successful + + + + + All requested data has been deleted successfully. + + + + + Select the date up to which the song usage data should be deleted. All data recorded before this date will be permanently deleted. + + + + + SongUsagePlugin.SongUsageDetailForm + + + Song Usage Extraction + + + + + Select Date Range + + + + + to + + + + + Report Location + + + + + Output File Location + + + + + usage_detail_%s_%s.txt + + + + + Report Creation + + + + + Report +%s +has been successfully created. + + + + + Output Path Not Selected + + + + + You have not set a valid output location for your song usage report. Please select an existing path on your computer. + + + + + 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... + + + + + Arabic (CP-1256) + + + + + Baltic (CP-1257) + + + + + Central European (CP-1250) + + + + + Cyrillic (CP-1251) + + + + + Greek (CP-1253) + + + + + Hebrew (CP-1255) + + + + + Japanese (CP-932) + + + + + Korean (CP-949) + + + + + Simplified Chinese (CP-936) + + + + + Thai (CP-874) + + + + + Traditional Chinese (CP-950) + + + + + Turkish (CP-1254) + + + + + Vietnam (CP-1258) + + + + + Western European (CP-1252) + + + + + Character Encoding + + + + + The codepage setting is responsible +for the correct character representation. +Usually you are fine with the preselected choice. + + + + + Please choose the character encoding. +The encoding is responsible for the correct character representation. + + + + + Song + name singular + + + + + Songs + name plural + Piesne + + + + Songs + container title + Piesne + + + + Exports songs using the export wizard. + + + + + 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. + + + + + SongsPlugin.AuthorsForm + + + Author Maintenance + + + + + Display name: + + + + + First name: + + + + + Last name: + + + + + You need to type in the first name of the author. + + + + + You need to type in the last name of the author. + + + + + You have not set a display name for the author, combine the first and last names? + + + + + SongsPlugin.CCLIFileImport + + + The file does not have a valid extension. + + + + + SongsPlugin.EasyWorshipSongImport + + + Administered by %s + + + + + +[above are Song Tags with notes imported from + EasyWorship] + + + + + SongsPlugin.EditBibleForm + + + Meta Data + + + + + Custom Book Names + + + + + SongsPlugin.EditSongForm + + + Song Editor + + + + + &Title: + &Názov: + + + + Alt&ernate title: + + + + + &Lyrics: + + + + + &Verse order: + + + + + Ed&it All + Upra&iť všetky + + + + Title && Lyrics + + + + + &Add to Song + + + + + &Remove + + + + + &Manage Authors, Topics, Song Books + + + + + A&dd to Song + + + + + R&emove + + + + + Book: + Kniha: + + + + Number: + + + + + Authors, Topics && Song Book + + + + + New &Theme + + + + + Copyright Information + + + + + Comments + + + + + Theme, Copyright Info && Comments + + + + + Add Author + + + + + This author does not exist, do you want to add them? + + + + + This author is already in the list. + + + + + You have not selected a valid author. Either select an author from the list, or type in a new author and click the "Add Author to Song" button to add the new author. + + + + + Add Topic + + + + + This topic does not exist, do you want to add it? + + + + + This topic is already in the list. + + + + + You have not selected a valid topic. Either select a topic from the list, or type in a new topic and click the "Add Topic to Song" button to add the new topic. + + + + + You need to type in a song title. + + + + + You need to type in at least one verse. + + + + + The verse order is invalid. There is no verse corresponding to %s. Valid entries are %s. + + + + + Add Book + + + + + This song book does not exist, do you want to add it? + + + + + You need to have an author for this song. + + + + + You need to type some text in to the verse. + + + + + Linked Audio + + + + + Add &File(s) + + + + + Add &Media + + + + + Remove &All + + + + + Open File(s) + + + + + <strong>Warning:</strong> Not all of the verses are in use. + + + + + The verse order is invalid. There are no verses corresponding to %s. Valid entries are %s. + + + + + SongsPlugin.EditVerseForm + + + Edit Verse + + + + + &Verse type: + + + + + &Insert + + + + + Split a slide into two by inserting a verse splitter. + + + + + SongsPlugin.ExportWizardForm + + + Song Export Wizard + + + + + Select Songs + + + + + Check the songs you want to export. + + + + + Uncheck All + + + + + Check All + + + + + Select Directory + + + + + Directory: + + + + + Exporting + + + + + Please wait while your songs are exported. + + + + + You need to add at least one Song to export. + + + + + No Save Location specified + + + + + Starting export... + + + + + You need to specify a directory. + + + + + Select Destination Folder + + + + + Select the directory where you want the songs to be saved. + + + + + This wizard will help to export your songs to the open and free <strong>OpenLyrics</strong> worship song format. + + + + + SongsPlugin.ImportWizardForm + + + Select Document/Presentation Files + + + + + Song Import Wizard + + + + + This wizard will help you to import songs from a variety of formats. Click the next button below to start the process by selecting a format to import from. + + + + + Generic Document/Presentation + + + + + Add Files... + + + + + Remove File(s) + + + + + Please wait while your songs are imported. + + + + + OpenLP 2.0 Databases + + + + + openlp.org v1.x Databases + + + + + Words Of Worship Song Files + + + + + Songs Of Fellowship Song Files + + + + + SongBeamer Files + + + + + SongShow Plus Song Files + + + + + Foilpresenter Song Files + + + + + Copy + + + + + Save to File + Uložiť do súboru + + + + The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. + + + + + The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. + + + + + OpenLyrics or OpenLP 2.0 Exported Song + + + + + OpenLyrics Files + + + + + CCLI SongSelect Files + + + + + EasySlides XML File + + + + + EasyWorship Song Database + + + + + DreamBeam Song Files + Súbory Piesní DreamBeam + + + + You need to specify a valid PowerSong 1.0 database folder. + Musíte upresniť správny priečinok PowerSong 1.0 databázy. + + + + ZionWorx (CSV) + ZionWorx (CSV) + + + + First convert your ZionWorx database to a CSV text file, as explained in the <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">User Manual</a>. + Najprv prekonvertuj tvoju ZionWorx databázu na CSV textový súbor, ako je to vysvetlené v <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">Užívateľskom Manuály</a>. + + + + SundayPlus Song Files + + + + + This importer has been disabled. + + + + + MediaShout Database + + + + + The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. + + + + + SongPro Text Files + + + + + SongPro (Export File) + + + + + In SongPro, export your songs using the File -> Export menu + + + + + SongsPlugin.MediaFilesForm + + + Select Media File(s) + + + + + Select one or more audio files from the list below, and click OK to import them into this song. + + + + + SongsPlugin.MediaItem + + + Titles + + + + + Lyrics + + + + + CCLI License: + + + + + Entire Song + + + + + Are you sure you want to delete the %n selected song(s)? + + + + + + + + + Maintain the lists of authors, topics and books. + + + + + copy + For song cloning + + + + + Search Titles... + + + + + Search Entire Song... + + + + + Search Lyrics... + + + + + Search Authors... + + + + + Search Song Books... + + + + + SongsPlugin.MediaShoutImport + + + Unable to open the MediaShout database. + + + + + SongsPlugin.OpenLP1SongImport + + + Not a valid openlp.org 1.x song database. + + + + + SongsPlugin.OpenLPSongImport + + + Not a valid OpenLP 2.0 song database. + + + + + SongsPlugin.OpenLyricsExport + + + Exporting "%s"... + + + + + SongsPlugin.PowerSongImport + + + No songs to import. + Žiadne piesne nie sú na vloženie. + + + + Verses not found. Missing "PART" header. + Verše neboli nájdené. Chýba "ČASŤ" hlavička. + + + + SongsPlugin.SongBookForm + + + Song Book Maintenance + + + + + &Name: + + + + + &Publisher: + + + + + You need to type in a name for the book. + + + + + SongsPlugin.SongExportForm + + + Your song export failed. + + + + + Finished export. To import these files use the <strong>OpenLyrics</strong> importer. + + + + + SongsPlugin.SongImport + + + copyright + + + + + The following songs could not be imported: + + + + + Cannot access OpenOffice or LibreOffice + + + + + Unable to open file + + + + + File not found + + + + + SongsPlugin.SongMaintenanceForm + + + Could not add your author. + + + + + This author already exists. + + + + + Could not add your topic. + + + + + This topic already exists. + + + + + Could not add your book. + + + + + This book already exists. + + + + + Could not save your changes. + + + + + Could not save your modified author, because the author already exists. + + + + + Could not save your modified topic, because it already exists. + + + + + Delete Author + + + + + Are you sure you want to delete the selected author? + + + + + This author cannot be deleted, they are currently assigned to at least one song. + + + + + Delete Topic + + + + + Are you sure you want to delete the selected topic? + + + + + This topic cannot be deleted, it is currently assigned to at least one song. + + + + + Delete Book + + + + + Are you sure you want to delete the selected book? + + + + + This book cannot be deleted, it is currently assigned to at least one song. + + + + + The author %s already exists. Would you like to make songs with author %s use the existing author %s? + + + + + The topic %s already exists. Would you like to make songs with topic %s use the existing topic %s? + + + + + The book %s already exists. Would you like to make songs with book %s use the existing book %s? + + + + + SongsPlugin.SongsTab + + + Songs Mode + + + + + Enable search as you type + + + + + Display verses on live tool bar + + + + + Update service from song edit + + + + + Import missing songs from service files + + + + + SongsPlugin.TopicsForm + + + Topic Maintenance + + + + + Topic name: + + + + + You need to type in a topic name. + + + + + SongsPlugin.VerseType + + + Verse + + + + + Chorus + + + + + Bridge + + + + + Pre-Chorus + + + + + Intro + + + + + Ending + + + + + Other + + + + + SongsPlugin.ZionWorxImport + + + Error reading CSV file. + Chyba pri čítaní CSV súboru. + + + + File not valid ZionWorx CSV format. + Súbor nie je validný ZionWorx CSV formátu. + + + diff --git a/resources/i18n/sq.ts b/resources/i18n/sq.ts index 5cda40c96..7c74c7cd9 100644 --- a/resources/i18n/sq.ts +++ b/resources/i18n/sq.ts @@ -1320,12 +1320,12 @@ demand and thus an internet connection is required. - + Information - + The second Bible does not contain all the verses that are in the main Bible. Only verses found in both Bibles will be shown. %d verses have not been included in the results. @@ -1341,14 +1341,24 @@ demand and thus an internet connection is required. - Are you sure you want to delete "%s"? + Are you sure you want to completely delete "%s" Bible from OpenLP? + +You will need to re-import this Bible to use it again. + + + + + BiblesPlugin.OpenSongImport + + + Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. BiblesPlugin.Opensong - + Importing %s %s... Importing <book name> <chapter>... @@ -1619,7 +1629,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I - + Split a slide into two by inserting a slide splitter. @@ -1649,11 +1659,19 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I - + Insert Slide + + CustomPlugin.EditVerseForm + + + Edit Slide + + + CustomPlugin.MediaItem @@ -1941,7 +1959,7 @@ Do you want to add the other images anyway? OpenLP - + Image Files @@ -2131,7 +2149,7 @@ Portions copyright © 2004-2012 %s - + Open File @@ -2258,7 +2276,7 @@ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for - + Syntax error. @@ -2318,29 +2336,29 @@ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for - + Select Data Directory Location - + Confirm Data Directory Change - + Reset Data Directory - + Are you sure you want to change the location of the OpenLP data directory to the default location? This location will be used after OpenLP is closed. - + Overwrite Existing Data @@ -2700,24 +2718,9 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can Description - - - Tag - - - - - Start tag - - - - - End tag - - - Tag Id + Tag @@ -2734,7 +2737,7 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can OpenLP.FormattingTagForm - + Update Error @@ -2759,7 +2762,7 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can - + Tag %s already defined. @@ -3784,82 +3787,82 @@ Suffix not supported OpenLP.ServiceManager - + Move to &top - + Move item to the top of the service. - + Move &up - + Move item up one position in the service. - + Move &down - + Move item down one position in the service. - + Move to &bottom - + Move item to the end of the service. - + &Delete From Service - + Delete the selected item from the service. - + &Add New Item - + &Add to Selected Item - + &Edit Item - + &Reorder Item - + &Notes - + &Change Item Theme @@ -3895,72 +3898,72 @@ The content encoding is not UTF-8. - + &Expand all - + Expand all the service items. - + &Collapse all - + Collapse all the service items. - + Open File - + Moves the selection down the window. - + Move up - + Moves the selection up the window. - + Go Live - + Send the selected item to Live. - + &Start Time - + Show &Preview - + Modified Service - + The current service has been modified. Would you like to save this service? @@ -3980,7 +3983,7 @@ The content encoding is not UTF-8. - + Untitled Service @@ -4005,17 +4008,17 @@ The content encoding is not UTF-8. - + Load an existing service. - + Save this service. - + Select a theme for the service. @@ -4025,7 +4028,7 @@ The content encoding is not UTF-8. - + Service File Missing @@ -6609,7 +6612,7 @@ The encoding is responsible for the correct character representation. SongsPlugin.ImportWizardForm - + Select Document/Presentation Files @@ -6624,7 +6627,7 @@ The encoding is responsible for the correct character representation. - + Generic Document/Presentation @@ -6644,37 +6647,37 @@ The encoding is responsible for the correct character representation. - + OpenLP 2.0 Databases - + openlp.org v1.x Databases - + Words Of Worship Song Files - + Songs Of Fellowship Song Files - + SongBeamer Files - + SongShow Plus Song Files - + Foilpresenter Song Files @@ -6689,65 +6692,95 @@ The encoding is responsible for the correct character representation. - + The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. - + The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. - + OpenLyrics or OpenLP 2.0 Exported Song - + OpenLyrics Files - + CCLI SongSelect Files - + EasySlides XML File - + EasyWorship Song Database - + DreamBeam Song Files - + You need to specify a valid PowerSong 1.0 database folder. - + ZionWorx (CSV) - + First convert your ZionWorx database to a CSV text file, as explained in the <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">User Manual</a>. - + SundayPlus Song Files + + + This importer has been disabled. + + + + + MediaShout Database + + + + + The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. + + + + + SongPro Text Files + + + + + SongPro (Export File) + + + + + In SongPro, export your songs using the File -> Export menu + + SongsPlugin.MediaFilesForm @@ -6829,6 +6862,14 @@ The encoding is responsible for the correct character representation. + + SongsPlugin.MediaShoutImport + + + Unable to open the MediaShout database. + + + SongsPlugin.OpenLP1SongImport diff --git a/resources/i18n/sv.ts b/resources/i18n/sv.ts index f2c6b4958..a85aacf4f 100644 --- a/resources/i18n/sv.ts +++ b/resources/i18n/sv.ts @@ -760,7 +760,7 @@ Bok Kapitel%(range)sKapitel Bok Kapitel%(verse)sVers%(range)sVers Bok Kapitel%(verse)sVers%(range)sVers%(list)sVers%(range)sVers Bok Kapitel%(verse)sVers%(range)sVers%(list)sKapitel%(verse)sVers%(range)sVers -Bok Kapitel%(verse)sVers%(range)sKapitel%(verse)sVerse +Bok Kapitel%(verse)sVers%(range)sKapitel%(verse)sVers @@ -1344,12 +1344,12 @@ vid behov, och därför behövs en Internetanslutning. Bibeln är inte helt laddad. - + Information Information - + The second Bible does not contain all the verses that are in the main Bible. Only verses found in both Bibles will be shown. %d verses have not been included in the results. Den alternativa bibelöversättningen innehåller inte alla verser som finns i huvudöversättningen. Endast verser som finns i båda översättningar kommer att visas. %d verser har utelämnats. @@ -1365,14 +1365,24 @@ vid behov, och därför behövs en Internetanslutning. - Are you sure you want to delete "%s"? - Är du säker på att du vill ta bort "%s"? + Are you sure you want to completely delete "%s" Bible from OpenLP? + +You will need to re-import this Bible to use it again. + + + + + BiblesPlugin.OpenSongImport + + + Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. + BiblesPlugin.Opensong - + Importing %s %s... Importing <book name> <chapter>... Importerar %s %s... @@ -1649,7 +1659,7 @@ Observera att verser från webb-biblar kommer att laddas ner vid behov, och där Redigera alla diabilder på en gång. - + Split a slide into two by inserting a slide splitter. Dela diabilden i två genom att lägga till en diabild delare. @@ -1679,11 +1689,19 @@ Observera att verser från webb-biblar kommer att laddas ner vid behov, och där Red&igera alla - + Insert Slide Infoga sida + + CustomPlugin.EditVerseForm + + + Edit Slide + + + CustomPlugin.MediaItem @@ -1972,7 +1990,7 @@ Vill du lägga till dom andra bilderna ändå? OpenLP - + Image Files Bildfiler @@ -2231,7 +2249,7 @@ Del-copyright © 2004-2012 %s Bildfil: - + Open File Öppna fil @@ -2358,7 +2376,7 @@ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for Kringgå X11:s fönsterhanterare - + Syntax error. Syntaxfel. @@ -2418,22 +2436,22 @@ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for Datakatalogfel - + Select Data Directory Location Välj plats för datakatalog - + Confirm Data Directory Change Bekräfta ändring av datakatalog - + Reset Data Directory Återställ datakatalog - + Are you sure you want to change the location of the OpenLP data directory to the default location? This location will be used after OpenLP is closed. @@ -2442,7 +2460,7 @@ This location will be used after OpenLP is closed. Den nya platsen kommer att användas efter att OpenLP har avslutats. - + Overwrite Existing Data Skriv över befintlig data @@ -2835,25 +2853,10 @@ För att avbryta Kom igång-guiden helt (och inte starta OpenLP), klicka på kna Beskrivning - + Tag Tagg - - - Start tag - Start-tagg - - - - End tag - Slut-tagg - - - - Tag Id - Tagg-id - Start HTML @@ -2868,7 +2871,7 @@ För att avbryta Kom igång-guiden helt (och inte starta OpenLP), klicka på kna OpenLP.FormattingTagForm - + Update Error Fel vid uppdatering @@ -2893,7 +2896,7 @@ För att avbryta Kom igång-guiden helt (och inte starta OpenLP), klicka på kna </och här> - + Tag %s already defined. Taggen %s finns redan. @@ -3931,82 +3934,82 @@ Filändelsen stöds ej OpenLP.ServiceManager - + Move to &top Lägg &först - + Move item to the top of the service. Lägg posten först i körschemat. - + Move &up Flytta &upp - + Move item up one position in the service. Flytta upp posten ett steg i körschemat. - + Move &down Flytta &ner - + Move item down one position in the service. Flytta ner posten ett steg i körschemat. - + Move to &bottom Lägg &sist - + Move item to the end of the service. Lägg posten sist i körschemat. - + &Delete From Service &Ta bort från körschemat - + Delete the selected item from the service. Ta bort den valda posten från körschemat. - + &Add New Item &Lägg till ny post - + &Add to Selected Item Lägg till i &vald post - + &Edit Item &Redigera post - + &Reorder Item Arrangera &om post - + &Notes &Anteckningar - + &Change Item Theme &Byt postens tema @@ -4043,72 +4046,72 @@ Innehållets teckenkodning är inte UTF-8. Posten kan inte visas eftersom modulen som krävs för att visa den saknas eller är inaktiv - + &Expand all &Expandera alla - + Expand all the service items. Expandera alla poster i körschemat. - + &Collapse all &Fäll ihop alla - + Collapse all the service items. Fäll ihop alla poster i körschemat. - + Open File Öppna fil - + Moves the selection down the window. Flyttar urvalet neråt i fönstret. - + Move up Flytta upp - + Moves the selection up the window. Flyttar urvalet uppåt i fönstret. - + Go Live Lägg ut live-bilden - + Send the selected item to Live. Visa den valda posten live. - + &Start Time &Starttid - + Show &Preview &Förhandsgranska - + Modified Service Körschemat ändrat - + The current service has been modified. Would you like to save this service? Det nuvarande körschemat har ändrats. Vill du spara körschemat? @@ -4128,7 +4131,7 @@ Innehållets teckenkodning är inte UTF-8. Speltid: - + Untitled Service Nytt körschema @@ -4153,17 +4156,17 @@ Innehållets teckenkodning är inte UTF-8. Korrupt fil - + Load an existing service. Ladda ett befintligt körschema. - + Save this service. Spara körschemat. - + Select a theme for the service. Välj ett tema för körschemat. @@ -4173,7 +4176,7 @@ Innehållets teckenkodning är inte UTF-8. Filen är antingen korrupt eller inte en OpenLP 2.0 körschemafil. - + Service File Missing Körschemafil saknas @@ -5043,12 +5046,12 @@ Innehållets teckenkodning är inte UTF-8. Preview and Save - + Förhandsgranska och spara Preview the theme and save it. - + Förhanskgranska temat och spara det. @@ -6764,7 +6767,7 @@ Teckenkodningen ansvarar för rätt teckenrepresentation. SongsPlugin.ImportWizardForm - + Select Document/Presentation Files Välj dokument/presentation @@ -6779,7 +6782,7 @@ Teckenkodningen ansvarar för rätt teckenrepresentation. Den här guiden hjälper dig att importera sånger från en mängd olika format. Klicka på Nästa för att börja processen med att välja ett format att importera från. - + Generic Document/Presentation Vanligt dokument/presentation @@ -6799,37 +6802,37 @@ Teckenkodningen ansvarar för rätt teckenrepresentation. Vänta medan sångerna importeras. - + OpenLP 2.0 Databases OpenLP 2.0-databas - + openlp.org v1.x Databases openlp.org v1.x-databas - + Words Of Worship Song Files Words of Worship-sångfiler - + Songs Of Fellowship Song Files Songs of Fellowship-sångfiler - + SongBeamer Files SongBeamer-filer - + SongShow Plus Song Files SongShow Plus-sångfiler - + Foilpresenter Song Files Foilpresenter-sångfiler @@ -6844,63 +6847,93 @@ Teckenkodningen ansvarar för rätt teckenrepresentation. Spara till fil - + The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. Import av Songs of Fellowship har inaktiverats eftersom OpenLP inte kan hitta OpenOffice eller LibreOffice. - + The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. Import av vanliga dokument/presentationer har inaktiverats eftersom OpenLP inte hittar OpenOffice eller LibreOffice. - + OpenLyrics or OpenLP 2.0 Exported Song OpenLyrics eller sång exporterad från OpenLP 2.0 - + OpenLyrics Files OpenLyrics-filer - + CCLI SongSelect Files CCLI SongSelect-filer - + EasySlides XML File EasySlides XML-fil - + EasyWorship Song Database EasyWorship sångdatabas - + DreamBeam Song Files DreamBeam sångfiler - + You need to specify a valid PowerSong 1.0 database folder. Du måste ange en giltig PowerSong 1.0-databaskatalog. - + ZionWorx (CSV) ZionWorx (CSV) - + First convert your ZionWorx database to a CSV text file, as explained in the <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">User Manual</a>. Konvertera först din ZionWorx-databas till en CSV-textfil, som beskrivs i <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">Användarmanualen</a>. - + SundayPlus Song Files + SundayPlus-sångfiler + + + + This importer has been disabled. + + + + + MediaShout Database + + + + + The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. + + + + + SongPro Text Files + + + + + SongPro (Export File) + + + + + In SongPro, export your songs using the File -> Export menu @@ -6984,6 +7017,14 @@ Teckenkodningen ansvarar för rätt teckenrepresentation. Sök sångbok... + + SongsPlugin.MediaShoutImport + + + Unable to open the MediaShout database. + + + SongsPlugin.OpenLP1SongImport diff --git a/resources/i18n/zh_CN.ts b/resources/i18n/zh_CN.ts index 55842439d..8cdf41c6e 100644 --- a/resources/i18n/zh_CN.ts +++ b/resources/i18n/zh_CN.ts @@ -1320,12 +1320,12 @@ demand and thus an internet connection is required. - + Information - + The second Bible does not contain all the verses that are in the main Bible. Only verses found in both Bibles will be shown. %d verses have not been included in the results. @@ -1341,14 +1341,24 @@ demand and thus an internet connection is required. - Are you sure you want to delete "%s"? + Are you sure you want to completely delete "%s" Bible from OpenLP? + +You will need to re-import this Bible to use it again. + + + + + BiblesPlugin.OpenSongImport + + + Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. BiblesPlugin.Opensong - + Importing %s %s... Importing <book name> <chapter>... @@ -1619,7 +1629,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I - + Split a slide into two by inserting a slide splitter. @@ -1649,11 +1659,19 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I - + Insert Slide + + CustomPlugin.EditVerseForm + + + Edit Slide + + + CustomPlugin.MediaItem @@ -1940,7 +1958,7 @@ Do you want to add the other images anyway? OpenLP - + Image Files @@ -2130,7 +2148,7 @@ Portions copyright © 2004-2012 %s - + Open File @@ -2257,7 +2275,7 @@ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for - + Syntax error. @@ -2317,29 +2335,29 @@ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for - + Select Data Directory Location - + Confirm Data Directory Change - + Reset Data Directory - + Are you sure you want to change the location of the OpenLP data directory to the default location? This location will be used after OpenLP is closed. - + Overwrite Existing Data @@ -2699,24 +2717,9 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can Description - - - Tag - - - - - Start tag - - - - - End tag - - - Tag Id + Tag @@ -2733,7 +2736,7 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can OpenLP.FormattingTagForm - + Update Error @@ -2758,7 +2761,7 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can - + Tag %s already defined. @@ -3783,82 +3786,82 @@ Suffix not supported OpenLP.ServiceManager - + Move to &top - + Move item to the top of the service. - + Move &up - + Move item up one position in the service. - + Move &down - + Move item down one position in the service. - + Move to &bottom - + Move item to the end of the service. - + &Delete From Service - + Delete the selected item from the service. - + &Add New Item - + &Add to Selected Item - + &Edit Item - + &Reorder Item - + &Notes - + &Change Item Theme @@ -3894,72 +3897,72 @@ The content encoding is not UTF-8. - + &Expand all - + Expand all the service items. - + &Collapse all - + Collapse all the service items. - + Open File - + Moves the selection down the window. - + Move up - + Moves the selection up the window. - + Go Live - + Send the selected item to Live. - + &Start Time - + Show &Preview - + Modified Service - + The current service has been modified. Would you like to save this service? @@ -3979,7 +3982,7 @@ The content encoding is not UTF-8. - + Untitled Service @@ -4004,17 +4007,17 @@ The content encoding is not UTF-8. - + Load an existing service. - + Save this service. - + Select a theme for the service. @@ -4024,7 +4027,7 @@ The content encoding is not UTF-8. - + Service File Missing @@ -6608,7 +6611,7 @@ The encoding is responsible for the correct character representation. SongsPlugin.ImportWizardForm - + Select Document/Presentation Files @@ -6623,7 +6626,7 @@ The encoding is responsible for the correct character representation. - + Generic Document/Presentation @@ -6643,37 +6646,37 @@ The encoding is responsible for the correct character representation. - + OpenLP 2.0 Databases - + openlp.org v1.x Databases - + Words Of Worship Song Files - + Songs Of Fellowship Song Files - + SongBeamer Files - + SongShow Plus Song Files - + Foilpresenter Song Files @@ -6688,65 +6691,95 @@ The encoding is responsible for the correct character representation. - + The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. - + The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. - + OpenLyrics or OpenLP 2.0 Exported Song - + OpenLyrics Files - + CCLI SongSelect Files - + EasySlides XML File - + EasyWorship Song Database - + DreamBeam Song Files - + You need to specify a valid PowerSong 1.0 database folder. - + ZionWorx (CSV) - + First convert your ZionWorx database to a CSV text file, as explained in the <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">User Manual</a>. - + SundayPlus Song Files + + + This importer has been disabled. + + + + + MediaShout Database + + + + + The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. + + + + + SongPro Text Files + + + + + SongPro (Export File) + + + + + In SongPro, export your songs using the File -> Export menu + + SongsPlugin.MediaFilesForm @@ -6827,6 +6860,14 @@ The encoding is responsible for the correct character representation. + + SongsPlugin.MediaShoutImport + + + Unable to open the MediaShout database. + + + SongsPlugin.OpenLP1SongImport From df373c3917bf2991fc3c661b1aa1d3a06995a0a9 Mon Sep 17 00:00:00 2001 From: Tim Bentley Date: Sat, 28 Jul 2012 08:34:01 +0100 Subject: [PATCH 17/76] Translations - updates --- resources/i18n/cs.ts | 28 ++-- resources/i18n/en.ts | 22 +-- resources/i18n/en_GB.ts | 22 +-- resources/i18n/es.ts | 8 +- resources/i18n/et.ts | 22 +-- resources/i18n/fi.ts | 346 +++++++++++++++++++++------------------- resources/i18n/ja.ts | 70 ++++---- resources/i18n/ko.ts | 126 +++++++-------- resources/i18n/pt_BR.ts | 27 ++-- resources/i18n/sv.ts | 22 +-- 10 files changed, 361 insertions(+), 332 deletions(-) diff --git a/resources/i18n/cs.ts b/resources/i18n/cs.ts index 5aafdd306..8a23c877b 100644 --- a/resources/i18n/cs.ts +++ b/resources/i18n/cs.ts @@ -1367,7 +1367,9 @@ demand and thus an internet connection is required. Are you sure you want to completely delete "%s" Bible from OpenLP? You will need to re-import this Bible to use it again. - + Jste si jisti, že chcete úplně vymazat Bibli "%s" z OpenLP? + +Pro použití bude potřeba naimportovat Bibli znovu. @@ -1375,7 +1377,7 @@ You will need to re-import this Bible to use it again. Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. - + Zadán nesprávný typ souboru s Biblí. OpenSong Bible mohou být komprimovány. Před importem je třeba je rozbalit. @@ -1697,7 +1699,7 @@ Upozornění: Verše z www Bible budou stáhnuty na vyžádání a proto je vyž Edit Slide - + Upravit snímek @@ -5041,12 +5043,12 @@ Obsah souboru není v kódování UTF-8. Preview and Save - + Náhled a uložit Preview the theme and save it. - + Náhled motivu a motiv uložit. @@ -6899,37 +6901,37 @@ Kódování zodpovídá za správnou reprezentaci znaků. SundayPlus Song Files - + Soubory s písněmi SundayPlus This importer has been disabled. - + Tento importér byl zakázán. MediaShout Database - + Databáze MediaShout The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. - + MediaShout importér je podporován jen ve Windows. Byl zakázán kvůli chybějícímu Python modulu. Pokud si přejete používat tento importér, bude potřeba nainstalovat modul "pyodbc". SongPro Text Files - + Textové soubory SongPro SongPro (Export File) - + SongPro (exportovaný soubor) In SongPro, export your songs using the File -> Export menu - + V aplikaci SongPro se písně exportují přes menu File -> Export @@ -7018,7 +7020,7 @@ Kódování zodpovídá za správnou reprezentaci znaků. Unable to open the MediaShout database. - + Není možno otevřít databázi MediaShout. diff --git a/resources/i18n/en.ts b/resources/i18n/en.ts index 9e17c7ed2..82b5cd63e 100644 --- a/resources/i18n/en.ts +++ b/resources/i18n/en.ts @@ -1368,7 +1368,9 @@ demand and thus an internet connection is required. Are you sure you want to completely delete "%s" Bible from OpenLP? You will need to re-import this Bible to use it again. - + Are you sure you want to completely delete "%s" Bible from OpenLP? + +You will need to re-import this Bible to use it again. @@ -1376,7 +1378,7 @@ You will need to re-import this Bible to use it again. Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. - + Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. @@ -1699,7 +1701,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I Edit Slide - + Edit Slide @@ -6909,32 +6911,32 @@ The encoding is responsible for the correct character representation. This importer has been disabled. - + This importer has been disabled. MediaShout Database - + MediaShout Database The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. - + The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. SongPro Text Files - + SongPro Text Files SongPro (Export File) - + SongPro (Export File) In SongPro, export your songs using the File -> Export menu - + In SongPro, export your songs using the File -> Export menu @@ -7022,7 +7024,7 @@ The encoding is responsible for the correct character representation. Unable to open the MediaShout database. - + Unable to open the MediaShout database. diff --git a/resources/i18n/en_GB.ts b/resources/i18n/en_GB.ts index 41ee805b8..1409b2133 100644 --- a/resources/i18n/en_GB.ts +++ b/resources/i18n/en_GB.ts @@ -1368,7 +1368,9 @@ demand and thus an internet connection is required. Are you sure you want to completely delete "%s" Bible from OpenLP? You will need to re-import this Bible to use it again. - + Are you sure you want to completely delete "%s" Bible from OpenLP? + +You will need to re-import this Bible to use it again. @@ -1376,7 +1378,7 @@ You will need to re-import this Bible to use it again. Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. - + Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. @@ -1699,7 +1701,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I Edit Slide - + Edit Slide @@ -6908,32 +6910,32 @@ The encoding is responsible for the correct character representation. This importer has been disabled. - + This importer has been disabled. MediaShout Database - + MediaShout Database The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. - + The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. SongPro Text Files - + SongPro Text Files SongPro (Export File) - + SongPro (Export File) In SongPro, export your songs using the File -> Export menu - + In SongPro, export your songs using the File -> Export menu @@ -7021,7 +7023,7 @@ The encoding is responsible for the correct character representation. Unable to open the MediaShout database. - + Unable to open the MediaShout database. diff --git a/resources/i18n/es.ts b/resources/i18n/es.ts index 6493232d5..662bd1c0c 100644 --- a/resources/i18n/es.ts +++ b/resources/i18n/es.ts @@ -1368,7 +1368,9 @@ sea necesario, por lo que debe contar con una conexión a internet.Are you sure you want to completely delete "%s" Bible from OpenLP? You will need to re-import this Bible to use it again. - + Desea eliminar completamente la Biblia "%s" de OpenLP? + +Deberá reimportar esta Biblia para utilizarla de nuevo. @@ -1699,7 +1701,7 @@ Note que los versículos se descargarán según sea necesario, por lo que debe c Edit Slide - + Editar Diapositiva @@ -6910,7 +6912,7 @@ La codificación se encarga de la correcta representación de caracteres. This importer has been disabled. - + Este importador se ha deshabilitado. diff --git a/resources/i18n/et.ts b/resources/i18n/et.ts index 5265835db..fac6ed984 100644 --- a/resources/i18n/et.ts +++ b/resources/i18n/et.ts @@ -1367,7 +1367,9 @@ vastavalt vajadusele ning seetõttu on vaja internetiühendust. Are you sure you want to completely delete "%s" Bible from OpenLP? You will need to re-import this Bible to use it again. - + Kas sa kindlasti tahad kustutada "%s" piibli OpenLP-st? + +Et jälle seda piiblit kasutada, pead selle uuesti importima. @@ -1375,7 +1377,7 @@ You will need to re-import this Bible to use it again. Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. - + See piibli fail ei ole õiges vormingus. OpenSong vormingus piiblid võivad olla pakitud. Enne importimist pead need lahti pakkima. @@ -1698,7 +1700,7 @@ Pane tähele, et veebipiiblite salmid laaditakse internetist vajadusel, seega on Edit Slide - + Slaidi redigeerimine @@ -6908,32 +6910,32 @@ Kodeering on vajalik märkide õige esitamise jaoks. This importer has been disabled. - + Importija on keelatud. MediaShout Database - + MediaShout andmebaas The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. - + MediaShout importija töötab ainult Windowsi platvormil. See on keelatud puuduva Pythoni mooduli pärast. Selle importija kasutamiseks pead paigaldama "pyodbc" mooduli. SongPro Text Files - + SongPro tekstifailid SongPro (Export File) - + SongPro (eksportfail) In SongPro, export your songs using the File -> Export menu - + Ekspordi oma laulud SongPro menüüst kasutades File -> Export. @@ -7021,7 +7023,7 @@ Kodeering on vajalik märkide õige esitamise jaoks. Unable to open the MediaShout database. - + MediaShout andmebaasi ei suudetud avada. diff --git a/resources/i18n/fi.ts b/resources/i18n/fi.ts index 19505a8e2..5b8093121 100644 --- a/resources/i18n/fi.ts +++ b/resources/i18n/fi.ts @@ -61,49 +61,51 @@ Displ&ay - + &Näytä Display && Cl&ose - + Näytä && &Sulje New Alert - + Uusi hälytys You haven't specified any text for your alert. Please type in some text before clicking New. - + Et ole määritellyt viestitekstiä hälytykselle. Ole hyvä ja anna jokin teksti ennen kuin painat Uusi. &Parameter: - + &Parametri: No Parameter Found - + Parametritekstiä ei ole. You have not entered a parameter to be replaced. Do you want to continue anyway? - + Et ole antanut lainkaan tekstiin sijoitettavaa parametriä. +Tahdotko jatkaa siitä huolimatta? No Placeholder Found - + Ei korvattavaa parametria tekstissä The alert text does not contain '<>'. Do you want to continue anyway? - + Hälytystekstissä ei ole lainkaan '<>' parametria. +Tahdotko jatkaa siitä huolimatta? @@ -111,7 +113,7 @@ Do you want to continue anyway? Alert message created and displayed. - + Hälytysviesti on luota ja näytetty. @@ -119,32 +121,32 @@ Do you want to continue anyway? Font - + Kirjasin Font name: - + Kirjasimen nimi: Font color: - + Kirjasimen väri: Background color: - + Taustaväri: Font size: - + Kirjasimen koko: Alert timeout: - + Hälytyksen kesto: @@ -152,85 +154,85 @@ Do you want to continue anyway? &Bible - + &Raamattu Bible name singular - + Raamattu Bibles name plural - + Raamatut Bibles container title - + Raamatut No Book Found - + Kirjaa ei löydy No matching book could be found in this Bible. Check that you have spelled the name of the book correctly. - + Annettua kirjaa ei ole tässä Raamatussa. Ole hyvä ja tarkista kirjan nimen oikeinkirjoitus. Import a Bible. - + Tuo Raamattu. Add a new Bible. - + Lisää uusi Raamattu. Edit the selected Bible. - + Muokkaa valittua Raamattua. Delete the selected Bible. - + Poista valittu Raamattu. Preview the selected Bible. - + Esikatsele valittua Raamatun tekstiä. Send the selected Bible live. - + Lähetä valittu Raamatun teksti esitykseen. Add the selected Bible to the service. - + Lisää valittu Raamatun teksti tilaisuuden ajolistalle. <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display Bible verses from different sources during the service. - + <strong>Raamattu-liitännäinen</strong><br />Raamattu-liitännäisellä voi näyttää Raamatun jakeita suoraan Raamatusta tilaisuuden aikana. &Upgrade older Bibles - + &Päivitä vanhempia Raamattuja Upgrade the Bible databases to the latest format. - + Päivitä Raamattutietokannat uusimpaan tiedostomuotoon. @@ -664,22 +666,22 @@ Do you want to continue anyway? You need to specify a version name for your Bible. - + Anna nimi käännökselle, joka tuodaan ohjelmaan. You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. - + Sinun pitää määritellä tekijäinoikeusteksti Raamatulle. Myös Public Domain -lisenssi pitää mainita. Bible Exists - + Raamattu on jo olemassa This Bible already exists. Please import a different Bible or first delete the existing one. - + Tämä Raamattu on jo olemassa. Ole hyvä ja tuo eri käännös tai poista ensin nykyinen samalla nimellä oleva. @@ -709,33 +711,34 @@ be followed by one or more non-numeric characters. Scripture Reference Error - + Virhe jaeviitteessä Web Bible cannot be used - + Nettiraamattua ei voi käyttää Text Search is not available with Web Bibles. - + Tekstihaku ei ole käytettävissä nettiraamatuista. You did not enter a search keyword. You can separate different keywords by a space to search for all of your keywords and you can separate them by a comma to search for one of them. - + Et antanut lainkaan hakusanaa. +Voit antaa useita eri hakusanoja välilyönnillä erotettuna, jos etsit niitä yhdessä. Jos sanat erotetaan pilkulla, etsitään mitä tahansa niistä. There are no Bibles currently installed. Please use the Import Wizard to install one or more Bibles. - + Raamattuja ei ole asennettuna. Ole hyvä ja asenna tai tuo ohjelmaan yksi tai useampia Raamattuja. No Bibles Available - + Raamattuja ei ole saatavilla @@ -756,48 +759,49 @@ Book Chapter%(verse)sVerse%(range)sChapter%(verse)sVerse Verse Display - + Jakeiden näyttäminen Only show new chapter numbers - + Älä toista lukunumeroita Bible theme: - + Raamatun teema No Brackets - + Ei sulkuja ( And ) - + ( ja ) { And } - + { ja } [ And ] - + [ ja ] Note: Changes do not affect verses already in the service. - + Huomio: +Muutokset eivät vaikuta jakeisiin, jotka on jo ajolistalla. Display second Bible verses - + Näytä vaihtoehtoinen Raamattu @@ -884,37 +888,37 @@ search results and on display: Select Book Name - + Valitse kirjan nimi Current name: - + Nykyinen nimi: Corresponding name: - + Vastaava nimi: Show Books From - + Näytä kirjalyhenteet Old Testament - + Vanha testamentti New Testament - + Uusi testamentti Apocrypha - + Deuterokanoniset kirjat @@ -927,7 +931,7 @@ search results and on display: You need to select a book. - + SInun pitää valita kirja. @@ -935,18 +939,18 @@ search results and on display: Importing books... %s - + Tuodaan kirjoja... %s Importing verses from %s... Importing verses from <book name>... - + Tuodaan jakeita %s:sta... Importing verses... done. - + Tuodaan jakeita... valmis. @@ -959,22 +963,22 @@ search results and on display: License Details - + Käyttöoikeus Version name: - + Käännöksen nimi: Copyright: - + Tekijäinoikeus: Permissions: - + Oikeudet: @@ -1023,38 +1027,38 @@ It is not possible to customize the Book Names. Registering Bible and loading books... - + Rekisteröidään Raamattu ja ladataan kirjoja... Registering Language... - + Rekisteröidään kieli... Importing %s... Importing <book name>... - + Tuodaan %s... Download Error - + Virhe tiedoston lataamisessa There was a problem downloading your verse selection. Please check your Internet connection, and if this error continues to occur please consider reporting a bug. - + Ohjelma havaitsi ongelmia valittujen jakeiden lataamisessa. Ole hyvä ja tarkasta internet-yhteyden toimivuus. Jos ongelma ei poistu, harkitse raportointia virheestä kehittäjille. Parse Error - + Jäsennysvirhe There was a problem extracting your verse selection. If this error continues to occur please consider reporting a bug. - + Ohjelma havaitsi ongelmia valittujen jakeiden purkamisessa. Jos ongelma ei poistu, harkitse raportointia virheestä kehittäjille. @@ -1062,168 +1066,169 @@ It is not possible to customize the Book Names. Bible Import Wizard - + Raamatun ohjattu tuonti This wizard will help you to import Bibles from a variety of formats. Click the next button below to start the process by selecting a format to import from. - + Tämä työkalu helpottaa Raamattujen tuomista ohjelmaan eri formaateissa. Paina 'Seuraava' - painiketta aloittaaksesi tuonnin valitsemalla formaatin, josta teksti tuodaan. Web Download - + Lataaminen netistä Location: - + Sijainti: Crosswalk - + Crosswalk BibleGateway - + BibleGateway Bible: - + Raamattu: Download Options - + Laamisen asetukset Server: - + Palvelin: Username: - + Käyttäjätunnus: Password: - + Salasana: Proxy Server (Optional) - + Välityspalvelin (valinnainen) License Details - + Käyttöoikeus Set up the Bible's license details. - + Aseta Raamatun tekstin käyttöoikeuden tiedot. Version name: - + Käännöksen nimi: Copyright: - + Tekijäinoikeus: Please wait while your Bible is imported. - + Ole hyvä ja odota kunnes Raamattu on tuotu järjestelmään. You need to specify a file with books of the Bible to use in the import. - + Valitse tiedosto tuotavaksi, jossa on Raamatun tekstissä käytetyt kirjojen nimet. You need to specify a file of Bible verses to import. - + Valitse tiedosto tuotavaksi, jossa on Raamatun teksti jakeittain. You need to specify a version name for your Bible. - + Anna nimi käännökselle, joka tuodaan ohjelmaan. You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. - + Sinun pitää määritellä tekijäinoikeusteksti Raamatulle. Myös Public Domain -lisenssi pitää mainita. Bible Exists - + Raamattu on jo olemassa This Bible already exists. Please import a different Bible or first delete the existing one. - + Tämä Raamattu on jo olemassa. Ole hyvä ja tuo eri käännös tai poista ensin nykyinen samalla nimellä oleva. Your Bible import failed. - + Raamatun tuonti epäonnistui. CSV File - + CSV-tiedosto Bibleserver - + Raamattupalvelin Permissions: - + Oikeudet: Bible file: - + Raamattutiedosto: Books file: - + Kirjatiedosto: Verses file: - + Jaetiedosto: openlp.org 1.x Bible Files - + openlp.org 1.x Raamattu tiedostot Registering Bible... - + Rekisteröidään Raamattua... Registered Bible. Please note, that verses will be downloaded on demand and thus an internet connection is required. - + Raamattu rekisteröity. Huomaathan, että jakeet ladataan palvelimelta +tarpeen mukaan, joten internet yhteys tämän raamatun käytössä vaaditaan. @@ -1231,17 +1236,17 @@ demand and thus an internet connection is required. Select Language - + Valitse kieli OpenLP is unable to determine the language of this translation of the Bible. Please select the language from the list below. - + OpenLP ei pysty määrittelemään tässä Raamatun käännöksessä käytettyä kieltä. Ole hyvä ja valitse kieli alla olevasta luettelosta. Language: - + Kieli: @@ -1249,7 +1254,7 @@ demand and thus an internet connection is required. You need to choose a language. - + Sinun tulee valita kieli. @@ -1257,77 +1262,77 @@ demand and thus an internet connection is required. Quick - + Nopea Find: - + Etsi: Book: - + Kirja: Chapter: - + Luku: Verse: - + Jae: From: - + Alkaen: To: - + Asti: Text Search - + Tekstihaku Second: - + Toinen: Scripture Reference - + Jaeviite Toggle to keep or clear the previous results. - + Vaihda valinta pitääksesi tai pyyhkiäksesi edelliset tulokset. You cannot combine single and dual Bible verse search results. Do you want to delete your search results and start a new search? - + Et voi yhdistää yhden ja kahden käännöksen jaehakujen tuloksia. Haluatko poistaa hakutulokset ja aloittaa uuden haun? Bible not fully loaded. - + Raamattu ei latautunut kokonaan. Information - + Tiedot The second Bible does not contain all the verses that are in the main Bible. Only verses found in both Bibles will be shown. %d verses have not been included in the results. - + Toissijainen Raamattu ei sisällä kaikki ensisijaisen käännöksen jakeita. Vain ne jakeet, jotka ovat kummassakin käännöksessä, voidaan näyttää. %d jaetta jätettiin pois hakutuloksista. @@ -1361,7 +1366,7 @@ You will need to re-import this Bible to use it again. Importing %s %s... Importing <book name> <chapter>... - + Tuodaan %s %s... @@ -1369,13 +1374,13 @@ You will need to re-import this Bible to use it again. Detecting encoding (this may take a few minutes)... - + Selvitetään merkistöä (tämä voi kestää muutamia minuutteja)... Importing %s %s... Importing <book name> <chapter>... - + Tuodaan %s %s... @@ -1383,112 +1388,117 @@ You will need to re-import this Bible to use it again. Select a Backup Directory - + Valitse hakemisto varmuuskopiolle Bible Upgrade Wizard - + Ohjattu Raamatun päivitys This wizard will help you to upgrade your existing Bibles from a prior version of OpenLP 2. Click the next button below to start the upgrade process. - + Tämä päivitystyökalu auttaa päivittämään nykyiset Raamatut edellisestä versiosta OpenLP 2:een. Paina 'seuraava' jatkaaksesi päivitystä. Select Backup Directory - + Valitse hakemisto varmuuskopiolle Please select a backup directory for your Bibles - + Ole hyvä ja valitse hakemisto, jonne Raamatut varmuuskopiodaan Previous releases of OpenLP 2.0 are unable to use upgraded Bibles. This will create a backup of your current Bibles so that you can simply copy the files back to your OpenLP data directory if you need to revert to a previous release of OpenLP. Instructions on how to restore the files can be found in our <a href="http://wiki.openlp.org/faq">Frequently Asked Questions</a>. - + Vanhemmat versiot OpenLP 2.0 eivät voi käyttää päivitettyjä Raamatun käännöksiä. Tämä tekee varmuuskopion nykyisistä Raamatuista, jotta voit kopioida ne takaisin OpenLP:n hakemistoon, jos sinun tarvitsee jostain syystä palata käyttämään ohjelman vanhempaa versiota. Ohjeet Raamattujen palauttamiseen on nettisivullamme kohdassa <a href="http://wiki.openlp.org/faq">Frequently Asked Questions</a>. Please select a backup location for your Bibles. - + Ole hyvä ja valitse sijainti varmuuskopioille. Backup Directory: - + Varmuuskopioihakemisto: There is no need to backup my Bibles - + Raamatunkäännöksiä ei tarvitse varmuuskopioida Select Bibles - + Valitse Raamatut Please select the Bibles to upgrade - + Ole hyvä ja valitse Raamatut päivitettäväksi Upgrading - + Päivitetään Please wait while your Bibles are upgraded. - + Ole hyvä ja odota, kunnes Raamatut on päivitetty. The backup was not successful. To backup your Bibles you need permission to write to the given directory. - + Varmuuskopiointi epäonnistui. +Varmuuskopiointia varten tarvitaan kirjoitusoikeudet annettuun hakemistoon. Upgrading Bible %s of %s: "%s" Failed - + Päivitetään Raamattua %s/%s: "%s" +Epäonnistui Upgrading Bible %s of %s: "%s" Upgrading ... - + Päivitetään Raamattua %s/%s: "%s" +Päivitetään ... Download Error - + Virhe latauksessa To upgrade your Web Bibles an Internet connection is required. - + Nettiraamattujen päivittämiseksi tarvitaan internet-yhteys. Upgrading Bible %s of %s: "%s" Upgrading %s ... - + Päivitetään Raamattua %s/%s: "%s" +Päivitetään %s ... Upgrading Bible %s of %s: "%s" Complete - + Päivitetään Raamattua %s/%s: "%s" +Valmis , %s failed - + , %s epäonnistui @@ -1611,57 +1621,57 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I &Title: - + &Otsikko Add a new slide at bottom. - + Lisää uusi dia loppuun. Edit the selected slide. - + Muokkaa valittua diaa. Edit all the slides at once. - + Muokkaa kaikki dioja kerralla. Split a slide into two by inserting a slide splitter. - + Jaa dia kahteen osaan lisäämällä splitterin. The&me: - + Tee&ma: &Credits: - + &Lopputekstit: You need to type in a title. - + Muista antaa myös otsikko. You need to add at least one slide - + Sinun pitää lisätä ainakin yksi dia. Ed&it All - + Mu&okkaa kaikkia Insert Slide - + Lisää dia @@ -1966,7 +1976,7 @@ Do you want to add the other images anyway? Information - + Tiedot @@ -2141,7 +2151,7 @@ Portions copyright © 2004-2012 %s Background color: - + Taustaväri: @@ -2524,7 +2534,7 @@ Version: %s Bible - + Raamattu @@ -4335,7 +4345,7 @@ The content encoding is not UTF-8. Language: - + Kieli: @@ -4878,7 +4888,7 @@ The content encoding is not UTF-8. Background color: - + Taustaväri: @@ -6305,7 +6315,7 @@ The encoding is responsible for the correct character representation. &Title: - + &Otsikko @@ -6325,7 +6335,7 @@ The encoding is responsible for the correct character representation. Ed&it All - + Mu&okkaa kaikkia @@ -6360,7 +6370,7 @@ The encoding is responsible for the correct character representation. Book: - + Kirja: diff --git a/resources/i18n/ja.ts b/resources/i18n/ja.ts index 0f332376b..196083ad7 100644 --- a/resources/i18n/ja.ts +++ b/resources/i18n/ja.ts @@ -939,7 +939,7 @@ search results and on display: The following book name cannot be matched up internally. Please select the corresponding name from the list. - + 以下の書名は内部の書名と一致しませんでした。対応するものを一覧から選択してください。 @@ -1035,7 +1035,8 @@ It is not possible to customize the Book Names. To use the customized book names, "Bible language" must be selected on the Meta Data tab or, if "Global settings" is selected, on the Bible page in Configure OpenLP. - + 任意の書名を使用するには、メタデータタブにて&quot;聖書言語&quot;を選択するか、&quot;全体設定&quot;の聖書タブにて設定し +てください。 @@ -1364,7 +1365,9 @@ demand and thus an internet connection is required. Are you sure you want to completely delete "%s" Bible from OpenLP? You will need to re-import this Bible to use it again. - + 本当にOpenLPから聖書"%s"を削除しても良いですか。 + +もう一度使用するには、インポートし直す必要があります。 @@ -1372,7 +1375,7 @@ You will need to re-import this Bible to use it again. Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. - + 不正な聖書ファイルです。OpenSongの聖書は圧縮されていることがあります。その場合、インポートする前に展開する必要があります。 @@ -1695,7 +1698,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I Edit Slide - + スライド編集 @@ -2814,7 +2817,9 @@ Version: %s No Internet connection was found. The First Time Wizard needs an Internet connection in order to be able to download sample songs, Bibles and themes. Click the Finish button now to start OpenLP with initial settings and no sample data. To re-run the First Time Wizard and import this sample data at a later time, check your Internet connection and re-run this wizard by selecting "Tools/Re-run First Time Wizard" from OpenLP. - + インターネットに接続できません。終了ボタンをクリックし、サンプルデータ無しで初期設定のままOpenLPを起動してください。 + +初回起動ウィザードをもう一度実行してサンプルデータをインポートするには、&quot;ツール/初回起動ウィザードの再実行&quot;を選択してください。 @@ -3640,7 +3645,7 @@ Importing incorrect settings may cause erratic behaviour or OpenLP to terminate New Data Directory Error - + 新しいデータディレクトリのエラー @@ -4399,37 +4404,37 @@ The content encoding is not UTF-8. Go to "Verse" - + "バース"へ移動 Go to "Chorus" - + "コーラス"へ移動 Go to "Bridge" - + "ブリッジ"へ移動 Go to "Pre-Chorus" - + "間奏"へ移動 Go to "Intro" - + "序奏"へ移動 Go to "Ending" - + "エンディング"へ移動 Go to "Other" - + "その他"へ移動 @@ -5045,7 +5050,7 @@ The content encoding is not UTF-8. Preview the theme and save it. - + 外観テーマを保存しプレビューします。 @@ -5645,7 +5650,7 @@ The content encoding is not UTF-8. Optional &Split - + オプションの分割(&S) @@ -5669,24 +5674,24 @@ The content encoding is not UTF-8. No Folder Selected Singular - + フォルダが選択されていません Open %s Folder - + %sフォルダを開く You need to specify one %s file to import from. A file type e.g. OpenSong - + インポートするために%sファイルを選択してください。 You need to specify one %s folder to import from. A song format e.g. PowerSong - + インポートするために%sフォルダを選択してください。 @@ -5812,7 +5817,7 @@ The content encoding is not UTF-8. The presentation %s is incomplete, please reload. - + プレゼンテーション%sは不完全です。再読み込みしてください。 @@ -6131,7 +6136,7 @@ The content encoding is not UTF-8. Select the date up to which the song usage data should be deleted. All data recorded before this date will be permanently deleted. - + 利用記録を削除する日を選択してください。この日以前の記録は全て削除されます。 @@ -6437,7 +6442,7 @@ The encoding is responsible for the correct character representation. Custom Book Names - + 任意の書名 @@ -6894,37 +6899,38 @@ The encoding is responsible for the correct character representation. SundayPlus Song Files - + SundayPlus Songファイル This importer has been disabled. - + このインポートは使用できません。 MediaShout Database - + MediaShoutデータベース The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. - + MediaShoutのインポートはWindowsのみで利用可能です。この機能を使用するためには、Pythonの"pyodbc"モジュールを +インストールしてください。 SongPro Text Files - + SongProテキストファイル SongPro (Export File) - + SongPro (エキスポートファイル) In SongPro, export your songs using the File -> Export menu - + SongProにおいて、メニューのFile-&gt;Exportからエクスポートしてください。 @@ -7011,7 +7017,7 @@ The encoding is responsible for the correct character representation. Unable to open the MediaShout database. - + MediaShoutデータベースを開けません。 @@ -7048,7 +7054,7 @@ The encoding is responsible for the correct character representation. Verses not found. Missing "PART" header. - + 歌詞が見つかりません。"PART"ヘッダが不足しています。 diff --git a/resources/i18n/ko.ts b/resources/i18n/ko.ts index 527d6c1cf..a33f45515 100644 --- a/resources/i18n/ko.ts +++ b/resources/i18n/ko.ts @@ -235,27 +235,27 @@ Do you want to continue anyway? Genesis - + 창세기 Exodus - + 출애굽기 Leviticus - + 레위기 Numbers - + 민수기 Deuteronomy - + 신명기 @@ -265,7 +265,7 @@ Do you want to continue anyway? Judges - + 사사기 @@ -275,82 +275,82 @@ Do you want to continue anyway? 1 Samuel - + 사무엘상 2 Samuel - + 사무엘하 1 Kings - + 열왕기상 2 Kings - + 열왕기하 1 Chronicles - + 역대상 2 Chronicles - + 역대하 Ezra - + 에스라 Nehemiah - + 느헤미야 Esther - + 에스더 Job - + 욥기 Psalms - + 시편 Proverbs - + 잠언 Ecclesiastes - + 전도서 Song of Solomon - + 아가 Isaiah - + 이사야 Jeremiah - + 예레미야 @@ -360,207 +360,207 @@ Do you want to continue anyway? Ezekiel - + 에스겔 Daniel - + 다니엘 Hosea - + 호세아 Joel - + 요엘 Amos - + 아모스 Obadiah - + 오바댜 Jonah - + 요나 Micah - + 미가 Nahum - + 나훔 Habakkuk - + 하박국 Zephaniah - + 스바냐 Haggai - + 학개 Zechariah - + 스가랴 Malachi - + 말라기 Matthew - + 마태복음 Mark - + 마가복음 Luke - + 누가복음 John - + 요한복음 Acts - + 사도행전 Romans - + 로마서 1 Corinthians - + 고린도전서 2 Corinthians - + 고린도후서 Galatians - + 갈라디아서 Ephesians - + 에베소서 Philippians - + 빌립보서 Colossians - + 골로새서 1 Thessalonians - + 데살로니가전서 2 Thessalonians - + 데살로니가후서 1 Timothy - + 디모데전서 2 Timothy - + 디모데후서 Titus - + 디도서 Philemon - + 빌레몬서 Hebrews - + 히브리서 James - + 야고보서 1 Peter - + 베드로전서 2 Peter - + 베드로후서 1 John - + 요한1서 2 John - + 요한2서 3 John - + 요한3서 Jude - + 유다서 Revelation - + 요한계시록 diff --git a/resources/i18n/pt_BR.ts b/resources/i18n/pt_BR.ts index ea997536d..72c7f0262 100644 --- a/resources/i18n/pt_BR.ts +++ b/resources/i18n/pt_BR.ts @@ -1368,7 +1368,8 @@ com o usu, portanto uma conexão com a internet é necessária. Are you sure you want to completely delete "%s" Bible from OpenLP? You will need to re-import this Bible to use it again. - + Você tem certeza que deseja apagar completamente a Bíblia "%s" do OpenLP? +Para usá-la de novo, você precisará fazer a importação novamente. @@ -1376,7 +1377,7 @@ You will need to re-import this Bible to use it again. Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. - + Foi fornecido um tipo de Bíblia incorreto. Os arquivos de Bíblia do OpenSong podem estar comprimidos. Você precisa descomprimí-lo antes de importá-lo. @@ -1699,7 +1700,7 @@ Observe, que versículos das Bíblias Internet serão transferidos sob demanda e Edit Slide - + Editar Slide @@ -5051,12 +5052,12 @@ A codificação do conteúdo não é UTF-8. Preview and Save - + Visualizar e Salvar Preview the theme and save it. - + Visualizar o tema e salvar @@ -6909,37 +6910,37 @@ EasyWorship] SundayPlus Song Files - + Arquivos de Música do SundayPlus This importer has been disabled. - + Esta importação foi desabilitada. MediaShout Database - + Banco de Dados do MediaShout The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. - + A importação do MediaShout somente é suportada no Windows. Ela foi desabilitada por causa de um módulo Python inexistente. Se você deseja utilizar esta importação, você precisa instalar o módulo "pyodbc". SongPro Text Files - + Arquivos Texto do SongPro SongPro (Export File) - + SongPro (Arquivo de Exportação) In SongPro, export your songs using the File -> Export menu - + No SongPro, exporte as suas músicas utilizando o menu Arquivo -> Exportar. @@ -7027,7 +7028,7 @@ EasyWorship] Unable to open the MediaShout database. - + Não foi possível abrir o banco de dados do MediaShout. diff --git a/resources/i18n/sv.ts b/resources/i18n/sv.ts index a85aacf4f..db1e6ca68 100644 --- a/resources/i18n/sv.ts +++ b/resources/i18n/sv.ts @@ -1368,7 +1368,9 @@ vid behov, och därför behövs en Internetanslutning. Are you sure you want to completely delete "%s" Bible from OpenLP? You will need to re-import this Bible to use it again. - + Är du säker på att du vill ta bort bibeln "%s" helt från OpenLP? + +För att bibeln ska gå att använda igen måste den importeras på nytt. @@ -1376,7 +1378,7 @@ You will need to re-import this Bible to use it again. Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. - + Ogiltig filtyp på den valda bibeln. OpenSong-biblar kan vara komprimerade. Du måste packa upp dem före import. @@ -1699,7 +1701,7 @@ Observera att verser från webb-biblar kommer att laddas ner vid behov, och där Edit Slide - + Redigera bild @@ -6909,32 +6911,32 @@ Teckenkodningen ansvarar för rätt teckenrepresentation. This importer has been disabled. - + Den här importfunktionen har inaktiverats. MediaShout Database - + MediaShout-databas The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. - + Importfunktionen för MediaShout stöds bara på Windows. Den har inaktiverats på grund av en saknad Python-modul. Om du vill använda den här importfunktionen måste du installera modulen "pyodbc". SongPro Text Files - + SongPro-textfiler SongPro (Export File) - + SongPro (exporterad fil) In SongPro, export your songs using the File -> Export menu - + I SongPro exporterar du sånger via menyn Arkiv -> Exportera @@ -7022,7 +7024,7 @@ Teckenkodningen ansvarar för rätt teckenrepresentation. Unable to open the MediaShout database. - + Kan inte öppna MediaShout-databasen. From e31c64ef7c7471af1de3ce2707f973c41d69a5df Mon Sep 17 00:00:00 2001 From: Tim Bentley Date: Sat, 28 Jul 2012 15:32:21 +0100 Subject: [PATCH 18/76] Release 1.9.11 bzr-revno: 2039 --- openlp/.version | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openlp/.version b/openlp/.version index eeef06aee..5e9287b86 100644 --- a/openlp/.version +++ b/openlp/.version @@ -1 +1 @@ -1.9.9-bzr1956 +1.9.11 From 5c6b61c819966ee4dbec084e3d2c639ea481ccaf Mon Sep 17 00:00:00 2001 From: Tim Bentley Date: Fri, 3 Aug 2012 18:08:43 +0100 Subject: [PATCH 19/76] Translation updates --- resources/i18n/af.ts | 51 +- resources/i18n/cs.ts | 27 +- resources/i18n/da.ts | 851 ++++++------- resources/i18n/de.ts | 51 +- resources/i18n/el.ts | 51 +- resources/i18n/en.ts | 25 +- resources/i18n/en_GB.ts | 25 +- resources/i18n/en_ZA.ts | 227 ++-- resources/i18n/es.ts | 39 +- resources/i18n/et.ts | 25 +- resources/i18n/fi.ts | 2352 +++++++++++++++++----------------- resources/i18n/fr.ts | 87 +- resources/i18n/hu.ts | 45 +- resources/i18n/id.ts | 1633 ++++++++++++------------ resources/i18n/it.ts | 2487 ++++++++++++++++++------------------ resources/i18n/ja.ts | 37 +- resources/i18n/ko.ts | 2441 ++++++++++++++++++----------------- resources/i18n/nb.ts | 2379 +++++++++++++++++----------------- resources/i18n/nl.ts | 45 +- resources/i18n/pl.ts | 2667 +++++++++++++++++++------------------- resources/i18n/pt_BR.ts | 25 +- resources/i18n/ru.ts | 1013 ++++++++------- resources/i18n/sk.ts | 2035 +++++++++++++++-------------- resources/i18n/sq.ts | 2673 +++++++++++++++++++-------------------- resources/i18n/sv.ts | 25 +- resources/i18n/zh_CN.ts | 2671 +++++++++++++++++++------------------- 26 files changed, 11905 insertions(+), 12082 deletions(-) diff --git a/resources/i18n/af.ts b/resources/i18n/af.ts index be47daf14..d801e9877 100644 --- a/resources/i18n/af.ts +++ b/resources/i18n/af.ts @@ -1,5 +1,4 @@ - - + AlertsPlugin @@ -102,7 +101,7 @@ Gaan steeds voort? - The alert text does not contain '<>'. + The alert text does not contain '<>'. Do you want to continue anyway? Die attent-teks bevat nie '<>' nie. Gaan steeds voort? @@ -1369,7 +1368,7 @@ vraag afgelaai word en dus is 'n internet konneksie nodig. Are you sure you want to completely delete "%s" Bible from OpenLP? You will need to re-import this Bible to use it again. - + @@ -1377,7 +1376,7 @@ You will need to re-import this Bible to use it again. Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. - + @@ -1701,7 +1700,7 @@ word en dus is 'n Internet verbinding nodig. Edit Slide - + @@ -1709,10 +1708,7 @@ word en dus is 'n Internet verbinding nodig. Are you sure you want to delete the %n selected custom slide(s)? - - Wis sekerlik die %n gekose aangepasde skyfie uit? - Wis sekerlik die %n gekose aangepasde skyfies uit? - + Wis sekerlik die %n gekose aangepasde skyfie uit?Wis sekerlik die %n gekose aangepasde skyfies uit? @@ -2075,7 +2071,7 @@ Translators %s Japanese (ja) %s - Norwegian Bokmål (nb) + Norwegian Bokmål (nb) %s Dutch (nl) %s @@ -2186,8 +2182,8 @@ OpenLP is geskryf en word onderhou deur vrywilligers. As u graag wil sien dat me - Copyright © 2004-2012 %s -Portions copyright © 2004-2012 %s + Copyright © 2004-2012 %s +Portions copyright © 2004-2012 %s Kopiereg © 2004-2012 %s Gedeeltelike kopiereg © 2004-2012 %s @@ -5046,12 +5042,12 @@ Die inhoud enkodering is nie UTF-8 nie. Preview and Save - + Preview the theme and save it. - + @@ -5447,7 +5443,7 @@ Die inhoud enkodering is nie UTF-8 nie. - © + © Copyright symbol. © @@ -6905,37 +6901,37 @@ Die enkodering is verantwoordelik vir die korrekte karrakter voorstelling. SundayPlus Song Files - + This importer has been disabled. - + MediaShout Database - + The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. - + SongPro Text Files - + SongPro (Export File) - + In SongPro, export your songs using the File -> Export menu - + @@ -6976,10 +6972,7 @@ Die enkodering is verantwoordelik vir die korrekte karrakter voorstelling. Are you sure you want to delete the %n selected song(s)? - - Wis regtig die %n geselekteerde lied uit? - Wis regtig die %n geselekteerde liedere uit? - + Wis regtig die %n geselekteerde lied uit?Wis regtig die %n geselekteerde liedere uit? @@ -7023,7 +7016,7 @@ Die enkodering is verantwoordelik vir die korrekte karrakter voorstelling. Unable to open the MediaShout database. - + @@ -7332,4 +7325,4 @@ Die enkodering is verantwoordelik vir die korrekte karrakter voorstelling.Lêer nie geldige ZionWorx CSV formaat nie. - + \ No newline at end of file diff --git a/resources/i18n/cs.ts b/resources/i18n/cs.ts index 8a23c877b..4da140d1f 100644 --- a/resources/i18n/cs.ts +++ b/resources/i18n/cs.ts @@ -1,5 +1,4 @@ - - + AlertsPlugin @@ -102,7 +101,7 @@ Chcete přesto pokračovat? - The alert text does not contain '<>'. + The alert text does not contain '<>'. Do you want to continue anyway? Text upozornění neobsahuje '<>'. Chcete přesto pokračovat? @@ -1707,11 +1706,7 @@ Upozornění: Verše z www Bible budou stáhnuty na vyžádání a proto je vyž Are you sure you want to delete the %n selected custom slide(s)? - - Jste si jisti, že chcete smazat %n vybraný uživatelský snímek? - Jste si jisti, že chcete smazat %n vybrané uživatelské snímky? - Jste si jisti, že chcete smazat %n vybraných uživatelských snímků? - + Jste si jisti, že chcete smazat %n vybraný uživatelský snímek?Jste si jisti, že chcete smazat %n vybrané uživatelské snímky?Jste si jisti, že chcete smazat %n vybraných uživatelských snímků? @@ -2076,7 +2071,7 @@ Translators %s Japanese (ja) %s - Norwegian Bokmål (nb) + Norwegian Bokmål (nb) %s Dutch (nl) %s @@ -2186,8 +2181,8 @@ OpenLP vytváří a udržují dobrovolníci. Pokud má existovat více volně do - Copyright © 2004-2012 %s -Portions copyright © 2004-2012 %s + Copyright © 2004-2012 %s +Portions copyright © 2004-2012 %s Autorská práva © 2004-2012 %s Částečná autorská práva © 2004-2012 %s @@ -5444,7 +5439,7 @@ Obsah souboru není v kódování UTF-8. - © + © Copyright symbol. © @@ -6972,11 +6967,7 @@ Kódování zodpovídá za správnou reprezentaci znaků. Are you sure you want to delete the %n selected song(s)? - - Jste si jisti, že chcete smazat %n vybranou píseň? - Jste si jisti, že chcete smazat %n vybrané písně? - Jste si jisti, že chcete smazat %n vybraných písní? - + Jste si jisti, že chcete smazat %n vybranou píseň?Jste si jisti, že chcete smazat %n vybrané písně?Jste si jisti, že chcete smazat %n vybraných písní? @@ -7329,4 +7320,4 @@ Kódování zodpovídá za správnou reprezentaci znaků. Soubor není platný ZionWorx CSV formát. - + \ No newline at end of file diff --git a/resources/i18n/da.ts b/resources/i18n/da.ts index 28aac28bc..b180b2d4f 100644 --- a/resources/i18n/da.ts +++ b/resources/i18n/da.ts @@ -1,5 +1,4 @@ - - + AlertsPlugin @@ -102,7 +101,7 @@ Vil du fortsætte alligevel? - The alert text does not contain '<>'. + The alert text does not contain '<>'. Do you want to continue anyway? Meddelelsesteksten indeholder ikke '<>'. Vil du fortsætte alligevel? @@ -237,428 +236,428 @@ Vil du fortsætte alligevel? Genesis - + Exodus - + Leviticus - + Numbers - + Deuteronomy - + Joshua - + Judges - + Ruth - + 1 Samuel - + 2 Samuel - + 1 Kings - + 2 Kings - + 1 Chronicles - + 2 Chronicles - + Ezra - + Nehemiah - + Esther - + Job - + Psalms - + Proverbs - + Ecclesiastes - + Song of Solomon - + Isaiah - + Jeremiah - + Lamentations - + Ezekiel - + Daniel - + Hosea - + Joel - + Amos - + Obadiah - + Jonah - + Micah - + Nahum - + Habakkuk - + Zephaniah - + Haggai - + Zechariah - + Malachi - + Matthew - + Mark - + Luke - + John - + Acts - + Romans - + 1 Corinthians - + 2 Corinthians - + Galatians - + Ephesians - + Philippians - + Colossians - + 1 Thessalonians - + 2 Thessalonians - + 1 Timothy - + 2 Timothy - + Titus - + Philemon - + Hebrews - + James - + 1 Peter - + 2 Peter - + 1 John - + 2 John - + 3 John - + Jude - + Revelation - + Judith - + Wisdom - + Tobit - + Sirach - + Baruch - + 1 Maccabees - + 2 Maccabees - + 3 Maccabees - + 4 Maccabees - + Rest of Daniel - + Rest of Esther - + Prayer of Manasses - + Letter of Jeremiah - + Prayer of Azariah - + Susanna - + Bel - + 1 Esdras - + 2 Esdras - + :|v|V|verse|verses;;-|to;;,|and;;end Double-semicolon delimited separators for parsing references. Consult the developers for further information. - + @@ -666,44 +665,44 @@ Vil du fortsætte alligevel? You need to specify a version name for your Bible. - Vælg et udgavenavn til din bibel. + You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. - Angiv din bibels ophavsret. Bibler i Public Domain skal markeres som værende sådan. + Bible Exists - Bibel eksisterer + This Bible already exists. Please import a different Bible or first delete the existing one. - Denne bibel eksisterer allerede. Importér en anden bibel, eller slet først den eksisterende bibel. + You need to specify a book name for "%s". - + The book name "%s" is not correct. Numbers can only be used at the beginning and must be followed by one or more non-numeric characters. - + Duplicate Book Name - + The Book Name "%s" has been entered more than once. - + @@ -751,7 +750,7 @@ Book Chapter%(verse)sVerse%(range)sVerse%(list)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sVerse%(list)sChapter%(verse)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sChapter%(verse)sVerse Please pay attention to the appended "s" of the wildcards and refrain from translating the words inside the names in the brackets. - + @@ -806,81 +805,81 @@ Changes do not affect verses already in the service. Custom Scripture References - + Verse Separator: - + Range Separator: - + List Separator: - + End Mark: - + Multiple alternative verse separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. - + Multiple alternative range separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. - + Multiple alternative list separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. - + Multiple alternative end marks may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. - + English - Dansk + Default Bible Language - + Book name language in search field, search results and on display: - + Bible Language - + Application Language - + @@ -923,7 +922,7 @@ search results and on display: The following book name cannot be matched up internally. Please select the corresponding name from the list. - + @@ -958,68 +957,68 @@ search results and on display: Bible Editor - + License Details - Licens detaljer + Version name: - Navn på udgave: + Copyright: - Ophavsret: + Permissions: - Tilladelser: + Default Bible Language - + Book name language in search field, search results and on display: - + Global Settings - + Bible Language - + Application Language - + English - Dansk + This is a Web Download Bible. It is not possible to customize the Book Names. - + To use the customized book names, "Bible language" must be selected on the Meta Data tab or, if "Global settings" is selected, on the Bible page in Configure OpenLP. - + @@ -1337,19 +1336,19 @@ forespørgsel og en internetforbindelse er derfor påkrævet. Search Scripture Reference... - + Search Text... - + Are you sure you want to completely delete "%s" Bible from OpenLP? You will need to re-import this Bible to use it again. - + @@ -1357,7 +1356,7 @@ You will need to re-import this Bible to use it again. Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. - + @@ -1393,12 +1392,12 @@ You will need to re-import this Bible to use it again. Bible Upgrade Wizard - + This wizard will help you to upgrade your existing Bibles from a prior version of OpenLP 2. Click the next button below to start the upgrade process. - + @@ -1408,17 +1407,17 @@ You will need to re-import this Bible to use it again. Please select a backup directory for your Bibles - + Previous releases of OpenLP 2.0 are unable to use upgraded Bibles. This will create a backup of your current Bibles so that you can simply copy the files back to your OpenLP data directory if you need to revert to a previous release of OpenLP. Instructions on how to restore the files can be found in our <a href="http://wiki.openlp.org/faq">Frequently Asked Questions</a>. - + Please select a backup location for your Bibles. - + @@ -1479,7 +1478,7 @@ Opgraderer ... To upgrade your Web Bibles an Internet connection is required. - + @@ -1504,12 +1503,12 @@ Færdig Upgrading Bible(s): %s successful%s Please note that verses from Web Bibles will be downloaded on demand and so an Internet connection is required. - + Upgrading Bible(s): %s successful%s - + @@ -1679,7 +1678,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I Edit Slide - + @@ -1687,10 +1686,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I Are you sure you want to delete the %n selected custom slide(s)? - - - - + @@ -1698,7 +1694,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I <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. - + @@ -1777,7 +1773,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I You must select an image to replace the background with. - + @@ -1799,12 +1795,12 @@ Vil du tilføje de andre billede alligevel? There was a problem replacing your background, the image file "%s" no longer exists. - + There was no display item to amend. - + @@ -1822,7 +1818,7 @@ Vil du tilføje de andre billede alligevel? Visible background for images with aspect ratio different to screen. - + @@ -1878,7 +1874,7 @@ Vil du tilføje de andre billede alligevel? Send the selected media live. - + @@ -1926,7 +1922,7 @@ Vil du tilføje de andre billede alligevel? There was no display item to amend. - + @@ -1964,7 +1960,7 @@ Vil du tilføje de andre billede alligevel? Allow media player to be overridden - + @@ -2055,7 +2051,7 @@ Translators %s Japanese (ja) %s - Norwegian Bokmål (nb) + Norwegian Bokmål (nb) %s Dutch (nl) %s @@ -2155,13 +2151,13 @@ OpenLP is free church presentation software, or lyrics projection software, used Find out more about OpenLP: http://openlp.org/ OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider contributing by using the button below. - + - Copyright © 2004-2012 %s -Portions copyright © 2004-2012 %s - + Copyright © 2004-2012 %s +Portions copyright © 2004-2012 %s + @@ -2174,27 +2170,27 @@ Portions copyright © 2004-2012 %s Number of recent files to display: - + Remember active media manager tab on startup - + Double-click to send items straight to live - + Expand new service items on creation - + Enable application exit confirmation - + @@ -2234,7 +2230,7 @@ Portions copyright © 2004-2012 %s Preview items when clicked in Media Manager - + @@ -2256,184 +2252,184 @@ Portions copyright © 2004-2012 %s Service %Y-%m-%d %H-%M This may not contain any of the following characters: /\?*|<>[]":+ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for more information. - + Default Service Name - + Enable default service name - + Date and Time: - + Monday - + Tuesday - + Wednesday - + Thurdsday - + Friday - + Saturday - + Sunday - + Now - + Time when usual service starts. - + Name: - + Consult the OpenLP manual for usage. - + Revert to the default service name "%s". - + Example: - + X11 - + Bypass X11 Window Manager - + Syntax error. - + Data Location - + Current path: - + Custom path: - + Browse for new data file location. - + Set the data location to the default. - + Cancel - Annullér + Cancel OpenLP data directory location change. - + Copy data to new location. - + Copy the OpenLP data files to the new location. - + <strong>WARNING:</strong> New data directory location contains OpenLP data files. These files WILL be replaced during a copy. - + Data Directory Error - + Select Data Directory Location - + Confirm Data Directory Change - + Reset Data Directory - + Are you sure you want to change the location of the OpenLP data directory to the default location? This location will be used after OpenLP is closed. - + Overwrite Existing Data - + @@ -2511,7 +2507,7 @@ Version: %s --- Library Versions --- %s - + @@ -2530,7 +2526,7 @@ Version: %s %s Please add the information that bug reports are favoured written in English. - + @@ -2538,7 +2534,7 @@ Version: %s File Rename - + @@ -2548,7 +2544,7 @@ Version: %s File Copy - + @@ -2579,12 +2575,12 @@ Version: %s First Time Wizard - + Welcome to the First Time Wizard - + @@ -2694,7 +2690,7 @@ Version: %s Set up default settings to be used by OpenLP. - + @@ -2714,7 +2710,7 @@ Version: %s This wizard will help you to configure OpenLP for initial use. Click the next button below to start. - + @@ -2724,7 +2720,7 @@ Version: %s Please wait while OpenLP is set up and your data is downloaded. - + @@ -2761,14 +2757,14 @@ Version: %s No Internet connection was found. The First Time Wizard needs an Internet connection in order to be able to download sample songs, Bibles and themes. Click the Finish button now to start OpenLP with initial settings and no sample data. To re-run the First Time Wizard and import this sample data at a later time, check your Internet connection and re-run this wizard by selecting "Tools/Re-run First Time Wizard" from OpenLP. - + To cancel the First Time Wizard completely (and not start OpenLP), click the Cancel button now. - + @@ -2940,12 +2936,12 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can Select monitor for output display: - + Display if a single screen - + @@ -2955,17 +2951,17 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can Show blank screen warning - + Automatically open the last service - + Show the splash screen - + @@ -2975,12 +2971,12 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can Prompt to save before starting a new service - + Automatically preview next item in service - + @@ -3030,12 +3026,12 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can Unblank display when adding new live item - + Timed slide interval: - + @@ -3050,37 +3046,37 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can Service Item Slide Limits - + Override display position: - + Repeat track list - + Behavior of next/previous on the last/first slide: - + &Remain on Slide - + &Wrap around - + &Move to next/previous service item - + @@ -3101,7 +3097,7 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can OpenLP Display - + @@ -3159,7 +3155,7 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can Service Manager - + @@ -3179,7 +3175,7 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can Open an existing service. - + @@ -3189,7 +3185,7 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can Save the current service to disk. - + @@ -3234,7 +3230,7 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can Toggle Media Manager - + @@ -3249,7 +3245,7 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can Toggle Theme Manager - + @@ -3259,17 +3255,17 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can &Service Manager - + Toggle Service Manager - + Toggle the visibility of the service manager. - + @@ -3279,7 +3275,7 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can Toggle Preview Panel - + @@ -3294,7 +3290,7 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can Toggle Live Panel - + @@ -3304,17 +3300,17 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can &Plugin List - + List the Plugins - + &User Guide - + @@ -3344,7 +3340,7 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can Set the interface language to %s - + @@ -3391,7 +3387,7 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can Version %s of OpenLP is now available for download (you are currently running version %s). You can download the latest version from http://openlp.org/. - + @@ -3401,12 +3397,12 @@ You can download the latest version from http://openlp.org/. OpenLP Main Display Blanked - + The Main Display has been blanked out - + @@ -3437,12 +3433,12 @@ You can download the latest version from http://openlp.org/. Open &Data Folder... - + Open the folder where songs, bibles and other data resides. - + @@ -3457,7 +3453,7 @@ You can download the latest version from http://openlp.org/. Update the preview images for all themes. - + @@ -3467,7 +3463,7 @@ You can download the latest version from http://openlp.org/. &Recent Files - + @@ -3477,29 +3473,29 @@ You can download the latest version from http://openlp.org/. Prevent the panels being moved. - + Re-run First Time Wizard - + Re-run the First Time Wizard, importing songs, Bibles and themes. - + Re-run First Time Wizard? - + Are you sure you want to re-run the First Time Wizard? Re-running this wizard may make changes to your current OpenLP configuration and possibly add songs to your existing songs list and change your default theme. - + @@ -3510,17 +3506,17 @@ Re-running this wizard may make changes to your current OpenLP configuration and Clear the list of recent files. - + Configure &Formatting Tags... - + Export OpenLP settings to a specified *.config file - + @@ -3530,7 +3526,7 @@ Re-running this wizard may make changes to your current OpenLP configuration and Import OpenLP settings from a specified *.config file previously exported on this or another machine - + @@ -3544,7 +3540,7 @@ Re-running this wizard may make changes to your current OpenLP configuration and Importing settings will make permanent changes to your current OpenLP configuration. Importing incorrect settings may cause erratic behaviour or OpenLP to terminate abnormally. - + @@ -3554,7 +3550,7 @@ Importing incorrect settings may cause erratic behaviour or OpenLP to terminate OpenLP Export Settings Files (*.conf) - + @@ -3564,22 +3560,22 @@ Importing incorrect settings may cause erratic behaviour or OpenLP to terminate OpenLP will now close. Imported settings will be applied the next time you start OpenLP. - + Export Settings File - + OpenLP Export Settings File (*.conf) - + New Data Directory Error - + @@ -3594,7 +3590,7 @@ Importing incorrect settings may cause erratic behaviour or OpenLP to terminate The database being loaded was created in a more recent version of OpenLP. The database is version %d, while OpenLP expects version %d. The database will not be loaded. Database: %s - + @@ -3611,47 +3607,47 @@ Database: %s No Items Selected - Ingen elementer valgt + &Add to selected Service Item - + You must select one or more items to preview. - + You must select one or more items to send live. - + You must select one or more items. - + You must select an existing service item to add to. - + Invalid Service Item - + You must select a %s service item. - + You must select one or more items to add. - + @@ -3673,12 +3669,12 @@ Endelsen er ikke understøttet &Clone - + Duplicate files were found on import and were ignored. - + @@ -3686,12 +3682,12 @@ Endelsen er ikke understøttet <lyrics> tag is missing. - + <verse> tag is missing. - + @@ -3790,27 +3786,27 @@ Endelsen er ikke understøttet Include slide text if available - + Include service item notes - + Include play length of media items - + Add page break before each text item - + Service Sheet - + @@ -3859,7 +3855,7 @@ Endelsen er ikke understøttet Reorder Service Item - + @@ -3942,7 +3938,7 @@ Endelsen er ikke understøttet &Change Item Theme - + @@ -3964,17 +3960,17 @@ Indholdet er ikke UTF-8. 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 - + @@ -4004,7 +4000,7 @@ Indholdet er ikke UTF-8. Moves the selection down the window. - + @@ -4014,17 +4010,17 @@ Indholdet er ikke UTF-8. Moves the selection up the window. - + Go Live - + Send the selected item to Live. - + @@ -4079,7 +4075,7 @@ Indholdet er ikke UTF-8. This service file does not contain any data. - + @@ -4104,12 +4100,12 @@ Indholdet er ikke UTF-8. This file is either corrupt or it is not an OpenLP 2.0 service file. - + Service File Missing - + @@ -4129,17 +4125,17 @@ Indholdet er ikke UTF-8. Service copy only - + Error Saving File - + There was an error saving your file. - + @@ -4147,7 +4143,7 @@ Indholdet er ikke UTF-8. Service Item Notes - + @@ -4173,7 +4169,7 @@ Indholdet er ikke UTF-8. Duplicate Shortcut - + @@ -4183,12 +4179,12 @@ Indholdet er ikke UTF-8. Alternate - + Select an action and click one of the buttons below to start capturing a new primary or alternate shortcut, respectively. - + @@ -4256,12 +4252,12 @@ Indholdet er ikke UTF-8. Previous Service - + Next Service - + @@ -4296,12 +4292,12 @@ Indholdet er ikke UTF-8. Add to Service. - + Edit and reload song preview. - + @@ -4351,17 +4347,17 @@ Indholdet er ikke UTF-8. Go to "Pre-Chorus" - + Go to "Intro" - + Go to "Ending" - + @@ -4371,32 +4367,32 @@ Indholdet er ikke UTF-8. Previous Slide - + Next Slide - + Pause Audio - + Background Audio - Baggrundslyd + Go to next audio track. - + Tracks - + @@ -4404,12 +4400,12 @@ Indholdet er ikke UTF-8. Spelling Suggestions - + Formatting Tags - + @@ -4437,7 +4433,7 @@ Indholdet er ikke UTF-8. Item Start and Finish Time - + @@ -4457,17 +4453,17 @@ Indholdet er ikke UTF-8. Time Validation Error - + Finish time is set after the end of the media item - + Start time is after the finish time of the media item - + @@ -4709,7 +4705,7 @@ Indholdet er ikke UTF-8. Theme Already Exists - + @@ -4847,7 +4843,7 @@ Indholdet er ikke UTF-8. Allows additional display formatting information to be defined - + @@ -4877,7 +4873,7 @@ Indholdet er ikke UTF-8. Allows you to change and move the main and footer areas. - + @@ -4972,17 +4968,17 @@ Indholdet er ikke UTF-8. Transparent - + Preview and Save - + Preview the theme and save it. - + @@ -5005,17 +5001,17 @@ Indholdet er ikke UTF-8. Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. - + &Service Level - + Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. - + @@ -5025,7 +5021,7 @@ Indholdet er ikke UTF-8. Use the global theme, overriding any themes associated with either the service or the songs. - + @@ -5129,7 +5125,7 @@ Indholdet er ikke UTF-8. Live Background Error - + @@ -5276,12 +5272,12 @@ Indholdet er ikke UTF-8. Move selection up one position. - + Move selection down one position. - + @@ -5321,7 +5317,7 @@ Indholdet er ikke UTF-8. The openlp.org 1.x importer has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "python-sqlite" module. - + @@ -5347,22 +5343,22 @@ Indholdet er ikke UTF-8. You need to specify at least one %s file to import from. A file type e.g. OpenSong - + Welcome to the Bible Import Wizard - + Welcome to the Song Export Wizard - + Welcome to the Song Import Wizard - + @@ -5378,7 +5374,7 @@ Indholdet er ikke UTF-8. - © + © Copyright symbol. © @@ -5397,7 +5393,7 @@ Indholdet er ikke UTF-8. Song Maintenance - + @@ -5429,7 +5425,7 @@ Indholdet er ikke UTF-8. Duplicate Error - + @@ -5455,7 +5451,7 @@ Indholdet er ikke UTF-8. Live Toolbar - + @@ -5536,12 +5532,12 @@ Indholdet er ikke UTF-8. Split a slide into two only if it does not fit on the screen as one slide. - + Welcome to the Bible Upgrade Wizard - + @@ -5571,59 +5567,59 @@ Indholdet er ikke UTF-8. Next Track - + Search Themes... Search bar place holder text - + Optional &Split - + Invalid Folder Selected Singular - + Invalid File Selected Singular - + Invalid Files Selected Plural - + No Folder Selected Singular - + Open %s Folder - + You need to specify one %s file to import from. A file type e.g. OpenSong - + You need to specify one %s folder to import from. A song format e.g. PowerSong - + @@ -5632,25 +5628,25 @@ Indholdet er ikke UTF-8. %1 and %2 Locale list separator: 2 items - + %1, and %2 Locale list separator: end - + %1, %2 Locale list separator: middle - + %1, %2 Locale list separator: start - + @@ -5658,7 +5654,7 @@ Indholdet er ikke UTF-8. <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. - + @@ -5696,12 +5692,12 @@ Indholdet er ikke UTF-8. Send the selected presentation live. - + Add the selected presentation to the service. - + @@ -5749,12 +5745,12 @@ Indholdet er ikke UTF-8. The presentation %s is incomplete, please reload. - + The presentation %s no longer exists. - + @@ -5762,7 +5758,7 @@ Indholdet er ikke UTF-8. Available Controllers - + @@ -5772,7 +5768,7 @@ Indholdet er ikke UTF-8. Allow presentation application to be overridden - + @@ -5780,7 +5776,7 @@ Indholdet er ikke UTF-8. <strong>Remote Plugin</strong><br />The remote plugin provides the ability to send messages to a running version of OpenLP on a different computer via a web browser or through the remote API. - + @@ -5811,17 +5807,17 @@ Indholdet er ikke UTF-8. OpenLP 2.0 Stage View - + Service Manager - + Slide Controller - + @@ -5871,7 +5867,7 @@ Indholdet er ikke UTF-8. Go Live - + @@ -5891,22 +5887,22 @@ Indholdet er ikke UTF-8. Home - + Theme - Tema + Desktop - + Add &amp; Go to Service - + @@ -5914,7 +5910,7 @@ Indholdet er ikke UTF-8. Serve on IP address: - + @@ -5934,7 +5930,7 @@ Indholdet er ikke UTF-8. Stage view URL: - + @@ -5944,12 +5940,12 @@ Indholdet er ikke UTF-8. Android App - + Scan the QR code or click <a href="https://market.android.com/details?id=org.openlp.android">download</a> to install the Android app from the Market. - + @@ -6048,7 +6044,7 @@ Indholdet er ikke UTF-8. Delete Selected Song Usage Events? - + @@ -6058,17 +6054,17 @@ Indholdet er ikke UTF-8. Deletion Successful - + All requested data has been deleted successfully. - + Select the date up to which the song usage data should be deleted. All data recorded before this date will be permanently deleted. - + @@ -6076,7 +6072,7 @@ Indholdet er ikke UTF-8. Song Usage Extraction - + @@ -6125,7 +6121,7 @@ er blevet oprettet. You have not set a valid output location for your song usage report. Please select an existing path on your computer. - + @@ -6240,13 +6236,13 @@ er blevet oprettet. The codepage setting is responsible for the correct character representation. Usually you are fine with the preselected choice. - + Please choose the character encoding. The encoding is responsible for the correct character representation. - + @@ -6294,7 +6290,7 @@ The encoding is responsible for the correct character representation. Send the selected song live. - + @@ -6307,7 +6303,7 @@ The encoding is responsible for the correct character representation. Author Maintenance - + @@ -6360,7 +6356,7 @@ The encoding is responsible for the correct character representation. [above are Song Tags with notes imported from EasyWorship] - + @@ -6368,12 +6364,12 @@ The encoding is responsible for the correct character representation. Meta Data - + Custom Book Names - + @@ -6381,7 +6377,7 @@ The encoding is responsible for the correct character representation. Song Editor - + @@ -6576,12 +6572,12 @@ The encoding is responsible for the correct character representation. <strong>Warning:</strong> Not all of the verses are in use. - + The verse order is invalid. There are no verses corresponding to %s. Valid entries are %s. - + @@ -6612,7 +6608,7 @@ The encoding is responsible for the correct character representation. Song Export Wizard - + @@ -6662,7 +6658,7 @@ The encoding is responsible for the correct character representation. No Save Location specified - + @@ -6710,7 +6706,7 @@ The encoding is responsible for the correct character representation. Generic Document/Presentation - + @@ -6780,7 +6776,7 @@ The encoding is responsible for the correct character representation. The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. - + @@ -6795,72 +6791,72 @@ The encoding is responsible for the correct character representation. CCLI SongSelect Files - + EasySlides XML File - + EasyWorship Song Database - + DreamBeam Song Files - + You need to specify a valid PowerSong 1.0 database folder. - + ZionWorx (CSV) - + First convert your ZionWorx database to a CSV text file, as explained in the <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">User Manual</a>. - + SundayPlus Song Files - + This importer has been disabled. - + MediaShout Database - + The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. - + SongPro Text Files - + SongPro (Export File) - + In SongPro, export your songs using the File -> Export menu - + @@ -6896,15 +6892,12 @@ The encoding is responsible for the correct character representation. Entire Song - + Are you sure you want to delete the %n selected song(s)? - - Er du sikker på at du vil slette de %n valgte sange? - - + Er du sikker på at du vil slette de %n valgte sange? @@ -6915,32 +6908,32 @@ The encoding is responsible for the correct character representation. copy For song cloning - + Search Titles... - + Search Entire Song... - + Search Lyrics... - + Search Authors... - + Search Song Books... - + @@ -6948,7 +6941,7 @@ The encoding is responsible for the correct character representation. Unable to open the MediaShout database. - + @@ -6980,12 +6973,12 @@ The encoding is responsible for the correct character representation. No songs to import. - + Verses not found. Missing "PART" header. - + @@ -7180,12 +7173,12 @@ The encoding is responsible for the correct character representation. Update service from song edit - + Import missing songs from service files - + @@ -7249,12 +7242,12 @@ The encoding is responsible for the correct character representation. Error reading CSV file. - + File not valid ZionWorx CSV format. - + - + \ No newline at end of file diff --git a/resources/i18n/de.ts b/resources/i18n/de.ts index 2def182a2..d84b1d943 100644 --- a/resources/i18n/de.ts +++ b/resources/i18n/de.ts @@ -1,5 +1,4 @@ - - + AlertsPlugin @@ -102,7 +101,7 @@ Möchten Sie dennoch fortfahren? - The alert text does not contain '<>'. + The alert text does not contain '<>'. Do you want to continue anyway? Der Hinweistext enthält nicht '<>'. Möchten Sie dennoch fortfahren? @@ -1371,7 +1370,7 @@ werden. Daher ist eine Internetverbindung erforderlich. Are you sure you want to completely delete "%s" Bible from OpenLP? You will need to re-import this Bible to use it again. - + @@ -1379,7 +1378,7 @@ You will need to re-import this Bible to use it again. Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. - + @@ -1702,7 +1701,7 @@ Bitte beachten Sie, dass Bibeltexte von Onlinebibeln bei Bedarf heruntergeladen Edit Slide - + @@ -1710,10 +1709,7 @@ Bitte beachten Sie, dass Bibeltexte von Onlinebibeln bei Bedarf heruntergeladen Are you sure you want to delete the %n selected custom slide(s)? - - Soll die markierte Sonderfolie wirklich gelöscht werden? - Sollen die markierten %n Sonderfolien wirklich gelöscht werden? - + Soll die markierte Sonderfolie wirklich gelöscht werden?Sollen die markierten %n Sonderfolien wirklich gelöscht werden? @@ -2078,7 +2074,7 @@ Translators %s Japanese (ja) %s - Norwegian Bokmål (nb) + Norwegian Bokmål (nb) %s Dutch (nl) %s @@ -2191,8 +2187,8 @@ OpenLP wird von freiwilligen Helfern programmiert und gewartet. Wenn Sie sich me - Copyright © 2004-2012 %s -Portions copyright © 2004-2012 %s + Copyright © 2004-2012 %s +Portions copyright © 2004-2012 %s Copyright © 2004-2012 %s Anteiliges Copyright © 2004-2012 %s @@ -5054,12 +5050,12 @@ Der Inhalt ist nicht in UTF-8 kodiert. Preview and Save - + Preview the theme and save it. - + @@ -5455,7 +5451,7 @@ Der Inhalt ist nicht in UTF-8 kodiert. - © + © Copyright symbol. © @@ -6913,37 +6909,37 @@ Easy Worship] SundayPlus Song Files - + This importer has been disabled. - + MediaShout Database - + The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. - + SongPro Text Files - + SongPro (Export File) - + In SongPro, export your songs using the File -> Export menu - + @@ -6984,10 +6980,7 @@ Easy Worship] Are you sure you want to delete the %n selected song(s)? - - Soll das markierte Lied wirklich gelöscht werden? - Sollen die markierten %n Lieder wirklich gelöscht werden? - + Soll das markierte Lied wirklich gelöscht werden?Sollen die markierten %n Lieder wirklich gelöscht werden? @@ -7031,7 +7024,7 @@ Easy Worship] Unable to open the MediaShout database. - + @@ -7340,4 +7333,4 @@ Easy Worship] Die Datei hat kein gültiges ZionWorx CSV Format. - + \ No newline at end of file diff --git a/resources/i18n/el.ts b/resources/i18n/el.ts index d7ea9e9b3..8610ef851 100644 --- a/resources/i18n/el.ts +++ b/resources/i18n/el.ts @@ -1,5 +1,4 @@ - - + AlertsPlugin @@ -102,7 +101,7 @@ Do you want to continue anyway? - The alert text does not contain '<>'. + The alert text does not contain '<>'. Do you want to continue anyway? Η ειδοποίηση δεν περιέχει '<>'. Θέλετε να συνεχίσετε οπωσδήποτε; @@ -1368,7 +1367,7 @@ demand and thus an internet connection is required. Are you sure you want to completely delete "%s" Bible from OpenLP? You will need to re-import this Bible to use it again. - + @@ -1376,7 +1375,7 @@ You will need to re-import this Bible to use it again. Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. - + @@ -1699,7 +1698,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I Edit Slide - + @@ -1707,10 +1706,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I Are you sure you want to delete the %n selected custom slide(s)? - - Είστε σίγουροι ότι θέλετε να διαγράψετε την %n επιλεγμένη εξατομικευμένη διαφάνεια; - Είστε σίγουροι ότι θέλετε να διαγράψετε τις %n επιλεγμένες εξατομικευμένες διαφάνειες; - + Είστε σίγουροι ότι θέλετε να διαγράψετε την %n επιλεγμένη εξατομικευμένη διαφάνεια;Είστε σίγουροι ότι θέλετε να διαγράψετε τις %n επιλεγμένες εξατομικευμένες διαφάνειες; @@ -2075,7 +2071,7 @@ Translators %s Japanese (ja) %s - Norwegian Bokmål (nb) + Norwegian Bokmål (nb) %s Dutch (nl) %s @@ -2185,8 +2181,8 @@ OpenLP is written and maintained by volunteers. If you would like to see more fr - Copyright © 2004-2012 %s -Portions copyright © 2004-2012 %s + Copyright © 2004-2012 %s +Portions copyright © 2004-2012 %s Πνευματικά Δικαιώματα © 2004-2012 %s Τμηματικά πνευματικά δικαιώματα © 2004-2012 %s @@ -5047,12 +5043,12 @@ The content encoding is not UTF-8. Preview and Save - + Preview the theme and save it. - + @@ -5448,7 +5444,7 @@ The content encoding is not UTF-8. - © + © Copyright symbol. © @@ -6905,37 +6901,37 @@ The encoding is responsible for the correct character representation. SundayPlus Song Files - + This importer has been disabled. - + MediaShout Database - + The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. - + SongPro Text Files - + SongPro (Export File) - + In SongPro, export your songs using the File -> Export menu - + @@ -6976,10 +6972,7 @@ The encoding is responsible for the correct character representation. Are you sure you want to delete the %n selected song(s)? - - Είστε σίγουροι ότι θέλετε να διαγράψετε τον %n επιλεγμένο ύμνο; - Είστε σίγουροι ότι θέλετε να διαγράψετε τους %n επιλεγμένους ύμνους; - + Είστε σίγουροι ότι θέλετε να διαγράψετε τον %n επιλεγμένο ύμνο;Είστε σίγουροι ότι θέλετε να διαγράψετε τους %n επιλεγμένους ύμνους; @@ -7023,7 +7016,7 @@ The encoding is responsible for the correct character representation. Unable to open the MediaShout database. - + @@ -7332,4 +7325,4 @@ The encoding is responsible for the correct character representation. Το αρχείο δεν έχει την κατάλληλη μορφή του ZionWorx CSV. - + \ No newline at end of file diff --git a/resources/i18n/en.ts b/resources/i18n/en.ts index 82b5cd63e..e1d6436d7 100644 --- a/resources/i18n/en.ts +++ b/resources/i18n/en.ts @@ -1,5 +1,4 @@ - - + AlertsPlugin @@ -102,7 +101,7 @@ Do you want to continue anyway? - The alert text does not contain '<>'. + The alert text does not contain '<>'. Do you want to continue anyway? The alert text does not contain '<>'. Do you want to continue anyway? @@ -1709,10 +1708,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I Are you sure you want to delete the %n selected custom slide(s)? - - Are you sure you want to delete the %n selected custom slide(s)? - Are you sure you want to delete the %n selected custom slide(s)? - + Are you sure you want to delete the %n selected custom slide(s)?Are you sure you want to delete the %n selected custom slide(s)? @@ -2077,7 +2073,7 @@ Translators %s Japanese (ja) %s - Norwegian Bokmål (nb) + Norwegian Bokmål (nb) %s Dutch (nl) %s @@ -2187,8 +2183,8 @@ OpenLP is written and maintained by volunteers. If you would like to see more fr - Copyright © 2004-2012 %s -Portions copyright © 2004-2012 %s + Copyright © 2004-2012 %s +Portions copyright © 2004-2012 %s Copyright © 2004-2012 %s Portions copyright © 2004-2012 %s @@ -5449,7 +5445,7 @@ The content encoding is not UTF-8. - © + © Copyright symbol. © @@ -6977,10 +6973,7 @@ The encoding is responsible for the correct character representation. Are you sure you want to delete the %n selected song(s)? - - Are you sure you want to delete the %n selected song(s)? - Are you sure you want to delete the %n selected song(s)? - + Are you sure you want to delete the %n selected song(s)?Are you sure you want to delete the %n selected song(s)? @@ -7333,4 +7326,4 @@ The encoding is responsible for the correct character representation.File not valid ZionWorx CSV format. - + \ No newline at end of file diff --git a/resources/i18n/en_GB.ts b/resources/i18n/en_GB.ts index 1409b2133..8f51022ab 100644 --- a/resources/i18n/en_GB.ts +++ b/resources/i18n/en_GB.ts @@ -1,5 +1,4 @@ - - + AlertsPlugin @@ -102,7 +101,7 @@ Do you want to continue anyway? - The alert text does not contain '<>'. + The alert text does not contain '<>'. Do you want to continue anyway? The alert text does not contain '<>'. Do you want to continue anyway? @@ -1709,10 +1708,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I Are you sure you want to delete the %n selected custom slide(s)? - - Are you sure you want to delete the %n selected custom slide(s)? - Are you sure you want to delete the %n selected custom slide(s)? - + Are you sure you want to delete the %n selected custom slide(s)?Are you sure you want to delete the %n selected custom slide(s)? @@ -2077,7 +2073,7 @@ Translators %s Japanese (ja) %s - Norwegian Bokmål (nb) + Norwegian Bokmål (nb) %s Dutch (nl) %s @@ -2187,8 +2183,8 @@ OpenLP is written and maintained by volunteers. If you would like to see more fr - Copyright © 2004-2012 %s -Portions copyright © 2004-2012 %s + Copyright © 2004-2012 %s +Portions copyright © 2004-2012 %s Copyright © 2004-2012 %s Portions copyright © 2004-2012 %s @@ -5448,7 +5444,7 @@ The content encoding is not UTF-8. - © + © Copyright symbol. © @@ -6976,10 +6972,7 @@ The encoding is responsible for the correct character representation. Are you sure you want to delete the %n selected song(s)? - - Are you sure you want to delete the %n selected song? - Are you sure you want to delete the %n selected songs? - + Are you sure you want to delete the %n selected song?Are you sure you want to delete the %n selected songs? @@ -7332,4 +7325,4 @@ The encoding is responsible for the correct character representation.File not valid ZionWorx CSV format. - + \ No newline at end of file diff --git a/resources/i18n/en_ZA.ts b/resources/i18n/en_ZA.ts index 7f7c60326..6f9b5976b 100644 --- a/resources/i18n/en_ZA.ts +++ b/resources/i18n/en_ZA.ts @@ -1,5 +1,4 @@ - - + AlertsPlugin @@ -102,7 +101,7 @@ Do you want to continue anyway? - The alert text does not contain '<>'. + The alert text does not contain '<>'. Do you want to continue anyway? The alert text does not contain '<>'. Do you want to continue anyway? @@ -666,44 +665,44 @@ Do you want to continue anyway? You need to specify a version name for your Bible. - You need to specify a version name for your Bible. + You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. - You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. + Bible Exists - Bible Exists + This Bible already exists. Please import a different Bible or first delete the existing one. - This Bible already exists. Please import a different Bible or first delete the existing one. + You need to specify a book name for "%s". - + The book name "%s" is not correct. Numbers can only be used at the beginning and must be followed by one or more non-numeric characters. - + Duplicate Book Name - + The Book Name "%s" has been entered more than once. - + @@ -879,23 +878,23 @@ Please clear this edit line to use the default value. Default Bible Language - + Book name language in search field, search results and on display: - + Bible Language - + Application Language - + @@ -938,7 +937,7 @@ search results and on display: The following book name cannot be matched up internally. Please select the corresponding name from the list. - + @@ -973,68 +972,68 @@ search results and on display: Bible Editor - + License Details - License Details + Version name: - Version name: + Copyright: - Copyright: + Permissions: - Permissions: + Default Bible Language - + Book name language in search field, search results and on display: - + Global Settings - + Bible Language - + Application Language - + English - + This is a Web Download Bible. It is not possible to customize the Book Names. - + To use the customized book names, "Bible language" must be selected on the Meta Data tab or, if "Global settings" is selected, on the Bible page in Configure OpenLP. - + @@ -1352,19 +1351,19 @@ demand and thus an internet connection is required. Search Scripture Reference... - + Search Text... - + Are you sure you want to completely delete "%s" Bible from OpenLP? You will need to re-import this Bible to use it again. - + @@ -1372,7 +1371,7 @@ You will need to re-import this Bible to use it again. Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. - + @@ -1695,7 +1694,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I Edit Slide - + @@ -1703,10 +1702,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I Are you sure you want to delete the %n selected custom slide(s)? - - Are you sure you want to delete the selected custom slide? - Are you sure you want to delete the %n selected custom slides? - + Are you sure you want to delete the selected custom slide?Are you sure you want to delete the %n selected custom slides? @@ -1838,7 +1834,7 @@ Do you want to add the other images anyway? Visible background for images with aspect ratio different to screen. - + @@ -2071,7 +2067,7 @@ Translators %s Japanese (ja) %s - Norwegian Bokmål (nb) + Norwegian Bokmål (nb) %s Dutch (nl) %s @@ -2181,8 +2177,8 @@ OpenLP is written and maintained by volunteers. If you would like to see more fr - Copyright © 2004-2012 %s -Portions copyright © 2004-2012 %s + Copyright © 2004-2012 %s +Portions copyright © 2004-2012 %s Copyright © 2004-2012 %s Portions copyright © 2004-2012 %s @@ -2379,84 +2375,84 @@ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for Data Location - + Current path: - + Custom path: - + Browse for new data file location. - + Set the data location to the default. - + Cancel - Cancel + Cancel OpenLP data directory location change. - + Copy data to new location. - + Copy the OpenLP data files to the new location. - + <strong>WARNING:</strong> New data directory location contains OpenLP data files. These files WILL be replaced during a copy. - + Data Directory Error - + Select Data Directory Location - + Confirm Data Directory Change - + Reset Data Directory - + Are you sure you want to change the location of the OpenLP data directory to the default location? This location will be used after OpenLP is closed. - + Overwrite Existing Data - + @@ -2810,14 +2806,14 @@ Version: %s No Internet connection was found. The First Time Wizard needs an Internet connection in order to be able to download sample songs, Bibles and themes. Click the Finish button now to start OpenLP with initial settings and no sample data. To re-run the First Time Wizard and import this sample data at a later time, check your Internet connection and re-run this wizard by selecting "Tools/Re-run First Time Wizard" from OpenLP. - + To cancel the First Time Wizard completely (and not start OpenLP), click the Cancel button now. - + @@ -3114,22 +3110,22 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can Behavior of next/previous on the last/first slide: - + &Remain on Slide - + &Wrap around - + &Move to next/previous service item - + @@ -3636,7 +3632,7 @@ Importing incorrect settings may cause erratic behaviour or OpenLP to terminate New Data Directory Error - + @@ -4193,12 +4189,12 @@ The content encoding is not UTF-8. Error Saving File - + There was an error saving your file. - + @@ -5036,12 +5032,12 @@ The content encoding is not UTF-8. Preview and Save - + Preview the theme and save it. - + @@ -5437,7 +5433,7 @@ The content encoding is not UTF-8. - © + © Copyright symbol. © @@ -5636,53 +5632,53 @@ The content encoding is not UTF-8. Search Themes... Search bar place holder text - + Optional &Split - + Invalid Folder Selected Singular - + Invalid File Selected Singular - + Invalid Files Selected Plural - + No Folder Selected Singular - + Open %s Folder - + You need to specify one %s file to import from. A file type e.g. OpenSong - + You need to specify one %s folder to import from. A song format e.g. PowerSong - + @@ -5808,12 +5804,12 @@ The content encoding is not UTF-8. The presentation %s is incomplete, please reload. - + The presentation %s no longer exists. - + @@ -5950,22 +5946,22 @@ The content encoding is not UTF-8. Home - + Theme - Theme + Desktop - + Add &amp; Go to Service - + @@ -6432,12 +6428,12 @@ The encoding is responsible for the correct character representation. Meta Data - + Custom Book Names - + @@ -6859,72 +6855,72 @@ The encoding is responsible for the correct character representation. CCLI SongSelect Files - + EasySlides XML File - + EasyWorship Song Database - + DreamBeam Song Files - + You need to specify a valid PowerSong 1.0 database folder. - + ZionWorx (CSV) - + First convert your ZionWorx database to a CSV text file, as explained in the <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">User Manual</a>. - + SundayPlus Song Files - + This importer has been disabled. - + MediaShout Database - + The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. - + SongPro Text Files - + SongPro (Export File) - + In SongPro, export your songs using the File -> Export menu - + @@ -6965,10 +6961,7 @@ The encoding is responsible for the correct character representation. Are you sure you want to delete the %n selected song(s)? - - Are you sure you want to delete the %n selected song(s)? - Are you sure you want to delete the %n selected song(s)? - + Are you sure you want to delete the %n selected song(s)?Are you sure you want to delete the %n selected song(s)? @@ -6984,27 +6977,27 @@ The encoding is responsible for the correct character representation. Search Titles... - + Search Entire Song... - + Search Lyrics... - + Search Authors... - + Search Song Books... - + @@ -7012,7 +7005,7 @@ The encoding is responsible for the correct character representation. Unable to open the MediaShout database. - + @@ -7044,12 +7037,12 @@ The encoding is responsible for the correct character representation. No songs to import. - + Verses not found. Missing "PART" header. - + @@ -7249,7 +7242,7 @@ The encoding is responsible for the correct character representation. Import missing songs from service files - + @@ -7313,12 +7306,12 @@ The encoding is responsible for the correct character representation. Error reading CSV file. - + File not valid ZionWorx CSV format. - + - + \ No newline at end of file diff --git a/resources/i18n/es.ts b/resources/i18n/es.ts index 662bd1c0c..3a72057c5 100644 --- a/resources/i18n/es.ts +++ b/resources/i18n/es.ts @@ -1,5 +1,4 @@ - - + AlertsPlugin @@ -102,7 +101,7 @@ Do you want to continue anyway? - The alert text does not contain '<>'. + The alert text does not contain '<>'. Do you want to continue anyway? El texto de alerta no contiene '<>'. ¿Desea continuar de todos modos? @@ -1378,7 +1377,7 @@ Deberá reimportar esta Biblia para utilizarla de nuevo. Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. - + @@ -1709,10 +1708,7 @@ Note que los versículos se descargarán según sea necesario, por lo que debe c Are you sure you want to delete the %n selected custom slide(s)? - - ¿Desea borrar la diapositiva seleccionada? - ¿Desea borrar las %n diapositivas seleccionadas? - + ¿Desea borrar la diapositiva seleccionada?¿Desea borrar las %n diapositivas seleccionadas? @@ -2077,7 +2073,7 @@ Translators %s Japanese (ja) %s - Norwegian Bokmål (nb) + Norwegian Bokmål (nb) %s Dutch (nl) %s @@ -2187,8 +2183,8 @@ OpenLP es desarrollado y mantenido por voluntarios. Si desea apoyar la creación - Copyright © 2004-2012 %s -Portions copyright © 2004-2012 %s + Copyright © 2004-2012 %s +Portions copyright © 2004-2012 %s Copyright © 2004-2012 %s Portions copyright © 2004-2012 %s @@ -5450,7 +5446,7 @@ La codificación del contenido no es UTF-8. - © + © Copyright symbol. © @@ -6917,27 +6913,27 @@ La codificación se encarga de la correcta representación de caracteres. MediaShout Database - + The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. - + SongPro Text Files - + SongPro (Export File) - + In SongPro, export your songs using the File -> Export menu - + @@ -6978,10 +6974,7 @@ La codificación se encarga de la correcta representación de caracteres. Are you sure you want to delete the %n selected song(s)? - - ¿Desea borrar %n canción seleccionada? - ¿Desea borrar las %n canciones seleccionadas? - + ¿Desea borrar %n canción seleccionada?¿Desea borrar las %n canciones seleccionadas? @@ -7025,7 +7018,7 @@ La codificación se encarga de la correcta representación de caracteres. Unable to open the MediaShout database. - + @@ -7334,4 +7327,4 @@ La codificación se encarga de la correcta representación de caracteres.Archivo ZionWorx CSV inválido. - + \ No newline at end of file diff --git a/resources/i18n/et.ts b/resources/i18n/et.ts index fac6ed984..e6573b458 100644 --- a/resources/i18n/et.ts +++ b/resources/i18n/et.ts @@ -1,5 +1,4 @@ - - + AlertsPlugin @@ -102,7 +101,7 @@ Kas tahad siiski jätkata? - The alert text does not contain '<>'. + The alert text does not contain '<>'. Do you want to continue anyway? Teate tekst ei sisalda '<>' märke. Kas tahad siiski jätkata? @@ -1708,10 +1707,7 @@ Pane tähele, et veebipiiblite salmid laaditakse internetist vajadusel, seega on Are you sure you want to delete the %n selected custom slide(s)? - - Kas tahad kindlasti %n valitud kohandatud slaidi kustutada? - Kas tahad kindlasti %n valitud kohandatud slaidi kustutada? - + Kas tahad kindlasti %n valitud kohandatud slaidi kustutada?Kas tahad kindlasti %n valitud kohandatud slaidi kustutada? @@ -2076,7 +2072,7 @@ Translators %s Japanese (ja) %s - Norwegian Bokmål (nb) + Norwegian Bokmål (nb) %s Dutch (nl) %s @@ -2185,8 +2181,8 @@ OpenLP on kirjutanud ja seda haldavad vabatahtlikud. Kui sa tahad näha rohkem t - Copyright © 2004-2012 %s -Portions copyright © 2004-2012 %s + Copyright © 2004-2012 %s +Portions copyright © 2004-2012 %s Copyright © 2004-2012 %s Osaline copyright © 2004-2012 %s @@ -5449,7 +5445,7 @@ Sisu ei ole UTF-8 kodeeringus. - © + © Copyright symbol. © @@ -6976,10 +6972,7 @@ Kodeering on vajalik märkide õige esitamise jaoks. Are you sure you want to delete the %n selected song(s)? - - Kas sa oled kindel, et soovid kustutada %n valitud laulu? - Kas sa oled kindel, et soovid kustutada %n valitud laulu? - + Kas sa oled kindel, et soovid kustutada %n valitud laulu?Kas sa oled kindel, et soovid kustutada %n valitud laulu? @@ -7332,4 +7325,4 @@ Kodeering on vajalik märkide õige esitamise jaoks. Fail ei ole korrektses ZionWorx CSV vormingus. - + \ No newline at end of file diff --git a/resources/i18n/fi.ts b/resources/i18n/fi.ts index 5b8093121..c0a1c11ef 100644 --- a/resources/i18n/fi.ts +++ b/resources/i18n/fi.ts @@ -1,5 +1,4 @@ - - + AlertsPlugin @@ -102,7 +101,7 @@ Tahdotko jatkaa siitä huolimatta? - The alert text does not contain '<>'. + The alert text does not contain '<>'. Do you want to continue anyway? Hälytystekstissä ei ole lainkaan '<>' parametria. Tahdotko jatkaa siitä huolimatta? @@ -237,428 +236,428 @@ Tahdotko jatkaa siitä huolimatta? Genesis - + Exodus - + Leviticus - + Numbers - + Deuteronomy - + Joshua - + Judges - + Ruth - + 1 Samuel - + 2 Samuel - + 1 Kings - + 2 Kings - + 1 Chronicles - + 2 Chronicles - + Ezra - + Nehemiah - + Esther - + Job - + Psalms - + Proverbs - + Ecclesiastes - + Song of Solomon - + Isaiah - + Jeremiah - + Lamentations - + Ezekiel - + Daniel - + Hosea - + Joel - + Amos - + Obadiah - + Jonah - + Micah - + Nahum - + Habakkuk - + Zephaniah - + Haggai - + Zechariah - + Malachi - + Matthew - + Mark - + Luke - + John - + Acts - + Romans - + 1 Corinthians - + 2 Corinthians - + Galatians - + Ephesians - + Philippians - + Colossians - + 1 Thessalonians - + 2 Thessalonians - + 1 Timothy - + 2 Timothy - + Titus - + Philemon - + Hebrews - + James - + 1 Peter - + 2 Peter - + 1 John - + 2 John - + 3 John - + Jude - + Revelation - + Judith - + Wisdom - + Tobit - + Sirach - + Baruch - + 1 Maccabees - + 2 Maccabees - + 3 Maccabees - + 4 Maccabees - + Rest of Daniel - + Rest of Esther - + Prayer of Manasses - + Letter of Jeremiah - + Prayer of Azariah - + Susanna - + Bel - + 1 Esdras - + 2 Esdras - + :|v|V|verse|verses;;-|to;;,|and;;end Double-semicolon delimited separators for parsing references. Consult the developers for further information. - + @@ -666,44 +665,44 @@ Tahdotko jatkaa siitä huolimatta? You need to specify a version name for your Bible. - Anna nimi käännökselle, joka tuodaan ohjelmaan. + You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. - Sinun pitää määritellä tekijäinoikeusteksti Raamatulle. Myös Public Domain -lisenssi pitää mainita. + Bible Exists - Raamattu on jo olemassa + This Bible already exists. Please import a different Bible or first delete the existing one. - Tämä Raamattu on jo olemassa. Ole hyvä ja tuo eri käännös tai poista ensin nykyinen samalla nimellä oleva. + You need to specify a book name for "%s". - + The book name "%s" is not correct. Numbers can only be used at the beginning and must be followed by one or more non-numeric characters. - + Duplicate Book Name - + The Book Name "%s" has been entered more than once. - + @@ -751,7 +750,7 @@ Book Chapter%(verse)sVerse%(range)sVerse%(list)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sVerse%(list)sChapter%(verse)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sChapter%(verse)sVerse Please pay attention to the appended "s" of the wildcards and refrain from translating the words inside the names in the brackets. - + @@ -806,81 +805,81 @@ Muutokset eivät vaikuta jakeisiin, jotka on jo ajolistalla. Custom Scripture References - + Verse Separator: - + Range Separator: - + List Separator: - + End Mark: - + Multiple alternative verse separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. - + Multiple alternative range separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. - + Multiple alternative list separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. - + Multiple alternative end marks may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. - + English - + Default Bible Language - + Book name language in search field, search results and on display: - + Bible Language - + Application Language - + @@ -923,7 +922,7 @@ search results and on display: The following book name cannot be matched up internally. Please select the corresponding name from the list. - + @@ -958,68 +957,68 @@ search results and on display: Bible Editor - + License Details - Käyttöoikeus + Version name: - Käännöksen nimi: + Copyright: - Tekijäinoikeus: + Permissions: - Oikeudet: + Default Bible Language - + Book name language in search field, search results and on display: - + Global Settings - + Bible Language - + Application Language - + English - + This is a Web Download Bible. It is not possible to customize the Book Names. - + To use the customized book names, "Bible language" must be selected on the Meta Data tab or, if "Global settings" is selected, on the Bible page in Configure OpenLP. - + @@ -1337,19 +1336,19 @@ tarpeen mukaan, joten internet yhteys tämän raamatun käytössä vaaditaan. Search Scripture Reference... - + Search Text... - + Are you sure you want to completely delete "%s" Bible from OpenLP? You will need to re-import this Bible to use it again. - + @@ -1357,7 +1356,7 @@ You will need to re-import this Bible to use it again. Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. - + @@ -1504,32 +1503,33 @@ Valmis Upgrading Bible(s): %s successful%s Please note that verses from Web Bibles will be downloaded on demand and so an Internet connection is required. - + Raamattujen päivitys: %s onnistui %s +Ole hyvä ja huomaa, että jakeet nettiraamatuista ladataan käytettäessä, joten nettiyhteys niiden käyttämiseksi vaaditaan. Upgrading Bible(s): %s successful%s - + Päivitetään Raamattuja: %s onnistui %s. Upgrade failed. - + Päivitys epäonnistui. You need to specify a backup directory for your Bibles. - + Määrittele hakemisto Raamattujen varmuuskopioille. Starting upgrade... - + Aloitetaan päivitys... There are no Bibles that need to be upgraded. - + Ei ole päivitettäviä Ramaattuja. @@ -1537,65 +1537,65 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I <strong>Custom Slide Plugin</strong><br />The custom slide plugin provides the ability to set up custom text slides that can be displayed on the screen the same way songs are. This plugin provides greater freedom over the songs plugin. - + <strong>Mukautetut diat</strong><br />Mukautetut diat ominaisuus mahdollistaa yksittäisten diojen näyttämisen laulujen tapaan. Mukautetut diat sen sijaan voidaan muokata vapaammin omiin tarkoituksiin sopiviksi. Custom Slide name singular - + Mukautettu dia Custom Slides name plural - + Mukautetut diat Custom Slides container title - + Mukautetut diat Load a new custom slide. - + Lataa uusi mukautettu dia. Import a custom slide. - + Tuo mukautettu dia. Add a new custom slide. - + Lisää uusi mukautettu dia. Edit the selected custom slide. - + Muokkaa valittua mukautettua diaa. Delete the selected custom slide. - + Poista valittu mukautettu dia. Preview the selected custom slide. - + Esikatsele valittua mukautettua diaa. Send the selected custom slide live. - + Add the selected custom slide to the service. - + @@ -1603,12 +1603,12 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I Custom Display - + Display footer - + @@ -1616,7 +1616,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I Edit Custom Slides - + @@ -1679,7 +1679,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I Edit Slide - + @@ -1687,10 +1687,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I Are you sure you want to delete the %n selected custom slide(s)? - - - - + @@ -1698,60 +1695,60 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I <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. - + Image name singular - + Images name plural - + Images container title - + 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. - + @@ -1759,7 +1756,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I Select Attachment - + @@ -1767,43 +1764,43 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I Select Image(s) - + You must select an image to delete. - + You must select an image to replace the background with. - + Missing Image(s) - + The following image(s) no longer exist: %s - + The following image(s) no longer exist: %s Do you want to add the other images anyway? - + There was a problem replacing your background, the image file "%s" no longer exists. - + There was no display item to amend. - + @@ -1811,17 +1808,17 @@ Do you want to add the other images anyway? Background Color - + Default Color: - + Visible background for images with aspect ratio different to screen. - + @@ -1829,60 +1826,60 @@ Do you want to add the other images anyway? <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. - + Media name singular - + Media name plural - + Media container title - + Load new media. - + Add 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. - + @@ -1890,57 +1887,57 @@ Do you want to add the other images anyway? Select Media - + You must select a media file to delete. - + You must select a media file to replace the background with. - + There was a problem replacing your background, the media file "%s" no longer exists. - + Missing Media File - + The file %s no longer exists. - + Videos (%s);;Audio (%s);;%s (*) - + There was no display item to amend. - + Unsupported File - + Automatic - + Use Player: - + @@ -1948,22 +1945,22 @@ Do you want to add the other images anyway? Available Media Players - + %s (unavailable) - + Player Order - + Allow media player to be overridden - + @@ -1971,19 +1968,19 @@ Do you want to add the other images anyway? Image Files - + Information - Tiedot + Bible format has changed. You have to upgrade your existing Bibles. Should OpenLP upgrade now? - + @@ -1991,32 +1988,32 @@ Should OpenLP upgrade now? Credits - + License - + Contribute - + build %s - + This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See below for more details. - + @@ -2052,7 +2049,7 @@ Translators %s Japanese (ja) %s - Norwegian Bokmål (nb) + Norwegian Bokmål (nb) %s Dutch (nl) %s @@ -2081,7 +2078,7 @@ Final Credit on the cross, setting us free from sin. We bring this software to you for free because He has set us free. - + @@ -2092,13 +2089,13 @@ OpenLP is free church presentation software, or lyrics projection software, used Find out more about OpenLP: http://openlp.org/ OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider contributing by using the button below. - + - Copyright © 2004-2012 %s -Portions copyright © 2004-2012 %s - + Copyright © 2004-2012 %s +Portions copyright © 2004-2012 %s + @@ -2106,271 +2103,271 @@ Portions copyright © 2004-2012 %s UI Settings - + Number of recent files to display: - + Remember active media manager tab on startup - + Double-click to send items straight to live - + Expand new service items on creation - + Enable application exit confirmation - + Mouse Cursor - + Hide mouse cursor when over display window - + Default Image - + Background color: - Taustaväri: + Image file: - + Open File - + Advanced - + Preview items when clicked in Media Manager - + Click to select a color. - + Browse for an image file to display. - + Revert to the default OpenLP logo. - + Service %Y-%m-%d %H-%M This may not contain any of the following characters: /\?*|<>[]":+ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for more information. - + Default Service Name - + Enable default service name - + Date and Time: - + Monday - + Tuesday - + Wednesday - + Thurdsday - + Friday - + Saturday - + Sunday - + Now - + Time when usual service starts. - + Name: - + Consult the OpenLP manual for usage. - + Revert to the default service name "%s". - + Example: - + X11 - + Bypass X11 Window Manager - + Syntax error. - + Data Location - + Current path: - + Custom path: - + Browse for new data file location. - + Set the data location to the default. - + Cancel - + Cancel OpenLP data directory location change. - + Copy data to new location. - + Copy the OpenLP data files to the new location. - + <strong>WARNING:</strong> New data directory location contains OpenLP data files. These files WILL be replaced during a copy. - + Data Directory Error - + Select Data Directory Location - + Confirm Data Directory Change - + Reset Data Directory - + Are you sure you want to change the location of the OpenLP data directory to the default location? This location will be used after OpenLP is closed. - + Overwrite Existing Data - + @@ -2378,38 +2375,38 @@ This location will be used after OpenLP is closed. Error Occurred - + Oops! OpenLP hit a problem, and couldn't recover. The text in the box below contains information that might be helpful to the OpenLP developers, so please e-mail it to bugs@openlp.org, along with a detailed description of what you were doing when the problem occurred. - + Send E-Mail - + Save to File - + Please enter a description of what you were doing to cause this error (Minimum 20 characters) - + Attach File - + Description characters to enter : %s - + @@ -2418,17 +2415,17 @@ This location will be used after OpenLP is closed. Platform: %s - + Save Crash Report - + Text files (*.txt *.log *.text) - + @@ -2446,7 +2443,7 @@ Version: %s --- Library Versions --- %s - + @@ -2465,7 +2462,7 @@ Version: %s %s Please add the information that bug reports are favoured written in English. - + @@ -2473,17 +2470,17 @@ Version: %s File Rename - + New File Name: - + File Copy - + @@ -2491,17 +2488,17 @@ Version: %s Select Translation - + Choose the translation you'd like to use in OpenLP. - + Translation: - + @@ -2509,201 +2506,201 @@ Version: %s Songs - + First Time Wizard - + Welcome to the First Time Wizard - + Activate required Plugins - + Select the Plugins you wish to use. - + Bible - Raamattu + Images - + Presentations - + Media (Audio and Video) - + Allow remote access - + Monitor Song Usage - + Allow Alerts - + Default Settings - + Downloading %s... - + Download complete. Click the finish button to start OpenLP. - + Enabling selected plugins... - + No Internet Connection - + Unable to detect an Internet connection. - + Sample Songs - + Select and download public domain songs. - + Sample Bibles - + Select and download free Bibles. - + Sample Themes - + Select and download sample themes. - + Set up default settings to be used by OpenLP. - + Default output display: - + Select default theme: - + Starting configuration process... - + This wizard will help you to configure OpenLP for initial use. Click the next button below to start. - + Setting Up And Downloading - + Please wait while OpenLP is set up and your data is downloaded. - + Setting Up - + Click the finish button to start OpenLP. - + Download complete. Click the finish button to return to OpenLP. - + Click the finish button to return to OpenLP. - + Custom Slides - + Finish - + No Internet connection was found. The First Time Wizard needs an Internet connection in order to be able to download sample songs, Bibles and themes. Click the Finish button now to start OpenLP with initial settings and no sample data. To re-run the First Time Wizard and import this sample data at a later time, check your Internet connection and re-run this wizard by selecting "Tools/Re-run First Time Wizard" from OpenLP. - + To cancel the First Time Wizard completely (and not start OpenLP), click the Cancel button now. - + @@ -2711,37 +2708,37 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can Configure Formatting Tags - + Edit Selection - + Save - + Description - + Tag - + Start HTML - + End HTML - + @@ -2749,32 +2746,32 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can Update Error - + Tag "n" already defined. - + New Tag - + <HTML here> - + </and here> - + Tag %s already defined. - + @@ -2782,82 +2779,82 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can Red - + Black - + Blue - + Yellow - + Green - + Pink - + Orange - + Purple - + White - + Superscript - + Subscript - + Paragraph - + Bold - + Italics - + Underline - + Break - + @@ -2865,157 +2862,157 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can General - + Monitors - + Select monitor for output display: - + Display if a single screen - + Application Startup - + Show blank screen warning - + Automatically open the last service - + Show the splash screen - + Application Settings - + Prompt to save before starting a new service - + Automatically preview next item in service - + sec - + CCLI Details - + SongSelect username: - + SongSelect password: - + X - + Y - + Height - + Width - + Check for updates to OpenLP - + Unblank display when adding new live item - + Timed slide interval: - + Background Audio - + Start background audio paused - + Service Item Slide Limits - + Override display position: - + Repeat track list - + Behavior of next/previous on the last/first slide: - + &Remain on Slide - + &Wrap around - + &Move to next/previous service item - + @@ -3023,12 +3020,12 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can Language - + Please restart OpenLP to use your new language setting. - + @@ -3036,7 +3033,7 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can OpenLP Display - + @@ -3044,433 +3041,433 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can &File - + &Import - + &Export - + &View - + M&ode - + &Tools - + &Settings - + &Language - + &Help - + Media Manager - + Service Manager - + Theme Manager - + &New - &Uusi + &Open - + Open an existing service. - + &Save - &Tallenna + Save the current service to disk. - + Save &As... - + Save Service As - + Save the current service under a new name. - + E&xit - + Quit OpenLP - + &Theme - + &Configure OpenLP... - + &Media Manager - + Toggle Media Manager - + Toggle the visibility of the media manager. - + &Theme Manager - + Toggle Theme Manager - + Toggle the visibility of the theme manager. - + &Service Manager - + Toggle Service Manager - + Toggle the visibility of the service manager. - + &Preview Panel - + Toggle Preview Panel - + Toggle the visibility of the preview panel. - + &Live Panel - + Toggle Live Panel - + Toggle the visibility of the live panel. - + &Plugin List - + List the Plugins - + &User Guide - + &About - + More information about OpenLP - + &Online Help - + &Web Site - + Use the system language, if available. - + Set the interface language to %s - + Add &Tool... - + Add an application to the list of tools. - + &Default - + Set the view mode back to the default. - + &Setup - + Set the view mode to Setup. - + &Live - + Set the view mode to Live. - + Version %s of OpenLP is now available for download (you are currently running version %s). You can download the latest version from http://openlp.org/. - + OpenLP Version Updated - + OpenLP Main Display Blanked - + The Main Display has been blanked out - + Default Theme: %s - + English Please add the name of your language here - + Finish Configure &Shortcuts... - + Close OpenLP - + Are you sure you want to close OpenLP? - + Open &Data Folder... - + Open the folder where songs, bibles and other data resides. - + &Autodetect - + Update Theme Images - + Update the preview images for all themes. - + Print the current service. - + &Recent Files - + L&ock Panels - + Prevent the panels being moved. - + Re-run First Time Wizard - + Re-run the First Time Wizard, importing songs, Bibles and themes. - + Re-run First Time Wizard? - + Are you sure you want to re-run the First Time Wizard? Re-running this wizard may make changes to your current OpenLP configuration and possibly add songs to your existing songs list and change your default theme. - + Clear List Clear List of recent files - + Clear the list of recent files. - + Configure &Formatting Tags... - + Export OpenLP settings to a specified *.config file - + Settings - + Import OpenLP settings from a specified *.config file previously exported on this or another machine - + Import settings? - + @@ -3479,42 +3476,42 @@ Re-running this wizard may make changes to your current OpenLP configuration and Importing settings will make permanent changes to your current OpenLP configuration. Importing incorrect settings may cause erratic behaviour or OpenLP to terminate abnormally. - + Open File - + OpenLP Export Settings Files (*.conf) - + Import settings - + OpenLP will now close. Imported settings will be applied the next time you start OpenLP. - + Export Settings File - + OpenLP Export Settings File (*.conf) - + New Data Directory Error - + @@ -3522,21 +3519,21 @@ Importing incorrect settings may cause erratic behaviour or OpenLP to terminate Database Error - + The database being loaded was created in a more recent version of OpenLP. The database is version %d, while OpenLP expects version %d. The database will not be loaded. Database: %s - + OpenLP cannot load your database. Database: %s - + @@ -3544,73 +3541,73 @@ Database: %s No Items Selected - + &Add to selected Service Item - + You must select one or more items to preview. - + You must select one or more items to send live. - + You must select one or more items. - + You must select an existing service item to add to. - + Invalid Service Item - + You must select a %s service item. - + You must select one or more items to add. - + No Search Results - + Invalid File Type - + Invalid File %s. Suffix not supported - + &Clone - + Duplicate files were found on import and were ignored. - + @@ -3618,12 +3615,12 @@ Suffix not supported <lyrics> tag is missing. - + <verse> tag is missing. - + @@ -3631,42 +3628,42 @@ Suffix not supported Plugin List - + Plugin Details - + Status: - + Active - + Inactive - + %s (Inactive) - + %s (Active) - + %s (Disabled) - + @@ -3674,12 +3671,12 @@ Suffix not supported Fit Page - + Fit Width - + @@ -3687,77 +3684,77 @@ Suffix not supported Options - + Copy - + Copy as HTML - + Zoom In - + Zoom Out - + Zoom Original - + Other Options - + Include slide text if available - + Include service item notes - + Include play length of media items - + Add page break before each text item - + Service Sheet - + Print - + Title: - + Custom Footer Text: - + @@ -3765,12 +3762,12 @@ Suffix not supported Screen - + primary - + @@ -3778,12 +3775,12 @@ Suffix not supported <strong>Start</strong>: %s - + <strong>Length</strong>: %s - + @@ -3791,7 +3788,7 @@ Suffix not supported Reorder Service Item - + @@ -3799,278 +3796,278 @@ Suffix not supported Move to &top - + Move item to the top of the service. - + Move &up - + Move item up one position in the service. - + Move &down - + Move item down one position in the service. - + Move to &bottom - + Move item to the end of the service. - + &Delete From Service - + Delete the selected item from the service. - + &Add New Item - + &Add to Selected Item - + &Edit Item - + &Reorder Item - + &Notes - + &Change Item Theme - + OpenLP Service Files (*.osz) - + 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 - + &Expand all - + Expand all the service items. - + &Collapse all - + Collapse all the service items. - + Open File - + Moves the selection down the window. - + Move up - + Moves the selection up the window. - + Go Live - + Send the selected item to Live. - + &Start Time - + Show &Preview - + Modified Service - + The current service has been modified. Would you like to save this service? - + Custom Service Notes: - + Notes: - + Playing time: - + Untitled Service - + File could not be opened because it is corrupt. - + Empty File - + This service file does not contain any data. - + Corrupt File - + Load an existing service. - + Save this service. - + Select a theme for the service. - + This file is either corrupt or it is not an OpenLP 2.0 service file. - + Service File Missing - + Slide theme - + Notes - + Edit - + Service copy only - + Error Saving File - + There was an error saving your file. - + @@ -4078,7 +4075,7 @@ The content encoding is not UTF-8. Service Item Notes - + @@ -4086,7 +4083,7 @@ The content encoding is not UTF-8. Configure OpenLP - + @@ -4094,67 +4091,67 @@ The content encoding is not UTF-8. Action - + Shortcut - + Duplicate Shortcut - + The shortcut "%s" is already assigned to another action, please use a different shortcut. - + Alternate - + Select an action and click one of the buttons below to start capturing a new primary or alternate shortcut, respectively. - + Default - + Custom - + Capture shortcut. - + Restore the default shortcut of this action. - + Restore Default Shortcuts - + Do you want to restore all shortcuts to their defaults? - + Configure Shortcuts - + @@ -4162,172 +4159,172 @@ The content encoding is not UTF-8. Hide - + Go To - + Blank Screen - + Blank to Theme - + Show Desktop - + Previous Service - + Next Service - + Escape Item - + Move to previous. - + Move to next. - + Play Slides - + Delay between slides in seconds. - + Move to live. - + Add to Service. - + Edit and reload song preview. - + Start playing media. - + Pause audio. - + Pause playing media. - + Stop playing media. - + Video position. - + Audio Volume. - + Go to "Verse" - + Go to "Chorus" - + Go to "Bridge" - + Go to "Pre-Chorus" - + Go to "Intro" - + Go to "Ending" - + Go to "Other" - + Previous Slide - + Next Slide - + Pause Audio - + Background Audio - + Go to next audio track. - + Tracks - + @@ -4335,17 +4332,17 @@ The content encoding is not UTF-8. Spelling Suggestions - + Formatting Tags - + Language: - Kieli: + @@ -4353,67 +4350,67 @@ The content encoding is not UTF-8. Hours: - + Minutes: - + Seconds: - + Item Start and Finish Time - + Start - + Finish - + Length - + Time Validation Error - + Finish time is set after the end of the media item - + Start time is after the finish time of the media item - + Theme Layout - + The blue box shows the main area. - + The red box shows the footer. - + @@ -4421,32 +4418,32 @@ The content encoding is not UTF-8. Select Image - + Theme Name Missing - + There is no name for this theme. Please enter one. - + Theme Name Invalid - + Invalid theme name. Please enter one. - + (approximately %d lines per slide) - + @@ -4454,193 +4451,193 @@ The content encoding is not UTF-8. Create a new theme. - + Edit Theme - + Edit a theme. - + Delete Theme - + Delete a theme. - + Import Theme - + Import a theme. - + Export Theme - + Export a theme. - + &Edit Theme - + &Delete Theme - + Set As &Global Default - + %s (default) - + You must select a theme to edit. - + You are unable to delete the default theme. - + Theme %s is used in the %s plugin. - + You have not selected a theme. - + Save Theme - (%s) - + Theme Exported - + Your theme has been successfully exported. - + Theme Export Failed - + Your theme could not be exported due to an error. - + Select Theme Import File - + File is not a valid theme. - + &Copy Theme - + &Rename Theme - + &Export Theme - + You must select a theme to rename. - + Rename Confirmation - + Rename %s theme? - + You must select a theme to delete. - + Delete Confirmation - + Delete %s theme? - + Validation Error - + A theme with this name already exists. - + OpenLP Themes (*.theme *.otz) - + Copy of %s Copy of <theme name> - + Theme Already Exists - + @@ -4648,272 +4645,272 @@ The content encoding is not UTF-8. Theme Wizard - + Welcome to the Theme Wizard - + Set Up Background - + Set up your theme's background according to the parameters below. - + Background type: - + Solid Color - + Gradient - + Color: - + Gradient: - + Horizontal - + Vertical - + Circular - + Top Left - Bottom Right - + Bottom Left - Top Right - + Main Area Font Details - + Define the font and display characteristics for the Display text - + Font: - + Size: - + Line Spacing: - + &Outline: - + &Shadow: - + Bold - + Italic - + Footer Area Font Details - + Define the font and display characteristics for the Footer text - + Text Formatting Details - + Allows additional display formatting information to be defined - + Horizontal Align: - + Left - + Right - + Center - + Output Area Locations - + Allows you to change and move the main and footer areas. - + &Main Area - + &Use default location - + X position: - + px - + Y position: - + Width: - + Height: - + Use default location - + Theme name: - + Edit Theme - %s - + This wizard will help you to create and edit your themes. Click the next button below to start the process by setting up your background. - + Transitions: - + &Footer Area - + Starting color: - + Ending color: - + Background color: - Taustaväri: + Justify - + Layout Preview - + Transparent - + Preview and Save - + Preview the theme and save it. - + @@ -4921,47 +4918,47 @@ The content encoding is not UTF-8. Global Theme - + Theme Level - + S&ong Level - + Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. - + &Service Level - + Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. - + &Global Level - + Use the global theme, overriding any themes associated with either the service or the songs. - + Themes - + @@ -4969,592 +4966,592 @@ The content encoding is not UTF-8. Error - + About - + &Add - + Advanced - + All Files - + Bottom - + Browse... - + Cancel - + CCLI number: - + Create a new service. - + &Delete - + &Edit - + Empty Field - + Export - + pt Abbreviated font pointsize unit - + Image - + Import - + Live - + Live Background Error - + Load - + Middle - + New - + New Service - + New Theme - + No File Selected Singular - + No Files Selected Plural - + No Item Selected Singular - + No Items Selected Plural - + openlp.org 1.x - + OpenLP 2.0 - + Preview - + Replace Background - + Reset Background - + s The abbreviated unit for seconds - + Save && Preview - + Search - + You must select an item to delete. - + You must select an item to edit. - + Save Service - + Service - + Start %s - + Theme Singular - + Themes Plural - + Top - + Version - + Delete the selected item. - + Move selection up one position. - + Move selection down one position. - + &Vertical Align: - + Finished import. - + Format: - + Importing - + Importing "%s"... - + Select Import Source - + Select the import format and the location to import from. - + The openlp.org 1.x importer has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "python-sqlite" module. - + Open %s File - + %p% - + Ready. - + Starting import... - + You need to specify at least one %s file to import from. A file type e.g. OpenSong - + Welcome to the Bible Import Wizard - + Welcome to the Song Export Wizard - + Welcome to the Song Import Wizard - + Author Singular - + Authors Plural - + - © + © Copyright symbol. - + Song Book Singular - + Song Books Plural - + Song Maintenance - + Topic Singular - + Topics Plural - + Continuous - + Default - + Display style: - + Duplicate Error - + File - + Help - + h The abbreviated unit for hours - + Layout style: - + Live Toolbar - + m The abbreviated unit for minutes - + OpenLP is already running. Do you wish to continue? - + Settings - + Tools - + Unsupported File - + Verse Per Slide - + Verse Per Line - + View - + Title and/or verses not found - + XML syntax error - + View Mode - + Open service. - + Print Service - + Replace live background. - + Reset live background. - + Split a slide into two only if it does not fit on the screen as one slide. - + Welcome to the Bible Upgrade Wizard - + Confirm Delete - + Play Slides in Loop - + Play Slides to End - + Stop Play Slides in Loop - + Stop Play Slides to End - + Next Track - + Search Themes... Search bar place holder text - + Optional &Split - + Invalid Folder Selected Singular - + Invalid File Selected Singular - + Invalid Files Selected Plural - + No Folder Selected Singular - + Open %s Folder - + You need to specify one %s file to import from. A file type e.g. OpenSong - + You need to specify one %s folder to import from. A song format e.g. PowerSong - + @@ -5563,25 +5560,25 @@ The content encoding is not UTF-8. %1 and %2 Locale list separator: 2 items - + %1, and %2 Locale list separator: end - + %1, %2 Locale list separator: middle - + %1, %2 Locale list separator: start - + @@ -5589,50 +5586,50 @@ The content encoding is not UTF-8. <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. - + Presentation name singular - + Presentations name plural - + Presentations container title - + Load a new presentation. - + Delete the selected presentation. - + Preview the selected presentation. - + Send the selected presentation live. - + Add the selected presentation to the service. - + @@ -5640,52 +5637,52 @@ The content encoding is not UTF-8. Select Presentation(s) - + Automatic - + Present using: - + File Exists - + A presentation with that filename already exists. - + This type of presentation is not supported. - + Presentations (%s) - + Missing Presentation - + The presentation %s is incomplete, please reload. - + The presentation %s no longer exists. - + @@ -5693,17 +5690,17 @@ The content encoding is not UTF-8. Available Controllers - + %s (unavailable) - + Allow presentation application to be overridden - + @@ -5711,25 +5708,25 @@ The content encoding is not UTF-8. <strong>Remote Plugin</strong><br />The remote plugin provides the ability to send messages to a running version of OpenLP on a different computer via a web browser or through the remote API. - + Remote name singular - + Remotes name plural - + Remote container title - + @@ -5737,107 +5734,107 @@ The content encoding is not UTF-8. OpenLP 2.0 Remote - + OpenLP 2.0 Stage View - + Service Manager - + Slide Controller - + Alerts - Hälytykset + Search - + Refresh - + Blank - + Show - + Prev - + Next - + Text - + Show Alert - + Go Live - + No Results - + Options - + Add to Service - + Home - + Theme - + Desktop - + Add &amp; Go to Service - + @@ -5845,42 +5842,42 @@ The content encoding is not UTF-8. Serve on IP address: - + Port number: - + Server Settings - + Remote URL: - + Stage view URL: - + Display stage time in 12h format - + Android App - + Scan the QR code or click <a href="https://market.android.com/details?id=org.openlp.android">download</a> to install the Android app from the Market. - + @@ -5888,85 +5885,85 @@ The content encoding is not UTF-8. &Song Usage Tracking - + &Delete Tracking Data - + Delete song usage data up to a specified date. - + &Extract Tracking Data - + Generate a report on song usage. - + Toggle Tracking - + Toggle the tracking of song usage. - + <strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services. - + SongUsage name singular - + SongUsage name plural - + SongUsage container title - + Song Usage - + Song usage tracking is active. - + Song usage tracking is inactive. - + display - + printed - + @@ -5974,32 +5971,32 @@ The content encoding is not UTF-8. Delete Song Usage Data - + Delete Selected Song Usage Events? - + Are you sure you want to delete selected Song Usage data? - + Deletion Successful - + All requested data has been deleted successfully. - + Select the date up to which the song usage data should be deleted. All data recorded before this date will be permanently deleted. - + @@ -6007,54 +6004,54 @@ The content encoding is not UTF-8. Song Usage Extraction - + Select Date Range - + to - + Report Location - + Output File Location - + usage_detail_%s_%s.txt - + Report Creation - + Report %s has been successfully created. - + Output Path Not Selected - + You have not set a valid output location for your song usage report. Please select an existing path on your computer. - + @@ -6062,173 +6059,173 @@ has been successfully created. &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... - + Arabic (CP-1256) - + Baltic (CP-1257) - + Central European (CP-1250) - + Cyrillic (CP-1251) - + Greek (CP-1253) - + Hebrew (CP-1255) - + Japanese (CP-932) - + Korean (CP-949) - + Simplified Chinese (CP-936) - + Thai (CP-874) - + Traditional Chinese (CP-950) - + Turkish (CP-1254) - + Vietnam (CP-1258) - + Western European (CP-1252) - + Character Encoding - + The codepage setting is responsible for the correct character representation. Usually you are fine with the preselected choice. - + Please choose the character encoding. The encoding is responsible for the correct character representation. - + Song name singular - + Songs name plural - + Songs container title - + Exports songs using the export wizard. - + 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. - + @@ -6236,37 +6233,37 @@ The encoding is responsible for the correct character representation. Author Maintenance - + Display name: - + First name: - + Last name: - + You need to type in the first name of the author. - + You need to type in the last name of the author. - + You have not set a display name for the author, combine the first and last names? - + @@ -6274,7 +6271,7 @@ The encoding is responsible for the correct character representation. The file does not have a valid extension. - + @@ -6282,14 +6279,14 @@ The encoding is responsible for the correct character representation. Administered by %s - + [above are Song Tags with notes imported from EasyWorship] - + @@ -6297,12 +6294,12 @@ The encoding is responsible for the correct character representation. Meta Data - + Custom Book Names - + @@ -6310,207 +6307,207 @@ The encoding is responsible for the correct character representation. Song Editor - + &Title: - &Otsikko + Alt&ernate title: - + &Lyrics: - + &Verse order: - + Ed&it All - Mu&okkaa kaikkia + Title && Lyrics - + &Add to Song - + &Remove - + &Manage Authors, Topics, Song Books - + A&dd to Song - + R&emove - + Book: - Kirja: + Number: - + Authors, Topics && Song Book - + New &Theme - + Copyright Information - + Comments - + Theme, Copyright Info && Comments - + Add Author - + This author does not exist, do you want to add them? - + This author is already in the list. - + You have not selected a valid author. Either select an author from the list, or type in a new author and click the "Add Author to Song" button to add the new author. - + Add Topic - + This topic does not exist, do you want to add it? - + This topic is already in the list. - + You have not selected a valid topic. Either select a topic from the list, or type in a new topic and click the "Add Topic to Song" button to add the new topic. - + You need to type in a song title. - + You need to type in at least one verse. - + The verse order is invalid. There is no verse corresponding to %s. Valid entries are %s. - + Add Book - + This song book does not exist, do you want to add it? - + You need to have an author for this song. - + You need to type some text in to the verse. - + Linked Audio - + Add &File(s) - + Add &Media - + Remove &All - + Open File(s) - + <strong>Warning:</strong> Not all of the verses are in use. - + The verse order is invalid. There are no verses corresponding to %s. Valid entries are %s. - + @@ -6518,22 +6515,22 @@ The encoding is responsible for the correct character representation. Edit Verse - + &Verse type: - + &Insert - + Split a slide into two by inserting a verse splitter. - + @@ -6541,82 +6538,82 @@ The encoding is responsible for the correct character representation. Song Export Wizard - + Select Songs - + Check the songs you want to export. - + Uncheck All - + Check All - + Select Directory - + Directory: - + Exporting - + Please wait while your songs are exported. - + You need to add at least one Song to export. - + No Save Location specified - + Starting export... - + You need to specify a directory. - + Select Destination Folder - + Select the directory where you want the songs to be saved. - + This wizard will help to export your songs to the open and free <strong>OpenLyrics</strong> worship song format. - + @@ -6624,172 +6621,172 @@ The encoding is responsible for the correct character representation. Select Document/Presentation Files - + Song Import Wizard - + This wizard will help you to import songs from a variety of formats. Click the next button below to start the process by selecting a format to import from. - + Generic Document/Presentation - + Add Files... - + Remove File(s) - + Please wait while your songs are imported. - + OpenLP 2.0 Databases - + openlp.org v1.x Databases - + Words Of Worship Song Files - + Songs Of Fellowship Song Files - + SongBeamer Files - + SongShow Plus Song Files - + Foilpresenter Song Files - + Copy - + Save to File - + The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. - + The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. - + OpenLyrics or OpenLP 2.0 Exported Song - + OpenLyrics Files - + CCLI SongSelect Files - + EasySlides XML File - + EasyWorship Song Database - + DreamBeam Song Files - + You need to specify a valid PowerSong 1.0 database folder. - + ZionWorx (CSV) - + First convert your ZionWorx database to a CSV text file, as explained in the <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">User Manual</a>. - + SundayPlus Song Files - + This importer has been disabled. - + MediaShout Database - + The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. - + SongPro Text Files - + SongPro (Export File) - + In SongPro, export your songs using the File -> Export menu - + @@ -6797,12 +6794,12 @@ The encoding is responsible for the correct character representation. Select Media File(s) - + Select one or more audio files from the list below, and click OK to import them into this song. - + @@ -6810,66 +6807,63 @@ The encoding is responsible for the correct character representation. Titles - + Lyrics - + CCLI License: - + Entire Song - + Are you sure you want to delete the %n selected song(s)? - - - - + Maintain the lists of authors, topics and books. - + copy For song cloning - + Search Titles... - + Search Entire Song... - + Search Lyrics... - + Search Authors... - + Search Song Books... - + @@ -6877,7 +6871,7 @@ The encoding is responsible for the correct character representation. Unable to open the MediaShout database. - + @@ -6885,7 +6879,7 @@ The encoding is responsible for the correct character representation. Not a valid openlp.org 1.x song database. - + @@ -6893,7 +6887,7 @@ The encoding is responsible for the correct character representation. Not a valid OpenLP 2.0 song database. - + @@ -6901,7 +6895,7 @@ The encoding is responsible for the correct character representation. Exporting "%s"... - + @@ -6909,12 +6903,12 @@ The encoding is responsible for the correct character representation. No songs to import. - + Verses not found. Missing "PART" header. - + @@ -6922,22 +6916,22 @@ The encoding is responsible for the correct character representation. Song Book Maintenance - + &Name: - + &Publisher: - + You need to type in a name for the book. - + @@ -6945,12 +6939,12 @@ The encoding is responsible for the correct character representation. Your song export failed. - + Finished export. To import these files use the <strong>OpenLyrics</strong> importer. - + @@ -6958,27 +6952,27 @@ The encoding is responsible for the correct character representation. copyright - + The following songs could not be imported: - + Cannot access OpenOffice or LibreOffice - + Unable to open file - + File not found - + @@ -6986,107 +6980,107 @@ The encoding is responsible for the correct character representation. Could not add your author. - + This author already exists. - + Could not add your topic. - + This topic already exists. - + Could not add your book. - + This book already exists. - + Could not save your changes. - + Could not save your modified author, because the author already exists. - + Could not save your modified topic, because it already exists. - + Delete Author - + Are you sure you want to delete the selected author? - + This author cannot be deleted, they are currently assigned to at least one song. - + Delete Topic - + Are you sure you want to delete the selected topic? - + This topic cannot be deleted, it is currently assigned to at least one song. - + Delete Book - + Are you sure you want to delete the selected book? - + This book cannot be deleted, it is currently assigned to at least one song. - + The author %s already exists. Would you like to make songs with author %s use the existing author %s? - + The topic %s already exists. Would you like to make songs with topic %s use the existing topic %s? - + The book %s already exists. Would you like to make songs with book %s use the existing book %s? - + @@ -7094,27 +7088,27 @@ The encoding is responsible for the correct character representation. Songs Mode - + Enable search as you type - + Display verses on live tool bar - + Update service from song edit - + Import missing songs from service files - + @@ -7122,17 +7116,17 @@ The encoding is responsible for the correct character representation. Topic Maintenance - + Topic name: - + You need to type in a topic name. - + @@ -7140,37 +7134,37 @@ The encoding is responsible for the correct character representation. Verse - + Chorus - + Bridge - + Pre-Chorus - + Intro - + Ending - + Other - + @@ -7178,12 +7172,12 @@ The encoding is responsible for the correct character representation. Error reading CSV file. - + File not valid ZionWorx CSV format. - + - + \ No newline at end of file diff --git a/resources/i18n/fr.ts b/resources/i18n/fr.ts index 3bb5812a5..97b8e1486 100644 --- a/resources/i18n/fr.ts +++ b/resources/i18n/fr.ts @@ -1,5 +1,4 @@ - - + AlertsPlugin @@ -102,7 +101,7 @@ Voulez-vous tout de même continuer ? - The alert text does not contain '<>'. + The alert text does not contain '<>'. Do you want to continue anyway? Le texte d'alerte ne contient pas '<>'. Voulez-vous tout de même continuer ? @@ -567,92 +566,92 @@ Voulez-vous tout de même continuer ? Judith - + Wisdom - + Tobit - + Sirach - + Baruch - + 1 Maccabees - + 2 Maccabees - + 3 Maccabees - + 4 Maccabees - + Rest of Daniel - + Rest of Esther - + Prayer of Manasses - + Letter of Jeremiah - + Prayer of Azariah - + Susanna - + Bel - + 1 Esdras - + 2 Esdras - + @@ -1367,7 +1366,7 @@ demand and thus an internet connection is required. Are you sure you want to completely delete "%s" Bible from OpenLP? You will need to re-import this Bible to use it again. - + @@ -1375,7 +1374,7 @@ You will need to re-import this Bible to use it again. Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. - + @@ -1698,7 +1697,7 @@ Veuillez noter que les versets des Bibles Web seront téléchargés à la demand Edit Slide - + @@ -1706,10 +1705,7 @@ Veuillez noter que les versets des Bibles Web seront téléchargés à la demand Are you sure you want to delete the %n selected custom slide(s)? - - Etes-vous sur de vouloir supprimer la %n diapositive personnalisée ? - Etes-vous sur de vouloir supprimer les %n diapositives personnalisées ? - + Etes-vous sur de vouloir supprimer la %n diapositive personnalisée ?Etes-vous sur de vouloir supprimer les %n diapositives personnalisées ? @@ -2074,7 +2070,7 @@ Translators %s Japanese (ja) %s - Norwegian Bokmål (nb) + Norwegian Bokmål (nb) %s Dutch (nl) %s @@ -2184,8 +2180,8 @@ OpenLP est écrit et maintenu par des bénévoles. Si vous souhaitez voir plus d - Copyright © 2004-2012 %s -Portions copyright © 2004-2012 %s + Copyright © 2004-2012 %s +Portions copyright © 2004-2012 %s Copyright © 2004-2012 %s⏎ Portions copyright © 2004-2012 %s @@ -2815,7 +2811,7 @@ Version : %s No Internet connection was found. The First Time Wizard needs an Internet connection in order to be able to download sample songs, Bibles and themes. Click the Finish button now to start OpenLP with initial settings and no sample data. To re-run the First Time Wizard and import this sample data at a later time, check your Internet connection and re-run this wizard by selecting "Tools/Re-run First Time Wizard" from OpenLP. - + @@ -3131,7 +3127,7 @@ Pour annuler complètement le premier assistant (et ne pas lancer OpenLP), cliqu &Wrap around - + @@ -5444,7 +5440,7 @@ Le contenu n'est pas de l'UTF-8. - © + © Copyright symbol. © @@ -6896,7 +6892,7 @@ L'encodage permet un affichage correct des caractères. First convert your ZionWorx database to a CSV text file, as explained in the <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">User Manual</a>. - + @@ -6906,32 +6902,32 @@ L'encodage permet un affichage correct des caractères. This importer has been disabled. - + MediaShout Database - + The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. - + SongPro Text Files - + SongPro (Export File) - + In SongPro, export your songs using the File -> Export menu - + @@ -6972,10 +6968,7 @@ L'encodage permet un affichage correct des caractères. Are you sure you want to delete the %n selected song(s)? - - Êtes-vous sûr de vouloir supprimer le chant %n sélectionné ? - Êtes-vous sûr de vouloir supprimer les chants %n sélectionnés ? - + Êtes-vous sûr de vouloir supprimer le chant %n sélectionné ?Êtes-vous sûr de vouloir supprimer les chants %n sélectionnés ? @@ -7019,7 +7012,7 @@ L'encodage permet un affichage correct des caractères. Unable to open the MediaShout database. - + @@ -7328,4 +7321,4 @@ L'encodage permet un affichage correct des caractères. Format de fichier CSV ZionWorx invalide. - + \ No newline at end of file diff --git a/resources/i18n/hu.ts b/resources/i18n/hu.ts index 4658b97b2..b1a034391 100644 --- a/resources/i18n/hu.ts +++ b/resources/i18n/hu.ts @@ -1,5 +1,4 @@ - - + AlertsPlugin @@ -102,7 +101,7 @@ Folytatható? - The alert text does not contain '<>'. + The alert text does not contain '<>'. Do you want to continue anyway? Az értesítő szöveg nem tartalmaz „<>” karaktereket. Folytatható? @@ -1368,7 +1367,9 @@ demand and thus an internet connection is required. Are you sure you want to completely delete "%s" Bible from OpenLP? You will need to re-import this Bible to use it again. - + Valóban teljes egészében törölhető ez a Biblia az OpenLP-ből: %s? + +Az esetleges újboli alkalmazásához újra be kell majd importálni. @@ -1376,7 +1377,7 @@ You will need to re-import this Bible to use it again. Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. - + A megadott Biblia fájl hibás. Az OpenSong bibliák lehet, hogy tömörítve vannak. Ki kell tömöríteni őket importálás előtt. @@ -1699,7 +1700,7 @@ Megjegyzés: a webes bibliák versei csak kérésre lesznek letöltve és ekkor Edit Slide - + Dia szerkesztése @@ -1707,9 +1708,7 @@ Megjegyzés: a webes bibliák versei csak kérésre lesznek letöltve és ekkor Are you sure you want to delete the %n selected custom slide(s)? - - Valóban törölhető a kijelölt %n speciális dia? - + Valóban törölhető a kijelölt %n speciális dia?Valóban törölhető a kijelölt %n speciális dia? @@ -2074,7 +2073,7 @@ Translators %s Japanese (ja) %s - Norwegian Bokmål (nb) + Norwegian Bokmål (nb) %s Dutch (nl) %s @@ -2185,8 +2184,8 @@ Az OpenLP-t önkéntesek készítették és tartják karban. Ha szeretnél több - Copyright © 2004-2012 %s -Portions copyright © 2004-2012 %s + Copyright © 2004-2012 %s +Portions copyright © 2004-2012 %s Szerzői jog © 2004-2012 %s Részleges szerzői jog © 2004-2012 %s @@ -5447,7 +5446,7 @@ A tartalom kódolása nem UTF-8. - © + © Copyright symbol. © @@ -6908,32 +6907,32 @@ EasyWorshipből kerültek importálásra] This importer has been disabled. - + Ez az importáló le lett tiltva. MediaShout Database - + MediaShout adatbázis The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. - + A MediaShout importáló csak Windows alatt támogatott. A hiányzó Python modul miatt le lett tiltva. Alkalmazásához telepíteni kell a "pyodbc" modult. SongPro Text Files - + SongPro szövegfájlok SongPro (Export File) - + SongPro (export fájl) In SongPro, export your songs using the File -> Export menu - + SongPro-ban a Fájl -> Exportálás menüpontban lehet exportálni a dalokat @@ -6974,9 +6973,7 @@ EasyWorshipből kerültek importálásra] Are you sure you want to delete the %n selected song(s)? - - Valóban törölhető a kijelöl %n dal? - + Valóban törölhető a kijelöl %n dal?Valóban törölhető a kijelöl %n dal? @@ -7020,7 +7017,7 @@ EasyWorshipből kerültek importálásra] Unable to open the MediaShout database. - + Nem sikerült megnyitni a MediaShout adatbázist. @@ -7329,4 +7326,4 @@ EasyWorshipből kerültek importálásra] A fájl nem érvényes ZionWorx CSV formátumú. - + \ No newline at end of file diff --git a/resources/i18n/id.ts b/resources/i18n/id.ts index 49f0a8fbb..ba24a2cdb 100644 --- a/resources/i18n/id.ts +++ b/resources/i18n/id.ts @@ -1,5 +1,4 @@ - - + AlertsPlugin @@ -102,7 +101,7 @@ Tetap lanjutkan? - The alert text does not contain '<>'. + The alert text does not contain '<>'. Do you want to continue anyway? Peringatan tidak mengandung '<>'. Tetap lanjutkan? @@ -237,428 +236,428 @@ Tetap lanjutkan? Genesis - + Exodus - + Leviticus - + Numbers - + Deuteronomy - + Joshua - + Judges - + Ruth - + 1 Samuel - + 2 Samuel - + 1 Kings - + 2 Kings - + 1 Chronicles - + 2 Chronicles - + Ezra - + Nehemiah - + Esther - + Job - + Psalms - + Proverbs - + Ecclesiastes - + Song of Solomon - + Isaiah - + Jeremiah - + Lamentations - + Ezekiel - + Daniel - + Hosea - + Joel - + Amos - + Obadiah - + Jonah - + Micah - + Nahum - + Habakkuk - + Zephaniah - + Haggai - + Zechariah - + Malachi - + Matthew - + Mark - + Luke - + John - + Acts - + Romans - + 1 Corinthians - + 2 Corinthians - + Galatians - + Ephesians - + Philippians - + Colossians - + 1 Thessalonians - + 2 Thessalonians - + 1 Timothy - + 2 Timothy - + Titus - + Philemon - + Hebrews - + James - + 1 Peter - + 2 Peter - + 1 John - + 2 John - + 3 John - + Jude - + Revelation - + Judith - + Wisdom - + Tobit - + Sirach - + Baruch - + 1 Maccabees - + 2 Maccabees - + 3 Maccabees - + 4 Maccabees - + Rest of Daniel - + Rest of Esther - + Prayer of Manasses - + Letter of Jeremiah - + Prayer of Azariah - + Susanna - + Bel - + 1 Esdras - + 2 Esdras - + :|v|V|verse|verses;;-|to;;,|and;;end Double-semicolon delimited separators for parsing references. Consult the developers for further information. - + @@ -666,44 +665,44 @@ Tetap lanjutkan? You need to specify a version name for your Bible. - Anda harus menentukan nama versi untuk Alkitab Anda. + You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. - Anda harus memberikan hak cipta untuk Alkitab Anda. Alkitab di Public Domain harus ditandai sedemikian. + Bible Exists - Alkitab Sudah Ada + This Bible already exists. Please import a different Bible or first delete the existing one. - Alkitab sudah ada. Silakan impor Alkitab lain atau hapus yang sudah ada. + You need to specify a book name for "%s". - + The book name "%s" is not correct. Numbers can only be used at the beginning and must be followed by one or more non-numeric characters. - + Duplicate Book Name - + The Book Name "%s" has been entered more than once. - + @@ -751,7 +750,7 @@ Book Chapter%(verse)sVerse%(range)sVerse%(list)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sVerse%(list)sChapter%(verse)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sChapter%(verse)sVerse Please pay attention to the appended "s" of the wildcards and refrain from translating the words inside the names in the brackets. - + @@ -806,81 +805,81 @@ Perubahan tidak akan mempengaruhi ayat yang kini tampil. Custom Scripture References - + Verse Separator: - + Range Separator: - + List Separator: - + End Mark: - + Multiple alternative verse separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. - + Multiple alternative range separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. - + Multiple alternative list separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. - + Multiple alternative end marks may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. - + English - Inggris + Default Bible Language - + Book name language in search field, search results and on display: - + Bible Language - + Application Language - + @@ -923,7 +922,7 @@ search results and on display: The following book name cannot be matched up internally. Please select the corresponding name from the list. - + @@ -958,68 +957,68 @@ search results and on display: Bible Editor - + License Details - Rincian Lisensi + Version name: - Nama versi: + Copyright: - Hak cipta: + Permissions: - Izin: + Default Bible Language - + Book name language in search field, search results and on display: - + Global Settings - + Bible Language - + Application Language - + English - Inggris + This is a Web Download Bible. It is not possible to customize the Book Names. - + To use the customized book names, "Bible language" must be selected on the Meta Data tab or, if "Global settings" is selected, on the Bible page in Configure OpenLP. - + @@ -1337,19 +1336,19 @@ dibutuhkan dan membutuhkan koneksi internet. Search Scripture Reference... - + Search Text... - + Are you sure you want to completely delete "%s" Bible from OpenLP? You will need to re-import this Bible to use it again. - + @@ -1357,7 +1356,7 @@ You will need to re-import this Bible to use it again. Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. - + @@ -1550,7 +1549,7 @@ Perhatikan bahwa ayat dari Alkitab Web akan diunduh saat diminta dan sambungan i Custom Slides name plural - Salindia Suai + @@ -1680,7 +1679,7 @@ Perhatikan bahwa ayat dari Alkitab Web akan diunduh saat diminta dan sambungan i Edit Slide - + @@ -1688,9 +1687,7 @@ Perhatikan bahwa ayat dari Alkitab Web akan diunduh saat diminta dan sambungan i Are you sure you want to delete the %n selected custom slide(s)? - - - + @@ -1710,7 +1707,7 @@ Perhatikan bahwa ayat dari Alkitab Web akan diunduh saat diminta dan sambungan i Images name plural - Gambar + @@ -1822,7 +1819,7 @@ Ingin tetap menambah gambar lain? Visible background for images with aspect ratio different to screen. - + @@ -1836,13 +1833,13 @@ Ingin tetap menambah gambar lain? Media name singular - Media + Media name plural - Media + @@ -1949,22 +1946,22 @@ Ingin tetap menambah gambar lain? Available Media Players - + %s (unavailable) - + Player Order - + Allow media player to be overridden - + @@ -2055,7 +2052,7 @@ Translators %s Japanese (ja) %s - Norwegian Bokmål (nb) + Norwegian Bokmål (nb) %s Dutch (nl) %s @@ -2166,9 +2163,9 @@ OpenLP dibuat dan dipelihara oleh relawan. Jika Anda ingin melihat lebih banyak - Copyright © 2004-2012 %s -Portions copyright © 2004-2012 %s - + Copyright © 2004-2012 %s +Portions copyright © 2004-2012 %s + @@ -2263,184 +2260,184 @@ Portions copyright © 2004-2012 %s Service %Y-%m-%d %H-%M This may not contain any of the following characters: /\?*|<>[]":+ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for more information. - + Default Service Name - + Enable default service name - + Date and Time: - + Monday - + Tuesday - + Wednesday - + Thurdsday - + Friday - + Saturday - + Sunday - + Now - + Time when usual service starts. - + Name: - + Consult the OpenLP manual for usage. - + Revert to the default service name "%s". - + Example: - + X11 - + Bypass X11 Window Manager - + Syntax error. - + Data Location - + Current path: - + Custom path: - + Browse for new data file location. - + Set the data location to the default. - + Cancel - + Cancel OpenLP data directory location change. - + Copy data to new location. - + Copy the OpenLP data files to the new location. - + <strong>WARNING:</strong> New data directory location contains OpenLP data files. These files WILL be replaced during a copy. - + Data Directory Error - + Select Data Directory Location - + Confirm Data Directory Change - + Reset Data Directory - + Are you sure you want to change the location of the OpenLP data directory to the default location? This location will be used after OpenLP is closed. - + Overwrite Existing Data - + @@ -2794,14 +2791,14 @@ Mohon gunakan bahasa Inggris untuk laporan kutu. No Internet connection was found. The First Time Wizard needs an Internet connection in order to be able to download sample songs, Bibles and themes. Click the Finish button now to start OpenLP with initial settings and no sample data. To re-run the First Time Wizard and import this sample data at a later time, check your Internet connection and re-run this wizard by selecting "Tools/Re-run First Time Wizard" from OpenLP. - + To cancel the First Time Wizard completely (and not start OpenLP), click the Cancel button now. - + @@ -3083,37 +3080,37 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can Service Item Slide Limits - + Override display position: - + Repeat track list - + Behavior of next/previous on the last/first slide: - + &Remain on Slide - + &Wrap around - + &Move to next/previous service item - + @@ -3581,42 +3578,42 @@ Menjalankan wisaya ini mungkin akan mengubah konfigurasi OpenLP saat ini dan mun Importing settings will make permanent changes to your current OpenLP configuration. Importing incorrect settings may cause erratic behaviour or OpenLP to terminate abnormally. - + Open File - Buka Berkas + OpenLP Export Settings Files (*.conf) - + Import settings - + OpenLP will now close. Imported settings will be applied the next time you start OpenLP. - + Export Settings File - + OpenLP Export Settings File (*.conf) - + New Data Directory Error - + @@ -3624,21 +3621,21 @@ Importing incorrect settings may cause erratic behaviour or OpenLP to terminate Database Error - + The database being loaded was created in a more recent version of OpenLP. The database is version %d, while OpenLP expects version %d. The database will not be loaded. Database: %s - + OpenLP cannot load your database. Database: %s - + @@ -3686,33 +3683,33 @@ Database: %s You must select one or more items to add. - + No Search Results - + Invalid File Type - + Invalid File %s. Suffix not supported - + &Clone - + Duplicate files were found on import and were ignored. - + @@ -3720,12 +3717,12 @@ Suffix not supported <lyrics> tag is missing. - + <verse> tag is missing. - + @@ -3768,7 +3765,7 @@ Suffix not supported %s (Disabled) - + @@ -3844,22 +3841,22 @@ Suffix not supported Service Sheet - + Print - + Title: - + Custom Footer Text: - + @@ -3880,12 +3877,12 @@ Suffix not supported <strong>Start</strong>: %s - + <strong>Length</strong>: %s - + @@ -4083,22 +4080,22 @@ Isi berkas tidak berupa UTF-8. Custom Service Notes: - + Notes: - + Playing time: - + Untitled Service - + @@ -4123,57 +4120,57 @@ Isi berkas tidak berupa UTF-8. Load an existing service. - + Save this service. - + Select a theme for the service. - + This file is either corrupt or it is not an OpenLP 2.0 service file. - + Service File Missing - + Slide theme - + Notes - + Edit - + Service copy only - + Error Saving File - + There was an error saving your file. - + @@ -4181,7 +4178,7 @@ Isi berkas tidak berupa UTF-8. Service Item Notes - + @@ -4189,7 +4186,7 @@ Isi berkas tidak berupa UTF-8. Configure OpenLP - + @@ -4197,67 +4194,67 @@ Isi berkas tidak berupa UTF-8. Action - + Shortcut - + Duplicate Shortcut - + The shortcut "%s" is already assigned to another action, please use a different shortcut. - + Alternate - + Select an action and click one of the buttons below to start capturing a new primary or alternate shortcut, respectively. - + Default - + Custom - + Capture shortcut. - + Restore the default shortcut of this action. - + Restore Default Shortcuts - + Do you want to restore all shortcuts to their defaults? - + Configure Shortcuts - + @@ -4265,172 +4262,172 @@ Isi berkas tidak berupa UTF-8. Hide - + Go To - + Blank Screen - + Blank to Theme - + Show Desktop - + Previous Service - + Next Service - + Escape Item - + Move to previous. - + Move to next. - + Play Slides - + Delay between slides in seconds. - + Move to live. - + Add to Service. - + Edit and reload song preview. - + Start playing media. - + Pause audio. - + Pause playing media. - + Stop playing media. - + Video position. - + Audio Volume. - + Go to "Verse" - + Go to "Chorus" - + Go to "Bridge" - + Go to "Pre-Chorus" - + Go to "Intro" - + Go to "Ending" - + Go to "Other" - + Previous Slide - + Next Slide - + Pause Audio - + Background Audio - Audio Latar + Go to next audio track. - + Tracks - + @@ -4438,17 +4435,17 @@ Isi berkas tidak berupa UTF-8. Spelling Suggestions - + Formatting Tags - + Language: - Bahasa: + @@ -4456,67 +4453,67 @@ Isi berkas tidak berupa UTF-8. Hours: - + Minutes: - + Seconds: - + Item Start and Finish Time - + Start - + Finish - Selesai + Length - + Time Validation Error - + Finish time is set after the end of the media item - + Start time is after the finish time of the media item - + Theme Layout - + The blue box shows the main area. - + The red box shows the footer. - + @@ -4524,32 +4521,32 @@ Isi berkas tidak berupa UTF-8. Select Image - + Theme Name Missing - + There is no name for this theme. Please enter one. - + Theme Name Invalid - + Invalid theme name. Please enter one. - + (approximately %d lines per slide) - + @@ -4557,193 +4554,193 @@ Isi berkas tidak berupa UTF-8. Create a new theme. - + Edit Theme - + Edit a theme. - + Delete Theme - + Delete a theme. - + Import Theme - + Import a theme. - + Export Theme - + Export a theme. - + &Edit Theme - + &Delete Theme - + Set As &Global Default - + %s (default) - + You must select a theme to edit. - + You are unable to delete the default theme. - + Theme %s is used in the %s plugin. - + You have not selected a theme. - + Save Theme - (%s) - + Theme Exported - + Your theme has been successfully exported. - + Theme Export Failed - + Your theme could not be exported due to an error. - + Select Theme Import File - + File is not a valid theme. - + &Copy Theme - + &Rename Theme - + &Export Theme - + You must select a theme to rename. - + Rename Confirmation - + Rename %s theme? - + You must select a theme to delete. - + Delete Confirmation - + Delete %s theme? - + Validation Error - + A theme with this name already exists. - + OpenLP Themes (*.theme *.otz) - + Copy of %s Copy of <theme name> - + Theme Already Exists - + @@ -4751,272 +4748,272 @@ Isi berkas tidak berupa UTF-8. Theme Wizard - + Welcome to the Theme Wizard - + Set Up Background - + Set up your theme's background according to the parameters below. - + Background type: - + Solid Color - + Gradient - + Color: - + Gradient: - + Horizontal - + Vertical - + Circular - + Top Left - Bottom Right - + Bottom Left - Top Right - + Main Area Font Details - + Define the font and display characteristics for the Display text - + Font: - + Size: - + Line Spacing: - + &Outline: - + &Shadow: - + Bold - Tebal + Italic - + Footer Area Font Details - + Define the font and display characteristics for the Footer text - + Text Formatting Details - + Allows additional display formatting information to be defined - + Horizontal Align: - + Left - + Right - + Center - + Output Area Locations - + Allows you to change and move the main and footer areas. - + &Main Area - + &Use default location - + X position: - + px - + Y position: - + Width: - + Height: - + Use default location - + Theme name: - + Edit Theme - %s - + This wizard will help you to create and edit your themes. Click the next button below to start the process by setting up your background. - + Transitions: - + &Footer Area - + Starting color: - + Ending color: - + Background color: - Warna latar: + Justify - + Layout Preview - + Transparent - + Preview and Save - + Preview the theme and save it. - + @@ -5024,47 +5021,47 @@ Isi berkas tidak berupa UTF-8. Global Theme - + Theme Level - + S&ong Level - + Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. - + &Service Level - + Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. - + &Global Level - + Use the global theme, overriding any themes associated with either the service or the songs. - + Themes - + @@ -5072,88 +5069,88 @@ Isi berkas tidak berupa UTF-8. Error - + About - + &Add - + Advanced - Lanjutan + All Files - + Bottom - + Browse... - + Cancel - + CCLI number: - + Create a new service. - + &Delete - + &Edit - + Empty Field - + Export - + pt Abbreviated font pointsize unit - + Image - Gambar + Import - + @@ -5163,501 +5160,501 @@ Isi berkas tidak berupa UTF-8. Live Background Error - + Load - + Middle - + New - + New Service - + New Theme - + No File Selected Singular - + No Files Selected Plural - + No Item Selected Singular - + No Items Selected Plural - Tidak Ada Barang yang Terpilih + openlp.org 1.x - + OpenLP 2.0 - + Preview - + Replace Background - + Reset Background - + s The abbreviated unit for seconds - + Save && Preview - + Search - + You must select an item to delete. - + You must select an item to edit. - + Save Service - + Service - + Start %s - + Theme Singular - + Themes Plural - + Top - + Version - + Delete the selected item. - + Move selection up one position. - + Move selection down one position. - + &Vertical Align: - + Finished import. - + Format: - + Importing - + Importing "%s"... - + Select Import Source - + Select the import format and the location to import from. - + The openlp.org 1.x importer has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "python-sqlite" module. - + Open %s File - + %p% - + Ready. - + Starting import... - + You need to specify at least one %s file to import from. A file type e.g. OpenSong - + Welcome to the Bible Import Wizard - + Welcome to the Song Export Wizard - + Welcome to the Song Import Wizard - + Author Singular - + Authors Plural - + - © + © Copyright symbol. - + Song Book Singular - + Song Books Plural - + Song Maintenance - + Topic Singular - + Topics Plural - + Continuous - + Default - + Display style: - + Duplicate Error - + File - + Help - + h The abbreviated unit for hours - + Layout style: - + Live Toolbar - + m The abbreviated unit for minutes - + OpenLP is already running. Do you wish to continue? - + Settings - Pengaturan + Tools - + Unsupported File - Berkas Tidak Didukung + Verse Per Slide - + Verse Per Line - + View - + Title and/or verses not found - + XML syntax error - + View Mode - + Open service. - + Print Service - + Replace live background. - + Reset live background. - + Split a slide into two only if it does not fit on the screen as one slide. - + Welcome to the Bible Upgrade Wizard - + Confirm Delete - + Play Slides in Loop - + Play Slides to End - + Stop Play Slides in Loop - + Stop Play Slides to End - + Next Track - + Search Themes... Search bar place holder text - + Optional &Split - + Invalid Folder Selected Singular - + Invalid File Selected Singular - + Invalid Files Selected Plural - + No Folder Selected Singular - + Open %s Folder - + You need to specify one %s file to import from. A file type e.g. OpenSong - + You need to specify one %s folder to import from. A song format e.g. PowerSong - + @@ -5666,25 +5663,25 @@ Isi berkas tidak berupa UTF-8. %1 and %2 Locale list separator: 2 items - + %1, and %2 Locale list separator: end - + %1, %2 Locale list separator: middle - + %1, %2 Locale list separator: start - + @@ -5692,50 +5689,50 @@ Isi berkas tidak berupa UTF-8. <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. - + Presentation name singular - + Presentations name plural - Presentasi + Presentations container title - Presentasi + Load a new presentation. - + Delete the selected presentation. - + Preview the selected presentation. - + Send the selected presentation live. - + Add the selected presentation to the service. - + @@ -5743,52 +5740,52 @@ Isi berkas tidak berupa UTF-8. Select Presentation(s) - + Automatic - Otomatis + Present using: - + File Exists - + A presentation with that filename already exists. - + This type of presentation is not supported. - + Presentations (%s) - + Missing Presentation - + The presentation %s is incomplete, please reload. - + The presentation %s no longer exists. - + @@ -5796,17 +5793,17 @@ Isi berkas tidak berupa UTF-8. Available Controllers - + %s (unavailable) - + Allow presentation application to be overridden - + @@ -5814,25 +5811,25 @@ Isi berkas tidak berupa UTF-8. <strong>Remote Plugin</strong><br />The remote plugin provides the ability to send messages to a running version of OpenLP on a different computer via a web browser or through the remote API. - + Remote name singular - + Remotes name plural - + Remote container title - + @@ -5840,107 +5837,107 @@ Isi berkas tidak berupa UTF-8. OpenLP 2.0 Remote - + OpenLP 2.0 Stage View - + Service Manager - Manajer Layanan + Slide Controller - + Alerts - Peringatan + Search - + Refresh - + Blank - + Show - + Prev - + Next - + Text - + Show Alert - + Go Live - Tayangkan + No Results - + Options - Pilihan + Add to Service - + Home - + Theme - + Desktop - + Add &amp; Go to Service - + @@ -5948,42 +5945,42 @@ Isi berkas tidak berupa UTF-8. Serve on IP address: - + Port number: - + Server Settings - + Remote URL: - + Stage view URL: - + Display stage time in 12h format - + Android App - + Scan the QR code or click <a href="https://market.android.com/details?id=org.openlp.android">download</a> to install the Android app from the Market. - + @@ -5991,85 +5988,85 @@ Isi berkas tidak berupa UTF-8. &Song Usage Tracking - + &Delete Tracking Data - + Delete song usage data up to a specified date. - + &Extract Tracking Data - + Generate a report on song usage. - + Toggle Tracking - + Toggle the tracking of song usage. - + <strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services. - + SongUsage name singular - + SongUsage name plural - + SongUsage container title - + Song Usage - + Song usage tracking is active. - + Song usage tracking is inactive. - + display - + printed - + @@ -6077,32 +6074,32 @@ Isi berkas tidak berupa UTF-8. Delete Song Usage Data - + Delete Selected Song Usage Events? - + Are you sure you want to delete selected Song Usage data? - + Deletion Successful - + All requested data has been deleted successfully. - + Select the date up to which the song usage data should be deleted. All data recorded before this date will be permanently deleted. - + @@ -6110,54 +6107,54 @@ Isi berkas tidak berupa UTF-8. Song Usage Extraction - + Select Date Range - + to - + Report Location - + Output File Location - + usage_detail_%s_%s.txt - + Report Creation - + Report %s has been successfully created. - + Output Path Not Selected - + You have not set a valid output location for your song usage report. Please select an existing path on your computer. - + @@ -6165,173 +6162,173 @@ has been successfully created. &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... - + Arabic (CP-1256) - + Baltic (CP-1257) - + Central European (CP-1250) - + Cyrillic (CP-1251) - + Greek (CP-1253) - + Hebrew (CP-1255) - + Japanese (CP-932) - + Korean (CP-949) - + Simplified Chinese (CP-936) - + Thai (CP-874) - + Traditional Chinese (CP-950) - + Turkish (CP-1254) - + Vietnam (CP-1258) - + Western European (CP-1252) - + Character Encoding - + The codepage setting is responsible for the correct character representation. Usually you are fine with the preselected choice. - + Please choose the character encoding. The encoding is responsible for the correct character representation. - + Song name singular - + Songs name plural - Lagu + Songs container title - Lagu + Exports songs using the export wizard. - + 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. - + @@ -6339,37 +6336,37 @@ The encoding is responsible for the correct character representation. Author Maintenance - + Display name: - + First name: - + Last name: - + You need to type in the first name of the author. - + You need to type in the last name of the author. - + You have not set a display name for the author, combine the first and last names? - + @@ -6377,7 +6374,7 @@ The encoding is responsible for the correct character representation. The file does not have a valid extension. - + @@ -6385,14 +6382,14 @@ The encoding is responsible for the correct character representation. Administered by %s - + [above are Song Tags with notes imported from EasyWorship] - + @@ -6400,12 +6397,12 @@ The encoding is responsible for the correct character representation. Meta Data - + Custom Book Names - + @@ -6413,207 +6410,207 @@ The encoding is responsible for the correct character representation. Song Editor - + &Title: - &Judul: + Alt&ernate title: - + &Lyrics: - + &Verse order: - + Ed&it All - Sun&ting Semua + Title && Lyrics - + &Add to Song - + &Remove - + &Manage Authors, Topics, Song Books - + A&dd to Song - + R&emove - + Book: - Kitab: + Number: - + Authors, Topics && Song Book - + New &Theme - + Copyright Information - + Comments - + Theme, Copyright Info && Comments - + Add Author - + This author does not exist, do you want to add them? - + This author is already in the list. - + You have not selected a valid author. Either select an author from the list, or type in a new author and click the "Add Author to Song" button to add the new author. - + Add Topic - + This topic does not exist, do you want to add it? - + This topic is already in the list. - + You have not selected a valid topic. Either select a topic from the list, or type in a new topic and click the "Add Topic to Song" button to add the new topic. - + You need to type in a song title. - + You need to type in at least one verse. - + The verse order is invalid. There is no verse corresponding to %s. Valid entries are %s. - + Add Book - + This song book does not exist, do you want to add it? - + You need to have an author for this song. - + You need to type some text in to the verse. - + Linked Audio - + Add &File(s) - + Add &Media - + Remove &All - + Open File(s) - + <strong>Warning:</strong> Not all of the verses are in use. - + The verse order is invalid. There are no verses corresponding to %s. Valid entries are %s. - + @@ -6621,22 +6618,22 @@ The encoding is responsible for the correct character representation. Edit Verse - + &Verse type: - + &Insert - + Split a slide into two by inserting a verse splitter. - + @@ -6644,82 +6641,82 @@ The encoding is responsible for the correct character representation. Song Export Wizard - + Select Songs - + Check the songs you want to export. - + Uncheck All - + Check All - + Select Directory - + Directory: - + Exporting - + Please wait while your songs are exported. - + You need to add at least one Song to export. - + No Save Location specified - + Starting export... - + You need to specify a directory. - + Select Destination Folder - + Select the directory where you want the songs to be saved. - + This wizard will help to export your songs to the open and free <strong>OpenLyrics</strong> worship song format. - + @@ -6727,172 +6724,172 @@ The encoding is responsible for the correct character representation. Select Document/Presentation Files - + Song Import Wizard - + This wizard will help you to import songs from a variety of formats. Click the next button below to start the process by selecting a format to import from. - + Generic Document/Presentation - + Add Files... - + Remove File(s) - + Please wait while your songs are imported. - + OpenLP 2.0 Databases - + openlp.org v1.x Databases - + Words Of Worship Song Files - + Songs Of Fellowship Song Files - + SongBeamer Files - + SongShow Plus Song Files - + Foilpresenter Song Files - + Copy - Salin + Save to File - Simpan menjadi Berkas + The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. - + The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. - + OpenLyrics or OpenLP 2.0 Exported Song - + OpenLyrics Files - + CCLI SongSelect Files - + EasySlides XML File - + EasyWorship Song Database - + DreamBeam Song Files - + You need to specify a valid PowerSong 1.0 database folder. - + ZionWorx (CSV) - + First convert your ZionWorx database to a CSV text file, as explained in the <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">User Manual</a>. - + SundayPlus Song Files - + This importer has been disabled. - + MediaShout Database - + The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. - + SongPro Text Files - + SongPro (Export File) - + In SongPro, export your songs using the File -> Export menu - + @@ -6900,12 +6897,12 @@ The encoding is responsible for the correct character representation. Select Media File(s) - + Select one or more audio files from the list below, and click OK to import them into this song. - + @@ -6913,65 +6910,63 @@ The encoding is responsible for the correct character representation. Titles - + Lyrics - + CCLI License: - + Entire Song - + Are you sure you want to delete the %n selected song(s)? - - - + Maintain the lists of authors, topics and books. - + copy For song cloning - + Search Titles... - + Search Entire Song... - + Search Lyrics... - + Search Authors... - + Search Song Books... - + @@ -6979,7 +6974,7 @@ The encoding is responsible for the correct character representation. Unable to open the MediaShout database. - + @@ -6987,7 +6982,7 @@ The encoding is responsible for the correct character representation. Not a valid openlp.org 1.x song database. - + @@ -6995,7 +6990,7 @@ The encoding is responsible for the correct character representation. Not a valid OpenLP 2.0 song database. - + @@ -7003,7 +6998,7 @@ The encoding is responsible for the correct character representation. Exporting "%s"... - + @@ -7011,12 +7006,12 @@ The encoding is responsible for the correct character representation. No songs to import. - + Verses not found. Missing "PART" header. - + @@ -7024,22 +7019,22 @@ The encoding is responsible for the correct character representation. Song Book Maintenance - + &Name: - + &Publisher: - + You need to type in a name for the book. - + @@ -7047,12 +7042,12 @@ The encoding is responsible for the correct character representation. Your song export failed. - + Finished export. To import these files use the <strong>OpenLyrics</strong> importer. - + @@ -7060,27 +7055,27 @@ The encoding is responsible for the correct character representation. copyright - + The following songs could not be imported: - + Cannot access OpenOffice or LibreOffice - + Unable to open file - + File not found - + @@ -7088,107 +7083,107 @@ The encoding is responsible for the correct character representation. Could not add your author. - + This author already exists. - + Could not add your topic. - + This topic already exists. - + Could not add your book. - + This book already exists. - + Could not save your changes. - + Could not save your modified author, because the author already exists. - + Could not save your modified topic, because it already exists. - + Delete Author - + Are you sure you want to delete the selected author? - + This author cannot be deleted, they are currently assigned to at least one song. - + Delete Topic - + Are you sure you want to delete the selected topic? - + This topic cannot be deleted, it is currently assigned to at least one song. - + Delete Book - + Are you sure you want to delete the selected book? - + This book cannot be deleted, it is currently assigned to at least one song. - + The author %s already exists. Would you like to make songs with author %s use the existing author %s? - + The topic %s already exists. Would you like to make songs with topic %s use the existing topic %s? - + The book %s already exists. Would you like to make songs with book %s use the existing book %s? - + @@ -7196,27 +7191,27 @@ The encoding is responsible for the correct character representation. Songs Mode - + Enable search as you type - + Display verses on live tool bar - + Update service from song edit - + Import missing songs from service files - + @@ -7224,17 +7219,17 @@ The encoding is responsible for the correct character representation. Topic Maintenance - + Topic name: - + You need to type in a topic name. - + @@ -7242,32 +7237,32 @@ The encoding is responsible for the correct character representation. Verse - + Chorus - + Bridge - + Pre-Chorus - + Intro - + Ending - + @@ -7280,12 +7275,12 @@ The encoding is responsible for the correct character representation. Error reading CSV file. - + File not valid ZionWorx CSV format. - + - + \ No newline at end of file diff --git a/resources/i18n/it.ts b/resources/i18n/it.ts index c5b05524a..a0ac7f643 100644 --- a/resources/i18n/it.ts +++ b/resources/i18n/it.ts @@ -1,5 +1,4 @@ - - + AlertsPlugin @@ -102,7 +101,7 @@ Vuoi continuare comunque? - The alert text does not contain '<>'. + The alert text does not contain '<>'. Do you want to continue anyway? Il testo di avviso non contiene '<>'.⏎ Vuoi continuare comunque? @@ -237,428 +236,428 @@ Vuoi continuare comunque? Genesis - + Exodus - + Leviticus - + Numbers - + Deuteronomy - + Joshua - + Judges - + Ruth - + 1 Samuel - + 2 Samuel - + 1 Kings - + 2 Kings - + 1 Chronicles - + 2 Chronicles - + Ezra - + Nehemiah - + Esther - + Job - + Psalms - + Proverbs - + Ecclesiastes - + Song of Solomon - + Isaiah - + Jeremiah - + Lamentations - + Ezekiel - + Daniel - + Hosea - + Joel - + Amos - + Obadiah - + Jonah - + Micah - + Nahum - + Habakkuk - + Zephaniah - + Haggai - + Zechariah - + Malachi - + Matthew - + Mark - + Luke - + John - + Acts - + Romans - + 1 Corinthians - + 2 Corinthians - + Galatians - + Ephesians - + Philippians - + Colossians - + 1 Thessalonians - + 2 Thessalonians - + 1 Timothy - + 2 Timothy - + Titus - + Philemon - + Hebrews - + James - + 1 Peter - + 2 Peter - + 1 John - + 2 John - + 3 John - + Jude - + Revelation - + Judith - + Wisdom - + Tobit - + Sirach - + Baruch - + 1 Maccabees - + 2 Maccabees - + 3 Maccabees - + 4 Maccabees - + Rest of Daniel - + Rest of Esther - + Prayer of Manasses - + Letter of Jeremiah - + Prayer of Azariah - + Susanna - + Bel - + 1 Esdras - + 2 Esdras - + :|v|V|verse|verses;;-|to;;,|and;;end Double-semicolon delimited separators for parsing references. Consult the developers for further information. - + @@ -666,44 +665,44 @@ Vuoi continuare comunque? You need to specify a version name for your Bible. - + You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. - + Bible Exists - + This Bible already exists. Please import a different Bible or first delete the existing one. - + You need to specify a book name for "%s". - + The book name "%s" is not correct. Numbers can only be used at the beginning and must be followed by one or more non-numeric characters. - + Duplicate Book Name - + The Book Name "%s" has been entered more than once. - + @@ -751,7 +750,7 @@ Book Chapter%(verse)sVerse%(range)sVerse%(list)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sVerse%(list)sChapter%(verse)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sChapter%(verse)sVerse Please pay attention to the appended "s" of the wildcards and refrain from translating the words inside the names in the brackets. - + @@ -806,81 +805,81 @@ Changes do not affect verses already in the service. Custom Scripture References - + Verse Separator: - + Range Separator: - + List Separator: - + End Mark: - + Multiple alternative verse separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. - + Multiple alternative range separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. - + Multiple alternative list separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. - + Multiple alternative end marks may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. - + English - + Default Bible Language - + Book name language in search field, search results and on display: - + Bible Language - + Application Language - + @@ -923,7 +922,7 @@ search results and on display: The following book name cannot be matched up internally. Please select the corresponding name from the list. - + @@ -958,68 +957,68 @@ search results and on display: Bible Editor - + License Details - Dettaglio Licenza + Version name: - Nome Versione: + Copyright: - Copyright: + Permissions: - + Default Bible Language - + Book name language in search field, search results and on display: - + Global Settings - + Bible Language - + Application Language - + English - + This is a Web Download Bible. It is not possible to customize the Book Names. - + To use the customized book names, "Bible language" must be selected on the Meta Data tab or, if "Global settings" is selected, on the Bible page in Configure OpenLP. - + @@ -1161,73 +1160,73 @@ It is not possible to customize the Book Names. You need to specify a version name for your Bible. - + You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. - + Bible Exists - + This Bible already exists. Please import a different Bible or first delete the existing one. - + Your Bible import failed. - + CSV File - + Bibleserver - + Permissions: - + Bible file: - + Books file: - + Verses file: - + openlp.org 1.x Bible Files - + Registering Bible... - + Registered Bible. Please note, that verses will be downloaded on demand and thus an internet connection is required. - + @@ -1235,17 +1234,17 @@ demand and thus an internet connection is required. Select Language - + OpenLP is unable to determine the language of this translation of the Bible. Please select the language from the list below. - + Language: - + @@ -1253,7 +1252,7 @@ demand and thus an internet connection is required. You need to choose a language. - + @@ -1261,94 +1260,94 @@ demand and thus an internet connection is required. Quick - + Find: - + Book: - + Chapter: - + Verse: - + From: - + To: - + Text Search - + Second: - + Scripture Reference - + Toggle to keep or clear the previous results. - + You cannot combine single and dual Bible verse search results. Do you want to delete your search results and start a new search? - + Bible not fully loaded. - + Information - + The second Bible does not contain all the verses that are in the main Bible. Only verses found in both Bibles will be shown. %d verses have not been included in the results. - + Search Scripture Reference... - + Search Text... - + Are you sure you want to completely delete "%s" Bible from OpenLP? You will need to re-import this Bible to use it again. - + @@ -1356,7 +1355,7 @@ You will need to re-import this Bible to use it again. Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. - + @@ -1365,7 +1364,7 @@ You will need to re-import this Bible to use it again. Importing %s %s... Importing <book name> <chapter>... - + @@ -1373,13 +1372,13 @@ You will need to re-import this Bible to use it again. Detecting encoding (this may take a few minutes)... - + Importing %s %s... Importing <book name> <chapter>... - + @@ -1387,143 +1386,143 @@ You will need to re-import this Bible to use it again. Select a Backup Directory - + Bible Upgrade Wizard - + This wizard will help you to upgrade your existing Bibles from a prior version of OpenLP 2. Click the next button below to start the upgrade process. - + Select Backup Directory - + Please select a backup directory for your Bibles - + Previous releases of OpenLP 2.0 are unable to use upgraded Bibles. This will create a backup of your current Bibles so that you can simply copy the files back to your OpenLP data directory if you need to revert to a previous release of OpenLP. Instructions on how to restore the files can be found in our <a href="http://wiki.openlp.org/faq">Frequently Asked Questions</a>. - + Please select a backup location for your Bibles. - + Backup Directory: - + There is no need to backup my Bibles - + Select Bibles - + Please select the Bibles to upgrade - + Upgrading - + Please wait while your Bibles are upgraded. - + The backup was not successful. To backup your Bibles you need permission to write to the given directory. - + Upgrading Bible %s of %s: "%s" Failed - + Upgrading Bible %s of %s: "%s" Upgrading ... - + Download Error - Errore di Download + To upgrade your Web Bibles an Internet connection is required. - + Upgrading Bible %s of %s: "%s" Upgrading %s ... - + Upgrading Bible %s of %s: "%s" Complete - + , %s failed - + Upgrading Bible(s): %s successful%s Please note that verses from Web Bibles will be downloaded on demand and so an Internet connection is required. - + Upgrading Bible(s): %s successful%s - + Upgrade failed. - + You need to specify a backup directory for your Bibles. - + Starting upgrade... - + There are no Bibles that need to be upgraded. - + @@ -1531,65 +1530,65 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I <strong>Custom Slide Plugin</strong><br />The custom slide plugin provides the ability to set up custom text slides that can be displayed on the screen the same way songs are. This plugin provides greater freedom over the songs plugin. - + Custom Slide name singular - + Custom Slides name plural - + Custom Slides container title - + Load a new custom slide. - + Import a custom slide. - + Add a new custom slide. - + Edit the selected custom slide. - + Delete the selected custom slide. - + Preview the selected custom slide. - + Send the selected custom slide live. - + Add the selected custom slide to the service. - + @@ -1597,12 +1596,12 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I Custom Display - + Display footer - + @@ -1610,62 +1609,62 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I Edit Custom Slides - + &Title: - + Add a new slide at bottom. - + Edit the selected slide. - + Edit all the slides at once. - + Split a slide into two by inserting a slide splitter. - + The&me: - + &Credits: - + You need to type in a title. - + You need to add at least one slide - + Ed&it All - + Insert Slide - + @@ -1673,7 +1672,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I Edit Slide - + @@ -1681,10 +1680,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I Are you sure you want to delete the %n selected custom slide(s)? - - - - + @@ -1692,60 +1688,60 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I <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. - + Image name singular - + Images name plural - + Images container title - + 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. - + @@ -1753,7 +1749,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I Select Attachment - + @@ -1761,43 +1757,43 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I Select Image(s) - + You must select an image to delete. - + You must select an image to replace the background with. - + Missing Image(s) - + The following image(s) no longer exist: %s - + The following image(s) no longer exist: %s Do you want to add the other images anyway? - + There was a problem replacing your background, the image file "%s" no longer exists. - + There was no display item to amend. - + @@ -1805,17 +1801,17 @@ Do you want to add the other images anyway? Background Color - + Default Color: - + Visible background for images with aspect ratio different to screen. - + @@ -1823,60 +1819,60 @@ Do you want to add the other images anyway? <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. - + Media name singular - + Media name plural - + Media container title - + Load new media. - + Add 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. - + @@ -1884,57 +1880,57 @@ Do you want to add the other images anyway? Select Media - + You must select a media file to delete. - + You must select a media file to replace the background with. - + There was a problem replacing your background, the media file "%s" no longer exists. - + Missing Media File - + The file %s no longer exists. - + Videos (%s);;Audio (%s);;%s (*) - + There was no display item to amend. - + Unsupported File - + Automatic - + Use Player: - + @@ -1942,22 +1938,22 @@ Do you want to add the other images anyway? Available Media Players - + %s (unavailable) - + Player Order - + Allow media player to be overridden - + @@ -1965,19 +1961,19 @@ Do you want to add the other images anyway? Image Files - + Information - + Bible format has changed. You have to upgrade your existing Bibles. Should OpenLP upgrade now? - + @@ -1985,32 +1981,32 @@ Should OpenLP upgrade now? Credits - + License - + Contribute - + build %s - + This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See below for more details. - + @@ -2046,7 +2042,7 @@ Translators %s Japanese (ja) %s - Norwegian Bokmål (nb) + Norwegian Bokmål (nb) %s Dutch (nl) %s @@ -2075,7 +2071,7 @@ Final Credit on the cross, setting us free from sin. We bring this software to you for free because He has set us free. - + @@ -2086,13 +2082,13 @@ OpenLP is free church presentation software, or lyrics projection software, used Find out more about OpenLP: http://openlp.org/ OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider contributing by using the button below. - + - Copyright © 2004-2012 %s -Portions copyright © 2004-2012 %s - + Copyright © 2004-2012 %s +Portions copyright © 2004-2012 %s + @@ -2100,271 +2096,271 @@ Portions copyright © 2004-2012 %s UI Settings - + Number of recent files to display: - + Remember active media manager tab on startup - + Double-click to send items straight to live - + Expand new service items on creation - + Enable application exit confirmation - + Mouse Cursor - + Hide mouse cursor when over display window - + Default Image - + Background color: - Colore di sfondo: + Image file: - + Open File - + Advanced - + Preview items when clicked in Media Manager - + Click to select a color. - + Browse for an image file to display. - + Revert to the default OpenLP logo. - + Service %Y-%m-%d %H-%M This may not contain any of the following characters: /\?*|<>[]":+ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for more information. - + Default Service Name - + Enable default service name - + Date and Time: - + Monday - + Tuesday - + Wednesday - + Thurdsday - + Friday - + Saturday - + Sunday - + Now - + Time when usual service starts. - + Name: - + Consult the OpenLP manual for usage. - + Revert to the default service name "%s". - + Example: - + X11 - + Bypass X11 Window Manager - + Syntax error. - + Data Location - + Current path: - + Custom path: - + Browse for new data file location. - + Set the data location to the default. - + Cancel - + Cancel OpenLP data directory location change. - + Copy data to new location. - + Copy the OpenLP data files to the new location. - + <strong>WARNING:</strong> New data directory location contains OpenLP data files. These files WILL be replaced during a copy. - + Data Directory Error - + Select Data Directory Location - + Confirm Data Directory Change - + Reset Data Directory - + Are you sure you want to change the location of the OpenLP data directory to the default location? This location will be used after OpenLP is closed. - + Overwrite Existing Data - + @@ -2372,38 +2368,38 @@ This location will be used after OpenLP is closed. Error Occurred - + Oops! OpenLP hit a problem, and couldn't recover. The text in the box below contains information that might be helpful to the OpenLP developers, so please e-mail it to bugs@openlp.org, along with a detailed description of what you were doing when the problem occurred. - + Send E-Mail - + Save to File - + Please enter a description of what you were doing to cause this error (Minimum 20 characters) - + Attach File - + Description characters to enter : %s - + @@ -2412,17 +2408,17 @@ This location will be used after OpenLP is closed. Platform: %s - + Save Crash Report - + Text files (*.txt *.log *.text) - + @@ -2440,7 +2436,7 @@ Version: %s --- Library Versions --- %s - + @@ -2459,7 +2455,7 @@ Version: %s %s Please add the information that bug reports are favoured written in English. - + @@ -2467,17 +2463,17 @@ Version: %s File Rename - + New File Name: - + File Copy - + @@ -2485,17 +2481,17 @@ Version: %s Select Translation - + Choose the translation you'd like to use in OpenLP. - + Translation: - + @@ -2503,201 +2499,201 @@ Version: %s Songs - + First Time Wizard - + Welcome to the First Time Wizard - + Activate required Plugins - + Select the Plugins you wish to use. - + Bible - Bibbia + Images - + Presentations - + Media (Audio and Video) - + Allow remote access - + Monitor Song Usage - + Allow Alerts - + Default Settings - + Downloading %s... - + Download complete. Click the finish button to start OpenLP. - + Enabling selected plugins... - + No Internet Connection - + Unable to detect an Internet connection. - + Sample Songs - + Select and download public domain songs. - + Sample Bibles - + Select and download free Bibles. - + Sample Themes - + Select and download sample themes. - + Set up default settings to be used by OpenLP. - + Default output display: - + Select default theme: - + Starting configuration process... - + This wizard will help you to configure OpenLP for initial use. Click the next button below to start. - + Setting Up And Downloading - + Please wait while OpenLP is set up and your data is downloaded. - + Setting Up - + Click the finish button to start OpenLP. - + Download complete. Click the finish button to return to OpenLP. - + Click the finish button to return to OpenLP. - + Custom Slides - + Finish - + No Internet connection was found. The First Time Wizard needs an Internet connection in order to be able to download sample songs, Bibles and themes. Click the Finish button now to start OpenLP with initial settings and no sample data. To re-run the First Time Wizard and import this sample data at a later time, check your Internet connection and re-run this wizard by selecting "Tools/Re-run First Time Wizard" from OpenLP. - + To cancel the First Time Wizard completely (and not start OpenLP), click the Cancel button now. - + @@ -2705,37 +2701,37 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can Configure Formatting Tags - + Edit Selection - + Save - + Description - + Tag - + Start HTML - + End HTML - + @@ -2743,32 +2739,32 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can Update Error - + Tag "n" already defined. - + New Tag - + <HTML here> - + </and here> - + Tag %s already defined. - + @@ -2776,82 +2772,82 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can Red - + Black - + Blue - + Yellow - + Green - + Pink - + Orange - + Purple - + White - + Superscript - + Subscript - + Paragraph - + Bold - + Italics - + Underline - + Break - + @@ -2859,157 +2855,157 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can General - + Monitors - + Select monitor for output display: - + Display if a single screen - + Application Startup - + Show blank screen warning - + Automatically open the last service - + Show the splash screen - + Application Settings - + Prompt to save before starting a new service - + Automatically preview next item in service - + sec - + CCLI Details - + SongSelect username: - + SongSelect password: - + X - + Y - + Height - + Width - + Check for updates to OpenLP - + Unblank display when adding new live item - + Timed slide interval: - + Background Audio - + Start background audio paused - + Service Item Slide Limits - + Override display position: - + Repeat track list - + Behavior of next/previous on the last/first slide: - + &Remain on Slide - + &Wrap around - + &Move to next/previous service item - + @@ -3017,12 +3013,12 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can Language - + Please restart OpenLP to use your new language setting. - + @@ -3030,7 +3026,7 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can OpenLP Display - + @@ -3038,433 +3034,433 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can &File - + &Import - + &Export - + &View - + M&ode - + &Tools - + &Settings - + &Language - + &Help - + Media Manager - + Service Manager - + Theme Manager - + &New - &Nuovo + &Open - + Open an existing service. - + &Save - &Salva + Save the current service to disk. - + Save &As... - + Save Service As - + Save the current service under a new name. - + E&xit - + Quit OpenLP - + &Theme - + &Configure OpenLP... - + &Media Manager - + Toggle Media Manager - + Toggle the visibility of the media manager. - + &Theme Manager - + Toggle Theme Manager - + Toggle the visibility of the theme manager. - + &Service Manager - + Toggle Service Manager - + Toggle the visibility of the service manager. - + &Preview Panel - + Toggle Preview Panel - + Toggle the visibility of the preview panel. - + &Live Panel - + Toggle Live Panel - + Toggle the visibility of the live panel. - + &Plugin List - + List the Plugins - + &User Guide - + &About - + More information about OpenLP - + &Online Help - + &Web Site - + Use the system language, if available. - + Set the interface language to %s - + Add &Tool... - + Add an application to the list of tools. - + &Default - + Set the view mode back to the default. - + &Setup - + Set the view mode to Setup. - + &Live - + Set the view mode to Live. - + Version %s of OpenLP is now available for download (you are currently running version %s). You can download the latest version from http://openlp.org/. - + OpenLP Version Updated - + OpenLP Main Display Blanked - + The Main Display has been blanked out - + Default Theme: %s - + English Please add the name of your language here - + Italian Configure &Shortcuts... - + Close OpenLP - + Are you sure you want to close OpenLP? - + Open &Data Folder... - + Open the folder where songs, bibles and other data resides. - + &Autodetect - + Update Theme Images - + Update the preview images for all themes. - + Print the current service. - + &Recent Files - + L&ock Panels - + Prevent the panels being moved. - + Re-run First Time Wizard - + Re-run the First Time Wizard, importing songs, Bibles and themes. - + Re-run First Time Wizard? - + Are you sure you want to re-run the First Time Wizard? Re-running this wizard may make changes to your current OpenLP configuration and possibly add songs to your existing songs list and change your default theme. - + Clear List Clear List of recent files - + Clear the list of recent files. - + Configure &Formatting Tags... - + Export OpenLP settings to a specified *.config file - + Settings - + Import OpenLP settings from a specified *.config file previously exported on this or another machine - + Import settings? - + @@ -3473,42 +3469,42 @@ Re-running this wizard may make changes to your current OpenLP configuration and Importing settings will make permanent changes to your current OpenLP configuration. Importing incorrect settings may cause erratic behaviour or OpenLP to terminate abnormally. - + Open File - + OpenLP Export Settings Files (*.conf) - + Import settings - + OpenLP will now close. Imported settings will be applied the next time you start OpenLP. - + Export Settings File - + OpenLP Export Settings File (*.conf) - + New Data Directory Error - + @@ -3516,21 +3512,21 @@ Importing incorrect settings may cause erratic behaviour or OpenLP to terminate Database Error - + The database being loaded was created in a more recent version of OpenLP. The database is version %d, while OpenLP expects version %d. The database will not be loaded. Database: %s - + OpenLP cannot load your database. Database: %s - + @@ -3538,73 +3534,73 @@ Database: %s No Items Selected - + &Add to selected Service Item - + You must select one or more items to preview. - + You must select one or more items to send live. - + You must select one or more items. - + You must select an existing service item to add to. - + Invalid Service Item - + You must select a %s service item. - + You must select one or more items to add. - + No Search Results - + Invalid File Type - + Invalid File %s. Suffix not supported - + &Clone - + Duplicate files were found on import and were ignored. - + @@ -3612,12 +3608,12 @@ Suffix not supported <lyrics> tag is missing. - + <verse> tag is missing. - + @@ -3625,42 +3621,42 @@ Suffix not supported Plugin List - + Plugin Details - + Status: - + Active - + Inactive - + %s (Inactive) - + %s (Active) - + %s (Disabled) - + @@ -3668,12 +3664,12 @@ Suffix not supported Fit Page - + Fit Width - + @@ -3681,77 +3677,77 @@ Suffix not supported Options - + Copy - + Copy as HTML - + Zoom In - + Zoom Out - + Zoom Original - + Other Options - + Include slide text if available - + Include service item notes - + Include play length of media items - + Add page break before each text item - + Service Sheet - + Print - + Title: - + Custom Footer Text: - + @@ -3759,12 +3755,12 @@ Suffix not supported Screen - + primary - + @@ -3772,12 +3768,12 @@ Suffix not supported <strong>Start</strong>: %s - + <strong>Length</strong>: %s - + @@ -3785,7 +3781,7 @@ Suffix not supported Reorder Service Item - + @@ -3793,278 +3789,278 @@ Suffix not supported Move to &top - + Move item to the top of the service. - + Move &up - + Move item up one position in the service. - + Move &down - + Move item down one position in the service. - + Move to &bottom - + Move item to the end of the service. - + &Delete From Service - + Delete the selected item from the service. - + &Add New Item - + &Add to Selected Item - + &Edit Item - + &Reorder Item - + &Notes - + &Change Item Theme - + OpenLP Service Files (*.osz) - + 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 - + &Expand all - + Expand all the service items. - + &Collapse all - + Collapse all the service items. - + Open File - + Moves the selection down the window. - + Move up - + Moves the selection up the window. - + Go Live - + Send the selected item to Live. - + &Start Time - + Show &Preview - + Modified Service - + The current service has been modified. Would you like to save this service? - + Custom Service Notes: - + Notes: - + Playing time: - + Untitled Service - + File could not be opened because it is corrupt. - + Empty File - + This service file does not contain any data. - + Corrupt File - + Load an existing service. - + Save this service. - + Select a theme for the service. - + This file is either corrupt or it is not an OpenLP 2.0 service file. - + Service File Missing - + Slide theme - + Notes - + Edit - + Service copy only - + Error Saving File - + There was an error saving your file. - + @@ -4072,7 +4068,7 @@ The content encoding is not UTF-8. Service Item Notes - + @@ -4080,7 +4076,7 @@ The content encoding is not UTF-8. Configure OpenLP - + @@ -4088,67 +4084,67 @@ The content encoding is not UTF-8. Action - + Shortcut - + Duplicate Shortcut - + The shortcut "%s" is already assigned to another action, please use a different shortcut. - + Alternate - + Select an action and click one of the buttons below to start capturing a new primary or alternate shortcut, respectively. - + Default - + Custom - + Capture shortcut. - + Restore the default shortcut of this action. - + Restore Default Shortcuts - + Do you want to restore all shortcuts to their defaults? - + Configure Shortcuts - + @@ -4156,172 +4152,172 @@ The content encoding is not UTF-8. Hide - + Go To - + Blank Screen - + Blank to Theme - + Show Desktop - + Previous Service - + Next Service - + Escape Item - + Move to previous. - + Move to next. - + Play Slides - + Delay between slides in seconds. - + Move to live. - + Add to Service. - + Edit and reload song preview. - + Start playing media. - + Pause audio. - + Pause playing media. - + Stop playing media. - + Video position. - + Audio Volume. - + Go to "Verse" - + Go to "Chorus" - + Go to "Bridge" - + Go to "Pre-Chorus" - + Go to "Intro" - + Go to "Ending" - + Go to "Other" - + Previous Slide - + Next Slide - + Pause Audio - + Background Audio - + Go to next audio track. - + Tracks - + @@ -4329,17 +4325,17 @@ The content encoding is not UTF-8. Spelling Suggestions - + Formatting Tags - + Language: - + @@ -4347,67 +4343,67 @@ The content encoding is not UTF-8. Hours: - + Minutes: - + Seconds: - + Item Start and Finish Time - + Start - + Finish - + Length - + Time Validation Error - + Finish time is set after the end of the media item - + Start time is after the finish time of the media item - + Theme Layout - + The blue box shows the main area. - + The red box shows the footer. - + @@ -4415,32 +4411,32 @@ The content encoding is not UTF-8. Select Image - + Theme Name Missing - + There is no name for this theme. Please enter one. - + Theme Name Invalid - + Invalid theme name. Please enter one. - + (approximately %d lines per slide) - + @@ -4448,193 +4444,193 @@ The content encoding is not UTF-8. Create a new theme. - + Edit Theme - + Edit a theme. - + Delete Theme - + Delete a theme. - + Import Theme - + Import a theme. - + Export Theme - + Export a theme. - + &Edit Theme - + &Delete Theme - + Set As &Global Default - + %s (default) - + You must select a theme to edit. - + You are unable to delete the default theme. - + Theme %s is used in the %s plugin. - + You have not selected a theme. - + Save Theme - (%s) - + Theme Exported - + Your theme has been successfully exported. - + Theme Export Failed - + Your theme could not be exported due to an error. - + Select Theme Import File - + File is not a valid theme. - + &Copy Theme - + &Rename Theme - + &Export Theme - + You must select a theme to rename. - + Rename Confirmation - + Rename %s theme? - + You must select a theme to delete. - + Delete Confirmation - + Delete %s theme? - + Validation Error - + A theme with this name already exists. - + OpenLP Themes (*.theme *.otz) - + Copy of %s Copy of <theme name> - + Theme Already Exists - + @@ -4642,272 +4638,272 @@ The content encoding is not UTF-8. Theme Wizard - + Welcome to the Theme Wizard - + Set Up Background - + Set up your theme's background according to the parameters below. - + Background type: - + Solid Color - + Gradient - + Color: - + Gradient: - + Horizontal - + Vertical - + Circular - + Top Left - Bottom Right - + Bottom Left - Top Right - + Main Area Font Details - + Define the font and display characteristics for the Display text - + Font: - + Size: - + Line Spacing: - + &Outline: - + &Shadow: - + Bold - + Italic - + Footer Area Font Details - + Define the font and display characteristics for the Footer text - + Text Formatting Details - + Allows additional display formatting information to be defined - + Horizontal Align: - + Left - + Right - + Center - + Output Area Locations - + Allows you to change and move the main and footer areas. - + &Main Area - + &Use default location - + X position: - + px - + Y position: - + Width: - + Height: - + Use default location - + Theme name: - + Edit Theme - %s - + This wizard will help you to create and edit your themes. Click the next button below to start the process by setting up your background. - + Transitions: - + &Footer Area - + Starting color: - + Ending color: - + Background color: - Colore di sfondo: + Justify - + Layout Preview - + Transparent - + Preview and Save - + Preview the theme and save it. - + @@ -4915,47 +4911,47 @@ The content encoding is not UTF-8. Global Theme - + Theme Level - + S&ong Level - + Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. - + &Service Level - + Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. - + &Global Level - + Use the global theme, overriding any themes associated with either the service or the songs. - + Themes - + @@ -4963,592 +4959,592 @@ The content encoding is not UTF-8. Error - + About - + &Add - + Advanced - + All Files - + Bottom - + Browse... - + Cancel - + CCLI number: - + Create a new service. - + &Delete - + &Edit - + Empty Field - + Export - + pt Abbreviated font pointsize unit - + Image - + Import - + Live - + Live Background Error - + Load - + Middle - + New - + New Service - + New Theme - + No File Selected Singular - + No Files Selected Plural - + No Item Selected Singular - + No Items Selected Plural - + openlp.org 1.x - + OpenLP 2.0 - + Preview - + Replace Background - + Reset Background - + s The abbreviated unit for seconds - + Save && Preview - + Search - + You must select an item to delete. - + You must select an item to edit. - + Save Service - + Service - + Start %s - + Theme Singular - + Themes Plural - + Top - + Version - + Delete the selected item. - + Move selection up one position. - + Move selection down one position. - + &Vertical Align: - + Finished import. - + Format: - + Importing - + Importing "%s"... - + Select Import Source - + Select the import format and the location to import from. - + The openlp.org 1.x importer has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "python-sqlite" module. - + Open %s File - + %p% - + Ready. - + Starting import... - + You need to specify at least one %s file to import from. A file type e.g. OpenSong - + Welcome to the Bible Import Wizard - + Welcome to the Song Export Wizard - + Welcome to the Song Import Wizard - + Author Singular - + Authors Plural - + - © + © Copyright symbol. - + Song Book Singular - + Song Books Plural - + Song Maintenance - + Topic Singular - + Topics Plural - + Continuous - + Default - + Display style: - + Duplicate Error - + File - + Help - + h The abbreviated unit for hours - + Layout style: - + Live Toolbar - + m The abbreviated unit for minutes - + OpenLP is already running. Do you wish to continue? - + Settings - + Tools - + Unsupported File - + Verse Per Slide - + Verse Per Line - + View - + Title and/or verses not found - + XML syntax error - + View Mode - + Open service. - + Print Service - + Replace live background. - + Reset live background. - + Split a slide into two only if it does not fit on the screen as one slide. - + Welcome to the Bible Upgrade Wizard - + Confirm Delete - + Play Slides in Loop - + Play Slides to End - + Stop Play Slides in Loop - + Stop Play Slides to End - + Next Track - + Search Themes... Search bar place holder text - + Optional &Split - + Invalid Folder Selected Singular - + Invalid File Selected Singular - + Invalid Files Selected Plural - + No Folder Selected Singular - + Open %s Folder - + You need to specify one %s file to import from. A file type e.g. OpenSong - + You need to specify one %s folder to import from. A song format e.g. PowerSong - + @@ -5557,25 +5553,25 @@ The content encoding is not UTF-8. %1 and %2 Locale list separator: 2 items - + %1, and %2 Locale list separator: end - + %1, %2 Locale list separator: middle - + %1, %2 Locale list separator: start - + @@ -5583,50 +5579,50 @@ The content encoding is not UTF-8. <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. - + Presentation name singular - + Presentations name plural - + Presentations container title - + Load a new presentation. - + Delete the selected presentation. - + Preview the selected presentation. - + Send the selected presentation live. - + Add the selected presentation to the service. - + @@ -5634,52 +5630,52 @@ The content encoding is not UTF-8. Select Presentation(s) - + Automatic - + Present using: - + File Exists - + A presentation with that filename already exists. - + This type of presentation is not supported. - + Presentations (%s) - + Missing Presentation - + The presentation %s is incomplete, please reload. - + The presentation %s no longer exists. - + @@ -5687,17 +5683,17 @@ The content encoding is not UTF-8. Available Controllers - + %s (unavailable) - + Allow presentation application to be overridden - + @@ -5705,25 +5701,25 @@ The content encoding is not UTF-8. <strong>Remote Plugin</strong><br />The remote plugin provides the ability to send messages to a running version of OpenLP on a different computer via a web browser or through the remote API. - + Remote name singular - + Remotes name plural - + Remote container title - + @@ -5731,107 +5727,107 @@ The content encoding is not UTF-8. OpenLP 2.0 Remote - + OpenLP 2.0 Stage View - + Service Manager - + Slide Controller - + Alerts - Avvisi + Search - + Refresh - + Blank - + Show - + Prev - + Next - + Text - + Show Alert - + Go Live - + No Results - + Options - + Add to Service - + Home - + Theme - + Desktop - + Add &amp; Go to Service - + @@ -5839,42 +5835,42 @@ The content encoding is not UTF-8. Serve on IP address: - + Port number: - + Server Settings - + Remote URL: - + Stage view URL: - + Display stage time in 12h format - + Android App - + Scan the QR code or click <a href="https://market.android.com/details?id=org.openlp.android">download</a> to install the Android app from the Market. - + @@ -5882,85 +5878,85 @@ The content encoding is not UTF-8. &Song Usage Tracking - + &Delete Tracking Data - + Delete song usage data up to a specified date. - + &Extract Tracking Data - + Generate a report on song usage. - + Toggle Tracking - + Toggle the tracking of song usage. - + <strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services. - + SongUsage name singular - + SongUsage name plural - + SongUsage container title - + Song Usage - + Song usage tracking is active. - + Song usage tracking is inactive. - + display - + printed - + @@ -5968,32 +5964,32 @@ The content encoding is not UTF-8. Delete Song Usage Data - + Delete Selected Song Usage Events? - + Are you sure you want to delete selected Song Usage data? - + Deletion Successful - + All requested data has been deleted successfully. - + Select the date up to which the song usage data should be deleted. All data recorded before this date will be permanently deleted. - + @@ -6001,54 +5997,54 @@ The content encoding is not UTF-8. Song Usage Extraction - + Select Date Range - + to - + Report Location - + Output File Location - + usage_detail_%s_%s.txt - + Report Creation - + Report %s has been successfully created. - + Output Path Not Selected - + You have not set a valid output location for your song usage report. Please select an existing path on your computer. - + @@ -6056,173 +6052,173 @@ has been successfully created. &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... - + Arabic (CP-1256) - + Baltic (CP-1257) - + Central European (CP-1250) - + Cyrillic (CP-1251) - + Greek (CP-1253) - + Hebrew (CP-1255) - + Japanese (CP-932) - + Korean (CP-949) - + Simplified Chinese (CP-936) - + Thai (CP-874) - + Traditional Chinese (CP-950) - + Turkish (CP-1254) - + Vietnam (CP-1258) - + Western European (CP-1252) - + Character Encoding - + The codepage setting is responsible for the correct character representation. Usually you are fine with the preselected choice. - + Please choose the character encoding. The encoding is responsible for the correct character representation. - + Song name singular - + Songs name plural - + Songs container title - + Exports songs using the export wizard. - + 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. - + @@ -6230,37 +6226,37 @@ The encoding is responsible for the correct character representation. Author Maintenance - + Display name: - + First name: - + Last name: - + You need to type in the first name of the author. - + You need to type in the last name of the author. - + You have not set a display name for the author, combine the first and last names? - + @@ -6268,7 +6264,7 @@ The encoding is responsible for the correct character representation. The file does not have a valid extension. - + @@ -6276,14 +6272,14 @@ The encoding is responsible for the correct character representation. Administered by %s - + [above are Song Tags with notes imported from EasyWorship] - + @@ -6291,12 +6287,12 @@ The encoding is responsible for the correct character representation. Meta Data - + Custom Book Names - + @@ -6304,207 +6300,207 @@ The encoding is responsible for the correct character representation. Song Editor - + &Title: - + Alt&ernate title: - + &Lyrics: - + &Verse order: - + Ed&it All - + Title && Lyrics - + &Add to Song - + &Remove - + &Manage Authors, Topics, Song Books - + A&dd to Song - + R&emove - + Book: - + Number: - + Authors, Topics && Song Book - + New &Theme - + Copyright Information - + Comments - + Theme, Copyright Info && Comments - + Add Author - + This author does not exist, do you want to add them? - + This author is already in the list. - + You have not selected a valid author. Either select an author from the list, or type in a new author and click the "Add Author to Song" button to add the new author. - + Add Topic - + This topic does not exist, do you want to add it? - + This topic is already in the list. - + You have not selected a valid topic. Either select a topic from the list, or type in a new topic and click the "Add Topic to Song" button to add the new topic. - + You need to type in a song title. - + You need to type in at least one verse. - + The verse order is invalid. There is no verse corresponding to %s. Valid entries are %s. - + Add Book - + This song book does not exist, do you want to add it? - + You need to have an author for this song. - + You need to type some text in to the verse. - + Linked Audio - + Add &File(s) - + Add &Media - + Remove &All - + Open File(s) - + <strong>Warning:</strong> Not all of the verses are in use. - + The verse order is invalid. There are no verses corresponding to %s. Valid entries are %s. - + @@ -6512,22 +6508,22 @@ The encoding is responsible for the correct character representation. Edit Verse - + &Verse type: - + &Insert - + Split a slide into two by inserting a verse splitter. - + @@ -6535,82 +6531,82 @@ The encoding is responsible for the correct character representation. Song Export Wizard - + Select Songs - + Check the songs you want to export. - + Uncheck All - + Check All - + Select Directory - + Directory: - + Exporting - + Please wait while your songs are exported. - + You need to add at least one Song to export. - + No Save Location specified - + Starting export... - + You need to specify a directory. - + Select Destination Folder - + Select the directory where you want the songs to be saved. - + This wizard will help to export your songs to the open and free <strong>OpenLyrics</strong> worship song format. - + @@ -6618,172 +6614,172 @@ The encoding is responsible for the correct character representation. Select Document/Presentation Files - + Song Import Wizard - + This wizard will help you to import songs from a variety of formats. Click the next button below to start the process by selecting a format to import from. - + Generic Document/Presentation - + Add Files... - + Remove File(s) - + Please wait while your songs are imported. - + OpenLP 2.0 Databases - + openlp.org v1.x Databases - + Words Of Worship Song Files - + Songs Of Fellowship Song Files - + SongBeamer Files - + SongShow Plus Song Files - + Foilpresenter Song Files - + Copy - + Save to File - + The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. - + The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. - + OpenLyrics or OpenLP 2.0 Exported Song - + OpenLyrics Files - + CCLI SongSelect Files - + EasySlides XML File - + EasyWorship Song Database - + DreamBeam Song Files - + You need to specify a valid PowerSong 1.0 database folder. - + ZionWorx (CSV) - + First convert your ZionWorx database to a CSV text file, as explained in the <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">User Manual</a>. - + SundayPlus Song Files - + This importer has been disabled. - + MediaShout Database - + The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. - + SongPro Text Files - + SongPro (Export File) - + In SongPro, export your songs using the File -> Export menu - + @@ -6791,12 +6787,12 @@ The encoding is responsible for the correct character representation. Select Media File(s) - + Select one or more audio files from the list below, and click OK to import them into this song. - + @@ -6804,66 +6800,63 @@ The encoding is responsible for the correct character representation. Titles - + Lyrics - + CCLI License: - + Entire Song - + Are you sure you want to delete the %n selected song(s)? - - - - + Maintain the lists of authors, topics and books. - + copy For song cloning - + Search Titles... - + Search Entire Song... - + Search Lyrics... - + Search Authors... - + Search Song Books... - + @@ -6871,7 +6864,7 @@ The encoding is responsible for the correct character representation. Unable to open the MediaShout database. - + @@ -6879,7 +6872,7 @@ The encoding is responsible for the correct character representation. Not a valid openlp.org 1.x song database. - + @@ -6887,7 +6880,7 @@ The encoding is responsible for the correct character representation. Not a valid OpenLP 2.0 song database. - + @@ -6895,7 +6888,7 @@ The encoding is responsible for the correct character representation. Exporting "%s"... - + @@ -6903,12 +6896,12 @@ The encoding is responsible for the correct character representation. No songs to import. - + Verses not found. Missing "PART" header. - + @@ -6916,22 +6909,22 @@ The encoding is responsible for the correct character representation. Song Book Maintenance - + &Name: - + &Publisher: - + You need to type in a name for the book. - + @@ -6939,12 +6932,12 @@ The encoding is responsible for the correct character representation. Your song export failed. - + Finished export. To import these files use the <strong>OpenLyrics</strong> importer. - + @@ -6952,27 +6945,27 @@ The encoding is responsible for the correct character representation. copyright - + The following songs could not be imported: - + Cannot access OpenOffice or LibreOffice - + Unable to open file - + File not found - + @@ -6980,107 +6973,107 @@ The encoding is responsible for the correct character representation. Could not add your author. - + This author already exists. - + Could not add your topic. - + This topic already exists. - + Could not add your book. - + This book already exists. - + Could not save your changes. - + Could not save your modified author, because the author already exists. - + Could not save your modified topic, because it already exists. - + Delete Author - + Are you sure you want to delete the selected author? - + This author cannot be deleted, they are currently assigned to at least one song. - + Delete Topic - + Are you sure you want to delete the selected topic? - + This topic cannot be deleted, it is currently assigned to at least one song. - + Delete Book - + Are you sure you want to delete the selected book? - + This book cannot be deleted, it is currently assigned to at least one song. - + The author %s already exists. Would you like to make songs with author %s use the existing author %s? - + The topic %s already exists. Would you like to make songs with topic %s use the existing topic %s? - + The book %s already exists. Would you like to make songs with book %s use the existing book %s? - + @@ -7088,27 +7081,27 @@ The encoding is responsible for the correct character representation. Songs Mode - + Enable search as you type - + Display verses on live tool bar - + Update service from song edit - + Import missing songs from service files - + @@ -7116,17 +7109,17 @@ The encoding is responsible for the correct character representation. Topic Maintenance - + Topic name: - + You need to type in a topic name. - + @@ -7134,37 +7127,37 @@ The encoding is responsible for the correct character representation. Verse - + Chorus - + Bridge - + Pre-Chorus - + Intro - + Ending - + Other - + @@ -7172,12 +7165,12 @@ The encoding is responsible for the correct character representation. Error reading CSV file. - + File not valid ZionWorx CSV format. - + - + \ No newline at end of file diff --git a/resources/i18n/ja.ts b/resources/i18n/ja.ts index 196083ad7..3b7cfe93f 100644 --- a/resources/i18n/ja.ts +++ b/resources/i18n/ja.ts @@ -1,5 +1,4 @@ - - + AlertsPlugin @@ -102,7 +101,7 @@ Do you want to continue anyway? - The alert text does not contain '<>'. + The alert text does not contain '<>'. Do you want to continue anyway? 警告テキストは、'<>'を含みません。 処理を続けてもよろしいですか? @@ -617,7 +616,7 @@ Do you want to continue anyway? Rest of Esther - + @@ -632,7 +631,7 @@ Do you want to continue anyway? Prayer of Azariah - + @@ -647,18 +646,18 @@ Do you want to continue anyway? 1 Esdras - + 2 Esdras - + :|v|V|verse|verses;;-|to;;,|and;;end Double-semicolon delimited separators for parsing references. Consult the developers for further information. - + @@ -1706,9 +1705,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I Are you sure you want to delete the %n selected custom slide(s)? - - 選択された%n件のカスタムスライドを削除します。宜しいですか? - + 選択された%n件のカスタムスライドを削除します。宜しいですか? @@ -2073,7 +2070,7 @@ Translators %s Japanese (ja) %s - Norwegian Bokmål (nb) + Norwegian Bokmål (nb) %s Dutch (nl) %s @@ -2185,8 +2182,8 @@ OpenLP は、ボランティアの手で開発保守されています。もっ - Copyright © 2004-2012 %s -Portions copyright © 2004-2012 %s + Copyright © 2004-2012 %s +Portions copyright © 2004-2012 %s 著作権 © 2004-2012 %s 追加の著作権 © 2004-2012 %s @@ -4197,7 +4194,7 @@ The content encoding is not UTF-8. Service copy only - + @@ -5446,7 +5443,7 @@ The content encoding is not UTF-8. - © + © Copyright symbol. © @@ -5634,7 +5631,7 @@ The content encoding is not UTF-8. Stop Play Slides to End - + @@ -6971,9 +6968,7 @@ The encoding is responsible for the correct character representation. Are you sure you want to delete the %n selected song(s)? - - 選択された%n件の賛美を削除します。宜しいですか? - + 選択された%n件の賛美を削除します。宜しいですか? @@ -7326,4 +7321,4 @@ The encoding is responsible for the correct character representation. ファイルは有効なZionWorx CSV形式ではありません。 - + \ No newline at end of file diff --git a/resources/i18n/ko.ts b/resources/i18n/ko.ts index a33f45515..ade4d3e56 100644 --- a/resources/i18n/ko.ts +++ b/resources/i18n/ko.ts @@ -1,5 +1,4 @@ - - + AlertsPlugin @@ -33,7 +32,7 @@ <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of nursery alerts on the display screen. - + @@ -81,29 +80,29 @@ &Parameter: - + No Parameter Found - + You have not entered a parameter to be replaced. Do you want to continue anyway? - + No Placeholder Found - + - The alert text does not contain '<>'. + The alert text does not contain '<>'. Do you want to continue anyway? - + @@ -175,62 +174,62 @@ Do you want to continue anyway? No Book Found - + No matching book could be found in this Bible. Check that you have spelled the name of the book correctly. - + Import a Bible. - + Add a new Bible. - + Edit the selected Bible. - + Delete the selected Bible. - + Preview the selected Bible. - + Send the selected Bible live. - + Add the selected Bible to the service. - + <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display Bible verses from different sources during the service. - + &Upgrade older Bibles - + Upgrade the Bible databases to the latest format. - + @@ -260,7 +259,7 @@ Do you want to continue anyway? Joshua - + @@ -270,7 +269,7 @@ Do you want to continue anyway? Ruth - + @@ -355,7 +354,7 @@ Do you want to continue anyway? Lamentations - + @@ -565,98 +564,98 @@ Do you want to continue anyway? Judith - + Wisdom - + Tobit - + Sirach - + Baruch - + 1 Maccabees - + 2 Maccabees - + 3 Maccabees - + 4 Maccabees - + Rest of Daniel - + Rest of Esther - + Prayer of Manasses - + Letter of Jeremiah - + Prayer of Azariah - + Susanna - + Bel - + 1 Esdras - + 2 Esdras - + :|v|V|verse|verses;;-|to;;,|and;;end Double-semicolon delimited separators for parsing references. Consult the developers for further information. - + @@ -664,44 +663,44 @@ Do you want to continue anyway? You need to specify a version name for your Bible. - + You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. - + Bible Exists - + This Bible already exists. Please import a different Bible or first delete the existing one. - + You need to specify a book name for "%s". - + The book name "%s" is not correct. Numbers can only be used at the beginning and must be followed by one or more non-numeric characters. - + Duplicate Book Name - + The Book Name "%s" has been entered more than once. - + @@ -714,28 +713,28 @@ be followed by one or more non-numeric characters. Web Bible cannot be used - + Text Search is not available with Web Bibles. - + You did not enter a search keyword. You can separate different keywords by a space to search for all of your keywords and you can separate them by a comma to search for one of them. - + There are no Bibles currently installed. Please use the Import Wizard to install one or more Bibles. - + No Bibles Available - + @@ -748,7 +747,7 @@ Book Chapter%(verse)sVerse%(range)sVerse%(list)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sVerse%(list)sChapter%(verse)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sChapter%(verse)sVerse Please pay attention to the appended "s" of the wildcards and refrain from translating the words inside the names in the brackets. - + @@ -798,86 +797,86 @@ Changes do not affect verses already in the service. Display second Bible verses - + Custom Scripture References - + Verse Separator: - + Range Separator: - + List Separator: - + End Mark: - + Multiple alternative verse separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. - + Multiple alternative range separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. - + Multiple alternative list separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. - + Multiple alternative end marks may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. - + English - + Default Bible Language - + Book name language in search field, search results and on display: - + Bible Language - + Application Language - + @@ -885,42 +884,42 @@ search results and on display: Select Book Name - + Current name: - + Corresponding name: - + Show Books From - + Old Testament - + New Testament - + Apocrypha - + The following book name cannot be matched up internally. Please select the corresponding name from the list. - + @@ -928,7 +927,7 @@ search results and on display: You need to select a book. - + @@ -936,18 +935,18 @@ search results and on display: Importing books... %s - + Importing verses from %s... Importing verses from <book name>... - + Importing verses... done. - + @@ -955,68 +954,68 @@ search results and on display: Bible Editor - + License Details - 라이센스 정보 + Version name: - 버전 이름: + Copyright: - 저작권: + Permissions: - + Default Bible Language - + Book name language in search field, search results and on display: - + Global Settings - + Bible Language - + Application Language - + English - + This is a Web Download Bible. It is not possible to customize the Book Names. - + To use the customized book names, "Bible language" must be selected on the Meta Data tab or, if "Global settings" is selected, on the Bible page in Configure OpenLP. - + @@ -1024,38 +1023,38 @@ It is not possible to customize the Book Names. Registering Bible and loading books... - + Registering Language... - + Importing %s... Importing <book name>... - + Download Error - + There was a problem downloading your verse selection. Please check your Internet connection, and if this error continues to occur please consider reporting a bug. - + Parse Error - + There was a problem extracting your verse selection. If this error continues to occur please consider reporting a bug. - + @@ -1128,7 +1127,7 @@ It is not possible to customize the Book Names. Set up the Bible's license details. - + @@ -1148,37 +1147,37 @@ It is not possible to customize the Book Names. You need to specify a file with books of the Bible to use in the import. - + You need to specify a file of Bible verses to import. - + You need to specify a version name for your Bible. - + You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. - + Bible Exists - + This Bible already exists. Please import a different Bible or first delete the existing one. - + Your Bible import failed. - + @@ -1193,7 +1192,7 @@ It is not possible to customize the Book Names. Permissions: - + @@ -1203,28 +1202,28 @@ It is not possible to customize the Book Names. Books file: - + Verses file: - + openlp.org 1.x Bible Files - + Registering Bible... - + Registered Bible. Please note, that verses will be downloaded on demand and thus an internet connection is required. - + @@ -1232,17 +1231,17 @@ demand and thus an internet connection is required. Select Language - + OpenLP is unable to determine the language of this translation of the Bible. Please select the language from the list below. - + Language: - + @@ -1250,7 +1249,7 @@ demand and thus an internet connection is required. You need to choose a language. - + @@ -1258,67 +1257,67 @@ demand and thus an internet connection is required. Quick - + Find: - + Book: - + Chapter: - + Verse: - + From: - + To: - + Text Search - + Second: - + Scripture Reference - + Toggle to keep or clear the previous results. - + You cannot combine single and dual Bible verse search results. Do you want to delete your search results and start a new search? - + Bible not fully loaded. - + @@ -1328,24 +1327,24 @@ demand and thus an internet connection is required. The second Bible does not contain all the verses that are in the main Bible. Only verses found in both Bibles will be shown. %d verses have not been included in the results. - + Search Scripture Reference... - + Search Text... - + Are you sure you want to completely delete "%s" Bible from OpenLP? You will need to re-import this Bible to use it again. - + @@ -1353,7 +1352,7 @@ You will need to re-import this Bible to use it again. Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. - + @@ -1362,7 +1361,7 @@ You will need to re-import this Bible to use it again. Importing %s %s... Importing <book name> <chapter>... - + @@ -1370,13 +1369,13 @@ You will need to re-import this Bible to use it again. Detecting encoding (this may take a few minutes)... - + Importing %s %s... Importing <book name> <chapter>... - + @@ -1384,143 +1383,143 @@ You will need to re-import this Bible to use it again. Select a Backup Directory - + Bible Upgrade Wizard - + This wizard will help you to upgrade your existing Bibles from a prior version of OpenLP 2. Click the next button below to start the upgrade process. - + Select Backup Directory - + Please select a backup directory for your Bibles - + Previous releases of OpenLP 2.0 are unable to use upgraded Bibles. This will create a backup of your current Bibles so that you can simply copy the files back to your OpenLP data directory if you need to revert to a previous release of OpenLP. Instructions on how to restore the files can be found in our <a href="http://wiki.openlp.org/faq">Frequently Asked Questions</a>. - + Please select a backup location for your Bibles. - + Backup Directory: - + There is no need to backup my Bibles - + Select Bibles - + Please select the Bibles to upgrade - + Upgrading - + Please wait while your Bibles are upgraded. - + The backup was not successful. To backup your Bibles you need permission to write to the given directory. - + Upgrading Bible %s of %s: "%s" Failed - + Upgrading Bible %s of %s: "%s" Upgrading ... - + Download Error - + To upgrade your Web Bibles an Internet connection is required. - + Upgrading Bible %s of %s: "%s" Upgrading %s ... - + Upgrading Bible %s of %s: "%s" Complete - + , %s failed - + Upgrading Bible(s): %s successful%s Please note that verses from Web Bibles will be downloaded on demand and so an Internet connection is required. - + Upgrading Bible(s): %s successful%s - + Upgrade failed. - + You need to specify a backup directory for your Bibles. - + Starting upgrade... - + There are no Bibles that need to be upgraded. - + @@ -1528,65 +1527,65 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I <strong>Custom Slide Plugin</strong><br />The custom slide plugin provides the ability to set up custom text slides that can be displayed on the screen the same way songs are. This plugin provides greater freedom over the songs plugin. - + Custom Slide name singular - + Custom Slides name plural - + Custom Slides container title - + Load a new custom slide. - + Import a custom slide. - + Add a new custom slide. - + Edit the selected custom slide. - + Delete the selected custom slide. - + Preview the selected custom slide. - + Send the selected custom slide live. - + Add the selected custom slide to the service. - + @@ -1594,12 +1593,12 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I Custom Display - + Display footer - + @@ -1607,62 +1606,62 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I Edit Custom Slides - + &Title: - + Add a new slide at bottom. - + Edit the selected slide. - + Edit all the slides at once. - + Split a slide into two by inserting a slide splitter. - + The&me: - + &Credits: - + You need to type in a title. - + You need to add at least one slide - + Ed&it All - + Insert Slide - + @@ -1670,7 +1669,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I Edit Slide - + @@ -1678,9 +1677,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I Are you sure you want to delete the %n selected custom slide(s)? - - - + @@ -1688,60 +1685,60 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I <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. - + Image name singular - + Images name plural - + Images container title - + 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. - + @@ -1749,7 +1746,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I Select Attachment - + @@ -1757,43 +1754,43 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I Select Image(s) - + You must select an image to delete. - + You must select an image to replace the background with. - + Missing Image(s) - + The following image(s) no longer exist: %s - + The following image(s) no longer exist: %s Do you want to add the other images anyway? - + There was a problem replacing your background, the image file "%s" no longer exists. - + There was no display item to amend. - + @@ -1801,17 +1798,17 @@ Do you want to add the other images anyway? Background Color - + Default Color: - + Visible background for images with aspect ratio different to screen. - + @@ -1819,60 +1816,60 @@ Do you want to add the other images anyway? <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. - + Media name singular - + Media name plural - + Media container title - + Load new media. - + Add 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. - + @@ -1880,57 +1877,57 @@ Do you want to add the other images anyway? Select Media - + You must select a media file to delete. - + You must select a media file to replace the background with. - + There was a problem replacing your background, the media file "%s" no longer exists. - + Missing Media File - + The file %s no longer exists. - + Videos (%s);;Audio (%s);;%s (*) - + There was no display item to amend. - + Unsupported File - + Automatic - + Use Player: - + @@ -1938,22 +1935,22 @@ Do you want to add the other images anyway? Available Media Players - + %s (unavailable) - + Player Order - + Allow media player to be overridden - + @@ -1961,19 +1958,19 @@ Do you want to add the other images anyway? Image Files - + Information - 정보 + Bible format has changed. You have to upgrade your existing Bibles. Should OpenLP upgrade now? - + @@ -1981,32 +1978,32 @@ Should OpenLP upgrade now? Credits - + License - + Contribute - + build %s - + This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See below for more details. - + @@ -2042,7 +2039,7 @@ Translators %s Japanese (ja) %s - Norwegian Bokmål (nb) + Norwegian Bokmål (nb) %s Dutch (nl) %s @@ -2071,7 +2068,7 @@ Final Credit on the cross, setting us free from sin. We bring this software to you for free because He has set us free. - + @@ -2082,13 +2079,13 @@ OpenLP is free church presentation software, or lyrics projection software, used Find out more about OpenLP: http://openlp.org/ OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider contributing by using the button below. - + - Copyright © 2004-2012 %s -Portions copyright © 2004-2012 %s - + Copyright © 2004-2012 %s +Portions copyright © 2004-2012 %s + @@ -2096,271 +2093,271 @@ Portions copyright © 2004-2012 %s UI Settings - + Number of recent files to display: - + Remember active media manager tab on startup - + Double-click to send items straight to live - + Expand new service items on creation - + Enable application exit confirmation - + Mouse Cursor - + Hide mouse cursor when over display window - + Default Image - + Background color: - 배경색: + Image file: - + Open File - + Advanced - + Preview items when clicked in Media Manager - + Click to select a color. - + Browse for an image file to display. - + Revert to the default OpenLP logo. - + Service %Y-%m-%d %H-%M This may not contain any of the following characters: /\?*|<>[]":+ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for more information. - + Default Service Name - + Enable default service name - + Date and Time: - + Monday - + Tuesday - + Wednesday - + Thurdsday - + Friday - + Saturday - + Sunday - + Now - + Time when usual service starts. - + Name: - + Consult the OpenLP manual for usage. - + Revert to the default service name "%s". - + Example: - + X11 - + Bypass X11 Window Manager - + Syntax error. - + Data Location - + Current path: - + Custom path: - + Browse for new data file location. - + Set the data location to the default. - + Cancel - + Cancel OpenLP data directory location change. - + Copy data to new location. - + Copy the OpenLP data files to the new location. - + <strong>WARNING:</strong> New data directory location contains OpenLP data files. These files WILL be replaced during a copy. - + Data Directory Error - + Select Data Directory Location - + Confirm Data Directory Change - + Reset Data Directory - + Are you sure you want to change the location of the OpenLP data directory to the default location? This location will be used after OpenLP is closed. - + Overwrite Existing Data - + @@ -2368,38 +2365,38 @@ This location will be used after OpenLP is closed. Error Occurred - + Oops! OpenLP hit a problem, and couldn't recover. The text in the box below contains information that might be helpful to the OpenLP developers, so please e-mail it to bugs@openlp.org, along with a detailed description of what you were doing when the problem occurred. - + Send E-Mail - + Save to File - + Please enter a description of what you were doing to cause this error (Minimum 20 characters) - + Attach File - + Description characters to enter : %s - + @@ -2408,17 +2405,17 @@ This location will be used after OpenLP is closed. Platform: %s - + Save Crash Report - + Text files (*.txt *.log *.text) - + @@ -2436,7 +2433,7 @@ Version: %s --- Library Versions --- %s - + @@ -2455,7 +2452,7 @@ Version: %s %s Please add the information that bug reports are favoured written in English. - + @@ -2463,17 +2460,17 @@ Version: %s File Rename - + New File Name: - + File Copy - + @@ -2481,17 +2478,17 @@ Version: %s Select Translation - + Choose the translation you'd like to use in OpenLP. - + Translation: - + @@ -2499,201 +2496,201 @@ Version: %s Songs - + First Time Wizard - + Welcome to the First Time Wizard - + Activate required Plugins - + Select the Plugins you wish to use. - + Bible - 성경 + Images - + Presentations - + Media (Audio and Video) - + Allow remote access - + Monitor Song Usage - + Allow Alerts - + Default Settings - + Downloading %s... - + Download complete. Click the finish button to start OpenLP. - + Enabling selected plugins... - + No Internet Connection - + Unable to detect an Internet connection. - + Sample Songs - + Select and download public domain songs. - + Sample Bibles - + Select and download free Bibles. - + Sample Themes - + Select and download sample themes. - + Set up default settings to be used by OpenLP. - + Default output display: - + Select default theme: - + Starting configuration process... - + This wizard will help you to configure OpenLP for initial use. Click the next button below to start. - + Setting Up And Downloading - + Please wait while OpenLP is set up and your data is downloaded. - + Setting Up - + Click the finish button to start OpenLP. - + Download complete. Click the finish button to return to OpenLP. - + Click the finish button to return to OpenLP. - + Custom Slides - + Finish - + No Internet connection was found. The First Time Wizard needs an Internet connection in order to be able to download sample songs, Bibles and themes. Click the Finish button now to start OpenLP with initial settings and no sample data. To re-run the First Time Wizard and import this sample data at a later time, check your Internet connection and re-run this wizard by selecting "Tools/Re-run First Time Wizard" from OpenLP. - + To cancel the First Time Wizard completely (and not start OpenLP), click the Cancel button now. - + @@ -2701,37 +2698,37 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can Configure Formatting Tags - + Edit Selection - + Save - + Description - + Tag - + Start HTML - + End HTML - + @@ -2739,32 +2736,32 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can Update Error - + Tag "n" already defined. - + New Tag - + <HTML here> - + </and here> - + Tag %s already defined. - + @@ -2772,82 +2769,82 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can Red - + Black - + Blue - + Yellow - + Green - + Pink - + Orange - + Purple - + White - + Superscript - + Subscript - + Paragraph - + Bold - + Italics - + Underline - + Break - + @@ -2855,157 +2852,157 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can General - + Monitors - + Select monitor for output display: - + Display if a single screen - + Application Startup - + Show blank screen warning - + Automatically open the last service - + Show the splash screen - + Application Settings - + Prompt to save before starting a new service - + Automatically preview next item in service - + sec - + CCLI Details - + SongSelect username: - + SongSelect password: - + X - + Y - + Height - + Width - + Check for updates to OpenLP - + Unblank display when adding new live item - + Timed slide interval: - + Background Audio - + Start background audio paused - + Service Item Slide Limits - + Override display position: - + Repeat track list - + Behavior of next/previous on the last/first slide: - + &Remain on Slide - + &Wrap around - + &Move to next/previous service item - + @@ -3013,12 +3010,12 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can Language - + Please restart OpenLP to use your new language setting. - + @@ -3026,7 +3023,7 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can OpenLP Display - + @@ -3034,433 +3031,433 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can &File - + &Import - + &Export - + &View - + M&ode - + &Tools - + &Settings - + &Language - + &Help - + Media Manager - + Service Manager - + Theme Manager - + &New - 새로 만들기(&N) + &Open - + Open an existing service. - + &Save - 저장(&S) + Save the current service to disk. - + Save &As... - + Save Service As - + Save the current service under a new name. - + E&xit - + Quit OpenLP - + &Theme - + &Configure OpenLP... - + &Media Manager - + Toggle Media Manager - + Toggle the visibility of the media manager. - + &Theme Manager - + Toggle Theme Manager - + Toggle the visibility of the theme manager. - + &Service Manager - + Toggle Service Manager - + Toggle the visibility of the service manager. - + &Preview Panel - + Toggle Preview Panel - + Toggle the visibility of the preview panel. - + &Live Panel - + Toggle Live Panel - + Toggle the visibility of the live panel. - + &Plugin List - + List the Plugins - + &User Guide - + &About - + More information about OpenLP - + &Online Help - + &Web Site - + Use the system language, if available. - + Set the interface language to %s - + Add &Tool... - + Add an application to the list of tools. - + &Default - + Set the view mode back to the default. - + &Setup - + Set the view mode to Setup. - + &Live - + Set the view mode to Live. - + Version %s of OpenLP is now available for download (you are currently running version %s). You can download the latest version from http://openlp.org/. - + OpenLP Version Updated - + OpenLP Main Display Blanked - + The Main Display has been blanked out - + Default Theme: %s - + English Please add the name of your language here - + Korean Configure &Shortcuts... - + Close OpenLP - + Are you sure you want to close OpenLP? - + Open &Data Folder... - + Open the folder where songs, bibles and other data resides. - + &Autodetect - + Update Theme Images - + Update the preview images for all themes. - + Print the current service. - + &Recent Files - + L&ock Panels - + Prevent the panels being moved. - + Re-run First Time Wizard - + Re-run the First Time Wizard, importing songs, Bibles and themes. - + Re-run First Time Wizard? - + Are you sure you want to re-run the First Time Wizard? Re-running this wizard may make changes to your current OpenLP configuration and possibly add songs to your existing songs list and change your default theme. - + Clear List Clear List of recent files - + Clear the list of recent files. - + Configure &Formatting Tags... - + Export OpenLP settings to a specified *.config file - + Settings - + Import OpenLP settings from a specified *.config file previously exported on this or another machine - + Import settings? - + @@ -3469,42 +3466,42 @@ Re-running this wizard may make changes to your current OpenLP configuration and Importing settings will make permanent changes to your current OpenLP configuration. Importing incorrect settings may cause erratic behaviour or OpenLP to terminate abnormally. - + Open File - + OpenLP Export Settings Files (*.conf) - + Import settings - + OpenLP will now close. Imported settings will be applied the next time you start OpenLP. - + Export Settings File - + OpenLP Export Settings File (*.conf) - + New Data Directory Error - + @@ -3512,21 +3509,21 @@ Importing incorrect settings may cause erratic behaviour or OpenLP to terminate Database Error - + The database being loaded was created in a more recent version of OpenLP. The database is version %d, while OpenLP expects version %d. The database will not be loaded. Database: %s - + OpenLP cannot load your database. Database: %s - + @@ -3534,73 +3531,73 @@ Database: %s No Items Selected - + &Add to selected Service Item - + You must select one or more items to preview. - + You must select one or more items to send live. - + You must select one or more items. - + You must select an existing service item to add to. - + Invalid Service Item - + You must select a %s service item. - + You must select one or more items to add. - + No Search Results - + Invalid File Type - + Invalid File %s. Suffix not supported - + &Clone - + Duplicate files were found on import and were ignored. - + @@ -3608,12 +3605,12 @@ Suffix not supported <lyrics> tag is missing. - + <verse> tag is missing. - + @@ -3621,42 +3618,42 @@ Suffix not supported Plugin List - + Plugin Details - + Status: - + Active - + Inactive - + %s (Inactive) - + %s (Active) - + %s (Disabled) - + @@ -3664,12 +3661,12 @@ Suffix not supported Fit Page - + Fit Width - + @@ -3677,77 +3674,77 @@ Suffix not supported Options - + Copy - + Copy as HTML - + Zoom In - + Zoom Out - + Zoom Original - + Other Options - + Include slide text if available - + Include service item notes - + Include play length of media items - + Add page break before each text item - + Service Sheet - + Print - + Title: - + Custom Footer Text: - + @@ -3755,12 +3752,12 @@ Suffix not supported Screen - + primary - + @@ -3768,12 +3765,12 @@ Suffix not supported <strong>Start</strong>: %s - + <strong>Length</strong>: %s - + @@ -3781,7 +3778,7 @@ Suffix not supported Reorder Service Item - + @@ -3789,278 +3786,278 @@ Suffix not supported Move to &top - + Move item to the top of the service. - + Move &up - + Move item up one position in the service. - + Move &down - + Move item down one position in the service. - + Move to &bottom - + Move item to the end of the service. - + &Delete From Service - + Delete the selected item from the service. - + &Add New Item - + &Add to Selected Item - + &Edit Item - + &Reorder Item - + &Notes - + &Change Item Theme - + OpenLP Service Files (*.osz) - + 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 - + &Expand all - + Expand all the service items. - + &Collapse all - + Collapse all the service items. - + Open File - + Moves the selection down the window. - + Move up - + Moves the selection up the window. - + Go Live - + Send the selected item to Live. - + &Start Time - + Show &Preview - + Modified Service - + The current service has been modified. Would you like to save this service? - + Custom Service Notes: - + Notes: - + Playing time: - + Untitled Service - + File could not be opened because it is corrupt. - + Empty File - + This service file does not contain any data. - + Corrupt File - + Load an existing service. - + Save this service. - + Select a theme for the service. - + This file is either corrupt or it is not an OpenLP 2.0 service file. - + Service File Missing - + Slide theme - + Notes - + Edit - + Service copy only - + Error Saving File - + There was an error saving your file. - + @@ -4068,7 +4065,7 @@ The content encoding is not UTF-8. Service Item Notes - + @@ -4076,7 +4073,7 @@ The content encoding is not UTF-8. Configure OpenLP - + @@ -4084,67 +4081,67 @@ The content encoding is not UTF-8. Action - + Shortcut - + Duplicate Shortcut - + The shortcut "%s" is already assigned to another action, please use a different shortcut. - + Alternate - + Select an action and click one of the buttons below to start capturing a new primary or alternate shortcut, respectively. - + Default - + Custom - + Capture shortcut. - + Restore the default shortcut of this action. - + Restore Default Shortcuts - + Do you want to restore all shortcuts to their defaults? - + Configure Shortcuts - + @@ -4152,172 +4149,172 @@ The content encoding is not UTF-8. Hide - + Go To - + Blank Screen - + Blank to Theme - + Show Desktop - + Previous Service - + Next Service - + Escape Item - + Move to previous. - + Move to next. - + Play Slides - + Delay between slides in seconds. - + Move to live. - + Add to Service. - + Edit and reload song preview. - + Start playing media. - + Pause audio. - + Pause playing media. - + Stop playing media. - + Video position. - + Audio Volume. - + Go to "Verse" - + Go to "Chorus" - + Go to "Bridge" - + Go to "Pre-Chorus" - + Go to "Intro" - + Go to "Ending" - + Go to "Other" - + Previous Slide - + Next Slide - + Pause Audio - + Background Audio - + Go to next audio track. - + Tracks - + @@ -4325,17 +4322,17 @@ The content encoding is not UTF-8. Spelling Suggestions - + Formatting Tags - + Language: - + @@ -4343,67 +4340,67 @@ The content encoding is not UTF-8. Hours: - + Minutes: - + Seconds: - + Item Start and Finish Time - + Start - + Finish - + Length - + Time Validation Error - + Finish time is set after the end of the media item - + Start time is after the finish time of the media item - + Theme Layout - + The blue box shows the main area. - + The red box shows the footer. - + @@ -4411,32 +4408,32 @@ The content encoding is not UTF-8. Select Image - + Theme Name Missing - + There is no name for this theme. Please enter one. - + Theme Name Invalid - + Invalid theme name. Please enter one. - + (approximately %d lines per slide) - + @@ -4444,193 +4441,193 @@ The content encoding is not UTF-8. Create a new theme. - + Edit Theme - + Edit a theme. - + Delete Theme - + Delete a theme. - + Import Theme - + Import a theme. - + Export Theme - + Export a theme. - + &Edit Theme - + &Delete Theme - + Set As &Global Default - + %s (default) - + You must select a theme to edit. - + You are unable to delete the default theme. - + Theme %s is used in the %s plugin. - + You have not selected a theme. - + Save Theme - (%s) - + Theme Exported - + Your theme has been successfully exported. - + Theme Export Failed - + Your theme could not be exported due to an error. - + Select Theme Import File - + File is not a valid theme. - + &Copy Theme - + &Rename Theme - + &Export Theme - + You must select a theme to rename. - + Rename Confirmation - + Rename %s theme? - + You must select a theme to delete. - + Delete Confirmation - + Delete %s theme? - + Validation Error - + A theme with this name already exists. - + OpenLP Themes (*.theme *.otz) - + Copy of %s Copy of <theme name> - + Theme Already Exists - + @@ -4638,272 +4635,272 @@ The content encoding is not UTF-8. Theme Wizard - + Welcome to the Theme Wizard - + Set Up Background - + Set up your theme's background according to the parameters below. - + Background type: - + Solid Color - + Gradient - + Color: - + Gradient: - + Horizontal - + Vertical - + Circular - + Top Left - Bottom Right - + Bottom Left - Top Right - + Main Area Font Details - + Define the font and display characteristics for the Display text - + Font: - + Size: - + Line Spacing: - + &Outline: - + &Shadow: - + Bold - + Italic - + Footer Area Font Details - + Define the font and display characteristics for the Footer text - + Text Formatting Details - + Allows additional display formatting information to be defined - + Horizontal Align: - + Left - + Right - + Center - + Output Area Locations - + Allows you to change and move the main and footer areas. - + &Main Area - + &Use default location - + X position: - + px - + Y position: - + Width: - + Height: - + Use default location - + Theme name: - + Edit Theme - %s - + This wizard will help you to create and edit your themes. Click the next button below to start the process by setting up your background. - + Transitions: - + &Footer Area - + Starting color: - + Ending color: - + Background color: - 배경색: + Justify - + Layout Preview - + Transparent - + Preview and Save - + Preview the theme and save it. - + @@ -4911,47 +4908,47 @@ The content encoding is not UTF-8. Global Theme - + Theme Level - + S&ong Level - + Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. - + &Service Level - + Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. - + &Global Level - + Use the global theme, overriding any themes associated with either the service or the songs. - + Themes - + @@ -4959,592 +4956,592 @@ The content encoding is not UTF-8. Error - + About - + &Add - + Advanced - + All Files - + Bottom - + Browse... - + Cancel - + CCLI number: - + Create a new service. - + &Delete - + &Edit - + Empty Field - + Export - + pt Abbreviated font pointsize unit - + Image - + Import - + Live - + Live Background Error - + Load - + Middle - + New - + New Service - + New Theme - + No File Selected Singular - + No Files Selected Plural - + No Item Selected Singular - + No Items Selected Plural - + openlp.org 1.x - + OpenLP 2.0 - + Preview - + Replace Background - + Reset Background - + s The abbreviated unit for seconds - + Save && Preview - + Search - + You must select an item to delete. - + You must select an item to edit. - + Save Service - + Service - + Start %s - + Theme Singular - + Themes Plural - + Top - + Version - + Delete the selected item. - + Move selection up one position. - + Move selection down one position. - + &Vertical Align: - + Finished import. - + Format: - + Importing - + Importing "%s"... - + Select Import Source - + Select the import format and the location to import from. - + The openlp.org 1.x importer has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "python-sqlite" module. - + Open %s File - + %p% - + Ready. - + Starting import... - + You need to specify at least one %s file to import from. A file type e.g. OpenSong - + Welcome to the Bible Import Wizard - + Welcome to the Song Export Wizard - + Welcome to the Song Import Wizard - + Author Singular - + Authors Plural - + - © + © Copyright symbol. - + Song Book Singular - + Song Books Plural - + Song Maintenance - + Topic Singular - + Topics Plural - + Continuous - + Default - + Display style: - + Duplicate Error - + File - + Help - + h The abbreviated unit for hours - + Layout style: - + Live Toolbar - + m The abbreviated unit for minutes - + OpenLP is already running. Do you wish to continue? - + Settings - + Tools - + Unsupported File - + Verse Per Slide - + Verse Per Line - + View - + Title and/or verses not found - + XML syntax error - + View Mode - + Open service. - + Print Service - + Replace live background. - + Reset live background. - + Split a slide into two only if it does not fit on the screen as one slide. - + Welcome to the Bible Upgrade Wizard - + Confirm Delete - + Play Slides in Loop - + Play Slides to End - + Stop Play Slides in Loop - + Stop Play Slides to End - + Next Track - + Search Themes... Search bar place holder text - + Optional &Split - + Invalid Folder Selected Singular - + Invalid File Selected Singular - + Invalid Files Selected Plural - + No Folder Selected Singular - + Open %s Folder - + You need to specify one %s file to import from. A file type e.g. OpenSong - + You need to specify one %s folder to import from. A song format e.g. PowerSong - + @@ -5553,25 +5550,25 @@ The content encoding is not UTF-8. %1 and %2 Locale list separator: 2 items - + %1, and %2 Locale list separator: end - + %1, %2 Locale list separator: middle - + %1, %2 Locale list separator: start - + @@ -5579,50 +5576,50 @@ The content encoding is not UTF-8. <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. - + Presentation name singular - + Presentations name plural - + Presentations container title - + Load a new presentation. - + Delete the selected presentation. - + Preview the selected presentation. - + Send the selected presentation live. - + Add the selected presentation to the service. - + @@ -5630,52 +5627,52 @@ The content encoding is not UTF-8. Select Presentation(s) - + Automatic - + Present using: - + File Exists - + A presentation with that filename already exists. - + This type of presentation is not supported. - + Presentations (%s) - + Missing Presentation - + The presentation %s is incomplete, please reload. - + The presentation %s no longer exists. - + @@ -5683,17 +5680,17 @@ The content encoding is not UTF-8. Available Controllers - + %s (unavailable) - + Allow presentation application to be overridden - + @@ -5701,25 +5698,25 @@ The content encoding is not UTF-8. <strong>Remote Plugin</strong><br />The remote plugin provides the ability to send messages to a running version of OpenLP on a different computer via a web browser or through the remote API. - + Remote name singular - + Remotes name plural - + Remote container title - + @@ -5727,107 +5724,107 @@ The content encoding is not UTF-8. OpenLP 2.0 Remote - + OpenLP 2.0 Stage View - + Service Manager - + Slide Controller - + Alerts - 알림 + Search - + Refresh - + Blank - + Show - + Prev - + Next - + Text - + Show Alert - + Go Live - + No Results - + Options - + Add to Service - + Home - + Theme - + Desktop - + Add &amp; Go to Service - + @@ -5835,42 +5832,42 @@ The content encoding is not UTF-8. Serve on IP address: - + Port number: - + Server Settings - + Remote URL: - + Stage view URL: - + Display stage time in 12h format - + Android App - + Scan the QR code or click <a href="https://market.android.com/details?id=org.openlp.android">download</a> to install the Android app from the Market. - + @@ -5878,85 +5875,85 @@ The content encoding is not UTF-8. &Song Usage Tracking - + &Delete Tracking Data - + Delete song usage data up to a specified date. - + &Extract Tracking Data - + Generate a report on song usage. - + Toggle Tracking - + Toggle the tracking of song usage. - + <strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services. - + SongUsage name singular - + SongUsage name plural - + SongUsage container title - + Song Usage - + Song usage tracking is active. - + Song usage tracking is inactive. - + display - + printed - + @@ -5964,32 +5961,32 @@ The content encoding is not UTF-8. Delete Song Usage Data - + Delete Selected Song Usage Events? - + Are you sure you want to delete selected Song Usage data? - + Deletion Successful - + All requested data has been deleted successfully. - + Select the date up to which the song usage data should be deleted. All data recorded before this date will be permanently deleted. - + @@ -5997,54 +5994,54 @@ The content encoding is not UTF-8. Song Usage Extraction - + Select Date Range - + to - + Report Location - + Output File Location - + usage_detail_%s_%s.txt - + Report Creation - + Report %s has been successfully created. - + Output Path Not Selected - + You have not set a valid output location for your song usage report. Please select an existing path on your computer. - + @@ -6052,173 +6049,173 @@ has been successfully created. &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... - + Arabic (CP-1256) - + Baltic (CP-1257) - + Central European (CP-1250) - + Cyrillic (CP-1251) - + Greek (CP-1253) - + Hebrew (CP-1255) - + Japanese (CP-932) - + Korean (CP-949) - + Simplified Chinese (CP-936) - + Thai (CP-874) - + Traditional Chinese (CP-950) - + Turkish (CP-1254) - + Vietnam (CP-1258) - + Western European (CP-1252) - + Character Encoding - + The codepage setting is responsible for the correct character representation. Usually you are fine with the preselected choice. - + Please choose the character encoding. The encoding is responsible for the correct character representation. - + Song name singular - + Songs name plural - + Songs container title - + Exports songs using the export wizard. - + 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. - + @@ -6226,37 +6223,37 @@ The encoding is responsible for the correct character representation. Author Maintenance - + Display name: - + First name: - + Last name: - + You need to type in the first name of the author. - + You need to type in the last name of the author. - + You have not set a display name for the author, combine the first and last names? - + @@ -6264,7 +6261,7 @@ The encoding is responsible for the correct character representation. The file does not have a valid extension. - + @@ -6272,14 +6269,14 @@ The encoding is responsible for the correct character representation. Administered by %s - + [above are Song Tags with notes imported from EasyWorship] - + @@ -6287,12 +6284,12 @@ The encoding is responsible for the correct character representation. Meta Data - + Custom Book Names - + @@ -6300,207 +6297,207 @@ The encoding is responsible for the correct character representation. Song Editor - + &Title: - + Alt&ernate title: - + &Lyrics: - + &Verse order: - + Ed&it All - + Title && Lyrics - + &Add to Song - + &Remove - + &Manage Authors, Topics, Song Books - + A&dd to Song - + R&emove - + Book: - + Number: - + Authors, Topics && Song Book - + New &Theme - + Copyright Information - + Comments - + Theme, Copyright Info && Comments - + Add Author - + This author does not exist, do you want to add them? - + This author is already in the list. - + You have not selected a valid author. Either select an author from the list, or type in a new author and click the "Add Author to Song" button to add the new author. - + Add Topic - + This topic does not exist, do you want to add it? - + This topic is already in the list. - + You have not selected a valid topic. Either select a topic from the list, or type in a new topic and click the "Add Topic to Song" button to add the new topic. - + You need to type in a song title. - + You need to type in at least one verse. - + The verse order is invalid. There is no verse corresponding to %s. Valid entries are %s. - + Add Book - + This song book does not exist, do you want to add it? - + You need to have an author for this song. - + You need to type some text in to the verse. - + Linked Audio - + Add &File(s) - + Add &Media - + Remove &All - + Open File(s) - + <strong>Warning:</strong> Not all of the verses are in use. - + The verse order is invalid. There are no verses corresponding to %s. Valid entries are %s. - + @@ -6508,22 +6505,22 @@ The encoding is responsible for the correct character representation. Edit Verse - + &Verse type: - + &Insert - + Split a slide into two by inserting a verse splitter. - + @@ -6531,82 +6528,82 @@ The encoding is responsible for the correct character representation. Song Export Wizard - + Select Songs - + Check the songs you want to export. - + Uncheck All - + Check All - + Select Directory - + Directory: - + Exporting - + Please wait while your songs are exported. - + You need to add at least one Song to export. - + No Save Location specified - + Starting export... - + You need to specify a directory. - + Select Destination Folder - + Select the directory where you want the songs to be saved. - + This wizard will help to export your songs to the open and free <strong>OpenLyrics</strong> worship song format. - + @@ -6614,172 +6611,172 @@ The encoding is responsible for the correct character representation. Select Document/Presentation Files - + Song Import Wizard - + This wizard will help you to import songs from a variety of formats. Click the next button below to start the process by selecting a format to import from. - + Generic Document/Presentation - + Add Files... - + Remove File(s) - + Please wait while your songs are imported. - + OpenLP 2.0 Databases - + openlp.org v1.x Databases - + Words Of Worship Song Files - + Songs Of Fellowship Song Files - + SongBeamer Files - + SongShow Plus Song Files - + Foilpresenter Song Files - + Copy - + Save to File - + The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. - + The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. - + OpenLyrics or OpenLP 2.0 Exported Song - + OpenLyrics Files - + CCLI SongSelect Files - + EasySlides XML File - + EasyWorship Song Database - + DreamBeam Song Files - + You need to specify a valid PowerSong 1.0 database folder. - + ZionWorx (CSV) - + First convert your ZionWorx database to a CSV text file, as explained in the <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">User Manual</a>. - + SundayPlus Song Files - + This importer has been disabled. - + MediaShout Database - + The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. - + SongPro Text Files - + SongPro (Export File) - + In SongPro, export your songs using the File -> Export menu - + @@ -6787,12 +6784,12 @@ The encoding is responsible for the correct character representation. Select Media File(s) - + Select one or more audio files from the list below, and click OK to import them into this song. - + @@ -6800,65 +6797,63 @@ The encoding is responsible for the correct character representation. Titles - + Lyrics - + CCLI License: - + Entire Song - + Are you sure you want to delete the %n selected song(s)? - - - + Maintain the lists of authors, topics and books. - + copy For song cloning - + Search Titles... - + Search Entire Song... - + Search Lyrics... - + Search Authors... - + Search Song Books... - + @@ -6866,7 +6861,7 @@ The encoding is responsible for the correct character representation. Unable to open the MediaShout database. - + @@ -6874,7 +6869,7 @@ The encoding is responsible for the correct character representation. Not a valid openlp.org 1.x song database. - + @@ -6882,7 +6877,7 @@ The encoding is responsible for the correct character representation. Not a valid OpenLP 2.0 song database. - + @@ -6890,7 +6885,7 @@ The encoding is responsible for the correct character representation. Exporting "%s"... - + @@ -6898,12 +6893,12 @@ The encoding is responsible for the correct character representation. No songs to import. - + Verses not found. Missing "PART" header. - + @@ -6911,22 +6906,22 @@ The encoding is responsible for the correct character representation. Song Book Maintenance - + &Name: - + &Publisher: - + You need to type in a name for the book. - + @@ -6934,12 +6929,12 @@ The encoding is responsible for the correct character representation. Your song export failed. - + Finished export. To import these files use the <strong>OpenLyrics</strong> importer. - + @@ -6947,27 +6942,27 @@ The encoding is responsible for the correct character representation. copyright - + The following songs could not be imported: - + Cannot access OpenOffice or LibreOffice - + Unable to open file - + File not found - + @@ -6975,107 +6970,107 @@ The encoding is responsible for the correct character representation. Could not add your author. - + This author already exists. - + Could not add your topic. - + This topic already exists. - + Could not add your book. - + This book already exists. - + Could not save your changes. - + Could not save your modified author, because the author already exists. - + Could not save your modified topic, because it already exists. - + Delete Author - + Are you sure you want to delete the selected author? - + This author cannot be deleted, they are currently assigned to at least one song. - + Delete Topic - + Are you sure you want to delete the selected topic? - + This topic cannot be deleted, it is currently assigned to at least one song. - + Delete Book - + Are you sure you want to delete the selected book? - + This book cannot be deleted, it is currently assigned to at least one song. - + The author %s already exists. Would you like to make songs with author %s use the existing author %s? - + The topic %s already exists. Would you like to make songs with topic %s use the existing topic %s? - + The book %s already exists. Would you like to make songs with book %s use the existing book %s? - + @@ -7083,27 +7078,27 @@ The encoding is responsible for the correct character representation. Songs Mode - + Enable search as you type - + Display verses on live tool bar - + Update service from song edit - + Import missing songs from service files - + @@ -7111,17 +7106,17 @@ The encoding is responsible for the correct character representation. Topic Maintenance - + Topic name: - + You need to type in a topic name. - + @@ -7129,37 +7124,37 @@ The encoding is responsible for the correct character representation. Verse - + Chorus - + Bridge - + Pre-Chorus - + Intro - + Ending - + Other - + @@ -7167,12 +7162,12 @@ The encoding is responsible for the correct character representation. Error reading CSV file. - + File not valid ZionWorx CSV format. - + - + \ No newline at end of file diff --git a/resources/i18n/nb.ts b/resources/i18n/nb.ts index 5ab2a6272..68d008c5e 100644 --- a/resources/i18n/nb.ts +++ b/resources/i18n/nb.ts @@ -1,5 +1,4 @@ - - + AlertsPlugin @@ -22,7 +21,7 @@ Alerts name plural - Varsler + @@ -33,7 +32,7 @@ <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of nursery alerts on the display screen. - + @@ -86,24 +85,24 @@ No Parameter Found - + You have not entered a parameter to be replaced. Do you want to continue anyway? - + No Placeholder Found - + - The alert text does not contain '<>'. + The alert text does not contain '<>'. Do you want to continue anyway? - + @@ -158,19 +157,19 @@ Do you want to continue anyway? Bible name singular - + Bibles name plural - + Bibles container title - + @@ -185,478 +184,478 @@ Do you want to continue anyway? Import a Bible. - + Add a new Bible. - + Edit the selected Bible. - + Delete the selected Bible. - + Preview the selected Bible. - + Send the selected Bible live. - + Add the selected Bible to the service. - + <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display Bible verses from different sources during the service. - + &Upgrade older Bibles - + Upgrade the Bible databases to the latest format. - + Genesis - + Exodus - + Leviticus - + Numbers - + Deuteronomy - + Joshua - + Judges - + Ruth - + 1 Samuel - + 2 Samuel - + 1 Kings - + 2 Kings - + 1 Chronicles - + 2 Chronicles - + Ezra - + Nehemiah - + Esther - + Job - + Psalms - + Proverbs - + Ecclesiastes - + Song of Solomon - + Isaiah - + Jeremiah - + Lamentations - + Ezekiel - + Daniel - + Hosea - + Joel - + Amos - + Obadiah - + Jonah - + Micah - + Nahum - + Habakkuk - + Zephaniah - + Haggai - + Zechariah - + Malachi - + Matthew - + Mark - + Luke - + John - + Acts - + Romans - + 1 Corinthians - + 2 Corinthians - + Galatians - + Ephesians - + Philippians - + Colossians - + 1 Thessalonians - + 2 Thessalonians - + 1 Timothy - + 2 Timothy - + Titus - + Philemon - + Hebrews - + James - + 1 Peter - + 2 Peter - + 1 John - + 2 John - + 3 John - + Jude - + Revelation - + Judith - + Wisdom - + Tobit - + Sirach - + Baruch - + 1 Maccabees - + 2 Maccabees - + 3 Maccabees - + 4 Maccabees - + Rest of Daniel - + Rest of Esther - + Prayer of Manasses - + Letter of Jeremiah - + Prayer of Azariah - + Susanna - + Bel - + 1 Esdras - + 2 Esdras - + :|v|V|verse|verses;;-|to;;,|and;;end Double-semicolon delimited separators for parsing references. Consult the developers for further information. - + @@ -664,44 +663,44 @@ Do you want to continue anyway? You need to specify a version name for your Bible. - Du må spesifisere et versjonsnavn for Bibelen din. + You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. - Du må angi kopiretten for Bibelen. Offentlige bibler må markeres deretter. + Bible Exists - Bibelen finnes + This Bible already exists. Please import a different Bible or first delete the existing one. - Denne bibelen finnes alt. Vennligst importer en annen bibel eller slett først den eksisterende. + You need to specify a book name for "%s". - + The book name "%s" is not correct. Numbers can only be used at the beginning and must be followed by one or more non-numeric characters. - + Duplicate Book Name - + The Book Name "%s" has been entered more than once. - + @@ -749,7 +748,7 @@ Book Chapter%(verse)sVerse%(range)sVerse%(list)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sVerse%(list)sChapter%(verse)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sChapter%(verse)sVerse Please pay attention to the appended "s" of the wildcards and refrain from translating the words inside the names in the brackets. - + @@ -804,81 +803,81 @@ Endringer påvirker ikke vers som alt er lagt til møtet. Custom Scripture References - + Verse Separator: - + Range Separator: - + List Separator: - + End Mark: - + Multiple alternative verse separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. - + Multiple alternative range separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. - + Multiple alternative list separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. - + Multiple alternative end marks may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. - + English - + Default Bible Language - + Book name language in search field, search results and on display: - + Bible Language - + Application Language - + @@ -886,42 +885,42 @@ search results and on display: Select Book Name - + Current name: - + Corresponding name: - + Show Books From - + Old Testament - + New Testament - + Apocrypha - + The following book name cannot be matched up internally. Please select the corresponding name from the list. - + @@ -929,7 +928,7 @@ search results and on display: You need to select a book. - + @@ -937,18 +936,18 @@ search results and on display: Importing books... %s - + Importing verses from %s... Importing verses from <book name>... - + Importing verses... done. - + @@ -956,68 +955,68 @@ search results and on display: Bible Editor - + License Details - Lisensdetaljer + Version name: - Versjonsnavn: + Copyright: - Opphavsrett: + Permissions: - Tillatelser: + Default Bible Language - + Book name language in search field, search results and on display: - + Global Settings - + Bible Language - + Application Language - + English - + This is a Web Download Bible. It is not possible to customize the Book Names. - + To use the customized book names, "Bible language" must be selected on the Meta Data tab or, if "Global settings" is selected, on the Bible page in Configure OpenLP. - + @@ -1025,38 +1024,38 @@ It is not possible to customize the Book Names. Registering Bible and loading books... - + Registering Language... - + Importing %s... Importing <book name>... - + Download Error - + There was a problem downloading your verse selection. Please check your Internet connection, and if this error continues to occur please consider reporting a bug. - + Parse Error - + There was a problem extracting your verse selection. If this error continues to occur please consider reporting a bug. - + @@ -1179,7 +1178,7 @@ It is not possible to customize the Book Names. Your Bible import failed. - + @@ -1219,13 +1218,13 @@ It is not possible to customize the Book Names. Registering Bible... - + Registered Bible. Please note, that verses will be downloaded on demand and thus an internet connection is required. - + @@ -1233,17 +1232,17 @@ demand and thus an internet connection is required. Select Language - + OpenLP is unable to determine the language of this translation of the Bible. Please select the language from the list below. - + Language: - + @@ -1251,7 +1250,7 @@ demand and thus an internet connection is required. You need to choose a language. - + @@ -1264,7 +1263,7 @@ demand and thus an internet connection is required. Find: - + @@ -1284,12 +1283,12 @@ demand and thus an internet connection is required. From: - + To: - + @@ -1309,44 +1308,44 @@ demand and thus an internet connection is required. Toggle to keep or clear the previous results. - + You cannot combine single and dual Bible verse search results. Do you want to delete your search results and start a new search? - + Bible not fully loaded. - + Information - + The second Bible does not contain all the verses that are in the main Bible. Only verses found in both Bibles will be shown. %d verses have not been included in the results. - + Search Scripture Reference... - + Search Text... - + Are you sure you want to completely delete "%s" Bible from OpenLP? You will need to re-import this Bible to use it again. - + @@ -1354,7 +1353,7 @@ You will need to re-import this Bible to use it again. Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. - + @@ -1385,143 +1384,143 @@ You will need to re-import this Bible to use it again. Select a Backup Directory - + Bible Upgrade Wizard - + This wizard will help you to upgrade your existing Bibles from a prior version of OpenLP 2. Click the next button below to start the upgrade process. - + Select Backup Directory - + Please select a backup directory for your Bibles - + Previous releases of OpenLP 2.0 are unable to use upgraded Bibles. This will create a backup of your current Bibles so that you can simply copy the files back to your OpenLP data directory if you need to revert to a previous release of OpenLP. Instructions on how to restore the files can be found in our <a href="http://wiki.openlp.org/faq">Frequently Asked Questions</a>. - + Please select a backup location for your Bibles. - + Backup Directory: - + There is no need to backup my Bibles - + Select Bibles - + Please select the Bibles to upgrade - + Upgrading - + Please wait while your Bibles are upgraded. - + The backup was not successful. To backup your Bibles you need permission to write to the given directory. - + Upgrading Bible %s of %s: "%s" Failed - + Upgrading Bible %s of %s: "%s" Upgrading ... - + Download Error - + To upgrade your Web Bibles an Internet connection is required. - + Upgrading Bible %s of %s: "%s" Upgrading %s ... - + Upgrading Bible %s of %s: "%s" Complete - + , %s failed - + Upgrading Bible(s): %s successful%s Please note that verses from Web Bibles will be downloaded on demand and so an Internet connection is required. - + Upgrading Bible(s): %s successful%s - + Upgrade failed. - + You need to specify a backup directory for your Bibles. - + Starting upgrade... - + There are no Bibles that need to be upgraded. - + @@ -1529,65 +1528,65 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I <strong>Custom Slide Plugin</strong><br />The custom slide plugin provides the ability to set up custom text slides that can be displayed on the screen the same way songs are. This plugin provides greater freedom over the songs plugin. - + Custom Slide name singular - + Custom Slides name plural - + Custom Slides container title - + Load a new custom slide. - + Import a custom slide. - + Add a new custom slide. - + Edit the selected custom slide. - + Delete the selected custom slide. - + Preview the selected custom slide. - + Send the selected custom slide live. - + Add the selected custom slide to the service. - + @@ -1663,7 +1662,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I Insert Slide - + @@ -1671,7 +1670,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I Edit Slide - + @@ -1679,10 +1678,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I Are you sure you want to delete the %n selected custom slide(s)? - - - - + @@ -1702,7 +1698,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I Images name plural - Bilder + @@ -1713,37 +1709,37 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I 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. - + @@ -1759,7 +1755,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I Select Image(s) - + @@ -1796,7 +1792,7 @@ Vil du likevel legge til de andre bildene? There was no display item to amend. - + @@ -1804,17 +1800,17 @@ Vil du likevel legge til de andre bildene? Background Color - + Default Color: - + Visible background for images with aspect ratio different to screen. - + @@ -1828,13 +1824,13 @@ Vil du likevel legge til de andre bildene? Media name singular - Media + Media name plural - Media + @@ -1845,37 +1841,37 @@ Vil du likevel legge til de andre bildene? Load new media. - + Add 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. - + @@ -1918,22 +1914,22 @@ Vil du likevel legge til de andre bildene? There was no display item to amend. - + Unsupported File - + Automatic - + Use Player: - + @@ -1941,22 +1937,22 @@ Vil du likevel legge til de andre bildene? Available Media Players - + %s (unavailable) - + Player Order - + Allow media player to be overridden - + @@ -1969,14 +1965,14 @@ Vil du likevel legge til de andre bildene? Information - + Bible format has changed. You have to upgrade your existing Bibles. Should OpenLP upgrade now? - + @@ -1989,7 +1985,7 @@ Should OpenLP upgrade now? License - + @@ -2045,7 +2041,7 @@ Translators %s Japanese (ja) %s - Norwegian Bokmål (nb) + Norwegian Bokmål (nb) %s Dutch (nl) %s @@ -2145,13 +2141,13 @@ OpenLP is free church presentation software, or lyrics projection software, used Find out more about OpenLP: http://openlp.org/ OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider contributing by using the button below. - + - Copyright © 2004-2012 %s -Portions copyright © 2004-2012 %s - + Copyright © 2004-2012 %s +Portions copyright © 2004-2012 %s + @@ -2189,241 +2185,241 @@ Portions copyright © 2004-2012 %s Mouse Cursor - + Hide mouse cursor when over display window - + Default Image - + Background color: - Bakgrunnsfarge: + Image file: - + Open File - + Advanced - + Preview items when clicked in Media Manager - + Click to select a color. - + Browse for an image file to display. - + Revert to the default OpenLP logo. - + Service %Y-%m-%d %H-%M This may not contain any of the following characters: /\?*|<>[]":+ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for more information. - + Default Service Name - + Enable default service name - + Date and Time: - + Monday - + Tuesday - + Wednesday - + Thurdsday - + Friday - + Saturday - + Sunday - + Now - + Time when usual service starts. - + Name: - + Consult the OpenLP manual for usage. - + Revert to the default service name "%s". - + Example: - + X11 - + Bypass X11 Window Manager - + Syntax error. - + Data Location - + Current path: - + Custom path: - + Browse for new data file location. - + Set the data location to the default. - + Cancel - + Cancel OpenLP data directory location change. - + Copy data to new location. - + Copy the OpenLP data files to the new location. - + <strong>WARNING:</strong> New data directory location contains OpenLP data files. These files WILL be replaced during a copy. - + Data Directory Error - + Select Data Directory Location - + Confirm Data Directory Change - + Reset Data Directory - + Are you sure you want to change the location of the OpenLP data directory to the default location? This location will be used after OpenLP is closed. - + Overwrite Existing Data - + @@ -2431,38 +2427,38 @@ This location will be used after OpenLP is closed. Error Occurred - + Oops! OpenLP hit a problem, and couldn't recover. The text in the box below contains information that might be helpful to the OpenLP developers, so please e-mail it to bugs@openlp.org, along with a detailed description of what you were doing when the problem occurred. - + Send E-Mail - + Save to File - + Please enter a description of what you were doing to cause this error (Minimum 20 characters) - + Attach File - + Description characters to enter : %s - + @@ -2471,17 +2467,17 @@ This location will be used after OpenLP is closed. Platform: %s - + Save Crash Report - + Text files (*.txt *.log *.text) - + @@ -2499,7 +2495,7 @@ Version: %s --- Library Versions --- %s - + @@ -2518,7 +2514,7 @@ Version: %s %s Please add the information that bug reports are favoured written in English. - + @@ -2526,17 +2522,17 @@ Version: %s File Rename - + New File Name: - + File Copy - + @@ -2544,17 +2540,17 @@ Version: %s Select Translation - + Choose the translation you'd like to use in OpenLP. - + Translation: - + @@ -2562,201 +2558,201 @@ Version: %s Songs - + First Time Wizard - + Welcome to the First Time Wizard - + Activate required Plugins - + Select the Plugins you wish to use. - + Bible - + Images - Bilder + Presentations - + Media (Audio and Video) - + Allow remote access - + Monitor Song Usage - + Allow Alerts - + Default Settings - + Downloading %s... - + Download complete. Click the finish button to start OpenLP. - + Enabling selected plugins... - + No Internet Connection - + Unable to detect an Internet connection. - + Sample Songs - + Select and download public domain songs. - + Sample Bibles - + Select and download free Bibles. - + Sample Themes - + Select and download sample themes. - + Set up default settings to be used by OpenLP. - + Default output display: - + Select default theme: - + Starting configuration process... - + This wizard will help you to configure OpenLP for initial use. Click the next button below to start. - + Setting Up And Downloading - + Please wait while OpenLP is set up and your data is downloaded. - + Setting Up - + Click the finish button to start OpenLP. - + Download complete. Click the finish button to return to OpenLP. - + Click the finish button to return to OpenLP. - + Custom Slides - + Finish - + No Internet connection was found. The First Time Wizard needs an Internet connection in order to be able to download sample songs, Bibles and themes. Click the Finish button now to start OpenLP with initial settings and no sample data. To re-run the First Time Wizard and import this sample data at a later time, check your Internet connection and re-run this wizard by selecting "Tools/Re-run First Time Wizard" from OpenLP. - + To cancel the First Time Wizard completely (and not start OpenLP), click the Cancel button now. - + @@ -2764,37 +2760,37 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can Configure Formatting Tags - + Edit Selection - + Save - + Description - + Tag - + Start HTML - + End HTML - + @@ -2802,32 +2798,32 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can Update Error - + Tag "n" already defined. - + New Tag - + <HTML here> - + </and here> - + Tag %s already defined. - + @@ -2835,82 +2831,82 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can Red - + Black - + Blue - + Yellow - + Green - + Pink - + Orange - + Purple - + White - + Superscript - + Subscript - + Paragraph - + Bold - + Italics - + Underline - + Break - + @@ -2918,22 +2914,22 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can General - + Monitors - + Select monitor for output display: - + Display if a single screen - + @@ -2943,7 +2939,7 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can Show blank screen warning - + @@ -2953,7 +2949,7 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can Show the splash screen - + @@ -2963,112 +2959,112 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can Prompt to save before starting a new service - + Automatically preview next item in service - + sec - + CCLI Details - + SongSelect username: - + SongSelect password: - + X - + Y - + Height - + Width - + Check for updates to OpenLP - + Unblank display when adding new live item - + Timed slide interval: - + Background Audio - + Start background audio paused - + Service Item Slide Limits - + Override display position: - + Repeat track list - + Behavior of next/previous on the last/first slide: - + &Remain on Slide - + &Wrap around - + &Move to next/previous service item - + @@ -3076,12 +3072,12 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can Language - + Please restart OpenLP to use your new language setting. - + @@ -3089,7 +3085,7 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can OpenLP Display - + @@ -3112,17 +3108,17 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can &View - + M&ode - + &Tools - + @@ -3132,7 +3128,7 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can &Language - + @@ -3142,57 +3138,57 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can Media Manager - + Service Manager - + Theme Manager - + &New - &Ny + &Open - + Open an existing service. - + &Save - &Lagre + Save the current service to disk. - + Save &As... - + Save Service As - + Save the current service under a new name. - + @@ -3202,62 +3198,62 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can Quit OpenLP - + &Theme - + &Configure OpenLP... - + &Media Manager - + Toggle Media Manager - + Toggle the visibility of the media manager. - + &Theme Manager - + Toggle Theme Manager - + Toggle the visibility of the theme manager. - + &Service Manager - + Toggle Service Manager - + Toggle the visibility of the service manager. - + @@ -3272,32 +3268,32 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can Toggle the visibility of the preview panel. - + &Live Panel - + Toggle Live Panel - + Toggle the visibility of the live panel. - + &Plugin List - + List the Plugins - + @@ -3307,223 +3303,223 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can &About - + More information about OpenLP - + &Online Help - + &Web Site - + Use the system language, if available. - + Set the interface language to %s - + Add &Tool... - + Add an application to the list of tools. - + &Default - + Set the view mode back to the default. - + &Setup - + Set the view mode to Setup. - + &Live - + Set the view mode to Live. - + Version %s of OpenLP is now available for download (you are currently running version %s). You can download the latest version from http://openlp.org/. - + OpenLP Version Updated - + OpenLP Main Display Blanked - + The Main Display has been blanked out - + Default Theme: %s - + English Please add the name of your language here - + Norwegian Configure &Shortcuts... - + Close OpenLP - + Are you sure you want to close OpenLP? - + Open &Data Folder... - + Open the folder where songs, bibles and other data resides. - + &Autodetect - + Update Theme Images - + Update the preview images for all themes. - + Print the current service. - + &Recent Files - + L&ock Panels - + Prevent the panels being moved. - + Re-run First Time Wizard - + Re-run the First Time Wizard, importing songs, Bibles and themes. - + Re-run First Time Wizard? - + Are you sure you want to re-run the First Time Wizard? Re-running this wizard may make changes to your current OpenLP configuration and possibly add songs to your existing songs list and change your default theme. - + Clear List Clear List of recent files - + Clear the list of recent files. - + Configure &Formatting Tags... - + Export OpenLP settings to a specified *.config file - + Settings - + Import OpenLP settings from a specified *.config file previously exported on this or another machine - + Import settings? - + @@ -3532,42 +3528,42 @@ Re-running this wizard may make changes to your current OpenLP configuration and Importing settings will make permanent changes to your current OpenLP configuration. Importing incorrect settings may cause erratic behaviour or OpenLP to terminate abnormally. - + Open File - + OpenLP Export Settings Files (*.conf) - + Import settings - + OpenLP will now close. Imported settings will be applied the next time you start OpenLP. - + Export Settings File - + OpenLP Export Settings File (*.conf) - + New Data Directory Error - + @@ -3575,21 +3571,21 @@ Importing incorrect settings may cause erratic behaviour or OpenLP to terminate Database Error - + The database being loaded was created in a more recent version of OpenLP. The database is version %d, while OpenLP expects version %d. The database will not be loaded. Database: %s - + OpenLP cannot load your database. Database: %s - + @@ -3597,73 +3593,73 @@ Database: %s No Items Selected - + &Add to selected Service Item - + You must select one or more items to preview. - + You must select one or more items to send live. - + You must select one or more items. - + You must select an existing service item to add to. - + Invalid Service Item - + You must select a %s service item. - + You must select one or more items to add. - + No Search Results - + Invalid File Type - + Invalid File %s. Suffix not supported - + &Clone - + Duplicate files were found on import and were ignored. - + @@ -3671,12 +3667,12 @@ Suffix not supported <lyrics> tag is missing. - + <verse> tag is missing. - + @@ -3684,17 +3680,17 @@ Suffix not supported Plugin List - + Plugin Details - + Status: - + @@ -3704,22 +3700,22 @@ Suffix not supported Inactive - + %s (Inactive) - + %s (Active) - + %s (Disabled) - + @@ -3727,12 +3723,12 @@ Suffix not supported Fit Page - + Fit Width - + @@ -3740,77 +3736,77 @@ Suffix not supported Options - + Copy - + Copy as HTML - + Zoom In - + Zoom Out - + Zoom Original - + Other Options - + Include slide text if available - + Include service item notes - + Include play length of media items - + Add page break before each text item - + Service Sheet - + Print - + Title: - + Custom Footer Text: - + @@ -3818,12 +3814,12 @@ Suffix not supported Screen - + primary - + @@ -3831,12 +3827,12 @@ Suffix not supported <strong>Start</strong>: %s - + <strong>Length</strong>: %s - + @@ -3844,7 +3840,7 @@ Suffix not supported Reorder Service Item - + @@ -3852,278 +3848,278 @@ Suffix not supported Move to &top - + Move item to the top of the service. - + Move &up - + Move item up one position in the service. - + Move &down - + Move item down one position in the service. - + Move to &bottom - + Move item to the end of the service. - + &Delete From Service - + Delete the selected item from the service. - + &Add New Item - + &Add to Selected Item - + &Edit Item - + &Reorder Item - + &Notes - + &Change Item Theme - + OpenLP Service Files (*.osz) - + 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 - + &Expand all - + Expand all the service items. - + &Collapse all - + Collapse all the service items. - + Open File - + Moves the selection down the window. - + Move up - + Moves the selection up the window. - + Go Live - + Send the selected item to Live. - + &Start Time - + Show &Preview - + Modified Service - + The current service has been modified. Would you like to save this service? - + Custom Service Notes: - + Notes: - + Playing time: - + Untitled Service - + File could not be opened because it is corrupt. - + Empty File - + This service file does not contain any data. - + Corrupt File - + Load an existing service. - + Save this service. - + Select a theme for the service. - + This file is either corrupt or it is not an OpenLP 2.0 service file. - + Service File Missing - + Slide theme - + Notes - + Edit - + Service copy only - + Error Saving File - + There was an error saving your file. - + @@ -4131,7 +4127,7 @@ The content encoding is not UTF-8. Service Item Notes - + @@ -4139,7 +4135,7 @@ The content encoding is not UTF-8. Configure OpenLP - + @@ -4147,67 +4143,67 @@ The content encoding is not UTF-8. Action - + Shortcut - + Duplicate Shortcut - + The shortcut "%s" is already assigned to another action, please use a different shortcut. - + Alternate - + Select an action and click one of the buttons below to start capturing a new primary or alternate shortcut, respectively. - + Default - + Custom - + Capture shortcut. - + Restore the default shortcut of this action. - + Restore Default Shortcuts - + Do you want to restore all shortcuts to their defaults? - + Configure Shortcuts - + @@ -4215,172 +4211,172 @@ The content encoding is not UTF-8. Hide - + Go To - + Blank Screen - + Blank to Theme - + Show Desktop - + Previous Service - + Next Service - + Escape Item - + Move to previous. - + Move to next. - + Play Slides - + Delay between slides in seconds. - + Move to live. - + Add to Service. - + Edit and reload song preview. - + Start playing media. - + Pause audio. - + Pause playing media. - + Stop playing media. - + Video position. - + Audio Volume. - + Go to "Verse" - + Go to "Chorus" - + Go to "Bridge" - + Go to "Pre-Chorus" - + Go to "Intro" - + Go to "Ending" - + Go to "Other" - + Previous Slide - + Next Slide - + Pause Audio - + Background Audio - + Go to next audio track. - + Tracks - + @@ -4388,17 +4384,17 @@ The content encoding is not UTF-8. Spelling Suggestions - + Formatting Tags - + Language: - + @@ -4406,67 +4402,67 @@ The content encoding is not UTF-8. Hours: - + Minutes: - + Seconds: - + Item Start and Finish Time - + Start - + Finish - + Length - + Time Validation Error - + Finish time is set after the end of the media item - + Start time is after the finish time of the media item - + Theme Layout - + The blue box shows the main area. - + The red box shows the footer. - + @@ -4474,32 +4470,32 @@ The content encoding is not UTF-8. Select Image - + Theme Name Missing - + There is no name for this theme. Please enter one. - + Theme Name Invalid - + Invalid theme name. Please enter one. - + (approximately %d lines per slide) - + @@ -4507,72 +4503,72 @@ The content encoding is not UTF-8. Create a new theme. - + Edit Theme - + Edit a theme. - + Delete Theme - + Delete a theme. - + Import Theme - + Import a theme. - + Export Theme - + Export a theme. - + &Edit Theme - + &Delete Theme - + Set As &Global Default - + %s (default) - + You must select a theme to edit. - + @@ -4582,42 +4578,42 @@ The content encoding is not UTF-8. Theme %s is used in the %s plugin. - + You have not selected a theme. - + Save Theme - (%s) - + Theme Exported - + Your theme has been successfully exported. - + Theme Export Failed - + Your theme could not be exported due to an error. - + Select Theme Import File - + @@ -4627,73 +4623,73 @@ The content encoding is not UTF-8. &Copy Theme - + &Rename Theme - + &Export Theme - + You must select a theme to rename. - + Rename Confirmation - + Rename %s theme? - + You must select a theme to delete. - + Delete Confirmation - + Delete %s theme? - + Validation Error - + A theme with this name already exists. - + OpenLP Themes (*.theme *.otz) - + Copy of %s Copy of <theme name> - + Theme Already Exists - + @@ -4701,272 +4697,272 @@ The content encoding is not UTF-8. Theme Wizard - + Welcome to the Theme Wizard - + Set Up Background - + Set up your theme's background according to the parameters below. - + Background type: - + Solid Color - + Gradient - + Color: - + Gradient: - + Horizontal - + Vertical - + Circular - + Top Left - Bottom Right - + Bottom Left - Top Right - + Main Area Font Details - + Define the font and display characteristics for the Display text - + Font: - + Size: - + Line Spacing: - + &Outline: - + &Shadow: - + Bold - + Italic - + Footer Area Font Details - + Define the font and display characteristics for the Footer text - + Text Formatting Details - + Allows additional display formatting information to be defined - + Horizontal Align: - + Left - + Right - + Center - + Output Area Locations - + Allows you to change and move the main and footer areas. - + &Main Area - + &Use default location - + X position: - + px - + Y position: - + Width: - + Height: - + Use default location - + Theme name: - + Edit Theme - %s - + This wizard will help you to create and edit your themes. Click the next button below to start the process by setting up your background. - + Transitions: - + &Footer Area - + Starting color: - + Ending color: - + Background color: - Bakgrunnsfarge: + Justify - + Layout Preview - + Transparent - + Preview and Save - + Preview the theme and save it. - + @@ -4974,47 +4970,47 @@ The content encoding is not UTF-8. Global Theme - + Theme Level - + S&ong Level - + Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. - + &Service Level - + Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. - + &Global Level - + Use the global theme, overriding any themes associated with either the service or the songs. - + Themes - + @@ -5022,57 +5018,57 @@ The content encoding is not UTF-8. Error - + About - + &Add - + Advanced - + All Files - + Bottom - + Browse... - + Cancel - + CCLI number: - + Create a new service. - + &Delete - + @@ -5082,215 +5078,215 @@ The content encoding is not UTF-8. Empty Field - + Export - + pt Abbreviated font pointsize unit - + Image - Bilde + Import - + Live - + Live Background Error - + Load - + Middle - + New - + New Service - + New Theme - + No File Selected Singular - + No Files Selected Plural - + No Item Selected Singular - + No Items Selected Plural - + openlp.org 1.x - + OpenLP 2.0 - + Preview - + Replace Background - + Reset Background - + s The abbreviated unit for seconds - + Save && Preview - + Search - + You must select an item to delete. - + You must select an item to edit. - + Save Service - + Service - + Start %s - + Theme Singular - + Themes Plural - + Top - + Version - + Delete the selected item. - + Move selection up one position. - + Move selection down one position. - + &Vertical Align: - + Finished import. - + Format: - + Importing - + Importing "%s"... - + @@ -5300,88 +5296,88 @@ The content encoding is not UTF-8. Select the import format and the location to import from. - + The openlp.org 1.x importer has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "python-sqlite" module. - + Open %s File - + %p% - + Ready. - + Starting import... - + You need to specify at least one %s file to import from. A file type e.g. OpenSong - + Welcome to the Bible Import Wizard - + Welcome to the Song Export Wizard - + Welcome to the Song Import Wizard - + Author Singular - + Authors Plural - + - © + © Copyright symbol. - + Song Book Singular - + Song Books Plural - + Song Maintenance - + @@ -5393,221 +5389,221 @@ The content encoding is not UTF-8. Topics Plural - + Continuous - + Default - + Display style: - + Duplicate Error - + File - + Help - + h The abbreviated unit for hours - + Layout style: - + Live Toolbar - + m The abbreviated unit for minutes - + OpenLP is already running. Do you wish to continue? - + Settings - + Tools - + Unsupported File - + Verse Per Slide - + Verse Per Line - + View - + Title and/or verses not found - + XML syntax error - + View Mode - + Open service. - + Print Service - + Replace live background. - + Reset live background. - + Split a slide into two only if it does not fit on the screen as one slide. - + Welcome to the Bible Upgrade Wizard - + Confirm Delete - + Play Slides in Loop - + Play Slides to End - + Stop Play Slides in Loop - + Stop Play Slides to End - + Next Track - + Search Themes... Search bar place holder text - + Optional &Split - + Invalid Folder Selected Singular - + Invalid File Selected Singular - + Invalid Files Selected Plural - + No Folder Selected Singular - + Open %s Folder - + You need to specify one %s file to import from. A file type e.g. OpenSong - + You need to specify one %s folder to import from. A song format e.g. PowerSong - + @@ -5616,25 +5612,25 @@ The content encoding is not UTF-8. %1 and %2 Locale list separator: 2 items - + %1, and %2 Locale list separator: end - + %1, %2 Locale list separator: middle - + %1, %2 Locale list separator: start - + @@ -5642,50 +5638,50 @@ The content encoding is not UTF-8. <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. - + Presentation name singular - + Presentations name plural - + Presentations container title - + Load a new presentation. - + Delete the selected presentation. - + Preview the selected presentation. - + Send the selected presentation live. - + Add the selected presentation to the service. - + @@ -5693,52 +5689,52 @@ The content encoding is not UTF-8. Select Presentation(s) - + Automatic - + Present using: - + File Exists - + A presentation with that filename already exists. - + This type of presentation is not supported. - + Presentations (%s) - + Missing Presentation - + The presentation %s is incomplete, please reload. - + The presentation %s no longer exists. - + @@ -5746,17 +5742,17 @@ The content encoding is not UTF-8. Available Controllers - + %s (unavailable) - + Allow presentation application to be overridden - + @@ -5764,25 +5760,25 @@ The content encoding is not UTF-8. <strong>Remote Plugin</strong><br />The remote plugin provides the ability to send messages to a running version of OpenLP on a different computer via a web browser or through the remote API. - + Remote name singular - + Remotes name plural - + Remote container title - + @@ -5790,107 +5786,107 @@ The content encoding is not UTF-8. OpenLP 2.0 Remote - + OpenLP 2.0 Stage View - + Service Manager - + Slide Controller - + Alerts - Varsler + Search - + Refresh - + Blank - + Show - + Prev - + Next - + Text - + Show Alert - + Go Live - + No Results - + Options - + Add to Service - + Home - + Theme - + Desktop - + Add &amp; Go to Service - + @@ -5898,42 +5894,42 @@ The content encoding is not UTF-8. Serve on IP address: - + Port number: - + Server Settings - + Remote URL: - + Stage view URL: - + Display stage time in 12h format - + Android App - + Scan the QR code or click <a href="https://market.android.com/details?id=org.openlp.android">download</a> to install the Android app from the Market. - + @@ -5941,85 +5937,85 @@ The content encoding is not UTF-8. &Song Usage Tracking - + &Delete Tracking Data - + Delete song usage data up to a specified date. - + &Extract Tracking Data - + Generate a report on song usage. - + Toggle Tracking - + Toggle the tracking of song usage. - + <strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services. - + SongUsage name singular - + SongUsage name plural - + SongUsage container title - + Song Usage - + Song usage tracking is active. - + Song usage tracking is inactive. - + display - + printed - + @@ -6027,32 +6023,32 @@ The content encoding is not UTF-8. Delete Song Usage Data - + Delete Selected Song Usage Events? - + Are you sure you want to delete selected Song Usage data? - + Deletion Successful - + All requested data has been deleted successfully. - + Select the date up to which the song usage data should be deleted. All data recorded before this date will be permanently deleted. - + @@ -6060,7 +6056,7 @@ The content encoding is not UTF-8. Song Usage Extraction - + @@ -6070,44 +6066,44 @@ The content encoding is not UTF-8. to - + Report Location - + Output File Location - + usage_detail_%s_%s.txt - + Report Creation - + Report %s has been successfully created. - + Output Path Not Selected - + You have not set a valid output location for your song usage report. Please select an existing path on your computer. - + @@ -6120,168 +6116,168 @@ has been successfully created. 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... - + Arabic (CP-1256) - + Baltic (CP-1257) - + Central European (CP-1250) - + Cyrillic (CP-1251) - + Greek (CP-1253) - + Hebrew (CP-1255) - + Japanese (CP-932) - + Korean (CP-949) - + Simplified Chinese (CP-936) - + Thai (CP-874) - + Traditional Chinese (CP-950) - + Turkish (CP-1254) - + Vietnam (CP-1258) - + Western European (CP-1252) - + Character Encoding - + The codepage setting is responsible for the correct character representation. Usually you are fine with the preselected choice. - + Please choose the character encoding. The encoding is responsible for the correct character representation. - + Song name singular - + Songs name plural - + Songs container title - + Exports songs using the export wizard. - + 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. - + @@ -6294,32 +6290,32 @@ The encoding is responsible for the correct character representation. Display name: - + First name: - + Last name: - + You need to type in the first name of the author. - + You need to type in the last name of the author. - + You have not set a display name for the author, combine the first and last names? - + @@ -6327,7 +6323,7 @@ The encoding is responsible for the correct character representation. The file does not have a valid extension. - + @@ -6335,14 +6331,14 @@ The encoding is responsible for the correct character representation. Administered by %s - + [above are Song Tags with notes imported from EasyWorship] - + @@ -6350,12 +6346,12 @@ The encoding is responsible for the correct character representation. Meta Data - + Custom Book Names - + @@ -6368,202 +6364,202 @@ The encoding is responsible for the correct character representation. &Title: - &Tittel: + Alt&ernate title: - + &Lyrics: - + &Verse order: - + Ed&it All - Rediger alle + Title && Lyrics - + &Add to Song - + &Remove - + &Manage Authors, Topics, Song Books - + A&dd to Song - + R&emove - + Book: - Bok: + Number: - + Authors, Topics && Song Book - + New &Theme - + Copyright Information - + Comments - + Theme, Copyright Info && Comments - + Add Author - + This author does not exist, do you want to add them? - + This author is already in the list. - + You have not selected a valid author. Either select an author from the list, or type in a new author and click the "Add Author to Song" button to add the new author. - + Add Topic - + This topic does not exist, do you want to add it? - + This topic is already in the list. - + You have not selected a valid topic. Either select a topic from the list, or type in a new topic and click the "Add Topic to Song" button to add the new topic. - + You need to type in a song title. - + You need to type in at least one verse. - + The verse order is invalid. There is no verse corresponding to %s. Valid entries are %s. - + Add Book - + This song book does not exist, do you want to add it? - + You need to have an author for this song. - + You need to type some text in to the verse. - + Linked Audio - + Add &File(s) - + Add &Media - + Remove &All - + Open File(s) - + <strong>Warning:</strong> Not all of the verses are in use. - + The verse order is invalid. There are no verses corresponding to %s. Valid entries are %s. - + @@ -6571,22 +6567,22 @@ The encoding is responsible for the correct character representation. Edit Verse - + &Verse type: - + &Insert - + Split a slide into two by inserting a verse splitter. - + @@ -6594,82 +6590,82 @@ The encoding is responsible for the correct character representation. Song Export Wizard - + Select Songs - + Check the songs you want to export. - + Uncheck All - + Check All - + Select Directory - + Directory: - + Exporting - + Please wait while your songs are exported. - + You need to add at least one Song to export. - + No Save Location specified - + Starting export... - + You need to specify a directory. - + Select Destination Folder - + Select the directory where you want the songs to be saved. - + This wizard will help to export your songs to the open and free <strong>OpenLyrics</strong> worship song format. - + @@ -6677,172 +6673,172 @@ The encoding is responsible for the correct character representation. Select Document/Presentation Files - + Song Import Wizard - + This wizard will help you to import songs from a variety of formats. Click the next button below to start the process by selecting a format to import from. - + Generic Document/Presentation - + Add Files... - + Remove File(s) - + Please wait while your songs are imported. - + OpenLP 2.0 Databases - + openlp.org v1.x Databases - + Words Of Worship Song Files - + Songs Of Fellowship Song Files - + SongBeamer Files - + SongShow Plus Song Files - + Foilpresenter Song Files - + Copy - + Save to File - + The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. - + The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. - + OpenLyrics or OpenLP 2.0 Exported Song - + OpenLyrics Files - + CCLI SongSelect Files - + EasySlides XML File - + EasyWorship Song Database - + DreamBeam Song Files - + You need to specify a valid PowerSong 1.0 database folder. - + ZionWorx (CSV) - + First convert your ZionWorx database to a CSV text file, as explained in the <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">User Manual</a>. - + SundayPlus Song Files - + This importer has been disabled. - + MediaShout Database - + The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. - + SongPro Text Files - + SongPro (Export File) - + In SongPro, export your songs using the File -> Export menu - + @@ -6850,12 +6846,12 @@ The encoding is responsible for the correct character representation. Select Media File(s) - + Select one or more audio files from the list below, and click OK to import them into this song. - + @@ -6868,61 +6864,58 @@ The encoding is responsible for the correct character representation. Lyrics - + CCLI License: - + Entire Song - + Are you sure you want to delete the %n selected song(s)? - - - - + Maintain the lists of authors, topics and books. - + copy For song cloning - + Search Titles... - + Search Entire Song... - + Search Lyrics... - + Search Authors... - + Search Song Books... - + @@ -6930,7 +6923,7 @@ The encoding is responsible for the correct character representation. Unable to open the MediaShout database. - + @@ -6938,7 +6931,7 @@ The encoding is responsible for the correct character representation. Not a valid openlp.org 1.x song database. - + @@ -6946,7 +6939,7 @@ The encoding is responsible for the correct character representation. Not a valid OpenLP 2.0 song database. - + @@ -6954,7 +6947,7 @@ The encoding is responsible for the correct character representation. Exporting "%s"... - + @@ -6962,12 +6955,12 @@ The encoding is responsible for the correct character representation. No songs to import. - + Verses not found. Missing "PART" header. - + @@ -6975,22 +6968,22 @@ The encoding is responsible for the correct character representation. Song Book Maintenance - + &Name: - + &Publisher: - + You need to type in a name for the book. - + @@ -6998,12 +6991,12 @@ The encoding is responsible for the correct character representation. Your song export failed. - + Finished export. To import these files use the <strong>OpenLyrics</strong> importer. - + @@ -7011,27 +7004,27 @@ The encoding is responsible for the correct character representation. copyright - + The following songs could not be imported: - + Cannot access OpenOffice or LibreOffice - + Unable to open file - + File not found - + @@ -7039,52 +7032,52 @@ The encoding is responsible for the correct character representation. Could not add your author. - + This author already exists. - + Could not add your topic. - + This topic already exists. - + Could not add your book. - + This book already exists. - + Could not save your changes. - + Could not save your modified author, because the author already exists. - + Could not save your modified topic, because it already exists. - + Delete Author - + @@ -7094,52 +7087,52 @@ The encoding is responsible for the correct character representation. This author cannot be deleted, they are currently assigned to at least one song. - + Delete Topic - + Are you sure you want to delete the selected topic? - + This topic cannot be deleted, it is currently assigned to at least one song. - + Delete Book - + Are you sure you want to delete the selected book? - + This book cannot be deleted, it is currently assigned to at least one song. - + The author %s already exists. Would you like to make songs with author %s use the existing author %s? - + The topic %s already exists. Would you like to make songs with topic %s use the existing topic %s? - + The book %s already exists. Would you like to make songs with book %s use the existing book %s? - + @@ -7147,27 +7140,27 @@ The encoding is responsible for the correct character representation. Songs Mode - + Enable search as you type - + Display verses on live tool bar - + Update service from song edit - + Import missing songs from service files - + @@ -7175,17 +7168,17 @@ The encoding is responsible for the correct character representation. Topic Maintenance - + Topic name: - + You need to type in a topic name. - + @@ -7193,32 +7186,32 @@ The encoding is responsible for the correct character representation. Verse - + Chorus - + Bridge - + Pre-Chorus - + Intro - + Ending - + @@ -7231,12 +7224,12 @@ The encoding is responsible for the correct character representation. Error reading CSV file. - + File not valid ZionWorx CSV format. - + - + \ No newline at end of file diff --git a/resources/i18n/nl.ts b/resources/i18n/nl.ts index 7adb93649..a0715e135 100644 --- a/resources/i18n/nl.ts +++ b/resources/i18n/nl.ts @@ -1,5 +1,4 @@ - - + AlertsPlugin @@ -102,7 +101,7 @@ Toch doorgaan? - The alert text does not contain '<>'. + The alert text does not contain '<>'. Do you want to continue anyway? De waarschuwing bevat geen '<>'. Toch doorgaan? @@ -1368,7 +1367,7 @@ indien nodig en een internetverbinding is dus noodzakelijk. Are you sure you want to completely delete "%s" Bible from OpenLP? You will need to re-import this Bible to use it again. - + @@ -1376,7 +1375,7 @@ You will need to re-import this Bible to use it again. Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. - + @@ -1699,7 +1698,7 @@ Let op, de bijbelverzen worden gedownload indien nodig en een internetverbinding Edit Slide - + @@ -1707,10 +1706,7 @@ Let op, de bijbelverzen worden gedownload indien nodig en een internetverbinding Are you sure you want to delete the %n selected custom slide(s)? - - Weet u zeker dat u %n geslecteerde dia(s) wilt verwijderen? - Weet u zeker dat u %n geslecteerde dia(s) wilt verwijderen? - + Weet u zeker dat u %n geslecteerde dia(s) wilt verwijderen?Weet u zeker dat u %n geslecteerde dia(s) wilt verwijderen? @@ -2075,7 +2071,7 @@ Translators %s Japanese (ja) %s - Norwegian Bokmål (nb) + Norwegian Bokmål (nb) %s Dutch (nl) %s @@ -2187,8 +2183,8 @@ OpenLP wordt ontwikkeld en bijgehouden door vrijwilligers. Als u meer vrije soft - Copyright © 2004-2012 %s -Portions copyright © 2004-2012 %s + Copyright © 2004-2012 %s +Portions copyright © 2004-2012 %s Copyright © 2004-2012 %s Portions copyright © 2004-2012 %s @@ -5450,7 +5446,7 @@ Tekst codering is geen UTF-8. - © + © Copyright symbol. © @@ -6912,32 +6908,32 @@ De tekstcodering is verantwoordelijk voor een correcte weergave van lettertekens This importer has been disabled. - + MediaShout Database - + The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. - + SongPro Text Files - + SongPro (Export File) - + In SongPro, export your songs using the File -> Export menu - + @@ -6978,10 +6974,7 @@ De tekstcodering is verantwoordelijk voor een correcte weergave van lettertekens Are you sure you want to delete the %n selected song(s)? - - Weet u zeker dat u dit %n lied wilt verwijderen? - Weet u zeker dat u deze %n lied(eren) wilt verwijderen? - + Weet u zeker dat u dit %n lied wilt verwijderen?Weet u zeker dat u deze %n lied(eren) wilt verwijderen? @@ -7025,7 +7018,7 @@ De tekstcodering is verantwoordelijk voor een correcte weergave van lettertekens Unable to open the MediaShout database. - + @@ -7334,4 +7327,4 @@ De tekstcodering is verantwoordelijk voor een correcte weergave van lettertekens Bestand geen geldig ZionWorx CSV indeling. - + \ No newline at end of file diff --git a/resources/i18n/pl.ts b/resources/i18n/pl.ts index c8d2bbe67..3b70127a7 100644 --- a/resources/i18n/pl.ts +++ b/resources/i18n/pl.ts @@ -1,39 +1,38 @@ - - + AlertsPlugin &Alert - + Show an alert message. - + Alert name singular - + Alerts name plural - + Alerts container title - + <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of nursery alerts on the display screen. - + @@ -41,69 +40,69 @@ Alert Message - + Alert &text: - + &New - + &Save - + Displ&ay - + Display && Cl&ose - + New Alert - + You haven't specified any text for your alert. Please type in some text before clicking New. - + &Parameter: - + No Parameter Found - + You have not entered a parameter to be replaced. Do you want to continue anyway? - + No Placeholder Found - + - The alert text does not contain '<>'. + The alert text does not contain '<>'. Do you want to continue anyway? - + @@ -111,7 +110,7 @@ Do you want to continue anyway? Alert message created and displayed. - + @@ -144,7 +143,7 @@ Do you want to continue anyway? Alert timeout: - + @@ -152,511 +151,511 @@ Do you want to continue anyway? &Bible - + Bible name singular - + Bibles name plural - + Bibles container title - + No Book Found - + No matching book could be found in this Bible. Check that you have spelled the name of the book correctly. - + Import a Bible. - + Add a new Bible. - + Edit the selected Bible. - + Delete the selected Bible. - + Preview the selected Bible. - + Send the selected Bible live. - + Add the selected Bible to the service. - + <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display Bible verses from different sources during the service. - + &Upgrade older Bibles - + Upgrade the Bible databases to the latest format. - + Genesis - + Exodus - + Leviticus - + Numbers - + Deuteronomy - + Joshua - + Judges - + Ruth - + 1 Samuel - + 2 Samuel - + 1 Kings - + 2 Kings - + 1 Chronicles - + 2 Chronicles - + Ezra - + Nehemiah - + Esther - + Job - + Psalms - + Proverbs - + Ecclesiastes - + Song of Solomon - + Isaiah - + Jeremiah - + Lamentations - + Ezekiel - + Daniel - + Hosea - + Joel - + Amos - + Obadiah - + Jonah - + Micah - + Nahum - + Habakkuk - + Zephaniah - + Haggai - + Zechariah - + Malachi - + Matthew - + Mark - + Luke - + John - + Acts - + Romans - + 1 Corinthians - + 2 Corinthians - + Galatians - + Ephesians - + Philippians - + Colossians - + 1 Thessalonians - + 2 Thessalonians - + 1 Timothy - + 2 Timothy - + Titus - + Philemon - + Hebrews - + James - + 1 Peter - + 2 Peter - + 1 John - + 2 John - + 3 John - + Jude - + Revelation - + Judith - + Wisdom - + Tobit - + Sirach - + Baruch - + 1 Maccabees - + 2 Maccabees - + 3 Maccabees - + 4 Maccabees - + Rest of Daniel - + Rest of Esther - + Prayer of Manasses - + Letter of Jeremiah - + Prayer of Azariah - + Susanna - + Bel - + 1 Esdras - + 2 Esdras - + :|v|V|verse|verses;;-|to;;,|and;;end Double-semicolon delimited separators for parsing references. Consult the developers for further information. - + @@ -664,44 +663,44 @@ Do you want to continue anyway? You need to specify a version name for your Bible. - + You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. - + Bible Exists - + This Bible already exists. Please import a different Bible or first delete the existing one. - + You need to specify a book name for "%s". - + The book name "%s" is not correct. Numbers can only be used at the beginning and must be followed by one or more non-numeric characters. - + Duplicate Book Name - + The Book Name "%s" has been entered more than once. - + @@ -709,33 +708,33 @@ be followed by one or more non-numeric characters. Scripture Reference Error - + Web Bible cannot be used - + Text Search is not available with Web Bibles. - + You did not enter a search keyword. You can separate different keywords by a space to search for all of your keywords and you can separate them by a comma to search for one of them. - + There are no Bibles currently installed. Please use the Import Wizard to install one or more Bibles. - + No Bibles Available - + @@ -748,7 +747,7 @@ Book Chapter%(verse)sVerse%(range)sVerse%(list)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sVerse%(list)sChapter%(verse)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sChapter%(verse)sVerse Please pay attention to the appended "s" of the wildcards and refrain from translating the words inside the names in the brackets. - + @@ -756,127 +755,127 @@ Book Chapter%(verse)sVerse%(range)sChapter%(verse)sVerse Verse Display - + Only show new chapter numbers - + Bible theme: - + No Brackets - + ( And ) - + { And } - + [ And ] - + Note: Changes do not affect verses already in the service. - + Display second Bible verses - + Custom Scripture References - + Verse Separator: - + Range Separator: - + List Separator: - + End Mark: - + Multiple alternative verse separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. - + Multiple alternative range separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. - + Multiple alternative list separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. - + Multiple alternative end marks may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. - + English - + Default Bible Language - + Book name language in search field, search results and on display: - + Bible Language - + Application Language - + @@ -884,42 +883,42 @@ search results and on display: Select Book Name - + Current name: - + Corresponding name: - + Show Books From - + Old Testament - + New Testament - + Apocrypha - + The following book name cannot be matched up internally. Please select the corresponding name from the list. - + @@ -927,7 +926,7 @@ search results and on display: You need to select a book. - + @@ -935,18 +934,18 @@ search results and on display: Importing books... %s - + Importing verses from %s... Importing verses from <book name>... - + Importing verses... done. - + @@ -954,68 +953,68 @@ search results and on display: Bible Editor - + License Details - + Version name: - + Copyright: - + Permissions: - + Default Bible Language - + Book name language in search field, search results and on display: - + Global Settings - + Bible Language - + Application Language - + English - + This is a Web Download Bible. It is not possible to customize the Book Names. - + To use the customized book names, "Bible language" must be selected on the Meta Data tab or, if "Global settings" is selected, on the Bible page in Configure OpenLP. - + @@ -1023,38 +1022,38 @@ It is not possible to customize the Book Names. Registering Bible and loading books... - + Registering Language... - + Importing %s... Importing <book name>... - + Download Error - + There was a problem downloading your verse selection. Please check your Internet connection, and if this error continues to occur please consider reporting a bug. - + Parse Error - + There was a problem extracting your verse selection. If this error continues to occur please consider reporting a bug. - + @@ -1062,168 +1061,168 @@ It is not possible to customize the Book Names. Bible Import Wizard - + This wizard will help you to import Bibles from a variety of formats. Click the next button below to start the process by selecting a format to import from. - + Web Download - + Location: - + Crosswalk - + BibleGateway - + Bible: - + Download Options - + Server: - + Username: - + Password: - + Proxy Server (Optional) - + License Details - + Set up the Bible's license details. - + Version name: - + Copyright: - + Please wait while your Bible is imported. - + You need to specify a file with books of the Bible to use in the import. - + You need to specify a file of Bible verses to import. - + You need to specify a version name for your Bible. - + You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. - + Bible Exists - + This Bible already exists. Please import a different Bible or first delete the existing one. - + Your Bible import failed. - + CSV File - + Bibleserver - + Permissions: - + Bible file: - + Books file: - + Verses file: - + openlp.org 1.x Bible Files - + Registering Bible... - + Registered Bible. Please note, that verses will be downloaded on demand and thus an internet connection is required. - + @@ -1231,17 +1230,17 @@ demand and thus an internet connection is required. Select Language - + OpenLP is unable to determine the language of this translation of the Bible. Please select the language from the list below. - + Language: - + @@ -1249,7 +1248,7 @@ demand and thus an internet connection is required. You need to choose a language. - + @@ -1257,94 +1256,94 @@ demand and thus an internet connection is required. Quick - + Find: - + Book: - + Chapter: - + Verse: - + From: - + To: - + Text Search - + Second: - + Scripture Reference - + Toggle to keep or clear the previous results. - + You cannot combine single and dual Bible verse search results. Do you want to delete your search results and start a new search? - + Bible not fully loaded. - + Information - + The second Bible does not contain all the verses that are in the main Bible. Only verses found in both Bibles will be shown. %d verses have not been included in the results. - + Search Scripture Reference... - + Search Text... - + Are you sure you want to completely delete "%s" Bible from OpenLP? You will need to re-import this Bible to use it again. - + @@ -1352,7 +1351,7 @@ You will need to re-import this Bible to use it again. Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. - + @@ -1361,7 +1360,7 @@ You will need to re-import this Bible to use it again. Importing %s %s... Importing <book name> <chapter>... - + @@ -1369,13 +1368,13 @@ You will need to re-import this Bible to use it again. Detecting encoding (this may take a few minutes)... - + Importing %s %s... Importing <book name> <chapter>... - + @@ -1383,143 +1382,143 @@ You will need to re-import this Bible to use it again. Select a Backup Directory - + Bible Upgrade Wizard - + This wizard will help you to upgrade your existing Bibles from a prior version of OpenLP 2. Click the next button below to start the upgrade process. - + Select Backup Directory - + Please select a backup directory for your Bibles - + Previous releases of OpenLP 2.0 are unable to use upgraded Bibles. This will create a backup of your current Bibles so that you can simply copy the files back to your OpenLP data directory if you need to revert to a previous release of OpenLP. Instructions on how to restore the files can be found in our <a href="http://wiki.openlp.org/faq">Frequently Asked Questions</a>. - + Please select a backup location for your Bibles. - + Backup Directory: - + There is no need to backup my Bibles - + Select Bibles - + Please select the Bibles to upgrade - + Upgrading - + Please wait while your Bibles are upgraded. - + The backup was not successful. To backup your Bibles you need permission to write to the given directory. - + Upgrading Bible %s of %s: "%s" Failed - + Upgrading Bible %s of %s: "%s" Upgrading ... - + Download Error - + To upgrade your Web Bibles an Internet connection is required. - + Upgrading Bible %s of %s: "%s" Upgrading %s ... - + Upgrading Bible %s of %s: "%s" Complete - + , %s failed - + Upgrading Bible(s): %s successful%s Please note that verses from Web Bibles will be downloaded on demand and so an Internet connection is required. - + Upgrading Bible(s): %s successful%s - + Upgrade failed. - + You need to specify a backup directory for your Bibles. - + Starting upgrade... - + There are no Bibles that need to be upgraded. - + @@ -1527,65 +1526,65 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I <strong>Custom Slide Plugin</strong><br />The custom slide plugin provides the ability to set up custom text slides that can be displayed on the screen the same way songs are. This plugin provides greater freedom over the songs plugin. - + Custom Slide name singular - + Custom Slides name plural - + Custom Slides container title - + Load a new custom slide. - + Import a custom slide. - + Add a new custom slide. - + Edit the selected custom slide. - + Delete the selected custom slide. - + Preview the selected custom slide. - + Send the selected custom slide live. - + Add the selected custom slide to the service. - + @@ -1593,12 +1592,12 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I Custom Display - + Display footer - + @@ -1606,62 +1605,62 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I Edit Custom Slides - + &Title: - + Add a new slide at bottom. - + Edit the selected slide. - + Edit all the slides at once. - + Split a slide into two by inserting a slide splitter. - + The&me: - + &Credits: - + You need to type in a title. - + You need to add at least one slide - + Ed&it All - + Insert Slide - + @@ -1669,7 +1668,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I Edit Slide - + @@ -1677,11 +1676,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I Are you sure you want to delete the %n selected custom slide(s)? - - - - - + @@ -1689,60 +1684,60 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I <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. - + Image name singular - + Images name plural - + Images container title - + 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. - + @@ -1750,7 +1745,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I Select Attachment - + @@ -1758,43 +1753,43 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I Select Image(s) - + You must select an image to delete. - + You must select an image to replace the background with. - + Missing Image(s) - + The following image(s) no longer exist: %s - + The following image(s) no longer exist: %s Do you want to add the other images anyway? - + There was a problem replacing your background, the image file "%s" no longer exists. - + There was no display item to amend. - + @@ -1802,17 +1797,17 @@ Do you want to add the other images anyway? Background Color - + Default Color: - + Visible background for images with aspect ratio different to screen. - + @@ -1820,60 +1815,60 @@ Do you want to add the other images anyway? <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. - + Media name singular - + Media name plural - + Media container title - + Load new media. - + Add 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. - + @@ -1881,57 +1876,57 @@ Do you want to add the other images anyway? Select Media - + You must select a media file to delete. - + You must select a media file to replace the background with. - + There was a problem replacing your background, the media file "%s" no longer exists. - + Missing Media File - + The file %s no longer exists. - + Videos (%s);;Audio (%s);;%s (*) - + There was no display item to amend. - + Unsupported File - + Automatic - + Use Player: - + @@ -1939,22 +1934,22 @@ Do you want to add the other images anyway? Available Media Players - + %s (unavailable) - + Player Order - + Allow media player to be overridden - + @@ -1962,19 +1957,19 @@ Do you want to add the other images anyway? Image Files - + Information - + Bible format has changed. You have to upgrade your existing Bibles. Should OpenLP upgrade now? - + @@ -1982,32 +1977,32 @@ Should OpenLP upgrade now? Credits - + License - + Contribute - + build %s - + This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See below for more details. - + @@ -2043,7 +2038,7 @@ Translators %s Japanese (ja) %s - Norwegian Bokmål (nb) + Norwegian Bokmål (nb) %s Dutch (nl) %s @@ -2072,7 +2067,7 @@ Final Credit on the cross, setting us free from sin. We bring this software to you for free because He has set us free. - + @@ -2083,13 +2078,13 @@ OpenLP is free church presentation software, or lyrics projection software, used Find out more about OpenLP: http://openlp.org/ OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider contributing by using the button below. - + - Copyright © 2004-2012 %s -Portions copyright © 2004-2012 %s - + Copyright © 2004-2012 %s +Portions copyright © 2004-2012 %s + @@ -2097,271 +2092,271 @@ Portions copyright © 2004-2012 %s UI Settings - + Number of recent files to display: - + Remember active media manager tab on startup - + Double-click to send items straight to live - + Expand new service items on creation - + Enable application exit confirmation - + Mouse Cursor - + Hide mouse cursor when over display window - + Default Image - + Background color: - Tło czcionki: + Image file: - + Open File - + Advanced - + Preview items when clicked in Media Manager - + Click to select a color. - + Browse for an image file to display. - + Revert to the default OpenLP logo. - + Service %Y-%m-%d %H-%M This may not contain any of the following characters: /\?*|<>[]":+ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for more information. - + Default Service Name - + Enable default service name - + Date and Time: - + Monday - + Tuesday - + Wednesday - + Thurdsday - + Friday - + Saturday - + Sunday - + Now - + Time when usual service starts. - + Name: - + Consult the OpenLP manual for usage. - + Revert to the default service name "%s". - + Example: - + X11 - + Bypass X11 Window Manager - + Syntax error. - + Data Location - + Current path: - + Custom path: - + Browse for new data file location. - + Set the data location to the default. - + Cancel - + Cancel OpenLP data directory location change. - + Copy data to new location. - + Copy the OpenLP data files to the new location. - + <strong>WARNING:</strong> New data directory location contains OpenLP data files. These files WILL be replaced during a copy. - + Data Directory Error - + Select Data Directory Location - + Confirm Data Directory Change - + Reset Data Directory - + Are you sure you want to change the location of the OpenLP data directory to the default location? This location will be used after OpenLP is closed. - + Overwrite Existing Data - + @@ -2369,38 +2364,38 @@ This location will be used after OpenLP is closed. Error Occurred - + Oops! OpenLP hit a problem, and couldn't recover. The text in the box below contains information that might be helpful to the OpenLP developers, so please e-mail it to bugs@openlp.org, along with a detailed description of what you were doing when the problem occurred. - + Send E-Mail - + Save to File - + Please enter a description of what you were doing to cause this error (Minimum 20 characters) - + Attach File - + Description characters to enter : %s - + @@ -2409,17 +2404,17 @@ This location will be used after OpenLP is closed. Platform: %s - + Save Crash Report - + Text files (*.txt *.log *.text) - + @@ -2437,7 +2432,7 @@ Version: %s --- Library Versions --- %s - + @@ -2456,7 +2451,7 @@ Version: %s %s Please add the information that bug reports are favoured written in English. - + @@ -2464,17 +2459,17 @@ Version: %s File Rename - + New File Name: - + File Copy - + @@ -2482,17 +2477,17 @@ Version: %s Select Translation - + Choose the translation you'd like to use in OpenLP. - + Translation: - + @@ -2500,201 +2495,201 @@ Version: %s Songs - + First Time Wizard - + Welcome to the First Time Wizard - + Activate required Plugins - + Select the Plugins you wish to use. - + Bible - + Images - + Presentations - + Media (Audio and Video) - + Allow remote access - + Monitor Song Usage - + Allow Alerts - + Default Settings - + Downloading %s... - + Download complete. Click the finish button to start OpenLP. - + Enabling selected plugins... - + No Internet Connection - + Unable to detect an Internet connection. - + Sample Songs - + Select and download public domain songs. - + Sample Bibles - + Select and download free Bibles. - + Sample Themes - + Select and download sample themes. - + Set up default settings to be used by OpenLP. - + Default output display: - + Select default theme: - + Starting configuration process... - + This wizard will help you to configure OpenLP for initial use. Click the next button below to start. - + Setting Up And Downloading - + Please wait while OpenLP is set up and your data is downloaded. - + Setting Up - + Click the finish button to start OpenLP. - + Download complete. Click the finish button to return to OpenLP. - + Click the finish button to return to OpenLP. - + Custom Slides - + Finish - + No Internet connection was found. The First Time Wizard needs an Internet connection in order to be able to download sample songs, Bibles and themes. Click the Finish button now to start OpenLP with initial settings and no sample data. To re-run the First Time Wizard and import this sample data at a later time, check your Internet connection and re-run this wizard by selecting "Tools/Re-run First Time Wizard" from OpenLP. - + To cancel the First Time Wizard completely (and not start OpenLP), click the Cancel button now. - + @@ -2702,37 +2697,37 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can Configure Formatting Tags - + Edit Selection - + Save - + Description - + Tag - + Start HTML - + End HTML - + @@ -2740,32 +2735,32 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can Update Error - + Tag "n" already defined. - + New Tag - + <HTML here> - + </and here> - + Tag %s already defined. - + @@ -2773,82 +2768,82 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can Red - + Black - + Blue - + Yellow - + Green - + Pink - + Orange - + Purple - + White - + Superscript - + Subscript - + Paragraph - + Bold - + Italics - + Underline - + Break - + @@ -2856,157 +2851,157 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can General - + Monitors - + Select monitor for output display: - + Display if a single screen - + Application Startup - + Show blank screen warning - + Automatically open the last service - + Show the splash screen - + Application Settings - + Prompt to save before starting a new service - + Automatically preview next item in service - + sec - + CCLI Details - + SongSelect username: - + SongSelect password: - + X - + Y - + Height - + Width - + Check for updates to OpenLP - + Unblank display when adding new live item - + Timed slide interval: - + Background Audio - + Start background audio paused - + Service Item Slide Limits - + Override display position: - + Repeat track list - + Behavior of next/previous on the last/first slide: - + &Remain on Slide - + &Wrap around - + &Move to next/previous service item - + @@ -3014,12 +3009,12 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can Language - + Please restart OpenLP to use your new language setting. - + @@ -3027,7 +3022,7 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can OpenLP Display - + @@ -3035,433 +3030,433 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can &File - + &Import - + &Export - + &View - + M&ode - + &Tools - + &Settings - + &Language - + &Help - + Media Manager - + Service Manager - + Theme Manager - + &New - + &Open - + Open an existing service. - + &Save - + Save the current service to disk. - + Save &As... - + Save Service As - + Save the current service under a new name. - + E&xit - + Quit OpenLP - + &Theme - + &Configure OpenLP... - + &Media Manager - + Toggle Media Manager - + Toggle the visibility of the media manager. - + &Theme Manager - + Toggle Theme Manager - + Toggle the visibility of the theme manager. - + &Service Manager - + Toggle Service Manager - + Toggle the visibility of the service manager. - + &Preview Panel - + Toggle Preview Panel - + Toggle the visibility of the preview panel. - + &Live Panel - + Toggle Live Panel - + Toggle the visibility of the live panel. - + &Plugin List - + List the Plugins - + &User Guide - + &About - + More information about OpenLP - + &Online Help - + &Web Site - + Use the system language, if available. - + Set the interface language to %s - + Add &Tool... - + Add an application to the list of tools. - + &Default - + Set the view mode back to the default. - + &Setup - + Set the view mode to Setup. - + &Live - + Set the view mode to Live. - + Version %s of OpenLP is now available for download (you are currently running version %s). You can download the latest version from http://openlp.org/. - + OpenLP Version Updated - + OpenLP Main Display Blanked - + The Main Display has been blanked out - + Default Theme: %s - + English Please add the name of your language here - + Polish Configure &Shortcuts... - + Close OpenLP - + Are you sure you want to close OpenLP? - + Open &Data Folder... - + Open the folder where songs, bibles and other data resides. - + &Autodetect - + Update Theme Images - + Update the preview images for all themes. - + Print the current service. - + &Recent Files - + L&ock Panels - + Prevent the panels being moved. - + Re-run First Time Wizard - + Re-run the First Time Wizard, importing songs, Bibles and themes. - + Re-run First Time Wizard? - + Are you sure you want to re-run the First Time Wizard? Re-running this wizard may make changes to your current OpenLP configuration and possibly add songs to your existing songs list and change your default theme. - + Clear List Clear List of recent files - + Clear the list of recent files. - + Configure &Formatting Tags... - + Export OpenLP settings to a specified *.config file - + Settings - + Import OpenLP settings from a specified *.config file previously exported on this or another machine - + Import settings? - + @@ -3470,42 +3465,42 @@ Re-running this wizard may make changes to your current OpenLP configuration and Importing settings will make permanent changes to your current OpenLP configuration. Importing incorrect settings may cause erratic behaviour or OpenLP to terminate abnormally. - + Open File - + OpenLP Export Settings Files (*.conf) - + Import settings - + OpenLP will now close. Imported settings will be applied the next time you start OpenLP. - + Export Settings File - + OpenLP Export Settings File (*.conf) - + New Data Directory Error - + @@ -3513,21 +3508,21 @@ Importing incorrect settings may cause erratic behaviour or OpenLP to terminate Database Error - + The database being loaded was created in a more recent version of OpenLP. The database is version %d, while OpenLP expects version %d. The database will not be loaded. Database: %s - + OpenLP cannot load your database. Database: %s - + @@ -3535,73 +3530,73 @@ Database: %s No Items Selected - + &Add to selected Service Item - + You must select one or more items to preview. - + You must select one or more items to send live. - + You must select one or more items. - + You must select an existing service item to add to. - + Invalid Service Item - + You must select a %s service item. - + You must select one or more items to add. - + No Search Results - + Invalid File Type - + Invalid File %s. Suffix not supported - + &Clone - + Duplicate files were found on import and were ignored. - + @@ -3609,12 +3604,12 @@ Suffix not supported <lyrics> tag is missing. - + <verse> tag is missing. - + @@ -3622,42 +3617,42 @@ Suffix not supported Plugin List - + Plugin Details - + Status: - + Active - + Inactive - + %s (Inactive) - + %s (Active) - + %s (Disabled) - + @@ -3665,12 +3660,12 @@ Suffix not supported Fit Page - + Fit Width - + @@ -3678,77 +3673,77 @@ Suffix not supported Options - + Copy - + Copy as HTML - + Zoom In - + Zoom Out - + Zoom Original - + Other Options - + Include slide text if available - + Include service item notes - + Include play length of media items - + Add page break before each text item - + Service Sheet - + Print - + Title: - + Custom Footer Text: - + @@ -3756,12 +3751,12 @@ Suffix not supported Screen - + primary - + @@ -3769,12 +3764,12 @@ Suffix not supported <strong>Start</strong>: %s - + <strong>Length</strong>: %s - + @@ -3782,7 +3777,7 @@ Suffix not supported Reorder Service Item - + @@ -3790,278 +3785,278 @@ Suffix not supported Move to &top - + Move item to the top of the service. - + Move &up - + Move item up one position in the service. - + Move &down - + Move item down one position in the service. - + Move to &bottom - + Move item to the end of the service. - + &Delete From Service - + Delete the selected item from the service. - + &Add New Item - + &Add to Selected Item - + &Edit Item - + &Reorder Item - + &Notes - + &Change Item Theme - + OpenLP Service Files (*.osz) - + 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 - + &Expand all - + Expand all the service items. - + &Collapse all - + Collapse all the service items. - + Open File - + Moves the selection down the window. - + Move up - + Moves the selection up the window. - + Go Live - + Send the selected item to Live. - + &Start Time - + Show &Preview - + Modified Service - + The current service has been modified. Would you like to save this service? - + Custom Service Notes: - + Notes: - + Playing time: - + Untitled Service - + File could not be opened because it is corrupt. - + Empty File - + This service file does not contain any data. - + Corrupt File - + Load an existing service. - + Save this service. - + Select a theme for the service. - + This file is either corrupt or it is not an OpenLP 2.0 service file. - + Service File Missing - + Slide theme - + Notes - + Edit - + Service copy only - + Error Saving File - + There was an error saving your file. - + @@ -4069,7 +4064,7 @@ The content encoding is not UTF-8. Service Item Notes - + @@ -4077,7 +4072,7 @@ The content encoding is not UTF-8. Configure OpenLP - + @@ -4085,67 +4080,67 @@ The content encoding is not UTF-8. Action - + Shortcut - + Duplicate Shortcut - + The shortcut "%s" is already assigned to another action, please use a different shortcut. - + Alternate - + Select an action and click one of the buttons below to start capturing a new primary or alternate shortcut, respectively. - + Default - + Custom - + Capture shortcut. - + Restore the default shortcut of this action. - + Restore Default Shortcuts - + Do you want to restore all shortcuts to their defaults? - + Configure Shortcuts - + @@ -4153,172 +4148,172 @@ The content encoding is not UTF-8. Hide - + Go To - + Blank Screen - + Blank to Theme - + Show Desktop - + Previous Service - + Next Service - + Escape Item - + Move to previous. - + Move to next. - + Play Slides - + Delay between slides in seconds. - + Move to live. - + Add to Service. - + Edit and reload song preview. - + Start playing media. - + Pause audio. - + Pause playing media. - + Stop playing media. - + Video position. - + Audio Volume. - + Go to "Verse" - + Go to "Chorus" - + Go to "Bridge" - + Go to "Pre-Chorus" - + Go to "Intro" - + Go to "Ending" - + Go to "Other" - + Previous Slide - + Next Slide - + Pause Audio - + Background Audio - + Go to next audio track. - + Tracks - + @@ -4326,17 +4321,17 @@ The content encoding is not UTF-8. Spelling Suggestions - + Formatting Tags - + Language: - + @@ -4344,67 +4339,67 @@ The content encoding is not UTF-8. Hours: - + Minutes: - + Seconds: - + Item Start and Finish Time - + Start - + Finish - + Length - + Time Validation Error - + Finish time is set after the end of the media item - + Start time is after the finish time of the media item - + Theme Layout - + The blue box shows the main area. - + The red box shows the footer. - + @@ -4412,32 +4407,32 @@ The content encoding is not UTF-8. Select Image - + Theme Name Missing - + There is no name for this theme. Please enter one. - + Theme Name Invalid - + Invalid theme name. Please enter one. - + (approximately %d lines per slide) - + @@ -4445,193 +4440,193 @@ The content encoding is not UTF-8. Create a new theme. - + Edit Theme - + Edit a theme. - + Delete Theme - + Delete a theme. - + Import Theme - + Import a theme. - + Export Theme - + Export a theme. - + &Edit Theme - + &Delete Theme - + Set As &Global Default - + %s (default) - + You must select a theme to edit. - + You are unable to delete the default theme. - + Theme %s is used in the %s plugin. - + You have not selected a theme. - + Save Theme - (%s) - + Theme Exported - + Your theme has been successfully exported. - + Theme Export Failed - + Your theme could not be exported due to an error. - + Select Theme Import File - + File is not a valid theme. - + &Copy Theme - + &Rename Theme - + &Export Theme - + You must select a theme to rename. - + Rename Confirmation - + Rename %s theme? - + You must select a theme to delete. - + Delete Confirmation - + Delete %s theme? - + Validation Error - + A theme with this name already exists. - + OpenLP Themes (*.theme *.otz) - + Copy of %s Copy of <theme name> - + Theme Already Exists - + @@ -4639,272 +4634,272 @@ The content encoding is not UTF-8. Theme Wizard - + Welcome to the Theme Wizard - + Set Up Background - + Set up your theme's background according to the parameters below. - + Background type: - + Solid Color - + Gradient - + Color: - + Gradient: - + Horizontal - + Vertical - + Circular - + Top Left - Bottom Right - + Bottom Left - Top Right - + Main Area Font Details - + Define the font and display characteristics for the Display text - + Font: - + Size: - + Line Spacing: - + &Outline: - + &Shadow: - + Bold - + Italic - + Footer Area Font Details - + Define the font and display characteristics for the Footer text - + Text Formatting Details - + Allows additional display formatting information to be defined - + Horizontal Align: - + Left - + Right - + Center - + Output Area Locations - + Allows you to change and move the main and footer areas. - + &Main Area - + &Use default location - + X position: - + px - + Y position: - + Width: - + Height: - + Use default location - + Theme name: - + Edit Theme - %s - + This wizard will help you to create and edit your themes. Click the next button below to start the process by setting up your background. - + Transitions: - + &Footer Area - + Starting color: - + Ending color: - + Background color: - Tło czcionki: + Justify - + Layout Preview - + Transparent - + Preview and Save - + Preview the theme and save it. - + @@ -4912,47 +4907,47 @@ The content encoding is not UTF-8. Global Theme - + Theme Level - + S&ong Level - + Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. - + &Service Level - + Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. - + &Global Level - + Use the global theme, overriding any themes associated with either the service or the songs. - + Themes - + @@ -4960,592 +4955,592 @@ The content encoding is not UTF-8. Error - + About - + &Add - + Advanced - + All Files - + Bottom - + Browse... - + Cancel - + CCLI number: - + Create a new service. - + &Delete - + &Edit - + Empty Field - + Export - + pt Abbreviated font pointsize unit - + Image - + Import - + Live - + Live Background Error - + Load - + Middle - + New - + New Service - + New Theme - + No File Selected Singular - + No Files Selected Plural - + No Item Selected Singular - + No Items Selected Plural - + openlp.org 1.x - + OpenLP 2.0 - + Preview - + Replace Background - + Reset Background - + s The abbreviated unit for seconds - + Save && Preview - + Search - + You must select an item to delete. - + You must select an item to edit. - + Save Service - + Service - + Start %s - + Theme Singular - + Themes Plural - + Top - + Version - + Delete the selected item. - + Move selection up one position. - + Move selection down one position. - + &Vertical Align: - + Finished import. - + Format: - + Importing - + Importing "%s"... - + Select Import Source - + Select the import format and the location to import from. - + The openlp.org 1.x importer has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "python-sqlite" module. - + Open %s File - + %p% - + Ready. - + Starting import... - + You need to specify at least one %s file to import from. A file type e.g. OpenSong - + Welcome to the Bible Import Wizard - + Welcome to the Song Export Wizard - + Welcome to the Song Import Wizard - + Author Singular - + Authors Plural - + - © + © Copyright symbol. - + Song Book Singular - + Song Books Plural - + Song Maintenance - + Topic Singular - + Topics Plural - + Continuous - + Default - + Display style: - + Duplicate Error - + File - + Help - + h The abbreviated unit for hours - + Layout style: - + Live Toolbar - + m The abbreviated unit for minutes - + OpenLP is already running. Do you wish to continue? - + Settings - + Tools - + Unsupported File - + Verse Per Slide - + Verse Per Line - + View - + Title and/or verses not found - + XML syntax error - + View Mode - + Open service. - + Print Service - + Replace live background. - + Reset live background. - + Split a slide into two only if it does not fit on the screen as one slide. - + Welcome to the Bible Upgrade Wizard - + Confirm Delete - + Play Slides in Loop - + Play Slides to End - + Stop Play Slides in Loop - + Stop Play Slides to End - + Next Track - + Search Themes... Search bar place holder text - + Optional &Split - + Invalid Folder Selected Singular - + Invalid File Selected Singular - + Invalid Files Selected Plural - + No Folder Selected Singular - + Open %s Folder - + You need to specify one %s file to import from. A file type e.g. OpenSong - + You need to specify one %s folder to import from. A song format e.g. PowerSong - + @@ -5554,25 +5549,25 @@ The content encoding is not UTF-8. %1 and %2 Locale list separator: 2 items - + %1, and %2 Locale list separator: end - + %1, %2 Locale list separator: middle - + %1, %2 Locale list separator: start - + @@ -5580,50 +5575,50 @@ The content encoding is not UTF-8. <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. - + Presentation name singular - + Presentations name plural - + Presentations container title - + Load a new presentation. - + Delete the selected presentation. - + Preview the selected presentation. - + Send the selected presentation live. - + Add the selected presentation to the service. - + @@ -5631,52 +5626,52 @@ The content encoding is not UTF-8. Select Presentation(s) - + Automatic - + Present using: - + File Exists - + A presentation with that filename already exists. - + This type of presentation is not supported. - + Presentations (%s) - + Missing Presentation - + The presentation %s is incomplete, please reload. - + The presentation %s no longer exists. - + @@ -5684,17 +5679,17 @@ The content encoding is not UTF-8. Available Controllers - + %s (unavailable) - + Allow presentation application to be overridden - + @@ -5702,25 +5697,25 @@ The content encoding is not UTF-8. <strong>Remote Plugin</strong><br />The remote plugin provides the ability to send messages to a running version of OpenLP on a different computer via a web browser or through the remote API. - + Remote name singular - + Remotes name plural - + Remote container title - + @@ -5728,107 +5723,107 @@ The content encoding is not UTF-8. OpenLP 2.0 Remote - + OpenLP 2.0 Stage View - + Service Manager - + Slide Controller - + Alerts - + Search - + Refresh - + Blank - + Show - + Prev - + Next - + Text - + Show Alert - + Go Live - + No Results - + Options - + Add to Service - + Home - + Theme - + Desktop - + Add &amp; Go to Service - + @@ -5836,42 +5831,42 @@ The content encoding is not UTF-8. Serve on IP address: - + Port number: - + Server Settings - + Remote URL: - + Stage view URL: - + Display stage time in 12h format - + Android App - + Scan the QR code or click <a href="https://market.android.com/details?id=org.openlp.android">download</a> to install the Android app from the Market. - + @@ -5879,85 +5874,85 @@ The content encoding is not UTF-8. &Song Usage Tracking - + &Delete Tracking Data - + Delete song usage data up to a specified date. - + &Extract Tracking Data - + Generate a report on song usage. - + Toggle Tracking - + Toggle the tracking of song usage. - + <strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services. - + SongUsage name singular - + SongUsage name plural - + SongUsage container title - + Song Usage - + Song usage tracking is active. - + Song usage tracking is inactive. - + display - + printed - + @@ -5965,32 +5960,32 @@ The content encoding is not UTF-8. Delete Song Usage Data - + Delete Selected Song Usage Events? - + Are you sure you want to delete selected Song Usage data? - + Deletion Successful - + All requested data has been deleted successfully. - + Select the date up to which the song usage data should be deleted. All data recorded before this date will be permanently deleted. - + @@ -5998,54 +5993,54 @@ The content encoding is not UTF-8. Song Usage Extraction - + Select Date Range - + to - + Report Location - + Output File Location - + usage_detail_%s_%s.txt - + Report Creation - + Report %s has been successfully created. - + Output Path Not Selected - + You have not set a valid output location for your song usage report. Please select an existing path on your computer. - + @@ -6053,173 +6048,173 @@ has been successfully created. &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... - + Arabic (CP-1256) - + Baltic (CP-1257) - + Central European (CP-1250) - + Cyrillic (CP-1251) - + Greek (CP-1253) - + Hebrew (CP-1255) - + Japanese (CP-932) - + Korean (CP-949) - + Simplified Chinese (CP-936) - + Thai (CP-874) - + Traditional Chinese (CP-950) - + Turkish (CP-1254) - + Vietnam (CP-1258) - + Western European (CP-1252) - + Character Encoding - + The codepage setting is responsible for the correct character representation. Usually you are fine with the preselected choice. - + Please choose the character encoding. The encoding is responsible for the correct character representation. - + Song name singular - + Songs name plural - + Songs container title - + Exports songs using the export wizard. - + 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. - + @@ -6227,37 +6222,37 @@ The encoding is responsible for the correct character representation. Author Maintenance - + Display name: - + First name: - + Last name: - + You need to type in the first name of the author. - + You need to type in the last name of the author. - + You have not set a display name for the author, combine the first and last names? - + @@ -6265,7 +6260,7 @@ The encoding is responsible for the correct character representation. The file does not have a valid extension. - + @@ -6273,14 +6268,14 @@ The encoding is responsible for the correct character representation. Administered by %s - + [above are Song Tags with notes imported from EasyWorship] - + @@ -6288,12 +6283,12 @@ The encoding is responsible for the correct character representation. Meta Data - + Custom Book Names - + @@ -6301,207 +6296,207 @@ The encoding is responsible for the correct character representation. Song Editor - + &Title: - + Alt&ernate title: - + &Lyrics: - + &Verse order: - + Ed&it All - + Title && Lyrics - + &Add to Song - + &Remove - + &Manage Authors, Topics, Song Books - + A&dd to Song - + R&emove - + Book: - + Number: - + Authors, Topics && Song Book - + New &Theme - + Copyright Information - + Comments - + Theme, Copyright Info && Comments - + Add Author - + This author does not exist, do you want to add them? - + This author is already in the list. - + You have not selected a valid author. Either select an author from the list, or type in a new author and click the "Add Author to Song" button to add the new author. - + Add Topic - + This topic does not exist, do you want to add it? - + This topic is already in the list. - + You have not selected a valid topic. Either select a topic from the list, or type in a new topic and click the "Add Topic to Song" button to add the new topic. - + You need to type in a song title. - + You need to type in at least one verse. - + The verse order is invalid. There is no verse corresponding to %s. Valid entries are %s. - + Add Book - + This song book does not exist, do you want to add it? - + You need to have an author for this song. - + You need to type some text in to the verse. - + Linked Audio - + Add &File(s) - + Add &Media - + Remove &All - + Open File(s) - + <strong>Warning:</strong> Not all of the verses are in use. - + The verse order is invalid. There are no verses corresponding to %s. Valid entries are %s. - + @@ -6509,22 +6504,22 @@ The encoding is responsible for the correct character representation. Edit Verse - + &Verse type: - + &Insert - + Split a slide into two by inserting a verse splitter. - + @@ -6532,82 +6527,82 @@ The encoding is responsible for the correct character representation. Song Export Wizard - + Select Songs - + Check the songs you want to export. - + Uncheck All - + Check All - + Select Directory - + Directory: - + Exporting - + Please wait while your songs are exported. - + You need to add at least one Song to export. - + No Save Location specified - + Starting export... - + You need to specify a directory. - + Select Destination Folder - + Select the directory where you want the songs to be saved. - + This wizard will help to export your songs to the open and free <strong>OpenLyrics</strong> worship song format. - + @@ -6615,172 +6610,172 @@ The encoding is responsible for the correct character representation. Select Document/Presentation Files - + Song Import Wizard - + This wizard will help you to import songs from a variety of formats. Click the next button below to start the process by selecting a format to import from. - + Generic Document/Presentation - + Add Files... - + Remove File(s) - + Please wait while your songs are imported. - + OpenLP 2.0 Databases - + openlp.org v1.x Databases - + Words Of Worship Song Files - + Songs Of Fellowship Song Files - + SongBeamer Files - + SongShow Plus Song Files - + Foilpresenter Song Files - + Copy - + Save to File - + The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. - + The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. - + OpenLyrics or OpenLP 2.0 Exported Song - + OpenLyrics Files - + CCLI SongSelect Files - + EasySlides XML File - + EasyWorship Song Database - + DreamBeam Song Files - + You need to specify a valid PowerSong 1.0 database folder. - + ZionWorx (CSV) - + First convert your ZionWorx database to a CSV text file, as explained in the <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">User Manual</a>. - + SundayPlus Song Files - + This importer has been disabled. - + MediaShout Database - + The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. - + SongPro Text Files - + SongPro (Export File) - + In SongPro, export your songs using the File -> Export menu - + @@ -6788,12 +6783,12 @@ The encoding is responsible for the correct character representation. Select Media File(s) - + Select one or more audio files from the list below, and click OK to import them into this song. - + @@ -6801,67 +6796,63 @@ The encoding is responsible for the correct character representation. Titles - + Lyrics - + CCLI License: - + Entire Song - + Are you sure you want to delete the %n selected song(s)? - - - - - + Maintain the lists of authors, topics and books. - + copy For song cloning - + Search Titles... - + Search Entire Song... - + Search Lyrics... - + Search Authors... - + Search Song Books... - + @@ -6869,7 +6860,7 @@ The encoding is responsible for the correct character representation. Unable to open the MediaShout database. - + @@ -6877,7 +6868,7 @@ The encoding is responsible for the correct character representation. Not a valid openlp.org 1.x song database. - + @@ -6885,7 +6876,7 @@ The encoding is responsible for the correct character representation. Not a valid OpenLP 2.0 song database. - + @@ -6893,7 +6884,7 @@ The encoding is responsible for the correct character representation. Exporting "%s"... - + @@ -6901,12 +6892,12 @@ The encoding is responsible for the correct character representation. No songs to import. - + Verses not found. Missing "PART" header. - + @@ -6914,22 +6905,22 @@ The encoding is responsible for the correct character representation. Song Book Maintenance - + &Name: - + &Publisher: - + You need to type in a name for the book. - + @@ -6937,12 +6928,12 @@ The encoding is responsible for the correct character representation. Your song export failed. - + Finished export. To import these files use the <strong>OpenLyrics</strong> importer. - + @@ -6950,27 +6941,27 @@ The encoding is responsible for the correct character representation. copyright - + The following songs could not be imported: - + Cannot access OpenOffice or LibreOffice - + Unable to open file - + File not found - + @@ -6978,107 +6969,107 @@ The encoding is responsible for the correct character representation. Could not add your author. - + This author already exists. - + Could not add your topic. - + This topic already exists. - + Could not add your book. - + This book already exists. - + Could not save your changes. - + Could not save your modified author, because the author already exists. - + Could not save your modified topic, because it already exists. - + Delete Author - + Are you sure you want to delete the selected author? - + This author cannot be deleted, they are currently assigned to at least one song. - + Delete Topic - + Are you sure you want to delete the selected topic? - + This topic cannot be deleted, it is currently assigned to at least one song. - + Delete Book - + Are you sure you want to delete the selected book? - + This book cannot be deleted, it is currently assigned to at least one song. - + The author %s already exists. Would you like to make songs with author %s use the existing author %s? - + The topic %s already exists. Would you like to make songs with topic %s use the existing topic %s? - + The book %s already exists. Would you like to make songs with book %s use the existing book %s? - + @@ -7086,27 +7077,27 @@ The encoding is responsible for the correct character representation. Songs Mode - + Enable search as you type - + Display verses on live tool bar - + Update service from song edit - + Import missing songs from service files - + @@ -7114,17 +7105,17 @@ The encoding is responsible for the correct character representation. Topic Maintenance - + Topic name: - + You need to type in a topic name. - + @@ -7132,37 +7123,37 @@ The encoding is responsible for the correct character representation. Verse - + Chorus - + Bridge - + Pre-Chorus - + Intro - + Ending - + Other - + @@ -7170,12 +7161,12 @@ The encoding is responsible for the correct character representation. Error reading CSV file. - + File not valid ZionWorx CSV format. - + - + \ No newline at end of file diff --git a/resources/i18n/pt_BR.ts b/resources/i18n/pt_BR.ts index 72c7f0262..bda8a10d7 100644 --- a/resources/i18n/pt_BR.ts +++ b/resources/i18n/pt_BR.ts @@ -1,5 +1,4 @@ - - + AlertsPlugin @@ -102,7 +101,7 @@ Deseja continuar mesmo assim? - The alert text does not contain '<>'. + The alert text does not contain '<>'. Do you want to continue anyway? O texto de alerta não contém '<>'. Deseja continuar mesmo assim? @@ -1708,10 +1707,7 @@ Observe, que versículos das Bíblias Internet serão transferidos sob demanda e Are you sure you want to delete the %n selected custom slide(s)? - - Tem certeza que deseja excluir o %n slide personalizado selecionado? - Tem certeza que deseja excluir os %n slides personalizados selecionados? - + Tem certeza que deseja excluir o %n slide personalizado selecionado?Tem certeza que deseja excluir os %n slides personalizados selecionados? @@ -2076,7 +2072,7 @@ Translators %s Japanese (ja) %s - Norwegian Bokmål (nb) + Norwegian Bokmål (nb) %s Dutch (nl) %s @@ -2186,8 +2182,8 @@ O OpenLP é escrito e mantido por voluntários. Se você gostaria de ver mais so - Copyright © 2004-2012 %s -Portions copyright © 2004-2012 %s + Copyright © 2004-2012 %s +Portions copyright © 2004-2012 %s Copyright © 2004-2012 %s Porções copyright © 2004-2012 %s @@ -5453,7 +5449,7 @@ A codificação do conteúdo não é UTF-8. - © + © Copyright symbol. © @@ -6981,10 +6977,7 @@ EasyWorship] Are you sure you want to delete the %n selected song(s)? - - Tem certeza de que deseja excluir a(s) %n música(s) selecionada(s)? - Tem certeza de que deseja excluir a(s) %n música(s) selecionada(s)? - + Tem certeza de que deseja excluir a(s) %n música(s) selecionada(s)?Tem certeza de que deseja excluir a(s) %n música(s) selecionada(s)? @@ -7337,4 +7330,4 @@ EasyWorship] O arquivo não é um arquivo CSV válido do ZionWorx. - + \ No newline at end of file diff --git a/resources/i18n/ru.ts b/resources/i18n/ru.ts index 11a628dec..9db3ffbf0 100644 --- a/resources/i18n/ru.ts +++ b/resources/i18n/ru.ts @@ -1,5 +1,4 @@ - - + AlertsPlugin @@ -86,22 +85,22 @@ No Parameter Found - + You have not entered a parameter to be replaced. Do you want to continue anyway? - + No Placeholder Found - + - The alert text does not contain '<>'. + The alert text does not contain '<>'. Do you want to continue anyway? Текст оповещения не содержит '<>'. Все равно продолжить? @@ -236,428 +235,428 @@ Do you want to continue anyway? Genesis - + Exodus - + Leviticus - + Numbers - + Deuteronomy - + Joshua - + Judges - + Ruth - + 1 Samuel - + 2 Samuel - + 1 Kings - + 2 Kings - + 1 Chronicles - + 2 Chronicles - + Ezra - + Nehemiah - + Esther - + Job - + Psalms - + Proverbs - + Ecclesiastes - + Song of Solomon - + Isaiah - + Jeremiah - + Lamentations - + Ezekiel - + Daniel - + Hosea - + Joel - + Amos - + Obadiah - + Jonah - + Micah - + Nahum - + Habakkuk - + Zephaniah - + Haggai - + Zechariah - + Malachi - + Matthew - + Mark - + Luke - + John - + Acts - + Romans - + 1 Corinthians - + 2 Corinthians - + Galatians - + Ephesians - + Philippians - + Colossians - + 1 Thessalonians - + 2 Thessalonians - + 1 Timothy - + 2 Timothy - + Titus - + Philemon - + Hebrews - + James - + 1 Peter - + 2 Peter - + 1 John - + 2 John - + 3 John - + Jude - + Revelation - + Judith - + Wisdom - + Tobit - + Sirach - + Baruch - + 1 Maccabees - + 2 Maccabees - + 3 Maccabees - + 4 Maccabees - + Rest of Daniel - + Rest of Esther - + Prayer of Manasses - + Letter of Jeremiah - + Prayer of Azariah - + Susanna - + Bel - + 1 Esdras - + 2 Esdras - + :|v|V|verse|verses;;-|to;;,|and;;end Double-semicolon delimited separators for parsing references. Consult the developers for further information. - + @@ -665,44 +664,44 @@ Do you want to continue anyway? You need to specify a version name for your Bible. - Вам необходимо указать название перевода Библии. + You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. - Вам необходимо указать авторские права Библии. Переводы Библии находящиеся в свободном доступе должны быть помечены как таковые. + Bible Exists - Библия существует + This Bible already exists. Please import a different Bible or first delete the existing one. - Библия уже существует. Выполните импорт другой Библии или удалите существующую. + You need to specify a book name for "%s". - + The book name "%s" is not correct. Numbers can only be used at the beginning and must be followed by one or more non-numeric characters. - + Duplicate Book Name - + The Book Name "%s" has been entered more than once. - + @@ -750,7 +749,7 @@ Book Chapter%(verse)sVerse%(range)sVerse%(list)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sVerse%(list)sChapter%(verse)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sChapter%(verse)sVerse Please pay attention to the appended "s" of the wildcards and refrain from translating the words inside the names in the brackets. - + @@ -805,81 +804,81 @@ Changes do not affect verses already in the service. Custom Scripture References - + Verse Separator: - + Range Separator: - + List Separator: - + End Mark: - + Multiple alternative verse separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. - + Multiple alternative range separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. - + Multiple alternative list separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. - + Multiple alternative end marks may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. - + English - Русский + Default Bible Language - + Book name language in search field, search results and on display: - + Bible Language - + Application Language - + @@ -922,7 +921,7 @@ search results and on display: The following book name cannot be matched up internally. Please select the corresponding name from the list. - + @@ -938,18 +937,18 @@ search results and on display: Importing books... %s - + Importing verses from %s... Importing verses from <book name>... - + Importing verses... done. - + @@ -957,68 +956,68 @@ search results and on display: Bible Editor - + License Details - Детали лицензии + Version name: - Название версии: + Copyright: - Авторские права: + Permissions: - Разрешения: + Default Bible Language - + Book name language in search field, search results and on display: - + Global Settings - + Bible Language - + Application Language - + English - Русский + This is a Web Download Bible. It is not possible to customize the Book Names. - + To use the customized book names, "Bible language" must be selected on the Meta Data tab or, if "Global settings" is selected, on the Bible page in Configure OpenLP. - + @@ -1042,7 +1041,7 @@ It is not possible to customize the Book Names. Download Error - + @@ -1057,7 +1056,7 @@ It is not possible to customize the Book Names. There was a problem extracting your verse selection. If this error continues to occur please consider reporting a bug. - + @@ -1080,7 +1079,7 @@ It is not possible to customize the Book Names. Location: - + @@ -1316,12 +1315,12 @@ demand and thus an internet connection is required. You cannot combine single and dual Bible verse search results. Do you want to delete your search results and start a new search? - + Bible not fully loaded. - + @@ -1336,19 +1335,19 @@ demand and thus an internet connection is required. Search Scripture Reference... - + Search Text... - + Are you sure you want to completely delete "%s" Bible from OpenLP? You will need to re-import this Bible to use it again. - + @@ -1356,7 +1355,7 @@ You will need to re-import this Bible to use it again. Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. - + @@ -1473,7 +1472,7 @@ Upgrading ... Download Error - + @@ -1549,7 +1548,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I Custom Slides name plural - + @@ -1608,7 +1607,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I Display footer - + @@ -1666,7 +1665,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I Ed&it All - Редактировать &все + @@ -1679,7 +1678,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I Edit Slide - + @@ -1687,11 +1686,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I Are you sure you want to delete the %n selected custom slide(s)? - - - - - + @@ -1813,17 +1808,17 @@ Do you want to add the other images anyway? Background Color - + Default Color: - + Visible background for images with aspect ratio different to screen. - + @@ -1932,17 +1927,17 @@ Do you want to add the other images anyway? Unsupported File - + Automatic - + Use Player: - + @@ -1950,22 +1945,22 @@ Do you want to add the other images anyway? Available Media Players - + %s (unavailable) - + Player Order - + Allow media player to be overridden - + @@ -2056,7 +2051,7 @@ Translators %s Japanese (ja) %s - Norwegian Bokmål (nb) + Norwegian Bokmål (nb) %s Dutch (nl) %s @@ -2166,9 +2161,9 @@ OpenLP написано и поддерживается добровольцам - Copyright © 2004-2012 %s -Portions copyright © 2004-2012 %s - + Copyright © 2004-2012 %s +Portions copyright © 2004-2012 %s + @@ -2221,7 +2216,7 @@ Portions copyright © 2004-2012 %s Background color: - Цвет фона: + @@ -2263,184 +2258,184 @@ Portions copyright © 2004-2012 %s Service %Y-%m-%d %H-%M This may not contain any of the following characters: /\?*|<>[]":+ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for more information. - + Default Service Name - + Enable default service name - + Date and Time: - + Monday - + Tuesday - + Wednesday - + Thurdsday - + Friday - + Saturday - + Sunday - + Now - + Time when usual service starts. - + Name: - + Consult the OpenLP manual for usage. - + Revert to the default service name "%s". - + Example: - + X11 - + Bypass X11 Window Manager - + Syntax error. - + Data Location - + Current path: - + Custom path: - + Browse for new data file location. - + Set the data location to the default. - + Cancel - Отмена + Cancel OpenLP data directory location change. - + Copy data to new location. - + Copy the OpenLP data files to the new location. - + <strong>WARNING:</strong> New data directory location contains OpenLP data files. These files WILL be replaced during a copy. - + Data Directory Error - + Select Data Directory Location - + Confirm Data Directory Change - + Reset Data Directory - + Are you sure you want to change the location of the OpenLP data directory to the default location? This location will be used after OpenLP is closed. - + Overwrite Existing Data - + @@ -2581,7 +2576,7 @@ Version: %s File Copy - + @@ -2632,12 +2627,12 @@ Version: %s Bible - Библия + Images - Изображения + @@ -2787,21 +2782,21 @@ Version: %s Finish - Конец + No Internet connection was found. The First Time Wizard needs an Internet connection in order to be able to download sample songs, Bibles and themes. Click the Finish button now to start OpenLP with initial settings and no sample data. To re-run the First Time Wizard and import this sample data at a later time, check your Internet connection and re-run this wizard by selecting "Tools/Re-run First Time Wizard" from OpenLP. - + To cancel the First Time Wizard completely (and not start OpenLP), click the Cancel button now. - + @@ -2814,32 +2809,32 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can Edit Selection - + Save - + Description - + Tag - + Start HTML - + End HTML - + @@ -2847,17 +2842,17 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can Update Error - + Tag "n" already defined. - + New Tag - + @@ -2867,12 +2862,12 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can </and here> - + Tag %s already defined. - + @@ -2880,82 +2875,82 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can Red - + Black - + Blue - + Yellow - + Green - + Pink - + Orange - + Purple - + White - + Superscript - + Subscript - + Paragraph - + Bold - + Italics - + Underline - + Break - + @@ -2988,7 +2983,7 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can Show blank screen warning - + @@ -3043,7 +3038,7 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can Y - + @@ -3073,47 +3068,47 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can Background Audio - + Start background audio paused - + Service Item Slide Limits - + Override display position: - + Repeat track list - + Behavior of next/previous on the last/first slide: - + &Remain on Slide - + &Wrap around - + &Move to next/previous service item - + @@ -3287,7 +3282,7 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can Toggle the visibility of the theme manager. - + @@ -3446,7 +3441,7 @@ You can download the latest version from http://openlp.org/. Default Theme: %s - + @@ -3552,27 +3547,27 @@ Re-running this wizard may make changes to your current OpenLP configuration and Configure &Formatting Tags... - + Export OpenLP settings to a specified *.config file - + Settings - Настройки + Import OpenLP settings from a specified *.config file previously exported on this or another machine - + Import settings? - + @@ -3581,42 +3576,42 @@ Re-running this wizard may make changes to your current OpenLP configuration and Importing settings will make permanent changes to your current OpenLP configuration. Importing incorrect settings may cause erratic behaviour or OpenLP to terminate abnormally. - + Open File - Открыть файл + OpenLP Export Settings Files (*.conf) - + Import settings - + OpenLP will now close. Imported settings will be applied the next time you start OpenLP. - + Export Settings File - + OpenLP Export Settings File (*.conf) - + New Data Directory Error - + @@ -3624,21 +3619,21 @@ Importing incorrect settings may cause erratic behaviour or OpenLP to terminate Database Error - + The database being loaded was created in a more recent version of OpenLP. The database is version %d, while OpenLP expects version %d. The database will not be loaded. Database: %s - + OpenLP cannot load your database. Database: %s - + @@ -3646,7 +3641,7 @@ Database: %s No Items Selected - Объекты не выбраны + @@ -3713,7 +3708,7 @@ Suffix not supported Duplicate files were found on import and were ignored. - + @@ -3721,12 +3716,12 @@ Suffix not supported <lyrics> tag is missing. - + <verse> tag is missing. - + @@ -3782,7 +3777,7 @@ Suffix not supported Fit Width - + @@ -3912,7 +3907,7 @@ Suffix not supported Move &up - + @@ -3922,7 +3917,7 @@ Suffix not supported Move &down - + @@ -4034,7 +4029,7 @@ The content encoding is not UTF-8. Open File - Открыть файл + @@ -4159,22 +4154,22 @@ The content encoding is not UTF-8. Edit - + Service copy only - + Error Saving File - + There was an error saving your file. - + @@ -4301,7 +4296,7 @@ The content encoding is not UTF-8. Escape Item - + @@ -4346,92 +4341,92 @@ The content encoding is not UTF-8. Pause audio. - + Pause playing media. - + Stop playing media. - + Video position. - + Audio Volume. - + Go to "Verse" - + Go to "Chorus" - + Go to "Bridge" - + Go to "Pre-Chorus" - + Go to "Intro" - + Go to "Ending" - + Go to "Other" - + Previous Slide - + Next Slide - + Pause Audio - + Background Audio - + Go to next audio track. - + Tracks - + @@ -4449,7 +4444,7 @@ The content encoding is not UTF-8. Language: - Язык: + @@ -4507,17 +4502,17 @@ The content encoding is not UTF-8. Theme Layout - + The blue box shows the main area. - + The red box shows the footer. - + @@ -4550,7 +4545,7 @@ The content encoding is not UTF-8. (approximately %d lines per slide) - + @@ -4603,7 +4598,7 @@ The content encoding is not UTF-8. &Edit Theme - + @@ -4733,7 +4728,7 @@ The content encoding is not UTF-8. OpenLP Themes (*.theme *.otz) - + @@ -4744,7 +4739,7 @@ The content encoding is not UTF-8. Theme Already Exists - + @@ -4857,7 +4852,7 @@ The content encoding is not UTF-8. Bold - + @@ -4992,32 +4987,32 @@ The content encoding is not UTF-8. Background color: - Цвет фона: + Justify - + Layout Preview - + Transparent - + Preview and Save - + Preview the theme and save it. - + @@ -5045,7 +5040,7 @@ The content encoding is not UTF-8. &Service Level - + @@ -5065,7 +5060,7 @@ The content encoding is not UTF-8. Themes - Темы + @@ -5413,7 +5408,7 @@ The content encoding is not UTF-8. - © + © Copyright symbol. © @@ -5438,7 +5433,7 @@ The content encoding is not UTF-8. Topic Singular - + @@ -5516,7 +5511,7 @@ The content encoding is not UTF-8. Unsupported File - + @@ -5591,74 +5586,74 @@ The content encoding is not UTF-8. Play Slides to End - + Stop Play Slides in Loop - + Stop Play Slides to End - + Next Track - + Search Themes... Search bar place holder text - + Optional &Split - + Invalid Folder Selected Singular - + Invalid File Selected Singular - + Invalid Files Selected Plural - + No Folder Selected Singular - + Open %s Folder - + You need to specify one %s file to import from. A file type e.g. OpenSong - + You need to specify one %s folder to import from. A song format e.g. PowerSong - + @@ -5667,25 +5662,25 @@ The content encoding is not UTF-8. %1 and %2 Locale list separator: 2 items - + %1, and %2 Locale list separator: end - + %1, %2 Locale list separator: middle - + %1, %2 Locale list separator: start - + @@ -5693,50 +5688,50 @@ The content encoding is not UTF-8. <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. - + Presentation name singular - + Presentations name plural - Презентации + Presentations container title - Презентации + Load a new presentation. - + Delete the selected presentation. - + Preview the selected presentation. - + Send the selected presentation live. - + Add the selected presentation to the service. - + @@ -5744,52 +5739,52 @@ The content encoding is not UTF-8. Select Presentation(s) - + Automatic - + Present using: - + File Exists - + A presentation with that filename already exists. - + This type of presentation is not supported. - + Presentations (%s) - + Missing Presentation - + The presentation %s is incomplete, please reload. - + The presentation %s no longer exists. - + @@ -5797,17 +5792,17 @@ The content encoding is not UTF-8. Available Controllers - + %s (unavailable) - + Allow presentation application to be overridden - + @@ -5815,25 +5810,25 @@ The content encoding is not UTF-8. <strong>Remote Plugin</strong><br />The remote plugin provides the ability to send messages to a running version of OpenLP on a different computer via a web browser or through the remote API. - + Remote name singular - + Remotes name plural - + Remote container title - + @@ -5841,107 +5836,107 @@ The content encoding is not UTF-8. OpenLP 2.0 Remote - + OpenLP 2.0 Stage View - + Service Manager - Менеджер служения + Slide Controller - + Alerts - Оповещения + Search - Поиск + Refresh - + Blank - + Show - + Prev - + Next - + Text - + Show Alert - + Go Live - Показать + No Results - + Options - Опции + Add to Service - + Home - + Theme - Тема + Desktop - + Add &amp; Go to Service - + @@ -5949,42 +5944,42 @@ The content encoding is not UTF-8. Serve on IP address: - + Port number: - + Server Settings - + Remote URL: - + Stage view URL: - + Display stage time in 12h format - + Android App - + Scan the QR code or click <a href="https://market.android.com/details?id=org.openlp.android">download</a> to install the Android app from the Market. - + @@ -6017,12 +6012,12 @@ The content encoding is not UTF-8. Toggle Tracking - + Toggle the tracking of song usage. - + @@ -6050,27 +6045,27 @@ The content encoding is not UTF-8. Song Usage - + Song usage tracking is active. - + Song usage tracking is inactive. - + display - + printed - + @@ -6103,7 +6098,7 @@ The content encoding is not UTF-8. Select the date up to which the song usage data should be deleted. All data recorded before this date will be permanently deleted. - + @@ -6111,54 +6106,54 @@ The content encoding is not UTF-8. Song Usage Extraction - + Select Date Range - + to - + Report Location - + Output File Location - + usage_detail_%s_%s.txt - + Report Creation - + Report %s has been successfully created. - + Output Path Not Selected - + You have not set a valid output location for your song usage report. Please select an existing path on your computer. - + @@ -6311,32 +6306,32 @@ The encoding is responsible for the correct character representation. 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. - + @@ -6382,7 +6377,7 @@ The encoding is responsible for the correct character representation. The file does not have a valid extension. - + @@ -6390,14 +6385,14 @@ The encoding is responsible for the correct character representation. Administered by %s - + [above are Song Tags with notes imported from EasyWorship] - + @@ -6405,12 +6400,12 @@ The encoding is responsible for the correct character representation. Meta Data - + Custom Book Names - + @@ -6588,37 +6583,37 @@ The encoding is responsible for the correct character representation. Linked Audio - + Add &File(s) - + Add &Media - + Remove &All - + Open File(s) - + <strong>Warning:</strong> Not all of the verses are in use. - + The verse order is invalid. There are no verses corresponding to %s. Valid entries are %s. - + @@ -6641,7 +6636,7 @@ The encoding is responsible for the correct character representation. Split a slide into two by inserting a verse splitter. - + @@ -6719,12 +6714,12 @@ The encoding is responsible for the correct character representation. Select the directory where you want the songs to be saved. - + This wizard will help to export your songs to the open and free <strong>OpenLyrics</strong> worship song format. - + @@ -6777,7 +6772,7 @@ The encoding is responsible for the correct character representation. Words Of Worship Song Files - + @@ -6802,102 +6797,102 @@ The encoding is responsible for the correct character representation. Copy - Копировать + Save to File - Сохранить в файл + The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. - + The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. - + OpenLyrics or OpenLP 2.0 Exported Song - + OpenLyrics Files - + CCLI SongSelect Files - + EasySlides XML File - + EasyWorship Song Database - + DreamBeam Song Files - + You need to specify a valid PowerSong 1.0 database folder. - + ZionWorx (CSV) - + First convert your ZionWorx database to a CSV text file, as explained in the <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">User Manual</a>. - + SundayPlus Song Files - + This importer has been disabled. - + MediaShout Database - + The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. - + SongPro Text Files - + SongPro (Export File) - + In SongPro, export your songs using the File -> Export menu - + @@ -6905,12 +6900,12 @@ The encoding is responsible for the correct character representation. Select Media File(s) - + Select one or more audio files from the list below, and click OK to import them into this song. - + @@ -6938,47 +6933,43 @@ The encoding is responsible for the correct character representation. Are you sure you want to delete the %n selected song(s)? - - Вы уверены, что хотите удалить %n выбранную песню? - Вы уверены, что хотите удалить %n выбранных песни? - Вы уверены, что хотите удалить %n выбранных песен? - + Вы уверены, что хотите удалить %n выбранную песню?Вы уверены, что хотите удалить %n выбранных песни?Вы уверены, что хотите удалить %n выбранных песен? Maintain the lists of authors, topics and books. - + copy For song cloning - + Search Titles... - + Search Entire Song... - + Search Lyrics... - + Search Authors... - + Search Song Books... - + @@ -6986,7 +6977,7 @@ The encoding is responsible for the correct character representation. Unable to open the MediaShout database. - + @@ -6994,7 +6985,7 @@ The encoding is responsible for the correct character representation. Not a valid openlp.org 1.x song database. - + @@ -7002,7 +6993,7 @@ The encoding is responsible for the correct character representation. Not a valid OpenLP 2.0 song database. - + @@ -7018,12 +7009,12 @@ The encoding is responsible for the correct character representation. No songs to import. - + Verses not found. Missing "PART" header. - + @@ -7054,12 +7045,12 @@ The encoding is responsible for the correct character representation. Your song export failed. - + Finished export. To import these files use the <strong>OpenLyrics</strong> importer. - + @@ -7067,27 +7058,27 @@ The encoding is responsible for the correct character representation. copyright - + The following songs could not be imported: - + Cannot access OpenOffice or LibreOffice - + Unable to open file - + File not found - + @@ -7095,107 +7086,107 @@ The encoding is responsible for the correct character representation. Could not add your author. - + This author already exists. - + Could not add your topic. - + This topic already exists. - + Could not add your book. - + This book already exists. - + Could not save your changes. - + Could not save your modified author, because the author already exists. - + Could not save your modified topic, because it already exists. - + Delete Author - + Are you sure you want to delete the selected author? - + This author cannot be deleted, they are currently assigned to at least one song. - + Delete Topic - + Are you sure you want to delete the selected topic? - + This topic cannot be deleted, it is currently assigned to at least one song. - + Delete Book - + Are you sure you want to delete the selected book? - + This book cannot be deleted, it is currently assigned to at least one song. - + The author %s already exists. Would you like to make songs with author %s use the existing author %s? - + The topic %s already exists. Would you like to make songs with topic %s use the existing topic %s? - + The book %s already exists. Would you like to make songs with book %s use the existing book %s? - + @@ -7203,27 +7194,27 @@ The encoding is responsible for the correct character representation. Songs Mode - + Enable search as you type - + Display verses on live tool bar - + Update service from song edit - + Import missing songs from service files - + @@ -7231,17 +7222,17 @@ The encoding is responsible for the correct character representation. Topic Maintenance - + Topic name: - + You need to type in a topic name. - + @@ -7249,37 +7240,37 @@ The encoding is responsible for the correct character representation. Verse - + Chorus - + Bridge - + Pre-Chorus - + Intro - + Ending - + Other - + @@ -7287,12 +7278,12 @@ The encoding is responsible for the correct character representation. Error reading CSV file. - + File not valid ZionWorx CSV format. - + - + \ No newline at end of file diff --git a/resources/i18n/sk.ts b/resources/i18n/sk.ts index a55e10e9a..cfe88e7eb 100644 --- a/resources/i18n/sk.ts +++ b/resources/i18n/sk.ts @@ -1,5 +1,4 @@ - - + AlertsPlugin @@ -101,7 +100,7 @@ Do you want to continue anyway? - The alert text does not contain '<>'. + The alert text does not contain '<>'. Do you want to continue anyway? Text upozornenia neobsahuje '<>'. Chcete napriek tomu pokračovat? @@ -235,428 +234,428 @@ Do you want to continue anyway? Genesis - + Exodus - + Leviticus - + Numbers - + Deuteronomy - + Joshua - + Judges - + Ruth - + 1 Samuel - + 2 Samuel - + 1 Kings - + 2 Kings - + 1 Chronicles - + 2 Chronicles - + Ezra - + Nehemiah - + Esther - + Job - + Psalms - + Proverbs - + Ecclesiastes - + Song of Solomon - + Isaiah - + Jeremiah - + Lamentations - + Ezekiel - + Daniel - + Hosea - + Joel - + Amos - + Obadiah - + Jonah - + Micah - + Nahum - + Habakkuk - + Zephaniah - + Haggai - + Zechariah - + Malachi - + Matthew - + Mark - + Luke - + John - + Acts - + Romans - + 1 Corinthians - + 2 Corinthians - + Galatians - + Ephesians - + Philippians - + Colossians - + 1 Thessalonians - + 2 Thessalonians - + 1 Timothy - + 2 Timothy - + Titus - + Philemon - + Hebrews - + James - + 1 Peter - + 2 Peter - + 1 John - + 2 John - + 3 John - + Jude - + Revelation - + Judith - + Wisdom - + Tobit - + Sirach - + Baruch - + 1 Maccabees - + 2 Maccabees - + 3 Maccabees - + 4 Maccabees - + Rest of Daniel - + Rest of Esther - + Prayer of Manasses - + Letter of Jeremiah - + Prayer of Azariah - + Susanna - + Bel - + 1 Esdras - + 2 Esdras - + :|v|V|verse|verses;;-|to;;,|and;;end Double-semicolon delimited separators for parsing references. Consult the developers for further information. - + @@ -664,44 +663,44 @@ Do you want to continue anyway? You need to specify a version name for your Bible. - Je potrebné uviesť názov verzie Biblie. + You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. - K Biblii je potrebné nastaviť autorské práva, diela, ktoré sú voľné, je potrebné takto označiť. + Bible Exists - Biblia existuje + This Bible already exists. Please import a different Bible or first delete the existing one. - Táto Biblia už existuje. Importujte prosím inú Bibliu, alebo najprv vymažte existujúcu. + You need to specify a book name for "%s". - + The book name "%s" is not correct. Numbers can only be used at the beginning and must be followed by one or more non-numeric characters. - + Duplicate Book Name - + The Book Name "%s" has been entered more than once. - + @@ -748,7 +747,7 @@ Book Chapter%(verse)sVerse%(range)sVerse%(list)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sVerse%(list)sChapter%(verse)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sChapter%(verse)sVerse Please pay attention to the appended "s" of the wildcards and refrain from translating the words inside the names in the brackets. - + @@ -802,81 +801,81 @@ Changes do not affect verses already in the service. Custom Scripture References - + Verse Separator: - + Range Separator: - + List Separator: - + End Mark: - + Multiple alternative verse separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. - + Multiple alternative range separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. - + Multiple alternative list separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. - + Multiple alternative end marks may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. - + English - + Default Bible Language - + Book name language in search field, search results and on display: - + Bible Language - + Application Language - + @@ -919,7 +918,7 @@ search results and on display: The following book name cannot be matched up internally. Please select the corresponding name from the list. - + @@ -954,68 +953,68 @@ search results and on display: Bible Editor - + License Details - Podrobnosti licencie + Version name: - Názov verzie: + Copyright: - Autorské práva: + Permissions: - Povolenia: + Default Bible Language - + Book name language in search field, search results and on display: - + Global Settings - + Bible Language - + Application Language - + English - + This is a Web Download Bible. It is not possible to customize the Book Names. - + To use the customized book names, "Bible language" must be selected on the Meta Data tab or, if "Global settings" is selected, on the Bible page in Configure OpenLP. - + @@ -1332,19 +1331,19 @@ demand and thus an internet connection is required. Search Scripture Reference... - + Search Text... - + Are you sure you want to completely delete "%s" Bible from OpenLP? You will need to re-import this Bible to use it again. - + @@ -1352,7 +1351,7 @@ You will need to re-import this Bible to use it again. Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. - + @@ -1670,7 +1669,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I Edit Slide - + @@ -1678,11 +1677,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I Are you sure you want to delete the %n selected custom slide(s)? - - - - - + @@ -1814,7 +1809,7 @@ Chcete pridať ďaľšie obrázky? Visible background for images with aspect ratio different to screen. - + @@ -1956,7 +1951,7 @@ Chcete pridať ďaľšie obrázky? Allow media player to be overridden - + @@ -2047,7 +2042,7 @@ Translators %s Japanese (ja) %s - Norwegian Bokmål (nb) + Norwegian Bokmål (nb) %s Dutch (nl) %s @@ -2157,9 +2152,9 @@ OpenLP je napísaný a udržiavaný dobrovoľníkmi. Ak by ste chceli mať viac - Copyright © 2004-2012 %s -Portions copyright © 2004-2012 %s - + Copyright © 2004-2012 %s +Portions copyright © 2004-2012 %s + @@ -2254,179 +2249,179 @@ Portions copyright © 2004-2012 %s Service %Y-%m-%d %H-%M This may not contain any of the following characters: /\?*|<>[]":+ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for more information. - + Default Service Name - + Enable default service name - + Date and Time: - + Monday - + Tuesday - + Wednesday - + Thurdsday - + Friday - + Saturday - + Sunday - + Now - + Time when usual service starts. - + Name: - + Consult the OpenLP manual for usage. - + Revert to the default service name "%s". - + Example: - + X11 - + Bypass X11 Window Manager - + Syntax error. - + Data Location - + Current path: - + Custom path: - + Browse for new data file location. - + Set the data location to the default. - + Cancel - + Cancel OpenLP data directory location change. - + Copy data to new location. - + Copy the OpenLP data files to the new location. - + <strong>WARNING:</strong> New data directory location contains OpenLP data files. These files WILL be replaced during a copy. - + Data Directory Error - + Select Data Directory Location - + Confirm Data Directory Change - + Reset Data Directory - + Are you sure you want to change the location of the OpenLP data directory to the default location? This location will be used after OpenLP is closed. - + @@ -2509,7 +2504,7 @@ Version: %s --- Library Versions --- %s - + @@ -2528,7 +2523,7 @@ Version: %s %s Please add the information that bug reports are favoured written in English. - + @@ -2677,7 +2672,7 @@ Version: %s Select and download free Bibles. - + @@ -2712,61 +2707,61 @@ Version: %s This wizard will help you to configure OpenLP for initial use. Click the next button below to start. - + Setting Up And Downloading - + Please wait while OpenLP is set up and your data is downloaded. - + Setting Up - + Click the finish button to start OpenLP. - + Download complete. Click the finish button to return to OpenLP. - + Click the finish button to return to OpenLP. - + Custom Slides - Vlastné snímky + Finish - + No Internet connection was found. The First Time Wizard needs an Internet connection in order to be able to download sample songs, Bibles and themes. Click the Finish button now to start OpenLP with initial settings and no sample data. To re-run the First Time Wizard and import this sample data at a later time, check your Internet connection and re-run this wizard by selecting "Tools/Re-run First Time Wizard" from OpenLP. - + To cancel the First Time Wizard completely (and not start OpenLP), click the Cancel button now. - + @@ -2774,37 +2769,37 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can Configure Formatting Tags - + Edit Selection - + Save - + Description - + Tag - + Start HTML - + End HTML - + @@ -2812,32 +2807,32 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can Update Error - + Tag "n" already defined. - + New Tag - + <HTML here> - + </and here> - + Tag %s already defined. - + @@ -2845,82 +2840,82 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can Red - + Black - + Blue - + Yellow - + Green - + Pink - + Orange - + Purple - + White - + Superscript - + Subscript - + Paragraph - + Bold - + Italics - + Underline - + Break - + @@ -2928,157 +2923,157 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can General - + Monitors - + Select monitor for output display: - + Display if a single screen - + Application Startup - + Show blank screen warning - + Automatically open the last service - + Show the splash screen - + Application Settings - + Prompt to save before starting a new service - + Automatically preview next item in service - + sec - + CCLI Details - + SongSelect username: - + SongSelect password: - + X - + Y - + Height - + Width - + Check for updates to OpenLP - + Unblank display when adding new live item - + Timed slide interval: - + Background Audio - + Start background audio paused - + Service Item Slide Limits - + Override display position: - + Repeat track list - + Behavior of next/previous on the last/first slide: - + &Remain on Slide - + &Wrap around - + &Move to next/previous service item - + @@ -3086,12 +3081,12 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can Language - + Please restart OpenLP to use your new language setting. - + @@ -3099,7 +3094,7 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can OpenLP Display - + @@ -3107,433 +3102,433 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can &File - + &Import - + &Export - + &View - + M&ode - + &Tools - + &Settings - + &Language - + &Help - + Media Manager - + Service Manager - + Theme Manager - + &New - &Nový + &Open - + Open an existing service. - + &Save - &Uložiť + Save the current service to disk. - + Save &As... - + Save Service As - + Save the current service under a new name. - + E&xit - + Quit OpenLP - + &Theme - + &Configure OpenLP... - + &Media Manager - + Toggle Media Manager - + Toggle the visibility of the media manager. - + &Theme Manager - + Toggle Theme Manager - + Toggle the visibility of the theme manager. - + &Service Manager - + Toggle Service Manager - + Toggle the visibility of the service manager. - + &Preview Panel - + Toggle Preview Panel - + Toggle the visibility of the preview panel. - + &Live Panel - + Toggle Live Panel - + Toggle the visibility of the live panel. - + &Plugin List - + List the Plugins - + &User Guide - + &About - + More information about OpenLP - + &Online Help - + &Web Site - + Use the system language, if available. - + Set the interface language to %s - + Add &Tool... - + Add an application to the list of tools. - + &Default - + Set the view mode back to the default. - + &Setup - + Set the view mode to Setup. - + &Live - + Set the view mode to Live. - + Version %s of OpenLP is now available for download (you are currently running version %s). You can download the latest version from http://openlp.org/. - + OpenLP Version Updated - + OpenLP Main Display Blanked - + The Main Display has been blanked out - + Default Theme: %s - + English Please add the name of your language here - + Slovak Configure &Shortcuts... - + Close OpenLP - + Are you sure you want to close OpenLP? - + Open &Data Folder... - + Open the folder where songs, bibles and other data resides. - + &Autodetect - + Update Theme Images - + Update the preview images for all themes. - + Print the current service. - + &Recent Files - + L&ock Panels - + Prevent the panels being moved. - + Re-run First Time Wizard - + Re-run the First Time Wizard, importing songs, Bibles and themes. - + Re-run First Time Wizard? - + Are you sure you want to re-run the First Time Wizard? Re-running this wizard may make changes to your current OpenLP configuration and possibly add songs to your existing songs list and change your default theme. - + Clear List Clear List of recent files - + Clear the list of recent files. - + Configure &Formatting Tags... - + Export OpenLP settings to a specified *.config file - + Settings - + Import OpenLP settings from a specified *.config file previously exported on this or another machine - + Import settings? - + @@ -3542,42 +3537,42 @@ Re-running this wizard may make changes to your current OpenLP configuration and Importing settings will make permanent changes to your current OpenLP configuration. Importing incorrect settings may cause erratic behaviour or OpenLP to terminate abnormally. - + Open File - Otvor súbor + OpenLP Export Settings Files (*.conf) - + Import settings - + OpenLP will now close. Imported settings will be applied the next time you start OpenLP. - + Export Settings File - + OpenLP Export Settings File (*.conf) - + New Data Directory Error - + @@ -3585,21 +3580,21 @@ Importing incorrect settings may cause erratic behaviour or OpenLP to terminate Database Error - + The database being loaded was created in a more recent version of OpenLP. The database is version %d, while OpenLP expects version %d. The database will not be loaded. Database: %s - + OpenLP cannot load your database. Database: %s - + @@ -3607,73 +3602,73 @@ Database: %s No Items Selected - + &Add to selected Service Item - + You must select one or more items to preview. - + You must select one or more items to send live. - + You must select one or more items. - + You must select an existing service item to add to. - + Invalid Service Item - + You must select a %s service item. - + You must select one or more items to add. - + No Search Results - + Invalid File Type - + Invalid File %s. Suffix not supported - + &Clone - + Duplicate files were found on import and were ignored. - + @@ -3681,12 +3676,12 @@ Suffix not supported <lyrics> tag is missing. - + <verse> tag is missing. - + @@ -3694,42 +3689,42 @@ Suffix not supported Plugin List - + Plugin Details - + Status: - + Active - + Inactive - + %s (Inactive) - + %s (Active) - + %s (Disabled) - + @@ -3737,12 +3732,12 @@ Suffix not supported Fit Page - + Fit Width - + @@ -3750,77 +3745,77 @@ Suffix not supported Options - + Copy - + Copy as HTML - + Zoom In - + Zoom Out - + Zoom Original - + Other Options - + Include slide text if available - + Include service item notes - + Include play length of media items - + Add page break before each text item - + Service Sheet - + Print - + Title: - + Custom Footer Text: - + @@ -3828,12 +3823,12 @@ Suffix not supported Screen - + primary - + @@ -3841,12 +3836,12 @@ Suffix not supported <strong>Start</strong>: %s - + <strong>Length</strong>: %s - + @@ -3854,7 +3849,7 @@ Suffix not supported Reorder Service Item - + @@ -3862,268 +3857,268 @@ Suffix not supported Move to &top - + Move item to the top of the service. - + Move &up - + Move item up one position in the service. - + Move &down - + Move item down one position in the service. - + Move to &bottom - + Move item to the end of the service. - + &Delete From Service - + Delete the selected item from the service. - + &Add New Item - + &Add to Selected Item - + &Edit Item - + &Reorder Item - + &Notes - + &Change Item Theme - + OpenLP Service Files (*.osz) - + 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 - + &Expand all - + Expand all the service items. - + &Collapse all - + Collapse all the service items. - + Open File - Otvor súbor + Moves the selection down the window. - + Move up - + Moves the selection up the window. - + Go Live - + Send the selected item to Live. - + &Start Time - + Show &Preview - + Modified Service - + The current service has been modified. Would you like to save this service? - + Custom Service Notes: - + Notes: - + Playing time: - + Untitled Service - + File could not be opened because it is corrupt. - + Empty File - + This service file does not contain any data. - + Corrupt File - + Load an existing service. - + Save this service. - + Select a theme for the service. - + This file is either corrupt or it is not an OpenLP 2.0 service file. - + Service File Missing - + Slide theme - + Notes - + Edit - + Service copy only - + @@ -4141,7 +4136,7 @@ The content encoding is not UTF-8. Service Item Notes - + @@ -4149,7 +4144,7 @@ The content encoding is not UTF-8. Configure OpenLP - + @@ -4157,67 +4152,67 @@ The content encoding is not UTF-8. Action - + Shortcut - + Duplicate Shortcut - + The shortcut "%s" is already assigned to another action, please use a different shortcut. - + Alternate - + Select an action and click one of the buttons below to start capturing a new primary or alternate shortcut, respectively. - + Default - + Custom - + Capture shortcut. - + Restore the default shortcut of this action. - + Restore Default Shortcuts - + Do you want to restore all shortcuts to their defaults? - + Configure Shortcuts - + @@ -4225,172 +4220,172 @@ The content encoding is not UTF-8. Hide - + Go To - + Blank Screen - + Blank to Theme - + Show Desktop - + Previous Service - + Next Service - + Escape Item - + Move to previous. - + Move to next. - + Play Slides - + Delay between slides in seconds. - + Move to live. - + Add to Service. - + Edit and reload song preview. - + Start playing media. - + Pause audio. - + Pause playing media. - + Stop playing media. - + Video position. - + Audio Volume. - + Go to "Verse" - + Go to "Chorus" - + Go to "Bridge" - + Go to "Pre-Chorus" - + Go to "Intro" - + Go to "Ending" - + Go to "Other" - + Previous Slide - + Next Slide - + Pause Audio - + Background Audio - + Go to next audio track. - + Tracks - + @@ -4398,17 +4393,17 @@ The content encoding is not UTF-8. Spelling Suggestions - + Formatting Tags - + Language: - Jazyk: + @@ -4416,67 +4411,67 @@ The content encoding is not UTF-8. Hours: - + Minutes: - + Seconds: - + Item Start and Finish Time - + Start - + Finish - + Length - + Time Validation Error - + Finish time is set after the end of the media item - + Start time is after the finish time of the media item - + Theme Layout - + The blue box shows the main area. - + The red box shows the footer. - + @@ -4484,32 +4479,32 @@ The content encoding is not UTF-8. Select Image - + Theme Name Missing - + There is no name for this theme. Please enter one. - + Theme Name Invalid - + Invalid theme name. Please enter one. - + (approximately %d lines per slide) - + @@ -4517,193 +4512,193 @@ The content encoding is not UTF-8. Create a new theme. - + Edit Theme - + Edit a theme. - + Delete Theme - + Delete a theme. - + Import Theme - + Import a theme. - + Export Theme - + Export a theme. - + &Edit Theme - + &Delete Theme - + Set As &Global Default - + %s (default) - + You must select a theme to edit. - + You are unable to delete the default theme. - + Theme %s is used in the %s plugin. - + You have not selected a theme. - + Save Theme - (%s) - + Theme Exported - + Your theme has been successfully exported. - + Theme Export Failed - + Your theme could not be exported due to an error. - + Select Theme Import File - + File is not a valid theme. - + &Copy Theme - + &Rename Theme - + &Export Theme - + You must select a theme to rename. - + Rename Confirmation - + Rename %s theme? - + You must select a theme to delete. - + Delete Confirmation - + Delete %s theme? - + Validation Error - + A theme with this name already exists. - + OpenLP Themes (*.theme *.otz) - + Copy of %s Copy of <theme name> - + Theme Already Exists - + @@ -4711,272 +4706,272 @@ The content encoding is not UTF-8. Theme Wizard - + Welcome to the Theme Wizard - + Set Up Background - + Set up your theme's background according to the parameters below. - + Background type: - + Solid Color - + Gradient - + Color: - + Gradient: - + Horizontal - + Vertical - + Circular - + Top Left - Bottom Right - + Bottom Left - Top Right - + Main Area Font Details - + Define the font and display characteristics for the Display text - + Font: - + Size: - + Line Spacing: - + &Outline: - + &Shadow: - + Bold - + Italic - + Footer Area Font Details - + Define the font and display characteristics for the Footer text - + Text Formatting Details - + Allows additional display formatting information to be defined - + Horizontal Align: - + Left - + Right - + Center - + Output Area Locations - + Allows you to change and move the main and footer areas. - + &Main Area - + &Use default location - + X position: - + px - + Y position: - + Width: - + Height: - + Use default location - + Theme name: - + Edit Theme - %s - + This wizard will help you to create and edit your themes. Click the next button below to start the process by setting up your background. - + Transitions: - + &Footer Area - + Starting color: - + Ending color: - + Background color: - Farba pozadia: + Justify - + Layout Preview - + Transparent - + Preview and Save - + Preview the theme and save it. - + @@ -4984,47 +4979,47 @@ The content encoding is not UTF-8. Global Theme - + Theme Level - + S&ong Level - + Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. - + &Service Level - + Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. - + &Global Level - + Use the global theme, overriding any themes associated with either the service or the songs. - + Themes - + @@ -5032,551 +5027,551 @@ The content encoding is not UTF-8. Error - + About - + &Add - + Advanced - Pokročilé + All Files - + Bottom - + Browse... - + Cancel - + CCLI number: - + Create a new service. - + &Delete - + &Edit - + Empty Field - + Export - + pt Abbreviated font pointsize unit - + Image - Obrázok + Import - + Live - + Live Background Error - + Load - + Middle - + New - + New Service - + New Theme - + No File Selected Singular - + No Files Selected Plural - + No Item Selected Singular - + No Items Selected Plural - + openlp.org 1.x - + OpenLP 2.0 - + Preview - + Replace Background - + Reset Background - + s The abbreviated unit for seconds - + Save && Preview - + Search - + You must select an item to delete. - + You must select an item to edit. - + Save Service - + Service - + Start %s - + Theme Singular - + Themes Plural - + Top - + Version - + Delete the selected item. - + Move selection up one position. - + Move selection down one position. - + &Vertical Align: - + Finished import. - + Format: - + Importing - + Importing "%s"... - + Select Import Source - + Select the import format and the location to import from. - + The openlp.org 1.x importer has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "python-sqlite" module. - + Open %s File - + %p% - + Ready. - + Starting import... - + You need to specify at least one %s file to import from. A file type e.g. OpenSong - + Welcome to the Bible Import Wizard - + Welcome to the Song Export Wizard - + Welcome to the Song Import Wizard - + Author Singular - + Authors Plural - + - © + © Copyright symbol. - + Song Book Singular - + Song Books Plural - + Song Maintenance - + Topic Singular - + Topics Plural - + Continuous - + Default - + Display style: - + Duplicate Error - + File - + Help - + h The abbreviated unit for hours - + Layout style: - + Live Toolbar - + m The abbreviated unit for minutes - + OpenLP is already running. Do you wish to continue? - + Settings - + Tools - + Unsupported File - Nepodporovaný súbor + Verse Per Slide - + Verse Per Line - + View - + Title and/or verses not found - + XML syntax error - + View Mode - + Open service. - + Print Service - + Replace live background. - + Reset live background. - + Split a slide into two only if it does not fit on the screen as one slide. - + Welcome to the Bible Upgrade Wizard - + Confirm Delete - + Play Slides in Loop - + Play Slides to End - + Stop Play Slides in Loop - + Stop Play Slides to End - + Next Track - + Search Themes... Search bar place holder text - + Optional &Split - + @@ -5626,25 +5621,25 @@ The content encoding is not UTF-8. %1 and %2 Locale list separator: 2 items - + %1, and %2 Locale list separator: end - + %1, %2 Locale list separator: middle - + %1, %2 Locale list separator: start - + @@ -5652,50 +5647,50 @@ The content encoding is not UTF-8. <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. - + Presentation name singular - + Presentations name plural - Prezentácie + Presentations container title - Prezentácie + Load a new presentation. - + Delete the selected presentation. - + Preview the selected presentation. - + Send the selected presentation live. - + Add the selected presentation to the service. - + @@ -5703,42 +5698,42 @@ The content encoding is not UTF-8. Select Presentation(s) - + Automatic - Automatický + Present using: - + File Exists - + A presentation with that filename already exists. - + This type of presentation is not supported. - + Presentations (%s) - + Missing Presentation - + @@ -5756,17 +5751,17 @@ The content encoding is not UTF-8. Available Controllers - + %s (unavailable) - %s (nedostupné) + Allow presentation application to be overridden - + @@ -5774,25 +5769,25 @@ The content encoding is not UTF-8. <strong>Remote Plugin</strong><br />The remote plugin provides the ability to send messages to a running version of OpenLP on a different computer via a web browser or through the remote API. - + Remote name singular - + Remotes name plural - + Remote container title - + @@ -5800,107 +5795,107 @@ The content encoding is not UTF-8. OpenLP 2.0 Remote - + OpenLP 2.0 Stage View - + Service Manager - + Slide Controller - + Alerts - Upozornenia + Search - + Refresh - + Blank - + Show - + Prev - + Next - + Text - + Show Alert - + Go Live - + No Results - + Options - + Add to Service - + Home - + Theme - + Desktop - + Add &amp; Go to Service - + @@ -5908,42 +5903,42 @@ The content encoding is not UTF-8. Serve on IP address: - + Port number: - + Server Settings - + Remote URL: - + Stage view URL: - + Display stage time in 12h format - + Android App - + Scan the QR code or click <a href="https://market.android.com/details?id=org.openlp.android">download</a> to install the Android app from the Market. - + @@ -5951,85 +5946,85 @@ The content encoding is not UTF-8. &Song Usage Tracking - + &Delete Tracking Data - + Delete song usage data up to a specified date. - + &Extract Tracking Data - + Generate a report on song usage. - + Toggle Tracking - + Toggle the tracking of song usage. - + <strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services. - + SongUsage name singular - + SongUsage name plural - + SongUsage container title - + Song Usage - + Song usage tracking is active. - + Song usage tracking is inactive. - + display - + printed - + @@ -6037,32 +6032,32 @@ The content encoding is not UTF-8. Delete Song Usage Data - + Delete Selected Song Usage Events? - + Are you sure you want to delete selected Song Usage data? - + Deletion Successful - + All requested data has been deleted successfully. - + Select the date up to which the song usage data should be deleted. All data recorded before this date will be permanently deleted. - + @@ -6070,54 +6065,54 @@ The content encoding is not UTF-8. Song Usage Extraction - + Select Date Range - + to - + Report Location - + Output File Location - + usage_detail_%s_%s.txt - + Report Creation - + Report %s has been successfully created. - + Output Path Not Selected - + You have not set a valid output location for your song usage report. Please select an existing path on your computer. - + @@ -6125,173 +6120,173 @@ has been successfully created. &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... - + Arabic (CP-1256) - + Baltic (CP-1257) - + Central European (CP-1250) - + Cyrillic (CP-1251) - + Greek (CP-1253) - + Hebrew (CP-1255) - + Japanese (CP-932) - + Korean (CP-949) - + Simplified Chinese (CP-936) - + Thai (CP-874) - + Traditional Chinese (CP-950) - + Turkish (CP-1254) - + Vietnam (CP-1258) - + Western European (CP-1252) - + Character Encoding - + The codepage setting is responsible for the correct character representation. Usually you are fine with the preselected choice. - + Please choose the character encoding. The encoding is responsible for the correct character representation. - + Song name singular - + Songs name plural - Piesne + Songs container title - Piesne + Exports songs using the export wizard. - + 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. - + @@ -6299,37 +6294,37 @@ The encoding is responsible for the correct character representation. Author Maintenance - + Display name: - + First name: - + Last name: - + You need to type in the first name of the author. - + You need to type in the last name of the author. - + You have not set a display name for the author, combine the first and last names? - + @@ -6337,7 +6332,7 @@ The encoding is responsible for the correct character representation. The file does not have a valid extension. - + @@ -6345,14 +6340,14 @@ The encoding is responsible for the correct character representation. Administered by %s - + [above are Song Tags with notes imported from EasyWorship] - + @@ -6360,12 +6355,12 @@ The encoding is responsible for the correct character representation. Meta Data - + Custom Book Names - + @@ -6373,207 +6368,207 @@ The encoding is responsible for the correct character representation. Song Editor - + &Title: - &Názov: + Alt&ernate title: - + &Lyrics: - + &Verse order: - + Ed&it All - Upra&iť všetky + Title && Lyrics - + &Add to Song - + &Remove - + &Manage Authors, Topics, Song Books - + A&dd to Song - + R&emove - + Book: - Kniha: + Number: - + Authors, Topics && Song Book - + New &Theme - + Copyright Information - + Comments - + Theme, Copyright Info && Comments - + Add Author - + This author does not exist, do you want to add them? - + This author is already in the list. - + You have not selected a valid author. Either select an author from the list, or type in a new author and click the "Add Author to Song" button to add the new author. - + Add Topic - + This topic does not exist, do you want to add it? - + This topic is already in the list. - + You have not selected a valid topic. Either select a topic from the list, or type in a new topic and click the "Add Topic to Song" button to add the new topic. - + You need to type in a song title. - + You need to type in at least one verse. - + The verse order is invalid. There is no verse corresponding to %s. Valid entries are %s. - + Add Book - + This song book does not exist, do you want to add it? - + You need to have an author for this song. - + You need to type some text in to the verse. - + Linked Audio - + Add &File(s) - + Add &Media - + Remove &All - + Open File(s) - + <strong>Warning:</strong> Not all of the verses are in use. - + The verse order is invalid. There are no verses corresponding to %s. Valid entries are %s. - + @@ -6581,22 +6576,22 @@ The encoding is responsible for the correct character representation. Edit Verse - + &Verse type: - + &Insert - + Split a slide into two by inserting a verse splitter. - + @@ -6604,82 +6599,82 @@ The encoding is responsible for the correct character representation. Song Export Wizard - + Select Songs - + Check the songs you want to export. - + Uncheck All - + Check All - + Select Directory - + Directory: - + Exporting - + Please wait while your songs are exported. - + You need to add at least one Song to export. - + No Save Location specified - + Starting export... - + You need to specify a directory. - + Select Destination Folder - + Select the directory where you want the songs to be saved. - + This wizard will help to export your songs to the open and free <strong>OpenLyrics</strong> worship song format. - + @@ -6687,117 +6682,117 @@ The encoding is responsible for the correct character representation. Select Document/Presentation Files - + Song Import Wizard - + This wizard will help you to import songs from a variety of formats. Click the next button below to start the process by selecting a format to import from. - + Generic Document/Presentation - + Add Files... - + Remove File(s) - + Please wait while your songs are imported. - + OpenLP 2.0 Databases - + openlp.org v1.x Databases - + Words Of Worship Song Files - + Songs Of Fellowship Song Files - + SongBeamer Files - + SongShow Plus Song Files - + Foilpresenter Song Files - + Copy - + Save to File - Uložiť do súboru + The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. - + The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. - + OpenLyrics or OpenLP 2.0 Exported Song - + OpenLyrics Files - + CCLI SongSelect Files - + EasySlides XML File - + EasyWorship Song Database - + @@ -6822,37 +6817,37 @@ The encoding is responsible for the correct character representation. SundayPlus Song Files - + This importer has been disabled. - + MediaShout Database - + The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. - + SongPro Text Files - + SongPro (Export File) - + In SongPro, export your songs using the File -> Export menu - + @@ -6860,12 +6855,12 @@ The encoding is responsible for the correct character representation. Select Media File(s) - + Select one or more audio files from the list below, and click OK to import them into this song. - + @@ -6873,67 +6868,63 @@ The encoding is responsible for the correct character representation. Titles - + Lyrics - + CCLI License: - + Entire Song - + Are you sure you want to delete the %n selected song(s)? - - - - - + Maintain the lists of authors, topics and books. - + copy For song cloning - + Search Titles... - + Search Entire Song... - + Search Lyrics... - + Search Authors... - + Search Song Books... - + @@ -6941,7 +6932,7 @@ The encoding is responsible for the correct character representation. Unable to open the MediaShout database. - + @@ -6949,7 +6940,7 @@ The encoding is responsible for the correct character representation. Not a valid openlp.org 1.x song database. - + @@ -6957,7 +6948,7 @@ The encoding is responsible for the correct character representation. Not a valid OpenLP 2.0 song database. - + @@ -6965,7 +6956,7 @@ The encoding is responsible for the correct character representation. Exporting "%s"... - + @@ -6986,22 +6977,22 @@ The encoding is responsible for the correct character representation. Song Book Maintenance - + &Name: - + &Publisher: - + You need to type in a name for the book. - + @@ -7009,12 +7000,12 @@ The encoding is responsible for the correct character representation. Your song export failed. - + Finished export. To import these files use the <strong>OpenLyrics</strong> importer. - + @@ -7022,27 +7013,27 @@ The encoding is responsible for the correct character representation. copyright - + The following songs could not be imported: - + Cannot access OpenOffice or LibreOffice - + Unable to open file - + File not found - + @@ -7050,107 +7041,107 @@ The encoding is responsible for the correct character representation. Could not add your author. - + This author already exists. - + Could not add your topic. - + This topic already exists. - + Could not add your book. - + This book already exists. - + Could not save your changes. - + Could not save your modified author, because the author already exists. - + Could not save your modified topic, because it already exists. - + Delete Author - + Are you sure you want to delete the selected author? - + This author cannot be deleted, they are currently assigned to at least one song. - + Delete Topic - + Are you sure you want to delete the selected topic? - + This topic cannot be deleted, it is currently assigned to at least one song. - + Delete Book - + Are you sure you want to delete the selected book? - + This book cannot be deleted, it is currently assigned to at least one song. - + The author %s already exists. Would you like to make songs with author %s use the existing author %s? - + The topic %s already exists. Would you like to make songs with topic %s use the existing topic %s? - + The book %s already exists. Would you like to make songs with book %s use the existing book %s? - + @@ -7158,27 +7149,27 @@ The encoding is responsible for the correct character representation. Songs Mode - + Enable search as you type - + Display verses on live tool bar - + Update service from song edit - + Import missing songs from service files - + @@ -7186,17 +7177,17 @@ The encoding is responsible for the correct character representation. Topic Maintenance - + Topic name: - + You need to type in a topic name. - + @@ -7204,37 +7195,37 @@ The encoding is responsible for the correct character representation. Verse - + Chorus - + Bridge - + Pre-Chorus - + Intro - + Ending - + Other - + @@ -7250,4 +7241,4 @@ The encoding is responsible for the correct character representation. Súbor nie je validný ZionWorx CSV formátu. - + \ No newline at end of file diff --git a/resources/i18n/sq.ts b/resources/i18n/sq.ts index 7c74c7cd9..7bf7245a3 100644 --- a/resources/i18n/sq.ts +++ b/resources/i18n/sq.ts @@ -1,39 +1,38 @@ - - + AlertsPlugin &Alert - + Show an alert message. - + Alert name singular - + Alerts name plural - + Alerts container title - + <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of nursery alerts on the display screen. - + @@ -41,69 +40,69 @@ Alert Message - + Alert &text: - + &New - + &Save - + Displ&ay - + Display && Cl&ose - + New Alert - + You haven't specified any text for your alert. Please type in some text before clicking New. - + &Parameter: - + No Parameter Found - + You have not entered a parameter to be replaced. Do you want to continue anyway? - + No Placeholder Found - + - The alert text does not contain '<>'. + The alert text does not contain '<>'. Do you want to continue anyway? - + @@ -111,7 +110,7 @@ Do you want to continue anyway? Alert message created and displayed. - + @@ -119,32 +118,32 @@ Do you want to continue anyway? Font - + Font name: - + Font color: - + Background color: - + Font size: - + Alert timeout: - + @@ -152,511 +151,511 @@ Do you want to continue anyway? &Bible - + Bible name singular - + Bibles name plural - + Bibles container title - + No Book Found - + No matching book could be found in this Bible. Check that you have spelled the name of the book correctly. - + Import a Bible. - + Add a new Bible. - + Edit the selected Bible. - + Delete the selected Bible. - + Preview the selected Bible. - + Send the selected Bible live. - + Add the selected Bible to the service. - + <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display Bible verses from different sources during the service. - + &Upgrade older Bibles - + Upgrade the Bible databases to the latest format. - + Genesis - + Exodus - + Leviticus - + Numbers - + Deuteronomy - + Joshua - + Judges - + Ruth - + 1 Samuel - + 2 Samuel - + 1 Kings - + 2 Kings - + 1 Chronicles - + 2 Chronicles - + Ezra - + Nehemiah - + Esther - + Job - + Psalms - + Proverbs - + Ecclesiastes - + Song of Solomon - + Isaiah - + Jeremiah - + Lamentations - + Ezekiel - + Daniel - + Hosea - + Joel - + Amos - + Obadiah - + Jonah - + Micah - + Nahum - + Habakkuk - + Zephaniah - + Haggai - + Zechariah - + Malachi - + Matthew - + Mark - + Luke - + John - + Acts - + Romans - + 1 Corinthians - + 2 Corinthians - + Galatians - + Ephesians - + Philippians - + Colossians - + 1 Thessalonians - + 2 Thessalonians - + 1 Timothy - + 2 Timothy - + Titus - + Philemon - + Hebrews - + James - + 1 Peter - + 2 Peter - + 1 John - + 2 John - + 3 John - + Jude - + Revelation - + Judith - + Wisdom - + Tobit - + Sirach - + Baruch - + 1 Maccabees - + 2 Maccabees - + 3 Maccabees - + 4 Maccabees - + Rest of Daniel - + Rest of Esther - + Prayer of Manasses - + Letter of Jeremiah - + Prayer of Azariah - + Susanna - + Bel - + 1 Esdras - + 2 Esdras - + :|v|V|verse|verses;;-|to;;,|and;;end Double-semicolon delimited separators for parsing references. Consult the developers for further information. - + @@ -664,44 +663,44 @@ Do you want to continue anyway? You need to specify a version name for your Bible. - + You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. - + Bible Exists - + This Bible already exists. Please import a different Bible or first delete the existing one. - + You need to specify a book name for "%s". - + The book name "%s" is not correct. Numbers can only be used at the beginning and must be followed by one or more non-numeric characters. - + Duplicate Book Name - + The Book Name "%s" has been entered more than once. - + @@ -709,33 +708,33 @@ be followed by one or more non-numeric characters. Scripture Reference Error - + Web Bible cannot be used - + Text Search is not available with Web Bibles. - + You did not enter a search keyword. You can separate different keywords by a space to search for all of your keywords and you can separate them by a comma to search for one of them. - + There are no Bibles currently installed. Please use the Import Wizard to install one or more Bibles. - + No Bibles Available - + @@ -748,7 +747,7 @@ Book Chapter%(verse)sVerse%(range)sVerse%(list)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sVerse%(list)sChapter%(verse)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sChapter%(verse)sVerse Please pay attention to the appended "s" of the wildcards and refrain from translating the words inside the names in the brackets. - + @@ -756,127 +755,127 @@ Book Chapter%(verse)sVerse%(range)sChapter%(verse)sVerse Verse Display - + Only show new chapter numbers - + Bible theme: - + No Brackets - + ( And ) - + { And } - + [ And ] - + Note: Changes do not affect verses already in the service. - + Display second Bible verses - + Custom Scripture References - + Verse Separator: - + Range Separator: - + List Separator: - + End Mark: - + Multiple alternative verse separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. - + Multiple alternative range separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. - + Multiple alternative list separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. - + Multiple alternative end marks may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. - + English - Shqiptar + Default Bible Language - + Book name language in search field, search results and on display: - + Bible Language - + Application Language - + @@ -884,42 +883,42 @@ search results and on display: Select Book Name - + Current name: - + Corresponding name: - + Show Books From - + Old Testament - + New Testament - + Apocrypha - + The following book name cannot be matched up internally. Please select the corresponding name from the list. - + @@ -927,7 +926,7 @@ search results and on display: You need to select a book. - + @@ -935,18 +934,18 @@ search results and on display: Importing books... %s - + Importing verses from %s... Importing verses from <book name>... - + Importing verses... done. - + @@ -954,68 +953,68 @@ search results and on display: Bible Editor - + License Details - + Version name: - + Copyright: - + Permissions: - + Default Bible Language - + Book name language in search field, search results and on display: - + Global Settings - + Bible Language - + Application Language - + English - Shqiptar + This is a Web Download Bible. It is not possible to customize the Book Names. - + To use the customized book names, "Bible language" must be selected on the Meta Data tab or, if "Global settings" is selected, on the Bible page in Configure OpenLP. - + @@ -1023,38 +1022,38 @@ It is not possible to customize the Book Names. Registering Bible and loading books... - + Registering Language... - + Importing %s... Importing <book name>... - + Download Error - + There was a problem downloading your verse selection. Please check your Internet connection, and if this error continues to occur please consider reporting a bug. - + Parse Error - + There was a problem extracting your verse selection. If this error continues to occur please consider reporting a bug. - + @@ -1062,168 +1061,168 @@ It is not possible to customize the Book Names. Bible Import Wizard - + This wizard will help you to import Bibles from a variety of formats. Click the next button below to start the process by selecting a format to import from. - + Web Download - + Location: - + Crosswalk - + BibleGateway - + Bible: - + Download Options - + Server: - + Username: - + Password: - + Proxy Server (Optional) - + License Details - + Set up the Bible's license details. - + Version name: - + Copyright: - + Please wait while your Bible is imported. - + You need to specify a file with books of the Bible to use in the import. - + You need to specify a file of Bible verses to import. - + You need to specify a version name for your Bible. - + You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. - + Bible Exists - + This Bible already exists. Please import a different Bible or first delete the existing one. - + Your Bible import failed. - + CSV File - + Bibleserver - + Permissions: - + Bible file: - + Books file: - + Verses file: - + openlp.org 1.x Bible Files - + Registering Bible... - + Registered Bible. Please note, that verses will be downloaded on demand and thus an internet connection is required. - + @@ -1231,17 +1230,17 @@ demand and thus an internet connection is required. Select Language - + OpenLP is unable to determine the language of this translation of the Bible. Please select the language from the list below. - + Language: - + @@ -1249,7 +1248,7 @@ demand and thus an internet connection is required. You need to choose a language. - + @@ -1257,94 +1256,94 @@ demand and thus an internet connection is required. Quick - + Find: - + Book: - + Chapter: - + Verse: - + From: - + To: - + Text Search - + Second: - + Scripture Reference - + Toggle to keep or clear the previous results. - + You cannot combine single and dual Bible verse search results. Do you want to delete your search results and start a new search? - + Bible not fully loaded. - + Information - + The second Bible does not contain all the verses that are in the main Bible. Only verses found in both Bibles will be shown. %d verses have not been included in the results. - + Search Scripture Reference... - + Search Text... - + Are you sure you want to completely delete "%s" Bible from OpenLP? You will need to re-import this Bible to use it again. - + @@ -1352,7 +1351,7 @@ You will need to re-import this Bible to use it again. Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. - + @@ -1361,7 +1360,7 @@ You will need to re-import this Bible to use it again. Importing %s %s... Importing <book name> <chapter>... - + @@ -1369,13 +1368,13 @@ You will need to re-import this Bible to use it again. Detecting encoding (this may take a few minutes)... - + Importing %s %s... Importing <book name> <chapter>... - + @@ -1383,143 +1382,143 @@ You will need to re-import this Bible to use it again. Select a Backup Directory - + Bible Upgrade Wizard - + This wizard will help you to upgrade your existing Bibles from a prior version of OpenLP 2. Click the next button below to start the upgrade process. - + Select Backup Directory - + Please select a backup directory for your Bibles - + Previous releases of OpenLP 2.0 are unable to use upgraded Bibles. This will create a backup of your current Bibles so that you can simply copy the files back to your OpenLP data directory if you need to revert to a previous release of OpenLP. Instructions on how to restore the files can be found in our <a href="http://wiki.openlp.org/faq">Frequently Asked Questions</a>. - + Please select a backup location for your Bibles. - + Backup Directory: - + There is no need to backup my Bibles - + Select Bibles - + Please select the Bibles to upgrade - + Upgrading - + Please wait while your Bibles are upgraded. - + The backup was not successful. To backup your Bibles you need permission to write to the given directory. - + Upgrading Bible %s of %s: "%s" Failed - + Upgrading Bible %s of %s: "%s" Upgrading ... - + Download Error - + To upgrade your Web Bibles an Internet connection is required. - + Upgrading Bible %s of %s: "%s" Upgrading %s ... - + Upgrading Bible %s of %s: "%s" Complete - + , %s failed - + Upgrading Bible(s): %s successful%s Please note that verses from Web Bibles will be downloaded on demand and so an Internet connection is required. - + Upgrading Bible(s): %s successful%s - + Upgrade failed. - + You need to specify a backup directory for your Bibles. - + Starting upgrade... - + There are no Bibles that need to be upgraded. - + @@ -1527,65 +1526,65 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I <strong>Custom Slide Plugin</strong><br />The custom slide plugin provides the ability to set up custom text slides that can be displayed on the screen the same way songs are. This plugin provides greater freedom over the songs plugin. - + Custom Slide name singular - + Custom Slides name plural - + Custom Slides container title - + Load a new custom slide. - + Import a custom slide. - + Add a new custom slide. - + Edit the selected custom slide. - + Delete the selected custom slide. - + Preview the selected custom slide. - + Send the selected custom slide live. - + Add the selected custom slide to the service. - + @@ -1593,12 +1592,12 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I Custom Display - + Display footer - + @@ -1606,62 +1605,62 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I Edit Custom Slides - + &Title: - + Add a new slide at bottom. - + Edit the selected slide. - + Edit all the slides at once. - + Split a slide into two by inserting a slide splitter. - + The&me: - + &Credits: - + You need to type in a title. - + You need to add at least one slide - + Ed&it All - + Insert Slide - + @@ -1669,7 +1668,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I Edit Slide - + @@ -1677,10 +1676,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I Are you sure you want to delete the %n selected custom slide(s)? - - - - + @@ -1688,60 +1684,60 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I <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. - + Image name singular - + Images name plural - + Images container title - + 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. - + @@ -1749,7 +1745,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I Select Attachment - + @@ -1757,43 +1753,43 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I Select Image(s) - + You must select an image to delete. - + You must select an image to replace the background with. - + Missing Image(s) - + The following image(s) no longer exist: %s - + The following image(s) no longer exist: %s Do you want to add the other images anyway? - + There was a problem replacing your background, the image file "%s" no longer exists. - + There was no display item to amend. - + @@ -1801,17 +1797,17 @@ Do you want to add the other images anyway? Background Color - + Default Color: - + Visible background for images with aspect ratio different to screen. - + @@ -1819,60 +1815,60 @@ Do you want to add the other images anyway? <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. - + Media name singular - + Media name plural - + Media container title - + Load new media. - + Add 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. - + @@ -1880,57 +1876,57 @@ Do you want to add the other images anyway? Select Media - + You must select a media file to delete. - + You must select a media file to replace the background with. - + There was a problem replacing your background, the media file "%s" no longer exists. - + Missing Media File - + The file %s no longer exists. - + Videos (%s);;Audio (%s);;%s (*) - + There was no display item to amend. - + Unsupported File - + Automatic - + Use Player: - + @@ -1938,22 +1934,22 @@ Do you want to add the other images anyway? Available Media Players - + %s (unavailable) - + Player Order - + Allow media player to be overridden - + @@ -1961,19 +1957,19 @@ Do you want to add the other images anyway? Image Files - + Information - + Bible format has changed. You have to upgrade your existing Bibles. Should OpenLP upgrade now? - + @@ -1981,32 +1977,32 @@ Should OpenLP upgrade now? Credits - + License - + Contribute - + build %s - + This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See below for more details. - + @@ -2042,7 +2038,7 @@ Translators %s Japanese (ja) %s - Norwegian Bokmål (nb) + Norwegian Bokmål (nb) %s Dutch (nl) %s @@ -2071,7 +2067,7 @@ Final Credit on the cross, setting us free from sin. We bring this software to you for free because He has set us free. - + @@ -2082,13 +2078,13 @@ OpenLP is free church presentation software, or lyrics projection software, used Find out more about OpenLP: http://openlp.org/ OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider contributing by using the button below. - + - Copyright © 2004-2012 %s -Portions copyright © 2004-2012 %s - + Copyright © 2004-2012 %s +Portions copyright © 2004-2012 %s + @@ -2096,271 +2092,271 @@ Portions copyright © 2004-2012 %s UI Settings - + Number of recent files to display: - + Remember active media manager tab on startup - + Double-click to send items straight to live - + Expand new service items on creation - + Enable application exit confirmation - + Mouse Cursor - + Hide mouse cursor when over display window - + Default Image - + Background color: - + Image file: - + Open File - + Advanced - + Preview items when clicked in Media Manager - + Click to select a color. - + Browse for an image file to display. - + Revert to the default OpenLP logo. - + Service %Y-%m-%d %H-%M This may not contain any of the following characters: /\?*|<>[]":+ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for more information. - + Default Service Name - + Enable default service name - + Date and Time: - + Monday - + Tuesday - + Wednesday - + Thurdsday - + Friday - + Saturday - + Sunday - + Now - + Time when usual service starts. - + Name: - + Consult the OpenLP manual for usage. - + Revert to the default service name "%s". - + Example: - + X11 - + Bypass X11 Window Manager - + Syntax error. - + Data Location - + Current path: - + Custom path: - + Browse for new data file location. - + Set the data location to the default. - + Cancel - + Cancel OpenLP data directory location change. - + Copy data to new location. - + Copy the OpenLP data files to the new location. - + <strong>WARNING:</strong> New data directory location contains OpenLP data files. These files WILL be replaced during a copy. - + Data Directory Error - + Select Data Directory Location - + Confirm Data Directory Change - + Reset Data Directory - + Are you sure you want to change the location of the OpenLP data directory to the default location? This location will be used after OpenLP is closed. - + Overwrite Existing Data - + @@ -2368,38 +2364,38 @@ This location will be used after OpenLP is closed. Error Occurred - + Oops! OpenLP hit a problem, and couldn't recover. The text in the box below contains information that might be helpful to the OpenLP developers, so please e-mail it to bugs@openlp.org, along with a detailed description of what you were doing when the problem occurred. - + Send E-Mail - + Save to File - + Please enter a description of what you were doing to cause this error (Minimum 20 characters) - + Attach File - + Description characters to enter : %s - + @@ -2408,17 +2404,17 @@ This location will be used after OpenLP is closed. Platform: %s - + Save Crash Report - + Text files (*.txt *.log *.text) - + @@ -2436,7 +2432,7 @@ Version: %s --- Library Versions --- %s - + @@ -2455,7 +2451,7 @@ Version: %s %s Please add the information that bug reports are favoured written in English. - + @@ -2463,17 +2459,17 @@ Version: %s File Rename - + New File Name: - + File Copy - + @@ -2481,17 +2477,17 @@ Version: %s Select Translation - + Choose the translation you'd like to use in OpenLP. - + Translation: - + @@ -2499,201 +2495,201 @@ Version: %s Songs - + First Time Wizard - + Welcome to the First Time Wizard - + Activate required Plugins - + Select the Plugins you wish to use. - + Bible - + Images - + Presentations - + Media (Audio and Video) - + Allow remote access - + Monitor Song Usage - + Allow Alerts - + Default Settings - + Downloading %s... - + Download complete. Click the finish button to start OpenLP. - + Enabling selected plugins... - + No Internet Connection - + Unable to detect an Internet connection. - + Sample Songs - + Select and download public domain songs. - + Sample Bibles - + Select and download free Bibles. - + Sample Themes - + Select and download sample themes. - + Set up default settings to be used by OpenLP. - + Default output display: - + Select default theme: - + Starting configuration process... - + This wizard will help you to configure OpenLP for initial use. Click the next button below to start. - + Setting Up And Downloading - + Please wait while OpenLP is set up and your data is downloaded. - + Setting Up - + Click the finish button to start OpenLP. - + Download complete. Click the finish button to return to OpenLP. - + Click the finish button to return to OpenLP. - + Custom Slides - + Finish - + No Internet connection was found. The First Time Wizard needs an Internet connection in order to be able to download sample songs, Bibles and themes. Click the Finish button now to start OpenLP with initial settings and no sample data. To re-run the First Time Wizard and import this sample data at a later time, check your Internet connection and re-run this wizard by selecting "Tools/Re-run First Time Wizard" from OpenLP. - + To cancel the First Time Wizard completely (and not start OpenLP), click the Cancel button now. - + @@ -2701,37 +2697,37 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can Configure Formatting Tags - + Edit Selection - + Save - + Description - + Tag - + Start HTML - + End HTML - + @@ -2739,32 +2735,32 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can Update Error - + Tag "n" already defined. - + New Tag - + <HTML here> - + </and here> - + Tag %s already defined. - + @@ -2772,82 +2768,82 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can Red - + Black - + Blue - + Yellow - + Green - + Pink - + Orange - + Purple - + White - + Superscript - + Subscript - + Paragraph - + Bold - + Italics - + Underline - + Break - + @@ -2855,157 +2851,157 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can General - + Monitors - + Select monitor for output display: - + Display if a single screen - + Application Startup - + Show blank screen warning - + Automatically open the last service - + Show the splash screen - + Application Settings - + Prompt to save before starting a new service - + Automatically preview next item in service - + sec - + CCLI Details - + SongSelect username: - + SongSelect password: - + X - + Y - + Height - + Width - + Check for updates to OpenLP - + Unblank display when adding new live item - + Timed slide interval: - + Background Audio - + Start background audio paused - + Service Item Slide Limits - + Override display position: - + Repeat track list - + Behavior of next/previous on the last/first slide: - + &Remain on Slide - + &Wrap around - + &Move to next/previous service item - + @@ -3013,12 +3009,12 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can Language - + Please restart OpenLP to use your new language setting. - + @@ -3026,7 +3022,7 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can OpenLP Display - + @@ -3034,309 +3030,309 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can &File - + &Import - + &Export - + &View - + M&ode - + &Tools - + &Settings - + &Language - + &Help - + Media Manager - + Service Manager - + Theme Manager - + &New - + &Open - + Open an existing service. - + &Save - + Save the current service to disk. - + Save &As... - + Save Service As - + Save the current service under a new name. - + E&xit - + Quit OpenLP - + &Theme - + &Configure OpenLP... - + &Media Manager - + Toggle Media Manager - + Toggle the visibility of the media manager. - + &Theme Manager - + Toggle Theme Manager - + Toggle the visibility of the theme manager. - + &Service Manager - + Toggle Service Manager - + Toggle the visibility of the service manager. - + &Preview Panel - + Toggle Preview Panel - + Toggle the visibility of the preview panel. - + &Live Panel - + Toggle Live Panel - + Toggle the visibility of the live panel. - + &Plugin List - + List the Plugins - + &User Guide - + &About - + More information about OpenLP - + &Online Help - + &Web Site - + Use the system language, if available. - + Set the interface language to %s - + Add &Tool... - + Add an application to the list of tools. - + &Default - + Set the view mode back to the default. - + &Setup - + Set the view mode to Setup. - + &Live - + Set the view mode to Live. - + Version %s of OpenLP is now available for download (you are currently running version %s). You can download the latest version from http://openlp.org/. - + OpenLP Version Updated - + OpenLP Main Display Blanked - + The Main Display has been blanked out - + Default Theme: %s - + @@ -3347,120 +3343,120 @@ You can download the latest version from http://openlp.org/. Configure &Shortcuts... - + Close OpenLP - + Are you sure you want to close OpenLP? - + Open &Data Folder... - + Open the folder where songs, bibles and other data resides. - + &Autodetect - + Update Theme Images - + Update the preview images for all themes. - + Print the current service. - + &Recent Files - + L&ock Panels - + Prevent the panels being moved. - + Re-run First Time Wizard - + Re-run the First Time Wizard, importing songs, Bibles and themes. - + Re-run First Time Wizard? - + Are you sure you want to re-run the First Time Wizard? Re-running this wizard may make changes to your current OpenLP configuration and possibly add songs to your existing songs list and change your default theme. - + Clear List Clear List of recent files - + Clear the list of recent files. - + Configure &Formatting Tags... - + Export OpenLP settings to a specified *.config file - + Settings - + Import OpenLP settings from a specified *.config file previously exported on this or another machine - + Import settings? - + @@ -3469,42 +3465,42 @@ Re-running this wizard may make changes to your current OpenLP configuration and Importing settings will make permanent changes to your current OpenLP configuration. Importing incorrect settings may cause erratic behaviour or OpenLP to terminate abnormally. - + Open File - + OpenLP Export Settings Files (*.conf) - + Import settings - + OpenLP will now close. Imported settings will be applied the next time you start OpenLP. - + Export Settings File - + OpenLP Export Settings File (*.conf) - + New Data Directory Error - + @@ -3512,21 +3508,21 @@ Importing incorrect settings may cause erratic behaviour or OpenLP to terminate Database Error - + The database being loaded was created in a more recent version of OpenLP. The database is version %d, while OpenLP expects version %d. The database will not be loaded. Database: %s - + OpenLP cannot load your database. Database: %s - + @@ -3534,73 +3530,73 @@ Database: %s No Items Selected - + &Add to selected Service Item - + You must select one or more items to preview. - + You must select one or more items to send live. - + You must select one or more items. - + You must select an existing service item to add to. - + Invalid Service Item - + You must select a %s service item. - + You must select one or more items to add. - + No Search Results - + Invalid File Type - + Invalid File %s. Suffix not supported - + &Clone - + Duplicate files were found on import and were ignored. - + @@ -3608,12 +3604,12 @@ Suffix not supported <lyrics> tag is missing. - + <verse> tag is missing. - + @@ -3621,42 +3617,42 @@ Suffix not supported Plugin List - + Plugin Details - + Status: - + Active - + Inactive - + %s (Inactive) - + %s (Active) - + %s (Disabled) - + @@ -3664,12 +3660,12 @@ Suffix not supported Fit Page - + Fit Width - + @@ -3677,77 +3673,77 @@ Suffix not supported Options - + Copy - + Copy as HTML - + Zoom In - + Zoom Out - + Zoom Original - + Other Options - + Include slide text if available - + Include service item notes - + Include play length of media items - + Add page break before each text item - + Service Sheet - + Print - + Title: - + Custom Footer Text: - + @@ -3755,12 +3751,12 @@ Suffix not supported Screen - + primary - + @@ -3768,12 +3764,12 @@ Suffix not supported <strong>Start</strong>: %s - + <strong>Length</strong>: %s - + @@ -3781,7 +3777,7 @@ Suffix not supported Reorder Service Item - + @@ -3789,278 +3785,278 @@ Suffix not supported Move to &top - + Move item to the top of the service. - + Move &up - + Move item up one position in the service. - + Move &down - + Move item down one position in the service. - + Move to &bottom - + Move item to the end of the service. - + &Delete From Service - + Delete the selected item from the service. - + &Add New Item - + &Add to Selected Item - + &Edit Item - + &Reorder Item - + &Notes - + &Change Item Theme - + OpenLP Service Files (*.osz) - + 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 - + &Expand all - + Expand all the service items. - + &Collapse all - + Collapse all the service items. - + Open File - + Moves the selection down the window. - + Move up - + Moves the selection up the window. - + Go Live - + Send the selected item to Live. - + &Start Time - + Show &Preview - + Modified Service - + The current service has been modified. Would you like to save this service? - + Custom Service Notes: - + Notes: - + Playing time: - + Untitled Service - + File could not be opened because it is corrupt. - + Empty File - + This service file does not contain any data. - + Corrupt File - + Load an existing service. - + Save this service. - + Select a theme for the service. - + This file is either corrupt or it is not an OpenLP 2.0 service file. - + Service File Missing - + Slide theme - + Notes - + Edit - + Service copy only - + Error Saving File - + There was an error saving your file. - + @@ -4068,7 +4064,7 @@ The content encoding is not UTF-8. Service Item Notes - + @@ -4076,7 +4072,7 @@ The content encoding is not UTF-8. Configure OpenLP - + @@ -4084,67 +4080,67 @@ The content encoding is not UTF-8. Action - + Shortcut - + Duplicate Shortcut - + The shortcut "%s" is already assigned to another action, please use a different shortcut. - + Alternate - + Select an action and click one of the buttons below to start capturing a new primary or alternate shortcut, respectively. - + Default - + Custom - + Capture shortcut. - + Restore the default shortcut of this action. - + Restore Default Shortcuts - + Do you want to restore all shortcuts to their defaults? - + Configure Shortcuts - + @@ -4152,172 +4148,172 @@ The content encoding is not UTF-8. Hide - + Go To - + Blank Screen - + Blank to Theme - + Show Desktop - + Previous Service - + Next Service - + Escape Item - + Move to previous. - + Move to next. - + Play Slides - + Delay between slides in seconds. - + Move to live. - + Add to Service. - + Edit and reload song preview. - + Start playing media. - + Pause audio. - + Pause playing media. - + Stop playing media. - + Video position. - + Audio Volume. - + Go to "Verse" - + Go to "Chorus" - + Go to "Bridge" - + Go to "Pre-Chorus" - + Go to "Intro" - + Go to "Ending" - + Go to "Other" - + Previous Slide - + Next Slide - + Pause Audio - + Background Audio - + Go to next audio track. - + Tracks - + @@ -4325,17 +4321,17 @@ The content encoding is not UTF-8. Spelling Suggestions - + Formatting Tags - + Language: - + @@ -4343,67 +4339,67 @@ The content encoding is not UTF-8. Hours: - + Minutes: - + Seconds: - + Item Start and Finish Time - + Start - + Finish - + Length - + Time Validation Error - + Finish time is set after the end of the media item - + Start time is after the finish time of the media item - + Theme Layout - + The blue box shows the main area. - + The red box shows the footer. - + @@ -4411,32 +4407,32 @@ The content encoding is not UTF-8. Select Image - + Theme Name Missing - + There is no name for this theme. Please enter one. - + Theme Name Invalid - + Invalid theme name. Please enter one. - + (approximately %d lines per slide) - + @@ -4444,193 +4440,193 @@ The content encoding is not UTF-8. Create a new theme. - + Edit Theme - + Edit a theme. - + Delete Theme - + Delete a theme. - + Import Theme - + Import a theme. - + Export Theme - + Export a theme. - + &Edit Theme - + &Delete Theme - + Set As &Global Default - + %s (default) - + You must select a theme to edit. - + You are unable to delete the default theme. - + Theme %s is used in the %s plugin. - + You have not selected a theme. - + Save Theme - (%s) - + Theme Exported - + Your theme has been successfully exported. - + Theme Export Failed - + Your theme could not be exported due to an error. - + Select Theme Import File - + File is not a valid theme. - + &Copy Theme - + &Rename Theme - + &Export Theme - + You must select a theme to rename. - + Rename Confirmation - + Rename %s theme? - + You must select a theme to delete. - + Delete Confirmation - + Delete %s theme? - + Validation Error - + A theme with this name already exists. - + OpenLP Themes (*.theme *.otz) - + Copy of %s Copy of <theme name> - + Theme Already Exists - + @@ -4638,272 +4634,272 @@ The content encoding is not UTF-8. Theme Wizard - + Welcome to the Theme Wizard - + Set Up Background - + Set up your theme's background according to the parameters below. - + Background type: - + Solid Color - + Gradient - + Color: - + Gradient: - + Horizontal - + Vertical - + Circular - + Top Left - Bottom Right - + Bottom Left - Top Right - + Main Area Font Details - + Define the font and display characteristics for the Display text - + Font: - + Size: - + Line Spacing: - + &Outline: - + &Shadow: - + Bold - + Italic - + Footer Area Font Details - + Define the font and display characteristics for the Footer text - + Text Formatting Details - + Allows additional display formatting information to be defined - + Horizontal Align: - + Left - + Right - + Center - + Output Area Locations - + Allows you to change and move the main and footer areas. - + &Main Area - + &Use default location - + X position: - + px - + Y position: - + Width: - + Height: - + Use default location - + Theme name: - + Edit Theme - %s - + This wizard will help you to create and edit your themes. Click the next button below to start the process by setting up your background. - + Transitions: - + &Footer Area - + Starting color: - + Ending color: - + Background color: - + Justify - + Layout Preview - + Transparent - + Preview and Save - + Preview the theme and save it. - + @@ -4911,47 +4907,47 @@ The content encoding is not UTF-8. Global Theme - + Theme Level - + S&ong Level - + Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. - + &Service Level - + Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. - + &Global Level - + Use the global theme, overriding any themes associated with either the service or the songs. - + Themes - + @@ -4959,592 +4955,592 @@ The content encoding is not UTF-8. Error - + About - + &Add - + Advanced - + All Files - + Bottom - + Browse... - + Cancel - + CCLI number: - + Create a new service. - + &Delete - + &Edit - + Empty Field - + Export - + pt Abbreviated font pointsize unit - + Image - + Import - + Live - + Live Background Error - + Load - + Middle - + New - + New Service - + New Theme - + No File Selected Singular - + No Files Selected Plural - + No Item Selected Singular - + No Items Selected Plural - + openlp.org 1.x - + OpenLP 2.0 - + Preview - + Replace Background - + Reset Background - + s The abbreviated unit for seconds - + Save && Preview - + Search - + You must select an item to delete. - + You must select an item to edit. - + Save Service - + Service - + Start %s - + Theme Singular - + Themes Plural - + Top - + Version - + Delete the selected item. - + Move selection up one position. - + Move selection down one position. - + &Vertical Align: - + Finished import. - + Format: - + Importing - + Importing "%s"... - + Select Import Source - + Select the import format and the location to import from. - + The openlp.org 1.x importer has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "python-sqlite" module. - + Open %s File - + %p% - + Ready. - + Starting import... - + You need to specify at least one %s file to import from. A file type e.g. OpenSong - + Welcome to the Bible Import Wizard - + Welcome to the Song Export Wizard - + Welcome to the Song Import Wizard - + Author Singular - + Authors Plural - + - © + © Copyright symbol. - + Song Book Singular - + Song Books Plural - + Song Maintenance - + Topic Singular - + Topics Plural - + Continuous - + Default - + Display style: - + Duplicate Error - + File - + Help - + h The abbreviated unit for hours - + Layout style: - + Live Toolbar - + m The abbreviated unit for minutes - + OpenLP is already running. Do you wish to continue? - + Settings - + Tools - + Unsupported File - + Verse Per Slide - + Verse Per Line - + View - + Title and/or verses not found - + XML syntax error - + View Mode - + Open service. - + Print Service - + Replace live background. - + Reset live background. - + Split a slide into two only if it does not fit on the screen as one slide. - + Welcome to the Bible Upgrade Wizard - + Confirm Delete - + Play Slides in Loop - + Play Slides to End - + Stop Play Slides in Loop - + Stop Play Slides to End - + Next Track - + Search Themes... Search bar place holder text - + Optional &Split - + Invalid Folder Selected Singular - + Invalid File Selected Singular - + Invalid Files Selected Plural - + No Folder Selected Singular - + Open %s Folder - + You need to specify one %s file to import from. A file type e.g. OpenSong - + You need to specify one %s folder to import from. A song format e.g. PowerSong - + @@ -5553,25 +5549,25 @@ The content encoding is not UTF-8. %1 and %2 Locale list separator: 2 items - + %1, and %2 Locale list separator: end - + %1, %2 Locale list separator: middle - + %1, %2 Locale list separator: start - + @@ -5579,50 +5575,50 @@ The content encoding is not UTF-8. <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. - + Presentation name singular - + Presentations name plural - + Presentations container title - + Load a new presentation. - + Delete the selected presentation. - + Preview the selected presentation. - + Send the selected presentation live. - + Add the selected presentation to the service. - + @@ -5630,52 +5626,52 @@ The content encoding is not UTF-8. Select Presentation(s) - + Automatic - + Present using: - + File Exists - + A presentation with that filename already exists. - + This type of presentation is not supported. - + Presentations (%s) - + Missing Presentation - + The presentation %s is incomplete, please reload. - + The presentation %s no longer exists. - + @@ -5683,17 +5679,17 @@ The content encoding is not UTF-8. Available Controllers - + %s (unavailable) - + Allow presentation application to be overridden - + @@ -5701,25 +5697,25 @@ The content encoding is not UTF-8. <strong>Remote Plugin</strong><br />The remote plugin provides the ability to send messages to a running version of OpenLP on a different computer via a web browser or through the remote API. - + Remote name singular - + Remotes name plural - + Remote container title - + @@ -5727,107 +5723,107 @@ The content encoding is not UTF-8. OpenLP 2.0 Remote - + OpenLP 2.0 Stage View - + Service Manager - + Slide Controller - + Alerts - + Search - + Refresh - + Blank - + Show - + Prev - + Next - + Text - + Show Alert - + Go Live - + No Results - + Options - + Add to Service - + Home - + Theme - + Desktop - + Add &amp; Go to Service - + @@ -5835,42 +5831,42 @@ The content encoding is not UTF-8. Serve on IP address: - + Port number: - + Server Settings - + Remote URL: - + Stage view URL: - + Display stage time in 12h format - + Android App - + Scan the QR code or click <a href="https://market.android.com/details?id=org.openlp.android">download</a> to install the Android app from the Market. - + @@ -5878,85 +5874,85 @@ The content encoding is not UTF-8. &Song Usage Tracking - + &Delete Tracking Data - + Delete song usage data up to a specified date. - + &Extract Tracking Data - + Generate a report on song usage. - + Toggle Tracking - + Toggle the tracking of song usage. - + <strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services. - + SongUsage name singular - + SongUsage name plural - + SongUsage container title - + Song Usage - + Song usage tracking is active. - + Song usage tracking is inactive. - + display - + printed - + @@ -5964,32 +5960,32 @@ The content encoding is not UTF-8. Delete Song Usage Data - + Delete Selected Song Usage Events? - + Are you sure you want to delete selected Song Usage data? - + Deletion Successful - + All requested data has been deleted successfully. - + Select the date up to which the song usage data should be deleted. All data recorded before this date will be permanently deleted. - + @@ -5997,54 +5993,54 @@ The content encoding is not UTF-8. Song Usage Extraction - + Select Date Range - + to - + Report Location - + Output File Location - + usage_detail_%s_%s.txt - + Report Creation - + Report %s has been successfully created. - + Output Path Not Selected - + You have not set a valid output location for your song usage report. Please select an existing path on your computer. - + @@ -6052,173 +6048,173 @@ has been successfully created. &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... - + Arabic (CP-1256) - + Baltic (CP-1257) - + Central European (CP-1250) - + Cyrillic (CP-1251) - + Greek (CP-1253) - + Hebrew (CP-1255) - + Japanese (CP-932) - + Korean (CP-949) - + Simplified Chinese (CP-936) - + Thai (CP-874) - + Traditional Chinese (CP-950) - + Turkish (CP-1254) - + Vietnam (CP-1258) - + Western European (CP-1252) - + Character Encoding - + The codepage setting is responsible for the correct character representation. Usually you are fine with the preselected choice. - + Please choose the character encoding. The encoding is responsible for the correct character representation. - + Song name singular - + Songs name plural - + Songs container title - + Exports songs using the export wizard. - + 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. - + @@ -6226,37 +6222,37 @@ The encoding is responsible for the correct character representation. Author Maintenance - + Display name: - + First name: - + Last name: - + You need to type in the first name of the author. - + You need to type in the last name of the author. - + You have not set a display name for the author, combine the first and last names? - + @@ -6264,7 +6260,7 @@ The encoding is responsible for the correct character representation. The file does not have a valid extension. - + @@ -6272,14 +6268,14 @@ The encoding is responsible for the correct character representation. Administered by %s - + [above are Song Tags with notes imported from EasyWorship] - + @@ -6287,12 +6283,12 @@ The encoding is responsible for the correct character representation. Meta Data - + Custom Book Names - + @@ -6300,207 +6296,207 @@ The encoding is responsible for the correct character representation. Song Editor - + &Title: - + Alt&ernate title: - + &Lyrics: - + &Verse order: - + Ed&it All - + Title && Lyrics - + &Add to Song - + &Remove - + &Manage Authors, Topics, Song Books - + A&dd to Song - + R&emove - + Book: - + Number: - + Authors, Topics && Song Book - + New &Theme - + Copyright Information - + Comments - + Theme, Copyright Info && Comments - + Add Author - + This author does not exist, do you want to add them? - + This author is already in the list. - + You have not selected a valid author. Either select an author from the list, or type in a new author and click the "Add Author to Song" button to add the new author. - + Add Topic - + This topic does not exist, do you want to add it? - + This topic is already in the list. - + You have not selected a valid topic. Either select a topic from the list, or type in a new topic and click the "Add Topic to Song" button to add the new topic. - + You need to type in a song title. - + You need to type in at least one verse. - + The verse order is invalid. There is no verse corresponding to %s. Valid entries are %s. - + Add Book - + This song book does not exist, do you want to add it? - + You need to have an author for this song. - + You need to type some text in to the verse. - + Linked Audio - + Add &File(s) - + Add &Media - + Remove &All - + Open File(s) - + <strong>Warning:</strong> Not all of the verses are in use. - + The verse order is invalid. There are no verses corresponding to %s. Valid entries are %s. - + @@ -6508,22 +6504,22 @@ The encoding is responsible for the correct character representation. Edit Verse - + &Verse type: - + &Insert - + Split a slide into two by inserting a verse splitter. - + @@ -6531,82 +6527,82 @@ The encoding is responsible for the correct character representation. Song Export Wizard - + Select Songs - + Check the songs you want to export. - + Uncheck All - + Check All - + Select Directory - + Directory: - + Exporting - + Please wait while your songs are exported. - + You need to add at least one Song to export. - + No Save Location specified - + Starting export... - + You need to specify a directory. - + Select Destination Folder - + Select the directory where you want the songs to be saved. - + This wizard will help to export your songs to the open and free <strong>OpenLyrics</strong> worship song format. - + @@ -6614,172 +6610,172 @@ The encoding is responsible for the correct character representation. Select Document/Presentation Files - + Song Import Wizard - + This wizard will help you to import songs from a variety of formats. Click the next button below to start the process by selecting a format to import from. - + Generic Document/Presentation - + Add Files... - + Remove File(s) - + Please wait while your songs are imported. - + OpenLP 2.0 Databases - + openlp.org v1.x Databases - + Words Of Worship Song Files - + Songs Of Fellowship Song Files - + SongBeamer Files - + SongShow Plus Song Files - + Foilpresenter Song Files - + Copy - + Save to File - + The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. - + The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. - + OpenLyrics or OpenLP 2.0 Exported Song - + OpenLyrics Files - + CCLI SongSelect Files - + EasySlides XML File - + EasyWorship Song Database - + DreamBeam Song Files - + You need to specify a valid PowerSong 1.0 database folder. - + ZionWorx (CSV) - + First convert your ZionWorx database to a CSV text file, as explained in the <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">User Manual</a>. - + SundayPlus Song Files - + This importer has been disabled. - + MediaShout Database - + The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. - + SongPro Text Files - + SongPro (Export File) - + In SongPro, export your songs using the File -> Export menu - + @@ -6787,12 +6783,12 @@ The encoding is responsible for the correct character representation. Select Media File(s) - + Select one or more audio files from the list below, and click OK to import them into this song. - + @@ -6800,66 +6796,63 @@ The encoding is responsible for the correct character representation. Titles - + Lyrics - + CCLI License: - + Entire Song - + Are you sure you want to delete the %n selected song(s)? - - - - + Maintain the lists of authors, topics and books. - + copy For song cloning - + Search Titles... - + Search Entire Song... - + Search Lyrics... - + Search Authors... - + Search Song Books... - + @@ -6867,7 +6860,7 @@ The encoding is responsible for the correct character representation. Unable to open the MediaShout database. - + @@ -6875,7 +6868,7 @@ The encoding is responsible for the correct character representation. Not a valid openlp.org 1.x song database. - + @@ -6883,7 +6876,7 @@ The encoding is responsible for the correct character representation. Not a valid OpenLP 2.0 song database. - + @@ -6891,7 +6884,7 @@ The encoding is responsible for the correct character representation. Exporting "%s"... - + @@ -6899,12 +6892,12 @@ The encoding is responsible for the correct character representation. No songs to import. - + Verses not found. Missing "PART" header. - + @@ -6912,22 +6905,22 @@ The encoding is responsible for the correct character representation. Song Book Maintenance - + &Name: - + &Publisher: - + You need to type in a name for the book. - + @@ -6935,12 +6928,12 @@ The encoding is responsible for the correct character representation. Your song export failed. - + Finished export. To import these files use the <strong>OpenLyrics</strong> importer. - + @@ -6948,27 +6941,27 @@ The encoding is responsible for the correct character representation. copyright - + The following songs could not be imported: - + Cannot access OpenOffice or LibreOffice - + Unable to open file - + File not found - + @@ -6976,107 +6969,107 @@ The encoding is responsible for the correct character representation. Could not add your author. - + This author already exists. - + Could not add your topic. - + This topic already exists. - + Could not add your book. - + This book already exists. - + Could not save your changes. - + Could not save your modified author, because the author already exists. - + Could not save your modified topic, because it already exists. - + Delete Author - + Are you sure you want to delete the selected author? - + This author cannot be deleted, they are currently assigned to at least one song. - + Delete Topic - + Are you sure you want to delete the selected topic? - + This topic cannot be deleted, it is currently assigned to at least one song. - + Delete Book - + Are you sure you want to delete the selected book? - + This book cannot be deleted, it is currently assigned to at least one song. - + The author %s already exists. Would you like to make songs with author %s use the existing author %s? - + The topic %s already exists. Would you like to make songs with topic %s use the existing topic %s? - + The book %s already exists. Would you like to make songs with book %s use the existing book %s? - + @@ -7084,27 +7077,27 @@ The encoding is responsible for the correct character representation. Songs Mode - + Enable search as you type - + Display verses on live tool bar - + Update service from song edit - + Import missing songs from service files - + @@ -7112,17 +7105,17 @@ The encoding is responsible for the correct character representation. Topic Maintenance - + Topic name: - + You need to type in a topic name. - + @@ -7130,37 +7123,37 @@ The encoding is responsible for the correct character representation. Verse - + Chorus - + Bridge - + Pre-Chorus - + Intro - + Ending - + Other - + @@ -7168,12 +7161,12 @@ The encoding is responsible for the correct character representation. Error reading CSV file. - + File not valid ZionWorx CSV format. - + - + \ No newline at end of file diff --git a/resources/i18n/sv.ts b/resources/i18n/sv.ts index db1e6ca68..e88cff246 100644 --- a/resources/i18n/sv.ts +++ b/resources/i18n/sv.ts @@ -1,5 +1,4 @@ - - + AlertsPlugin @@ -102,7 +101,7 @@ Vill du fortsätta ändå? - The alert text does not contain '<>'. + The alert text does not contain '<>'. Do you want to continue anyway? Meddelandet innehåller inte '<>'. Vill du fortsätta ändå? @@ -1709,10 +1708,7 @@ Observera att verser från webb-biblar kommer att laddas ner vid behov, och där Are you sure you want to delete the %n selected custom slide(s)? - - Är du säker på att du vill ta bort den valda bilden? - Är du säker på att du vill ta bort de %n valda bilderna? - + Är du säker på att du vill ta bort den valda bilden?Är du säker på att du vill ta bort de %n valda bilderna? @@ -2077,7 +2073,7 @@ Translators %s Japanese (ja) %s - Norwegian Bokmål (nb) + Norwegian Bokmål (nb) %s Dutch (nl) %s @@ -2187,8 +2183,8 @@ OpenLP utvecklas och underhålls av frivilliga. Om du vill se mer fri kristen mj - Copyright © 2004-2012 %s -Portions copyright © 2004-2012 %s + Copyright © 2004-2012 %s +Portions copyright © 2004-2012 %s Copyright © 2004-2012 %s Del-copyright © 2004-2012 %s @@ -5449,7 +5445,7 @@ Innehållets teckenkodning är inte UTF-8. - © + © Copyright symbol. © @@ -6977,10 +6973,7 @@ Teckenkodningen ansvarar för rätt teckenrepresentation. Are you sure you want to delete the %n selected song(s)? - - Är du säker på att du vill ta bort den valda sången? - Är du säker på att du vill ta bort de %n valda sångerna? - + Är du säker på att du vill ta bort den valda sången?Är du säker på att du vill ta bort de %n valda sångerna? @@ -7333,4 +7326,4 @@ Teckenkodningen ansvarar för rätt teckenrepresentation. Filen är inte i giltigt ZionWorx CSV-format. - + \ No newline at end of file diff --git a/resources/i18n/zh_CN.ts b/resources/i18n/zh_CN.ts index 8cdf41c6e..ef3da7b77 100644 --- a/resources/i18n/zh_CN.ts +++ b/resources/i18n/zh_CN.ts @@ -1,39 +1,38 @@ - - + AlertsPlugin &Alert - + Show an alert message. - + Alert name singular - + Alerts name plural - + Alerts container title - + <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of nursery alerts on the display screen. - + @@ -41,69 +40,69 @@ Alert Message - + Alert &text: - + &New - + &Save - + Displ&ay - + Display && Cl&ose - + New Alert - + You haven't specified any text for your alert. Please type in some text before clicking New. - + &Parameter: - + No Parameter Found - + You have not entered a parameter to be replaced. Do you want to continue anyway? - + No Placeholder Found - + - The alert text does not contain '<>'. + The alert text does not contain '<>'. Do you want to continue anyway? - + @@ -111,7 +110,7 @@ Do you want to continue anyway? Alert message created and displayed. - + @@ -119,32 +118,32 @@ Do you want to continue anyway? Font - + Font name: - + Font color: - + Background color: - + Font size: - + Alert timeout: - + @@ -152,511 +151,511 @@ Do you want to continue anyway? &Bible - + Bible name singular - + Bibles name plural - + Bibles container title - + No Book Found - + No matching book could be found in this Bible. Check that you have spelled the name of the book correctly. - + Import a Bible. - + Add a new Bible. - + Edit the selected Bible. - + Delete the selected Bible. - + Preview the selected Bible. - + Send the selected Bible live. - + Add the selected Bible to the service. - + <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display Bible verses from different sources during the service. - + &Upgrade older Bibles - + Upgrade the Bible databases to the latest format. - + Genesis - + Exodus - + Leviticus - + Numbers - + Deuteronomy - + Joshua - + Judges - + Ruth - + 1 Samuel - + 2 Samuel - + 1 Kings - + 2 Kings - + 1 Chronicles - + 2 Chronicles - + Ezra - + Nehemiah - + Esther - + Job - + Psalms - + Proverbs - + Ecclesiastes - + Song of Solomon - + Isaiah - + Jeremiah - + Lamentations - + Ezekiel - + Daniel - + Hosea - + Joel - + Amos - + Obadiah - + Jonah - + Micah - + Nahum - + Habakkuk - + Zephaniah - + Haggai - + Zechariah - + Malachi - + Matthew - + Mark - + Luke - + John - + Acts - + Romans - + 1 Corinthians - + 2 Corinthians - + Galatians - + Ephesians - + Philippians - + Colossians - + 1 Thessalonians - + 2 Thessalonians - + 1 Timothy - + 2 Timothy - + Titus - + Philemon - + Hebrews - + James - + 1 Peter - + 2 Peter - + 1 John - + 2 John - + 3 John - + Jude - + Revelation - + Judith - + Wisdom - + Tobit - + Sirach - + Baruch - + 1 Maccabees - + 2 Maccabees - + 3 Maccabees - + 4 Maccabees - + Rest of Daniel - + Rest of Esther - + Prayer of Manasses - + Letter of Jeremiah - + Prayer of Azariah - + Susanna - + Bel - + 1 Esdras - + 2 Esdras - + :|v|V|verse|verses;;-|to;;,|and;;end Double-semicolon delimited separators for parsing references. Consult the developers for further information. - + @@ -664,44 +663,44 @@ Do you want to continue anyway? You need to specify a version name for your Bible. - + You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. - + Bible Exists - + This Bible already exists. Please import a different Bible or first delete the existing one. - + You need to specify a book name for "%s". - + The book name "%s" is not correct. Numbers can only be used at the beginning and must be followed by one or more non-numeric characters. - + Duplicate Book Name - + The Book Name "%s" has been entered more than once. - + @@ -709,33 +708,33 @@ be followed by one or more non-numeric characters. Scripture Reference Error - + Web Bible cannot be used - + Text Search is not available with Web Bibles. - + You did not enter a search keyword. You can separate different keywords by a space to search for all of your keywords and you can separate them by a comma to search for one of them. - + There are no Bibles currently installed. Please use the Import Wizard to install one or more Bibles. - + No Bibles Available - + @@ -748,7 +747,7 @@ Book Chapter%(verse)sVerse%(range)sVerse%(list)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sVerse%(list)sChapter%(verse)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sChapter%(verse)sVerse Please pay attention to the appended "s" of the wildcards and refrain from translating the words inside the names in the brackets. - + @@ -756,127 +755,127 @@ Book Chapter%(verse)sVerse%(range)sChapter%(verse)sVerse Verse Display - + Only show new chapter numbers - + Bible theme: - + No Brackets - + ( And ) - + { And } - + [ And ] - + Note: Changes do not affect verses already in the service. - + Display second Bible verses - + Custom Scripture References - + Verse Separator: - + Range Separator: - + List Separator: - + End Mark: - + Multiple alternative verse separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. - + Multiple alternative range separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. - + Multiple alternative list separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. - + Multiple alternative end marks may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. - + English - 中国 + Default Bible Language - + Book name language in search field, search results and on display: - + Bible Language - + Application Language - + @@ -884,42 +883,42 @@ search results and on display: Select Book Name - + Current name: - + Corresponding name: - + Show Books From - + Old Testament - + New Testament - + Apocrypha - + The following book name cannot be matched up internally. Please select the corresponding name from the list. - + @@ -927,7 +926,7 @@ search results and on display: You need to select a book. - + @@ -935,18 +934,18 @@ search results and on display: Importing books... %s - + Importing verses from %s... Importing verses from <book name>... - + Importing verses... done. - + @@ -954,68 +953,68 @@ search results and on display: Bible Editor - + License Details - + Version name: - + Copyright: - + Permissions: - + Default Bible Language - + Book name language in search field, search results and on display: - + Global Settings - + Bible Language - + Application Language - + English - 中国 + This is a Web Download Bible. It is not possible to customize the Book Names. - + To use the customized book names, "Bible language" must be selected on the Meta Data tab or, if "Global settings" is selected, on the Bible page in Configure OpenLP. - + @@ -1023,38 +1022,38 @@ It is not possible to customize the Book Names. Registering Bible and loading books... - + Registering Language... - + Importing %s... Importing <book name>... - + Download Error - + There was a problem downloading your verse selection. Please check your Internet connection, and if this error continues to occur please consider reporting a bug. - + Parse Error - + There was a problem extracting your verse selection. If this error continues to occur please consider reporting a bug. - + @@ -1062,168 +1061,168 @@ It is not possible to customize the Book Names. Bible Import Wizard - + This wizard will help you to import Bibles from a variety of formats. Click the next button below to start the process by selecting a format to import from. - + Web Download - + Location: - + Crosswalk - + BibleGateway - + Bible: - + Download Options - + Server: - + Username: - + Password: - + Proxy Server (Optional) - + License Details - + Set up the Bible's license details. - + Version name: - + Copyright: - + Please wait while your Bible is imported. - + You need to specify a file with books of the Bible to use in the import. - + You need to specify a file of Bible verses to import. - + You need to specify a version name for your Bible. - + You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. - + Bible Exists - + This Bible already exists. Please import a different Bible or first delete the existing one. - + Your Bible import failed. - + CSV File - + Bibleserver - + Permissions: - + Bible file: - + Books file: - + Verses file: - + openlp.org 1.x Bible Files - + Registering Bible... - + Registered Bible. Please note, that verses will be downloaded on demand and thus an internet connection is required. - + @@ -1231,17 +1230,17 @@ demand and thus an internet connection is required. Select Language - + OpenLP is unable to determine the language of this translation of the Bible. Please select the language from the list below. - + Language: - + @@ -1249,7 +1248,7 @@ demand and thus an internet connection is required. You need to choose a language. - + @@ -1257,94 +1256,94 @@ demand and thus an internet connection is required. Quick - + Find: - + Book: - + Chapter: - + Verse: - + From: - + To: - + Text Search - + Second: - + Scripture Reference - + Toggle to keep or clear the previous results. - + You cannot combine single and dual Bible verse search results. Do you want to delete your search results and start a new search? - + Bible not fully loaded. - + Information - + The second Bible does not contain all the verses that are in the main Bible. Only verses found in both Bibles will be shown. %d verses have not been included in the results. - + Search Scripture Reference... - + Search Text... - + Are you sure you want to completely delete "%s" Bible from OpenLP? You will need to re-import this Bible to use it again. - + @@ -1352,7 +1351,7 @@ You will need to re-import this Bible to use it again. Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. - + @@ -1361,7 +1360,7 @@ You will need to re-import this Bible to use it again. Importing %s %s... Importing <book name> <chapter>... - + @@ -1369,13 +1368,13 @@ You will need to re-import this Bible to use it again. Detecting encoding (this may take a few minutes)... - + Importing %s %s... Importing <book name> <chapter>... - + @@ -1383,143 +1382,143 @@ You will need to re-import this Bible to use it again. Select a Backup Directory - + Bible Upgrade Wizard - + This wizard will help you to upgrade your existing Bibles from a prior version of OpenLP 2. Click the next button below to start the upgrade process. - + Select Backup Directory - + Please select a backup directory for your Bibles - + Previous releases of OpenLP 2.0 are unable to use upgraded Bibles. This will create a backup of your current Bibles so that you can simply copy the files back to your OpenLP data directory if you need to revert to a previous release of OpenLP. Instructions on how to restore the files can be found in our <a href="http://wiki.openlp.org/faq">Frequently Asked Questions</a>. - + Please select a backup location for your Bibles. - + Backup Directory: - + There is no need to backup my Bibles - + Select Bibles - + Please select the Bibles to upgrade - + Upgrading - + Please wait while your Bibles are upgraded. - + The backup was not successful. To backup your Bibles you need permission to write to the given directory. - + Upgrading Bible %s of %s: "%s" Failed - + Upgrading Bible %s of %s: "%s" Upgrading ... - + Download Error - + To upgrade your Web Bibles an Internet connection is required. - + Upgrading Bible %s of %s: "%s" Upgrading %s ... - + Upgrading Bible %s of %s: "%s" Complete - + , %s failed - + Upgrading Bible(s): %s successful%s Please note that verses from Web Bibles will be downloaded on demand and so an Internet connection is required. - + Upgrading Bible(s): %s successful%s - + Upgrade failed. - + You need to specify a backup directory for your Bibles. - + Starting upgrade... - + There are no Bibles that need to be upgraded. - + @@ -1527,65 +1526,65 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I <strong>Custom Slide Plugin</strong><br />The custom slide plugin provides the ability to set up custom text slides that can be displayed on the screen the same way songs are. This plugin provides greater freedom over the songs plugin. - + Custom Slide name singular - + Custom Slides name plural - + Custom Slides container title - + Load a new custom slide. - + Import a custom slide. - + Add a new custom slide. - + Edit the selected custom slide. - + Delete the selected custom slide. - + Preview the selected custom slide. - + Send the selected custom slide live. - + Add the selected custom slide to the service. - + @@ -1593,12 +1592,12 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I Custom Display - + Display footer - + @@ -1606,62 +1605,62 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I Edit Custom Slides - + &Title: - + Add a new slide at bottom. - + Edit the selected slide. - + Edit all the slides at once. - + Split a slide into two by inserting a slide splitter. - + The&me: - + &Credits: - + You need to type in a title. - + You need to add at least one slide - + Ed&it All - + Insert Slide - + @@ -1669,7 +1668,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I Edit Slide - + @@ -1677,9 +1676,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I Are you sure you want to delete the %n selected custom slide(s)? - - - + @@ -1687,60 +1684,60 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I <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. - + Image name singular - + Images name plural - + Images container title - + 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. - + @@ -1748,7 +1745,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I Select Attachment - + @@ -1756,43 +1753,43 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I Select Image(s) - + You must select an image to delete. - + You must select an image to replace the background with. - + Missing Image(s) - + The following image(s) no longer exist: %s - + The following image(s) no longer exist: %s Do you want to add the other images anyway? - + There was a problem replacing your background, the image file "%s" no longer exists. - + There was no display item to amend. - + @@ -1800,17 +1797,17 @@ Do you want to add the other images anyway? Background Color - + Default Color: - + Visible background for images with aspect ratio different to screen. - + @@ -1818,60 +1815,60 @@ Do you want to add the other images anyway? <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. - + Media name singular - + Media name plural - + Media container title - + Load new media. - + Add 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. - + @@ -1879,57 +1876,57 @@ Do you want to add the other images anyway? Select Media - + You must select a media file to delete. - + You must select a media file to replace the background with. - + There was a problem replacing your background, the media file "%s" no longer exists. - + Missing Media File - + The file %s no longer exists. - + Videos (%s);;Audio (%s);;%s (*) - + There was no display item to amend. - + Unsupported File - + Automatic - + Use Player: - + @@ -1937,22 +1934,22 @@ Do you want to add the other images anyway? Available Media Players - + %s (unavailable) - + Player Order - + Allow media player to be overridden - + @@ -1960,19 +1957,19 @@ Do you want to add the other images anyway? Image Files - + Information - + Bible format has changed. You have to upgrade your existing Bibles. Should OpenLP upgrade now? - + @@ -1980,32 +1977,32 @@ Should OpenLP upgrade now? Credits - + License - + Contribute - + build %s - + This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See below for more details. - + @@ -2041,7 +2038,7 @@ Translators %s Japanese (ja) %s - Norwegian Bokmål (nb) + Norwegian Bokmål (nb) %s Dutch (nl) %s @@ -2070,7 +2067,7 @@ Final Credit on the cross, setting us free from sin. We bring this software to you for free because He has set us free. - + @@ -2081,13 +2078,13 @@ OpenLP is free church presentation software, or lyrics projection software, used Find out more about OpenLP: http://openlp.org/ OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider contributing by using the button below. - + - Copyright © 2004-2012 %s -Portions copyright © 2004-2012 %s - + Copyright © 2004-2012 %s +Portions copyright © 2004-2012 %s + @@ -2095,271 +2092,271 @@ Portions copyright © 2004-2012 %s UI Settings - + Number of recent files to display: - + Remember active media manager tab on startup - + Double-click to send items straight to live - + Expand new service items on creation - + Enable application exit confirmation - + Mouse Cursor - + Hide mouse cursor when over display window - + Default Image - + Background color: - + Image file: - + Open File - + Advanced - + Preview items when clicked in Media Manager - + Click to select a color. - + Browse for an image file to display. - + Revert to the default OpenLP logo. - + Service %Y-%m-%d %H-%M This may not contain any of the following characters: /\?*|<>[]":+ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for more information. - + Default Service Name - + Enable default service name - + Date and Time: - + Monday - + Tuesday - + Wednesday - + Thurdsday - + Friday - + Saturday - + Sunday - + Now - + Time when usual service starts. - + Name: - + Consult the OpenLP manual for usage. - + Revert to the default service name "%s". - + Example: - + X11 - + Bypass X11 Window Manager - + Syntax error. - + Data Location - + Current path: - + Custom path: - + Browse for new data file location. - + Set the data location to the default. - + Cancel - + Cancel OpenLP data directory location change. - + Copy data to new location. - + Copy the OpenLP data files to the new location. - + <strong>WARNING:</strong> New data directory location contains OpenLP data files. These files WILL be replaced during a copy. - + Data Directory Error - + Select Data Directory Location - + Confirm Data Directory Change - + Reset Data Directory - + Are you sure you want to change the location of the OpenLP data directory to the default location? This location will be used after OpenLP is closed. - + Overwrite Existing Data - + @@ -2367,38 +2364,38 @@ This location will be used after OpenLP is closed. Error Occurred - + Oops! OpenLP hit a problem, and couldn't recover. The text in the box below contains information that might be helpful to the OpenLP developers, so please e-mail it to bugs@openlp.org, along with a detailed description of what you were doing when the problem occurred. - + Send E-Mail - + Save to File - + Please enter a description of what you were doing to cause this error (Minimum 20 characters) - + Attach File - + Description characters to enter : %s - + @@ -2407,17 +2404,17 @@ This location will be used after OpenLP is closed. Platform: %s - + Save Crash Report - + Text files (*.txt *.log *.text) - + @@ -2435,7 +2432,7 @@ Version: %s --- Library Versions --- %s - + @@ -2454,7 +2451,7 @@ Version: %s %s Please add the information that bug reports are favoured written in English. - + @@ -2462,17 +2459,17 @@ Version: %s File Rename - + New File Name: - + File Copy - + @@ -2480,17 +2477,17 @@ Version: %s Select Translation - + Choose the translation you'd like to use in OpenLP. - + Translation: - + @@ -2498,201 +2495,201 @@ Version: %s Songs - + First Time Wizard - + Welcome to the First Time Wizard - + Activate required Plugins - + Select the Plugins you wish to use. - + Bible - + Images - + Presentations - + Media (Audio and Video) - + Allow remote access - + Monitor Song Usage - + Allow Alerts - + Default Settings - + Downloading %s... - + Download complete. Click the finish button to start OpenLP. - + Enabling selected plugins... - + No Internet Connection - + Unable to detect an Internet connection. - + Sample Songs - + Select and download public domain songs. - + Sample Bibles - + Select and download free Bibles. - + Sample Themes - + Select and download sample themes. - + Set up default settings to be used by OpenLP. - + Default output display: - + Select default theme: - + Starting configuration process... - + This wizard will help you to configure OpenLP for initial use. Click the next button below to start. - + Setting Up And Downloading - + Please wait while OpenLP is set up and your data is downloaded. - + Setting Up - + Click the finish button to start OpenLP. - + Download complete. Click the finish button to return to OpenLP. - + Click the finish button to return to OpenLP. - + Custom Slides - + Finish - + No Internet connection was found. The First Time Wizard needs an Internet connection in order to be able to download sample songs, Bibles and themes. Click the Finish button now to start OpenLP with initial settings and no sample data. To re-run the First Time Wizard and import this sample data at a later time, check your Internet connection and re-run this wizard by selecting "Tools/Re-run First Time Wizard" from OpenLP. - + To cancel the First Time Wizard completely (and not start OpenLP), click the Cancel button now. - + @@ -2700,37 +2697,37 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can Configure Formatting Tags - + Edit Selection - + Save - + Description - + Tag - + Start HTML - + End HTML - + @@ -2738,32 +2735,32 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can Update Error - + Tag "n" already defined. - + New Tag - + <HTML here> - + </and here> - + Tag %s already defined. - + @@ -2771,82 +2768,82 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can Red - + Black - + Blue - + Yellow - + Green - + Pink - + Orange - + Purple - + White - + Superscript - + Subscript - + Paragraph - + Bold - + Italics - + Underline - + Break - + @@ -2854,157 +2851,157 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can General - + Monitors - + Select monitor for output display: - + Display if a single screen - + Application Startup - + Show blank screen warning - + Automatically open the last service - + Show the splash screen - + Application Settings - + Prompt to save before starting a new service - + Automatically preview next item in service - + sec - + CCLI Details - + SongSelect username: - + SongSelect password: - + X - + Y - + Height - + Width - + Check for updates to OpenLP - + Unblank display when adding new live item - + Timed slide interval: - + Background Audio - + Start background audio paused - + Service Item Slide Limits - + Override display position: - + Repeat track list - + Behavior of next/previous on the last/first slide: - + &Remain on Slide - + &Wrap around - + &Move to next/previous service item - + @@ -3012,12 +3009,12 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can Language - + Please restart OpenLP to use your new language setting. - + @@ -3025,7 +3022,7 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can OpenLP Display - + @@ -3033,309 +3030,309 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can &File - + &Import - + &Export - + &View - + M&ode - + &Tools - + &Settings - + &Language - + &Help - + Media Manager - + Service Manager - + Theme Manager - + &New - + &Open - + Open an existing service. - + &Save - + Save the current service to disk. - + Save &As... - + Save Service As - + Save the current service under a new name. - + E&xit - + Quit OpenLP - + &Theme - + &Configure OpenLP... - + &Media Manager - + Toggle Media Manager - + Toggle the visibility of the media manager. - + &Theme Manager - + Toggle Theme Manager - + Toggle the visibility of the theme manager. - + &Service Manager - + Toggle Service Manager - + Toggle the visibility of the service manager. - + &Preview Panel - + Toggle Preview Panel - + Toggle the visibility of the preview panel. - + &Live Panel - + Toggle Live Panel - + Toggle the visibility of the live panel. - + &Plugin List - + List the Plugins - + &User Guide - + &About - + More information about OpenLP - + &Online Help - + &Web Site - + Use the system language, if available. - + Set the interface language to %s - + Add &Tool... - + Add an application to the list of tools. - + &Default - + Set the view mode back to the default. - + &Setup - + Set the view mode to Setup. - + &Live - + Set the view mode to Live. - + Version %s of OpenLP is now available for download (you are currently running version %s). You can download the latest version from http://openlp.org/. - + OpenLP Version Updated - + OpenLP Main Display Blanked - + The Main Display has been blanked out - + Default Theme: %s - + @@ -3346,120 +3343,120 @@ You can download the latest version from http://openlp.org/. Configure &Shortcuts... - + Close OpenLP - + Are you sure you want to close OpenLP? - + Open &Data Folder... - + Open the folder where songs, bibles and other data resides. - + &Autodetect - + Update Theme Images - + Update the preview images for all themes. - + Print the current service. - + &Recent Files - + L&ock Panels - + Prevent the panels being moved. - + Re-run First Time Wizard - + Re-run the First Time Wizard, importing songs, Bibles and themes. - + Re-run First Time Wizard? - + Are you sure you want to re-run the First Time Wizard? Re-running this wizard may make changes to your current OpenLP configuration and possibly add songs to your existing songs list and change your default theme. - + Clear List Clear List of recent files - + Clear the list of recent files. - + Configure &Formatting Tags... - + Export OpenLP settings to a specified *.config file - + Settings - + Import OpenLP settings from a specified *.config file previously exported on this or another machine - + Import settings? - + @@ -3468,42 +3465,42 @@ Re-running this wizard may make changes to your current OpenLP configuration and Importing settings will make permanent changes to your current OpenLP configuration. Importing incorrect settings may cause erratic behaviour or OpenLP to terminate abnormally. - + Open File - + OpenLP Export Settings Files (*.conf) - + Import settings - + OpenLP will now close. Imported settings will be applied the next time you start OpenLP. - + Export Settings File - + OpenLP Export Settings File (*.conf) - + New Data Directory Error - + @@ -3511,21 +3508,21 @@ Importing incorrect settings may cause erratic behaviour or OpenLP to terminate Database Error - + The database being loaded was created in a more recent version of OpenLP. The database is version %d, while OpenLP expects version %d. The database will not be loaded. Database: %s - + OpenLP cannot load your database. Database: %s - + @@ -3533,73 +3530,73 @@ Database: %s No Items Selected - + &Add to selected Service Item - + You must select one or more items to preview. - + You must select one or more items to send live. - + You must select one or more items. - + You must select an existing service item to add to. - + Invalid Service Item - + You must select a %s service item. - + You must select one or more items to add. - + No Search Results - + Invalid File Type - + Invalid File %s. Suffix not supported - + &Clone - + Duplicate files were found on import and were ignored. - + @@ -3607,12 +3604,12 @@ Suffix not supported <lyrics> tag is missing. - + <verse> tag is missing. - + @@ -3620,42 +3617,42 @@ Suffix not supported Plugin List - + Plugin Details - + Status: - + Active - + Inactive - + %s (Inactive) - + %s (Active) - + %s (Disabled) - + @@ -3663,12 +3660,12 @@ Suffix not supported Fit Page - + Fit Width - + @@ -3676,77 +3673,77 @@ Suffix not supported Options - + Copy - + Copy as HTML - + Zoom In - + Zoom Out - + Zoom Original - + Other Options - + Include slide text if available - + Include service item notes - + Include play length of media items - + Add page break before each text item - + Service Sheet - + Print - + Title: - + Custom Footer Text: - + @@ -3754,12 +3751,12 @@ Suffix not supported Screen - + primary - + @@ -3767,12 +3764,12 @@ Suffix not supported <strong>Start</strong>: %s - + <strong>Length</strong>: %s - + @@ -3780,7 +3777,7 @@ Suffix not supported Reorder Service Item - + @@ -3788,278 +3785,278 @@ Suffix not supported Move to &top - + Move item to the top of the service. - + Move &up - + Move item up one position in the service. - + Move &down - + Move item down one position in the service. - + Move to &bottom - + Move item to the end of the service. - + &Delete From Service - + Delete the selected item from the service. - + &Add New Item - + &Add to Selected Item - + &Edit Item - + &Reorder Item - + &Notes - + &Change Item Theme - + OpenLP Service Files (*.osz) - + 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 - + &Expand all - + Expand all the service items. - + &Collapse all - + Collapse all the service items. - + Open File - + Moves the selection down the window. - + Move up - + Moves the selection up the window. - + Go Live - + Send the selected item to Live. - + &Start Time - + Show &Preview - + Modified Service - + The current service has been modified. Would you like to save this service? - + Custom Service Notes: - + Notes: - + Playing time: - + Untitled Service - + File could not be opened because it is corrupt. - + Empty File - + This service file does not contain any data. - + Corrupt File - + Load an existing service. - + Save this service. - + Select a theme for the service. - + This file is either corrupt or it is not an OpenLP 2.0 service file. - + Service File Missing - + Slide theme - + Notes - + Edit - + Service copy only - + Error Saving File - + There was an error saving your file. - + @@ -4067,7 +4064,7 @@ The content encoding is not UTF-8. Service Item Notes - + @@ -4075,7 +4072,7 @@ The content encoding is not UTF-8. Configure OpenLP - + @@ -4083,67 +4080,67 @@ The content encoding is not UTF-8. Action - + Shortcut - + Duplicate Shortcut - + The shortcut "%s" is already assigned to another action, please use a different shortcut. - + Alternate - + Select an action and click one of the buttons below to start capturing a new primary or alternate shortcut, respectively. - + Default - + Custom - + Capture shortcut. - + Restore the default shortcut of this action. - + Restore Default Shortcuts - + Do you want to restore all shortcuts to their defaults? - + Configure Shortcuts - + @@ -4151,172 +4148,172 @@ The content encoding is not UTF-8. Hide - + Go To - + Blank Screen - + Blank to Theme - + Show Desktop - + Previous Service - + Next Service - + Escape Item - + Move to previous. - + Move to next. - + Play Slides - + Delay between slides in seconds. - + Move to live. - + Add to Service. - + Edit and reload song preview. - + Start playing media. - + Pause audio. - + Pause playing media. - + Stop playing media. - + Video position. - + Audio Volume. - + Go to "Verse" - + Go to "Chorus" - + Go to "Bridge" - + Go to "Pre-Chorus" - + Go to "Intro" - + Go to "Ending" - + Go to "Other" - + Previous Slide - + Next Slide - + Pause Audio - + Background Audio - + Go to next audio track. - + Tracks - + @@ -4324,17 +4321,17 @@ The content encoding is not UTF-8. Spelling Suggestions - + Formatting Tags - + Language: - + @@ -4342,67 +4339,67 @@ The content encoding is not UTF-8. Hours: - + Minutes: - + Seconds: - + Item Start and Finish Time - + Start - + Finish - + Length - + Time Validation Error - + Finish time is set after the end of the media item - + Start time is after the finish time of the media item - + Theme Layout - + The blue box shows the main area. - + The red box shows the footer. - + @@ -4410,32 +4407,32 @@ The content encoding is not UTF-8. Select Image - + Theme Name Missing - + There is no name for this theme. Please enter one. - + Theme Name Invalid - + Invalid theme name. Please enter one. - + (approximately %d lines per slide) - + @@ -4443,193 +4440,193 @@ The content encoding is not UTF-8. Create a new theme. - + Edit Theme - + Edit a theme. - + Delete Theme - + Delete a theme. - + Import Theme - + Import a theme. - + Export Theme - + Export a theme. - + &Edit Theme - + &Delete Theme - + Set As &Global Default - + %s (default) - + You must select a theme to edit. - + You are unable to delete the default theme. - + Theme %s is used in the %s plugin. - + You have not selected a theme. - + Save Theme - (%s) - + Theme Exported - + Your theme has been successfully exported. - + Theme Export Failed - + Your theme could not be exported due to an error. - + Select Theme Import File - + File is not a valid theme. - + &Copy Theme - + &Rename Theme - + &Export Theme - + You must select a theme to rename. - + Rename Confirmation - + Rename %s theme? - + You must select a theme to delete. - + Delete Confirmation - + Delete %s theme? - + Validation Error - + A theme with this name already exists. - + OpenLP Themes (*.theme *.otz) - + Copy of %s Copy of <theme name> - + Theme Already Exists - + @@ -4637,272 +4634,272 @@ The content encoding is not UTF-8. Theme Wizard - + Welcome to the Theme Wizard - + Set Up Background - + Set up your theme's background according to the parameters below. - + Background type: - + Solid Color - + Gradient - + Color: - + Gradient: - + Horizontal - + Vertical - + Circular - + Top Left - Bottom Right - + Bottom Left - Top Right - + Main Area Font Details - + Define the font and display characteristics for the Display text - + Font: - + Size: - + Line Spacing: - + &Outline: - + &Shadow: - + Bold - + Italic - + Footer Area Font Details - + Define the font and display characteristics for the Footer text - + Text Formatting Details - + Allows additional display formatting information to be defined - + Horizontal Align: - + Left - + Right - + Center - + Output Area Locations - + Allows you to change and move the main and footer areas. - + &Main Area - + &Use default location - + X position: - + px - + Y position: - + Width: - + Height: - + Use default location - + Theme name: - + Edit Theme - %s - + This wizard will help you to create and edit your themes. Click the next button below to start the process by setting up your background. - + Transitions: - + &Footer Area - + Starting color: - + Ending color: - + Background color: - + Justify - + Layout Preview - + Transparent - + Preview and Save - + Preview the theme and save it. - + @@ -4910,47 +4907,47 @@ The content encoding is not UTF-8. Global Theme - + Theme Level - + S&ong Level - + Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. - + &Service Level - + Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. - + &Global Level - + Use the global theme, overriding any themes associated with either the service or the songs. - + Themes - + @@ -4958,592 +4955,592 @@ The content encoding is not UTF-8. Error - + About - + &Add - + Advanced - + All Files - + Bottom - + Browse... - + Cancel - + CCLI number: - + Create a new service. - + &Delete - + &Edit - + Empty Field - + Export - + pt Abbreviated font pointsize unit - + Image - + Import - + Live - + Live Background Error - + Load - + Middle - + New - + New Service - + New Theme - + No File Selected Singular - + No Files Selected Plural - + No Item Selected Singular - + No Items Selected Plural - + openlp.org 1.x - + OpenLP 2.0 - + Preview - + Replace Background - + Reset Background - + s The abbreviated unit for seconds - + Save && Preview - + Search - + You must select an item to delete. - + You must select an item to edit. - + Save Service - + Service - + Start %s - + Theme Singular - + Themes Plural - + Top - + Version - + Delete the selected item. - + Move selection up one position. - + Move selection down one position. - + &Vertical Align: - + Finished import. - + Format: - + Importing - + Importing "%s"... - + Select Import Source - + Select the import format and the location to import from. - + The openlp.org 1.x importer has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "python-sqlite" module. - + Open %s File - + %p% - + Ready. - + Starting import... - + You need to specify at least one %s file to import from. A file type e.g. OpenSong - + Welcome to the Bible Import Wizard - + Welcome to the Song Export Wizard - + Welcome to the Song Import Wizard - + Author Singular - + Authors Plural - + - © + © Copyright symbol. - + Song Book Singular - + Song Books Plural - + Song Maintenance - + Topic Singular - + Topics Plural - + Continuous - + Default - + Display style: - + Duplicate Error - + File - + Help - + h The abbreviated unit for hours - + Layout style: - + Live Toolbar - + m The abbreviated unit for minutes - + OpenLP is already running. Do you wish to continue? - + Settings - + Tools - + Unsupported File - + Verse Per Slide - + Verse Per Line - + View - + Title and/or verses not found - + XML syntax error - + View Mode - + Open service. - + Print Service - + Replace live background. - + Reset live background. - + Split a slide into two only if it does not fit on the screen as one slide. - + Welcome to the Bible Upgrade Wizard - + Confirm Delete - + Play Slides in Loop - + Play Slides to End - + Stop Play Slides in Loop - + Stop Play Slides to End - + Next Track - + Search Themes... Search bar place holder text - + Optional &Split - + Invalid Folder Selected Singular - + Invalid File Selected Singular - + Invalid Files Selected Plural - + No Folder Selected Singular - + Open %s Folder - + You need to specify one %s file to import from. A file type e.g. OpenSong - + You need to specify one %s folder to import from. A song format e.g. PowerSong - + @@ -5552,25 +5549,25 @@ The content encoding is not UTF-8. %1 and %2 Locale list separator: 2 items - + %1, and %2 Locale list separator: end - + %1, %2 Locale list separator: middle - + %1, %2 Locale list separator: start - + @@ -5578,50 +5575,50 @@ The content encoding is not UTF-8. <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. - + Presentation name singular - + Presentations name plural - + Presentations container title - + Load a new presentation. - + Delete the selected presentation. - + Preview the selected presentation. - + Send the selected presentation live. - + Add the selected presentation to the service. - + @@ -5629,52 +5626,52 @@ The content encoding is not UTF-8. Select Presentation(s) - + Automatic - + Present using: - + File Exists - + A presentation with that filename already exists. - + This type of presentation is not supported. - + Presentations (%s) - + Missing Presentation - + The presentation %s is incomplete, please reload. - + The presentation %s no longer exists. - + @@ -5682,17 +5679,17 @@ The content encoding is not UTF-8. Available Controllers - + %s (unavailable) - + Allow presentation application to be overridden - + @@ -5700,25 +5697,25 @@ The content encoding is not UTF-8. <strong>Remote Plugin</strong><br />The remote plugin provides the ability to send messages to a running version of OpenLP on a different computer via a web browser or through the remote API. - + Remote name singular - + Remotes name plural - + Remote container title - + @@ -5726,107 +5723,107 @@ The content encoding is not UTF-8. OpenLP 2.0 Remote - + OpenLP 2.0 Stage View - + Service Manager - + Slide Controller - + Alerts - + Search - + Refresh - + Blank - + Show - + Prev - + Next - + Text - + Show Alert - + Go Live - + No Results - + Options - + Add to Service - + Home - + Theme - + Desktop - + Add &amp; Go to Service - + @@ -5834,42 +5831,42 @@ The content encoding is not UTF-8. Serve on IP address: - + Port number: - + Server Settings - + Remote URL: - + Stage view URL: - + Display stage time in 12h format - + Android App - + Scan the QR code or click <a href="https://market.android.com/details?id=org.openlp.android">download</a> to install the Android app from the Market. - + @@ -5877,85 +5874,85 @@ The content encoding is not UTF-8. &Song Usage Tracking - + &Delete Tracking Data - + Delete song usage data up to a specified date. - + &Extract Tracking Data - + Generate a report on song usage. - + Toggle Tracking - + Toggle the tracking of song usage. - + <strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services. - + SongUsage name singular - + SongUsage name plural - + SongUsage container title - + Song Usage - + Song usage tracking is active. - + Song usage tracking is inactive. - + display - + printed - + @@ -5963,32 +5960,32 @@ The content encoding is not UTF-8. Delete Song Usage Data - + Delete Selected Song Usage Events? - + Are you sure you want to delete selected Song Usage data? - + Deletion Successful - + All requested data has been deleted successfully. - + Select the date up to which the song usage data should be deleted. All data recorded before this date will be permanently deleted. - + @@ -5996,54 +5993,54 @@ The content encoding is not UTF-8. Song Usage Extraction - + Select Date Range - + to - + Report Location - + Output File Location - + usage_detail_%s_%s.txt - + Report Creation - + Report %s has been successfully created. - + Output Path Not Selected - + You have not set a valid output location for your song usage report. Please select an existing path on your computer. - + @@ -6051,173 +6048,173 @@ has been successfully created. &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... - + Arabic (CP-1256) - + Baltic (CP-1257) - + Central European (CP-1250) - + Cyrillic (CP-1251) - + Greek (CP-1253) - + Hebrew (CP-1255) - + Japanese (CP-932) - + Korean (CP-949) - + Simplified Chinese (CP-936) - + Thai (CP-874) - + Traditional Chinese (CP-950) - + Turkish (CP-1254) - + Vietnam (CP-1258) - + Western European (CP-1252) - + Character Encoding - + The codepage setting is responsible for the correct character representation. Usually you are fine with the preselected choice. - + Please choose the character encoding. The encoding is responsible for the correct character representation. - + Song name singular - + Songs name plural - + Songs container title - + Exports songs using the export wizard. - + 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. - + @@ -6225,37 +6222,37 @@ The encoding is responsible for the correct character representation. Author Maintenance - + Display name: - + First name: - + Last name: - + You need to type in the first name of the author. - + You need to type in the last name of the author. - + You have not set a display name for the author, combine the first and last names? - + @@ -6263,7 +6260,7 @@ The encoding is responsible for the correct character representation. The file does not have a valid extension. - + @@ -6271,14 +6268,14 @@ The encoding is responsible for the correct character representation. Administered by %s - + [above are Song Tags with notes imported from EasyWorship] - + @@ -6286,12 +6283,12 @@ The encoding is responsible for the correct character representation. Meta Data - + Custom Book Names - + @@ -6299,207 +6296,207 @@ The encoding is responsible for the correct character representation. Song Editor - + &Title: - + Alt&ernate title: - + &Lyrics: - + &Verse order: - + Ed&it All - + Title && Lyrics - + &Add to Song - + &Remove - + &Manage Authors, Topics, Song Books - + A&dd to Song - + R&emove - + Book: - + Number: - + Authors, Topics && Song Book - + New &Theme - + Copyright Information - + Comments - + Theme, Copyright Info && Comments - + Add Author - + This author does not exist, do you want to add them? - + This author is already in the list. - + You have not selected a valid author. Either select an author from the list, or type in a new author and click the "Add Author to Song" button to add the new author. - + Add Topic - + This topic does not exist, do you want to add it? - + This topic is already in the list. - + You have not selected a valid topic. Either select a topic from the list, or type in a new topic and click the "Add Topic to Song" button to add the new topic. - + You need to type in a song title. - + You need to type in at least one verse. - + The verse order is invalid. There is no verse corresponding to %s. Valid entries are %s. - + Add Book - + This song book does not exist, do you want to add it? - + You need to have an author for this song. - + You need to type some text in to the verse. - + Linked Audio - + Add &File(s) - + Add &Media - + Remove &All - + Open File(s) - + <strong>Warning:</strong> Not all of the verses are in use. - + The verse order is invalid. There are no verses corresponding to %s. Valid entries are %s. - + @@ -6507,22 +6504,22 @@ The encoding is responsible for the correct character representation. Edit Verse - + &Verse type: - + &Insert - + Split a slide into two by inserting a verse splitter. - + @@ -6530,82 +6527,82 @@ The encoding is responsible for the correct character representation. Song Export Wizard - + Select Songs - + Check the songs you want to export. - + Uncheck All - + Check All - + Select Directory - + Directory: - + Exporting - + Please wait while your songs are exported. - + You need to add at least one Song to export. - + No Save Location specified - + Starting export... - + You need to specify a directory. - + Select Destination Folder - + Select the directory where you want the songs to be saved. - + This wizard will help to export your songs to the open and free <strong>OpenLyrics</strong> worship song format. - + @@ -6613,172 +6610,172 @@ The encoding is responsible for the correct character representation. Select Document/Presentation Files - + Song Import Wizard - + This wizard will help you to import songs from a variety of formats. Click the next button below to start the process by selecting a format to import from. - + Generic Document/Presentation - + Add Files... - + Remove File(s) - + Please wait while your songs are imported. - + OpenLP 2.0 Databases - + openlp.org v1.x Databases - + Words Of Worship Song Files - + Songs Of Fellowship Song Files - + SongBeamer Files - + SongShow Plus Song Files - + Foilpresenter Song Files - + Copy - + Save to File - + The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. - + The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. - + OpenLyrics or OpenLP 2.0 Exported Song - + OpenLyrics Files - + CCLI SongSelect Files - + EasySlides XML File - + EasyWorship Song Database - + DreamBeam Song Files - + You need to specify a valid PowerSong 1.0 database folder. - + ZionWorx (CSV) - + First convert your ZionWorx database to a CSV text file, as explained in the <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">User Manual</a>. - + SundayPlus Song Files - + This importer has been disabled. - + MediaShout Database - + The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. - + SongPro Text Files - + SongPro (Export File) - + In SongPro, export your songs using the File -> Export menu - + @@ -6786,12 +6783,12 @@ The encoding is responsible for the correct character representation. Select Media File(s) - + Select one or more audio files from the list below, and click OK to import them into this song. - + @@ -6799,65 +6796,63 @@ The encoding is responsible for the correct character representation. Titles - + Lyrics - + CCLI License: - + Entire Song - + Are you sure you want to delete the %n selected song(s)? - - - + Maintain the lists of authors, topics and books. - + copy For song cloning - + Search Titles... - + Search Entire Song... - + Search Lyrics... - + Search Authors... - + Search Song Books... - + @@ -6865,7 +6860,7 @@ The encoding is responsible for the correct character representation. Unable to open the MediaShout database. - + @@ -6873,7 +6868,7 @@ The encoding is responsible for the correct character representation. Not a valid openlp.org 1.x song database. - + @@ -6881,7 +6876,7 @@ The encoding is responsible for the correct character representation. Not a valid OpenLP 2.0 song database. - + @@ -6889,7 +6884,7 @@ The encoding is responsible for the correct character representation. Exporting "%s"... - + @@ -6897,12 +6892,12 @@ The encoding is responsible for the correct character representation. No songs to import. - + Verses not found. Missing "PART" header. - + @@ -6910,22 +6905,22 @@ The encoding is responsible for the correct character representation. Song Book Maintenance - + &Name: - + &Publisher: - + You need to type in a name for the book. - + @@ -6933,12 +6928,12 @@ The encoding is responsible for the correct character representation. Your song export failed. - + Finished export. To import these files use the <strong>OpenLyrics</strong> importer. - + @@ -6946,27 +6941,27 @@ The encoding is responsible for the correct character representation. copyright - + The following songs could not be imported: - + Cannot access OpenOffice or LibreOffice - + Unable to open file - + File not found - + @@ -6974,107 +6969,107 @@ The encoding is responsible for the correct character representation. Could not add your author. - + This author already exists. - + Could not add your topic. - + This topic already exists. - + Could not add your book. - + This book already exists. - + Could not save your changes. - + Could not save your modified author, because the author already exists. - + Could not save your modified topic, because it already exists. - + Delete Author - + Are you sure you want to delete the selected author? - + This author cannot be deleted, they are currently assigned to at least one song. - + Delete Topic - + Are you sure you want to delete the selected topic? - + This topic cannot be deleted, it is currently assigned to at least one song. - + Delete Book - + Are you sure you want to delete the selected book? - + This book cannot be deleted, it is currently assigned to at least one song. - + The author %s already exists. Would you like to make songs with author %s use the existing author %s? - + The topic %s already exists. Would you like to make songs with topic %s use the existing topic %s? - + The book %s already exists. Would you like to make songs with book %s use the existing book %s? - + @@ -7082,27 +7077,27 @@ The encoding is responsible for the correct character representation. Songs Mode - + Enable search as you type - + Display verses on live tool bar - + Update service from song edit - + Import missing songs from service files - + @@ -7110,17 +7105,17 @@ The encoding is responsible for the correct character representation. Topic Maintenance - + Topic name: - + You need to type in a topic name. - + @@ -7128,37 +7123,37 @@ The encoding is responsible for the correct character representation. Verse - + Chorus - + Bridge - + Pre-Chorus - + Intro - + Ending - + Other - + @@ -7166,12 +7161,12 @@ The encoding is responsible for the correct character representation. Error reading CSV file. - + File not valid ZionWorx CSV format. - + - + \ No newline at end of file From 8100a666229c2e1ec06c541cd867231005db520e Mon Sep 17 00:00:00 2001 From: "Brian T. Meyer briantmeyer@cox.net" Date: Fri, 3 Aug 2012 21:34:13 -0700 Subject: [PATCH 20/76] Contains fix to allow QT to move place About, Exit and Preference Menu Items into the Application menu per Apple UI guidelines. --- openlp/core/ui/mainwindow.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/openlp/core/ui/mainwindow.py b/openlp/core/ui/mainwindow.py index b6c9ee8d5..8090575ab 100644 --- a/openlp/core/ui/mainwindow.py +++ b/openlp/core/ui/mainwindow.py @@ -210,6 +210,8 @@ class Ui_MainWindow(object): icon=u':/system/system_exit.png', shortcuts=[QtGui.QKeySequence(u'Alt+F4')], category=UiStrings().File, triggers=mainWindow.close) + # Give QT Extra Hint that this is the Exit Menu Item + self.fileExitItem.setMenuRole( QtGui.QAction.QuitRole ) action_list.add_category(unicode(UiStrings().Import), CategoryOrder.standardMenu) self.importThemeItem = create_action(mainWindow, @@ -304,6 +306,8 @@ class Ui_MainWindow(object): self.settingsConfigureItem = create_action(mainWindow, u'settingsConfigureItem', icon=u':/system/system_settings.png', category=UiStrings().Settings) + # Give QT Extra Hint that this is the Preferences Menu Item + self.settingsConfigureItem.setMenuRole( QtGui.QAction.PreferencesRole ) self.settingsImportItem = create_action(mainWindow, u'settingsImportItem', category=UiStrings().Settings) self.settingsExportItem = create_action(mainWindow, @@ -314,6 +318,8 @@ class Ui_MainWindow(object): icon=u':/system/system_about.png', shortcuts=[QtGui.QKeySequence(u'Ctrl+F1')], category=UiStrings().Help, triggers=self.onAboutItemClicked) + # Give QT Extra Hint that this is an About Menu Item + self.aboutItem.setMenuRole( QtGui.QAction.AboutRole ) if os.name == u'nt': self.localHelpFile = os.path.join( AppLocation.get_directory(AppLocation.AppDir), 'OpenLP.chm') From d8589c4a6ea4c76ac60c7af593733ffb360b272d Mon Sep 17 00:00:00 2001 From: Philip Ridout Date: Sat, 4 Aug 2012 15:43:44 +0100 Subject: [PATCH 21/76] A few UI tweeks and updates. Changed Contribute button and icon to Volunteer (As discussed with Roaul on IRC) Changed and resized the remote QR code for better recoginition on some phones (BrianMayerDesign) Updated the link and text to the Android Market, as it is now know as Google Play Set the window title for the ProcessDialog when importing songs using the first run wizard. --- openlp/core/ui/aboutdialog.py | 12 ++++++------ openlp/core/ui/aboutform.py | 6 +++--- openlp/plugins/remotes/lib/remotetab.py | 6 +++--- openlp/plugins/songs/songsplugin.py | 2 ++ resources/images/android_app_qr.png | Bin 2440 -> 1382 bytes resources/images/openlp-2.qrc | 2 +- resources/images/system_contribute.png | Bin 822 -> 0 bytes resources/images/system_volunteer.png | Bin 0 -> 2092 bytes 8 files changed, 15 insertions(+), 13 deletions(-) delete mode 100644 resources/images/system_contribute.png create mode 100644 resources/images/system_volunteer.png diff --git a/openlp/core/ui/aboutdialog.py b/openlp/core/ui/aboutdialog.py index 85db72b25..d8d7ba6e8 100644 --- a/openlp/core/ui/aboutdialog.py +++ b/openlp/core/ui/aboutdialog.py @@ -72,10 +72,10 @@ class Ui_AboutDialog(object): self.licenseTabLayout.addWidget(self.licenseTextEdit) self.aboutNotebook.addTab(self.licenseTab, u'') self.aboutDialogLayout.addWidget(self.aboutNotebook) - self.contributeButton = create_button(None, u'contributeButton', - icon=u':/system/system_contribute.png') + self.volunteerButton = create_button(None, u'volunteerButton', + icon=u':/system/system_volunteer.png') self.buttonBox = create_button_box(aboutDialog, u'buttonBox', - [u'close'], [self.contributeButton]) + [u'close'], [self.volunteerButton]) self.aboutDialogLayout.addWidget(self.buttonBox) self.retranslateUi(aboutDialog) self.aboutNotebook.setCurrentIndex(0) @@ -96,7 +96,7 @@ class Ui_AboutDialog(object): '\n' 'OpenLP is written and maintained by volunteers. If you would ' 'like to see more free Christian software being written, please ' - 'consider contributing by using the button below.' + 'consider volunteering by using the button below.' )) self.aboutNotebook.setTabText( self.aboutNotebook.indexOf(self.aboutTab), UiStrings().About) @@ -615,5 +615,5 @@ class Ui_AboutDialog(object): self.aboutNotebook.setTabText( self.aboutNotebook.indexOf(self.licenseTab), translate('OpenLP.AboutForm', 'License')) - self.contributeButton.setText(translate('OpenLP.AboutForm', - 'Contribute')) + self.volunteerButton.setText(translate('OpenLP.AboutForm', + 'Volunteer')) diff --git a/openlp/core/ui/aboutform.py b/openlp/core/ui/aboutform.py index 9b284165f..465286fa7 100644 --- a/openlp/core/ui/aboutform.py +++ b/openlp/core/ui/aboutform.py @@ -54,10 +54,10 @@ class AboutForm(QtGui.QDialog, Ui_AboutDialog): build_text = u'' about_text = about_text.replace(u'', build_text) self.aboutTextEdit.setPlainText(about_text) - QtCore.QObject.connect(self.contributeButton, - QtCore.SIGNAL(u'clicked()'), self.onContributeButtonClicked) + QtCore.QObject.connect(self.volunteerButton, + QtCore.SIGNAL(u'clicked()'), self.onVolunteerButtonClicked) - def onContributeButtonClicked(self): + def onVolunteerButtonClicked(self): """ Launch a web browser and go to the contribute page on the site. """ diff --git a/openlp/plugins/remotes/lib/remotetab.py b/openlp/plugins/remotes/lib/remotetab.py index 1e5b4070d..ec440e24a 100644 --- a/openlp/plugins/remotes/lib/remotetab.py +++ b/openlp/plugins/remotes/lib/remotetab.py @@ -122,9 +122,9 @@ class RemoteTab(SettingsTab): self.androidAppGroupBox.setTitle( translate('RemotePlugin.RemoteTab', 'Android App')) self.qrDescriptionLabel.setText(translate('RemotePlugin.RemoteTab', - 'Scan the QR code or click ' - 'download to install the Android app from the Market.')) + 'Scan the QR code or click download to install the ' + 'Android app from Google Play.')) def setUrls(self): ipAddress = u'localhost' diff --git a/openlp/plugins/songs/songsplugin.py b/openlp/plugins/songs/songsplugin.py index 583222e64..8b7bd36e8 100644 --- a/openlp/plugins/songs/songsplugin.py +++ b/openlp/plugins/songs/songsplugin.py @@ -147,6 +147,7 @@ class SongsPlugin(Plugin): progressDialog = QtGui.QProgressDialog( translate('SongsPlugin', 'Reindexing songs...'), UiStrings().Cancel, 0, maxSongs, self.formParent) + progressDialog.setWindowTitle(translate('SongsPlugin', 'Reindexing songs')) progressDialog.setWindowModality(QtCore.Qt.WindowModal) songs = self.manager.get_all_objects(Song) for number, song in enumerate(songs): @@ -247,6 +248,7 @@ class SongsPlugin(Plugin): return progress = QtGui.QProgressDialog(self.formParent) progress.setWindowModality(QtCore.Qt.WindowModal) + progress.setWindowTitle(translate('OpenLP.Ui', 'Importing Songs')) progress.setLabelText(translate('OpenLP.Ui', 'Starting import...')) progress.setCancelButton(None) progress.setRange(0, len(song_dbs)) diff --git a/resources/images/android_app_qr.png b/resources/images/android_app_qr.png index 859800bbee74ab8c788307e275ae8595a16abb48..2f1c3a3001dd221a03f468e6eeaf6b558ab1314b 100644 GIT binary patch delta 1365 zcmV-b1*-ap6XpsbiBL{Q4GJ0x0000DNk~Le0002Z0002Z2mk;806y2NwUHqte+3Ik zL_t(|+U;H2lB+NbLp%NdU)FgzGo_`rW9LF!DxQ`SAX*|@b{qh=3vGX!&w_E)tcZSm7G!As;e=DaSPP;e${~J;4!OUlad8c9Ig5u5hqv1NjCM`&< z2e){LqYn)XACHhTmIbNzK)ewep_!=#vc|}j@d>%lDL!-Jvw=pM(5yz2Q2#tjON?6q z%XdEp19)-eFYyAN0t728_>_@`ToX(*E8@-N(Xbls^W?n1!O?FXL%kFse?pgkI7-g| zWO|T&HZvKTxDiHsAm02M8g`w*VWV&x7RS~E0K=o+xu{PRXru{^&@9mcOqi8j%RhVP z{Wt5cV>>I0xS!GP!HeaZqmq!ct+CajM%oXe>7BCo+KoG z1+ItYGZ*jOI)^j2*YY1XEI255HyFrL#+^%8QZ=;a`cP-`$lb-8uSLVYgH{MI+irAJ z5YwUCgLlr>0qmFZygktuj+90kI-{S^JXl8{-uyTkPUA2Kj;2O3e;tO`w0t6Kz%YhL znh`%&;659OH$rpOyuhSerdJb{Rs_ZD-n>LW_Kc6p4z4pgvI0VLj*)4sCUVyS8S(is z8{qK)rQD%KvN?HyI5xmUX|KG1(5wy`hU`Wd$pP2-Z+&@zEZHI62+cSeCb`dv@;`jbNO!$J7`Q*= z`CS9xPBO%G0BpA#&kMlVt5^UG+Y!|Z{05p)zki-?aPtC(rGD(3DA*GL2VmA4MGh$j zL>;Q-1+dufqZ)N&))mPL2#uXYU@qX`a76GxRVyXn%JcHuf67d45f>M9Y5|;(5@;+Z zgm`mZG;~?J&cCzxdtM7z@ArXQI~eB$;shd^y{@e@e8U^Z#2caMVlJ1Ng8G$jiR&L~ zfA6vYR=nVts91YW?{rmP8`r&6Ut(xX*1`onXlnG*%NCLj5S& z6D3AlxVsk*e`nJUz4Zb(K?`(N7$`4rB{b=GjSn-q@4X~7EnvMJWCgCL1^RxQZ3&86AiKiXRS%&9f7oM4HHI>!_t^{=5x9Xw-2zAp z2+f3)z(g$&FAVl`f^p>ll6_-zQP#CUyfFB!IYEdwe^)}oC9ECJJtS_KnImYUaTge{ z^yMNq5_#U`lJ^TV$hmAq0i*?f7ELB1IAd;cv0E5*df*Ge;A z28yeDkre(}F){MB($l_8B;E+kBCoyXb|c>=I@S*zT)DNowT*(ioG=y`!_Nk1Sq6wV zLi1VM$hV2iGmJ6=G7|Kb-e`Qb(EV5;sF5Z#D?%eQLL)RnBQ!!IG(saZLL)Rnli&UU XUWGPuRCmO300000NkvXXu0mjfFWYkT delta 2431 zcmV-_34r$I3WyUSiBL{Q4GJ0x0000DNk~Le0001F0001F2mk;809A>~h>;;Ae*gz` zNliru+yNa96%BQvXQcoD2^vX6K~!ko-I{A`Tt^khe{=7(ckPW|Nt_2!Qzt=f)8>V$ zeu+X*DJ_j4AySAGK2V8#0R(C&LFp#~h*nL7ps7-nN~n=}C{Yz8%EPouX(3JoMW%{F z(iY@44+3r0&I8+BKX&)t!-v^Be>?Z?y=x~;9f|qioij7{%*>fH=lstZE8)X04l^@J z+Fm3|NW3r7B=y)Rf%%1`PIox0?fwzBz5yx+1TQ=QfXWpF?mAx?QV?kKli1|)-~ol? zNldL+U<{xDP!8DwjM-ln{OdZC8>JMU{`tcCXmj5I0QFFFX>Uu|_EZ*-e-&_gpHjfX zMR}yL(l@Dpw%-$F(|f40T9F*=muNW%u8076kw>A+?(8v4&e+W^9E`Eq4>=K;5f%1K zZQ`G*Qd^b_+ZMM?c(7n4i+~euum;YKa(RW~6s!)4jWBo-?@s&p-w6-&_H6ZVLvi(+ zremSFg6hTt5k2^RctAoze?%UKc3WJ>44eK0ajDu`wW(V5Y~|MK*ADc$-c1m)}H~mTmM}GFlc|$ zy6z_V_{vWDVruvoQ`?-Sc!;sBZo|*RriGtCepzbV(%`?^%$=(fKdZ2f7|0~|tIgn` z@h5ul2H0STE_hTVf3FEQkf3Ha#A58C7>X z3gfmYW`X7fFF};Ce~kdCJp8^wD*sI2CoXZhhhTjXkcOlpraAqn9Ebo zvFMM*mbP{vc>X>nhjHfuFxzFUfa(-A2%Ru8iPynoexz+qGgo}FE#%JHl1?fS1gTfh zV|wa3yKB4ge>c!T{_3wR_y+7~imqsnl&e~?yD9q!boT##}8oTJcP;Lg6Sj!!` zG%B~cbaZhG@V46m%x_{m50^$;J997Efbr{q457inzU|*!N|dm@xi? z0u*B+e~XKKv>L7@n@V#Go=y8<@*)h{PR3NL%HT;62_!Io#SZ75fX>uwydSb!yHfn7 zA6akcajz9?;~Eu^>LD9UofJ(CqF!e+{IFtThNyL^^9F-D7GRK}zbG%(Q_7 zR&1aPSl2Rfr0iaWg==ttUpHimaN9D*j>4u=0q7gz{DUfZWwP`+6IZD;>tz5cCR>a@=@vO-ODulBmfG}sqg|c#@ZD-ta}1^)jjf`bdZM|6T0#lT z5N8^RLyW(Pi?~>ClA_78dhxEMp;+9De`D>lp>Iw&U8Efta@9n| z!3+b;_81>UbtXRutgAJh)dbG{cIP`H-%nkCzsNptQp6S1NtHx3MWt$v>1@Iv$jMr` z7>Tln6R@NX)m5q)t;X?0(*9z5e+A=ypB9lo{5XQtjCY9?ZH4-Ka`dZ`&2+VW3{W_6 z4=v%St98;X3GO#JotCMWVH22DFZ))|lc+W?sbtKecZN-stoDnJr=%pnK&jN>dD?ZU zjORXYvp-QPl}e>jMOl1*iVUG2HxhnDt6a}g5Z{lw9ml&~11ah0Gf6&Me=%yl{Zp}& z?LGjy8ymNeux%4VJK(pYB~W`#GVhS6&o>kgm)yt3c+-4yFkr1Ae&#vPi~wZ1r+Na^ z2J#6F05ly>*~Ss$aYL-UDG3~)aKbzY7^HL5%fzF{<-;roR_DfEpYT?E1fbLhr$(ab z{a)9-t;ImE1b=eOelaB~f37HkJSQR|my+{cr;Oon(vev@YBLu6vmT3GaKeu0^wQ*9nOl62t2H26DOv z#c11alu}N3{eEa~SZg5DNdvDwWN|4Yu3T!$joi3`#+-(NxdM>2Mo&iWPR_SN xcXA~wD>u~>V1$S?)jsuAf1|_H|IL4@{SP&rDe4WrCQkqW002ovPDHLkV1l$>k7xh@ diff --git a/resources/images/openlp-2.qrc b/resources/images/openlp-2.qrc index 1b833a4db..128042bf0 100644 --- a/resources/images/openlp-2.qrc +++ b/resources/images/openlp-2.qrc @@ -116,7 +116,7 @@ system_help_contents.png system_online_help.png system_mediamanager.png - system_contribute.png + system_volunteer.png system_servicemanager.png system_thememanager.png system_exit.png diff --git a/resources/images/system_contribute.png b/resources/images/system_contribute.png deleted file mode 100644 index 39b0e0016e7c8a855cdfab5154612bbf9aa6a03e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 822 zcmV-61Ihe}P)V6ht4z%MCD2qt@sc2# zQTehS#4NhlgBJ9Z)=ACQJ6KnHs@`cGw;sZ=A64a{~koKUVQMt zfx`#q*{g2W$JT_nY;Ms?UBPWOm^$lCpn`pjoFnq)eoK6S0d=WV^K3P_f5&HA) z&Fdx3T{4;x(b}nTO|87Lar&PL0HE?l4(l%V!`YLbNKH<{50x7F)fHECdX+eqUsrk$I9yfkG5b@Qc0)@e7hH2A;txXe*Yg3?hjTj!%5}&_xK<3LsXaEni zV-&C(@uK$qByh+DwR%DkdL|q(F;VdH_5sbKFt@mY^C{6pfWJQ+Mjc#+K}Z-1y}xuQ zx|CdaK=80EqrR}XHM^I653&idYU|)i1V;zd`12An`clrj$Ugzhh%L=cR77t9CK~X#e zOTA&!t1vY=UBhW<=};ylC1$TK&4L3n;^Sh`(4|Ife56fYUe5=Blt|wh+M^8@GIPNt z0m3o}n{5Rz-!w&W1Oh$=)LQt61@IU1v9UUf5UD4=Du)Pp`JTWGwUyS?_^!U~n<6SU zB2eh=>9^I<-r1dX&byTJTRZw(x8h1ASgRm2B@8k@AzIt}otlw}xBCt$2CTCH@(y3% zll_8aS+FdK01?ED5aA31SydI>_VA;VIPN?D1)2OUjUdy$D*ylh07*qoM6N<$f;2~Y ANB{r; diff --git a/resources/images/system_volunteer.png b/resources/images/system_volunteer.png new file mode 100644 index 0000000000000000000000000000000000000000..d010161028706c9533efcf2e2aeee14889043679 GIT binary patch literal 2092 zcmV+{2-Ek8P)x^N>2uX8h&bT6(~a~3;NbIZMH){Cs7egy;MU8EPW zAQ|qP<*$)1`~v`DfA%@+R1Cxzn$HraO90ViZ#@bbjy{_7`gpPh^rF^!PdY6pdfr)0 zb=`kt{=8`BHR}_Z01jIFKCe?EGE7W%(A9eZOmmG~Nx5cc$b~x!mDR*%F0af-SA9gZ zxwqr8_Jfc6ERU~!stlyx%>S|Gh;l2yVX{7HnHG#g=t?&&JAZ&sE4Qt7WWu$(%(Ddt zo$K`3qRrHw`&k}t7wYd#-tFjtt#K3fo1MnSDWX<@u$zmzM0Yftj zjaBg*Q~mDUI7da4nzKA=Wiqd1X`uIo`-nylw6XwfuWa8%qQG}noj-M}mnf;gNs+0> zIsm<~Cg#SXgM@_>XFq-`8UaY(6wvLuzqKO=AZ3K7e~lI90dX9_D_Qm7%f5K}7s zie1(oi>b1IY;Zjspj?vNbL~QAlhn93qIxr;Vrs&SV>e9|P?)u4Ul9v-gg0NXJbtra zei+4-2~ct^TFvW$l0Nv(C%@jE054U2VU8LDzFSCbPRTQksAjuOFB>#zDo32S%ARf; zpQ_`2ZksO8MJ$}8@qBjQk~imMz6-Dd7)xq=mMXRRB)rLVEpkMZ8h#03@DaaldmEaa zGexe_e_ZXkY{QwtlR*n@v;pW|X#w6#35h^|l2H+Gim;?O?_tNqV*sVWQNF(?EY%!r zuFXrc;~x+Q^f4RPA<8yzO+Mw$)Qd!YPW1DL{oz&16ZLOfaJ*}rl4t-p2Vg*};(3ha zyZsZ@?`?9|B4!-E>*st*VhD3q>%sqpY5zXD?=A5wD4M&xiirRs?t7CzR}(!%`pu%O z^8ow-Ixn>@B0}WfvArxGQEL9VooWU5CfNHGZfv#ydXGJgk?Id&tH7+P$4A7zf zdS138QKzkkCOzm2&{bFZkY>H1l$&4Yo_tt5E3{~C$fhB(%*r$4x21m_N_!m}OF3!C zqqF(lY{X$+b5TJeI*)`i{+BMsH?pnWd9OkcjjKqa4jX<+Y@G6M`D3exszRzEf*R!H;IoHTR=bOuL z)P#D?vcZ%dE#@A?cUQ_c=BgnITDks%?CD>G!-K{hJ=2__vcVVZW5^xgw>Xz=#tB|b zQ%T-+ob3;()yWt}j0yJCKeiKD`5}o$VT%y^_A(zaJ}Ex4?JBm!Yu5?jkyTnkWt7^z z_NQIegVKf?!N}-cQ8}VGTM{hmQCyYOPu`z-ia6;uMV+lhlyYPbh9L)86C!}ZnH8B52cQ_>gyf{b7oht$QF^A5`n#AcgQ2g8!`1@r@iE1fF;ii# zL*8s|u}#7!k|l^^cZDdi#agZp@4nC&BUvZf^B-~@g{IRJ`~hjLKCQVhX9(7>2D?NY%?PN(TTo W*alb-Q_5Tb0000 Date: Sat, 4 Aug 2012 10:09:12 -0700 Subject: [PATCH 22/76] fixed spaces around brackets to match style guidelines --- openlp/core/ui/mainwindow.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/openlp/core/ui/mainwindow.py b/openlp/core/ui/mainwindow.py index 8090575ab..87a650a30 100644 --- a/openlp/core/ui/mainwindow.py +++ b/openlp/core/ui/mainwindow.py @@ -211,7 +211,7 @@ class Ui_MainWindow(object): shortcuts=[QtGui.QKeySequence(u'Alt+F4')], category=UiStrings().File, triggers=mainWindow.close) # Give QT Extra Hint that this is the Exit Menu Item - self.fileExitItem.setMenuRole( QtGui.QAction.QuitRole ) + self.fileExitItem.setMenuRole(QtGui.QAction.QuitRole) action_list.add_category(unicode(UiStrings().Import), CategoryOrder.standardMenu) self.importThemeItem = create_action(mainWindow, @@ -307,7 +307,7 @@ class Ui_MainWindow(object): u'settingsConfigureItem', icon=u':/system/system_settings.png', category=UiStrings().Settings) # Give QT Extra Hint that this is the Preferences Menu Item - self.settingsConfigureItem.setMenuRole( QtGui.QAction.PreferencesRole ) + self.settingsConfigureItem.setMenuRole(QtGui.QAction.PreferencesRole) self.settingsImportItem = create_action(mainWindow, u'settingsImportItem', category=UiStrings().Settings) self.settingsExportItem = create_action(mainWindow, @@ -319,7 +319,7 @@ class Ui_MainWindow(object): shortcuts=[QtGui.QKeySequence(u'Ctrl+F1')], category=UiStrings().Help, triggers=self.onAboutItemClicked) # Give QT Extra Hint that this is an About Menu Item - self.aboutItem.setMenuRole( QtGui.QAction.AboutRole ) + self.aboutItem.setMenuRole(QtGui.QAction.AboutRole) if os.name == u'nt': self.localHelpFile = os.path.join( AppLocation.get_directory(AppLocation.AppDir), 'OpenLP.chm') From 9813e45bde60b3511c5b51740ad40c89eef87c83 Mon Sep 17 00:00:00 2001 From: Tim Bentley Date: Sun, 5 Aug 2012 19:17:52 +0100 Subject: [PATCH 23/76] VLC does support wva --- openlp/core/ui/media/mediacontroller.py | 2 +- openlp/core/ui/media/vlcplayer.py | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/openlp/core/ui/media/mediacontroller.py b/openlp/core/ui/media/mediacontroller.py index 937c2a3e8..94c148912 100644 --- a/openlp/core/ui/media/mediacontroller.py +++ b/openlp/core/ui/media/mediacontroller.py @@ -43,7 +43,7 @@ log = logging.getLogger(__name__) class MediaController(object): """ The implementation of the Media Controller. The Media Controller adds an own - class for every Player. Currently these are QtWebkit, Phonon and planed Vlc. + class for every Player. Currently these are QtWebkit, Phonon and Vlc. """ def __init__(self, parent): diff --git a/openlp/core/ui/media/vlcplayer.py b/openlp/core/ui/media/vlcplayer.py index 27dd06a62..bf1e7a920 100644 --- a/openlp/core/ui/media/vlcplayer.py +++ b/openlp/core/ui/media/vlcplayer.py @@ -66,6 +66,7 @@ if VLC_AVAILABLE: AUDIO_EXT = [ u'*.mp3' , u'*.wav' + , u'*.wma' , u'*.ogg' ] From 943cac3f7f001c1304c084dc56b8fc29ded9e842 Mon Sep 17 00:00:00 2001 From: Philip Ridout Date: Thu, 9 Aug 2012 22:48:05 +0100 Subject: [PATCH 24/76] a fix for bug 1022038 --- openlp/core/ui/maindisplay.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openlp/core/ui/maindisplay.py b/openlp/core/ui/maindisplay.py index 17a933a55..6dd37b9ed 100644 --- a/openlp/core/ui/maindisplay.py +++ b/openlp/core/ui/maindisplay.py @@ -580,7 +580,7 @@ class AudioPlayer(QtCore.QObject): self.playlist.extend(map(Phonon.MediaSource, filenames)) def next(self): - if not self.repeat and self.currentIndex + 1 == len(self.playlist): + if not self.repeat and self.currentIndex + 1 >= len(self.playlist): return isPlaying = self.mediaObject.state() == Phonon.PlayingState self.currentIndex += 1 From 96b787ff499230642281c53b945b95d69ae4ae8d Mon Sep 17 00:00:00 2001 From: Philip Ridout Date: Mon, 13 Aug 2012 20:25:28 +0100 Subject: [PATCH 25/76] removed unecessary if statment --- openlp/core/lib/renderer.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/openlp/core/lib/renderer.py b/openlp/core/lib/renderer.py index 98b6b9861..96ef47303 100644 --- a/openlp/core/lib/renderer.py +++ b/openlp/core/lib/renderer.py @@ -450,8 +450,7 @@ class Renderer(object): previous_html, previous_raw, html_lines, lines, separator, u'') else: previous_raw = separator.join(lines) - if previous_raw is not None: - formatted.append(previous_raw) + formatted.append(previous_raw) log.debug(u'_paginate_slide - End') return formatted From dcc4608f3c35e0b478706f86226dcc8f1817f201 Mon Sep 17 00:00:00 2001 From: Philip Ridout Date: Sat, 18 Aug 2012 11:55:57 +0100 Subject: [PATCH 26/76] fixes issue 1045 and bug 1037076 "Short cut keys do not work for background audio" --- openlp/core/ui/slidecontroller.py | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/openlp/core/ui/slidecontroller.py b/openlp/core/ui/slidecontroller.py index c59ea9afe..faa9e1a52 100644 --- a/openlp/core/ui/slidecontroller.py +++ b/openlp/core/ui/slidecontroller.py @@ -286,19 +286,20 @@ class SlideController(Controller): text=translate('OpenLP.SlideController', 'Pause Audio'), tooltip=translate('OpenLP.SlideController', 'Pause audio.'), checked=False, visible=False, category=self.category, - triggers=self.onAudioPauseClicked) + context=QtCore.Qt.WindowShortcut, + shortcuts=[], triggers=self.onAudioPauseClicked) self.audioMenu = QtGui.QMenu( - translate('OpenLP.SlideController', 'Background Audio'), self) + translate('OpenLP.SlideController', 'Background Audio'), self.toolbar) self.audioPauseItem.setMenu(self.audioMenu) - self.audioPauseItem.setParent(self) + self.audioPauseItem.setParent(self.toolbar) self.toolbar.widgetForAction(self.audioPauseItem).setPopupMode( QtGui.QToolButton.MenuButtonPopup) self.nextTrackItem = create_action(self, u'nextTrackItem', text=UiStrings().NextTrack, icon=u':/slides/media_playback_next.png', tooltip=translate( 'OpenLP.SlideController', 'Go to next audio track.'), - category=self.category, context=QtCore.Qt.WindowShortcut, - triggers=self.onNextTrackClicked) + category=self.category, + shortcuts=[], triggers=self.onNextTrackClicked) self.audioMenu.addAction(self.nextTrackItem) self.trackMenu = self.audioMenu.addMenu( translate('OpenLP.SlideController', 'Tracks')) From d003ff900917ebf99f4c815a6ab20729cdd801f9 Mon Sep 17 00:00:00 2001 From: Tim Bentley Date: Fri, 24 Aug 2012 21:06:56 +0100 Subject: [PATCH 27/76] Allow saved media to be played --- openlp/core/ui/servicemanager.py | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/openlp/core/ui/servicemanager.py b/openlp/core/ui/servicemanager.py index d7f745fca..841d0fb71 100644 --- a/openlp/core/ui/servicemanager.py +++ b/openlp/core/ui/servicemanager.py @@ -379,6 +379,12 @@ class ServiceManager(QtGui.QWidget): QtCore.QVariant(u'False')).toBool() def supportedSuffixes(self, suffix): + """ + Adds Suffixes supported to the master list. Called from Plugins. + + ``suffix`` + New Suffix to be supported + """ self.suffixes.append(suffix) def onNewServiceClicked(self): @@ -795,6 +801,10 @@ class ServiceManager(QtGui.QWidget): self.repaintServiceList(item, -1) def onServiceItemEditForm(self): + """ + Opens a dialog to edit the service item and update the service + display if changes are saved. + """ item = self.findServiceItem()[0] self.serviceItemEditForm.setServiceItem( self.serviceItems[item][u'service_item']) @@ -805,7 +815,7 @@ class ServiceManager(QtGui.QWidget): def previewLive(self, message): """ Called by the SlideController to request a preview item be made live - and allows the next preview to be updated if relevent. + and allows the next preview to be updated if relevant. """ uuid, row = message.split(u':') for sitem in self.serviceItems: @@ -1082,12 +1092,12 @@ class ServiceManager(QtGui.QWidget): """ if serviceItem.is_command(): type = serviceItem._raw_frames[0][u'title'].split(u'.')[-1] - if type not in self.suffixes: + if type.lower() not in self.suffixes: serviceItem.is_valid = False def cleanUp(self): """ - Empties the servicePath of temporary files. + Empties the servicePath of temporary files on system exit. """ log.debug(u'Cleaning up servicePath') for file in os.listdir(self.servicePath): From 72d842a2aabd3b85595c007ae913cba16eab803d Mon Sep 17 00:00:00 2001 From: Raoul Snyman Date: Fri, 24 Aug 2012 22:52:42 +0200 Subject: [PATCH 28/76] Fix bug #1041366: Specified size display area not working. Fixes: https://launchpad.net/bugs/1041366 --- openlp/core/lib/renderer.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/openlp/core/lib/renderer.py b/openlp/core/lib/renderer.py index 81d5361cb..429640e65 100644 --- a/openlp/core/lib/renderer.py +++ b/openlp/core/lib/renderer.py @@ -96,6 +96,7 @@ class Renderer(object): self.display.close() self.display = MainDisplay(None, self.image_manager, False, self) self.display.setup() + #self.web_frame = self.web.page().mainFrame() self._theme_dimensions = {} def update_theme(self, theme_name, old_theme_name=None, only_delete=False): @@ -406,7 +407,14 @@ class Renderer(object): if theme_data.font_main_shadow: self.page_width -= int(theme_data.font_main_shadow_size) self.page_height -= int(theme_data.font_main_shadow_size) + # For the life of my I don't know why we have to completely kill the + # QWebView in order for the display to work properly, but we do. See + # bug #1041366 for an example of what happens if we take this out. + self.web = None + self.web = QtWebKit.QWebView() + self.web.setVisible(False) self.web.resize(self.page_width, self.page_height) + self.web_frame = self.web.page().mainFrame() # Adjust width and height to account for shadow. outline done in css. html = u"""