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