From f265c552ea3ede066b5e80c2108b159aa83cd91f Mon Sep 17 00:00:00 2001 From: rimach Date: Mon, 27 Sep 2010 20:15:55 +0200 Subject: [PATCH] replace strings with text_strings --- openlp/core/lib/__init__.py | 2 +- openlp/core/lib/mediamanageritem.py | 2 +- openlp/core/lib/plugin.py | 12 +- openlp/core/lib/pluginmanager.py | 2 +- openlp/core/ui/mainwindow.py | 12 +- openlp/core/ui/mediadockmanager.py | 2 +- openlp/core/ui/pluginform.py | 2 +- openlp/core/utils/languagemanager.py | 22 +- openlp/plugins/alerts/alertsplugin.py | 6 +- openlp/plugins/alerts/forms/alertform.py | 2 +- openlp/plugins/bibles/bibleplugin.py | 20 +- openlp/plugins/custom/customplugin.py | 22 +- openlp/plugins/custom/lib/mediaitem.py | 2 +- openlp/plugins/images/imageplugin.py | 20 +- openlp/plugins/images/lib/mediaitem.py | 2 +- openlp/plugins/media/lib/mediaitem.py | 2 +- openlp/plugins/media/mediaplugin.py | 20 +- openlp/plugins/presentations/lib/mediaitem.py | 2 +- .../presentations/presentationplugin.py | 16 +- openlp/plugins/remotes/remoteplugin.py | 6 +- openlp/plugins/songs/lib/mediaitem.py | 2 +- openlp/plugins/songs/lib/test/test3.opensong | 0 openlp/plugins/songs/songsplugin.py | 18 +- openlp/plugins/songusage/songusageplugin.py | 6 +- resources/i18n/af.ts | 2747 ++++++++-------- resources/i18n/de.ts | 2001 ++++++------ resources/i18n/en.ts | 1102 +++---- resources/i18n/en_GB.ts | 2748 ++++++++-------- resources/i18n/en_ZA.ts | 1369 +++----- resources/i18n/es.ts | 1202 +++---- resources/i18n/et.ts | 2798 ++++++++--------- resources/i18n/hu.ts | 2727 ++++++++-------- resources/i18n/ko.ts | 1150 +++---- resources/i18n/nb.ts | 1394 +++----- resources/i18n/pt_BR.ts | 2165 ++++++------- resources/i18n/sv.ts | 1152 +++---- resources/openlp.desktop | 1 - 37 files changed, 9659 insertions(+), 13099 deletions(-) mode change 100755 => 100644 openlp/plugins/songs/lib/test/test3.opensong diff --git a/openlp/core/lib/__init__.py b/openlp/core/lib/__init__.py index b325f0c6c..1d753264e 100644 --- a/openlp/core/lib/__init__.py +++ b/openlp/core/lib/__init__.py @@ -304,7 +304,7 @@ def expand_tags(text): from spelltextedit import SpellTextEdit from eventreceiver import Receiver from settingsmanager import SettingsManager -from plugin import PluginStatus, Plugin +from plugin import PluginStatus, StringContent, Plugin from pluginmanager import PluginManager from settingstab import SettingsTab from serviceitem import ServiceItem diff --git a/openlp/core/lib/mediamanageritem.py b/openlp/core/lib/mediamanageritem.py index 7f916e157..71d364b2e 100644 --- a/openlp/core/lib/mediamanageritem.py +++ b/openlp/core/lib/mediamanageritem.py @@ -530,4 +530,4 @@ class MediaManagerItem(QtGui.QWidget): if self.generateSlideData(service_item, item): return service_item else: - return None \ No newline at end of file + return None diff --git a/openlp/core/lib/plugin.py b/openlp/core/lib/plugin.py index c80fdfadd..8069d9a71 100644 --- a/openlp/core/lib/plugin.py +++ b/openlp/core/lib/plugin.py @@ -129,8 +129,8 @@ class Plugin(QtCore.QObject): """ QtCore.QObject.__init__(self) self.name = name - self.strings = {} - self.setPluginStrings() + self.text_strings = {} + self.setPluginTextStrings() if version: self.version = version self.settingsSection = self.name.lower() @@ -305,13 +305,13 @@ class Plugin(QtCore.QObject): pass def getString(self, name): - if name in self.strings: - return self.strings[name] + if name in self.text_strings: + return self.text_strings[name] else: # do something here? return None - def setPluginStrings(self): + def setPluginTextStrings(self): """ Called to define all translatable texts of the plugin - """ + """ \ No newline at end of file diff --git a/openlp/core/lib/pluginmanager.py b/openlp/core/lib/pluginmanager.py index 14bf48566..ff136de54 100644 --- a/openlp/core/lib/pluginmanager.py +++ b/openlp/core/lib/pluginmanager.py @@ -219,4 +219,4 @@ class PluginManager(object): for plugin in self.plugins: if plugin.isActive(): plugin.finalise() - log.info(u'Finalisation Complete for %s ' % plugin.name) \ No newline at end of file + log.info(u'Finalisation Complete for %s ' % plugin.name) diff --git a/openlp/core/ui/mainwindow.py b/openlp/core/ui/mainwindow.py index 124b4042f..730bc9ca1 100644 --- a/openlp/core/ui/mainwindow.py +++ b/openlp/core/ui/mainwindow.py @@ -175,19 +175,13 @@ class Ui_MainWindow(object): QtCore.Qt.DockWidgetArea(2), self.ThemeManagerDock) # Create the menu items self.FileNewItem = QtGui.QAction(MainWindow) - self.FileNewItem.setIcon( - self.ServiceManagerContents.toolbar.getIconFromTitle( - translate('OpenLP.MainWindow', 'New Service'))) + self.FileNewItem.setIcon(build_icon(u':/general/general_new.png')) self.FileNewItem.setObjectName(u'FileNewItem') self.FileOpenItem = QtGui.QAction(MainWindow) - self.FileOpenItem.setIcon( - self.ServiceManagerContents.toolbar.getIconFromTitle( - translate('OpenLP.MainWindow', 'Open Service'))) + self.FileOpenItem.setIcon(build_icon(u':/general/general_open.png')) self.FileOpenItem.setObjectName(u'FileOpenItem') self.FileSaveItem = QtGui.QAction(MainWindow) - self.FileSaveItem.setIcon( - self.ServiceManagerContents.toolbar.getIconFromTitle( - translate('OpenLP.MainWindow', 'Save Service'))) + self.FileSaveItem.setIcon(build_icon(u':/general/general_save.png')) self.FileSaveItem.setObjectName(u'FileSaveItem') self.FileSaveAsItem = QtGui.QAction(MainWindow) self.FileSaveAsItem.setObjectName(u'FileSaveAsItem') diff --git a/openlp/core/ui/mediadockmanager.py b/openlp/core/ui/mediadockmanager.py index 7d5b6aa2a..c49d7fab3 100644 --- a/openlp/core/ui/mediadockmanager.py +++ b/openlp/core/ui/mediadockmanager.py @@ -85,4 +85,4 @@ class MediaDockManager(object): if self.media_dock.widget(dock_index).settingsSection == \ media_item.plugin.name.lower(): self.media_dock.widget(dock_index).hide() - self.media_dock.removeItem(dock_index) \ No newline at end of file + self.media_dock.removeItem(dock_index) diff --git a/openlp/core/ui/pluginform.py b/openlp/core/ui/pluginform.py index 56fe94b3f..cbde28ae7 100644 --- a/openlp/core/ui/pluginform.py +++ b/openlp/core/ui/pluginform.py @@ -141,4 +141,4 @@ class PluginForm(QtGui.QDialog, Ui_PluginViewDialog): translate('OpenLP.PluginForm', '%s (Disabled)')) name_string = self.activePlugin.getString(StringContent.Name) self.pluginListWidget.currentItem().setText( - status_text % name_string[u'plural']) \ No newline at end of file + status_text % name_string[u'plural']) diff --git a/openlp/core/utils/languagemanager.py b/openlp/core/utils/languagemanager.py index 36e6330a6..000328d50 100644 --- a/openlp/core/utils/languagemanager.py +++ b/openlp/core/utils/languagemanager.py @@ -82,7 +82,8 @@ class LanguageManager(object): """ translator = QtCore.QTranslator() translator.load(qm_file) - return translator.translate('OpenLP.MainWindow', 'English') + return translator.translate('OpenLP.MainWindow', 'English', + 'Please add the name of your language here') @staticmethod def get_language(): @@ -107,12 +108,13 @@ class LanguageManager(object): ``action`` The language menu option """ - action_name = u'%s' % action.objectName() - qm_list = LanguageManager.get_qm_list() - if LanguageManager.auto_language: - language = u'[%s]' % qm_list[action_name] - else: + language = u'en' + if action: + action_name = u'%s' % action.objectName() + qm_list = LanguageManager.get_qm_list() language = u'%s' % qm_list[action_name] + if LanguageManager.auto_language: + language = u'[%s]' % language QtCore.QSettings().setValue( u'general/language', QtCore.QVariant(language)) log.info(u'Language file: \'%s\' written to conf file' % language) @@ -129,9 +131,11 @@ class LanguageManager(object): LanguageManager.__qm_list__ = {} qm_files = LanguageManager.find_qm_files() for counter, qmf in enumerate(qm_files): - name = unicode(qmf).split(u'.')[0] - LanguageManager.__qm_list__[u'%#2i %s' % (counter + 1, - LanguageManager.language_name(qmf))] = name + reg_ex = QtCore.QRegExp("^.*i18n/(.*).qm") + if reg_ex.exactMatch(qmf): + name = u'%s' % reg_ex.cap(1) + LanguageManager.__qm_list__[u'%#2i %s' % (counter + 1, + LanguageManager.language_name(qmf))] = name @staticmethod def get_qm_list(): diff --git a/openlp/plugins/alerts/alertsplugin.py b/openlp/plugins/alerts/alertsplugin.py index 4577fc76e..2ae117aaa 100644 --- a/openlp/plugins/alerts/alertsplugin.py +++ b/openlp/plugins/alerts/alertsplugin.py @@ -102,16 +102,16 @@ class AlertsPlugin(Plugin): 'on the display screen') return about_text - def setPluginStrings(self): + def setPluginTextStrings(self): """ Called to define all translatable texts of the plugin """ ## Name PluginList ## - self.strings[StringContent.Name] = { + self.text_strings[StringContent.Name] = { u'singular': translate('AlertsPlugin', 'Alert'), u'plural': translate('AlertsPlugin', 'Alerts') } ## Name for MediaDockManager, SettingsManager ## - self.strings[StringContent.VisibleName] = { + self.text_strings[StringContent.VisibleName] = { u'title': translate('AlertsPlugin', 'Alerts') } \ No newline at end of file diff --git a/openlp/plugins/alerts/forms/alertform.py b/openlp/plugins/alerts/forms/alertform.py index 730d5ebc8..7859417f7 100644 --- a/openlp/plugins/alerts/forms/alertform.py +++ b/openlp/plugins/alerts/forms/alertform.py @@ -155,4 +155,4 @@ class AlertForm(QtGui.QDialog, Ui_AlertDialog): text = text.replace(u'<>', unicode(self.ParameterEdit.text())) self.parent.alertsmanager.displayAlert(text) return True - return False \ No newline at end of file + return False diff --git a/openlp/plugins/bibles/bibleplugin.py b/openlp/plugins/bibles/bibleplugin.py index 018f15c3e..6d3406381 100644 --- a/openlp/plugins/bibles/bibleplugin.py +++ b/openlp/plugins/bibles/bibleplugin.py @@ -118,52 +118,52 @@ class BiblePlugin(Plugin): """ self.settings_tab.bible_theme = newTheme - def setPluginStrings(self): + def setPluginTextStrings(self): """ Called to define all translatable texts of the plugin """ ## Name PluginList ## - self.strings[StringContent.Name] = { + self.text_strings[StringContent.Name] = { u'singular': translate('BiblesPlugin', 'Bible'), u'plural': translate('BiblesPlugin', 'Bibles') } ## Name for MediaDockManager, SettingsManager ## - self.strings[StringContent.VisibleName] = { + self.text_strings[StringContent.VisibleName] = { u'title': translate('BiblesPlugin', 'Bibles') } # Middle Header Bar ## Import Button ## - self.strings[StringContent.Import] = { + self.text_strings[StringContent.Import] = { u'title': translate('BiblesPlugin', 'Import'), u'tooltip': translate('BiblesPlugin', 'Import a Bible') } ## New Button ## - self.strings[StringContent.New] = { + self.text_strings[StringContent.New] = { u'title': translate('BiblesPlugin', 'Add'), u'tooltip': translate('BiblesPlugin', 'Add a new Bible') } ## Edit Button ## - self.strings[StringContent.Edit] = { + self.text_strings[StringContent.Edit] = { u'title': translate('BiblesPlugin', 'Edit'), u'tooltip': translate('BiblesPlugin', 'Edit the selected Bible') } ## Delete Button ## - self.strings[StringContent.Delete] = { + self.text_strings[StringContent.Delete] = { u'title': translate('BiblesPlugin', 'Delete'), u'tooltip': translate('BiblesPlugin', 'Delete the selected Bible') } ## Preview ## - self.strings[StringContent.Preview] = { + self.text_strings[StringContent.Preview] = { u'title': translate('BiblesPlugin', 'Preview'), u'tooltip': translate('BiblesPlugin', 'Preview the selected Bible') } ## Live Button ## - self.strings[StringContent.Live] = { + self.text_strings[StringContent.Live] = { u'title': translate('BiblesPlugin', 'Live'), u'tooltip': translate('BiblesPlugin', 'Send the selected Bible live') } ## Add to service Button ## - self.strings[StringContent.Service] = { + self.text_strings[StringContent.Service] = { u'title': translate('BiblesPlugin', 'Service'), u'tooltip': translate('BiblesPlugin', 'Add the selected Bible to the service') } \ No newline at end of file diff --git a/openlp/plugins/custom/customplugin.py b/openlp/plugins/custom/customplugin.py index 081e036b0..67644f749 100644 --- a/openlp/plugins/custom/customplugin.py +++ b/openlp/plugins/custom/customplugin.py @@ -98,57 +98,57 @@ class CustomPlugin(Plugin): custom.theme_name = newTheme self.custommanager.save_object(custom) - def setPluginStrings(self): + def setPluginTextStrings(self): """ Called to define all translatable texts of the plugin """ ## Name PluginList ## - self.strings[StringContent.Name] = { + self.text_strings[StringContent.Name] = { u'singular': translate('CustomsPlugin', 'Custom'), u'plural': translate('CustomsPlugin', 'Customs') } ## Name for MediaDockManager, SettingsManager ## - self.strings[StringContent.VisibleName] = { + self.text_strings[StringContent.VisibleName] = { u'title': translate('CustomsPlugin', 'Customs') } # Middle Header Bar ## Import Button ## - self.strings[StringContent.Import] = { + self.text_strings[StringContent.Import] = { u'title': translate('CustomsPlugin', 'Import'), u'tooltip': translate('CustomsPlugin', 'Import a Custom') } ## Load Button ## - self.strings[StringContent.Load] = { + self.text_strings[StringContent.Load] = { u'title': translate('CustomsPlugin', 'Load'), u'tooltip': translate('CustomsPlugin', 'Load a new Custom') } ## New Button ## - self.strings[StringContent.New] = { + self.text_strings[StringContent.New] = { u'title': translate('CustomsPlugin', 'Add'), u'tooltip': translate('CustomsPlugin', 'Add a new Custom') } ## Edit Button ## - self.strings[StringContent.Edit] = { + self.text_strings[StringContent.Edit] = { u'title': translate('CustomsPlugin', 'Edit'), u'tooltip': translate('CustomsPlugin', 'Edit the selected Custom') } ## Delete Button ## - self.strings[StringContent.Delete] = { + self.text_strings[StringContent.Delete] = { u'title': translate('CustomsPlugin', 'Delete'), u'tooltip': translate('CustomsPlugin', 'Delete the selected Custom') } ## Preview ## - self.strings[StringContent.Preview] = { + self.text_strings[StringContent.Preview] = { u'title': translate('CustomsPlugin', 'Preview'), u'tooltip': translate('CustomsPlugin', 'Preview the selected Custom') } ## Live Button ## - self.strings[StringContent.Live] = { + self.text_strings[StringContent.Live] = { u'title': translate('CustomsPlugin', 'Live'), u'tooltip': translate('CustomsPlugin', 'Send the selected Custom live') } ## Add to service Button ## - self.strings[StringContent.Service] = { + self.text_strings[StringContent.Service] = { u'title': translate('CustomsPlugin', 'Service'), u'tooltip': translate('CustomsPlugin', 'Add the selected Custom to the service') } \ No newline at end of file diff --git a/openlp/plugins/custom/lib/mediaitem.py b/openlp/plugins/custom/lib/mediaitem.py index 3e398a770..dd26883e8 100644 --- a/openlp/plugins/custom/lib/mediaitem.py +++ b/openlp/plugins/custom/lib/mediaitem.py @@ -181,4 +181,4 @@ class CustomMediaItem(MediaManagerItem): else: raw_footer.append(u'') service_item.raw_footer = raw_footer - return True \ No newline at end of file + return True diff --git a/openlp/plugins/images/imageplugin.py b/openlp/plugins/images/imageplugin.py index d0ef63156..d7e6d1a08 100644 --- a/openlp/plugins/images/imageplugin.py +++ b/openlp/plugins/images/imageplugin.py @@ -58,52 +58,52 @@ class ImagePlugin(Plugin): 'provided by the theme.') return about_text - def setPluginStrings(self): + def setPluginTextStrings(self): """ Called to define all translatable texts of the plugin """ ## Name PluginList ## - self.strings[StringContent.Name] = { + self.text_strings[StringContent.Name] = { u'singular': translate('ImagePlugin', 'Image'), u'plural': translate('ImagePlugin', 'Images') } ## Name for MediaDockManager, SettingsManager ## - self.strings[StringContent.VisibleName] = { + self.text_strings[StringContent.VisibleName] = { u'title': translate('ImagePlugin', 'Images') } # Middle Header Bar ## Load Button ## - self.strings[StringContent.Load] = { + self.text_strings[StringContent.Load] = { u'title': translate('ImagePlugin', 'Load'), u'tooltip': translate('ImagePlugin', 'Load a new Image') } ## New Button ## - self.strings[StringContent.New] = { + self.text_strings[StringContent.New] = { u'title': translate('ImagePlugin', 'Add'), u'tooltip': translate('ImagePlugin', 'Add a new Image') } ## Edit Button ## - self.strings[StringContent.Edit] = { + self.text_strings[StringContent.Edit] = { u'title': translate('ImagePlugin', 'Edit'), u'tooltip': translate('ImagePlugin', 'Edit the selected Image') } ## Delete Button ## - self.strings[StringContent.Delete] = { + self.text_strings[StringContent.Delete] = { u'title': translate('ImagePlugin', 'Delete'), u'tooltip': translate('ImagePlugin', 'Delete the selected Image') } ## Preview ## - self.strings[StringContent.Preview] = { + self.text_strings[StringContent.Preview] = { u'title': translate('ImagePlugin', 'Preview'), u'tooltip': translate('ImagePlugin', 'Preview the selected Image') } ## Live Button ## - self.strings[StringContent.Live] = { + self.text_strings[StringContent.Live] = { u'title': translate('ImagePlugin', 'Live'), u'tooltip': translate('ImagePlugin', 'Send the selected Image live') } ## Add to service Button ## - self.strings[StringContent.Service] = { + self.text_strings[StringContent.Service] = { u'title': translate('ImagePlugin', 'Service'), u'tooltip': translate('ImagePlugin', 'Add the selected Image to the service') } \ No newline at end of file diff --git a/openlp/plugins/images/lib/mediaitem.py b/openlp/plugins/images/lib/mediaitem.py index bdffade2b..82fc434d0 100644 --- a/openlp/plugins/images/lib/mediaitem.py +++ b/openlp/plugins/images/lib/mediaitem.py @@ -190,4 +190,4 @@ class ImageMediaItem(MediaManagerItem): self.resetButton.setVisible(True) def onPreviewClick(self): - MediaManagerItem.onPreviewClick(self) \ No newline at end of file + MediaManagerItem.onPreviewClick(self) diff --git a/openlp/plugins/media/lib/mediaitem.py b/openlp/plugins/media/lib/mediaitem.py index 1b9cc7b27..88c8ea282 100644 --- a/openlp/plugins/media/lib/mediaitem.py +++ b/openlp/plugins/media/lib/mediaitem.py @@ -157,4 +157,4 @@ class MediaMediaItem(MediaManagerItem): img = QtGui.QPixmap(u':/media/media_video.png').toImage() item_name.setIcon(build_icon(img)) item_name.setData(QtCore.Qt.UserRole, QtCore.QVariant(file)) - self.listView.addItem(item_name) \ No newline at end of file + self.listView.addItem(item_name) diff --git a/openlp/plugins/media/mediaplugin.py b/openlp/plugins/media/mediaplugin.py index 23cce3056..d6ef87178 100644 --- a/openlp/plugins/media/mediaplugin.py +++ b/openlp/plugins/media/mediaplugin.py @@ -77,52 +77,52 @@ class MediaPlugin(Plugin): '
The media plugin provides playback of audio and video.') return about_text - def setPluginStrings(self): + def setPluginTextStrings(self): """ Called to define all translatable texts of the plugin """ ## Name PluginList ## - self.strings[StringContent.Name] = { + self.text_strings[StringContent.Name] = { u'singular': translate('MediaPlugin', 'Media'), u'plural': translate('MediaPlugin', 'Media') } ## Name for MediaDockManager, SettingsManager ## - self.strings[StringContent.VisibleName] = { + self.text_strings[StringContent.VisibleName] = { u'title': translate('MediaPlugin', 'Media') } # Middle Header Bar ## Load Button ## - self.strings[StringContent.Load] = { + self.text_strings[StringContent.Load] = { u'title': translate('MediaPlugin', 'Load'), u'tooltip': translate('MediaPlugin', 'Load a new Media') } ## New Button ## - self.strings[StringContent.New] = { + self.text_strings[StringContent.New] = { u'title': translate('MediaPlugin', 'Add'), u'tooltip': translate('MediaPlugin', 'Add a new Media') } ## Edit Button ## - self.strings[StringContent.Edit] = { + self.text_strings[StringContent.Edit] = { u'title': translate('MediaPlugin', 'Edit'), u'tooltip': translate('MediaPlugin', 'Edit the selected Media') } ## Delete Button ## - self.strings[StringContent.Delete] = { + self.text_strings[StringContent.Delete] = { u'title': translate('MediaPlugin', 'Delete'), u'tooltip': translate('MediaPlugin', 'Delete the selected Media') } ## Preview ## - self.strings[StringContent.Preview] = { + self.text_strings[StringContent.Preview] = { u'title': translate('MediaPlugin', 'Preview'), u'tooltip': translate('MediaPlugin', 'Preview the selected Media') } ## Live Button ## - self.strings[StringContent.Live] = { + self.text_strings[StringContent.Live] = { u'title': translate('MediaPlugin', 'Live'), u'tooltip': translate('MediaPlugin', 'Send the selected Media live') } ## Add to service Button ## - self.strings[StringContent.Service] = { + self.text_strings[StringContent.Service] = { u'title': translate('MediaPlugin', 'Service'), u'tooltip': translate('MediaPlugin', 'Add the selected Media to the service') } \ No newline at end of file diff --git a/openlp/plugins/presentations/lib/mediaitem.py b/openlp/plugins/presentations/lib/mediaitem.py index a07e2f933..e6f456e5c 100644 --- a/openlp/plugins/presentations/lib/mediaitem.py +++ b/openlp/plugins/presentations/lib/mediaitem.py @@ -293,4 +293,4 @@ class PresentationMediaItem(MediaManagerItem): if self.controllers[controller].enabled(): if filetype in self.controllers[controller].alsosupports: return controller - return None \ No newline at end of file + return None diff --git a/openlp/plugins/presentations/presentationplugin.py b/openlp/plugins/presentations/presentationplugin.py index 6e1281dae..2abb01138 100644 --- a/openlp/plugins/presentations/presentationplugin.py +++ b/openlp/plugins/presentations/presentationplugin.py @@ -145,42 +145,42 @@ class PresentationPlugin(Plugin): 'available to the user in a drop down box.') return about_text - def setPluginStrings(self): + def setPluginTextStrings(self): """ Called to define all translatable texts of the plugin """ ## Name PluginList ## - self.strings[StringContent.Name] = { + self.text_strings[StringContent.Name] = { u'singular': translate('PresentationPlugin', 'Presentation'), u'plural': translate('PresentationPlugin', 'Presentations') } ## Name for MediaDockManager, SettingsManager ## - self.strings[StringContent.VisibleName] = { + self.text_strings[StringContent.VisibleName] = { u'title': translate('PresentationPlugin', 'Presentations') } # Middle Header Bar ## Load Button ## - self.strings[StringContent.Load] = { + self.text_strings[StringContent.Load] = { u'title': translate('PresentationPlugin', 'Load'), u'tooltip': translate('PresentationPlugin', 'Load a new Presentation') } ## Delete Button ## - self.strings[StringContent.Delete] = { + self.text_strings[StringContent.Delete] = { u'title': translate('PresentationPlugin', 'Delete'), u'tooltip': translate('PresentationPlugin', 'Delete the selected Presentation') } ## Preview ## - self.strings[StringContent.Preview] = { + self.text_strings[StringContent.Preview] = { u'title': translate('PresentationPlugin', 'Preview'), u'tooltip': translate('PresentationPlugin', 'Preview the selected Presentation') } ## Live Button ## - self.strings[StringContent.Live] = { + self.text_strings[StringContent.Live] = { u'title': translate('PresentationPlugin', 'Live'), u'tooltip': translate('PresentationPlugin', 'Send the selected Presentation live') } ## Add to service Button ## - self.strings[StringContent.Service] = { + self.text_strings[StringContent.Service] = { u'title': translate('PresentationPlugin', 'Service'), u'tooltip': translate('PresentationPlugin', 'Add the selected Presentation to the service') } \ No newline at end of file diff --git a/openlp/plugins/remotes/remoteplugin.py b/openlp/plugins/remotes/remoteplugin.py index 4efed2c9d..ae52379ab 100644 --- a/openlp/plugins/remotes/remoteplugin.py +++ b/openlp/plugins/remotes/remoteplugin.py @@ -78,16 +78,16 @@ class RemotesPlugin(Plugin): 'browser or through the remote API.') return about_text - def setPluginStrings(self): + def setPluginTextStrings(self): """ Called to define all translatable texts of the plugin """ ## Name PluginList ## - self.strings[StringContent.Name] = { + self.text_strings[StringContent.Name] = { u'singular': translate('RemotePlugin', 'Remote'), u'plural': translate('RemotePlugin', 'Remotes') } ## Name for MediaDockManager, SettingsManager ## - self.strings[StringContent.VisibleName] = { + self.text_strings[StringContent.VisibleName] = { u'title': translate('RemotePlugin', 'Remotes') } \ No newline at end of file diff --git a/openlp/plugins/songs/lib/mediaitem.py b/openlp/plugins/songs/lib/mediaitem.py index 3e7d5d659..a794ea1f5 100644 --- a/openlp/plugins/songs/lib/mediaitem.py +++ b/openlp/plugins/songs/lib/mediaitem.py @@ -368,4 +368,4 @@ class SongMediaItem(MediaManagerItem): service_item.audit = [ song.title, author_audit, song.copyright, unicode(song.ccli_number) ] - return True \ No newline at end of file + return True diff --git a/openlp/plugins/songs/lib/test/test3.opensong b/openlp/plugins/songs/lib/test/test3.opensong old mode 100755 new mode 100644 diff --git a/openlp/plugins/songs/songsplugin.py b/openlp/plugins/songs/songsplugin.py index 89b6cca23..bd5c3fb45 100644 --- a/openlp/plugins/songs/songsplugin.py +++ b/openlp/plugins/songs/songsplugin.py @@ -149,47 +149,47 @@ class SongsPlugin(Plugin): importer.register(self.mediaItem.import_wizard) return importer - def setPluginStrings(self): + def setPluginTextStrings(self): """ Called to define all translatable texts of the plugin """ ## Name PluginList ## - self.strings[StringContent.Name] = { + self.text_strings[StringContent.Name] = { u'singular': translate('SongsPlugin', 'Song'), u'plural': translate('SongsPlugin', 'Songs') } ## Name for MediaDockManager, SettingsManager ## - self.strings[StringContent.VisibleName] = { + self.text_strings[StringContent.VisibleName] = { u'title': translate('SongsPlugin', 'Songs') } # Middle Header Bar ## New Button ## - self.strings[StringContent.New] = { + self.text_strings[StringContent.New] = { u'title': translate('SongsPlugin', 'Add'), u'tooltip': translate('SongsPlugin', 'Add a new Song') } ## Edit Button ## - self.strings[StringContent.Edit] = { + self.text_strings[StringContent.Edit] = { u'title': translate('SongsPlugin', 'Edit'), u'tooltip': translate('SongsPlugin', 'Edit the selected Song') } ## Delete Button ## - self.strings[StringContent.Delete] = { + self.text_strings[StringContent.Delete] = { u'title': translate('SongsPlugin', 'Delete'), u'tooltip': translate('SongsPlugin', 'Delete the selected Song') } ## Preview ## - self.strings[StringContent.Preview] = { + self.text_strings[StringContent.Preview] = { u'title': translate('SongsPlugin', 'Preview'), u'tooltip': translate('SongsPlugin', 'Preview the selected Song') } ## Live Button ## - self.strings[StringContent.Live] = { + self.text_strings[StringContent.Live] = { u'title': translate('SongsPlugin', 'Live'), u'tooltip': translate('SongsPlugin', 'Send the selected Song live') } ## Add to service Button ## - self.strings[StringContent.Service] = { + self.text_strings[StringContent.Service] = { u'title': translate('SongsPlugin', 'Service'), u'tooltip': translate('SongsPlugin', 'Add the selected Song to the service') } \ No newline at end of file diff --git a/openlp/plugins/songusage/songusageplugin.py b/openlp/plugins/songusage/songusageplugin.py index e2ff2adae..cd3689095 100644 --- a/openlp/plugins/songusage/songusageplugin.py +++ b/openlp/plugins/songusage/songusageplugin.py @@ -163,16 +163,16 @@ class SongUsagePlugin(Plugin): 'services.') return about_text - def setPluginStrings(self): + def setPluginTextStrings(self): """ Called to define all translatable texts of the plugin """ ## Name PluginList ## - self.strings[StringContent.Name] = { + self.text_strings[StringContent.Name] = { u'singular': translate('SongUsagePlugin', 'SongUsage'), u'plural': translate('SongUsagePlugin', 'SongUsage') } ## Name for MediaDockManager, SettingsManager ## - self.strings[StringContent.VisibleName] = { + self.text_strings[StringContent.VisibleName] = { u'title': translate('SongUsagePlugin', 'SongUsage') } \ No newline at end of file diff --git a/resources/i18n/af.ts b/resources/i18n/af.ts index e0cf10b78..58b6e6eff 100644 --- a/resources/i18n/af.ts +++ b/resources/i18n/af.ts @@ -1,31 +1,22 @@ - + + AlertsPlugin &Alert - W&aarskuwing + W&aarskuwing Show an alert message. - + Vertoon 'n waarskuwing boodskap. <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of nursery alerts on the display screen - - - - - Alert - - - - - Alerts - Waarskuwings + <strong>Waarskuwing Mini-program</strong><br/>Die waarskuwing mini-program beheer die vertoning van moederskamer inligting op die vertoon skerm @@ -33,57 +24,57 @@ Alert Message - Waarskuwing Boodskap + Waarskuwing Boodskap Alert &text: - + Waarskuwing &teks: &Parameter(s): - + &Parameter(s): &New - &Nuwe + &Nuwe &Save - &Stoor + &Stoor &Delete - + Wis ui&t Displ&ay - + V&ertoon Display && Cl&ose - + Vert&oon && Maak toe &Close - + Maa&k toe New Alert - + Nuwe Waarskuwing You haven't specified any text for your alert. Please type in some text before clicking New. - + Daar is geen teks vir die waarskuwing gespesifiseer nie. Tik asseblief teks in voordat 'n nuwe een bygevoeg word. @@ -91,7 +82,7 @@ Alert message created and displayed. - + Waarskuwing boodskap geskep en vertoon. @@ -99,77 +90,90 @@ Alerts - Waarskuwings + Waarskuwings Font - Skrif + Skrif Font name: - + Skrif naam: Font color: - + Skrif kleur: Background color: - + Agtergrond kleur: Font size: - + Skrif grootte: pt - pt + pt Alert timeout: - Waarskuwing tydgrens: + Waarskuwing verstreke-tyd: s - s + s Location: - Ligging: + Ligging: Preview - Voorskou + Voorskou OpenLP 2.0 - OpenLP 2.0 + OpenLP 2.0 Top - + Bo Middle - Middel + Middel Bottom - Onder + Onder + + + + BiblePlugin.MediaItem + + + Error + Fout + + + + You cannot combine single and dual bible verses. Do you want to delete your search results and start a new search? + Enkel en dubbel bybel verse kan nie gekombineer word nie. Wis soek resultate uit en begin 'n nuwe soektog? @@ -177,92 +181,12 @@ &Bible - &Bybel + &Bybel <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display bible verses from different sources during the service. - - - - - Bible - Bybel - - - - Bibles - Bybels - - - - Import - Invoer - - - - Import a Bible - - - - - Add - Byvoeg - - - - Add a new Bible - - - - - Edit - Redigeer - - - - Edit the selected Bible - - - - - Delete - - - - - Delete the selected Bible - - - - - Preview - Voorskou - - - - Preview the selected Bible - - - - - Live - Regstreeks - - - - Send the selected Bible live - - - - - Service - - - - - Add the selected Bible to the service - + <strong>Bybel Mini-program</strong><br/>Die Bybel mini-program verskaf die taak om Bybel verse vanaf verskillende bronne tydens die diens te vertoon. @@ -270,12 +194,12 @@ Book not found - + Boek nie gevind nie The book you requested could not be found in this bible. Please check your spelling and that this is a complete bible not just one testament. - + Die aangevraagde boek kon nie in hierdie Bybel gevind word nie. Gaan asseblief spelling na en sien dat hierdie 'n volledige Bybel is instede van een testament. @@ -283,11 +207,11 @@ Scripture Reference Error - + Skrif Verwysing Fout - Your scripture reference is either not supported by OpenLP or invalid. Please make sure your reference conforms to one of the following patterns: + 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 @@ -296,7 +220,15 @@ Book Chapter:Verse-Verse,Verse-Verse Book Chapter:Verse-Verse,Chapter:Verse-Verse Book Chapter:Verse-Chapter:Verse - + Die skrif verwysing word óf nie ondersteun deur OpenLP nie, óf is ongeldig. Maak asseblief seker die verwysing stem ooreen met een van die volgende patrone: + +Boek Hoofstuk +Boek Hoofstuk-Hoofstuk +Boek Hoofstuk:Vers-Vers +Boek Hoofstuk:Vers-Vers,Vers-Vers +Boek Hoofstuk:Vers-Vers,Hoofstuk:Vers-Vers +Boek Hoofstuk:Vers-Hoofstuk:Vers + @@ -304,78 +236,79 @@ Book Chapter:Verse-Chapter:Verse Bibles - Bybels + Bybels Verse Display - Vers Vertoning + Vers Vertoning Only show new chapter numbers - Vertoon net nuwe hoofstuk nommers + Vertoon net nuwe hoofstuk nommers Layout style: - + Uitleg styl: Display style: - + Vertoon styl: Bible theme: - + Bybel tema: Verse Per Slide - + Verse Per Skyfie Verse Per Line - + Verse Per Lyn Continuous - + Aaneen-lopend No Brackets - + Geen Hakkies ( And ) - + ( En ) { And } - + { En } [ And ] - + [ En ] Note: Changes do not affect verses already in the service. - + Nota: +Veranderinge affekteer nie verse wat reeds in die diens is nie. Display dual Bible verses - + Vertoon dubbel Bybel verse @@ -383,370 +316,370 @@ Changes do not affect verses already in the service. Bible Import Wizard - Bybel Invoer Gids + Bybel Invoer Gids Welcome to the Bible Import Wizard - Welkom by die Bybel Invoer Gids + Welkom by die Bybel Invoer Gids 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. - Hierdie gids sal u help om Bybels van 'n verskeidenheid vormate in te voer. Kliek die volgende knoppie hieronder om die proses te begin en 'n formaat te kies om in te voer. + Hierdie gids sal u help om Bybels van 'n verskeidenheid formate in te voer. Kliek die volgende knoppie hieronder om die proses te begin deur 'n formaat te kies om in te voer. Select Import Source - Selekteer Invoer Bron + Selekteer Invoer Bron Select the import format, and where to import from. - Selekteer die invoer formaat en van waar af om in te voer. + Selekteer die invoer formaat en van waar af om in te voer. Format: - Formaat: + Formaat: OSIS - OSIS + OSIS CSV - KGW + KGW (CSV) OpenSong - OpenSong + OpenSong Web Download - Web Aflaai + Web Aflaai File location: - + Lêer ligging: Books location: - + Boeke ligging: Verse location: - + Vers ligging: Bible filename: - + Bybel lêernaam: Location: - Ligging: + Ligging: Crosswalk - Cosswalk + Crosswalk BibleGateway - BibleGateway + BibleGateway Bible: - Bybel: + Bybel: Download Options - Aflaai Opsies + Aflaai Opsies Server: - Bediener: + Bediener: Username: - Gebruikersnaam: + Gebruikersnaam: Password: - Wagwoord: + Wagwoord: Proxy Server (Optional) - Tussenganger Bediener (Opsioneel) + Tussenganger Bediener (Opsioneel) License Details - Lisensie Besonderhede + Lisensie Besonderhede Set up the Bible's license details. - Stel hierdie Bybel se lisensie besonderhede op. + Stel hierdie Bybel se lisensie besonderhede op. Version name: - + Weergawe naam: Copyright: - Kopiereg: + Kopiereg: Permission: - Toestemming: + Toestemming: Importing - Invoer + Invoer Please wait while your Bible is imported. - Wag asseblief terwyl u Bybel ingevoer word. + Wag asseblief terwyl u Bybel ingevoer word. Ready. - Gereed. + Gereed. Invalid Bible Location - Ongeldige Bybel Ligging + Ongeldige Bybel Ligging You need to specify a file to import your Bible from. - + 'n Lêer van waar die Byber ingevoer word moet gespesifiseer word. Invalid Books File - Ongeldige Boeke Lêer + Ongeldige Boeke Lêer You need to specify a file with books of the Bible to use in the import. - + 'n Lêer met boeke van die Bybel moet gespesifiseer word vir gebruik tydens die invoer. Invalid Verse File - Ongeldige Vers Lêer + Ongeldige Vers Lêer You need to specify a file of Bible verses to import. - + 'n Lêer met Bybel verse moet gespesifiseer word om in te voer. Invalid OpenSong Bible - Ongeldige OpenSong Bybel + Ongeldige OpenSong Bybel You need to specify an OpenSong Bible file to import. - + 'n OpenSong Bybel moet gespesifiseer word om in te voer. Empty Version Name - Weergawe Naam is Leeg + Weergawe Naam is leeg You need to specify a version name for your Bible. - + 'n Weergawe naam moet vir die Bybel gespesifiseer word. - + Empty Copyright - Leë Kopiereg + Kopiereg Leeg - - You need to set a copyright for your Bible! Bibles in the Public Domain need to be marked as such. - Stel Kopiereg op vir die spesifieke Bybel! Bybels in die Publieke Omgewing moet so gemerk word. - - - + Bible Exists - Bybel Bestaan + Bybel Bestaan reeds - - This Bible already exists! Please import a different Bible or first delete the existing one. - Dié Bybel bestaan reeds! Voer asseblief 'n ander Bybel in of wis die eerste een uit. - - - + Open OSIS File - + Maak OSIS Lêer oop - + Open Books CSV File - + Maak Boeke CSV (KGW) Lêer oop - + Open Verses CSV File - + Maak Verse CSV Lêer oop - + Open OpenSong Bible - Maak OpenSong Bybel Oop + Maak OpenSong Bybel Oop Starting import... - Invoer begin... + Invoer begin... - + Finished import. - Invoer voltooi. + Invoer voltooi. - + Your Bible import failed. - U Bybel invoer het misluk. + Die Bybel invoer het misluk. + + + + You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. + Die Bybel benodig 'n kopiereg. Bybels in die Publieke Domein moet daarvolgens gemerk word. + + + + This Bible already exists. Please import a different Bible or first delete the existing one. + Hierdie Bybel bestaan reeds. Voer asseblief 'n ander Bybel in of wis eers die bestaande een uit. BiblesPlugin.MediaItem - + + Bible + Bybel + + + Quick - Vinnig + Vinnig - + Advanced - Gevorderd + Gevorderd - + Version: - Weergawe: + Weergawe: - + Dual: - Dubbel: + Dubbel: - + Search type: - + Tipe soek: - + Find: - Vind: - - - - Search - Soek - - - - Results: - &Resultate: - - - - Book: - Boek: - - - - Chapter: - Hoofstuk: - - - - Verse: - Vers: - - - - From: - Vanaf: + Vind: + Search + Soek + + + + Results: + Resultate: + + + + Book: + Boek: + + + + Chapter: + Hoofstuk: + + + + Verse: + Vers: + + + + From: + Vanaf: + + + To: - Aan: + Tot: - + Verse Search - Soek Vers + Soek Vers - + Text Search - Teks Soektog + Teks Soektog - + Clear - + Maak Skoon - + Keep - Behou + Behou - + No Book Found - Geeb Boek Gevind nie + Geen Boek Gevind nie - + No matching book could be found in this Bible. - Geen bypassende boek kon in dié Bybel gevind word nie. + Geen bypassende boek kon in dié Bybel gevind word nie. - - etc - - - - + Bible not fully loaded. - + Bybel nie ten volle gelaai nie. @@ -754,15 +687,15 @@ Changes do not affect verses already in the service. Importing - Invoer + Invoer 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 Customs are. This plugin provides greater freedom over the Customs plugin. - + <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. + <strong>Aanpas Mini-program</strong><br/>Die aanpas mini-program verskaf die vermoë om aangepasde teks skyfies op te stel wat in dieselfde manier gebruik word as die liedere mini-program. Dié mini-program verskaf grooter vryheid as die liedere mini-program. @@ -770,17 +703,17 @@ Changes do not affect verses already in the service. Custom - + Aanpas Custom Display - Aangepasde Vertoning + Aangepasde Vertoning Display footer - + Vertoon voetspasie @@ -788,369 +721,206 @@ Changes do not affect verses already in the service. Edit Custom Slides - Redigeer Aangepaste Skyfies + Redigeer Aangepaste Skyfies Move slide up one position. - + Skuif skyfie een posisie op. Move slide down one position. - + Skuif skyfie een posisie af. &Title: - + &Titel: Add New - Voeg Nuwe By + Voeg Nuwe By Add a new slide at bottom. - + Voeg nuwe skyfie by aan die onderkant. Edit - Redigeer + Redigeer Edit the selected slide. - + Redigeer die geselekteerde skyfie. Edit All - Redigeer Alles + Redigeer Alles Edit all the slides at once. - + Redigeer al die skyfies tegelyk. Save - Stoor + Stoor Save the slide currently being edited. - + Stoor die skyfie wat tans geredigeer word. Delete - + Wis uit Delete the selected slide. - + Wis die geselekteerde skyfie uit. Clear - + Maak skoon Clear edit area - Maak skoon die redigeer area + Maak die redigeer area skoon Split Slide - + Verdeel Skyfie Split a slide into two by inserting a slide splitter. - + Verdeel 'n skyfie deur 'n skyfie-verdeler te gebruik. The&me: - + Te&ma: &Credits: - + &Krediete: Save && Preview - Stoor && Voorskou + Stoor && Voorskou Error - Fout + Fout You need to type in a title. - + 'n Titel word benodig. You need to add at least one slide - + Ten minste een skyfie moet bygevoeg word You have one or more unsaved slides, please either save your slide(s) or clear your changes. - + Daar is een of meer ongestoorde skyfies, stoor asseblief die skyfie(s) of maak die veranderinge skoon. CustomPlugin.MediaItem - - You haven't selected an item to edit. - - - - - You haven't selected an item to delete. - - - - - CustomsPlugin - - + Custom - + Aanpas - - Customs - + + You haven't selected an item to edit. + Daar is nie 'n item geselekteer om te redigeer nie. - - Import - Invoer - - - - Import a Custom - - - - - Load - - - - - Load a new Custom - - - - - Add - Byvoeg - - - - Add a new Custom - - - - - Edit - Redigeer - - - - Edit the selected Custom - - - - - Delete - - - - - Delete the selected Custom - - - - - Preview - Voorskou - - - - Preview the selected Custom - - - - - Live - Regstreeks - - - - Send the selected Custom live - - - - - Service - - - - - Add the selected Custom to the service - + + You haven't selected an item to delete. + Daar is nie 'n item geselekteer om uit te wis nie. 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 Images with the selected image as a background instead of the background provided by the theme. - - - - - Image - Beeld - - - - Images - Beelde - - - - Load - - - - - Load a new Image - - - - - Add - Byvoeg - - - - Add a new Image - - - - - Edit - Redigeer - - - - Edit the selected Image - - - - - Delete - - - - - Delete the selected Image - - - - - Preview - Voorskou - - - - Preview the selected Image - - - - - Live - Regstreeks - - - - Send the selected Image live - - - - - Service - - - - - Add the selected Image to the service - + <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. ImagePlugin.MediaItem - + + Image + Beeld + + + Select Image(s) - Selekteer beeld(e) + Selekteer beeld(e) - + All Files - + Alle Lêers - + Replace Live Background - + Vervang Regstreekse Agtergrond - + Replace Background - + Vervang Agtergrond - + Reset Live Background - + Herstel Regstreekse Agtergrond - + You must select an image to delete. - + 'n Beeld om uit te wis moet geselekteer word. - + Image(s) - Beeld(e) + Beeld(e) - + You must select an image to replace the background with. - + 'n Beeld wat die agtergrond vervang moet gekies word. - + You must select a media file to replace the background with. - + 'n Media lêer wat die agtergrond vervang moet gekies word. @@ -1158,123 +928,43 @@ Changes do not affect verses already in the service. <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. - - - - - Media - Media - - - - Medias - - - - - Load - - - - - Load a new Media - - - - - Add - Byvoeg - - - - Add a new Media - - - - - Edit - Redigeer - - - - Edit the selected Media - - - - - Delete - - - - - Delete the selected Media - - - - - Preview - Voorskou - - - - Preview the selected Media - - - - - Live - Regstreeks - - - - Send the selected Media live - - - - - Service - - - - - Add the selected Media to the service - + <strong>Media Mini-program</strong><br/>Die media mini-program verskaf speel funksies van audio en video. MediaPlugin.MediaItem - - Select Media - Selekteer Media - - - - Replace Live Background - - - - - Replace Background - - - - + Media - Media + Media - + + Select Media + Selekteer Media + + + + Replace Live Background + Vervang Regstreekse Agtergrond + + + + Replace Background + Vervang Agtergrond + + + You must select a media file to delete. - + 'n Media lêer om uit te wis moet geselekteer word. OpenLP - + Image Files - + Beeld Lêers @@ -1282,7 +972,7 @@ Changes do not affect verses already in the service. About OpenLP - Aangaande OpenLP + Aangaande OpenLP @@ -1293,12 +983,18 @@ OpenLP is free church presentation software, or lyrics projection software, used Find out more about OpenLP: http://openlp.org/ OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider contributing by using the button below. - + OpenLP <version><revision> - Open Source Lyrics Projection + +OpenLP is gratis kerk aanbieding sagteware of lirieke projeksie sagteware wat gebruik word vir die vertoning van liedere, Bybel verse, video's, beelde tot ook aanbiedings (as OpenOffice.org, PowerPoint of PowerPoint Viewer geïnstalleer is) vir kerklike aanbidding deur middel van 'n rekenaar en 'n data projektor. + +Vind meer uit oor OpenLP: http://openlp.org/ + +OpenLP is geskryf en word onderhou deur vrywilligers. As u graag wil sien dat meer Christelike sagteware geskryf word, oorweeg dit asseblief om by te dra deur die knoppie hieronder te gebruik. About - Aangaande + Aangaande @@ -1340,17 +1036,54 @@ Built With PyQt4: http://www.riverbankcomputing.co.uk/software/pyqt/intro Oxygen Icons: http://oxygen-icons.org/ - + Projek Leier +Raoul "superfly" Snyman + +Ontwikkelaars +Tim "TRB143" Bentley +Jonathan "gushie" Corwin +Michael "cocooncrash" Gorven +Scott "sguerrieri" Guerrieri +Raoul "superfly" Snyman +Martin "mijiti" Thompson +Jon "Meths" Tibble + +Bydraers +Meinert "m2j" Jordan +Andreas "googol" Preikschat +Christian "crichter" Richter +Philip "Phill" Ridout +Maikel Stuivenberg +Carsten "catini" Tingaard +Frode "frodus" Woldsund + +Toetsers +Philip "Phill" Ridout +Wesley "wrst" Stout (lead) + +Verpakkers +Thomas "tabthorpe" Abthorpe (FreeBSD) +Tim "TRB143" Bentley (Fedora) +Michael "cocooncrash" Gorven (Ubuntu) +Matthias "matthub" Hub (Mac OS X) +Raoul "superfly" Snyman (Windows, Ubuntu) + +Gebou Met +Python: http://www.python.org/ +Qt4: http://qt.nokia.com/ +PyQt4: http://www.riverbankcomputing.co.uk/software/pyqt/intro +Oxygen Ikone: http://oxygen-icons.org/ + Credits - Krediete + Krediete - Copyright © 2004-2010 Raoul Snyman -Portions copyright © 2004-2010 Tim Bentley, Jonathan Corwin, Michael Gorven, Scott Guerrieri, Christian Richter, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Carsten Tinggaard + Copyright © 2004-2010 Raoul Snyman +Portions copyright © 2004-2010 Tim Bentley, Jonathan Corwin, Michael Gorven, Scott Guerrieri, Christian Richter, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Carsten Tinggaard 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. @@ -1480,27 +1213,155 @@ Yoyodyne, Inc., hereby disclaims all copyright interest in the program "Gno Ty Coon, President of Vice This General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. - + Kopiereg © 2004-2010 Raoul Snyman +Gedeeltelike kopiereg © 2004-2010 Tim Bentley, Jonathan Corwin, Michael Gorven, Scott Guerrieri, Christian Richter, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Carsten TinggaardHierdie program is gratis sagteware, u kan dit herversprei en / of wysig onder die voorwaardes van die GNU General Public License ', soos gepubliseer deur die Free Software Foundation; weergawe 2 van die lisensie. + +Hierdie program word versprei in die hoop dat dit nuttig sal wees, maar SONDER ENIGE WAARBORG, selfs sonder die geïmpliseerde waarborg van VERHANDELBAARHEID of GESKIKTHEID VIR 'N SPESIFIEKE DOEL. Sien hieronder vir meer besonderhede. + + +GNU GENERAL PUBLIC LICENSE +Version 2, June 1991 + +Copyright (C) 1989, 1991 Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. + +Preamble + +The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This General Public License applies to most of the Free Software Foundation's software and to any other program whose authors commit to using it. (Some other Free Software Foundation software is covered by the GNU Lesser General Public License instead.) You can apply it to your programs, too. + +When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things. + +To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it. + +For example, if you distribute copies of such a program, whether gratis or for a fee, you must give the recipients all the rights that you have. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. + +We protect your rights with two steps: (1) copyright the software, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the software. + +Also, for each author's protection and ours, we want to make certain that everyone understands that there is no warranty for this free software. If the software is modified by someone else and passed on, we want its recipients to know that what they have is not the original, so that any problems introduced by others will not reflect on the original authors' reputations. + +Finally, any free program is threatened constantly by software patents. We wish to avoid the danger that redistributors of a free program will individually obtain patent licenses, in effect making the program proprietary. To prevent this, we have made it clear that any patent must be licensed for everyone's free use or not licensed at all. + +The precise terms and conditions for copying, distribution and modification follow. + +GNU GENERAL PUBLIC LICENSE +TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + +0. This License applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The "Program", below, refers to any such program or work, and a "work based on the Program" means either the Program or any derivative work under copyright law: that is to say, a work containing the Program or a portion of it, either verbatim or with modifications and/or translated into another language. (Hereinafter, translation is included without limitation in the term "modification".) Each licensee is addressed as "you". + +Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running the Program is not restricted, and the output from the Program is covered only if its contents constitute a work based on the Program (independent of having been made by running the Program). Whether that is true depends on what the Program does. + +1. You may copy and distribute verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and give any other recipients of the Program a copy of this License along with the Program. + +You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. + +2. You may modify your copy or copies of the Program or any portion of it, thus forming a work based on the Program, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: + +a) You must cause the modified files to carry prominent notices stating that you changed the files and the date of any change. + +b) You must cause any work that you distribute or publish, that in whole or in part contains or is derived from the Program or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License. + +c) If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the most ordinary way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this License. (Exception: if the Program itself is interactive but does not normally print such an announcement, your work based on the Program is not required to print an announcement.) + +These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Program, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Program. + +In addition, mere aggregation of another work not based on the Program with the Program (or with a work based on the Program) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. + +3. You may copy and distribute the Program (or a work based on it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you also do one of the following: + +a) Accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, + +b) Accompany it with a written offer, valid for at least three years, to give any third party, for a charge no more than your cost of physically performing source distribution, a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, + +c) Accompany it with the information you received as to the offer to distribute corresponding source code. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form with such an offer, in accord with Subsection b above.) + +The source code for a work means the preferred form of the work for making modifications to it. For an executable work, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the executable. However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. + +If distribution of executable or object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place counts as distribution of the source code, even though third parties are not compelled to copy the source along with the object code. + +4. You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense or distribute the Program is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. + +5. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Program or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Program (or any work based on the Program), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Program or works based on it. + +6. Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License. + +7. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Program at all. For example, if a patent license would not permit royalty-free redistribution of the Program by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply and the section as a whole is intended to apply in other circumstances. + +It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system, which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. + +This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. + +8. If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Program under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. + +9. The Free Software Foundation may publish revised and/or new versions of the General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. + +Each version is given a distinguishing version number. If the Program specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of this License, you may choose any version ever published by the Free Software Foundation. + +10. If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. + +NO WARRANTY + +11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + +12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + +END OF TERMS AND CONDITIONS + +How to Apply These Terms to Your New Programs + +If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. + +To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. + +<one line to give the program's name and a brief idea of what it does.> +Copyright (C) <year> <name of author> + +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; either version 2 of the License, or (at your option) any later version. + +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 the GNU General Public License for more details. + +You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + +Also add information on how to contact you by electronic and paper mail. + +If the program is interactive, make it output a short notice like this when it starts in an interactive mode: + +Gnomovision version 69, Copyright (C) year name of author +Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type "show w". +This is free software, and you are welcome to redistribute it under certain conditions; type "show c" for details. + +The hypothetical commands "show w" and "show c" should show the appropriate parts of the General Public License. Of course, the commands you use may be called something other than "show w" and "show c"; they could even be mouse-clicks or menu items--whatever suits your program. + +You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright disclaimer" for the program, if necessary. Here is a sample; alter the names: + +Yoyodyne, Inc., hereby disclaims all copyright interest in the program "Gnomovision" (which makes passes at compilers) written by James Hacker. + +<signature of Ty Coon>, 1 April 1989 +Ty Coon, President of Vice + +This General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. License - Lisensie + Lisensie Contribute - Dra By + Dra By Close - Maak toe + Maak toe build %s - + bou %s @@ -1508,27 +1369,27 @@ This General Public License does not permit incorporating your program into prop Advanced - Gevorderd + Gevorderd UI Settings - + GK (UI) Verstellings Number of recent files to display: - + Hoeveelheid onlangse lêers om te vertoon: Remember active media manager tab on startup - + Onthou die laaste media bestuurder oortjie wanneer die program begin Double-click to send items straight to live (requires restart) - + Dubbel-kliek items direk na regstreekse vertoning te stuur (benodig herlaai) @@ -1536,310 +1397,310 @@ This General Public License does not permit incorporating your program into prop Theme Maintenance - Tema Onderhoud + Tema Onderhoud Theme &name: - + Tema &naam: Type: - Tipe: + Tipe: Solid Color - Soliede Kleur + Soliede Kleur Gradient - Gradiënt + Gradiënt Image - Beeld + Beeld Image: - Beeld: + Beeld: Gradient: - + Gradiënt: Horizontal - Horisontaal + Horisontaal Vertical - Vertikaal + Vertikaal Circular - Sirkelvormig + Sirkelvormig &Background - + &Agtergrond Main Font - Hoof Skrif + Hoof Skrif Font: - Skrif: + Skrif: Color: - + Kleur: Size: - Grootte: + Grootte: pt - pt + pt Adjust line spacing: - + Verstel lyn spasiëring: Normal - Normaal + Normaal Bold - Vetgedruk + Vetgedruk Italics - Kursief + Kursief Bold/Italics - Bold/Italics + Vetgedruk/Kursief Style: - + Styl: Display Location - Vertoon Ligging + Vertoon Ligging Use default location - + Gebruik verstek ligging X position: - + X posisie: Y position: - + Y posisie: Width: - Wydte: + Wydte: Height: - Hoogte: + Hoogte: px - px + px &Main Font - + &Hoof Skrif Footer Font - Voetnota Skriftipe + Voetnota Skriftipe &Footer Font - + Voetnota Skri&ftipe Outline - Buitelyn + Buitelyn Outline size: - + Buitelyn grootte: Outline color: - + Buitelyn kleur: Show outline: - + Vertoon buitelyn: Shadow - Skaduwee + Skaduwee Shadow size: - + Skaduwee grootte: Shadow color: - + Skaduwee kleur: Show shadow: - + Vertoon skaduwee: Alignment - Belyning + Belyning Horizontal align: - + Horisontale belyning: Left - Links + Links Right - Regs + Regs Center - Middel + Middel Vertical align: - + Vertikale belyning: Top - + Bo Middle - Middel + Middel Bottom - Onder + Onder Slide Transition - Skyfie Verandering + Skyfie Verandering Transition active - + Verandering aktief &Other Options - + Ander &Opsies Preview - Voorskou + Voorskou All Files - + Alle Lêers Select Image - + Selekteer beeld First color: - + Eerste kleur: Second color: - + Tweede kleur: Slide height is %s rows. - + Skyfie hoogte is %s rye. OpenLP.ExceptionDialog - - - Error Occured - - 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. - + Oeps! OpenLP het 'n probleem ondervind en kon nie daarvanaf herstel nie. Die teks in die boks hieronder bevat inligting wat van hulp kan wees aan die OpenLP ontwikkelaars, so stuur dit asseblief per e-pos na bugs@openlp.org saam met 'n gedetaileerde beskrywing van wat gedoen was toe die probleem plaasgevind het. + + + + Error Occurred + 'n Fout het opgeduik @@ -1847,643 +1708,716 @@ This General Public License does not permit incorporating your program into prop General - Algemeen + Algemeen Monitors - Monitors + Monitors Select monitor for output display: - Selekteer monitor vir uitgaande vertoning: + Selekteer monitor vir uitgaande vertoning: Display if a single screen - + Vertoon as dit 'n enkel skerm is Application Startup - Program Aanskakel + Applikasie Aanskakel Show blank screen warning - Vertoon leë skerm waarskuwing + Vertoon leë skerm waarskuwing Automatically open the last service - Maak vanself die laaste diens oop + Maak vanself die laaste diens oop Show the splash screen - Wys die spatsel skerm + Wys die spatsel skerm Application Settings - Program Verstellings + Program Verstellings Prompt to save before starting a new service - + Vra om te stoor voordat 'n nuwe diens begin word Automatically preview next item in service - + Wys voorskou van volgende item in diens automaties Slide loop delay: - + Skyfie herhaal vertraging: sec - + sek CCLI Details - CCLI Inligting + CCLI Inligting CCLI number: - + CCLI nommer: SongSelect username: - + SongSelect gebruikersnaam: SongSelect password: - + SongSelect wagwoord: Display Position - + Vertoon Posisie X - + X Y - + Y Height - + Hoogte Width - + Wydte Override display position - + Oorskryf vertoon posisie Screen - Skerm + Skerm primary - primêre + primêre OpenLP.LanguageManager - + Language - + Taal - + Please restart OpenLP to use your new language setting. - + Herlaai asseblief OpenLP om die nuwe taal instelling te gebruik. OpenLP.MainWindow - - - New Service - Nuwe Diens - - - - Open Service - Maak Diens Oop - - - - Save Service - Stoor Diens - OpenLP 2.0 - OpenLP 2.0 - - - - AddHereYourLanguageName - + OpenLP 2.0 &File - &Lêer + &Lêer &Import - &Invoer + &Invoer &Export - &Uitvoer + Uitvo&er &View - &Bekyk + &Bekyk M&ode - M&odus + M&odus &Tools - &Gereedskap + &Gereedskap &Settings - Ver&stellings + Ver&stellings &Language - Taa&l + Taa&l &Help - &Hulp + &Hulp Media Manager - Media Bestuurder + Media Bestuurder Service Manager - Diens Bestuurder + Diens Bestuurder Theme Manager - Tema Bestuurder + Tema Bestuurder &New - &Nuwe + &Nuwe + + + + New Service + Nuwe Diens Create a new service. - + Skep 'n nuwe diens. Ctrl+N - Ctrl+N + Ctrl+N &Open - Maak &Oop + Maak &Oop + + + + Open Service + Maak Diens Oop Open an existing service. - + Maak 'n bestaande diens oop. Ctrl+O - Ctrl+O + Ctrl+O &Save - &Stoor + &Stoor + + + + Save Service + Stoor Diens Save the current service to disk. - + Stoor die huidige diens na skyf. Ctrl+S - Ctrl+S + Ctrl+S Save &As... - Stoor &As... + Stoor &As... Save Service As - Stoor Diens As + Stoor Diens As Save the current service under a new name. - + Stoor die huidige diens onder 'n nuwe naam. Ctrl+Shift+S - + Ctrl+Shift+S E&xit - &Uitgang + &Uitgang Quit OpenLP - Sluit OpenLP Af + Sluit OpenLP Af Alt+F4 - Alt+F4 + Alt+F4 &Theme - &Tema + &Tema &Configure OpenLP... - + &Konfigureer OpenLP... &Media Manager - &Media Bestuurder + &Media Bestuurder Toggle Media Manager - Wissel Media Bestuurder + Wissel Media Bestuurder Toggle the visibility of the media manager. - + Wissel sigbaarheid van die media bestuurder. F8 - F8 + F8 &Theme Manager - &Tema Bestuurder + &Tema Bestuurder Toggle Theme Manager - Wissel Tema Bestuurder + Wissel Tema Bestuurder Toggle the visibility of the theme manager. - + Wissel sigbaarheid van die tema bestuurder. F10 - F10 + F10 &Service Manager - &Diens Bestuurder + &Diens Bestuurder Toggle Service Manager - Wissel Diens Bestuurder + Wissel Diens Bestuurder Toggle the visibility of the service manager. - + Wissel sigbaarheid van die diens bestuurder. F9 - F9 + F9 &Preview Panel - &Voorskou Paneel + Voorskou &Paneel Toggle Preview Panel - Wissel Voorskou Paneel + Wissel Voorskou Paneel Toggle the visibility of the preview panel. - + Wissel sigbaarheid van die voorskou paneel. F11 - F11 + F11 &Live Panel - + Regstreekse Panee&l Toggle Live Panel - + Wissel Regstreekse Paneel Toggle the visibility of the live panel. - + Wissel sigbaarheid van die regstreekse paneel. F12 - F12 + F12 &Plugin List - In&prop Lys + Mini-&program Lys List the Plugins - Lys die Inproppe + Lys die Mini-programme Alt+F7 - Alt+F7 + Alt+F7 &User Guide - &Gebruikers Gids + Gebr&uikers Gids &About - &Aangaande + &Aangaande More information about OpenLP - Meer inligting aangaande OpenLP + Meer inligting aangaande OpenLP Ctrl+F1 - Ctrl+F1 + Ctrl+F1 &Online Help - &Aanlyn Hulp + &Aanlyn Hulp &Web Site - &Web Tuiste + &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 Add &Tool... - + Voeg Gereedskaps&tuk by... Add an application to the list of tools. - + Voeg 'n applikasie by die lys van gereedskapstukke. &Default - + &Verstek Set the view mode back to the default. - + Verstel skou modus terug na verstek modus. &Setup - + Op&stel Set the view mode to Setup. - + Verstel die skou modus na Opstel modus. &Live - &Regstreeks + &Regstreeks Set the view mode to Live. - + 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/. - + Weergawe %s van OpenLP is nou beskikbaar vir aflaai (tans word weergawe %s gebruik). + +Die nuutste weergawe kan afgelaai word vanaf http://openlp.org/. OpenLP Version Updated - OpenLP Weergawe is Opdateer + OpenLP Weergawe is Opdateer - + OpenLP Main Display Blanked - OpenLP Hoof Vertoning Blanko + OpenLP Hoof Vertoning Blanko - + The Main Display has been blanked out - Die Hoof Skerm is blanko + Die Hoof Skerm is afgeskakel - + Save Changes to Service? - + Stoor Veranderinge aan Diens? - + Your service has changed. Do you want to save those changes? - + Die diens het verander. Stoor veranderinge? - + Default Theme: %s - + Verstek Tema: %s - + English - Engels + Please add the name of your language here + Afrikaans OpenLP.MediaManagerItem - + No Items Selected - + Geen item geselekteer nie - + + Import %s + Voer %s in + + + + Import a %s + Voer 'n %s in + + + + Load %s + Laai %s + + + + Load a new %s + Laai 'n nuwe %s + + + + New %s + Nuwe %s + + + + Add a new %s + Voeg 'n nuwe %s by + + + + Edit %s + Redigeer %s + + + + Edit the selected %s + Redigeer die geselekteerde %s + + + + Delete %s + Wis %s uit + + + + Delete the selected item + Wis geselekteerde item uit + + + + Preview %s + Voorskou %s + + + + Preview the selected item + Voorskou die geselekteerde item + + + + Send the selected item live + Stuur die geselekteerde item na regstreekse vertoning + + + + Add %s to Service + Voeg %s by die Diens + + + + Add the selected item(s) to the service + Voeg die geselekteerde item(s) by die diens + + + &Edit %s - + R&edigeer %s - + &Delete %s - + &Wis %s uit - + &Preview %s - + &Voorskou %s - + &Show Live - &Vertoon Regstreeks + Vertoon Regstreek&s - + &Add to Service - &Voeg by Diens + &Voeg by Diens - + &Add to selected Service Item - + &Voeg by die geselekteerde Diens item - + You must select one or more items to preview. - + Kies een of meer items vir die voorskou. - + You must select one or more items to send live. - + Kies een of meer items vir regstreekse uitsending. - + You must select one or more items. - + Kies een of meer items. - + No items selected - + Geen items geselekteer nie - + You must select one or more items - + Kies een of meer items - + No Service Item Selected - + Geen Diens Item Geselekteer nie - + You must select an existing service item to add to. - + 'n Bestaande diens item moet geselekteer word om by by te voeg. - + Invalid Service Item - + Ongeldige Diens Item - + You must select a %s service item. - + Kies 'n %s diens item. @@ -2491,52 +2425,52 @@ You can download the latest version from http://openlp.org/. Plugin List - Inprop Lys + Mini-program Lys Plugin Details - Inprop Besonderhede + Mini-program Besonderhede Version: - Weergawe: + Weergawe: About: - Aangaande: + Aangaande: Status: - Status: + Status: Active - Aktief + Aktief Inactive - Onaktief + Onaktief - + %s (Inactive) - + %s (Onaktief) - + %s (Active) - + %s (Aktief) - + %s (Disabled) - + %s (Onaktief) @@ -2544,22 +2478,22 @@ You can download the latest version from http://openlp.org/. Reorder Service Item - + Hergroepeer Diens Item Up - + Op Delete - + Wis uit Down - + Af @@ -2567,178 +2501,184 @@ You can download the latest version from http://openlp.org/. New Service - Nuwe Diens + Nuwe Diens Create a new service - Skep 'n nuwe diens + Skep 'n nuwe diens - + Open Service - Maak Diens Oop + Maak Diens Oop Load an existing service - Laai 'n bestaande diens + Laai 'n bestaande diens - + Save Service - Stoor Diens + Stoor Diens Save this service - Stoor hierdie diens + Stoor hierdie diens Theme: - Tema: + Tema: Select a theme for the service - Selekteer 'n tema vir die diens + Selekteer 'n tema vir die diens Move to &top - + Skuif boon&toe Move item to the top of the service. - + Skuif item tot heel bo in die diens. Move &up - + Sk&uif op Move item up one position in the service. - + Skuif item een posisie boontoe in die diens. Move &down - + Skuif &af Move item down one position in the service. - + Skuif item een posisie af in die diens. Move to &bottom - + Skuif &tot heel onder Move item to the end of the service. - + Skuif item tot aan die einde van die diens. &Delete From Service - + Wis uit vanaf die &Diens Delete the selected item from the service. - + Wis geselekteerde item van die diens af. &Add New Item - + &Voeg Nuwe Item By &Add to Selected Item - + &Voeg by Geselekteerde Item &Edit Item - R&edigeer Item + R&edigeer Item &Reorder Item - + Ve&rander Item orde &Notes - &Notas + &Notas &Preview Verse - Vers V&oorsig + Vers V&oorsig &Live Verse - &Lewendige Vers + &Regstreekse Vers &Change Item Theme - &Verander Item Tema + &Verander Item Tema - + Save Changes to Service? - + Stoor Veranderinge aan Diens? - + Your service is unsaved, do you want to save those changes before creating a new one? - + Die diens is nie gestoor nie. Stoor die veranderinge voor 'n nuwe een geskep word? - + OpenLP Service Files (*.osz) - + OpenLP Diens Lêers (*.osz) - + Your current service is unsaved, do you want to save the changes before opening a new one? - + Huidige diens is nie gestoor nie. Stoor die veranderinge voordat 'n nuwe een oopgemaak word? - + Error - Fout + Fout - + 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 @@ -2746,7 +2686,7 @@ The content encoding is not UTF-8. Service Item Notes - Diens Item Notas + Diens Item Notas @@ -2754,7 +2694,7 @@ The content encoding is not UTF-8. Configure OpenLP - + Konfigureer OpenLP @@ -2762,95 +2702,80 @@ The content encoding is not UTF-8. Live - Regstreeks + Regstreeks Preview - Voorskou + Voorskou Move to previous - Beweeg na vorige + Beweeg na vorige Move to next - Verskuif na volgende + Beweeg na volgende Hide - + Verskuil - - Blank Screen - Blanko Skerm - - - - Blank to Theme - - - - - Show Desktop - - - - + Move to live - Verskuif na regstreekse skerm + Verskuif na regstreekse skerm - - Edit and re-preview song - - - - + Start continuous loop - Begin aaneenlopende lus + Begin aaneenlopende lus - + Stop continuous loop - Stop deurlopende lus + Stop deurlopende lus - + s - s + s - + Delay between slides in seconds - Vertraging in sekondes tussen skyfies + Vertraging tussen skyfies in sekondes - + Start playing media - Begin media speel + Begin media speel - + Go To - + Gaan Na + + + + Edit and reload song preview + Redigeer en laai weer 'n lied voorskou OpenLP.SpellTextEdit - + Spelling Suggestions - + Spelling Voorstelle - + Formatting Tags - + Uitleg Hakkies @@ -2858,178 +2783,179 @@ The content encoding is not UTF-8. New Theme - Nuwe Tema + Nuwe Tema Create a new theme. - + Skep 'n nuwe tema. Edit Theme - Wysig Tema + Redigeer Tema Edit a theme. - + Redigeer 'n tema. Delete Theme - Wis Tema Uit + Wis Tema Uit Delete a theme. - + Wis 'n tema uit. Import Theme - Tema Invoer + Voer Tema In Import a theme. - + Voer 'n tema in. Export Theme - Voer Tema Uit + Voer Tema Uit Export a theme. - + Voer 'n tema uit. &Edit Theme - + R&edigeer Tema &Delete Theme - + &Wis Tema uit Set As &Global Default - + Stel in As &Globale Standaard E&xport Theme - + Voer Tema &Uit %s (default) - + %s (standaard) You must select a theme to edit. - + Kies 'n tema om te redigeer. You must select a theme to delete. - + Kies 'n tema om uit te wis. Delete Confirmation - + Uitwis Bevestiging Delete theme? - + Wis tema uit? Error - Fout + Fout You are unable to delete the default theme. - - - - - Theme %s is use in %s plugin. - - - - - Theme %s is use by the service manager. - + Die standaard tema kan nie uitgewis word nie. You have not selected a theme. - + Geen tema is geselekteer nie. Save Theme - (%s) - Stoor Tema - (%s) + Stoor Tema - (%s) Theme Exported - + Tema Uitvoer Your theme has been successfully exported. - + Die tema was suksesvol uitgevoer. Theme Export Failed - + Tema Uitvoer het Misluk Your theme could not be exported due to an error. - + Die tema kon nie uitgevoer word nie weens 'n fout. Select Theme Import File - Kies Tema Invoer Lêer + Kies Tema Invoer Lêer Theme (*.*) - + Tema (*.*) File is not a valid theme. The content encoding is not UTF-8. - + Lêer is nie 'n geldige tema nie. +Die inhoud enkodering is nie UTF-8 nie. File is not a valid theme. - + Lêer is nie 'n geldige tema nie. Theme Exists - Tema Bestaan + Tema Bestaan Reeds A theme with this name already exists. Would you like to overwrite it? - + 'n Tema met hierdie naam bestaan alreeds. Kan dit oorskryf word? + + + + Theme %s is used in the %s plugin. + Tema %s is in gebruik deur die %s mini-program. + + + + Theme %s is used by the service manager. + Tema %s is in gebruik deur die diens bestuurder. @@ -3037,47 +2963,47 @@ The content encoding is not UTF-8. Themes - Temas + Temas Global Theme - + Globale Tema Theme Level - + Tema Vlak S&ong Level - + Lied Vl&ak 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. - Gebruik die tema van elke lied in die lied-databasis. As 'n lied nie 'n geassosieërde tema het nie, gebruik die diens se tema. As die diens nie 'n tema het nie, gebruik dan die globale tema. + Gebruik die tema van elke lied in die lied-databasis. As 'n lied nie 'n geassosieërde tema het nie, gebruik die diens se tema. As die diens nie 'n tema het nie, gebruik dan die globale tema. &Service Level - + Dien&s Vlak 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. - Gebruik die tema van die diens en verplaas enige van die individuele liedere se temas. As die diens nie 'n tema het nie, gebruik dan die globale tema. + Gebruik die tema van die diens en verplaas enige van die individuele liedere se temas. As die diens nie 'n tema het nie, gebruik dan die globale tema. &Global Level - + &Globale Vlak Use the global theme, overriding any themes associated with either the service or the songs. - Gebruik die globale tema om enige temas wat met die diens of liedere geassosieer is te vervang. + Gebruik die globale tema om enige temas wat met die diens of liedere geassosieer is te vervang. @@ -3085,110 +3011,55 @@ The content encoding is not UTF-8. <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. - - - - - Presentation - Aanbieding - - - - Presentations - Aanbiedinge - - - - Load - - - - - Load a new Presentation - - - - - Delete - - - - - Delete the selected Presentation - - - - - Preview - Voorskou - - - - Preview the selected Presentation - - - - - Live - Regstreeks - - - - Send the selected Presentation live - - - - - Service - - - - - Add the selected Presentation to the service - + <strong>Aanbieding Mini-program</strong><br/>Die aanbieding mini-program bied die vermoë om aanbiedings van verskillende programme te vertoon. Die keuse van beskikbare aanbieding-programme word aan die gebruiker vertoon deur 'n hangkieslys. PresentationPlugin.MediaItem - + + Presentation + Aanbieding + + + Select Presentation(s) - Selekteer Aanbieding(e) + Selekteer Aanbieding(e) - + Automatic - + Outomaties - + Present using: - Bied aan met: + Bied aan met: - + File Exists - + Lêer Bestaan Reeds - + A presentation with that filename already exists. - 'n Voorstelling met daardie lêernaam bestaan reeds. + 'n Aanbieding met daardie lêernaam bestaan reeds. - + Unsupported File - + Lêer nie Ondersteun nie - + This type of presentation is not supported. - + Hierdie tipe aanbieding word nie ondersteun nie. - + You must select an item to delete. - + 'n Item om uit te wis moet geselekteer word. @@ -3196,22 +3067,22 @@ The content encoding is not UTF-8. Presentations - Aanbiedinge + Aanbiedinge Available Controllers - Beskikbare Beheerders + Beskikbare Beheerders Advanced - Gevorderd + Gevorderd Allow presentation application to be overriden - + Laat toe dat aanbieding program oorheers word @@ -3219,17 +3090,7 @@ The content encoding is not UTF-8. <strong>Remote Plugin</strong><br />The remote plugin provides the ability to send messages to a running version of OpenLP on a different computer via a web browser or through the remote API. - - - - - Remote - - - - - Remotes - Afstandbehere + <strong>Afgeleë Mini-program</strong><br/>Die afgeleë mini-program verskaf die vermoë om boodskappe na 'n lopende weergawe van OpenLP op 'n ander rekenaar te stuur deur 'n web-blaaier of deur die afgeleë PPK (API). @@ -3237,22 +3098,22 @@ The content encoding is not UTF-8. Remotes - Afstandbehere + Afstandbehere Serve on IP address: - + Bedien op hierdie IP adres: Port number: - + Poort nommer: Server Settings - + Bediener Verstellings @@ -3260,47 +3121,42 @@ The content encoding is not UTF-8. &Song Usage Tracking - + &Volg Lied Gebruik &Delete Tracking Data - + Wis Volg &Data Uit Delete song usage data up to a specified date. - + Wis lied volg data uit tot en met 'n spesifieke datum. &Extract Tracking Data - + Onttr&ek Volg Data Generate a report on song usage. - + Genereer 'n verslag oor lied-gebruik. Toggle Tracking - + Wissel Volging Toggle the tracking of song usage. - + Wissel lied-gebruik volging. <strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services. - - - - - SongUsage - + <strong>LiedGebruik Mini-program</strong><br/>Die mini-program volg die gebruik van liedere in dienste. @@ -3308,17 +3164,17 @@ The content encoding is not UTF-8. Delete Song Usage Data - + Wis Lied Gebruik Data Uit Delete Selected Song Usage Events? - + Wis Geselekteerde Lied Gebruik Gebeure uit? Are you sure you want to delete selected Song Usage data? - + Wis regtig die geselekteerde Diens Gebruik data uit? @@ -3326,27 +3182,27 @@ The content encoding is not UTF-8. Song Usage Extraction - + Diens Gebruik Ontrekking Select Date Range - + Selekteer Datum Grense to - aan + tot Report Location - Rapporteer Ligging + Rapporteer Ligging Output File Location - Uitvoer Lêer Ligging + Uitvoer Lêer Ligging @@ -3359,82 +3215,12 @@ The content encoding is not UTF-8. 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. - - - - - Song - Lied - - - - Songs - Liedere - - - - Add - Byvoeg - - - - Add a new Song - - - - - Edit - Redigeer - - - - Edit the selected Song - - - - - Delete - - - - - Delete the selected Song - - - - - Preview - Voorskou - - - - Preview the selected Song - - - - - Live - Regstreeks - - - - Send the selected Song live - - - - - Service - - - - - Add the selected Song to the service - + <strong>Liedere Mini-program</strong><br/>Die liedere mini-program verskaf die vermoë om liedere te vertoon en te bestuur. @@ -3442,42 +3228,42 @@ The content encoding is not UTF-8. Author Maintenance - Skrywer Onderhoud + Outeur Onderhoud Display name: - Vertoon naam: + Vertoon naam: First name: - Voornaam: + Voornaam: Last name: - Van: + Van: Error - Fout + Fout You need to type in the first name of the author. - U moet die naam van die skrywer invul. + U moet die naam van die skrywer invul. You need to type in the last name of the author. - U moet ten minste die skrywer se naam invoer. + U moet ten minste die skrywer se naam invoer. - You have not set a display name for the author, would you like me to combine the first and last names for you? - + You have not set a display name for the author, combine the first and last names? + 'n Vertoon naam vir die skrywer is nie opgestel nie. Kan die naam en van gekombineer word? @@ -3485,242 +3271,242 @@ The content encoding is not UTF-8. Song Editor - Lied Redigeerder + Lied Redigeerder &Title: - + &Titel: Alt&ernate title: - + Alt&ernatiewe titel: &Lyrics: - + &Lirieke: &Verse order: - + &Vers orde: &Add - + &Voeg by &Edit - R&edigeer + R&edigeer Ed&it All - + Red&igeer Alles &Delete - + &Wis Uit Title && Lyrics - Titel && Lirieke + Titel && Lirieke Authors - Skrywers + Skrywers &Add to Song - &Voeg by Lied + &Voeg by Lied &Remove - &Verwyder + Ve&rwyder &Manage Authors, Topics, Song Books - + &Bestuur Skrywers, Onderwerpe en Lied Boeke Topic - Onderwerp + Onderwerp A&dd to Song - Voeg by Lie&d + Voeg by Lie&d R&emove - V&erwyder + V&erwyder Song Book - Lied Boek + Lied Boek Book: - Boek: + Boek: Number: - + Nommer: Authors, Topics && Song Book - + Skrywers, Onderwerpe && Lied Boek Theme - Tema + Tema New &Theme - + Nuwe &Tema Copyright Information - Kopiereg Informasie + Kopiereg Informasie - © - + © + © CCLI number: - + CCLI nommer: Comments - Kommentaar + Kommentaar Theme, Copyright Info && Comments - Tema, Kopiereg Informasie && Kommentaar + Tema, Kopiereg Informasie && Kommentaar Save && Preview - Stoor && Voorskou + Stoor && Voorskou Add Author - + Voeg Skrywer By This author does not exist, do you want to add them? - + Hierdie skrywer bestaan nie, moet die skrywer bygevoeg word? Error - Fout + Fout This author is already in the list. - + Hierdie skrywer is alreeds in die lys. No Author Selected - + Geen Skrywer Geselekteer nie 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. - + Die geselekteerde skrywer is ongeldig. Kies 'n skrywer vanaf die lys of voer 'n nuwe skrywer in en kliek op die "Voeg Skrywer by Lied" knoppie om die skrywer by te voeg. Add Topic - + Voeg Onderwerp by This topic does not exist, do you want to add it? - + Die onderwerp bestaan nie. Voeg dit by? This topic is already in the list. - + Die onderwerp is reeds in die lys. No Topic Selected - + Geen Onderwep Geselekteer nie 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. - + Geselekteerde onderwerp is ongeldig. Kies 'n onderwerp vanaf die lys of voer 'n nuwe onderwerp in en kliek die "Voeg Onderwerp by Lied" knoppie om die onderwerp by te voeg. You need to type in a song title. - + Tik 'n lied titel in. You need to type in at least one verse. - + Ten minste een vers moet ingevoer word. Warning - + Waarskuwing You have not added any authors for this song. Do you want to add an author now? - + Die lied het nog geen skrywer nie. Voeg nou 'n skrywer by? The verse order is invalid. There is no verse corresponding to %s. Valid entries are %s. - + Die vers orde is ongeldig. Daar is geen vers wat ooreenstem met %s nie. Geldige opsies is %s. You have not used %s anywhere in the verse order. Are you sure you want to save the song like this? - + In die vers orde is %s nie gebruik nie. Kan die lied so gestoor word? Add Book - + Voeg Boek by This song book does not exist, do you want to add it? - + Die lied boek bestaan nie. Voeg dit by? @@ -3728,343 +3514,378 @@ The content encoding is not UTF-8. Edit Verse - Redigeer Vers + Redigeer Vers &Verse type: - + &Vers tipe: &Insert - + Sit Tussen-&in SongsPlugin.ImportWizardForm - + No OpenLP 2.0 Song Database Selected - + Geen OpenLP 2.0 Lied Databasis Geselekteer nie - + You need to select an OpenLP 2.0 song database file to import from. - + 'n OpenLP 2.0 lied databasis moet geselekteer word om vanaf in te voer. - + No openlp.org 1.x Song Database Selected - + Geen OpenLP 1.x Lied Databasis Geselekteer nie - + You need to select an openlp.org 1.x song database file to import from. - + 'n OpenLP 1.x lied databasis moet geselekteer word om vanaf in te voer. - - No OpenLyrics Files Selected - - - - - You need to add at least one OpenLyrics song file to import from. - - - - + No OpenSong Files Selected - + Geen OpenSong Lêer Geselekteer nie - + You need to add at least one OpenSong song file to import from. - + Ten minste een OpenSong lêer moet bygevoeg word om vanaf in te voer. - + No Words of Worship Files Selected - + Geen Words of Worship Lêer Geselekteer nie - + You need to add at least one Words of Worship file to import from. - + Ten minste een Words of Worship lêer moet bygevoeg word om vanaf in te voer. - + No CCLI Files Selected - + Geen CCLI Lêer Geselekteer nie - + You need to add at least one CCLI file to import from. - + Ten minste een CCLI lêer moet bygevoeg word om vanaf in te voer. - + No Songs of Fellowship File Selected - + Geen Songs of Fellowship Lêer Geselekteer nie - + You need to add at least one Songs of Fellowship file to import from. - + Ten minste een Songs of Fellowship lêer moet bygevoeg word om vanaf in te voer. - + No Document/Presentation Selected - + Geen Dokument/Aanbieding Geselekteer nie - + You need to add at least one document or presentation file to import from. - + Ten minste een dokument of aanbieding moet bygevoeg word om vanaf in te voer. - + Select OpenLP 2.0 Database File - + Selekteer OpenLP 2.0 Databasis Lêer - + Select openlp.org 1.x Database File - + Selekteer openlp.org 1.x Databasis Lêer - - Select OpenLyrics Files - - - - + Select Open Song Files - + Selekteer Open Song Lêers - + Select Words of Worship Files - + Selekteer Words of Worship Lêers - + Select CCLI Files - + Selekteer CCLI Lêers - + Select Songs of Fellowship Files - + Selekteer Songs of Fellowship Lêers - + Select Document/Presentation Files - + Selekteer Dokument/Aanbieding Lêers - + Starting import... - Invoer begin... + Invoer begin... - + Song Import Wizard - + Lied Invoer Gids - + Welcome to the Song Import Wizard - + Welkom by die Lied Invoer Gids - + 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. - + Hierdie gids help met die invoer van liedere in verskillende formate. Kliek die volgende knoppie hieronder om die proses te begin deur 'n formaat te kies wat gebruik moet word vir invoer. - + Select Import Source - Selekteer Invoer Bron + Selekteer Invoer Bron - + Select the import format, and where to import from. - Selekteer die invoer formaat en van waar af om in te voer. + Selekteer die invoer formaat en van waar af om in te voer. - + Format: - Formaat: + Formaat: - + OpenLP 2.0 - OpenLP 2.0 + OpenLP 2.0 - + openlp.org 1.x - + openlp.org 1.x - + OpenLyrics - + OpenLyrics - + OpenSong - OpenSong + OpenSong - + Words of Worship - + Words of Worship - + CCLI/SongSelect - + CCLI/SongSelect - + Songs of Fellowship - + Songs of Fellowship - + Generic Document/Presentation - + Generiese Dokumentasie/Aanbieding - + Filename: - + Lêernaam: - + Browse... - + Deursoek... - + + 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. + Die openlp.org 1.x invoerder is onaktief gestel weens 'n vermisde Python module. Om van hierdie invoerder gebruik te maak moet die "python-sqlite" module installeer word. + + + Add Files... - + Voeg Lêers by... - + Remove File(s) - + Verwyder Lêer(s) - + + The Songs of Fellowship importer has been disabled because OpenLP cannot find OpenOffice.org on your computer. + Die Songs of Fellowship invoerder is onaktief gestel omdat OpenLP nie OpenOffice.org op die rekenaar kon vind nie. + + + + The generic document/presentation importer has been disabled because OpenLP cannot find OpenOffice.org on your computer. + Die generiese dokument/aanbieding invoerder is onaktief gestel omdat OpenLP nie OpenOffice.org op die rekenaar kon vind nie. + + + Importing - Invoer + Invoer - + Please wait while your songs are imported. - + Wag asseblief terwyl die liedere ingevoer word. - + Ready. - Gereed. + Gereed. - + %p% - + %p% - + Importing "%s"... - + "%s" ingevoer... - + Importing %s... - + %s ingevoer... + + + + No EasyWorship Song Database Selected + Geen EasyWorship Lied Databasis Geselekteer nie + + + + You need to select an EasyWorship song database file to import from. + 'n EasyWorship lied databasis om vanaf in te voer moet geselekteer word. + + + + Select EasyWorship Database File + Selekteer EasyWorship Databasis Lêer + + + + EasyWorship + EasyWorship + + + + 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. + Die OpenLyrics invoerder is nog nie ontwikkel nie, maar soos gesien kan word is ons van mening om dit te doen. Hopelik sal dit in die volgende vrystelling wees. + + + + Administered by %s + Toegedien deur %s SongsPlugin.MediaItem - + + Song + Lied + + + Song Maintenance - Lied Onderhoud + Lied Onderhoud - + Maintain the lists of authors, topics and books - Handhaaf die lys van skrywers, onderwerpe en boeke - - - - Search: - Soek: + Handhaaf die lys van skrywers, onderwerpe en boeke - Type: - Tipe: + Search: + Soek: - Clear - + Type: + Tipe: - Search - Soek + Clear + Maak Skoon - - Titles - Titels + + Search + Soek - Lyrics - + Titles + Titels + Lyrics + Lirieke + + + Authors - Skrywers + Skrywers - + You must select an item to edit. - + Selekteer 'n item om te regideer. - + You must select an item to delete. - + Selekteer 'n item om uit te wis. - + Are you sure you want to delete the selected song? - + Wis die geselekteerde lied uit? - + Are you sure you want to delete the %d selected songs? - + Wis die %d geselekteerde liedere uit? - + Delete Song(s)? - + Wis Lied(ere) uit? - + CCLI Licence: - CCLI Lisensie: + CCLI Lisensie: @@ -4072,53 +3893,53 @@ The content encoding is not UTF-8. Song Book Maintenance - + Lied Boek Onderhoud &Name: - + &Naam: &Publisher: - + &Uitgewer: Error - Fout + Fout You need to type in a name for the book. - + 'n Naam vir die boek moet ingevoer word. SongsPlugin.SongImport - + copyright - + kopiereg - - © - + + © + © SongsPlugin.SongImportForm - + Finished import. - Invoer voltooi. + Invoer voltooi. - + Your song import failed. - + Lied invoer het misluk. @@ -4126,147 +3947,147 @@ The content encoding is not UTF-8. Song Maintenance - Lied Onderhoud + Lied Onderhoud Authors - Skrywers + Skrywers Topics - Onderwerpe + Onderwerpe Song Books - + Lied Boeke &Add - + &Voeg By &Edit - R&edigeer + R&edigeer &Delete - + &Wis Uit Error - Fout + Fout Could not add your author. - + Skrywer kon nie bygevoeg word nie. This author already exists. - + Die skrywer bestaan reeds. Could not add your topic. - + Onderwerp kon nie bygevoeg word nie. This topic already exists. - + Hierdie onderwerp bestaan reeds. Could not add your book. - + Boek kon nie bygevoeg word nie. This book already exists. - + Hierdie boek bestaan reeds. Could not save your changes. - - - - - Could not save your modified author, because he already exists. - + Veranderinge kon nie gestoor word nie. Could not save your modified topic, because it already exists. - + Geredigeerde onderwerp kon nie gestoor word nie, want dit bestaan alreeds. Delete Author - Wis Skrywer Uit + Wis Skrywer Uit Are you sure you want to delete the selected author? - Is u seker u wil die geselekteerde skrywer uitwis? + Wis die geselekteerde skrywer uit? This author cannot be deleted, they are currently assigned to at least one song. - + Die skrywer kan nie uitgewis word nie, omdat die skrywer aan ten minste een lied toegeken is. No author selected! - Geen skrywer geselekteer nie! + Geen skrywer geselekteer nie! Delete Topic - Wis Onderwerp Uit + Wis Onderwerp Uit Are you sure you want to delete the selected topic? - Is u seker u wil die geselekteerde onderwerp uitwis? + Wis die geselekteerde onderwerp uit? This topic cannot be deleted, it is currently assigned to at least one song. - + Die onderwerp kan nie uitgewis word nie, omdat dit aan ten minste een lied toegeken is. No topic selected! - Geen onderwerp geselekteer nie! + Geen onderwerp geselekteer nie! Delete Book - Wis Boek Uit + Wis Boek Uit Are you sure you want to delete the selected book? - Is jy seker jy wil die geselekteerde boek uitwis? + Wis die geselekteerde boek uit? This book cannot be deleted, it is currently assigned to at least one song. - + Die boek kan nie uitgewis word nie, omdat dit aan ten minste een lied toegeken is. No book selected! - Geen boek geselekteer nie! + Geen boek geselekteer nie! + + + + Could not save your modified author, because the author already exists. + Geredigeerde skrywer kon nie gestoor word nie, omdat die skrywer reeds bestaan. @@ -4274,22 +4095,22 @@ The content encoding is not UTF-8. Songs - Liedere + Liedere Songs Mode - Liedere Modus + Liedere Modus Enable search as you type - + Bekragtig soek soos getik word Display verses on live tool bar - + Vertoon verse op regstreekse gereedskap staaf @@ -4297,22 +4118,22 @@ The content encoding is not UTF-8. Topic Maintenance - Onderwerp Onderhoud + Onderwerp Onderhoud Topic name: - Onderwerp naam: + Onderwerp naam: Error - Fout + Fout - You need to type in a topic name! - U moet 'n onderwerp naam invoer! + You need to type in a topic name. + 'n Onderwerp naam moet ingevoer word. @@ -4320,37 +4141,37 @@ The content encoding is not UTF-8. Verse - Vers + Vers Chorus - Koor + Koor Bridge - Brug + Brug Pre-Chorus - Voor-Refrein + Voor-Refrein Intro - Inleiding + Inleiding Ending - Slot + Slot Other - Ander + Ander diff --git a/resources/i18n/de.ts b/resources/i18n/de.ts index 029c29c00..f5a2b1e56 100644 --- a/resources/i18n/de.ts +++ b/resources/i18n/de.ts @@ -10,22 +10,12 @@ Show an alert message. - Hinweis anzeigen + Hinweis anzeigen. <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of nursery alerts on the display screen - - - - - Alert - - - - - Alerts - Hinweise + <strong>Hinweis Erweiterung</strong><br />Die Erweiterung Hinweis ermöglicht die Anzeige von Texten auf dem Live Bild @@ -38,12 +28,12 @@ Alert &text: - + Hinweis &Text: &Parameter(s): - + O&ption(en): @@ -58,32 +48,32 @@ &Delete - + &Löschen Displ&ay - + &Anzeigen Display && Cl&ose - + An&zeigen && Schließen &Close - + S&chließen New Alert - + Neuer Hinweis You haven't specified any text for your alert. Please type in some text before clicking New. - + Der Hinweis enthält noch keinen Text. Bitte geben Sie einen Text an, bevor Sie auf Neu klicken. @@ -91,7 +81,7 @@ Alert message created and displayed. - + Hinweis wurde erfolgreich erstellt und angezeigt. @@ -124,7 +114,7 @@ Location: - + Ort: @@ -144,22 +134,22 @@ Font name: - + Schriftart: Font color: - + Farbe: Background color: - + Hintergrundfarbe: Font size: - + Schriftgröße: @@ -172,6 +162,19 @@ Mittig + + BiblePlugin.MediaItem + + + Error + Fehler + + + + You cannot combine single and dual bible verses. Do you want to delete your search results and start a new search? + + + BiblesPlugin @@ -182,87 +185,7 @@ <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display bible verses from different sources during the service. - - - - - Bible - Bibel - - - - Bibles - Bibeln - - - - Import - - - - - Import a Bible - - - - - Add - - - - - Add a new Bible - - - - - Edit - Bearbeiten - - - - Edit the selected Bible - - - - - Delete - Löschen - - - - Delete the selected Bible - - - - - Preview - Vorschau - - - - Preview the selected Bible - - - - - Live - Live - - - - Send the selected Bible live - - - - - Service - - - - - Add the selected Bible to the service - + <strong>Bibelmodul</strong><br />Das Bibelmodul ermöglicht es während der Veranstaltung Bibelverse von verschiedenen Quellen anzuzeigen. @@ -270,12 +193,12 @@ Book not found - + Buch nicht gefunden The book you requested could not be found in this bible. Please check your spelling and that this is a complete bible not just one testament. - + Das angeforderte Buch wurde in dieser Bibel nicht gefunden. Bitte überprüfen Sie die Rechtschreibung und ob diese Bibelübersetzung aus neuem und altem Testament besteht. @@ -283,11 +206,11 @@ Scripture Reference Error - + Fehler im Text Verweis - Your scripture reference is either not supported by OpenLP or invalid. Please make sure your reference conforms to one of the following patterns: + 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 @@ -296,7 +219,15 @@ Book Chapter:Verse-Verse,Verse-Verse Book Chapter:Verse-Verse,Chapter:Verse-Verse Book Chapter:Verse-Chapter:Verse - + Diese Bibelstelle wird nicht von OpenLP unterstützt oder ist ungültig. Bitte stellen Sie sicher, das Sie eines der folgenden Muster verwenden: + +Buch Kapitel +Buch Kapitel-Kapitel +Buch Kapitel:Vers-Vers +Buch Kapitel:Vers-Vers,Vers-Vers +Buch Kapitel:Vers-Vers,Kapitel:Vers-Vers +Buch Kapitel:Vers-Kapitel:Vers + @@ -319,63 +250,64 @@ Book Chapter:Verse-Chapter:Verse Layout style: - + Vorlagen Stil: Display style: - + Anzeige Stil: Bible theme: - + Bibel Design: Verse Per Slide - + Verse pro Seite Verse Per Line - + Verse pro Zeile Continuous - + Fortlaufend No Brackets - + Keine Klammern ( And ) - + ( Und ) { And } - + { UND } [ And ] - + [ Und ] Note: Changes do not affect verses already in the service. - + Bemerkung: +Änderungen beeinflussen nicht Verse, welche bereits im Veranstaltungplan sind. Display dual Bible verses - + Zeige doppelte Bibelverse an @@ -433,7 +365,7 @@ Changes do not affect verses already in the service. Location: - + Ort: @@ -498,7 +430,7 @@ Changes do not affect verses already in the service. Importing - + Importieren @@ -518,7 +450,7 @@ Changes do not affect verses already in the service. You need to specify a file to import your Bible from. - + Sie müssen eine Datei zum importieren Ihrer Bibel angeben. @@ -528,7 +460,7 @@ Changes do not affect verses already in the service. You need to specify a file with books of the Bible to use in the import. - + Bitte geben Sie die Datei an, welche die zu importiernde Bibel enthält. @@ -538,7 +470,7 @@ Changes do not affect verses already in the service. You need to specify a file of Bible verses to import. - + Bitte geben Sie die Datei an, die den Bibeltext enthält. @@ -548,7 +480,7 @@ Changes do not affect verses already in the service. You need to specify an OpenSong Bible file to import. - + Bitte geben Sie die Datei an, die die OpenSong Bibel enthält. @@ -558,195 +490,195 @@ Changes do not affect verses already in the service. You need to specify a version name for your Bible. - + Bitte geben Sie den Namen der Bibelausgabe ein. - + Empty Copyright Das Copyright wurde nicht angegeben - - You need to set a copyright for your Bible! Bibles in the Public Domain need to be marked as such. - Sie müssen das Copyright der Bibel angeben. Bei Bibeln, die keinem Copyright mehr unterlegen, geben Sie bitte "Public Domain" ein. - - - + Bible Exists Diese Bibelübersetzung ist bereits vorhanden - - This Bible already exists! Please import a different Bible or first delete the existing one. - Diese Bibel ist bereits vorhanden! Bitte importieren Sie eine andere Bibel oder löschen Sie die bereits vorhandene. - - - + Open OSIS File - + Öffne OSIS Datei - + Open Books CSV File - + Öffne Bücherdatei (CSV) - + Open Verses CSV File - + Öffne Bibeltext (CSV) - + Open OpenSong Bible Öffne OpenSong-Bibel Starting import... - Starte import ... + Starte import... - + Finished import. Importvorgang abgeschlossen. - + Your Bible import failed. Der Bibelimportvorgang ist fehlgeschlagen. File location: - + Speicherort: Books location: - + Bücherdatei: Verse location: - + Bibeltext: Bible filename: - + Dateiname der Bibel: Version name: - + Ausgabe: + + + + You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. + Bitte geben Sie die Kopierrechte der Bibel an. Bibeln die frei zugänglich sind, sind als solche zu kennzeichnen. + + + + This Bible already exists. Please import a different Bible or first delete the existing one. + Diese Bibel existiert bereit. Bitte importieren Sie eine andere Bibel oder löschen zuerst die existierende. BiblesPlugin.MediaItem - + + Bible + Bibel + + + Quick Schnellsuche - + Advanced Erweitert - + Version: Version: - + Dual: Parallel: - + Find: Suchen: - + Search Suche - + Results: Ergebnisse: - + Book: Buch: - + Chapter: Kapitel: - + Verse: Vers: - + From: Von: - + To: Bis: - + Verse Search Stelle suchen - + Text Search Textsuche - + Clear - + Abbrechen - + Keep Behalten - + No Book Found Kein Buch gefunden - + No matching book could be found in this Bible. Das Buch wurde in dieser Bibelausgabe nicht gefunden. - - etc - - - - + Search type: - + Art der Suche: - + Bible not fully loaded. - + Bibel wurde nicht vollständig geladen. @@ -754,15 +686,15 @@ Changes do not affect verses already in the service. Importing - + Importiere 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 Customs are. This plugin provides greater freedom over the Customs plugin. - + <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. + <strong>Texte Erweiterung</strong><br/>Die Erweiterung Texte ermöglicht es beliebige Text Folien zu erstellen. Diese können in der gleichen Weise, wie Lieder dargestellt werden, bieten aber mehr Möglichkeiten. @@ -780,7 +712,7 @@ Changes do not affect verses already in the service. Display footer - + Fußzeile anzeigen @@ -793,7 +725,7 @@ Changes do not affect verses already in the service. &Title: - + &Titel: @@ -808,7 +740,7 @@ Changes do not affect verses already in the service. Edit All - + Alle bearbeiten @@ -823,7 +755,7 @@ Changes do not affect verses already in the service. Clear - + Abbrechen @@ -833,17 +765,17 @@ Changes do not affect verses already in the service. Split Slide - + Folie aufteilen The&me: - + Desig&n: &Credits: - + &Mitwirkende: @@ -858,299 +790,136 @@ Changes do not affect verses already in the service. Move slide down one position. - + Folie eins nach unten verschieben. Add a new slide at bottom. - + Neue Folie am Ende einfügen. Edit the selected slide. - + Ausgewählte Folie bearbeiten. Edit all the slides at once. - + Alle Folien bearbeiten. Save the slide currently being edited. - + Die geöffnete Folie speichern. Delete the selected slide. - + Ausgewählte Folie löschen. Split a slide into two by inserting a slide splitter. - + Die Folie mit einem Trennzeichen auf zwei Folien aufteilen. You need to type in a title. - + Bitte geben Sie einen Titel ein. You need to add at least one slide - + Bitte erstellen Sie mindestens eine Folie. You have one or more unsaved slides, please either save your slide(s) or clear your changes. - + Sie haben mindestens eine Folie bearbeitet. Bitte speichern Sie Ihre Bearbeitung(en) oder brechen Sie den Vorgang ab. Move slide up one position. - + Verschiebe Folie um eine Position nach oben. CustomPlugin.MediaItem - - You haven't selected an item to edit. - - - - - You haven't selected an item to delete. - - - - - CustomsPlugin - - + Custom - Sonderfolien + Sonderfolien - - Customs - Sonderfolien + + You haven't selected an item to edit. + Sie haben nichts zum Bearbeiten ausgewählt. - - Import - - - - - Import a Custom - - - - - Load - - - - - Load a new Custom - - - - - Add - - - - - Add a new Custom - - - - - Edit - Bearbeiten - - - - Edit the selected Custom - - - - - Delete - Löschen - - - - Delete the selected Custom - - - - - Preview - Vorschau - - - - Preview the selected Custom - - - - - Live - Live - - - - Send the selected Custom live - - - - - Service - - - - - Add the selected Custom to the service - + + You haven't selected an item to delete. + Sie haben nichts zum Löschen ausgewählt. 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 Images with the selected image as a background instead of the background provided by the theme. - - - - - Image - Bild - - - - Images - - - - - Load - - - - - Load a new Image - - - - - Add - - - - - Add a new Image - - - - - Edit - Bearbeiten - - - - Edit the selected Image - - - - - Delete - Löschen - - - - Delete the selected Image - - - - - Preview - Vorschau - - - - Preview the selected Image - - - - - Live - Live - - - - Send the selected Image live - - - - - Service - - - - - Add the selected Image to the service - + <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. ImagePlugin.MediaItem - + + Image + Bild + + + Select Image(s) Bild(er) auswählen - + All Files - + Alle Dateien - + Replace Live Background - + Live-Hintergrund ersetzen - + Image(s) Bild(er) - + Replace Background - + Hintergrund ersetzen - + You must select an image to delete. - + Bitte markieren Sie das Bild, das sie löschen möchten. - + You must select an image to replace the background with. - + Bitte wählen Sie ein Bild aus, das sie als Hintergrundbild benutzen möchten. - + You must select a media file to replace the background with. - + Bitte wählen Sie ein Video aus, das sie als Hintergrundbild benutzen möchten. - + Reset Live Background - + Setze Live Hintergrund zurück @@ -1158,123 +927,43 @@ Changes do not affect verses already in the service. <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. - - - - - Media - Medien - - - - Medias - Medien - - - - Load - - - - - Load a new Media - - - - - Add - - - - - Add a new Media - - - - - Edit - Bearbeiten - - - - Edit the selected Media - - - - - Delete - Löschen - - - - Delete the selected Media - - - - - Preview - Vorschau - - - - Preview the selected Media - - - - - Live - Live - - - - Send the selected Media live - - - - - Service - - - - - Add the selected Media to the service - + <strong>Erweiterung Medien</strong><br />Die Erweiterung Medien ermöglicht es Audio und Video Dateien abzuspielen. MediaPlugin.MediaItem - + Media Medien - + Select Media Medien auswählen - + Replace Live Background - + Live-Hintergrund ersetzen - + Replace Background - + Hintergrund ersetzen - + You must select a media file to delete. - + Bitte wählen Sie das Video aus, das sie löschen möchten. OpenLP - + Image Files - + Bilddateien @@ -1293,7 +982,13 @@ OpenLP is free church presentation software, or lyrics projection software, used Find out more about OpenLP: http://openlp.org/ OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider contributing by using the button below. - + OpenLP <version><revision>-Open Source Lyrics Projection (Quelloffene Beamer Programm) + +OpenLP ist eine frei verfügbare Kirchen Präsentations Software, welche genutzt werden kann um Texte von Liedern anzuzeigen, Bibel Verse, Videos, Bilder sowie alle PowerPoint bzw. Impress Präsentationen (falls diese Programme installiert sind). Sie wird genutzt in Verbindung mit einem Computer und einem Beamer. + +Erkunden Sie OpenLP: http://openlp.org/ + +OpenLP wird von freiwiligen Helfern programmiert und gewartet. Wenn Sie sich mehr freie christliche Programme wünschen, zeigen Sie Ihren Respekt indem Sie den Knopf weiter unten drücken. @@ -1340,12 +1035,49 @@ Built With PyQt4: http://www.riverbankcomputing.co.uk/software/pyqt/intro Oxygen Icons: http://oxygen-icons.org/ - + Projektleiter + Raoul "superfly" Snyman + +Entwickler + Tim "TRB143" Bentley + Jonathan "gushie" Corwin + Michael "cocooncrash" Gorven + Scott "sguerrieri" Guerrieri + Raoul "superfly" Snyman + Martin "mijiti" Thompson + Jon "Meths" Tibble + +Mitarbeiter + Meinert "m2j" Jordan + Andreas "googol" Preikschat + Christian "crichter" Richter + Philip "Phill" Ridout + Maikel Stuivenberg + Carsten "catini" Tingaard + Frode "frodus" Woldsund + +Tester + Philip "Phill" Ridout + Wesley "wrst" Stout (lead) + +Paketierer + Thomas "tabthorpe" Abthorpe (FreeBSD) + Tim "TRB143" Bentley (Fedora) + Michael "cocooncrash" Gorven (Ubuntu) + Matthias "matthub" Hub (Mac OS X) + Raoul "superfly" Snyman (Windows, Ubuntu) + +Erstellt mit + 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/ + Credits - Credits + Abspann @@ -1365,7 +1097,7 @@ Built With build %s - + Version @@ -1500,7 +1232,145 @@ Yoyodyne, Inc., hereby disclaims all copyright interest in the program "Gno Ty Coon, President of Vice This General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. - + Kopierrechte © 2004-2010 Raoul Snyman +Anteilige Kopierrechte © 2004-2010 Tim Bentley, Jonathan Corwin, Michael Gorven, Scott Guerrieri, Christian Richter, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Carsten Tinggaard + +Dieses Programm ist freie Software. Sie können es unter den Bedingungen der GNU General Public License, wie von der Free Software Foundation veröffentlicht, weitergeben und/oder modifizieren, entweder gemäß Version 2 der Lizenz. + +Die Veröffentlichung dieses Programms erfolgt in der Hoffnung, daß es Ihnen von Nutzen sein wird, aber OHNE IRGENDEINE GARANTIE, sogar ohne die implizite Garantie der MARKTREIFE oder der VERWENDBARKEIT FÜR EINEN BESTIMMTEN ZWECK. Details finden Sie in der GNU General Public License. + + +GNU General Public License +Deutsche Übersetzung der Version 2, Juni 1991 + +Copyright (C) 1989, 1991 Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1307, USA + +Es ist jedermann gestattet, diese Lizenzurkunde zu vervielfältigen und unveränderte Kopien zu verbreiten; Änderungen sind jedoch nicht erlaubt. Diese Übersetzung ist kein rechtskräftiger Ersatz für die englischsprachige Originalversion! + +Vorwort + +Die meisten Softwarelizenzen sind daraufhin entworfen worden, Ihnen die Freiheit zu nehmen, die Software weiterzugeben und zu verändern. Im Gegensatz dazu soll Ihnen die GNU General Public License, die Allgemeine Öffentliche GNU-Lizenz, ebendiese Freiheit garantieren. Sie soll sicherstellen, daß die Software für alle Benutzer frei ist. Diese Lizenz gilt für den Großteil der von der Free Software Foundation herausgegebenen Software und für alle anderen Programme, deren Autoren ihr Datenwerk dieser Lizenz unterstellt haben. Auch Sie können diese Möglichkeit der Lizenzierung für Ihre Programme anwenden. (Ein anderer Teil der Software der Free Software Foundation unterliegt stattdessen der GNU Library General Public License, der Allgemeinen Öffentlichen GNU-Lizenz für Bibliotheken.) [Mittlerweile wurde die GNU Library Public License von der GNU Lesser Public License abgelöst - Anmerkung des Übersetzers.] + +Die Bezeichnung "freie" Software bezieht sich auf Freiheit, nicht auf den Preis. Unsere Lizenzen sollen Ihnen die Freiheit garantieren, Kopien freier Software zu verbreiten (und etwas für diesen Service zu berechnen, wenn Sie möchten), die Möglichkeit, die Software im Quelltext zu erhalten oder den Quelltext auf Wunsch zu bekommen. Die Lizenzen sollen garantieren, daß Sie die Software ändern oder Teile davon in neuen freien Programmen verwenden dürfen - und daß Sie wissen, daß Sie dies alles tun dürfen. + +Um Ihre Rechte zu schützen, müssen wir Einschränkungen machen, die es jedem verbieten, Ihnen diese Rechte zu verweigern oder Sie aufzufordern, auf diese Rechte zu verzichten. Aus diesen Einschränkungen folgen bestimmte Verantwortlichkeiten für Sie, wenn Sie Kopien der Software verbreiten oder sie verändern. + +Beispielsweise müssen Sie den Empfängern alle Rechte gewähren, die Sie selbst haben, wenn Sie - kostenlos oder gegen Bezahlung - Kopien eines solchen Programms verbreiten. Sie müssen sicherstellen, daß auch die Empfänger den Quelltext erhalten bzw. erhalten können. Und Sie müssen ihnen diese Bedingungen zeigen, damit sie ihre Rechte kennen. + +Wir schützen Ihre Rechte in zwei Schritten: (1) Wir stellen die Software unter ein Urheberrecht (Copyright), und (2) wir bieten Ihnen diese Lizenz an, die Ihnen das Recht gibt, die Software zu vervielfältigen, zu verbreiten und/oder zu verändern. + +Um die Autoren und uns zu schützen, wollen wir darüberhinaus sicherstellen, daß jeder erfährt, daß für diese freie Software keinerlei Garantie besteht. Wenn die Software von jemand anderem modifiziert und weitergegeben wird, möchten wir, daß die Empfänger wissen, daß sie nicht das Original erhalten haben, damit irgendwelche von anderen verursachte Probleme nicht den Ruf des ursprünglichen Autors schädigen. + +Schließlich und endlich ist jedes freie Programm permanent durch Software-Patente bedroht. Wir möchten die Gefahr ausschließen, daß Distributoren eines freien Programms individuell Patente lizensieren - mit dem Ergebnis, daß das Programm proprietär würde. Um dies zu verhindern, haben wir klargestellt, daß jedes Patent entweder für freie Benutzung durch jedermann lizenziert werden muß oder überhaupt nicht lizenziert werden darf. + +Es folgen die genauen Bedingungen für die Vervielfältigung, Verbreitung und Bearbeitung: + +Allgemeine Öffentliche GNU-Lizenz Bedingungen für die Vervielfältigung, Verbreitung und Bearbeitung + +0. Diese Lizenz gilt für jedes Programm und jedes andere Datenwerk, in dem ein entsprechender Vermerk des Copyright-Inhabers darauf hinweist, daß das Datenwerk unter den Bestimmungen dieser General Public License verbreitet werden darf. Im folgenden wird jedes derartige Programm oder Datenwerk als "das Programm" bezeichnet; die Formulierung "auf dem Programm basierendes Datenwerk" bezeichnet das Programm sowie jegliche Bearbeitung des Programms im urheberrechtlichen Sinne, also ein Datenwerk, welches das Programm, auch auszugsweise, sei es unverändert oder verändert und/oder in eine andere Sprache übersetzt, enthält. (Im folgenden wird die Übersetzung ohne Einschränkung als "Bearbeitung" eingestuft.) Jeder Lizenznehmer wird im folgenden als "Sie" angesprochen. + +Andere Handlungen als Vervielfältigung, Verbreitung und Bearbeitung werden von dieser Lizenz nicht berührt; sie fallen nicht in ihren Anwendungsbereich. Der Vorgang der Ausführung des Programms wird nicht eingeschränkt, und die Ausgaben des Programms unterliegen dieser Lizenz nur, wenn der Inhalt ein auf dem Programm basierendes Datenwerk darstellt (unabhängig davon, daß die Ausgabe durch die Ausführung des Programmes erfolgte). Ob dies zutrifft, hängt von den Funktionen des Programms ab. + +1. Sie dürfen auf beliebigen Medien unveränderte Kopien des Quelltextes des Programms, wie sie ihn erhalten haben, anfertigen und verbreiten. Voraussetzung hierfür ist, daß Sie mit jeder Kopie einen entsprechenden Copyright-Vermerk sowie einen Haftungsausschluß veröffentlichen, alle Vermerke, die sich auf diese Lizenz und das Fehlen einer Garantie beziehen, unverändert lassen und desweiteren allen anderen Empfängern des Programms zusammen mit dem Programm eine Kopie dieser Lizenz zukommen lassen. Sie dürfen für den eigentlichen Kopiervorgang eine Gebühr verlangen. Wenn Sie es wünschen, dürfen Sie auch gegen Entgelt eine Garantie für das Programm anbieten. + +2. Sie dürfen Ihre Kopie(n) des Programms oder eines Teils davon verändern, wodurch ein auf dem Programm basierendes Datenwerk entsteht; Sie dürfen derartige Bearbeitungen unter den Bestimmungen von Paragraph 1 vervielfältigen und verbreiten, vorausgesetzt, daß zusätzlich alle im folgenden genannten Bedingungen erfüllt werden: + +a) Sie müssen die veränderten Dateien mit einem auffälligen Vermerk versehen, der auf die von Ihnen vorgenommene Modifizierung und das Datum jeder Änderung hinweist. + +b) Sie müssen dafür sorgen, daß jede von Ihnen verbreitete oder veröffentlichte Arbeit, die ganz oder teilweise von dem Programm oder Teilen davon abgeleitet ist, Dritten gegenüber als Ganzes unter den Bedingungen dieser Lizenz ohne Lizenzgebühren zur Verfügung gestellt wird. + +c) Wenn das veränderte Programm normalerweise bei der Ausführung interaktiv Kommandos einliest, müssen Sie dafür sorgen, daß es, wenn es auf dem üblichsten Wege für solche interaktive Nutzung gestartet wird, eine Meldung ausgibt oder ausdruckt, die einen geeigneten Copyright-Vermerk enthält sowie einen Hinweis, daß es keine Gewährleistung gibt (oder anderenfalls, daß Sie Garantie leisten), und daß die Benutzer das Programm unter diesen Bedingungen weiter verbreiten dürfen. Auch muß der Benutzer darauf hingewiesen werden, wie er eine Kopie dieser Lizenz ansehen kann. (Ausnahme: Wenn das Programm selbst interaktiv arbeitet, aber normalerweise keine derartige Meldung ausgibt, muß Ihr auf dem Programm basierendes Datenwerk auch keine solche Meldung ausgeben). + +Diese Anforderungen gelten für das bearbeitete Datenwerk als Ganzes. Wenn identifizierbare Teile des Datenwerkes nicht von dem Programm abgeleitet sind und vernünftigerweise als unabhängige und eigenständige Datenwerke für sich selbst zu betrachten sind, dann gelten diese Lizenz und ihre Bedingungen nicht für die betroffenen Teile, wenn Sie diese als eigenständige Datenwerke weitergeben. Wenn Sie jedoch dieselben Abschnitte als Teil eines Ganzen weitergeben, das ein auf dem Programm basierendes Datenwerk darstellt, dann muß die Weitergabe des Ganzen nach den Bedingungen dieser Lizenz erfolgen, deren Bedingungen für weitere Lizenznehmer somit auf das gesamte Ganze ausgedehnt werden - und somit auf jeden einzelnen Teil, unabhängig vom jeweiligen Autor. + +Somit ist es nicht die Absicht dieses Abschnittes, Rechte für Datenwerke in Anspruch zu nehmen oder Ihnen die Rechte für Datenwerke streitig zu machen, die komplett von Ihnen geschrieben wurden; vielmehr ist es die Absicht, die Rechte zur Kontrolle der Verbreitung von Datenwerken, die auf dem Programm basieren oder unter seiner auszugsweisen Verwendung zusammengestellt worden sind, auszuüben. + +Ferner bringt auch das einfache Zusammenlegen eines anderen Datenwerkes, das nicht auf dem Programm basiert, mit dem Programm oder einem auf dem Programm basierenden Datenwerk auf ein- und demselben Speicheroder Vertriebsmedium dieses andere Datenwerk nicht in den Anwendungsbereich dieser Lizenz. + +3. Sie dürfen das Programm (oder ein darauf basierendes Datenwerk gemäß Paragraph 2) als Objectcode oder in ausführbarer Form unter den Bedingungen der Paragraphen 1 und 2 kopieren und weitergeben - vorausgesetzt, daß Sie außerdem eine der folgenden Leistungen erbringen: + +a) Liefern Sie das Programm zusammen mit dem vollständigen zugehörigen maschinenlesbaren Quelltext auf einem für den Datenaustausch üblichen Medium aus, wobei die Verteilung unter den Bedingungen der Paragraphen 1 und 2 erfolgen muß. Oder: + +b) Liefern Sie das Programm zusammen mit einem mindestens drei Jahre lang gültigen schriftlichen Angebot aus, jedem Dritten eine vollständige maschinenlesbare Kopie des Quelltextes zur Verfügung zu stellen - zu nicht höheren Kosten als denen, die durch den physikalischen Kopiervorgang anfallen -, wobei der Quelltext unter den Bedingungen der Paragraphen 1 und 2 auf einem für den Datenaustausch üblichen Medium weitergegeben wird. Oder: + +c) Liefern Sie das Programm zusammen mit dem schriftlichen Angebot der Zurverfügungstellung des Quelltextes aus, das Sie selbst erhalten haben. (Diese Alternative ist nur für nicht-kommerzielle Verbreitung zulässig und nur, wenn Sie das Programm als Objectcode oder in ausführbarer Form mit einem entsprechenden Angebot gemäß Absatz b erhalten haben.) + +Unter dem Quelltext eines Datenwerkes wird diejenige Form des Datenwerkes verstanden, die für Bearbeitungen vorzugsweise verwendet wird. Für ein ausführbares Programm bedeutet "der komplette Quelltext": Der Quelltext aller im Programm enthaltenen Module einschließlich aller zugehörigen Modulschnittstellen-Definitionsdateien sowie der zur Compilation und Installation verwendeten Skripte. Als besondere Ausnahme jedoch braucht der verteilte Quelltext nichts von dem zu enthalten, was üblicherweise (entweder als Quelltext oder in binärer Form) zusammen mit den Hauptkomponenten des Betriebssystems (Kernel, Compiler usw.) geliefert wird, unter dem das Programm läuft - es sei denn, diese Komponente selbst gehört zum ausführbaren Programm. + +Wenn die Verbreitung eines ausführbaren Programms oder von Objectcode dadurch erfolgt, daß der Kopierzugriff auf eine dafür vorgesehene Stelle gewährt wird, so gilt die Gewährung eines gleichwertigen Zugriffs auf den Quelltext als Verbreitung des Quelltextes, auch wenn Dritte nicht dazu gezwungen sind, den Quelltext zusammen mit dem Objectcode zu kopieren. + +4. Sie dürfen das Programm nicht vervielfältigen, verändern, weiter lizenzieren oder verbreiten, sofern es nicht durch diese Lizenz ausdrücklich gestattet ist. Jeder anderweitige Versuch der Vervielfältigung, Modifizierung, Weiterlizenzierung und Verbreitung ist nichtig und beendet automatisch Ihre Rechte unter dieser Lizenz. Jedoch werden die Lizenzen Dritter, die von Ihnen Kopien oder Rechte unter dieser Lizenz erhalten haben, nicht beendet, solange diese die Lizenz voll anerkennen und befolgen. + +5. Sie sind nicht verpflichtet, diese Lizenz anzunehmen, da Sie sie nicht unterzeichnet haben. Jedoch gibt Ihnen nichts anderes die Erlaubnis, das Programm oder von ihm abgeleitete Datenwerke zu verändern oder zu verbreiten. Diese Handlungen sind gesetzlich verboten, wenn Sie diese Lizenz nicht anerkennen. Indem Sie das Programm (oder ein darauf basierendes Datenwerk) verändern oder verbreiten, erklären Sie Ihr Einverständnis mit dieser Lizenz und mit allen ihren Bedingungen bezüglich der Vervielfältigung, Verbreitung und Veränderung des Programms oder eines darauf basierenden Datenwerks. + +6. Jedesmal, wenn Sie das Programm (oder ein auf dem Programm basierendes Datenwerk) weitergeben, erhält der Empfänger automatisch vom ursprünglichen Lizenzgeber die Lizenz, das Programm entsprechend den hier festgelegten Bestimmungen zu vervielfältigen, zu verbreiten und zu verändern. Sie dürfen keine weiteren Einschränkungen der Durchsetzung der hierin zugestandenen Rechte des Empfängers vornehmen. Sie sind nicht dafür verantwortlich, die Einhaltung dieser Lizenz durch Dritte durchzusetzen. + +7. Sollten Ihnen infolge eines Gerichtsurteils, des Vorwurfs einer Patentverletzung oder aus einem anderen Grunde (nicht auf Patentfragen begrenzt) Bedingungen (durch Gerichtsbeschluß, Vergleich oder anderweitig) auferlegt werden, die den Bedingungen dieser Lizenz widersprechen, so befreien Sie diese Umstände nicht von den Bestimmungen dieser Lizenz. Wenn es Ihnen nicht möglich ist, das Programm unter gleichzeitiger Beachtung der Bedingungen in dieser Lizenz und Ihrer anderweitigen Verpflichtungen zu verbreiten, dann dürfen Sie als Folge das Programm überhaupt nicht verbreiten. Wenn zum Beispiel ein Patent nicht die gebührenfreie Weiterverbreitung des Programms durch diejenigen erlaubt, die das Programm direkt oder indirekt von Ihnen erhalten haben, dann besteht der einzige Weg, sowohl das Patentrecht als auch diese Lizenz zu befolgen, darin, ganz auf die Verbreitung des Programms zu verzichten. Sollte sich ein Teil dieses Paragraphen als ungültig oder unter bestimmten Umständen nicht durchsetzbar erweisen, so soll dieser Paragraph seinem Sinne nach angewandt werden; im übrigen soll dieser Paragraph als Ganzes gelten. + +Zweck dieses Paragraphen ist nicht, Sie dazu zu bringen, irgendwelche Patente oder andere Eigentumsansprüche zu verletzen oder die Gültigkeit solcher Ansprüche zu bestreiten; dieser Paragraph hat einzig den Zweck, die Integrität des Verbreitungssystems der freien Software zu schützen, das durch die Praxis öffentlicher Lizenzen verwirklicht wird. Viele Leute haben großzügige Beiträge zu dem großen Angebot der mit diesem System verbreiteten Software im Vertrauen auf die konsistente Anwendung dieses Systems geleistet; es liegt am Autor/Geber, zu entscheiden, ob er die Software mittels irgendeines anderen Systems verbreiten will; ein Lizenznehmer hat auf diese Entscheidung keinen Einfluß. + +Dieser Paragraph ist dazu gedacht, deutlich klarzustellen, was als Konsequenz aus dem Rest dieser Lizenz betrachtet wird. + +8. Wenn die Verbreitung und/oder die Benutzung des Programms in bestimmten Staaten entweder durch Patente oder durch urheberrechtlich geschützte Schnittstellen eingeschränkt ist, kann der Urheberrechtsinhaber, der das Programm unter diese Lizenz gestellt hat, eine explizite geographische Begrenzung der Verbreitung angeben, in der diese Staaten ausgeschlossen werden, so daß die Verbreitung nur innerhalb und zwischen den Staaten erlaubt ist, die nicht ausgeschlossen sind. In einem solchen Fall beinhaltet diese Lizenz die Beschränkung, als wäre sie in diesem Text niedergeschrieben. + +9. Die Free Software Foundation kann von Zeit zu Zeit überarbeitete und/oder neue Versionen der General Public License veröffentlichen. Solche neuen Versionen werden vom Grundprinzip her der gegenwärtigen entsprechen, können aber im Detail abweichen, um neuen Problemen und Anforderungen gerecht zu werden. Jede Version dieser Lizenz hat eine eindeutige Versionsnummer. Wenn in einem Programm angegeben wird, daß es dieser Lizenz in einer bestimmten Versionsnummer oder "jeder späteren Version" (\any later version") unterliegt, so haben Sie die Wahl, entweder den Bestimmungen der genannten Version zu folgen oder denen jeder beliebigen späteren Version, die von der Free Software Foundation veröffentlicht wurde. Wenn das Programm keine Versionsnummer angibt, können Sie eine beliebige Version wählen, die je von der Free Software Foundation veröffentlicht wurde. + +10. Wenn Sie den Wunsch haben, Teile des Programms in anderen freien Programmen zu verwenden, deren Bedingungen für die Verbreitung anders + +sind, schreiben Sie an den Autor, um ihn um die Erlaubnis zu bitten. Für Software, die unter dem Copyright der Free Software Foundation steht, schreiben Sie an die Free Software Foundation; wir machen zu diesem Zweck gelegentlich Ausnahmen. Unsere Entscheidung wird von den beiden Zielen geleitet werden, zum einen den freien Status aller von unserer freien Software abgeleiteten Datenwerke zu erhalten und zum anderen das gemeinschaftliche Nutzen und Wiederverwenden von Software im allgemeinen zu fördern. + +Keine Gewährleistung + +11. Da das Programm ohne jegliche Kosten lizenziert wird, besteht keinerlei Gewährleistung für das Programm, soweit dies gesetzlich zulässig ist. Sofern nicht anderweitig schriftlich bestätigt, stellen die Copyright-Inhaber und/oder Dritte das Programm so zur Verfügung, "wie es ist", ohne irgendeine Gewährleistung, weder ausdrücklich noch implizit, einschließlich - aber nicht begrenzt auf - Marktreife oder Verwendbarkeit für einen bestimmten Zweck. Das volle Risiko bezüglich Qualität und Leistungsfähigkeit des Programms liegt bei Ihnen. Sollte sich das Programm als fehlerhaft herausstellen, liegen die Kosten für notwendigen Service, Reparatur oder Korrektur bei Ihnen. + +12. In keinem Fall, außer wenn durch geltendes Recht gefordert oder schriftlich zugesichert, ist irgendein Copyright-Inhaber oder irgendein Dritter, der das Programm wie oben erlaubt modifiziert oder verbreitet hat, Ihnen gegenüber für irgendwelche Schäden haftbar, einschließlich jeglicher allgemeiner oder spezieller Schäden, Schäden durch Seiteneffekte (Nebenwirkungen) oder Folgeschäden, die aus der Benutzung des Programms oder der Unbenutzbarkeit des Programms folgen (einschließlich - aber nicht beschränkt auf - Datenverluste, fehlerhafte Verarbeitung von Daten, Verluste, die von Ihnen oder anderen getragen werden müssen, oder dem Unvermögen des Programms, mit irgendeinem anderen Programm zusammenzuarbeiten), selbst wenn ein Copyright-Inhaber oder Dritter über die Möglichkeit solcher Schäden unterrichtet worden war. + +Ende der Bedingungen + +Anhang: + +Wie Sie diese Bedingungen auf Ihre eigenen, neuen Programme anwenden können Wenn Sie ein neues Programm entwickeln und wollen, daß es vom größtmöglichen Nutzen für die Allgemeinheit ist, dann erreichen Sie das am besten, indem Sie es zu freier Software machen, die jeder unter diesen Bestimmungen weiterverbreiten und verändern kann. + +Um dies zu erreichen, fügen Sie die folgenden Vermerke zu Ihrem Programm hinzu. Am sichersten ist es, sie an den Anfang einer jeden Quelldatei zu stellen, um den Gewährleistungsausschluß möglichst deutlich darzustellen; zumindest aber sollte jede Datei eine Copyright-Zeile besitzen sowie einen kurzen Hinweis darauf, wo die vollständigen Vermerke zu finden sind. + +(eine Zeile mit dem Programmnamen und einer kurzen Beschreibung) Copyright (C) 19(yy) (Name des Autors) + +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; either version 2 of the License, or (at your option) any later version. 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 the GNU General Public License for more details. + +You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1307, USA. + +Auf Deutsch: + +(eine Zeile mit dem Programmnamen und einer kurzen Beschreibung) Copyright (C) 19(jj) (Name des Autors) + +Dieses Programm ist freie Software. Sie können es unter den Bedingungen der GNU General Public License, wie von der Free Software Foundation veröffentlicht, weitergeben und/oder modifizieren, entweder gemäß Version 2 der Lizenz oder (nach Ihrer Option) jeder späteren Version. Die Veröffentlichung dieses Programms erfolgt in der Hoffnung, daß es Ihnen von Nutzen sein wird, aber OHNE IRGENDEINE GARANTIE, sogar ohne die implizite Garantie der MARKTREIFE oder der VERWENDBARKEIT FÜR EINEN BESTIMMTEN ZWECK. Details finden Sie in der GNU General Public License. + +Sie sollten eine Kopie der GNU General Public License zusammen mit diesem Programm erhalten haben. Falls nicht, schreiben Sie an die Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1307, USA. + +Fügen Sie auch einen kurzen Hinweis hinzu, wie Sie elektronisch und per Brief erreichbar sind. Wenn Ihr Programm interaktiv ist, sorgen Sie dafür, daß es nach dem Start einen kurzen Vermerk ausgibt: Gnomovision version 69, Copyright (C) 19hyy) (Namedes Autors) Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. + +Auf Deutsch: + +Gnomovision Version 69, Copyright (C) 19(jj) (Name des Autors) + +Für Gnomovision besteht KEINERLEI GARANTIE; geben Sie `show w' für Details ein. Gnonovision ist freie Software, die Sie unter bestimmten Bedingungen weitergeben dürfen; geben Sie `show c' für Details ein. + +Die hypothetischen Kommandos `show w' und `show c' sollten die entsprechenden Teile der GNU-GPL anzeigen. Natürlich können die von Ihnen verwendeten Kommandos anders heißen als `show w' und `show c'; es könnten auch Mausklicks oder Menüpunkte sein - was immer am besten in Ihr Programm paßt. + +Soweit vorhanden, sollten Sie auch Ihren Arbeitgeber (wenn Sie als Programmierer arbeiten) oder Ihre Schule einen Copyright-Verzicht für das Programm unterschreiben lassen. Hier ein Beispiel. Die Namen müssen Sie natürlich ändern. + +Yoyodyne, Inc., hereby disclaims all copyright interest in the program `Gnomovision' (which makes passes at compilers) written by James Hacker. + +Unterschrift von Ty Cooni, 1 April 1989 Ty Coon, President of Vice + +Auf Deutsch: + +Die Yoyodyne GmbH erhebt keinen urheberrechtlichen Anspruch auf das von James Hacker geschriebene Programm "Gnomovision" (einem Schrittmacher für Compiler). + +Unterschrift von Ty Cooni, 1. April 1989 Ty Coon, Vizepräsident + +Diese General Public License gestattet nicht die Einbindung des Programms in proprietäre Programme. Ist Ihr Programm eine Funktionsbibliothek, so kann es sinnvoller sein, das Binden proprietärer Programme mit dieser Bibliothek zu gestatten. Wenn Sie dies tun wollen, sollten Sie die GNU Library General Public License anstelle dieser Lizenz verwenden. + @@ -1508,27 +1378,27 @@ This General Public License does not permit incorporating your program into prop Advanced - + Erweitert UI Settings - + UI Einstellungen Number of recent files to display: - + Anzahl der zuletzt ausgewählten Datein: Remember active media manager tab on startup - + Letzten aktiven Reiter in der Medienverwaltung bei Neustart auswählen Double-click to send items straight to live (requires restart) - + Doppel-Klick, um Elemente direkt zum Livebild zu senden (erfordert Neustart) @@ -1541,7 +1411,7 @@ This General Public License does not permit incorporating your program into prop Theme &name: - + Design &name: @@ -1571,7 +1441,7 @@ This General Public License does not permit incorporating your program into prop Gradient: - + Übergang: @@ -1591,7 +1461,7 @@ This General Public License does not permit incorporating your program into prop &Background - + &Hintergrund @@ -1621,7 +1491,7 @@ This General Public License does not permit incorporating your program into prop Adjust line spacing: - + Zeilenabstand anpassen: @@ -1646,7 +1516,7 @@ This General Public License does not permit incorporating your program into prop Style: - + Stil: @@ -1656,17 +1526,17 @@ This General Public License does not permit incorporating your program into prop Use default location - + Benutze Standard Pfad X position: - + X position: Y position: - + Y position: @@ -1686,7 +1556,7 @@ This General Public License does not permit incorporating your program into prop &Main Font - + &Haupt-Schriftart @@ -1696,7 +1566,7 @@ This General Public License does not permit incorporating your program into prop &Footer Font - + &Fußzeilen-Schrift @@ -1706,17 +1576,17 @@ This General Public License does not permit incorporating your program into prop Outline size: - + Umriß Größe: Outline color: - + Umriß Farbe: Show outline: - + Zeige Umriß: @@ -1726,17 +1596,17 @@ This General Public License does not permit incorporating your program into prop Shadow size: - + Schatten Größe: Shadow color: - + Schatten Farbe: Show shadow: - + Zeige Schatten: @@ -1746,7 +1616,7 @@ This General Public License does not permit incorporating your program into prop Horizontal align: - + Waagerechte Ausrichtung: @@ -1766,7 +1636,7 @@ This General Public License does not permit incorporating your program into prop Vertical align: - + Senkrechte Ausrichtung: @@ -1791,12 +1661,12 @@ This General Public License does not permit incorporating your program into prop Transition active - + Übergang aktiv &Other Options - + andere &Optionen @@ -1806,40 +1676,41 @@ This General Public License does not permit incorporating your program into prop All Files - + Alle Dateien Select Image - + Bild auswählen First color: - + Erste Farbe: Second color: - + Zweite Farbe: Slide height is %s rows. - + Folienhöhe %s Reihen. OpenLP.ExceptionDialog - - - Error Occured - - 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. - + Oh! OpenLP hat ein Problem und kann es nicht beheben. Der Text im unteren Fenster enthält Informationen, welche möglicherweise hilfreich für die OpenLP Entwickler sind. +Bitte senden Sie eine E-Mail an: bugs@openlp.org mit einer auführlichen Beschreibung was Sie taten als das Problem auftrat. + + + + Error Occurred + Fehler @@ -1862,7 +1733,7 @@ This General Public License does not permit incorporating your program into prop Display if a single screen - + Anzeige, bei nur einem Bildschirm @@ -1892,22 +1763,22 @@ This General Public License does not permit incorporating your program into prop Prompt to save before starting a new service - + Aufforderung zum Speichern, bevor ein ein neuer Ablauf gestartet wird Automatically preview next item in service - + Automatische Vorschau des nächsten Elementes im Ablauf Slide loop delay: - + Pause während Schleifen: sec - + sek @@ -1917,47 +1788,47 @@ This General Public License does not permit incorporating your program into prop CCLI number: - + CCLI Nummer: SongSelect username: - + SongSelect Benutzername: SongSelect password: - + SongSelect Passwort: Display Position - + Position der Anzeige X - + X Y - + Y Height - + Höhe Width - + Breite Override display position - + Position der Anzeige überschreiben @@ -1973,14 +1844,14 @@ This General Public License does not permit incorporating your program into prop OpenLP.LanguageManager - + Language - + Sprache - + Please restart OpenLP to use your new language setting. - + Bitte starten Sie OpenLP neu, um die neue Spracheinstellung zu verwenden. @@ -1990,11 +1861,6 @@ This General Public License does not permit incorporating your program into prop OpenLP 2.0 OpenLP 2.0 - - - English - Deutsch - &File @@ -2068,7 +1934,7 @@ This General Public License does not permit incorporating your program into prop Create a new service. - + Neuen Ablauf erzeugen. @@ -2078,7 +1944,7 @@ This General Public License does not permit incorporating your program into prop &Open - &Öffnen + Ö&ffnen @@ -2088,7 +1954,7 @@ This General Public License does not permit incorporating your program into prop Open an existing service. - + Vorhandenen Ablauf öffnen. @@ -2108,7 +1974,7 @@ This General Public License does not permit incorporating your program into prop Save the current service to disk. - + Aktuellen Ablauf speichern. @@ -2128,12 +1994,12 @@ This General Public License does not permit incorporating your program into prop Save the current service under a new name. - + Aktuellen Ablauf unter neuem Namen speichern. Ctrl+Shift+S - + Ctrl+Shift+S @@ -2158,7 +2024,7 @@ This General Public License does not permit incorporating your program into prop &Configure OpenLP... - + &Einstellungen ... @@ -2173,7 +2039,7 @@ This General Public License does not permit incorporating your program into prop Toggle the visibility of the media manager. - + Medien Verwaltung ein/ausschalten. @@ -2193,7 +2059,7 @@ This General Public License does not permit incorporating your program into prop Toggle the visibility of the theme manager. - + Design Manager ein/ausschalten. @@ -2213,7 +2079,7 @@ This General Public License does not permit incorporating your program into prop Toggle the visibility of the service manager. - + Ablauf Manager ein/ausschalten. @@ -2233,7 +2099,7 @@ This General Public License does not permit incorporating your program into prop Toggle the visibility of the preview panel. - + Vorschau Anzeige ein/ausschalten. @@ -2243,17 +2109,17 @@ This General Public License does not permit incorporating your program into prop &Live Panel - + &Live Ansicht Toggle Live Panel - + Live Ansicht ein/ausschalten Toggle the visibility of the live panel. - + Live Ansicht ein/ausschalten. @@ -2283,7 +2149,7 @@ This General Public License does not permit incorporating your program into prop &About - &Über + Üb&er @@ -2308,47 +2174,47 @@ This General Public License does not permit incorporating your program into prop &Auto Detect - + &Automatische Auswahl Use the system language, if available. - + Benutze Systemsprache, falls verfügbar. Set the interface language to %s - + Ändert die Sprache zu %s Add &Tool... - + Hilfsprogramm hinzufügen ... Add an application to the list of tools. - + Füge eine Anwendung zur Liste der Hilfsprogramme hinzu. &Default - + Standard Set the view mode back to the default. - + Setzt Programmmansicht auf Standard Einstellung zurück. &Setup - + Ein&stellungen Set the view mode to Setup. - + Aktiviert Einstellungs Ansichtsmodus. @@ -2358,7 +2224,7 @@ This General Public License does not permit incorporating your program into prop Set the view mode to Live. - + Aktiviert Live Ansichtsmodus. @@ -2366,124 +2232,202 @@ This General Public License does not permit incorporating your program into prop OpenLP-Version aktualisiert - + OpenLP Main Display Blanked Hauptbildschirm abgedunkelt - + The Main Display has been blanked out Die Projektion ist momentan nicht aktiv - + Save Changes to Service? Änderungen am Ablauf speichern? - + Your service has changed. Do you want to save those changes? - + Der Ablauf wurde geändert. Wollen Sie diese Änderungen speichern? - + Default Theme: %s - - - - - AddHereYourLanguageName - + Standard Design: %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/. - + Version %s von OpenLP ist verfügbar (installierte Version ist %s.) + +Sie können die letzte Version auf http://openlp.org/ abrufen. + + + + English + Please add the name of your language here + Deutsch OpenLP.MediaManagerItem - + No Items Selected - + Keine Elemente ausgewählt. - + + Import %s + Import %s + + + + Import a %s + Import ein(e) %s + + + + Load %s + Lade %s + + + + Load a new %s + Lade ein(e) %s + + + + New %s + Neu(e) %s + + + + Add a new %s + Füge ein(e) %s hinzu + + + + Edit %s + Bearbeite %s + + + + Edit the selected %s + Bearbeite ausgewählte %s + + + + Delete %s + Lösche %s + + + + Delete the selected item + Markiertes Element löschen + + + + Preview %s + Vorschau für %s + + + + Preview the selected item + Zeige das auswählte Element in der Vorschau an + + + + Send the selected item live + Ausgewähltes Element Live anzeigen + + + + Add %s to Service + Füge %s zum Ablauf hinzu + + + + Add the selected item(s) to the service + Füge Element(e) zum Ablauf hinzu + + + &Edit %s - + B&earbeite %s - + &Delete %s - + Lösche %s - + &Preview %s - + Vorschau von %s - + &Show Live &Zeige Live - + &Add to Service &Zum Ablauf hinzufügen - + &Add to selected Service Item - + Füge Element zu aktuellem Ablaufelement hinzu - + You must select one or more items to preview. - + Sie müssen ein oder mehrere Elemente für die Vorschau auswählen. - + You must select one or more items to send live. - + Sie müssen ein oder mehrere Elemente auswählen für die Live Ansicht. - + You must select one or more items. - + Sie müssen ein oder mehrere Elemente auswählen. - + No items selected - + Kein Element ausgewählt - + You must select one or more items Sie müssen mindestens ein Element markieren - + No Service Item Selected - + Kein Element des Ablaufs ausgewählt - + You must select an existing service item to add to. - + Sie müssen einen vorhandenen Ablauf auswählen, der hinzugefügt werden soll. - + Invalid Service Item - + Ungültiges Ablauf Element - + You must select a %s service item. - + Sie müssen ein(e) %s des Ablaufs wählen. @@ -2524,19 +2468,19 @@ You can download the latest version from http://openlp.org/. Inaktiv - + %s (Inactive) %s (Inaktiv) - + %s (Active) %s (Aktiv) - + %s (Disabled) - %s (Deaktiviert) + %s (Abgeschaltet) @@ -2544,12 +2488,12 @@ You can download the latest version from http://openlp.org/. Reorder Service Item - + Aufnahme Ablauf Element Up - + Hoch @@ -2559,7 +2503,7 @@ You can download the latest version from http://openlp.org/. Down - + Runter @@ -2575,7 +2519,7 @@ You can download the latest version from http://openlp.org/. Erstelle neuen Ablauf - + Open Service Öffnen Ablauf @@ -2585,7 +2529,7 @@ You can download the latest version from http://openlp.org/. Öffne Ablauf - + Save Service Ablauf speichern @@ -2607,72 +2551,72 @@ You can download the latest version from http://openlp.org/. Move to &top - + Verschiebe nach ganz oben Move item to the top of the service. - + Verschiebe Element an den Anfang des Ablaufs. Move &up - + Verschiebe nach oben Move item up one position in the service. - + Verschiebe Element im Ablauf um eine Position nach oben. Move &down - + Verschiebe nach unten Move item down one position in the service. - + Verschiebe Element im Ablauf um eine Position nach unten. Move to &bottom - + Verschiebe nach unten Move item to the end of the service. - + Verschiebe Element ans Ende des Ablaufs. &Delete From Service - + Vom Ablauf löschen Delete the selected item from the service. - + Lösche das gewählte Element vom Ablauf. &Add New Item - + Füge neues Element hinzu &Add to Selected Item - + Zum gewählten Element hinzufügen &Edit Item - &Bearbeite Element + B&earbeite Element &Reorder Item - + Aufnahme Element @@ -2695,50 +2639,56 @@ You can download the latest version from http://openlp.org/. &Design des Elements ändern - + Save Changes to Service? Änderungen am Ablauf speichern? - + Your service is unsaved, do you want to save those changes before creating a new one? - + Der aktuelle Ablauf ist wurde nicht gesichert. Wollen Sie die Änderungen speichern, bevor ein neuer Ablauf erstellt wird? - + OpenLP Service Files (*.osz) - + OpenLP Ablauf Dateien(*.osz) - + Your current service is unsaved, do you want to save the changes before opening a new one? - + Der aktuelle Ablauf wurde nicht gespeichert. Wollen Sie die Änderungen speichern, bevor ein neuer geöffnet wird? - + Error Fehler - + File is not a valid service. The content encoding is not UTF-8. - + Datei ist kein gültiger Ablauf. +Der Inhalt wurde nicht in UTF-8 kodiert. - + File is not a valid service. - + Datei ist kein gültiger Ablauf. - + Missing Display Handler - + Fehlende Anzeige Steuerung - + 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 @@ -2754,7 +2704,7 @@ The content encoding is not UTF-8. Configure OpenLP - + Konfiguriere OpenLP @@ -2782,75 +2732,60 @@ The content encoding is not UTF-8. Hide - + Verbergen - + Move to live Verschieben zur Live Ansicht - + Start continuous loop Endlosschleife starten - + Stop continuous loop Endlosschleife beenden - + s s - + Delay between slides in seconds Pause zwischen den Folien in Sekunden - + Start playing media Abspielen - - Blank Screen - - - - - Blank to Theme - - - - - Show Desktop - - - - - Edit and re-preview song - - - - + Go To - + Gehe zu + + + + Edit and reload song preview + Bearbeiten und Lied Vorschau aktualisieren OpenLP.SpellTextEdit - + Spelling Suggestions - + Rechtschreib Empfehlungen - + Formatting Tags - + Formatkürzel @@ -2863,7 +2798,7 @@ The content encoding is not UTF-8. Create a new theme. - + Erzeuge ein neues Design. @@ -2873,7 +2808,7 @@ The content encoding is not UTF-8. Edit a theme. - + Bearbeite ein Design. @@ -2883,7 +2818,7 @@ The content encoding is not UTF-8. Delete a theme. - + Lösche ein Design. @@ -2893,7 +2828,7 @@ The content encoding is not UTF-8. Import a theme. - + Importiere ein Design. @@ -2903,52 +2838,52 @@ The content encoding is not UTF-8. Export a theme. - + Exportiere ein Design. &Edit Theme - + B&earbeite Design &Delete Theme - + Lösche &Design Set As &Global Default - + Setze als &globalen Standard E&xport Theme - + E&xport Design %s (default) - + %s (Standard) You must select a theme to edit. - + Bitte wählen Sie ein Design zum Bearbeiten aus. You must select a theme to delete. - + Bitte wählen Sie ein Design zum Löschen aus. Delete Confirmation - + Löschen Bestätigen Delete theme? - + Design löschen? @@ -2958,22 +2893,12 @@ The content encoding is not UTF-8. You are unable to delete the default theme. - - - - - Theme %s is use in %s plugin. - - - - - Theme %s is use by the service manager. - + Es ist nicht möglich das Standard Design zu entfernen. You have not selected a theme. - + Sie haben kein Design ausgewählt. @@ -2983,22 +2908,22 @@ The content encoding is not UTF-8. Theme Exported - + Design exportiert Your theme has been successfully exported. - + Das Design wurde erfolgreich exportiert. Theme Export Failed - + Design Export fehlgeschlagen Your theme could not be exported due to an error. - + Dieses Design konnte aufgrund eines Fehlers nicht exportiert werden. @@ -3008,18 +2933,19 @@ The content encoding is not UTF-8. Theme (*.*) - + Design (*.*) File is not a valid theme. The content encoding is not UTF-8. - + Dies ist kein gültiges Design. +Die Datei ist nicht in UTF-8 kodiert. File is not a valid theme. - + Diese Datei beinhaltet kein gültiges Design. @@ -3029,7 +2955,17 @@ The content encoding is not UTF-8. A theme with this name already exists. Would you like to overwrite it? - + Ein Design mit diesem Namen existiert bereits. Soll es überschrieben werden? + + + + Theme %s is used in the %s plugin. + Design %s wird in der %s Erweiterung benutzt. + + + + Theme %s is used by the service manager. + Design %s wird in der Ablaufverwaltung benutzt. @@ -3042,17 +2978,17 @@ The content encoding is not UTF-8. Global Theme - + Globales Design Theme Level - + Design Ebene S&ong Level - + Lied Ebene @@ -3062,7 +2998,7 @@ The content encoding is not UTF-8. &Service Level - + Ablauf Ebene @@ -3072,12 +3008,12 @@ The content encoding is not UTF-8. &Global Level - + &Globale Ebene Use the global theme, overriding any themes associated with either the service or the songs. - Das Standarddesign immer verwenden, unabhängig vom Lieddesign oder Ablaufdesign + Das Standarddesign immer verwenden, unabhängig vom Lieddesign oder Ablaufdesign. @@ -3085,110 +3021,55 @@ The content encoding is not UTF-8. <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. - - - - - Presentation - Präsentation - - - - Presentations - Präsentationen - - - - Load - - - - - Load a new Presentation - - - - - Delete - Löschen - - - - Delete the selected Presentation - - - - - Preview - Vorschau - - - - Preview the selected Presentation - - - - - Live - Live - - - - Send the selected Presentation live - - - - - Service - - - - - Add the selected Presentation to the service - + <strong>Erweiterung Präsentationen</strong><bzr/>Die Erweiterung Präsentationen ermöglicht die Darstellung von Präsentationen, unter Verwendung verschiedener Programme, In einer Auswahlbox kann eines der verfügbaren Programme gewählt werden. PresentationPlugin.MediaItem - + + Presentation + Präsentation + + + Select Presentation(s) Präsentation(en) auswählen - + Automatic - + Automatisch - + Present using: Anzeigen mit: - + A presentation with that filename already exists. Eine Präsentation mit diesem Dateinamen existiert bereits. - + You must select an item to delete. - + Es muss ein Element zum Löschen ausgewählt werden. - + File Exists - + Datei existiert - + Unsupported File - + Datei nicht unterstützt - + This type of presentation is not supported. - + Dieser Präsentationstyp wird nicht unterstützt. @@ -3201,17 +3082,17 @@ The content encoding is not UTF-8. Available Controllers - Verfügbare Präsentationsprogramme: + Verfügbare Präsentationsprogramme Advanced - + Erweitert Allow presentation application to be overriden - + Präsentations Programm kann ersetzt werden @@ -3219,17 +3100,7 @@ The content encoding is not UTF-8. <strong>Remote Plugin</strong><br />The remote plugin provides the ability to send messages to a running version of OpenLP on a different computer via a web browser or through the remote API. - - - - - Remote - - - - - Remotes - Fernprojektion + <strong>Erweiterung Fernprojektion</strong><br/>Die Erweiterung Fernprojektion ermöglicht es eine laufende Version von OpenLP von einem anderen Computer über einen Web-Browser oder über die Fernprojektions Oberfläche zu steuern. @@ -3242,17 +3113,17 @@ The content encoding is not UTF-8. Serve on IP address: - + Verfügbar über IP-Adresse: Port number: - + Port-Nummer: Server Settings - + Server Einstellungen @@ -3260,46 +3131,41 @@ The content encoding is not UTF-8. &Song Usage Tracking - + &Delete Tracking Data - + Delete song usage data up to a specified date. - + &Extract Tracking Data - + Generate a report on song usage. - + Toggle Tracking - + Toggle the tracking of song usage. - + <strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services. - - - - - SongUsage @@ -3308,17 +3174,17 @@ The content encoding is not UTF-8. Delete Song Usage Data - + Delete Selected Song Usage Events? - + Are you sure you want to delete selected Song Usage data? - + @@ -3326,12 +3192,12 @@ The content encoding is not UTF-8. Song Usage Extraction - + Select Date Range - + @@ -3359,81 +3225,11 @@ The content encoding is not UTF-8. Import songs using the import wizard. - + <strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs. - - - - - Song - Lied - - - - Songs - Lieder - - - - Add - - - - - Add a new Song - - - - - Edit - Bearbeiten - - - - Edit the selected Song - - - - - Delete - Löschen - - - - Delete the selected Song - - - - - Preview - Vorschau - - - - Preview the selected Song - - - - - Live - Live - - - - Send the selected Song live - - - - - Service - - - - - Add the selected Song to the service @@ -3476,8 +3272,8 @@ The content encoding is not UTF-8. - You have not set a display name for the author, would you like me to combine the first and last names for you? - + You have not set a display name for the author, combine the first and last names? + Sie haben keinen Anzeige-Namen für den Autor gewählt. Soll der Vor- und Nachname kombiniert werden? @@ -3490,17 +3286,17 @@ The content encoding is not UTF-8. &Title: - + &Titel: &Lyrics: - + Noten: &Add - + Hinzufügen @@ -3510,12 +3306,12 @@ The content encoding is not UTF-8. Ed&it All - + Alles Bearbeiten &Delete - + Löschen @@ -3565,12 +3361,12 @@ The content encoding is not UTF-8. New &Theme - + Copyright Information - Copyright Angaben + Kopierrecht Informationen @@ -3595,52 +3391,52 @@ The content encoding is not UTF-8. Add Author - + Autor Hinzufügen This author does not exist, do you want to add them? - + Dieser Autor existiert nicht. Soll er hinzu gefügt werden? No Author Selected - + Kein Autor ausgewählt 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. - + Es wurde kein gültiger Autor ausgewählt. Bitte wählen Sie einen Autor aus der Liste oder geben Sie einen neuen Author ein und drücken die Schaltfläche "Author zum Lied hinzufügen", Add Topic - + Thema hinzufügen This topic does not exist, do you want to add it? - + Dieses Thema existiert nicht. Soll es hinzugefügt werden? No Topic Selected - + Kein Thema gewählt 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. - + Es wurde kein gültiges Thema ausgewählt. Bitte wählen Sie ein Thema aus der Liste oder geben Sie ein neues Thema ein und drücken die Schaltfläche "Thema zum Lied hinzufügen". Add Book - + Buch hinzufügen This song book does not exist, do you want to add it? - + @@ -3650,77 +3446,77 @@ The content encoding is not UTF-8. You need to type in a song title. - + You need to type in at least one verse. - + Warning - + You have not added any authors for this song. Do you want to add an author now? - + 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? - + Alt&ernate title: - + &Verse order: - + &Manage Authors, Topics, Song Books - + Authors, Topics && Song Book - + CCLI number: - + CCLI Nummer: This author is already in the list. - + This topic is already in the list. - + Book: - Buch: + Buch: Number: - + Nummer: @@ -3733,338 +3529,373 @@ The content encoding is not UTF-8. &Verse type: - + &Insert - + SongsPlugin.ImportWizardForm - - No OpenLyrics Files Selected - - - - - You need to add at least one OpenLyrics song file to import from. - - - - + No OpenSong Files Selected - + - + You need to add at least one OpenSong song file to import from. - + - + No CCLI Files Selected - + - + You need to add at least one CCLI file to import from. - + - + Starting import... - Starte import ... + Starte Import... - + Song Import Wizard - + - + Welcome to the 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. - + - + Select Import Source Importquelle auswählen - + Select the import format, and where to import from. Wähle das Import Format und woher der Import erfolgen soll. - + Format: Format: - + OpenLyrics - + - + OpenSong OpenSong - + Add Files... - + - + Remove File(s) - + - + Filename: - + - + Browse... - + - + Importing - + - + Please wait while your songs are imported. - + - + Ready. Fertig. - + %p% - + - + No OpenLP 2.0 Song Database Selected - + You need to select an OpenLP 2.0 song database file to import from. - + No openlp.org 1.x Song Database Selected - + You need to select an openlp.org 1.x song database file to import from. - + No Words of Worship Files Selected - + You need to add at least one Words of Worship file to import from. - + No Songs of Fellowship File Selected - + You need to add at least one Songs of Fellowship file to import from. - + No Document/Presentation Selected - + You need to add at least one document or presentation file to import from. - + Select OpenLP 2.0 Database File - + Select openlp.org 1.x Database File - - Select OpenLyrics Files - - - - + Select Open Song Files - + Select Words of Worship Files - + Select CCLI Files - + Select Songs of Fellowship Files - + Select Document/Presentation Files - + OpenLP 2.0 - OpenLP 2.0 + OpenLP 2.0 - + openlp.org 1.x - + Words of Worship - + CCLI/SongSelect - + Songs of Fellowship - + Generic Document/Presentation - + + 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. + + + + + 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. + + + + Importing "%s"... - + Importing %s... + + + No EasyWorship Song Database Selected + Es ist keine EasyWorship Lied Datenbank ausgewählt + + + + You need to select an EasyWorship song database file to import from. + Bitte wählen Sie die zu importierende EasyWorship Lied Datenbank aus. + + + + Select EasyWorship Database File + Wählen Sie eine EasyWorship Datenbank Datei aus + + + + EasyWorship + EasyWorship + + + + 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. + Leider können noch keine OpenLyric Lieder importiert werden, aber vielleicht klappts ja in der nächsten Version. + + + + Administered by %s + + SongsPlugin.MediaItem - + + Song + Lied + + + Song Maintenance Liedverwaltung - + Maintain the lists of authors, topics and books Autoren, Designs und Bücher verwalten - + Search: Suche: - + Type: Art: - + Clear - + Abbrechen - + Search Suche - + Titles Titel - + Lyrics Liedtext - + Authors Autoren - + You must select an item to edit. - + - + You must select an item to delete. - + Es muss ein Element zum Löschen ausgewählt werden. - + CCLI Licence: CCLI-Lizenz: - + Are you sure you want to delete the selected song? - + - + Are you sure you want to delete the %d selected songs? - + - + Delete Song(s)? - + @@ -4072,12 +3903,12 @@ The content encoding is not UTF-8. &Name: - + &Publisher: - + @@ -4087,36 +3918,36 @@ The content encoding is not UTF-8. You need to type in a name for the book. - + Song Book Maintenance - + SongsPlugin.SongImport - + copyright - + - + © - + SongsPlugin.SongImportForm - + Finished import. - Importvorgang abgeschlossen. + Importvorgang abgeschlossen. - + Your song import failed. @@ -4141,7 +3972,7 @@ The content encoding is not UTF-8. &Add - + Hinzufügen @@ -4151,7 +3982,7 @@ The content encoding is not UTF-8. &Delete - + @@ -4206,67 +4037,67 @@ The content encoding is not UTF-8. Song Books - + 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 he already exists. - + Could not save your modified topic, because it already exists. - + This author cannot be deleted, they are currently assigned to at least one song. - + This topic cannot be deleted, it is currently assigned to at least one song. - + This book cannot be deleted, it is currently assigned to at least one song. - + + + + + Could not save your modified author, because the author already exists. + Der geänderte Autor kann nicht gespeichert werden, da er bereits existiert. @@ -4284,12 +4115,12 @@ The content encoding is not UTF-8. Enable search as you type - + Aktiviere Suche beim tippen Display verses on live tool bar - + @@ -4311,8 +4142,8 @@ The content encoding is not UTF-8. - You need to type in a topic name! - Sie müssen dem Thema einen Namen geben! + You need to type in a topic name. + Bitte geben Sie ein Thema ein. @@ -4345,7 +4176,7 @@ The content encoding is not UTF-8. Ending - Coda (Schluss) + Schluss diff --git a/resources/i18n/en.ts b/resources/i18n/en.ts index 9ba29a478..08c83f3dd 100644 --- a/resources/i18n/en.ts +++ b/resources/i18n/en.ts @@ -17,16 +17,6 @@ <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of nursery alerts on the display screen - - - Alert - - - - - Alerts - - AlertsPlugin.AlertForm @@ -172,6 +162,19 @@ + + BiblePlugin.MediaItem + + + Error + + + + + You cannot combine single and dual bible verses. Do you want to delete your search results and start a new search? + + + BiblesPlugin @@ -184,86 +187,6 @@ <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display bible verses from different sources during the service. - - - Bible - - - - - Bibles - - - - - Import - - - - - Import a Bible - - - - - Add - - - - - Add a new Bible - - - - - Edit - - - - - Edit the selected Bible - - - - - Delete - - - - - Delete the selected Bible - - - - - Preview - - - - - Preview the selected Bible - - - - - Live - - - - - Send the selected Bible live - - - - - Service - - - - - Add the selected Bible to the service - - BiblesPlugin.BibleDB @@ -287,7 +210,7 @@ - Your scripture reference is either not supported by OpenLP or invalid. Please make sure your reference conforms to one of the following patterns: + 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 @@ -586,42 +509,42 @@ Changes do not affect verses already in the service. - + Empty Copyright - - You need to set a copyright for your Bible! Bibles in the Public Domain need to be marked as such. + + You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. - + Bible Exists - - This Bible already exists! Please import a different Bible or first delete the existing one. + + This Bible already exists. Please import a different Bible or first delete the existing one. - + Open OSIS File - + Open Books CSV File - + Open Verses CSV File - + Open OpenSong Bible @@ -631,12 +554,12 @@ Changes do not affect verses already in the service. - + Finished import. - + Your Bible import failed. @@ -644,107 +567,107 @@ Changes do not affect verses already in the service. BiblesPlugin.MediaItem - + + Bible + + + + Quick - + Advanced - + Version: - + Dual: - + Search type: - + Find: - + Search - + Results: - + Book: - + Chapter: - + Verse: - + From: - + To: - + Verse Search - + Text Search - + Clear - + Keep - + No Book Found - + No matching book could be found in this Bible. - - etc - - - - + Bible not fully loaded. @@ -761,7 +684,7 @@ Changes do not affect verses already in the service. 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 Customs are. This plugin provides greater freedom over the Customs plugin. + <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. @@ -914,106 +837,18 @@ Changes do not affect verses already in the service. CustomPlugin.MediaItem - - You haven't selected an item to edit. - - - - - You haven't selected an item to delete. - - - - - CustomsPlugin - - + Custom - - Customs + + You haven't selected an item to edit. - - Import - - - - - Import a Custom - - - - - Load - - - - - Load a new Custom - - - - - Add - - - - - Add a new Custom - - - - - Edit - - - - - Edit the selected Custom - - - - - Delete - - - - - Delete the selected Custom - - - - - Preview - - - - - Preview the selected Custom - - - - - Live - - - - - Send the selected Custom live - - - - - Service - - - - - Add the selected Custom to the service + + You haven't selected an item to delete. @@ -1021,134 +856,59 @@ Changes do not affect verses already in the service. 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 Images with the selected image as a background instead of the background provided by the theme. - - - - - Image - - - - - Images - - - - - Load - - - - - Load a new Image - - - - - Add - - - - - Add a new Image - - - - - Edit - - - - - Edit the selected Image - - - - - Delete - - - - - Delete the selected Image - - - - - Preview - - - - - Preview the selected Image - - - - - Live - - - - - Send the selected Image live - - - - - Service - - - - - Add the selected Image to the service + <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. ImagePlugin.MediaItem - + + Image + + + + Select Image(s) - + All Files - + Replace Live Background - + Replace Background - + Reset Live Background - + You must select an image to delete. - + Image(s) - + You must select an image to replace the background with. - + You must select a media file to replace the background with. @@ -1160,111 +920,31 @@ Changes do not affect verses already in the service. <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. - - - Media - - - - - Medias - - - - - Load - - - - - Load a new Media - - - - - Add - - - - - Add a new Media - - - - - Edit - - - - - Edit the selected Media - - - - - Delete - - - - - Delete the selected Media - - - - - Preview - - - - - Preview the selected Media - - - - - Live - - - - - Send the selected Media live - - - - - Service - - - - - Add the selected Media to the service - - MediaPlugin.MediaItem - - Select Media - - - - - Replace Live Background - - - - - Replace Background - - - - + Media - + + Select Media + + + + + Replace Live Background + + + + + Replace Background + + + + You must select a media file to delete. @@ -1272,7 +952,7 @@ Changes do not affect verses already in the service. OpenLP - + Image Files @@ -1833,7 +1513,7 @@ This General Public License does not permit incorporating your program into prop OpenLP.ExceptionDialog - Error Occured + Error Occurred @@ -1973,43 +1653,23 @@ This General Public License does not permit incorporating your program into prop OpenLP.LanguageManager - + Language - + Please restart OpenLP to use your new language setting. OpenLP.MainWindow - - - New Service - - - - - Open Service - - - - - Save Service - - OpenLP 2.0 - - - AddHereYourLanguageName - - &File @@ -2075,6 +1735,11 @@ This General Public License does not permit incorporating your program into prop &New + + + New Service + + Create a new service. @@ -2090,6 +1755,11 @@ This General Public License does not permit incorporating your program into prop &Open + + + Open Service + + Open an existing service. @@ -2105,6 +1775,11 @@ This General Public License does not permit incorporating your program into prop &Save + + + Save Service + + Save the current service to disk. @@ -2373,115 +2048,191 @@ You can download the latest version from http://openlp.org/. - + OpenLP Main Display Blanked - + The Main Display has been blanked out - + Save Changes to Service? - + Your service has changed. Do you want to save those changes? - + Default Theme: %s - + English + Please add the name of your language here OpenLP.MediaManagerItem - + No Items Selected - + + Import %s + + + + + Import a %s + + + + + Load %s + + + + + Load a new %s + + + + + New %s + + + + + Add a new %s + + + + + Edit %s + + + + + Edit the selected %s + + + + + Delete %s + + + + + Delete the selected item + + + + + Preview %s + + + + + Preview the selected item + + + + + Send the selected item live + + + + + Add %s to Service + + + + + Add the selected item(s) to the service + + + + &Edit %s - + &Delete %s - + &Preview %s - + &Show Live - + &Add to Service - + &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. - + No items selected - + You must select one or more items - + No Service Item Selected - + You must select an existing service item to add to. - + Invalid Service Item - + You must select a %s service item. @@ -2524,17 +2275,17 @@ You can download the latest version from http://openlp.org/. - + %s (Inactive) - + %s (Active) - + %s (Disabled) @@ -2575,7 +2326,7 @@ You can download the latest version from http://openlp.org/. - + Open Service @@ -2585,7 +2336,7 @@ You can download the latest version from http://openlp.org/. - + Save Service @@ -2695,51 +2446,56 @@ You can download the latest version from http://openlp.org/. - + Save Changes to Service? - + Your service is unsaved, do you want to save those changes before creating a new one? - + OpenLP Service Files (*.osz) - + Your current service is unsaved, do you want to save the changes before opening a new one? - + Error - + 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 + + OpenLP.ServiceNoteForm @@ -2785,57 +2541,42 @@ The content encoding is not UTF-8. - - Blank Screen - - - - - Blank to Theme - - - - - Show Desktop - - - - + Move to live - - Edit and re-preview song + + Edit and reload song preview - + Start continuous loop - + Stop continuous loop - + s - + Delay between slides in seconds - + Start playing media - + Go To @@ -2843,12 +2584,12 @@ The content encoding is not UTF-8. OpenLP.SpellTextEdit - + Spelling Suggestions - + Formatting Tags @@ -2962,12 +2703,12 @@ The content encoding is not UTF-8. - Theme %s is use in %s plugin. + Theme %s is used in the %s plugin. - Theme %s is use by the service manager. + Theme %s is used by the service manager. @@ -3087,106 +2828,51 @@ The content encoding is not UTF-8. <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. - - - Presentation - - - - - Presentations - - - - - Load - - - - - Load a new Presentation - - - - - Delete - - - - - Delete the selected Presentation - - - - - Preview - - - - - Preview the selected Presentation - - - - - Live - - - - - Send the selected Presentation live - - - - - Service - - - - - Add the selected Presentation to the service - - PresentationPlugin.MediaItem - + + Presentation + + + + Select Presentation(s) - + Automatic - + Present using: - + File Exists - + A presentation with that filename already exists. - + Unsupported File - + This type of presentation is not supported. - + You must select an item to delete. @@ -3221,16 +2907,6 @@ The content encoding is not UTF-8. <strong>Remote Plugin</strong><br />The remote plugin provides the ability to send messages to a running version of OpenLP on a different computer via a web browser or through the remote API. - - - Remote - - - - - Remotes - - RemotePlugin.RemoteTab @@ -3297,11 +2973,6 @@ The content encoding is not UTF-8. <strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services. - - - SongUsage - - SongUsagePlugin.SongUsageDeleteForm @@ -3366,76 +3037,6 @@ The content encoding is not UTF-8. <strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs. - - - Song - - - - - Songs - - - - - Add - - - - - Add a new Song - - - - - Edit - - - - - Edit the selected Song - - - - - Delete - - - - - Delete the selected Song - - - - - Preview - - - - - Preview the selected Song - - - - - Live - - - - - Send the selected Song live - - - - - Service - - - - - Add the selected Song to the service - - SongsPlugin.AuthorsForm @@ -3476,7 +3077,7 @@ The content encoding is not UTF-8. - You have not set a display name for the author, would you like me to combine the first and last names for you? + You have not set a display name for the author, combine the first and last names? @@ -3744,247 +3345,277 @@ The content encoding is not UTF-8. SongsPlugin.ImportWizardForm - + No OpenLP 2.0 Song Database Selected - + You need to select an OpenLP 2.0 song database file to import from. - + No openlp.org 1.x Song Database Selected - + You need to select an openlp.org 1.x song database file to import from. - - No OpenLyrics Files Selected - - - - - You need to add at least one OpenLyrics song file to import from. - - - - + No OpenSong Files Selected - + You need to add at least one OpenSong song file to import from. - + No Words of Worship Files Selected - + You need to add at least one Words of Worship file to import from. - + No CCLI Files Selected - + You need to add at least one CCLI file to import from. - + No Songs of Fellowship File Selected - + You need to add at least one Songs of Fellowship file to import from. - + No Document/Presentation Selected - + You need to add at least one document or presentation file to import from. - + + No EasyWorship Song Database Selected + + + + + You need to select an EasyWorship song database file to import from. + + + + Select OpenLP 2.0 Database File - + Select openlp.org 1.x Database File - - Select OpenLyrics Files - - - - + Select Open Song Files - + Select Words of Worship Files - + Select CCLI Files - + Select Songs of Fellowship Files - + Select Document/Presentation Files - + + Select EasyWorship Database File + + + + Starting import... - + Song Import Wizard - + Welcome to the 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. - + Select Import Source - + Select the import format, and where to import from. - + Format: - + OpenLP 2.0 - + openlp.org 1.x - + OpenLyrics - + OpenSong - + Words of Worship - + CCLI/SongSelect - + Songs of Fellowship - + Generic Document/Presentation - + + EasyWorship + + + + Filename: - + Browse... - + + 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. + + + + + 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. + + + + Importing - + Please wait while your songs are imported. - + Ready. - + %p% - + Importing "%s"... - + + Administered by %s + + + + Importing %s... @@ -3992,77 +3623,82 @@ The content encoding is not UTF-8. SongsPlugin.MediaItem - + + Song + + + + Song Maintenance - + Maintain the lists of authors, topics and books - + Search: - + Type: - + Clear - + Search - + Titles - + Lyrics - + Authors - + You must select an item to edit. - + You must select an item to delete. - + Are you sure you want to delete the selected song? - + Are you sure you want to delete the %d selected songs? - + Delete Song(s)? - + CCLI Licence: @@ -4098,12 +3734,12 @@ The content encoding is not UTF-8. SongsPlugin.SongImport - + copyright - + © @@ -4111,12 +3747,12 @@ The content encoding is not UTF-8. SongsPlugin.SongImportForm - + Finished import. - + Your song import failed. @@ -4200,7 +3836,7 @@ The content encoding is not UTF-8. - Could not save your modified author, because he already exists. + Could not save your modified author, because the author already exists. @@ -4311,7 +3947,7 @@ The content encoding is not UTF-8. - You need to type in a topic name! + You need to type in a topic name. diff --git a/resources/i18n/en_GB.ts b/resources/i18n/en_GB.ts index 0088eab91..a9dd35d54 100644 --- a/resources/i18n/en_GB.ts +++ b/resources/i18n/en_GB.ts @@ -1,31 +1,22 @@ - + + AlertsPlugin &Alert - &Alert + &Alert Show an alert message. - + Show an alert message. <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of nursery alerts on the display screen - - - - - Alert - - - - - Alerts - Alerts + <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of nursery alerts on the display screen @@ -33,57 +24,57 @@ Alert Message - Alert Message + Alert Message Alert &text: - + Alert &text: &Parameter(s): - + &Parameter(s): &New - &New + &New &Save - &Save + &Save &Delete - + &Delete Displ&ay - + Displ&ay Display && Cl&ose - + Display && Cl&ose &Close - + &Close New Alert - + New Alert You haven't specified any text for your alert. Please type in some text before clicking New. - + You haven't specified any text for your alert. Please type in some text before clicking New. @@ -91,7 +82,7 @@ Alert message created and displayed. - + Alert message created and displayed. @@ -99,77 +90,90 @@ Alerts - Alerts + Alerts Font - Font + Font Font name: - + Font name: Font color: - + Font colour: Background color: - + Background colour: Font size: - + Font size: pt - pt + pt Alert timeout: - Alert timeout: + Alert timeout: s - s + s Location: - Location: + Location: Preview - Preview + Preview OpenLP 2.0 - OpenLP 2.0 + OpenLP 2.0 Top - Top + Top Middle - Middle + Middle Bottom - Bottom + Bottom + + + + BiblePlugin.MediaItem + + + Error + Error + + + + You cannot combine single and dual bible verses. Do you want to delete your search results and start a new search? + You cannot combine single and dual bible verses. Do you want to delete your search results and start a new search? @@ -177,92 +181,12 @@ &Bible - &Bible + &Bible <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display bible verses from different sources during the service. - - - - - Bible - Bible - - - - Bibles - Bibles - - - - Import - Import - - - - Import a Bible - - - - - Add - Add - - - - Add a new Bible - - - - - Edit - Edit - - - - Edit the selected Bible - - - - - Delete - Delete - - - - Delete the selected Bible - - - - - Preview - Preview - - - - Preview the selected Bible - - - - - Live - Live - - - - Send the selected Bible live - - - - - Service - - - - - Add the selected Bible to the service - + <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display bible verses from different sources during the service. @@ -270,12 +194,12 @@ Book not found - + Book not found The book you requested could not be found in this bible. Please check your spelling and that this is a complete bible not just one testament. - + The book you requested could not be found in this bible. Please check your spelling and that this is a complete bible not just one testament. @@ -283,11 +207,11 @@ Scripture Reference Error - + Scripture Reference Error - Your scripture reference is either not supported by OpenLP or invalid. Please make sure your reference conforms to one of the following patterns: + 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 @@ -296,7 +220,15 @@ Book Chapter:Verse-Verse,Verse-Verse Book Chapter:Verse-Verse,Chapter:Verse-Verse Book Chapter:Verse-Chapter:Verse - + 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 + @@ -304,78 +236,79 @@ Book Chapter:Verse-Chapter:Verse Bibles - Bibles + Bibles Verse Display - Verse Display + Verse Display Only show new chapter numbers - Only show new chapter numbers + Only show new chapter numbers Layout style: - + Layout style: Display style: - + Display style: Bible theme: - + Bible theme: Verse Per Slide - + Verse Per Slide Verse Per Line - + Verse Per Line Continuous - + Continuous No Brackets - + No Brackets ( And ) - + ( And ) { And } - + { And } [ And ] - + [ And ] Note: Changes do not affect verses already in the service. - + Note: +Changes do not affect verses already in the service. Display dual Bible verses - + Display dual Bible verses @@ -383,370 +316,370 @@ Changes do not affect verses already in the service. Bible Import Wizard - Bible Import Wizard + Bible Import Wizard Welcome to the Bible Import Wizard - Welcome to the Bible Import Wizard + Welcome to the 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. - 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. + 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. Select Import Source - Select Import Source + Select Import Source Select the import format, and where to import from. - Select the import format, and where to import from. + Select the import format, and where to import from. Format: - Format: + Format: OSIS - OSIS + OSIS CSV - CSV + CSV OpenSong - OpenSong + OpenSong Web Download - Web Download + Web Download File location: - + File location: Books location: - + Books location: Verse location: - + Verse location: Bible filename: - + Bible filename: Location: - Location: + Location: Crosswalk - Crosswalk + Crosswalk BibleGateway - BibleGateway + BibleGateway Bible: - Bible: + Bible: Download Options - Download Options + Download Options Server: - Server: + Server: Username: - Username: + Username: Password: - Password: + Password: Proxy Server (Optional) - Proxy Server (Optional) + Proxy Server (Optional) License Details - License Details + License Details Set up the Bible's license details. - Set up the Bible's license details. + Set up the Bible's license details. Version name: - + Version name: Copyright: - Copyright: + Copyright: Permission: - Permission: + Permission: Importing - Importing + Importing Please wait while your Bible is imported. - Please wait while your Bible is imported. + Please wait while your Bible is imported. Ready. - Ready. + Ready. Invalid Bible Location - Invalid Bible Location + Invalid Bible Location You need to specify a file to import your Bible from. - + You need to specify a file to import your Bible from. Invalid Books File - Invalid Books File + Invalid Books File You need to specify a file with books of the Bible to use in the import. - + You need to specify a file with books of the Bible to use in the import. Invalid Verse File - Invalid Verse File + Invalid Verse File You need to specify a file of Bible verses to import. - + You need to specify a file of Bible verses to import. Invalid OpenSong Bible - Invalid OpenSong Bible + Invalid OpenSong Bible You need to specify an OpenSong Bible file to import. - + You need to specify an OpenSong Bible file to import. Empty Version Name - Empty Version Name + Empty Version Name You need to specify a version name for your Bible. - + You need to specify a version name for your Bible. - + Empty Copyright - Empty Copyright + Empty Copyright - - You need to set a copyright for your Bible! Bibles in the Public Domain need to be marked as such. - You need to set a copyright for your Bible! Bibles in the Public Domain need to be marked as such. - - - + Bible Exists - Bible Exists + Bible Exists - - This Bible already exists! Please import a different Bible or first delete the existing one. - - - - + Open OSIS File - + Open OSIS File - + Open Books CSV File - + Open Books CSV File - + Open Verses CSV File - + Open Verses CSV File - + Open OpenSong Bible - Open OpenSong Bible + Open OpenSong Bible Starting import... - Starting import... + Starting import... - + Finished import. - Finished import. + Finished import. - + Your Bible import failed. - Your Bible import failed. + Your Bible import failed. + + + + You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. + You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. + + + + This Bible already exists. Please import a different Bible or first delete the existing one. + This Bible already exists. Please import a different Bible or first delete the existing one. BiblesPlugin.MediaItem - + + Bible + Bible + + + Quick - Quick + Quick - + Advanced - Advanced + Advanced - + Version: - Version: + Version: - + Dual: - Dual: + Dual: - + Search type: - + Search type: - + Find: - Find: - - - - Search - Search - - - - Results: - Results: - - - - Book: - Book: - - - - Chapter: - Chapter: - - - - Verse: - Verse: - - - - From: - From: + Find: + Search + Search + + + + Results: + Results: + + + + Book: + Book: + + + + Chapter: + Chapter: + + + + Verse: + Verse: + + + + From: + From: + + + To: - To: + To: - + Verse Search - Verse Search + Verse Search - + Text Search - Text Search + Text Search - + Clear - Clear + Clear - + Keep - Keep + Keep - + No Book Found - No Book Found + No Book Found - + No matching book could be found in this Bible. - No matching book could be found in this Bible. + No matching book could be found in this Bible. - - etc - - - - + Bible not fully loaded. - + Bible not fully loaded. @@ -754,15 +687,15 @@ Changes do not affect verses already in the service. Importing - Importing + Importing 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 Customs are. This plugin provides greater freedom over the Customs plugin. - + <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. + <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. @@ -770,17 +703,17 @@ Changes do not affect verses already in the service. Custom - Custom + Custom Custom Display - Custom Display + Custom Display Display footer - + Display footer @@ -788,369 +721,206 @@ Changes do not affect verses already in the service. Edit Custom Slides - Edit Custom Slides + Edit Custom Slides Move slide up one position. - + Move slide up one position. Move slide down one position. - + Move slide down one position. &Title: - + &Title: Add New - Add New + Add New Add a new slide at bottom. - + Add a new slide at bottom. Edit - Edit + Edit Edit the selected slide. - + Edit the selected slide. Edit All - Edit All + Edit All Edit all the slides at once. - + Edit all the slides at once. Save - Save + Save Save the slide currently being edited. - + Save the slide currently being edited. Delete - Delete + Delete Delete the selected slide. - + Delete the selected slide. Clear - Clear + Clear Clear edit area - Clear edit area + Clear edit area Split Slide - + Split Slide Split a slide into two by inserting a slide splitter. - + Split a slide into two by inserting a slide splitter. The&me: - + The&me: &Credits: - + &Credits: Save && Preview - Save && Preview + Save && Preview Error - Error + Error You need to type in a title. - + You need to type in a title. You need to add at least one slide - + You need to add at least one slide You have one or more unsaved slides, please either save your slide(s) or clear your changes. - + You have one or more unsaved slides, please either save your slide(s) or clear your changes. CustomPlugin.MediaItem - - You haven't selected an item to edit. - - - - - You haven't selected an item to delete. - - - - - CustomsPlugin - - + Custom - Custom + Custom - - Customs - + + You haven't selected an item to edit. + You haven't selected an item to edit. - - Import - Import - - - - Import a Custom - - - - - Load - - - - - Load a new Custom - - - - - Add - Add - - - - Add a new Custom - - - - - Edit - Edit - - - - Edit the selected Custom - - - - - Delete - Delete - - - - Delete the selected Custom - - - - - Preview - Preview - - - - Preview the selected Custom - - - - - Live - Live - - - - Send the selected Custom live - - - - - Service - - - - - Add the selected Custom to the service - + + You haven't selected an item to delete. + You haven't selected an item to delete. 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 Images with the selected image as a background instead of the background provided by the theme. - - - - - Image - Image - - - - Images - Images - - - - Load - - - - - Load a new Image - - - - - Add - Add - - - - Add a new Image - - - - - Edit - Edit - - - - Edit the selected Image - - - - - Delete - Delete - - - - Delete the selected Image - - - - - Preview - Preview - - - - Preview the selected Image - - - - - Live - Live - - - - Send the selected Image live - - - - - Service - - - - - Add the selected Image to the service - + <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. ImagePlugin.MediaItem - + + Image + Image + + + Select Image(s) - Select Image(s) + Select Image(s) - + All Files - + All Files - + Replace Live Background - + Replace Live Background - + Replace Background - + Replace Background - + Reset Live Background - + Reset Live Background - + You must select an image to delete. - + You must select an image to delete. - + Image(s) - Image(s) + Image(s) - + You must select an image to replace the background with. - + You must select an image to replace the background with. - + You must select a media file to replace the background with. - + You must select a media file to replace the background with. @@ -1158,123 +928,43 @@ Changes do not affect verses already in the service. <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. - - - - - Media - Media - - - - Medias - - - - - Load - - - - - Load a new Media - - - - - Add - Add - - - - Add a new Media - - - - - Edit - Edit - - - - Edit the selected Media - - - - - Delete - Delete - - - - Delete the selected Media - - - - - Preview - Preview - - - - Preview the selected Media - - - - - Live - Live - - - - Send the selected Media live - - - - - Service - - - - - Add the selected Media to the service - + <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. MediaPlugin.MediaItem - - Select Media - Select Media - - - - Replace Live Background - - - - - Replace Background - - - - + Media - Media + Media - + + Select Media + Select Media + + + + Replace Live Background + Replace Live Background + + + + Replace Background + Replace Background + + + You must select a media file to delete. - + You must select a media file to delete. OpenLP - + Image Files - + Image Files @@ -1282,7 +972,7 @@ Changes do not affect verses already in the service. About OpenLP - About OpenLP + About OpenLP @@ -1293,12 +983,18 @@ OpenLP is free church presentation software, or lyrics projection software, used Find out more about OpenLP: http://openlp.org/ OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider contributing by using the button below. - + 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. About - About + About @@ -1340,17 +1036,54 @@ Built With PyQt4: http://www.riverbankcomputing.co.uk/software/pyqt/intro Oxygen Icons: http://oxygen-icons.org/ - + Project Lead +Raoul "superfly" Snyman + +Developers +Tim "TRB143" Bentley +Jonathan "gushie" Corwin +Michael "cocooncrash" Gorven +Scott "sguerrieri" Guerrieri +Raoul "superfly" Snyman +Martin "mijiti" Thompson +Jon "Meths" Tibble + +Contributors +Meinert "m2j" Jordan +Andreas "googol" Preikschat +Christian "crichter" Richter +Philip "Phill" Ridout +Maikel Stuivenberg +Carsten "catini" Tingaard +Frode "frodus" Woldsund + +Testers +Philip "Phill" Ridout +Wesley "wrst" Stout (lead) + +Packagers +Thomas "tabthorpe" Abthorpe (FreeBSD) +Tim "TRB143" Bentley (Fedora) +Michael "cocooncrash" Gorven (Ubuntu) +Matthias "matthub" Hub (Mac OS X) +Raoul "superfly" Snyman (Windows, Ubuntu) + +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/ + Credits - Credits + Credits - Copyright © 2004-2010 Raoul Snyman -Portions copyright © 2004-2010 Tim Bentley, Jonathan Corwin, Michael Gorven, Scott Guerrieri, Christian Richter, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Carsten Tinggaard + Copyright © 2004-2010 Raoul Snyman +Portions copyright © 2004-2010 Tim Bentley, Jonathan Corwin, Michael Gorven, Scott Guerrieri, Christian Richter, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Carsten Tinggaard 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. @@ -1480,27 +1213,157 @@ Yoyodyne, Inc., hereby disclaims all copyright interest in the program "Gno Ty Coon, President of Vice This General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. - + Copyright © 2004-2010 Raoul Snyman +Portions copyright © 2004-2010 Tim Bentley, Jonathan Corwin, Michael Gorven, Scott Guerrieri, Christian Richter, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Carsten Tinggaard + +This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public Licence as published by the Free Software Foundation; version 2 of the Licence. + +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. + + +GNU GENERAL PUBLIC LICENCE +Version 2, June 1991 + +Copyright (C) 1989, 1991 Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. Everyone is permitted to copy and distribute verbatim copies of this licence document, but changing it is not allowed. + +Preamble + +The licences for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public Licence is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This General Public Licence applies to most of the Free Software Foundation's software and to any other program whose authors commit to using it. (Some other Free Software Foundation software is covered by the GNU Lesser General Public Licence instead.) You can apply it to your programs, too. + +When we speak of free software, we are referring to freedom, not price. Our General Public Licences are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things. + +To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it. + +For example, if you distribute copies of such a program, whether gratis or for a fee, you must give the recipients all the rights that you have. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. + +We protect your rights with two steps: (1) copyright the software, and (2) offer you this licence which gives you legal permission to copy, distribute and/or modify the software. + +Also, for each author's protection and ours, we want to make certain that everyone understands that there is no warranty for this free software. If the software is modified by someone else and passed on, we want its recipients to know that what they have is not the original, so that any problems introduced by others will not reflect on the original authors' reputations. + +Finally, any free program is threatened constantly by software patents. We wish to avoid the danger that redistributors of a free program will individually obtain patent licences, in effect making the program proprietary. To prevent this, we have made it clear that any patent must be licensed for everyone's free use or not licensed at all. + +The precise terms and conditions for copying, distribution and modification follow. + +GNU GENERAL PUBLIC LICENCE +TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + +0. This Licence applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public Licence. The "Program", below, refers to any such program or work, and a "work based on the Program" means either the Program or any derivative work under copyright law: that is to say, a work containing the Program or a portion of it, either verbatim or with modifications and/or translated into another language. (Hereinafter, translation is included without limitation in the term "modification".) Each licensee is addressed as "you". + +Activities other than copying, distribution and modification are not covered by this Licence; they are outside its scope. The act of running the Program is not restricted, and the output from the Program is covered only if its contents constitute a work based on the Program (independent of having been made by running the Program). Whether that is true depends on what the Program does. + +1. You may copy and distribute verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this Licence and to the absence of any warranty; and give any other recipients of the Program a copy of this Licence along with the Program. + +You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. + +2. You may modify your copy or copies of the Program or any portion of it, thus forming a work based on the Program, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: + +a) You must cause the modified files to carry prominent notices stating that you changed the files and the date of any change. + +b) You must cause any work that you distribute or publish, that in whole or in part contains or is derived from the Program or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this Licence. + +c) If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the most ordinary way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this Licence. (Exception: if the Program itself is interactive but does not normally print such an announcement, your work based on the Program is not required to print an announcement.) + +These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, and can be reasonably considered independent and separate works in themselves, then this Licence, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Program, the distribution of the whole must be on the terms of this Licence, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Program. + +In addition, mere aggregation of another work not based on the Program with the Program (or with a work based on the Program) on a volume of a storage or distribution medium does not bring the other work under the scope of this Licence. + +3. You may copy and distribute the Program (or a work based on it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you also do one of the following: + +a) Accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, + +b) Accompany it with a written offer, valid for at least three years, to give any third party, for a charge no more than your cost of physically performing source distribution, a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, + +c) Accompany it with the information you received as to the offer to distribute corresponding source code. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form with such an offer, in accord with Subsection b above.) + +The source code for a work means the preferred form of the work for making modifications to it. For an executable work, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the executable. However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. + +If distribution of executable or object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place counts as distribution of the source code, even though third parties are not compelled to copy the source along with the object code. + +4. You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this Licence. Any attempt otherwise to copy, modify, sublicense or distribute the Program is void, and will automatically terminate your rights under this Licence. However, parties who have received copies, or rights, from you under this Licence will not have their licences terminated so long as such parties remain in full compliance. + +5. You are not required to accept this Licence, since you have not signed it. However, nothing else grants you permission to modify or distribute the Program or its derivative works. These actions are prohibited by law if you do not accept this Licence. Therefore, by modifying or distributing the Program (or any work based on the Program), you indicate your acceptance of this Licence to do so, and all its terms and conditions for copying, distributing or modifying the Program or works based on it. + +6. Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a licence from the original licensor to copy, distribute or modify the Program subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this Licence. + +7. If, as a consequence of a court judgement or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this Licence, they do not excuse you from the conditions of this Licence. If you cannot distribute so as to satisfy simultaneously your obligations under this Licence and any other pertinent obligations, then as a consequence you may not distribute the Program at all. For example, if a patent licence would not permit royalty-free redistribution of the Program by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this Licence would be to refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply and the section as a whole is intended to apply in other circumstances. + +It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system, which is implemented by public licence practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. + +This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this Licence. + +8. If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Program under this Licence may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this Licence incorporates the limitation as if written in the body of this Licence. + +9. The Free Software Foundation may publish revised and/or new versions of the General Public Licence from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. + +Each version is given a distinguishing version number. If the Program specifies a version number of this Licence which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of this Licence, you may choose any version ever published by the Free Software Foundation. + +10. If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. + +NO WARRANTY + +11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + +12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + +END OF TERMS AND CONDITIONS + +How to Apply These Terms to Your New Programs + +If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. + +To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. + +<one line to give the program's name and a brief idea of what it does.> +Copyright (C) <year> <name of author> + +This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public Licence as published by the Free Software Foundation; either version 2 of the Licence, or (at your option) any later version. + +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 the GNU General Public Licence for more details. + +You should have received a copy of the GNU General Public Licence along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + +Also add information on how to contact you by electronic and paper mail. + +If the program is interactive, make it output a short notice like this when it starts in an interactive mode: + +Gnomovision version 69, Copyright (C) year name of author +Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type "show w". +This is free software, and you are welcome to redistribute it under certain conditions; type "show c" for details. + +The hypothetical commands "show w" and "show c" should show the appropriate parts of the General Public Licence. Of course, the commands you use may be called something other than "show w" and "show c"; they could even be mouse-clicks or menu items--whatever suits your program. + +You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright disclaimer" for the program, if necessary. Here is a sample; alter the names: + +Yoyodyne, Inc., hereby disclaims all copyright interest in the program "Gnomovision" (which makes passes at compilers) written by James Hacker. + +<signature of Ty Coon>, 1 April 1989 +Ty Coon, President of Vice + +This General Public Licence does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public Licence instead of this Licence. License - License + Licence Contribute - Contribute + Contribute Close - Close + Close build %s - + build %s @@ -1508,27 +1371,27 @@ This General Public License does not permit incorporating your program into prop Advanced - Advanced + Advanced UI Settings - + UI Settings Number of recent files to display: - + Number of recent files to display: Remember active media manager tab on startup - + Remember active media manager tab on startup Double-click to send items straight to live (requires restart) - + Double-click to send items straight to live (requires restart) @@ -1536,310 +1399,310 @@ This General Public License does not permit incorporating your program into prop Theme Maintenance - Theme Maintenance + Theme Maintenance Theme &name: - + Theme &name: Type: - Type: + Type: Solid Color - Solid Color + Solid Colour Gradient - Gradient + Gradient Image - Image + Image Image: - Image: + Image: Gradient: - + Gradient: Horizontal - Horizontal + Horizontal Vertical - Vertical + Vertical Circular - + Circular &Background - + &Background Main Font - Main Font + Main Font Font: - Font: + Font: Color: - + Colour: Size: - Size: + Size: pt - pt + pt Adjust line spacing: - + Adjust line spacing: Normal - Normal + Normal Bold - Bold + Bold Italics - Italics + Italics Bold/Italics - Bold/Italics + Bold/Italics Style: - + Style: Display Location - Display Location + Display Location Use default location - + Use default location X position: - + X position: Y position: - + Y position: Width: - Width: + Width: Height: - Height: + Height: px - px + px &Main Font - + &Main Font Footer Font - Footer Font + Footer Font &Footer Font - + &Footer Font Outline - Outline + Outline Outline size: - + Outline size: Outline color: - + Outline colour: Show outline: - + Show outline: Shadow - Shadow + Shadow Shadow size: - + Shadow size: Shadow color: - + Shadow colour: Show shadow: - + Show shadow: Alignment - Alignment + Alignment Horizontal align: - + Horizontal align: Left - Left + Left Right - Right + Right Center - Center + Centre Vertical align: - + Vertical align: Top - Top + Top Middle - Middle + Middle Bottom - Bottom + Bottom Slide Transition - Slide Transition + Slide Transition Transition active - + Transition active &Other Options - + &Other Options Preview - Preview + Preview All Files - + All Files Select Image - + Select Image First color: - + First colour: Second color: - + Second colour: Slide height is %s rows. - + Slide height is %s rows. OpenLP.ExceptionDialog - - - Error Occured - - 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. - + 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. + + + + Error Occurred + Error Occurred @@ -1847,643 +1710,715 @@ This General Public License does not permit incorporating your program into prop General - General + General Monitors - Monitors + Monitors Select monitor for output display: - Select monitor for output display: + Select monitor for output display: Display if a single screen - + Display if a single screen Application Startup - Application Startup + Application Startup Show blank screen warning - Show blank screen warning + Show blank screen warning Automatically open the last service - Automatically open the last service + Automatically open the last service Show the splash screen - Show the splash screen + Show the splash screen Application Settings - Application Settings + Application Settings Prompt to save before starting a new service - + Prompt to save before starting a new service Automatically preview next item in service - + Automatically preview next item in service Slide loop delay: - + Slide loop delay: sec - + sec CCLI Details - CCLI Details + CCLI Details CCLI number: - + CCLI number: SongSelect username: - + SongSelect username: SongSelect password: - + SongSelect password: Display Position - + Display Position X - + X Y - + Y Height - + Height Width - + Width Override display position - + Override display position Screen - Screen + Screen primary - primary + primary OpenLP.LanguageManager - + Language - + Language - + Please restart OpenLP to use your new language setting. - + Please restart OpenLP to use your new language setting. OpenLP.MainWindow - - - New Service - New Service - - - - Open Service - Open Service - - - - Save Service - Save Service - OpenLP 2.0 - OpenLP 2.0 - - - - AddHereYourLanguageName - + OpenLP 2.0 &File - &File + &File &Import - &Import + &Import &Export - &Export + &Export &View - &View + &View M&ode - M&ode + M&ode &Tools - &Tools + &Tools &Settings - &Settings + &Settings &Language - &Language + &Language &Help - &Help + &Help Media Manager - Media Manager + Media Manager Service Manager - Service Manager + Service Manager Theme Manager - Theme Manager + Theme Manager &New - &New + &New + + + + New Service + New Service Create a new service. - + Create a new service. Ctrl+N - Ctrl+N + Ctrl+N &Open - &Open + &Open + + + + Open Service + Open Service Open an existing service. - + Open an existing service. Ctrl+O - Ctrl+O + Ctrl+O &Save - &Save + &Save + + + + Save Service + Save Service Save the current service to disk. - + Save the current service to disk. Ctrl+S - Ctrl+S + Ctrl+S Save &As... - Save &As... + Save &As... Save Service As - Save Service As + Save Service As Save the current service under a new name. - + Save the current service under a new name. Ctrl+Shift+S - + Ctrl+Shift+S E&xit - E&xit + E&xit Quit OpenLP - Quit OpenLP + Quit OpenLP Alt+F4 - Alt+F4 + Alt+F4 &Theme - &Theme + &Theme &Configure OpenLP... - + &Configure OpenLP... &Media Manager - &Media Manager + &Media Manager Toggle Media Manager - Toggle Media Manager + Toggle Media Manager Toggle the visibility of the media manager. - + Toggle the visibility of the media manager. F8 - F8 + F8 &Theme Manager - &Theme Manager + &Theme Manager Toggle Theme Manager - Toggle Theme Manager + Toggle Theme Manager Toggle the visibility of the theme manager. - + Toggle the visibility of the theme manager. F10 - F10 + F10 &Service Manager - &Service Manager + &Service Manager Toggle Service Manager - Toggle Service Manager + Toggle Service Manager Toggle the visibility of the service manager. - + Toggle the visibility of the service manager. F9 - F9 + F9 &Preview Panel - &Preview Panel + &Preview Panel Toggle Preview Panel - Toggle Preview Panel + Toggle Preview Panel Toggle the visibility of the preview panel. - + Toggle the visibility of the preview panel. F11 - F11 + F11 &Live Panel - + &Live Panel Toggle Live Panel - + Toggle Live Panel Toggle the visibility of the live panel. - + Toggle the visibility of the live panel. F12 - F12 + F12 &Plugin List - &Plugin List + &Plugin List List the Plugins - List the Plugins + List the Plugins Alt+F7 - Alt+F7 + Alt+F7 &User Guide - &User Guide + &User Guide &About - &About + &About More information about OpenLP - More information about OpenLP + More information about OpenLP Ctrl+F1 - Ctrl+F1 + Ctrl+F1 &Online Help - &Online Help + &Online Help &Web Site - &Web Site + &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 Add &Tool... - + Add &Tool... Add an application to the list of tools. - + Add an application to the list of tools. &Default - + &Default Set the view mode back to the default. - + Set the view mode back to the default. &Setup - + &Setup Set the view mode to Setup. - + Set the view mode to Setup. &Live - &Live + &Live Set the view mode to 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/. - + 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 Version Updated + OpenLP Version Updated - + OpenLP Main Display Blanked - OpenLP Main Display Blanked + OpenLP Main Display Blanked - + The Main Display has been blanked out - The Main Display has been blanked out + The Main Display has been blanked out - + Save Changes to Service? - Save Changes to Service? + Save Changes to Service? - + Your service has changed. Do you want to save those changes? - + Your service has changed. Do you want to save those changes? - + Default Theme: %s - + Default Theme: %s - + English - English + Please add the name of your language here + English (United Kingdom) OpenLP.MediaManagerItem - + No Items Selected - + No Items Selected - + + Import %s + Import %s + + + + Import a %s + Import a %s + + + + Load %s + Load %s + + + + Load a new %s + Load a new %s + + + + New %s + New %s + + + + Add a new %s + Add a new %s + + + + Edit %s + Edit %s + + + + Edit the selected %s + Edit the selected %s + + + + Delete %s + Delete %s + + + + Delete the selected item + Delete the selected item + + + + Preview %s + Preview %s + + + + Preview the selected item + Preview the selected item + + + + Send the selected item live + Send the selected item live + + + + Add %s to Service + Add %s to Service + + + + Add the selected item(s) to the service + Add the selected item(s) to the service + + + &Edit %s - + &Edit %s - + &Delete %s - + &Delete %s - + &Preview %s - + &Preview %s - + &Show Live - &Show Live + &Show Live - + &Add to Service - &Add to Service + &Add to Service - + &Add to selected Service Item - + &Add to selected Service Item - + You must select one or more items to preview. - + 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 to send live. - + You must select one or more items. - + You must select one or more items. - + No items selected - + No items selected - + You must select one or more items - You must select one or more items + You must select one or more items - + No Service Item Selected - + No Service Item Selected - + You must select an existing service item to add to. - + You must select an existing service item to add to. - + Invalid Service Item - + Invalid Service Item - + You must select a %s service item. - + You must select a %s service item. @@ -2491,52 +2426,52 @@ You can download the latest version from http://openlp.org/. Plugin List - Plugin List + Plugin List Plugin Details - Plugin Details + Plugin Details Version: - Version: + Version: About: - About: + About: Status: - Status: + Status: Active - Active + Active Inactive - Inactive + Inactive - + %s (Inactive) - + %s (Inactive) - + %s (Active) - + %s (Active) - + %s (Disabled) - + %s (Disabled) @@ -2544,22 +2479,22 @@ You can download the latest version from http://openlp.org/. Reorder Service Item - + Reorder Service Item Up - + Up Delete - Delete + Delete Down - + Down @@ -2567,178 +2502,184 @@ You can download the latest version from http://openlp.org/. New Service - New Service + New Service Create a new service - Create a new service + Create a new service - + Open Service - Open Service + Open Service Load an existing service - Load an existing service + Load an existing service - + Save Service - Save Service + Save Service Save this service - Save this service + Save this service Theme: - Theme: + Theme: Select a theme for the service - Select a theme for the service + Select a theme for the service Move to &top - + Move to &top Move item to the top of the service. - + Move item to the top of the service. Move &up - + Move &up Move item up one position in the service. - + Move item up one position in the service. Move &down - + Move &down Move item down one position in the service. - + Move item down one position in the service. Move to &bottom - + Move to &bottom Move item to the end of the service. - + Move item to the end of the service. &Delete From Service - + &Delete From Service Delete the selected item from the service. - + Delete the selected item from the service. &Add New Item - + &Add New Item &Add to Selected Item - + &Add to Selected Item &Edit Item - &Edit Item + &Edit Item &Reorder Item - + &Reorder Item &Notes - &Notes + &Notes &Preview Verse - &Preview Verse + &Preview Verse &Live Verse - &Live Verse + &Live Verse &Change Item Theme - &Change Item Theme + &Change Item Theme - + Save Changes to Service? - Save Changes to Service? + Save Changes to Service? - + Your service is unsaved, do you want to save those changes before creating a new one? - + Your service is unsaved, do you want to save those changes before creating a new one? - + OpenLP Service Files (*.osz) - + OpenLP Service Files (*.osz) - + Your current service is unsaved, do you want to save the changes before opening a new one? - + Your current service is unsaved, do you want to save the changes before opening a new one? - + Error - Error + Error - + 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 @@ -2746,7 +2687,7 @@ The content encoding is not UTF-8. Service Item Notes - Service Item Notes + Service Item Notes @@ -2754,7 +2695,7 @@ The content encoding is not UTF-8. Configure OpenLP - + Configure OpenLP @@ -2762,95 +2703,80 @@ The content encoding is not UTF-8. Live - Live + Live Preview - Preview + Preview Move to previous - Move to previous + Move to previous Move to next - Move to next + Move to next Hide - + Hide - - Blank Screen - Blank Screen - - - - Blank to Theme - - - - - Show Desktop - - - - + Move to live - Move to live + Move to live - - Edit and re-preview song - - - - + Start continuous loop - Start continuous loop + Start continuous loop - + Stop continuous loop - Stop continuous loop + Stop continuous loop - + s - s + s - + Delay between slides in seconds - Delay between slides in seconds + Delay between slides in seconds - + Start playing media - Start playing media + Start playing media - + Go To - + Go To + + + + Edit and reload song preview + Edit and reload song preview OpenLP.SpellTextEdit - + Spelling Suggestions - + Spelling Suggestions - + Formatting Tags - + Formatting Tags @@ -2858,178 +2784,179 @@ The content encoding is not UTF-8. New Theme - New Theme + New Theme Create a new theme. - + Create a new theme. Edit Theme - Edit Theme + Edit Theme Edit a theme. - + Edit a theme. Delete Theme - Delete Theme + Delete Theme Delete a theme. - + Delete a theme. Import Theme - Import Theme + Import Theme Import a theme. - + Import a theme. Export Theme - Export Theme + Export Theme Export a theme. - + Export a theme. &Edit Theme - + &Edit Theme &Delete Theme - + &Delete Theme Set As &Global Default - + Set As &Global Default E&xport Theme - + E&xport Theme %s (default) - + %s (default) You must select a theme to edit. - + You must select a theme to edit. You must select a theme to delete. - + You must select a theme to delete. Delete Confirmation - + Delete Confirmation Delete theme? - + Delete theme? Error - Error + Error You are unable to delete the default theme. - - - - - Theme %s is use in %s plugin. - - - - - Theme %s is use by the service manager. - + You are unable to delete the default theme. You have not selected a theme. - + You have not selected a theme. Save Theme - (%s) - Save Theme - (%s) + Save Theme - (%s) Theme Exported - + Theme Exported Your theme has been successfully exported. - + Your theme has been successfully exported. Theme Export Failed - + Theme Export Failed Your theme could not be exported due to an error. - + Your theme could not be exported due to an error. Select Theme Import File - Select Theme Import File + Select Theme Import File Theme (*.*) - + Theme (*.*) File is not a valid theme. The content encoding is not UTF-8. - + File is not a valid theme. +The content encoding is not UTF-8. File is not a valid theme. - + File is not a valid theme. Theme Exists - Theme Exists + Theme Exists A theme with this name already exists. Would you like to overwrite it? - + A theme with this name already exists. Would you like to overwrite it? + + + + Theme %s is used in the %s plugin. + Theme %s is used in the %s plugin. + + + + Theme %s is used by the service manager. + Theme %s is used by the service manager. @@ -3037,47 +2964,47 @@ The content encoding is not UTF-8. Themes - Themes + Themes Global Theme - + Global Theme Theme Level - + Theme Level S&ong 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. - 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. + 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 - + &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. - 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. + 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 - + &Global Level Use the global theme, overriding any themes associated with either the service or the songs. - Use the global theme, overriding any themes associated with either the service or the songs. + Use the global theme, overriding any themes associated with either the service or the songs. @@ -3085,110 +3012,55 @@ The content encoding is not UTF-8. <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. - - - - - Presentation - Presentation - - - - Presentations - Presentations - - - - Load - - - - - Load a new Presentation - - - - - Delete - Delete - - - - Delete the selected Presentation - - - - - Preview - Preview - - - - Preview the selected Presentation - - - - - Live - Live - - - - Send the selected Presentation live - - - - - Service - - - - - Add the selected Presentation to the service - + <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. PresentationPlugin.MediaItem - + + Presentation + Presentation + + + Select Presentation(s) - Select Presentation(s) + Select Presentation(s) - + Automatic - + Automatic - + Present using: - Present using: + Present using: - + File Exists - + File Exists - + A presentation with that filename already exists. - A presentation with that filename already exists. + A presentation with that filename already exists. - + Unsupported File - + Unsupported File - + This type of presentation is not supported. - + This type of presentation is not supported. - + You must select an item to delete. - + You must select an item to delete. @@ -3196,22 +3068,22 @@ The content encoding is not UTF-8. Presentations - Presentations + Presentations Available Controllers - Available Controllers + Available Controllers Advanced - Advanced + Advanced Allow presentation application to be overriden - + Allow presentation application to be overriden @@ -3219,17 +3091,7 @@ The content encoding is not UTF-8. <strong>Remote Plugin</strong><br />The remote plugin provides the ability to send messages to a running version of OpenLP on a different computer via a web browser or through the remote API. - - - - - Remote - - - - - Remotes - Remotes + <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. @@ -3237,22 +3099,22 @@ The content encoding is not UTF-8. Remotes - Remotes + Remotes Serve on IP address: - + Serve on IP address: Port number: - + Port number: Server Settings - + Server Settings @@ -3260,47 +3122,42 @@ The content encoding is not UTF-8. &Song Usage Tracking - + &Song Usage Tracking &Delete Tracking Data - + &Delete Tracking Data Delete song usage data up to a specified date. - + Delete song usage data up to a specified date. &Extract Tracking Data - + &Extract Tracking Data Generate a report on song usage. - + Generate a report on song usage. Toggle Tracking - + Toggle Tracking Toggle the tracking of song usage. - + Toggle the tracking of song usage. <strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services. - - - - - SongUsage - + <strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services. @@ -3308,17 +3165,17 @@ The content encoding is not UTF-8. Delete Song Usage Data - + Delete Song Usage Data Delete Selected Song Usage Events? - + Delete Selected Song Usage Events? Are you sure you want to delete selected Song Usage data? - + Are you sure you want to delete selected Song Usage data? @@ -3326,27 +3183,27 @@ The content encoding is not UTF-8. Song Usage Extraction - + Song Usage Extraction Select Date Range - + Select Date Range to - to + to Report Location - Report Location + Report Location Output File Location - Output File Location + Output File Location @@ -3359,82 +3216,12 @@ The content encoding is not UTF-8. 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. - - - - - Song - Song - - - - Songs - Songs - - - - Add - Add - - - - Add a new Song - - - - - Edit - Edit - - - - Edit the selected Song - - - - - Delete - Delete - - - - Delete the selected Song - - - - - Preview - Preview - - - - Preview the selected Song - - - - - Live - Live - - - - Send the selected Song live - - - - - Service - - - - - Add the selected Song to the service - + <strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs. @@ -3442,42 +3229,42 @@ The content encoding is not UTF-8. Author Maintenance - Author Maintenance + Author Maintenance Display name: - Display name: + Display name: First name: - First name: + First name: Last name: - Last name: + Last name: Error - Error + Error You need to type in the first name of the author. - You need to type in the first name of the author. + You need to type in the first name of the author. You need to type in the last name of the author. - You need to type in the last 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, would you like me to combine the first and last names for you? - + You have not set a display name for the author, combine the first and last names? + You have not set a display name for the author, combine the first and last names? @@ -3485,242 +3272,242 @@ The content encoding is not UTF-8. Song Editor - Song Editor + Song Editor &Title: - + &Title: Alt&ernate title: - + Alt&ernate title: &Lyrics: - + &Lyrics: &Verse order: - + &Verse order: &Add - + &Add &Edit - &Edit + &Edit Ed&it All - + Ed&it All &Delete - + &Delete Title && Lyrics - Title && Lyrics + Title && Lyrics Authors - Authors + Authors &Add to Song - &Add to Song + &Add to Song &Remove - &Remove + &Remove &Manage Authors, Topics, Song Books - + &Manage Authors, Topics, Song Books Topic - Topic + Topic A&dd to Song - A&dd to Song + A&dd to Song R&emove - R&emove + R&emove Song Book - Song Book + Song Book Book: - Book: + Book: Number: - + Number: Authors, Topics && Song Book - + Authors, Topics && Song Book Theme - Theme + Theme New &Theme - + New &Theme Copyright Information - Copyright Information + Copyright Information - © - + © + © CCLI number: - + CCLI number: Comments - Comments + Comments Theme, Copyright Info && Comments - Theme, Copyright Info && Comments + Theme, Copyright Info && Comments Save && Preview - Save && Preview + Save && Preview Add Author - + Add Author This author does not exist, do you want to add them? - + This author does not exist, do you want to add them? Error - Error + Error This author is already in the list. - + This author is already in the list. No Author Selected - + No Author Selected 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. - + 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 - + Add Topic This topic does not exist, do you want to add it? - + This topic does not exist, do you want to add it? This topic is already in the list. - + This topic is already in the list. No Topic Selected - + No Topic Selected 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 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 a song title. You need to type in at least one verse. - + You need to type in at least one verse. Warning - + Warning You have not added any authors for this song. Do you want to add an author now? - + You have not added any authors for this song. Do you want to add an author now? The verse order is invalid. There is no verse corresponding to %s. Valid entries are %s. - + 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? - + You have not used %s anywhere in the verse order. Are you sure you want to save the song like this? Add Book - + Add Book This song book does not exist, do you want to add it? - + This song book does not exist, do you want to add it? @@ -3728,343 +3515,378 @@ The content encoding is not UTF-8. Edit Verse - Edit Verse + Edit Verse &Verse type: - + &Verse type: &Insert - + &Insert SongsPlugin.ImportWizardForm - + No OpenLP 2.0 Song Database Selected - + No OpenLP 2.0 Song Database Selected - + You need to select an OpenLP 2.0 song database file to import from. - + You need to select an OpenLP 2.0 song database file to import from. - + No openlp.org 1.x Song Database Selected - + No openlp.org 1.x Song Database Selected - + You need to select an openlp.org 1.x song database file to import from. - + You need to select an openlp.org 1.x song database file to import from. - - No OpenLyrics Files Selected - - - - - You need to add at least one OpenLyrics song file to import from. - - - - + No OpenSong Files Selected - + No OpenSong Files Selected - + You need to add at least one OpenSong song file to import from. - + You need to add at least one OpenSong song file to import from. - + No Words of Worship Files Selected - + No Words of Worship Files Selected - + You need to add at least one Words of Worship file to import from. - + You need to add at least one Words of Worship file to import from. - + No CCLI Files Selected - + No CCLI Files Selected - + You need to add at least one CCLI file to import from. - + You need to add at least one CCLI file to import from. - + No Songs of Fellowship File Selected - + No Songs of Fellowship File Selected - + You need to add at least one Songs of Fellowship file to import from. - + You need to add at least one Songs of Fellowship file to import from. - + No Document/Presentation Selected - + No Document/Presentation Selected - + You need to add at least one document or presentation file to import from. - + You need to add at least one document or presentation file to import from. - + Select OpenLP 2.0 Database File - + Select OpenLP 2.0 Database File - + Select openlp.org 1.x Database File - + Select openlp.org 1.x Database File - - Select OpenLyrics Files - - - - + Select Open Song Files - + Select Open Song Files - + Select Words of Worship Files - + Select Words of Worship Files - + Select CCLI Files - + Select CCLI Files - + Select Songs of Fellowship Files - + Select Songs of Fellowship Files - + Select Document/Presentation Files - + Select Document/Presentation Files - + Starting import... - Starting import... + Starting import... - + Song Import Wizard - + Song Import Wizard - + Welcome to the Song Import Wizard - + Welcome to the 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. - + 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. - + Select Import Source - Select Import Source + Select Import Source - + Select the import format, and where to import from. - Select the import format, and where to import from. + Select the import format, and where to import from. - + Format: - Format: + Format: - + OpenLP 2.0 - OpenLP 2.0 + OpenLP 2.0 - + openlp.org 1.x - + openlp.org 1.x - + OpenLyrics - + OpenLyrics - + OpenSong - OpenSong + OpenSong - + Words of Worship - + Words of Worship - + CCLI/SongSelect - + CCLI/SongSelect - + Songs of Fellowship - + Songs of Fellowship - + Generic Document/Presentation - + Generic Document/Presentation - + Filename: - + Filename: - + Browse... - + Browse... - + + 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. + 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. + + + Add Files... - + Add Files... - + Remove File(s) - + Remove File(s) - + + The Songs of Fellowship importer has been disabled because OpenLP cannot find OpenOffice.org on your computer. + 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. + The generic document/presentation importer has been disabled because OpenLP cannot find OpenOffice.org on your computer. + + + Importing - Importing + Importing - + Please wait while your songs are imported. - + Please wait while your songs are imported. - + Ready. - Ready. + Ready. - + %p% - + %p% - + Importing "%s"... - + Importing "%s"... - + Importing %s... - + Importing %s... + + + + No EasyWorship Song Database Selected + No EasyWorship Song Database Selected + + + + You need to select an EasyWorship song database file to import from. + You need to select an EasyWorship song database file to import from. + + + + Select EasyWorship Database File + Select EasyWorship Database File + + + + EasyWorship + EasyWorship + + + + 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. + 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. + + + + Administered by %s + Administered by %s SongsPlugin.MediaItem - + + Song + Song + + + Song Maintenance - Song Maintenance + Song Maintenance - + Maintain the lists of authors, topics and books - Maintain the lists of authors, topics and books - - - - Search: - Search: + Maintain the lists of authors, topics and books - Type: - Type: + Search: + Search: - Clear - Clear + Type: + Type: - Search - Search + Clear + Clear - - Titles - + + Search + Search - Lyrics - Lyrics + Titles + Titles + Lyrics + Lyrics + + + Authors - Authors + Authors - + You must select an item to edit. - + You must select an item to edit. - + You must select an item to delete. - + You must select an item to delete. - + Are you sure you want to delete the selected song? - + Are you sure you want to delete the selected song? - + Are you sure you want to delete the %d selected songs? - + Are you sure you want to delete the %d selected songs? - + Delete Song(s)? - + Delete Song(s)? - + CCLI Licence: - CCLI Licence: + CCLI Licence: @@ -4072,53 +3894,53 @@ The content encoding is not UTF-8. Song Book Maintenance - + Song Book Maintenance &Name: - + &Name: &Publisher: - + &Publisher: Error - Error + Error You need to type in a name for the book. - + You need to type in a name for the book. SongsPlugin.SongImport - + copyright - + copyright - - © - + + © + © SongsPlugin.SongImportForm - + Finished import. - Finished import. + Finished import. - + Your song import failed. - + Your song import failed. @@ -4126,147 +3948,147 @@ The content encoding is not UTF-8. Song Maintenance - Song Maintenance + Song Maintenance Authors - Authors + Authors Topics - Topics + Topics Song Books - + Song Books &Add - + &Add &Edit - &Edit + &Edit &Delete - + &Delete Error - Error + Error Could not add your author. - + Could not add your author. This author already exists. - + This author already exists. Could not add your topic. - + Could not add your topic. This topic already exists. - + This topic already exists. Could not add your book. - + Could not add your book. This book already exists. - + This book already exists. Could not save your changes. - - - - - Could not save your modified author, because he already exists. - + Could not save your changes. Could not save your modified topic, because it already exists. - + Could not save your modified topic, because it already exists. Delete Author - Delete Author + Delete Author Are you sure you want to delete the selected 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. - + This author cannot be deleted, they are currently assigned to at least one song. No author selected! - + No author selected Delete Topic - Delete Topic + Delete Topic Are you sure you want to delete the selected topic? - Are you sure you want to delete the selected 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. - + This topic cannot be deleted, it is currently assigned to at least one song. No topic selected! - No topic selected! + No topic selected Delete Book - Delete Book + Delete Book Are you sure you want to delete the selected book? - Are you sure you want to delete the selected 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. - + This book cannot be deleted, it is currently assigned to at least one song. No book selected! - + No book selected + + + + Could not save your modified author, because the author already exists. + Could not save your modified author, because the author already exists. @@ -4274,22 +4096,22 @@ The content encoding is not UTF-8. Songs - Songs + Songs Songs Mode - Songs Mode + Songs Mode Enable search as you type - + Enable search as you type Display verses on live tool bar - + Display verses on live tool bar @@ -4297,22 +4119,22 @@ The content encoding is not UTF-8. Topic Maintenance - Topic Maintenance + Topic Maintenance Topic name: - Topic name: + Topic name: Error - Error + Error - You need to type in a topic name! - + You need to type in a topic name. + You need to type in a topic name. @@ -4320,37 +4142,37 @@ The content encoding is not UTF-8. Verse - Verse + Verse Chorus - Chorus + Chorus Bridge - Bridge + Bridge Pre-Chorus - Pre-Chorus + Pre-Chorus Intro - Intro + Intro Ending - Ending + Ending Other - Other + Other diff --git a/resources/i18n/en_ZA.ts b/resources/i18n/en_ZA.ts index b546f1bce..8be87da0e 100644 --- a/resources/i18n/en_ZA.ts +++ b/resources/i18n/en_ZA.ts @@ -1,5 +1,6 @@ - + + AlertsPlugin @@ -17,16 +18,6 @@ <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of nursery alerts on the display screen <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of nursery alerts on the display screen - - - Alert - - - - - Alerts - Alerts - AlertsPlugin.AlertForm @@ -172,6 +163,19 @@ Bottom + + BiblePlugin.MediaItem + + + Error + Error + + + + You cannot combine single and dual bible verses. Do you want to delete your search results and start a new search? + You cannot combine single and dual bible verses. Do you want to delete your search results and start a new search? + + BiblesPlugin @@ -184,86 +188,6 @@ <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display bible verses from different sources during the service. <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display bible verses from different sources during the service. - - - Bible - Bible - - - - Bibles - Bibles - - - - Import - - - - - Import a Bible - - - - - Add - - - - - Add a new Bible - - - - - Edit - Edit - - - - Edit the selected Bible - - - - - Delete - Delete - - - - Delete the selected Bible - - - - - Preview - Preview - - - - Preview the selected Bible - - - - - Live - Live - - - - Send the selected Bible live - - - - - Service - - - - - Add the selected Bible to the service - - BiblesPlugin.BibleDB @@ -287,7 +211,7 @@ - Your scripture reference is either not supported by OpenLP or invalid. Please make sure your reference conforms to one of the following patterns: + 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 @@ -296,7 +220,7 @@ Book Chapter:Verse-Verse,Verse-Verse Book Chapter:Verse-Verse,Chapter:Verse-Verse Book Chapter:Verse-Chapter:Verse - Your scripture reference is either not supported by OpenLP or invalid. Please make sure your reference conforms to one of the following patterns: + 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 @@ -595,42 +519,32 @@ Changes do not affect verses already in the service. You need to specify a version name for your Bible. - + Empty Copyright Empty Copyright - - You need to set a copyright for your Bible! Bibles in the Public Domain need to be marked as such. - You need to set a copyright for your Bible! Bibles in the Public Domain need to be marked as such. - - - + Bible Exists Bible Exists - - This Bible already exists! Please import a different Bible or first delete the existing one. - This Bible already exists! Please import a different Bible or first delete the existing one. - - - + Open OSIS File Open OSIS File - + Open Books CSV File Open Books CSV File - + Open Verses CSV File Open Verses CSV File - + Open OpenSong Bible Open OpenSong Bible @@ -640,120 +554,130 @@ Changes do not affect verses already in the service. Starting import... - + Finished import. Finished import. - + Your Bible import failed. Your Bible import failed. + + + You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. + You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. + + + + This Bible already exists. Please import a different Bible or first delete the existing one. + This Bible already exists. Please import a different Bible or first delete the existing one. + BiblesPlugin.MediaItem - + + Bible + Bible + + + Quick Quick - + Advanced Advanced - + Version: Version: - + Dual: Dual: - + Search type: Search type: - + Find: Find: - + Search Search - + Results: Results: - + Book: Book: - + Chapter: Chapter: - + Verse: Verse: - + From: From: - + To: To: - + Verse Search Verse Search - + Text Search Text Search - + Clear Clear - + Keep Keep - + No Book Found No Book Found - + No matching book could be found in this Bible. No matching book could be found in this Bible. - - etc - etc - - - + Bible not fully loaded. Bible not fully loaded. @@ -770,8 +694,8 @@ Changes do not affect verses already in the service. 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 Customs are. This plugin provides greater freedom over the Customs plugin. - + <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. + <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. @@ -923,241 +847,78 @@ Changes do not affect verses already in the service. CustomPlugin.MediaItem - + + Custom + Custom + + + You haven't selected an item to edit. You haven't selected an item to edit. - + You haven't selected an item to delete. You haven't selected an item to delete. - - CustomsPlugin - - - Custom - Custom - - - - Customs - - - - - Import - - - - - Import a Custom - - - - - Load - - - - - Load a new Custom - - - - - Add - - - - - Add a new Custom - - - - - Edit - Edit - - - - Edit the selected Custom - - - - - Delete - Delete - - - - Delete the selected Custom - - - - - Preview - Preview - - - - Preview the selected Custom - - - - - Live - Live - - - - Send the selected Custom live - - - - - Service - - - - - Add the selected Custom to the service - - - 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 Images with the selected image as a background instead of the background provided by the theme. - - - - - Image - Image - - - - Images - - - - - Load - - - - - Load a new Image - - - - - Add - - - - - Add a new Image - - - - - Edit - Edit - - - - Edit the selected Image - - - - - Delete - Delete - - - - Delete the selected Image - - - - - Preview - Preview - - - - Preview the selected Image - - - - - Live - Live - - - - Send the selected Image live - - - - - Service - - - - - Add the selected Image to the service - + <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. ImagePlugin.MediaItem - + + Image + Image + + + Select Image(s) Select Image(s) - + All Files All Files - + Replace Live Background Replace Live Background - + Replace Background Replace Background - + You must select an image to delete. You must select an image to delete. - + Image(s) Image(s) - + You must select an image to replace the background with. You must select an image to replace the background with. - + You must select a media file to replace the background with. You must select a media file to replace the background with. - + Reset Live Background Reset Live Background @@ -1169,111 +930,31 @@ Changes do not affect verses already in the service. <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. - - - Media - Media - - - - Medias - - - - - Load - - - - - Load a new Media - - - - - Add - - - - - Add a new Media - - - - - Edit - Edit - - - - Edit the selected Media - - - - - Delete - Delete - - - - Delete the selected Media - - - - - Preview - Preview - - - - Preview the selected Media - - - - - Live - Live - - - - Send the selected Media live - - - - - Service - - - - - Add the selected Media to the service - - MediaPlugin.MediaItem - + Media Media - + Select Media Select Media - + Replace Live Background Replace Live Background - + Replace Background Replace Background - + You must select a media file to delete. You must select a media file to delete. @@ -1281,7 +962,7 @@ Changes do not affect verses already in the service. OpenLP - + Image Files Image Files @@ -1421,8 +1102,8 @@ Built With - Copyright © 2004-2010 Raoul Snyman -Portions copyright © 2004-2010 Tim Bentley, Jonathan Corwin, Michael Gorven, Scott Guerrieri, Christian Richter, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Carsten Tinggaard + Copyright © 2004-2010 Raoul Snyman +Portions copyright © 2004-2010 Tim Bentley, Jonathan Corwin, Michael Gorven, Scott Guerrieri, Christian Richter, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Carsten Tinggaard 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. @@ -2013,15 +1694,15 @@ This General Public License does not permit incorporating your program into prop OpenLP.ExceptionDialog - - - Error Occured - - 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. - + 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. + + + + Error Occurred + Error Occurred @@ -2155,12 +1836,12 @@ This General Public License does not permit incorporating your program into prop OpenLP.LanguageManager - + Language Language - + Please restart OpenLP to use your new language setting. Please restart OpenLP to use your new language setting. @@ -2172,11 +1853,6 @@ This General Public License does not permit incorporating your program into prop OpenLP 2.0 OpenLP 2.0 - - - English - English - &File @@ -2390,7 +2066,7 @@ This General Public License does not permit incorporating your program into prop Toggle Service Manager - Toggle Service Manager. + Toggle Service Manager @@ -2548,27 +2224,27 @@ This General Public License does not permit incorporating your program into prop 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 - + Save Changes to Service? Save Changes to Service? - + Your service has changed. Do you want to save those changes? Your service has changed. Do you want to save those changes? - + Default Theme: %s Default Theme: %s @@ -2582,90 +2258,166 @@ You can download the latest version from http://openlp.org/. You can download the latest version from http://openlp.org/. - - AddHereYourLanguageName - + + English + Please add the name of your language here + English (South Africa) OpenLP.MediaManagerItem - + No Items Selected No Items Selected - + + Import %s + Import %s + + + + Import a %s + Import a %s + + + + Load %s + Load %s + + + + Load a new %s + Load a new %s + + + + New %s + New %s + + + + Add a new %s + Add a new %s + + + + Edit %s + Edit %s + + + + Edit the selected %s + Edit the selected %s + + + + Delete %s + Delete %s + + + + Delete the selected item + Delete the selected item + + + + Preview %s + Preview %s + + + + Preview the selected item + Preview the selected item + + + + Send the selected item live + Send the selected item live + + + + Add %s to Service + Add %s to Service + + + + Add the selected item(s) to the service + Add the selected item(s) to the service + + + &Edit %s &Edit %s - + &Delete %s &Delete %s - + &Preview %s &Preview %s - + &Show Live &Show Live - + &Add to Service &Add to Service - + &Add to selected Service Item &Add to selected Service Item - + You must select one or more items to preview. 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 to send live. - + You must select one or more items. You must select one or more items. - + No items selected No items selected - + You must select one or more items You must select one or more items - + No Service Item Selected No Service Item Selected - + You must select an existing service item to add to. You must select an existing service item to add to. - + Invalid Service Item Invalid Service Item - + You must select a %s service item. You must select a %s service item. @@ -2708,17 +2460,17 @@ You can download the latest version from http://openlp.org/. Inactive - + %s (Inactive) %s (Inactive) - + %s (Active) %s (Active) - + %s (Disabled) %s (Disabled) @@ -2759,7 +2511,7 @@ You can download the latest version from http://openlp.org/. Create a new service - + Open Service Open Service @@ -2769,7 +2521,7 @@ You can download the latest version from http://openlp.org/. Load an existing service - + Save Service Save Service @@ -2879,52 +2631,57 @@ You can download the latest version from http://openlp.org/. &Change Item Theme - + Save Changes to Service? Save Changes to Service? - + Your service is unsaved, do you want to save those changes before creating a new one? Your service is unsaved, do you want to save those changes before creating a new one? - + OpenLP Service Files (*.osz) OpenLP Service Files (*.osz) - + Your current service is unsaved, do you want to save the changes before opening a new one? Your current service is unsaved, do you want to save the changes before opening a new one? - + Error Error - + 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 + OpenLP.ServiceNoteForm @@ -2970,70 +2727,55 @@ The content encoding is not UTF-8. Hide - + Move to live Move to live - + Start continuous loop Start continuous loop - + Stop continuous loop Stop continuous loop - + s s - + Delay between slides in seconds Delay between slides in seconds - + Start playing media Start playing media - - Edit and re-preview song - Edit and re-preview song - - - + Go To Go To - - Blank Screen - - - - - Blank to Theme - - - - - Show Desktop - + + Edit and reload song preview + Edit and reload song preview OpenLP.SpellTextEdit - + Spelling Suggestions Spelling Suggestions - + Formatting Tags Formatting Tags @@ -3145,16 +2887,6 @@ The content encoding is not UTF-8. You are unable to delete the default theme. You are unable to delete the default theme. - - - Theme %s is use in %s plugin. - Theme %s is use in %s plugin. - - - - Theme %s is use by the service manager. - Theme %s is use by the service manager. - You have not selected a theme. @@ -3217,6 +2949,16 @@ The content encoding is not UTF-8. A theme with this name already exists. Would you like to overwrite it? A theme with this name already exists. Would you like to overwrite it? + + + Theme %s is used in the %s plugin. + Theme %s is used in the %s plugin. + + + + Theme %s is used by the service manager. + Theme %s is used by the service manager. + OpenLP.ThemesTab @@ -3273,108 +3015,53 @@ The content encoding is not UTF-8. <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. - - - Presentation - Presentation - - - - Presentations - Presentations - - - - Load - - - - - Load a new Presentation - - - - - Delete - Delete - - - - Delete the selected Presentation - - - - - Preview - Preview - - - - Preview the selected Presentation - - - - - Live - Live - - - - Send the selected Presentation live - - - - - Service - - - - - Add the selected Presentation to the service - - PresentationPlugin.MediaItem - + + Presentation + Presentation + + + Select Presentation(s) Select Presentation(s) - + Automatic Automatic - + Present using: Present using: - + File Exists File Exists - + A presentation with that filename already exists. A presentation with that filename already exists. - + Unsupported File Unsupported File - + You must select an item to delete. You must select an item to delete. - + This type of presentation is not supported. - + This type of presentation is not supported. @@ -3407,16 +3094,6 @@ The content encoding is not UTF-8. <strong>Remote Plugin</strong><br />The remote plugin provides the ability to send messages to a running version of OpenLP on a different computer via a web browser or through the remote API. <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 - - - - - Remotes - Remotes - RemotePlugin.RemoteTab @@ -3483,11 +3160,6 @@ The content encoding is not UTF-8. <strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services. <strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services. - - - SongUsage - - SongUsagePlugin.SongUsageDeleteForm @@ -3552,76 +3224,6 @@ The content encoding is not UTF-8. <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. - - - Song - Song - - - - Songs - - - - - Add - - - - - Add a new Song - - - - - Edit - Edit - - - - Edit the selected Song - - - - - Delete - Delete - - - - Delete the selected Song - - - - - Preview - Preview - - - - Preview the selected Song - - - - - Live - Live - - - - Send the selected Song live - - - - - Service - - - - - Add the selected Song to the service - - SongsPlugin.AuthorsForm @@ -3662,8 +3264,8 @@ The content encoding is not UTF-8. - You have not set a display name for the author, would you like me to combine the first and last names for you? - You have not set a display name for the author, would you like me to combine the first and last names for you? + You have not set a display name for the author, combine the first and last names? + You have not set a display name for the author, combine the first and last names? @@ -3770,7 +3372,7 @@ The content encoding is not UTF-8. - © + © © @@ -3901,12 +3503,12 @@ The content encoding is not UTF-8. Book: - Book: + Book: Number: - + Number: @@ -3914,343 +3516,378 @@ The content encoding is not UTF-8. Edit Verse - Edit Verse + Edit Verse &Verse type: - + &Verse type: &Insert - + &Insert SongsPlugin.ImportWizardForm - - No OpenLyrics Files Selected - - - - - You need to add at least one OpenLyrics song file to import from. - - - - + No OpenSong Files Selected - + No OpenSong Files Selected - + You need to add at least one OpenSong song file to import from. - + You need to add at least one OpenSong song file to import from. - + No CCLI Files Selected - + No CCLI Files Selected - + You need to add at least one CCLI file to import from. - + You need to add at least one CCLI file to import from. - + Starting import... - Starting import... + Starting import... - + Song Import Wizard - + Song Import Wizard - + Welcome to the Song Import Wizard - + Welcome to the 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. - + 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. - + Select Import Source - Select Import Source + Select Import Source - + Select the import format, and where to import from. - Select the import format, and where to import from. + Select the import format, and where to import from. - + Format: - Format: + Format: - + OpenLyrics - + OpenLyrics - + OpenSong - OpenSong + OpenSong - + Add Files... - + Add Files... - + Remove File(s) - + Remove File(s) - + Filename: - + Filename: - + Browse... - + Browse... - + Importing - Importing + Importing - + Please wait while your songs are imported. - + Please wait while your songs are imported. - + Ready. - Ready. + Ready. - + %p% - + %p% - + No OpenLP 2.0 Song Database Selected - + No OpenLP 2.0 Song Database Selected - + You need to select an OpenLP 2.0 song database file to import from. - + You need to select an OpenLP 2.0 song database file to import from. - + No openlp.org 1.x Song Database Selected - + No openlp.org 1.x Song Database Selected - + You need to select an openlp.org 1.x song database file to import from. - + You need to select an openlp.org 1.x song database file to import from. - + No Words of Worship Files Selected - + No Words of Worship Files Selected - + You need to add at least one Words of Worship file to import from. - + You need to add at least one Words of Worship file to import from. - + No Songs of Fellowship File Selected - + No Songs of Fellowship File Selected - + You need to add at least one Songs of Fellowship file to import from. - + You need to add at least one Songs of Fellowship file to import from. - + No Document/Presentation Selected - + No Document/Presentation Selected - + You need to add at least one document or presentation file to import from. - + You need to add at least one document or presentation file to import from. - + Select OpenLP 2.0 Database File - + Select OpenLP 2.0 Database File - + Select openlp.org 1.x Database File - + Select openlp.org 1.x Database File - - Select OpenLyrics Files - - - - + Select Open Song Files - + Select Open Song Files - + Select Words of Worship Files - + Select Words of Worship Files - + Select Songs of Fellowship Files - + Select Songs of Fellowship Files - + Select Document/Presentation Files - + Select Document/Presentation Files - + OpenLP 2.0 - OpenLP 2.0 + OpenLP 2.0 - + openlp.org 1.x - + openlp.org 1.x - + Words of Worship - + Words of Worship - + CCLI/SongSelect - + CCLI/SongSelect - + Songs of Fellowship - + Songs of Fellowship - + Generic Document/Presentation - + Generic Document/Presentation - + Select CCLI Files - + Select CCLI Files - + + 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. + 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. + + + + The Songs of Fellowship importer has been disabled because OpenLP cannot find OpenOffice.org on your computer. + 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. + The generic document/presentation importer has been disabled because OpenLP cannot find OpenOffice.org on your computer. + + + Importing "%s"... - + Importing "%s"... - + Importing %s... - + Importing %s... + + + + 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. + 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. + + + + No EasyWorship Song Database Selected + No EasyWorship Song Database Selected + + + + You need to select an EasyWorship song database file to import from. + You need to select an EasyWorship song database file to import from. + + + + Select EasyWorship Database File + Select EasyWorship Database File + + + + EasyWorship + EasyWorship + + + + Administered by %s + Administered by %s SongsPlugin.MediaItem - + + Song + Song + + + Song Maintenance - + Song Maintenance - + Maintain the lists of authors, topics and books - Maintain the lists of authors, topics and books - - - - Search: - Search: + Maintain the lists of authors, topics and books - Type: - Type: + Search: + Search: - Clear - Clear + Type: + Type: - Search - Search + Clear + Clear - - Titles - Titles + + Search + Search - Lyrics - Lyrics + Titles + Titles + Lyrics + Lyrics + + + Authors - Authors + Authors - + You must select an item to edit. - + You must select an item to edit. - + You must select an item to delete. - You must select an item to delete. + You must select an item to delete. - + CCLI Licence: - CCLI License: + CCLI License: - + Are you sure you want to delete the selected song? - + Are you sure you want to delete the selected song? - + Are you sure you want to delete the %d selected songs? - + Are you sure you want to delete the %d selected songs? - + Delete Song(s)? - + Delete Song(s)? @@ -4258,53 +3895,53 @@ The content encoding is not UTF-8. Song Book Maintenance - + Song Book Maintenance &Name: - + &Name: &Publisher: - + &Publisher: Error - Error + Error You need to type in a name for the book. - + You need to type in a name for the book. SongsPlugin.SongImport - + copyright - + copyright - - © - © + + © + © SongsPlugin.SongImportForm - + Finished import. - Finished import. + Finished import. - + Your song import failed. - + Your song import failed. @@ -4312,147 +3949,147 @@ The content encoding is not UTF-8. Song Maintenance - + Song Maintenance Authors - Authors + Authors Topics - + Topics Song Books - + Song Books &Add - &Add + &Add &Edit - &Edit + &Edit &Delete - &Delete + &Delete Error - Error + Error Could not add your author. - + Could not add your author. This author already exists. - + This author already exists. Could not add your topic. - + Could not add your topic. This topic already exists. - + This topic already exists. Could not add your book. - + Could not add your book. This book already exists. - + This book already exists. Could not save your changes. - - - - - Could not save your modified author, because he already exists. - + Could not save your changes. Could not save your modified topic, because it already exists. - + Could not save your modified topic, because it already exists. Delete Author - + Delete Author Are you sure you want to delete the selected author? - Are you sure you want to delete the selected 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. - + This author cannot be deleted, they are currently assigned to at least one song. No author selected! - No author selected! + No author selected! Delete Topic - Delete Topic + Delete Topic Are you sure you want to delete the selected 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. - + This topic cannot be deleted, it is currently assigned to at least one song. No topic selected! - + No topic selected! Delete Book - Delete Book + Delete Book Are you sure you want to delete the selected book? - Are you sure you want to delete the selected 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. - + This book cannot be deleted, it is currently assigned to at least one song. No book selected! - No book selected! + No book selected! + + + + Could not save your modified author, because the author already exists. + Could not save your modified author, because the author already exists. @@ -4460,22 +4097,22 @@ The content encoding is not UTF-8. Songs - + Songs Songs Mode - + Songs Mode Enable search as you type - + Enable search as you type Display verses on live tool bar - + Display verses on live tool bar @@ -4483,22 +4120,22 @@ The content encoding is not UTF-8. Topic Maintenance - + Topic Maintenance Topic name: - Topic name: + Topic name: Error - Error + Error - You need to type in a topic name! - You need to type in a topic name! + You need to type in a topic name. + You need to type in a topic name. @@ -4506,37 +4143,37 @@ The content encoding is not UTF-8. Verse - + Verse Chorus - + Chorus Bridge - Bridge + Bridge Pre-Chorus - Pre-Chorus + Pre-Chorus Intro - Intro + Intro Ending - Ending + Ending Other - Other + Other diff --git a/resources/i18n/es.ts b/resources/i18n/es.ts index eba4f91cc..38f2c691f 100644 --- a/resources/i18n/es.ts +++ b/resources/i18n/es.ts @@ -10,22 +10,12 @@ Show an alert message. - + Mostrar mensaje de alerta <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of nursery alerts on the display screen - - - - - Alert - - - - - Alerts - Alertas + <strong>Alerts Plugin</strong><br />El plugin de alertas controla la visualización de mensajes de guardería @@ -38,12 +28,12 @@ Alert &text: - + &Texto de Alerta: &Parameter(s): - + &Parámetro(s): @@ -58,32 +48,32 @@ &Delete - + &Eliminar Displ&ay - + Mostr&ar Display && Cl&ose - + M&ostrar && Cerrar &Close - + &Cerrar New Alert - + Alerta Nueva You haven't specified any text for your alert. Please type in some text before clicking New. - + No ha especificado ningún texto de alerta. Por favor, escriba algún texto antes de hacer clic en Nueva. @@ -91,7 +81,7 @@ Alert message created and displayed. - + Mensaje creado y mostrado. @@ -109,22 +99,22 @@ Font name: - + Nombre: Font color: - + Color: Background color: - + Color de Fondo: Font size: - + Tamaño: @@ -159,7 +149,7 @@ Top - + Superior @@ -169,6 +159,19 @@ Bottom + Inferior + + + + BiblePlugin.MediaItem + + + Error + + + + + You cannot combine single and dual bible verses. Do you want to delete your search results and start a new search? @@ -182,87 +185,7 @@ <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display bible verses from different sources during the service. - - - - - Bible - Biblia - - - - Bibles - Biblias - - - - Import - Importar - - - - Import a Bible - - - - - Add - Agregar - - - - Add a new Bible - - - - - Edit - Editar - - - - Edit the selected Bible - - - - - Delete - Eliminar - - - - Delete the selected Bible - - - - - Preview - Vista Previa - - - - Preview the selected Bible - - - - - Live - En vivo - - - - Send the selected Bible live - - - - - Service - - - - - Add the selected Bible to the service - + <strong>Bible Plugin</strong><br />El plugin de Biblia proporciona la capacidad de mostrar versículos de la Biblia de fuentes diferentes durante el servicio.. @@ -270,12 +193,12 @@ Book not found - + Libro no localizado The book you requested could not be found in this bible. Please check your spelling and that this is a complete bible not just one testament. - + El libro solicitado no se encuentra en esta Biblia. Por favor compruebe la ortografía y que este buscando en una edición completa de La Biblia. @@ -283,11 +206,11 @@ Scripture Reference Error - + Error de Referencia Bíblica - Your scripture reference is either not supported by OpenLP or invalid. Please make sure your reference conforms to one of the following patterns: + 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 @@ -586,42 +509,32 @@ Changes do not affect verses already in the service. - + Empty Copyright Derechos de autor en blanco - - You need to set a copyright for your Bible! Bibles in the Public Domain need to be marked as such. - ¡Tiene que establecer los derechos de autor de la Biblia! Biblias de Dominio Público deben ser marcados como tales. - - - + Bible Exists Ya existe la Biblia - - This Bible already exists! Please import a different Bible or first delete the existing one. - ¡La Biblia ya existe! Por favor, importe una diferente o borre la anterior. - - - + Open OSIS File - + Open Books CSV File - + Open Verses CSV File - + Open OpenSong Bible Abrir Biblia OpenSong @@ -631,120 +544,130 @@ Changes do not affect verses already in the service. Iniciando importación... - + Finished import. Importación finalizada. - + Your Bible import failed. La importación de su Biblia falló. + + + You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. + + + + + This Bible already exists. Please import a different Bible or first delete the existing one. + + BiblesPlugin.MediaItem - + + Bible + Biblia + + + Quick Rápida - + Advanced Avanzado - + Version: Versión: - + Dual: Paralela: - + Search type: - + Find: Encontrar: - + Search Buscar - + Results: Resultados: - + Book: Libro: - + Chapter: Capítulo: - + Verse: Versículo: - + From: Desde: - + To: Hasta: - + Verse Search Búsqueda de versículo - + Text Search Búsqueda de texto - + Clear Limpiar - + Keep Conservar - + No Book Found No se encontró el libro - + No matching book could be found in this Bible. No se encuentra un libro que concuerde, en esta Biblia. - - etc - - - - + Bible not fully loaded. @@ -761,7 +684,7 @@ Changes do not affect verses already in the service. 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 Customs are. This plugin provides greater freedom over the Customs plugin. + <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. @@ -914,106 +837,18 @@ Changes do not affect verses already in the service. CustomPlugin.MediaItem - - You haven't selected an item to edit. - - - - - You haven't selected an item to delete. - - - - - CustomsPlugin - - + Custom - - Customs + + You haven't selected an item to edit. - - Import - Importar - - - - Import a Custom - - - - - Load - - - - - Load a new Custom - - - - - Add - Agregar - - - - Add a new Custom - - - - - Edit - Editar - - - - Edit the selected Custom - - - - - Delete - Eliminar - - - - Delete the selected Custom - - - - - Preview - Vista Previa - - - - Preview the selected Custom - - - - - Live - En vivo - - - - Send the selected Custom live - - - - - Service - - - - - Add the selected Custom to the service + + You haven't selected an item to delete. @@ -1021,134 +856,59 @@ Changes do not affect verses already in the service. 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 Images with the selected image as a background instead of the background provided by the theme. - - - - - Image - Imagen - - - - Images - Imágenes - - - - Load - - - - - Load a new Image - - - - - Add - Agregar - - - - Add a new Image - - - - - Edit - Editar - - - - Edit the selected Image - - - - - Delete - Eliminar - - - - Delete the selected Image - - - - - Preview - Vista Previa - - - - Preview the selected Image - - - - - Live - En vivo - - - - Send the selected Image live - - - - - Service - - - - - Add the selected Image to the service + <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. ImagePlugin.MediaItem - + + Image + Imagen + + + Select Image(s) Seleccionar Imagen(es) - + All Files - + Replace Live Background - + Replace Background - + Reset Live Background - + You must select an image to delete. - + Image(s) Imagen(es) - + You must select an image to replace the background with. - + You must select a media file to replace the background with. @@ -1160,111 +920,31 @@ Changes do not affect verses already in the service. <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. - - - Media - Medios - - - - Medias - - - - - Load - - - - - Load a new Media - - - - - Add - Agregar - - - - Add a new Media - - - - - Edit - Editar - - - - Edit the selected Media - - - - - Delete - Eliminar - - - - Delete the selected Media - - - - - Preview - Vista Previa - - - - Preview the selected Media - - - - - Live - En vivo - - - - Send the selected Media live - - - - - Service - - - - - Add the selected Media to the service - - MediaPlugin.MediaItem - - Select Media - Seleccionar Medios - - - - Replace Live Background - - - - - Replace Background - - - - + Media Medios - + + Select Media + Seleccionar Medios + + + + Replace Live Background + + + + + Replace Background + + + + You must select a media file to delete. @@ -1272,7 +952,7 @@ Changes do not affect verses already in the service. OpenLP - + Image Files @@ -1771,7 +1451,7 @@ This General Public License does not permit incorporating your program into prop Top - + Superior @@ -1781,7 +1461,7 @@ This General Public License does not permit incorporating your program into prop Bottom - + Inferior @@ -1832,13 +1512,13 @@ This General Public License does not permit incorporating your program into prop OpenLP.ExceptionDialog - - Error Occured + + 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. - - 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. + + Error Occurred @@ -1973,43 +1653,23 @@ This General Public License does not permit incorporating your program into prop OpenLP.LanguageManager - + Language - + Please restart OpenLP to use your new language setting. OpenLP.MainWindow - - - New Service - Servicio Nuevo - - - - Open Service - Abrir Servicio - - - - Save Service - Guardar Servicio - OpenLP 2.0 OpenLP 2.0 - - - AddHereYourLanguageName - - &File @@ -2075,6 +1735,11 @@ This General Public License does not permit incorporating your program into prop &New &Nuevo + + + New Service + Servicio Nuevo + Create a new service. @@ -2090,6 +1755,11 @@ This General Public License does not permit incorporating your program into prop &Open &Abrir + + + Open Service + Abrir Servicio + Open an existing service. @@ -2105,6 +1775,11 @@ This General Public License does not permit incorporating your program into prop &Save &Guardar + + + Save Service + Guardar Servicio + Save the current service to disk. @@ -2373,115 +2048,191 @@ You can download the latest version from http://openlp.org/. 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 - + Save Changes to Service? - + Your service has changed. Do you want to save those changes? - + Default Theme: %s - + English - Ingles + Please add the name of your language here + Español OpenLP.MediaManagerItem - + No Items Selected - + + Import %s + + + + + Import a %s + + + + + Load %s + + + + + Load a new %s + + + + + New %s + + + + + Add a new %s + + + + + Edit %s + + + + + Edit the selected %s + + + + + Delete %s + + + + + Delete the selected item + Borrar el ítem seleccionado + + + + Preview %s + + + + + Preview the selected item + Vista Previa del ítem seleccionado + + + + Send the selected item live + Enviar en vivo el ítem seleccionado + + + + Add %s to Service + + + + + Add the selected item(s) to the service + Agregar el elemento(s) seleccionado al servicio + + + &Edit %s - + &Delete %s - + &Preview %s - + &Show Live Mo&star En Vivo - + &Add to Service &Agregar al Servicio - + &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. - + No items selected - + You must select one or more items Usted debe seleccionar uno o más elementos - + No Service Item Selected - + You must select an existing service item to add to. - + Invalid Service Item - + You must select a %s service item. @@ -2524,17 +2275,17 @@ You can download the latest version from http://openlp.org/. Inactivo - + %s (Inactive) - + %s (Active) - + %s (Disabled) @@ -2575,7 +2326,7 @@ You can download the latest version from http://openlp.org/. Crear un servicio nuevo - + Open Service Abrir Servicio @@ -2585,7 +2336,7 @@ You can download the latest version from http://openlp.org/. Abrir un servicio existente - + Save Service Guardar Servicio @@ -2695,51 +2446,56 @@ You can download the latest version from http://openlp.org/. &Cambiar Tema de Ítem - + Save Changes to Service? - + Your service is unsaved, do you want to save those changes before creating a new one? - + OpenLP Service Files (*.osz) - + Your current service is unsaved, do you want to save the changes before opening a new one? - + Error Error - + 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 + + OpenLP.ServiceNoteForm @@ -2785,70 +2541,55 @@ The content encoding is not UTF-8. - - Blank Screen - Pantalla en Blanco - - - - Blank to Theme - - - - - Show Desktop - - - - + Move to live Proyectar en vivo - - Edit and re-preview song - - - - + Start continuous loop Iniciar bucle continuo - + Stop continuous loop Detener el bucle - + s s - + Delay between slides in seconds Espera entre diapositivas en segundos - + Start playing media Iniciar la reproducción de medios - + Go To + + + Edit and reload song preview + + OpenLP.SpellTextEdit - + Spelling Suggestions - + Formatting Tags @@ -2960,16 +2701,6 @@ The content encoding is not UTF-8. You are unable to delete the default theme. - - - Theme %s is use in %s plugin. - - - - - Theme %s is use by the service manager. - - You have not selected a theme. @@ -3031,6 +2762,16 @@ The content encoding is not UTF-8. A theme with this name already exists. Would you like to overwrite it? + + + Theme %s is used in the %s plugin. + + + + + Theme %s is used by the service manager. + + OpenLP.ThemesTab @@ -3087,106 +2828,51 @@ The content encoding is not UTF-8. <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. - - - Presentation - Presentación - - - - Presentations - Presentaciones - - - - Load - - - - - Load a new Presentation - - - - - Delete - Eliminar - - - - Delete the selected Presentation - - - - - Preview - Vista Previa - - - - Preview the selected Presentation - - - - - Live - En vivo - - - - Send the selected Presentation live - - - - - Service - - - - - Add the selected Presentation to the service - - PresentationPlugin.MediaItem - + + Presentation + Presentación + + + Select Presentation(s) Seleccionar Presentación(es) - + Automatic - + Present using: Mostrar usando: - + File Exists - + A presentation with that filename already exists. Ya existe una presentación con ese nombre. - + Unsupported File - + This type of presentation is not supported. - + You must select an item to delete. @@ -3221,16 +2907,6 @@ The content encoding is not UTF-8. <strong>Remote Plugin</strong><br />The remote plugin provides the ability to send messages to a running version of OpenLP on a different computer via a web browser or through the remote API. - - - Remote - - - - - Remotes - Remotas - RemotePlugin.RemoteTab @@ -3297,11 +2973,6 @@ The content encoding is not UTF-8. <strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services. - - - SongUsage - - SongUsagePlugin.SongUsageDeleteForm @@ -3366,76 +3037,6 @@ The content encoding is not UTF-8. <strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs. - - - Song - Canción - - - - Songs - Canciones - - - - Add - Agregar - - - - Add a new Song - - - - - Edit - Editar - - - - Edit the selected Song - - - - - Delete - Eliminar - - - - Delete the selected Song - - - - - Preview - Vista Previa - - - - Preview the selected Song - - - - - Live - En vivo - - - - Send the selected Song live - - - - - Service - - - - - Add the selected Song to the service - - SongsPlugin.AuthorsForm @@ -3476,7 +3077,7 @@ The content encoding is not UTF-8. - You have not set a display name for the author, would you like me to combine the first and last names for you? + You have not set a display name for the author, combine the first and last names? @@ -3525,7 +3126,7 @@ The content encoding is not UTF-8. &Delete - + &Eliminar @@ -3744,325 +3345,360 @@ The content encoding is not UTF-8. SongsPlugin.ImportWizardForm - + No OpenLP 2.0 Song Database Selected - + You need to select an OpenLP 2.0 song database file to import from. - + No openlp.org 1.x Song Database Selected - + You need to select an openlp.org 1.x song database file to import from. - - No OpenLyrics Files Selected - - - - - You need to add at least one OpenLyrics song file to import from. - - - - + No OpenSong Files Selected - + You need to add at least one OpenSong song file to import from. - + No Words of Worship Files Selected - + You need to add at least one Words of Worship file to import from. - + No CCLI Files Selected - + You need to add at least one CCLI file to import from. - + No Songs of Fellowship File Selected - + You need to add at least one Songs of Fellowship file to import from. - + No Document/Presentation Selected - + You need to add at least one document or presentation file to import from. - + Select OpenLP 2.0 Database File - + Select openlp.org 1.x Database File - - Select OpenLyrics Files - - - - + Select Open Song Files - + Select Words of Worship Files - + Select CCLI Files - + Select Songs of Fellowship Files - + Select Document/Presentation Files - + Starting import... Iniciando importación... - + Song Import Wizard - + Welcome to the 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. - + Select Import Source Seleccione Origen de Importación - + Select the import format, and where to import from. Seleccione el formato y el lugar del cual importar. - + Format: Formato: - + OpenLP 2.0 OpenLP 2.0 - + openlp.org 1.x - + OpenLyrics - + OpenSong OpenSong - + Words of Worship - + CCLI/SongSelect - + Songs of Fellowship - + Generic Document/Presentation - + Filename: - + Browse... - + + 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. + + + + 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. + + + + Importing Importando - + Please wait while your songs are imported. - + Ready. Listo. - + %p% - + Importing "%s"... - + Importing %s... + + + No EasyWorship Song Database Selected + + + + + You need to select an EasyWorship song database file to import from. + + + + + Select EasyWorship Database File + + + + + EasyWorship + + + + + 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. + + + + + Administered by %s + + SongsPlugin.MediaItem - + + Song + Canción + + + Song Maintenance - + Maintain the lists of authors, topics and books Administrar la lista de autores, categorías y libros - + Search: Buscar: - + Type: Tipo: - + Clear Limpiar - + Search Buscar - + Titles Títulos - + Lyrics Letra - + Authors Autores - + You must select an item to edit. - + You must select an item to delete. - + Are you sure you want to delete the selected song? - + Are you sure you want to delete the %d selected songs? - + Delete Song(s)? - + CCLI Licence: Licencia CCLI: @@ -4098,12 +3734,12 @@ The content encoding is not UTF-8. SongsPlugin.SongImport - + copyright - + © @@ -4111,12 +3747,12 @@ The content encoding is not UTF-8. SongsPlugin.SongImportForm - + Finished import. Importación finalizada. - + Your song import failed. @@ -4156,7 +3792,7 @@ The content encoding is not UTF-8. &Delete - + &Eliminar @@ -4198,11 +3834,6 @@ The content encoding is not UTF-8. Could not save your changes. - - - Could not save your modified author, because he already exists. - - Could not save your modified topic, because it already exists. @@ -4268,6 +3899,11 @@ The content encoding is not UTF-8. No book selected! ¡Ningún libro seleccionado! + + + Could not save your modified author, because the author already exists. + + SongsPlugin.SongsTab @@ -4311,8 +3947,8 @@ The content encoding is not UTF-8. - You need to type in a topic name! - ¡Usted tiene que escribir un nombre para la categoría! + You need to type in a topic name. + diff --git a/resources/i18n/et.ts b/resources/i18n/et.ts index 9ba29a478..d12ba6898 100644 --- a/resources/i18n/et.ts +++ b/resources/i18n/et.ts @@ -1,31 +1,22 @@ - + + AlertsPlugin &Alert - + &Teade Show an alert message. - + Teate kuvamine. <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of nursery alerts on the display screen - - - - - Alert - - - - - Alerts - + <strong>Teadete plugin</strong><br />Teadete plugina abil saab juhtida näiteks lastehoiu teadete kuvamist ekraanil @@ -33,57 +24,57 @@ Alert Message - + Teate sõnum Alert &text: - + Teate &tekst: &Parameter(s): - + &Parameetrid: &New - + &Uus &Save - + &Salvesta &Delete - + &Kustuta Displ&ay - + &Kuva Display && Cl&ose - + Kuva && &sulge &Close - + &Sulge New Alert - + Uus teade You haven't specified any text for your alert. Please type in some text before clicking New. - + Sa ei ole oma teatele teksti lisanud. Enne nupu Uus vajutamist sisesta mingi tekst. @@ -91,7 +82,7 @@ Alert message created and displayed. - + Teate sõnum loodi ja kuvati. @@ -99,77 +90,90 @@ Alerts - + Teated Font - + Kirjastiil Font name: - + Kirjastiili nimi: Font color: - + Kirja värvus: Background color: - + Taustavärvus: Font size: - + Kirja suurus: pt - + pt Alert timeout: - + Teate kestus: s - + s Location: - + Asukoht: Preview - + Eelvaade OpenLP 2.0 - + OpenLP 2.0 Top - + Üleval Middle - + Keskel Bottom - + All + + + + BiblePlugin.MediaItem + + + Error + Viga + + + + You cannot combine single and dual bible verses. Do you want to delete your search results and start a new search? + Ühe piiblitõlkega ja mitme piiblitõlkega salme pole võimalik kombineerida. Kas tahad kustutada otsitulemuse ja alustada uut otsingut? @@ -177,92 +181,12 @@ &Bible - + &Piibel <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display bible verses from different sources during the service. - - - - - Bible - - - - - Bibles - - - - - Import - - - - - Import a Bible - - - - - Add - - - - - Add a new Bible - - - - - Edit - - - - - Edit the selected Bible - - - - - Delete - - - - - Delete the selected Bible - - - - - Preview - - - - - Preview the selected Bible - - - - - Live - - - - - Send the selected Bible live - - - - - Service - - - - - Add the selected Bible to the service - + <strong>Piibli plugin</strong><br />Piibli plugina abil saab teenistuse ajal kuvada erinevate tõlgete piiblisalme. @@ -270,12 +194,12 @@ Book not found - + Raamatut ei leitud The book you requested could not be found in this bible. Please check your spelling and that this is a complete bible not just one testament. - + Soovitud raamatut ei leitud sellest Piiblist. Kontrolli õigekirja, ning et tegemist on kogu Piibli, mitte ainult ühe testamendiga. @@ -283,11 +207,11 @@ Scripture Reference Error - + Kirjakohaviite tõrge - Your scripture reference is either not supported by OpenLP or invalid. Please make sure your reference conforms to one of the following patterns: + 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 @@ -296,7 +220,15 @@ Book Chapter:Verse-Verse,Verse-Verse Book Chapter:Verse-Verse,Chapter:Verse-Verse Book Chapter:Verse-Chapter:Verse - + Sisestatud kirjakohaviit kas ei ole toetatud, või on vigane. Palun veendu, et viide sobib ühega järgnevaist mustritest: + +Raamat peatükk +Raamat peatükk-peatükk +Raamat peatükk:salm-salm +Raamat peatükk:salm-salm,salm-salm +Raamat peatükk:salm-salm,peatükk:salm-salm +Raamat peatükk:salm-peatükk:salm + @@ -304,78 +236,79 @@ Book Chapter:Verse-Chapter:Verse Bibles - + Piiblid Verse Display - + Salmi kuvamine Only show new chapter numbers - + Kuvatakse ainult uute peatükkide numbreid Layout style: - + Paigutuse laad: Display style: - + Kuvalaad: Bible theme: - + Piibli kujundus: Verse Per Slide - + Iga salm eraldi slaidil Verse Per Line - + Iga salm eraldi real Continuous - + Jätkuv No Brackets - + Ilma sulgudeta ( And ) - + ( ja ) { And } - + { ja } [ And ] - + [ ja ] Note: Changes do not affect verses already in the service. - + Märkus: +Muudatused ei rakendu juba teenistusesse lisatud salmidele. Display dual Bible verses - + Piiblisalme kuvatakse kahes keeles @@ -383,370 +316,370 @@ Changes do not affect verses already in the service. Bible Import Wizard - + Piibli importimise nõustaja Welcome to the Bible Import Wizard - + Teretulemast Piibli importimise nõustajasse 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. - + See nõustaja aitab erinevatest vormingutest Piibleid importida. Klõpsa all asuvale edasi nupule, et alustada vormingu valimisest, millest importida. Select Import Source - + Importimise allika valimine Select the import format, and where to import from. - + Vali importimise vorming ning kust importida. Format: - + Vorming: OSIS - + OSIS CSV - + CSV OpenSong - + OpenSong Web Download - + Veebist allalaadimine File location: - + Faili asukoht: Books location: - + Raamatute asukoht: Verse location: - + Salmide asukoht: Bible filename: - + Piibli failinimi: Location: - + Asukoht: Crosswalk - + Crosswalk BibleGateway - + BibleGateway Bible: - + Piibel: Download Options - + Allalaadimise valikud Server: - + Server: Username: - + Kasutajanimi: Password: - + Parool: Proxy Server (Optional) - + Proksiserver (valikuline) License Details - + Litsentsist lähemalt Set up the Bible's license details. - + Määra Piibli litsentsi andmed. Version name: - + Versiooni nimi: Copyright: - + Autoriõigus: Permission: - + Õigus: Importing - + Importimine Please wait while your Bible is imported. - + Palun oota, kuni sinu Piiblit imporditakse. Ready. - + Valmis. Invalid Bible Location - + Ebakorrektne Piibli asukoht You need to specify a file to import your Bible from. - + Pead määrama faili, millest Piibel importida. Invalid Books File - + Vigane raamatute fail You need to specify a file with books of the Bible to use in the import. - + Pead määrama faili, mis sisaldab piibliraamatuid, mida tahad importida. Invalid Verse File - + Vigane salmide fail You need to specify a file of Bible verses to import. - + Pead ette andma piiblisalmide faili, mida importida. Invalid OpenSong Bible - + Mittekorrektne OpenSong Piibel You need to specify an OpenSong Bible file to import. - + Pead määrama OpenSong piiblifaili, mida importida. Empty Version Name - + Versiooni nimi määramata You need to specify a version name for your Bible. - + Pead määrama Piibli versiooni nime. - + Empty Copyright - + Autoriõigused määramata - - You need to set a copyright for your Bible! Bibles in the Public Domain need to be marked as such. - + + You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. + Pead määrama piiblitõlke autoriõiguse! Avalikkuse omandisse kuuluvad Piiblid tuleb vastavalt tähistada. - + Bible Exists - + Piibel on juba olemas - - This Bible already exists! Please import a different Bible or first delete the existing one. - + + This Bible already exists. Please import a different Bible or first delete the existing one. + See Piibel on juba olemas! Palun impordi mingi muu Piibel või kustuta enne olemasolev. - + Open OSIS File - + OSIS faili avamine - + Open Books CSV File - + Raamatute CSV faili avamine - + Open Verses CSV File - + Salmide CSV faili avamine - + Open OpenSong Bible - + OpenSong Piibli avamine Starting import... - + Importimise alustamine... - + Finished import. - + Importimine lõpetatud. - + Your Bible import failed. - + Piibli importimine nurjus. BiblesPlugin.MediaItem - + + Bible + Piibel + + + Quick - + Kiirotsing - + Advanced - + Täpsem - + Version: - + Tõlge: - + Dual: - + Teine: - + Search type: - + Otsingu liik: - + Find: - - - - - Search - - - - - Results: - - - - - Book: - - - - - Chapter: - - - - - Verse: - - - - - From: - + Otsing: + Search + Otsi + + + + Results: + Tulemused: + + + + Book: + Raamat: + + + + Chapter: + Peatükk: + + + + Verse: + Salm: + + + + From: + Algus: + + + To: - + Kuni: - + Verse Search - + Salmi otsing - + Text Search - + Tekstiotsing - + Clear - + Puhasta - + Keep - + Säilita - + No Book Found - + Ühtegi raamatut ei leitud - + No matching book could be found in this Bible. - + Sellest Piiblist ei leitud seda raamatut. - - etc - - - - + Bible not fully loaded. - + Piibel ei ole täielikult laaditud. @@ -754,15 +687,15 @@ Changes do not affect verses already in the service. Importing - + Importimine 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 Customs are. This plugin provides greater freedom over the Customs plugin. - + <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. + <strong>Kohandatud plugin</strong><br />Kohandatud plugin võimaldab tekitada oma tekstiga slaidid, mida kuvatakse ekraanil täpselt nagu laulusõnugi. See plugin võimaldab rohkem vabadust, kui laulude plugin. @@ -770,17 +703,17 @@ Changes do not affect verses already in the service. Custom - + Kohandatud Custom Display - + Kohandatud kuva Display footer - + Jaluse kuvamine @@ -788,369 +721,206 @@ Changes do not affect verses already in the service. Edit Custom Slides - + Kohandatud slaidide muutmine Move slide up one position. - + Slaidi liigutamine koha võrra ülesse. Move slide down one position. - + Slaidi liigutamine koha võrra alla. &Title: - + &Pealkiri: Add New - + Uue lisamine Add a new slide at bottom. - + Uue slaidi lisamine kõige alumiseks. Edit - + Muuda Edit the selected slide. - + Valitud slaidi muutmine. Edit All - + Kõigi muutmine Edit all the slides at once. - + Kõigi slaidide muutmine ühekorraga. Save - + Salvesta Save the slide currently being edited. - + Praegu muutmisel oleva slaidi salvestamine. Delete - + Kustuta Delete the selected slide. - + Praeguse slaidi kustutamine. Clear - + Puhasta Clear edit area - + Muutmise ala puhastamine Split Slide - + Slaidi tükeldamine Split a slide into two by inserting a slide splitter. - + Tükelda slaid kaheks, sisestades slaidide eraldaja. The&me: - + &Kujundus: &Credits: - + &Autorid: Save && Preview - + Salvesta && eelvaatle Error - + Viga You need to type in a title. - + Pead sisestama pealkirja. You need to add at least one slide - + Pead lisama vähemalt ühe slaidi You have one or more unsaved slides, please either save your slide(s) or clear your changes. - + Sul on vähemalt üks salvestamata slaid, palun salvesta need või eemalda muudatused. CustomPlugin.MediaItem - - You haven't selected an item to edit. - - - - - You haven't selected an item to delete. - - - - - CustomsPlugin - - + Custom - + Kohandatud - - Customs - + + You haven't selected an item to edit. + Sa pole valinud kirjet, mida muuta. - - Import - - - - - Import a Custom - - - - - Load - - - - - Load a new Custom - - - - - Add - - - - - Add a new Custom - - - - - Edit - - - - - Edit the selected Custom - - - - - Delete - - - - - Delete the selected Custom - - - - - Preview - - - - - Preview the selected Custom - - - - - Live - - - - - Send the selected Custom live - - - - - Service - - - - - Add the selected Custom to the service - + + You haven't selected an item to delete. + Sa ei ole valinud kirjet, mida kustutada. 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 Images with the selected image as a background instead of the background provided by the theme. - - - - - Image - - - - - Images - - - - - Load - - - - - Load a new Image - - - - - Add - - - - - Add a new Image - - - - - Edit - - - - - Edit the selected Image - - - - - Delete - - - - - Delete the selected Image - - - - - Preview - - - - - Preview the selected Image - - - - - Live - - - - - Send the selected Image live - - - - - Service - - - - - Add the selected Image to the service - + <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. ImagePlugin.MediaItem - + + Image + Pilt + + + Select Image(s) - + Pildi (piltide) valimine - + All Files - + Kõik failid - + Replace Live Background - + Ekraani tausta asendamine - + Replace Background - + Tausta asendamine - + Reset Live Background - + Ekraani tausta asendamine - + You must select an image to delete. - + Pead valima pildi, mida kustutada. - + Image(s) - + Pildid - + You must select an image to replace the background with. - + Pead enne valima pildi, millega tausta asendada. - + You must select a media file to replace the background with. - + Pead enne valima meediafaili, millega tausta asendada. @@ -1158,123 +928,43 @@ Changes do not affect verses already in the service. <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. - - - - - Media - - - - - Medias - - - - - Load - - - - - Load a new Media - - - - - Add - - - - - Add a new Media - - - - - Edit - - - - - Edit the selected Media - - - - - Delete - - - - - Delete the selected Media - - - - - Preview - - - - - Preview the selected Media - - - - - Live - - - - - Send the selected Media live - - - - - Service - - - - - Add the selected Media to the service - + <strong>Meediaplugin</strong><br />Meedia plugin võimaldab audio- ja videofailide taasesitamist. MediaPlugin.MediaItem - - Select Media - - - - - Replace Live Background - - - - - Replace Background - - - - + Media - + Meedia - + + Select Media + Meedia valimine + + + + Replace Live Background + Ekraani tausta asendamine + + + + Replace Background + Tausta asendamine + + + You must select a media file to delete. - + Pead valima meedia, mida kustutada. OpenLP - + Image Files - + Pildifailid @@ -1282,7 +972,37 @@ Changes do not affect verses already in the service. About OpenLP - + OpenLP-st lähemalt + + + + About + Programmist + + + + Credits + Autorid + + + + License + Litsents + + + + Contribute + Aita kaasa + + + + Close + Sulge + + + + build %s + kompileering %s @@ -1293,12 +1013,13 @@ OpenLP is free church presentation software, or lyrics projection software, used Find out more about OpenLP: http://openlp.org/ OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider contributing by using the button below. - - - - - About - + OpenLP <version><revision> - avatud lähtekoodiga laulusõnade kuvaja + +OpenLP on vaba esitlustarkvara kirikusse, võib öelda ka laulusõnade projitseerimise tarkvara, mis sobib laulusõnade, piiblisalmide, videote, piltide ja isegi esitluste (kui OpenOffice.org, PowerPoint või PowerPoint Viewer on paigaldatud) kuvamiseks dataprojektori kaudu kirikus. + +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. @@ -1340,17 +1061,48 @@ Built With PyQt4: http://www.riverbankcomputing.co.uk/software/pyqt/intro Oxygen Icons: http://oxygen-icons.org/ - - - - - Credits - + Projekti juht + Raoul \"superfly\" Snyman + +Arendajad + Tim \"TRB143\" Bentley + Jonathan \"gushie\" Corwin + Michael \"cocooncrash\" Gorven + Scott \"sguerrieri\" Guerrieri + Raoul \"superfly\" Snyman + Jon \"Meths\" Tibble + +Kaastöölised + Meinert \"m2j\" Jordan + Andreas \"googol\" Preikschat + Christian \"crichter\" Richter + Philip \"Phill\" Ridout + Maikel Stuivenberg + Carsten \"catini\" Tingaard + Frode \"frodus\" Woldsund + +Testijad + Philip \"Phill\" Ridout + Wesley \"wrst\" Stout (lead) + +Pakendajad + Thomas \"tabthorpe\" Abthorpe (FreeBSD) + Tim \"TRB143\" Bentley (Fedora) + Michael \"cocooncrash\" Gorven (Ubuntu) + Matthias \"matthub\" Hub (Mac OS X) + Raoul \"superfly\" Snyman (Windows, Ubuntu) + +Abivahendid + Python: http://www.python.org/ + Qt4: http://qt.nokia.com/ + PyQt4: http://www.riverbankcomputing.co.uk/software/pyqt/intro + Oxygeni ikoonid: http://oxygen-icons.org/ + - Copyright © 2004-2010 Raoul Snyman -Portions copyright © 2004-2010 Tim Bentley, Jonathan Corwin, Michael Gorven, Scott Guerrieri, Christian Richter, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Carsten Tinggaard + Copyright © 2004-2010 Raoul Snyman +Portions copyright © 2004-2010 Tim Bentley, Jonathan Corwin, Michael Gorven, Scott Guerrieri, Christian Richter, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Carsten Tinggaard 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. @@ -1480,27 +1232,137 @@ Yoyodyne, Inc., hereby disclaims all copyright interest in the program "Gno Ty Coon, President of Vice This General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. - - - - - License - - - - - Contribute - - - - - Close - - - - - build %s - + Autoriõigus © 2004-2010 Raoul Snyman +Osaline autoriõigus © 2004-2010 Tim Bentley, Jonathan Corwin, Michael Gorven, Scott Guerrieri, Christian Richter, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Carsten Tinggaard + +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. + + +GNU GENERAL PUBLIC LICENSE +Version 2, June 1991 + +Copyright (C) 1989, 1991 Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. + +Preamble + +The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This General Public License applies to most of the Free Software Foundation's software and to any other program whose authors commit to using it. (Some other Free Software Foundation software is covered by the GNU Lesser General Public License instead.) You can apply it to your programs, too. + +When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things. + +To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it. + +For example, if you distribute copies of such a program, whether gratis or for a fee, you must give the recipients all the rights that you have. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. + +We protect your rights with two steps: (1) copyright the software, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the software. + +Also, for each author's protection and ours, we want to make certain that everyone understands that there is no warranty for this free software. If the software is modified by someone else and passed on, we want its recipients to know that what they have is not the original, so that any problems introduced by others will not reflect on the original authors' reputations. + +Finally, any free program is threatened constantly by software patents. We wish to avoid the danger that redistributors of a free program will individually obtain patent licenses, in effect making the program proprietary. To prevent this, we have made it clear that any patent must be licensed for everyone's free use or not licensed at all. + +The precise terms and conditions for copying, distribution and modification follow. + +GNU GENERAL PUBLIC LICENSE +TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + +0. This License applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The \"Program\", below, refers to any such program or work, and a \"work based on the Program\" means either the Program or any derivative work under copyright law: that is to say, a work containing the Program or a portion of it, either verbatim or with modifications and/or translated into another language. (Hereinafter, translation is included without limitation in the term \"modification\".) Each licensee is addressed as \"you\". + +Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running the Program is not restricted, and the output from the Program is covered only if its contents constitute a work based on the Program (independent of having been made by running the Program). Whether that is true depends on what the Program does. + +1. You may copy and distribute verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and give any other recipients of the Program a copy of this License along with the Program. + +You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. + +2. You may modify your copy or copies of the Program or any portion of it, thus forming a work based on the Program, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: + +a) You must cause the modified files to carry prominent notices stating that you changed the files and the date of any change. + +b) You must cause any work that you distribute or publish, that in whole or in part contains or is derived from the Program or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License. + +c) If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the most ordinary way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this License. (Exception: if the Program itself is interactive but does not normally print such an announcement, your work based on the Program is not required to print an announcement.) + +These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Program, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Program. + +In addition, mere aggregation of another work not based on the Program with the Program (or with a work based on the Program) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. + +3. You may copy and distribute the Program (or a work based on it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you also do one of the following: + +a) Accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, + +b) Accompany it with a written offer, valid for at least three years, to give any third party, for a charge no more than your cost of physically performing source distribution, a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, + +c) Accompany it with the information you received as to the offer to distribute corresponding source code. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form with such an offer, in accord with Subsection b above.) + +The source code for a work means the preferred form of the work for making modifications to it. For an executable work, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the executable. However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. + +If distribution of executable or object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place counts as distribution of the source code, even though third parties are not compelled to copy the source along with the object code. + +4. You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense or distribute the Program is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. + +5. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Program or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Program (or any work based on the Program), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Program or works based on it. + +6. Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License. + +7. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Program at all. For example, if a patent license would not permit royalty-free redistribution of the Program by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply and the section as a whole is intended to apply in other circumstances. + +It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system, which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. + +This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. + +8. If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Program under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. + +9. The Free Software Foundation may publish revised and/or new versions of the General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. + +Each version is given a distinguishing version number. If the Program specifies a version number of this License which applies to it and \"any later version\", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of this License, you may choose any version ever published by the Free Software Foundation. + +10. If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. + +NO WARRANTY + +11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + +12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + +END OF TERMS AND CONDITIONS + +How to Apply These Terms to Your New Programs + +If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. + +To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the \"copyright\" line and a pointer to where the full notice is found. + +<one line to give the program's name and a brief idea of what it does.> +Copyright (C) <year> <name of author> + +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; either version 2 of the License, or (at your option) any later version. + +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 the GNU General Public License for more details. + +You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + +Also add information on how to contact you by electronic and paper mail. + +If the program is interactive, make it output a short notice like this when it starts in an interactive mode: + +Gnomovision version 69, Copyright (C) year name of author +Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type \"show w\". +This is free software, and you are welcome to redistribute it under certain conditions; type \"show c\" for details. + +The hypothetical commands \"show w\" and \"show c\" should show the appropriate parts of the General Public License. Of course, the commands you use may be called something other than \"show w\" and \"show c\"; they could even be mouse-clicks or menu items--whatever suits your program. + +You should also get your employer (if you work as a programmer) or your school, if any, to sign a \"copyright disclaimer\" for the program, if necessary. Here is a sample; alter the names: + +Yoyodyne, Inc., hereby disclaims all copyright interest in the program \"Gnomovision\" (which makes passes at compilers) written by James Hacker. + +<signature of Ty Coon>, 1 April 1989 +Ty Coon, President of Vice + +This General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. @@ -1508,27 +1370,27 @@ This General Public License does not permit incorporating your program into prop Advanced - + Täpsem UI Settings - + Kasutajaliidese sätted Number of recent files to display: - + Kuvatavate hiljutiste failide arv: Remember active media manager tab on startup - + Käivitumisel tuletatakse meelde, milline meediahalduri osa oli aktiivne Double-click to send items straight to live (requires restart) - + Topeltklõps saadab kirjed otse suurele ekraanile (vajalik on taaskäivitus) @@ -1536,310 +1398,310 @@ This General Public License does not permit incorporating your program into prop Theme Maintenance - + Kujunduste haldus Theme &name: - + Kujunduse &nimi: Type: - + Liik: Solid Color - + Ühtlane värv Gradient - + Üleminek Image - + Pilt Image: - + Pilt: Gradient: - + Üleminek: Horizontal - + Horisontaalne Vertical - + Vertikaalne Circular - + Ümmargune &Background - + &Taust Main Font - + Peamine kirjastiil Font: - + Kirjastiil: Color: - + Värvus: Size: - + Suurus: pt - + pt Adjust line spacing: - + Reavahe kohendus: Normal - + Tavaline Bold - + Rasvane Italics - + Kursiiv Bold/Italics - + Rasvane/kaldkiri Style: - + Laad: Display Location - + Kuva asukoht Use default location - + Vaikimisi asukoht X position: - + X-asukoht: Y position: - + Y-asukoht: Width: - + Laius: Height: - + Kõrgus: px - + px &Main Font - + &Peafont Footer Font - + Jaluse kirjatüüp &Footer Font - + &Jaluse font Outline - + Välisjoon Outline size: - + Kontuurjoone paksus: Outline color: - + Kontuurjoone värvus: Show outline: - + Kontuurjoone kuvamine: Shadow - + Vari Shadow size: - + Varju suurus: Shadow color: - + Varju värvus: Show shadow: - + Varju kuvamine: Alignment - + Joondus Horizontal align: - + Horisontaaljoondus: Left - + Vasakul Right - + Paremal Center - + Keskel Vertical align: - + Vertikaaljoondus: Top - + Üleval Middle - + Keskel Bottom - + All Slide Transition - + Slaidide üleminek Transition active - + Üleminek aktiivne &Other Options - + &Muud valikud Preview - + Eelvaade All Files - + Kõik failid Select Image - + Pildi valimine First color: - + Esimene värvus: Second color: - + Teine värvus: Slide height is %s rows. - + Slaidi kõrgus on %s rida. OpenLP.ExceptionDialog - Error Occured - + Error Occurred + Esines viga 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. - + Uups! OpenLP-s esines viga, millest pole võimalik taastada. Alumises kastis olev tekst võib olla kasulik OpenLP arendajatele, palun meili see aadressil bugs@openlp.org, koos täpse kirjeldusega sellest, mida sa tegid, kui selline probleem esines. @@ -1847,643 +1709,716 @@ This General Public License does not permit incorporating your program into prop General - + Üldine Monitors - + Monitorid Select monitor for output display: - + Vali väljundkuva ekraan: Display if a single screen - + Kuvatakse, kui on ainult üks ekraan Application Startup - + Rakenduse käivitumine Show blank screen warning - + Kuvatakse tühja ekraani hoiatust Automatically open the last service - + Automaatselt avatakse viimane teenistus Show the splash screen - + Käivitumisel kuvatakse logo Application Settings - + Rakenduse sätted Prompt to save before starting a new service - + Enne uue teenistuse alustamist küsitakse, kas salvestada avatud teenistus Automatically preview next item in service - + Järgmise teenistuse elemendi automaatne eelvaade Slide loop delay: - + Slaidi näitamise pikkus korduses: sec - + sek CCLI Details - + CCLI andmed CCLI number: - + CCLI number: SongSelect username: - + SongSelecti kasutajanimi: SongSelect password: - + SongSelecti parool: Display Position - + Kuva asukoht X - + X Y - + Y Height - + Kõrgus Width - + Laius Override display position - + Kuva asukoht määratakse jõuga Screen - + Ekraan primary - + peamine OpenLP.LanguageManager - + Language - + Keel - + Please restart OpenLP to use your new language setting. - + Uue keele kasutamiseks käivita OpenLP uuesti. OpenLP.MainWindow - - - New Service - - - - - Open Service - - - - - Save Service - - OpenLP 2.0 - - - - - AddHereYourLanguageName - + OpenLP 2.0 &File - + &Fail &Import - + &Impordi &Export - + &Ekspordi &View - + &Vaade M&ode - + &Režiim &Tools - + &Tööriistad &Settings - + &Sätted &Language - + &Keel &Help - + A&bi Media Manager - + Meediahaldur Service Manager - + Teenistuse haldur Theme Manager - + Kujunduse haldur &New - + &Uus + + + + New Service + Uus teenistus Create a new service. - + Uue teenistuse loomine. Ctrl+N - + Ctrl+N &Open - + &Ava + + + + Open Service + Teenistuse avamine Open an existing service. - + Olemasoleva teenistuse avamine. Ctrl+O - + Ctrl+O &Save - + &Salvesta + + + + Save Service + Teenistuse salvestamine Save the current service to disk. - + Praeguse teenistuse salvestamine kettale. Ctrl+S - + Ctrl+S Save &As... - + Salvesta &kui... Save Service As - + Salvesta teenistus kui Save the current service under a new name. - + Praeguse teenistuse salvestamine uue nimega. Ctrl+Shift+S - + Ctrl+Shift+S E&xit - + &Välju Quit OpenLP - + Lahku OpenLPst Alt+F4 - + Alt+F4 &Theme - + &Kujundus &Configure OpenLP... - + &Seadista OpenLP... &Media Manager - + &Meediahaldur Toggle Media Manager - + Meediahalduri lüliti Toggle the visibility of the media manager. - + Meediahalduri nähtavuse ümberlüliti. F8 - + F8 &Theme Manager - + &Kujunduse haldur Toggle Theme Manager - + Kujunduse halduri lüliti Toggle the visibility of the theme manager. - + Kujunduse halduri nähtavuse ümberlülitamine. F10 - + F10 &Service Manager - + &Teenistuse haldur Toggle Service Manager - + Teenistuse halduri lüliti Toggle the visibility of the service manager. - + Teenistuse halduri nähtavuse ümberlülitamine. F9 - + F9 &Preview Panel - + &Eelvaatluspaneel Toggle Preview Panel - + Eelvaatluspaneeli lüliti Toggle the visibility of the preview panel. - + Eelvaatluspaneeli nähtavuse ümberlülitamine. F11 - + F11 &Live Panel - + &Ekraani paneel Toggle Live Panel - + Ekraani paneeli lüliti Toggle the visibility of the live panel. - + Ekraani paneeli nähtavuse muutmine. F12 - + F12 &Plugin List - + &Pluginate loend List the Plugins - + Pluginate loend Alt+F7 - + Alt+F7 &User Guide - + &Kasutajajuhend &About - + &Lähemalt More information about OpenLP - + Lähem teave OpenLP kohta Ctrl+F1 - + Ctrl+F1 &Online Help - + &Abi veebis &Web Site - + &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 Add &Tool... - + Lisa &tööriist... Add an application to the list of tools. - + Rakenduse lisamine tööriistade loendisse. &Default - + &Vaikimisi Set the view mode back to the default. - + Vaikimisi kuvarežiimi taastamine. &Setup - + &Ettevalmistus Set the view mode to Setup. - + Ettevalmistuse kuvarežiimi valimine. &Live - + &Otse Set the view mode to Live. - + 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 + + + + Save Changes to Service? + Kas salvestada teenistusse tehtud muudatused? + + + + Your service has changed. Do you want to save those changes? + Seda teenistust on muudetud. Kas sa tahad need muudatused salvestada? + + + + 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/. - + OpenLP versioon %s on nüüd allalaadimiseks saadaval (sina kasutad praegu versiooni %s). + +Sa võid viimase versiooni alla laadida aadressilt http://openlp.org/. - - OpenLP Version Updated - - - - - OpenLP Main Display Blanked - - - - - The Main Display has been blanked out - - - - - Save Changes to Service? - - - - - Your service has changed. Do you want to save those changes? - - - - - Default Theme: %s - - - - + English - + Please add the name of your language here + Eesti OpenLP.MediaManagerItem - + No Items Selected - + Ühtegi elementi pole valitud - + + Import %s + Impordi %s + + + + Import a %s + %s importimine + + + + Load %s + Laadi %s + + + + Load a new %s + Uue %s avamine + + + + New %s + Uus %s + + + + Add a new %s + Uue %s lisamine + + + + Edit %s + %s muutmine + + + + Edit the selected %s + Valitud %s muutmine + + + + Delete %s + %s kustutamine + + + + Delete the selected item + Valitud elemendi kustutamine + + + + Preview %s + %s eelvaade + + + + Preview the selected item + Valitud kirje eelvaatlus + + + + Send the selected item live + Valitud kirje saatmine ekraanile + + + + Add %s to Service + %s lisamine teenistusele + + + + Add the selected item(s) to the service + Valitud kirje(te) lisamine teenistusse + + + &Edit %s - + %s &muutmine - + &Delete %s - + %s &kustutamine - + &Preview %s - + %s &eelvaatlus - + &Show Live - + &Kuva ekraanil - + &Add to Service - + &Lisa teenistusele - + &Add to selected Service Item - + &Lisa valitud teenistuse elemendile - + You must select one or more items to preview. - + Sa pead valima vähemalt ühe kirje, mida eelvaadelda. - + You must select one or more items to send live. - + Sa pead valima vähemalt ühe kirje, mida tahad ekraanil näidata. - + You must select one or more items. - + Pead valima vähemalt ühe elemendi. - + No items selected - + Ühtegi elementi pole valitud - + You must select one or more items - + Pead valima vähemalt ühe elemendi - + No Service Item Selected - + Ühtegi teenistuse elementi pole valitud - + You must select an existing service item to add to. - + Pead valima olemasoleva teenistuse, millele lisada. - + Invalid Service Item - + Vigane teenistuse element - + You must select a %s service item. - + Pead valima teenistuse elemendi %s. @@ -2491,52 +2426,52 @@ You can download the latest version from http://openlp.org/. Plugin List - + Pluginate loend Plugin Details - + Plugina andmed Version: - + Versioon: About: - + Kirjeldus: Status: - + Olek: Active - + Aktiivne Inactive - + Pole aktiivne - + %s (Inactive) - + %s (pole aktiivne) - + %s (Active) - + %s (aktiivne) - + %s (Disabled) - + %s (keelatud) @@ -2544,22 +2479,22 @@ You can download the latest version from http://openlp.org/. Reorder Service Item - + Teenistuse elementide ümberjärjestamine Up - + Üles Delete - + Kustuta Down - + Alla @@ -2567,178 +2502,184 @@ You can download the latest version from http://openlp.org/. New Service - + Uus teenistus Create a new service - + Uue teenistuse loomine - + Open Service - + Teenistuse avamine Load an existing service - + Olemasoleva teenistuse laadimine - + Save Service - + Salvesta teenistus Save this service - + Selle teenistuse salvestamine Theme: - + Kujundus: Select a theme for the service - + Vali teenistuse jaoks kujundus Move to &top - + Tõsta ü&lemiseks Move item to the top of the service. - + Teenistuse algusesse tõstmine. Move &up - + Liiguta &üles Move item up one position in the service. - + Elemendi liigutamine teenistuses ühe koha võrra ettepoole. Move &down - + Liiguta &alla Move item down one position in the service. - + Elemendi liigutamine teenistuses ühe koha võrra tahapoole. Move to &bottom - + Tõsta &alumiseks Move item to the end of the service. - + Teenistuse lõppu tõstmine. &Delete From Service - + &Kustuta teenistusest Delete the selected item from the service. - + Valitud elemendi kustutamine teenistusest. &Add New Item - + &Lisa uus element &Add to Selected Item - + &Lisa valitud elemendile &Edit Item - + &Muuda kirjet &Reorder Item - + &Muuda elemendi kohta järjekorras &Notes - + &Märkmed &Preview Verse - + &Salmi eelvaatlus &Live Verse - + &Otse ekraanile &Change Item Theme - + &Muuda elemendi kujundust - + Save Changes to Service? - + Kas salvestada teenistusse tehtud muudatused? - + Your service is unsaved, do you want to save those changes before creating a new one? - + See teenistus pole salvestatud, kas tahad selle enne uue avamist salvestada? - + OpenLP Service Files (*.osz) - + OpenLP teenistusefailid (*.osz) - + Your current service is unsaved, do you want to save the changes before opening a new one? - + See teenistus pole salvestatud, kas tahad enne uue avamist muudatused salvestada? - + Error - + Viga - + 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 @@ -2746,7 +2687,7 @@ The content encoding is not UTF-8. Service Item Notes - + Teenistuse elemendi märkmed @@ -2754,7 +2695,7 @@ The content encoding is not UTF-8. Configure OpenLP - + Seadista OpenLP @@ -2762,95 +2703,80 @@ The content encoding is not UTF-8. Live - + Ekraan Preview - + Eelvaade Move to previous - + Eelmisele liikumine Move to next - + Järgmisele liikumine Hide - + Peida - - Blank Screen - - - - - Blank to Theme - - - - - Show Desktop - - - - + Move to live - + Tõsta ekraanile - - Edit and re-preview song - + + Edit and reload song preview + Muuda ja kuva laulu eelvaade uuesti - + Start continuous loop - + Katkematu korduse alustamine - + Stop continuous loop - + Katkematu korduse lõpetamine - + s - + s - + Delay between slides in seconds - + Viivitus slaidide vahel sekundites - + Start playing media - + Meediaesituse alustamine - + Go To - + Liigu kohta OpenLP.SpellTextEdit - + Spelling Suggestions - + Õigekirjasoovitused - + Formatting Tags - + Siltide vormindus @@ -2858,178 +2784,179 @@ The content encoding is not UTF-8. New Theme - + Uus kujundus Create a new theme. - + Uue kujunduse loomine. Edit Theme - + Kujunduse muutmine Edit a theme. - + Kujunduse muutmine. Delete Theme - + Kujunduse kustutamine Delete a theme. - + Kujunduse kustutamine. Import Theme - + Kujunduse importimine Import a theme. - + Kujunduse importimine. Export Theme - + Kujunduse eksportimine Export a theme. - + Kujunduse eksportimine. &Edit Theme - + Kujunduse &muutmine &Delete Theme - + Kujunduse &kustutamine Set As &Global Default - + Määra &globaalseks vaikeväärtuseks E&xport Theme - + &Ekspordi kujundus %s (default) - + %s (vaikimisi) You must select a theme to edit. - + Pead valima kujunduse, mida muuta. You must select a theme to delete. - + Pead valima kujunduse, mida tahad kustutada. Delete Confirmation - + Kustutamise kinnitus Delete theme? - + Kas kustutada kujundus? Error - + Viga You are unable to delete the default theme. - + Vaikimisi kujundust pole võimalik kustutada. - Theme %s is use in %s plugin. - + Theme %s is used in the %s plugin. + Kujundust %s kasutatakse pluginas %s. - Theme %s is use by the service manager. - + Theme %s is used by the service manager. + Teenistuse halduri nähtavuse ümberlülitamine. You have not selected a theme. - + Sa ei ole kujundust valinud. Save Theme - (%s) - + Salvesta kujundus - (%s) Theme Exported - + Kujundus eksporditud Your theme has been successfully exported. - + Sinu kujunduse on edukalt eksporditud. Theme Export Failed - + Kujunduse eksportimine nurjus Your theme could not be exported due to an error. - + Sinu kujundust polnud võimalik eksportida, kuna esines viga. Select Theme Import File - + Importimiseks kujunduse faili valimine Theme (*.*) - + Kujundus (*.*) File is not a valid theme. The content encoding is not UTF-8. - + See fail ei ole korrektne kujundus. +Sisu kodeering ei ole UTF-8. File is not a valid theme. - + See fail ei ole sobilik kujundus. Theme Exists - + Kujundus on juba olemas A theme with this name already exists. Would you like to overwrite it? - + Sellenimeline kujundus on juba olemas. Kas tahad selle üle kirjutada? @@ -3037,47 +2964,47 @@ The content encoding is not UTF-8. Themes - + Kujundused Global Theme - + Üldine kujundus Theme Level - + Kujunduse tase S&ong Level - + &Laulu tase 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. - + Iga laulu jaoks kasutatakse sellele andmebaasis määratud kujundust. Kui laulul kujundus puudub, kasutatakse teenistuse kujundust. Kui teenistusel kujundus puudub, siis kasutatakse üleüldist kujundust. &Service Level - + &Teenistuse tase 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. - + Kasutatakse teenistuse kujundust, eirates laulude kujundusi. Kui teenistusel kujundust pole, kasutatakse globaalset. &Global Level - + &Üleüldine tase Use the global theme, overriding any themes associated with either the service or the songs. - + Kasutatakse globaalset kujundust, eirates nii teenistuse kui laulu kujundust. @@ -3085,110 +3012,55 @@ The content encoding is not UTF-8. <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. - - - - - Presentation - - - - - Presentations - - - - - Load - - - - - Load a new Presentation - - - - - Delete - - - - - Delete the selected Presentation - - - - - Preview - - - - - Preview the selected Presentation - - - - - Live - - - - - Send the selected Presentation live - - - - - Service - - - - - Add the selected Presentation to the service - + <strong>Esitluse plugin</strong><br />Esitluse plugin võimaldab näidata esitlusi erinevate programmidega. Saadaolevate esitlusprogrammide valik on saadaval valikukastis. PresentationPlugin.MediaItem - + + Presentation + Esitlus + + + Select Presentation(s) - + Esitlus(t)e valimine - + Automatic - + Automaatne - + Present using: - + Esitluseks kasutatakse: - + File Exists - + Fail on olemas - + A presentation with that filename already exists. - + Sellise nimega esitluse fail on juba olemas. - + Unsupported File - + Toetamata fail - + This type of presentation is not supported. - + Seda liiki esitlus ei ole toetatud. - + You must select an item to delete. - + Pead valima kirje, mida kustutada. @@ -3196,22 +3068,22 @@ The content encoding is not UTF-8. Presentations - + Esitlused Available Controllers - + Saadaolevad juhtijad Advanced - + Täpsem Allow presentation application to be overriden - + Esitlusrakendust on lubatud asendada @@ -3219,17 +3091,7 @@ The content encoding is not UTF-8. <strong>Remote Plugin</strong><br />The remote plugin provides the ability to send messages to a running version of OpenLP on a different computer via a web browser or through the remote API. - - - - - Remote - - - - - Remotes - + <b>Kaugjuhtimisplugin</b><br>See plugin võimaldab töötavale openlp programmile teadete saatmise teisest arvutist veebilehitseja või mõne muu rakenduse kaudu.<br>Selle peamine rakendus on teadete saatmine lastehoiust. @@ -3237,22 +3099,22 @@ The content encoding is not UTF-8. Remotes - + Kaugjuhtimine Serve on IP address: - + Saadaval IP-aadressilt: Port number: - + Pordi number: Server Settings - + Serveri sätted @@ -3260,47 +3122,42 @@ The content encoding is not UTF-8. &Song Usage Tracking - + &Laulude kasutuse jälgimine &Delete Tracking Data - + &Kustuta kogutud andmed Delete song usage data up to a specified date. - + Laulude kasutuse andmete kustutamine kuni antud kuupäevani. &Extract Tracking Data - + &Eralda laulukasutuse andmed Generate a report on song usage. - + Genereeri raport laulude kasutuse kohta. Toggle Tracking - + Laulukasutuse jälgimine Toggle the tracking of song usage. - + Laulukasutuse jälgimise sisse- ja väljalülitamine. <strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services. - - - - - SongUsage - + <strong>Laulude plugin</strong><br />See plugin võimaldab laulude kuvamise ja haldamise. @@ -3308,17 +3165,17 @@ The content encoding is not UTF-8. Delete Song Usage Data - + Laulukasutuse andmete kustutamine Delete Selected Song Usage Events? - + Kas kustutada valitud laulude kasutamise sündmused? Are you sure you want to delete selected Song Usage data? - + Kas oled kindel, et tahad kustutada valitud laulude kasutuse andmed? @@ -3326,27 +3183,27 @@ The content encoding is not UTF-8. Song Usage Extraction - + Laulukasutuse salvestamine Select Date Range - + Vali kuupäevade vahemik to - + kuni Report Location - + Asukohast raporteerimine Output File Location - + Väljundfaili asukoht @@ -3354,87 +3211,17 @@ The content encoding is not UTF-8. &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. - - - - - Song - - - - - Songs - - - - - Add - - - - - Add a new Song - - - - - Edit - - - - - Edit the selected Song - - - - - Delete - - - - - Delete the selected Song - - - - - Preview - - - - - Preview the selected Song - - - - - Live - - - - - Send the selected Song live - - - - - Service - - - - - Add the selected Song to the service - + <strong>Laulude plugin</strong><br />See plugin võimaldab laulude kuvamise ja haldamise. @@ -3442,42 +3229,42 @@ The content encoding is not UTF-8. Author Maintenance - + Autorite haldus Display name: - + Täisnimi: First name: - + Eesnimi: Last name: - + Perekonnanimi: Error - + Viga You need to type in the first name of the author. - + Pead sisestama autori eesnime. You need to type in the last name of the author. - + Pead sisestama autori perekonnanime. - You have not set a display name for the author, would you like me to combine the first and last names for you? - + You have not set a display name for the author, combine the first and last names? + Sa ei ole sisestanud autori kuvamise nime, kas see tuleks kombineerida ees- ja perekonnanimest? @@ -3485,242 +3272,242 @@ The content encoding is not UTF-8. Song Editor - + Lauluredaktor &Title: - + &Pealkiri: Alt&ernate title: - + &Alternatiivne pealkiri: &Lyrics: - + &Sõnad: &Verse order: - + &Salmide järjekord: &Add - + &Lisa &Edit - + &Muuda Ed&it All - + Muuda &kõiki &Delete - + &Kustuta Title && Lyrics - + Pealkiri && laulusõnad Authors - + Autorid &Add to Song - + &Lisa laulule &Remove - + &Eemalda &Manage Authors, Topics, Song Books - + &Autorite, teemade ja laulikute haldamine Topic - + Teema A&dd to Song - + L&isa laulule R&emove - + &Eemalda Song Book - + Laulik Book: - + Book: Number: - + Number: Authors, Topics && Song Book - + Autorid, teemad && laulik Theme - + Kujundus New &Theme - + Uus &kujundus Copyright Information - + Autoriõiguse andmed - © - + © + © CCLI number: - + CCLI number: Comments - + Kommentaarid Theme, Copyright Info && Comments - + Kujundus, autoriõigus && kommentaarid Save && Preview - + Salvesta && eelvaatle Add Author - + Autori lisamine This author does not exist, do you want to add them? - + Seda autorit veel pole, kas tahad autori lisada? Error - + Viga This author is already in the list. - + See autor juba on loendis. No Author Selected - + Autorit pole valitud 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. - + Sa ei ole valinud ühtegi sobilikku autorit. Vali autor loendist või sisesta uue autori nimi ja klõpsa uue nupul "Lisa laulule autor". Add Topic - + Teema lisamine This topic does not exist, do you want to add it? - + Sellist teemat pole. Kas tahad selle lisada? This topic is already in the list. - + See teema juba on loendis. No Topic Selected - + Ühtegi teemat pole valitud 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. - + Sa pole valinud sobivat teemat. Vali teema kas loendist või sisesta uus teema ja selle lisamiseks klõpsa nupule "Lisa laulule teema". You need to type in a song title. - + Pead sisestama laulu pealkirja. You need to type in at least one verse. - + Pead sisestama vähemalt ühe salmi. Warning - + Hoiatus You have not added any authors for this song. Do you want to add an author now? - + Sa pole sellele laulule lisanud mitte ühtegi autorit. Kas sa tahad laulule nüüd autori lisada? The verse order is invalid. There is no verse corresponding to %s. Valid entries are %s. - + Salmide järjekord pole sobiv. Mitte ükski valm ei vasta %s-le. Sobivad salmid on %s. You have not used %s anywhere in the verse order. Are you sure you want to save the song like this? - + Sa pole kasutanud %s mitte kusagil salmide järjekorras. Kas sa oled kindel, et tahad laulu selliselt salvestada? Add Book - + Lauliku lisamine This song book does not exist, do you want to add it? - + Sellist laulikut pole. Kas tahad selle lisada? @@ -3728,343 +3515,378 @@ The content encoding is not UTF-8. Edit Verse - + Salmi muutmine &Verse type: - + &Salmi liik: &Insert - + &Sisesta SongsPlugin.ImportWizardForm - + No OpenLP 2.0 Song Database Selected - + Ühtegi OpenLP 2.0 lauluandmebaasi pole valitud - + You need to select an OpenLP 2.0 song database file to import from. - + Pead valima OpenLP 2.0 lauluandmebaasi, mida importida. - + No openlp.org 1.x Song Database Selected - + Ühtegi openlp 1.x lauluandmebaasi faili pole valitud - + You need to select an openlp.org 1.x song database file to import from. - + Pead valima openlp.org 1.x andmebaasi, millest importida. - - No OpenLyrics Files Selected - - - - - You need to add at least one OpenLyrics song file to import from. - - - - + No OpenSong Files Selected - + Ühtegi OpenSong faili pole valitud - + You need to add at least one OpenSong song file to import from. - + Pead lisama vähemalt ühe OpenSong faili, mida importida. - + No Words of Worship Files Selected - + Ühtegi Words of Worship faili pole valitud - + You need to add at least one Words of Worship file to import from. - + Tuleb lisada vähemalt üks Words of Worship fail, millest importida. - + No CCLI Files Selected - + Ühtegi CCLI faili pole valitud - + You need to add at least one CCLI file to import from. - + Tuleb lisada vähemalt üks CCLI fail, millest importida. - + No Songs of Fellowship File Selected - + Ühtegi Songs of Fellowship faili pole valitud - + You need to add at least one Songs of Fellowship file to import from. - + Pead lisama vähemalt ühe Songs of Fellowship faili, mida importida. - + No Document/Presentation Selected - + Ühtegi dokumenti/esitlust pole valitud - + You need to add at least one document or presentation file to import from. - + Pead lisama vähemalt ühe dokumendi või esitluse faili, millest importida. - + + No EasyWorship Song Database Selected + Ühtegi EasyWorship lauluandmebaasi faili pole valitud + + + + You need to select an EasyWorship song database file to import from. + Pead valima vähemalt ühe EasyWorship lauluandmebaasi, millest importida. + + + Select OpenLP 2.0 Database File - + OpenLP 2.0 andmebaasifaili valimine - + Select openlp.org 1.x Database File - + openlp.org 1.x andmebaasifaili valimine - - Select OpenLyrics Files - - - - + Select Open Song Files - + Open Song failide valimine - + Select Words of Worship Files - + Words of Worship failide valimine - + Select CCLI Files - + CCLI failide valimine - + Select Songs of Fellowship Files - + Songs of Fellowship failide valimine - + Select Document/Presentation Files - + Dokumentide/esitluste valimine - + + Select EasyWorship Database File + EasyWorship andmebaasifaili valimine + + + Starting import... - + Importimise alustamine... - + Song Import Wizard - + Laulude importimise nõustaja - + Welcome to the Song Import Wizard - + Tere tulemast laulude importimise nõustajasse - + 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. - + See nõustaja aitab sul laule importida paljudest erinevatest formaatidest. Klõpsa all asuvat edasi nuppu, et jätkata tegevust importimise vormingu valimisega. - + Select Import Source - + Importimise allika valimine - + Select the import format, and where to import from. - + Vali importimise vorming ning kust importida. - + Format: - + Vorming: - + OpenLP 2.0 - + OpenLP 2.0 - + openlp.org 1.x - + openlp.org 1.x - + OpenLyrics - + OpenLyrics - + OpenSong - + OpenSong - + Words of Worship - + Words of Worship - + CCLI/SongSelect - + CCLI/SongSelect - + Songs of Fellowship - + Songs of Fellowship fail - + Generic Document/Presentation - + Tavaline dokumenti/esitlus - + + EasyWorship + EasyWorship + + + Filename: - + Failinimi: - + Browse... - + Lehitse... - + + 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. + openlp.org 1.x importija on ühe puuduva Pythoni mooduli pärast keelatud. Kui sa tahad seda importijat kasutada, pead paigaldama mooduli "python-sqlite". + + + + 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. + OpenLyrics importija ei ole veel valmis, kuid nagu sa näed, on meil plaanis see luua. Loodetavasti saab see järgmiseks väljalaskeks valmis. + + + Add Files... - + Lisa faile... - + Remove File(s) - + Faili(de) eemaldamine - + + The Songs of Fellowship importer has been disabled because OpenLP cannot find OpenOffice.org on your computer. + Songs of Fellowship importija on keelatud, kuna OpenLP ei suuda leida sinu arvutist OpenOffice.org-i. + + + + The generic document/presentation importer has been disabled because OpenLP cannot find OpenOffice.org on your computer. + Tavalisest dokumendist/esitlusest importija on keelatud, kuna OpenLP ei suuda leida sinu arvutist OpenOffice.org-i. + + + Importing - + Importimine - + Please wait while your songs are imported. - + Palun oota, kuni laule imporditakse. - + Ready. - + Valmis. - + %p% - + %p% - + Importing "%s"... - + "%s" importimine... - + Importing %s... + %s importimine... + + + + Administered by %s SongsPlugin.MediaItem - + + Song + Laul + + + Song Maintenance - + Laulude haldus - + Maintain the lists of authors, topics and books - - - - - Search: - + Autorite, teemade ja raamatute loendi haldamine - Type: - + Search: + Otsi: - Clear - + Type: + Liik: - Search - + Clear + Puhasta - - Titles - + + Search + Otsi - Lyrics - + Titles + Pealkirjad + Lyrics + Laulusõnad + + + Authors - + Autorid - + You must select an item to edit. - + Pead valima kirje, mida muuta. - + You must select an item to delete. - + Pead valima kirje, mida tahad kustutada. - + Are you sure you want to delete the selected song? - + Kas oeld kindel, et tahad valitud laulu kustutada? - + Are you sure you want to delete the %d selected songs? - + Kas oled kindel, et tahad kustutada %s valitud laulu? - + Delete Song(s)? - + Kas kustutada laul(ud)? - + CCLI Licence: - + CCLI litsents: @@ -4072,53 +3894,53 @@ The content encoding is not UTF-8. Song Book Maintenance - + Lauliku haldus &Name: - + &Nimi: &Publisher: - + &Kirjastaja: Error - + Viga You need to type in a name for the book. - + Pead sisestama lauliku nime. SongsPlugin.SongImport - + copyright - + autoriõigus - - © - + + © + © SongsPlugin.SongImportForm - + Finished import. - + Importimine lõpetatud. - + Your song import failed. - + Laulu importimine nurjus. @@ -4126,147 +3948,147 @@ The content encoding is not UTF-8. Song Maintenance - + Laulude haldus Authors - + Autorid Topics - + Teemad Song Books - + Laulikud &Add - + &Lisa &Edit - + &Muuda &Delete - + &Kustuta Error - + Viga Could not add your author. - + Autori lisamine pole võimalik. This author already exists. - + See autor on juba olemas. Could not add your topic. - + Sinu teema lisamine pole võimalik. This topic already exists. - + Teema on juba olemas. Could not add your book. - + Lauliku lisamine pole võimalik. This book already exists. - + See laulik on juba olemas. Could not save your changes. - + Muudatuste salvestamine pole võimalik. - Could not save your modified author, because he already exists. - + Could not save your modified author, because the author already exists. + Sinu muudetud autorit pole võimalik salvestada, kuna autor on juba olemas. Could not save your modified topic, because it already exists. - + Sinu muudetud teemat pole võimalik salvestada, kuna selline on juba olemas. Delete Author - + Autori kustutamine Are you sure you want to delete the selected author? - + Kas oled kindel, et tahad kustutada valitud autori? This author cannot be deleted, they are currently assigned to at least one song. - + Seda autorit pole võimalik kustutada, kuna ta on märgitud vähemalt ühe laulu autoriks. No author selected! - + Ühtegi autorit pole valitud! Delete Topic - + Teema kustutamine Are you sure you want to delete the selected topic? - + Kas oled kindel, et tahad valitud teema kustutada? This topic cannot be deleted, it is currently assigned to at least one song. - + Seda teemat pole võimalik kustutada, kuna see on seostatud vähemalt ühe lauluga. No topic selected! - + Ühtegi teemat pole valitud! Delete Book - + Lauliku kustutamine Are you sure you want to delete the selected book? - + Kas oled kindel, et tahad valitud lauliku kustutada? This book cannot be deleted, it is currently assigned to at least one song. - + Seda laulikut pole võimalik kustutada, kuna vähemalt üks laul kuulub sellesse laulikusse. No book selected! - + Ühtegi laulikut pole valitud! @@ -4274,22 +4096,22 @@ The content encoding is not UTF-8. Songs - + Laulud Songs Mode - + Laulurežiim Enable search as you type - + Otsing sisestamise ajal Display verses on live tool bar - + Salme kuvatakse ekraani tööriistaribal @@ -4297,22 +4119,22 @@ The content encoding is not UTF-8. Topic Maintenance - + Teemade haldus Topic name: - + Teema nimi: Error - + Viga - You need to type in a topic name! - + You need to type in a topic name. + Pead sisestama teema nime. @@ -4320,37 +4142,37 @@ The content encoding is not UTF-8. Verse - + Salm Chorus - + Refrään Bridge - + Vahemäng Pre-Chorus - + Eelrefrään Intro - + Sissejuhatus Ending - + Lõpetus Other - + Muu diff --git a/resources/i18n/hu.ts b/resources/i18n/hu.ts index 031a9de32..e02111ee9 100644 --- a/resources/i18n/hu.ts +++ b/resources/i18n/hu.ts @@ -5,27 +5,17 @@ &Alert - &Figyelmeztetés + &Figyelmeztetés Show an alert message. - + Figyelmeztetést jelenít meg. <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of nursery alerts on the display screen - - - - - Alert - - - - - Alerts - Figyelmeztetések + <strong>Figyelmeztetés bővítmény</strong><br />A figyelmeztetés bővítmény kezeli gyermekfelügyelet felhívásait a vetítőn @@ -33,57 +23,57 @@ Alert Message - Figyelmeztetés + Figyelmeztetés Alert &text: - Figyelmeztető &szöveg: + Figyelmeztető &szöveg: &Parameter(s): - &Paraméterek: + &Paraméter(ek): &New - &Új + &Új &Save - + &Mentés &Delete - &Törlés + &Törlés Displ&ay - &Megjelenítés + &Megjelenítés Display && Cl&ose - M&egjelenítés és bezárás + M&egjelenítés és bezárás &Close - &Bezárás + &Bezárás New Alert - + Új figyelmeztetés You haven't specified any text for your alert. Please type in some text before clicking New. - + A figyelmeztető szöveg nincs megadva. Adj meg valamilyen szöveget az Új gombra való kattintás előtt. @@ -91,7 +81,7 @@ Alert message created and displayed. - + A figyelmeztető üzenet létrejött és megjelent. @@ -99,76 +89,89 @@ Alerts - Figyelmeztetések + Figyelmeztetések Font - Betűkészlet + Betűkészlet Font name: - + Betűkészlet neve: Font color: - + Betűszín: Background color: - + Háttérszín: Font size: - + Betűméret: pt - + Alert timeout: - Figyelmeztetés késleltetése: + Figyelmeztetés késleltetése: s - mp + mp Location: - Hely: + Hely: Preview - Előnézet + Előnézet OpenLP 2.0 - + Top - + Felülre Middle - Középre + Középre Bottom + Alulra + + + + BiblePlugin.MediaItem + + + Error + Hiba + + + + You cannot combine single and dual bible verses. Do you want to delete your search results and start a new search? @@ -177,92 +180,12 @@ &Bible - &Biblia + &Biblia <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display bible verses from different sources during the service. - - - - - Bible - Biblia - - - - Bibles - Bibliák - - - - Import - Importálás - - - - Import a Bible - - - - - Add - Hozzáadás - - - - Add a new Bible - - - - - Edit - Szerkesztés - - - - Edit the selected Bible - - - - - Delete - Törlés - - - - Delete the selected Bible - - - - - Preview - Előnézet - - - - Preview the selected Bible - - - - - Live - Egyenes adás - - - - Send the selected Bible live - - - - - Service - - - - - Add the selected Bible to the service - + <strong>Biblia bővítmény</strong><br />A Biblia bővítmény különféle forrásokból származó igehelyek vetítését teszi lehetővé a szolgálat alatt. @@ -270,12 +193,12 @@ Book not found - + A könyv nem található The book you requested could not be found in this bible. Please check your spelling and that this is a complete bible not just one testament. - + A kért könyv nem található ebben a Bibliában. Kérlek, ellenőrizd a helyesírást és hogy ez egy teljes Biblia, nem csak az egyik szövetség. @@ -283,11 +206,11 @@ Scripture Reference Error - + Igehely hivatkozási hiba - Your scripture reference is either not supported by OpenLP or invalid. Please make sure your reference conforms to one of the following patterns: + 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 @@ -296,7 +219,15 @@ Book Chapter:Verse-Verse,Verse-Verse Book Chapter:Verse-Verse,Chapter:Verse-Verse Book Chapter:Verse-Chapter:Verse - + Ezt az igehely hivatkozást nem támogatja az OpenLP vagy nem helyes. Kérlek, ellenőrizd, hogy a hivatkozás megfelel-e az egyik alábbi mintának: + +Könyv fejezet +Könyv fejezet-Vers +Könyv fejezet:Vers-Vers +Könyv fejezet:Vers-Vers,Vers-Vers +Könyv fejezet:Vers-Vers,Fejezet:Vers-Vers +Könyv fejezet:Vers-Fejezet:Vers + @@ -304,78 +235,79 @@ Book Chapter:Verse-Chapter:Verse Bibles - Bibliák + Bibliák Verse Display - Vers megjelenítés + Vers megjelenítés Only show new chapter numbers - Csak az új fejezetszámok megjelenítése + Csak az új fejezetszámok megjelenítése Layout style: - + Elrendezési stílus: Display style: - + Megjelenítési stílus: Bible theme: - + Biblia téma: Verse Per Slide - + Egy vers diánként Verse Per Line - + Egy vers soronként Continuous - + Folytonos No Brackets - + Nincsenek zárójelek ( And ) - + ( és ) { And } - + { és } [ And ] - + [ és ] Note: Changes do not affect verses already in the service. - + Megjegyzés: +A módosítások nem érintik a már a szolgálatban lévő verseket. Display dual Bible verses - + Kettőzött bibliaversek megjelenítése @@ -383,370 +315,370 @@ Changes do not affect verses already in the service. Bible Import Wizard - Bibliaimportáló tündér + Bibliaimportáló tündér Welcome to the Bible Import Wizard - Üdvözlet a Bibliaimportáló tündérben + Üdvözlet a Bibliaimportáló tündérben 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. - A tündérrel különféle formátumú Bibliákat lehet importálni. Az alább található Tovább gombra való kattintással indítható a folyamat első lépése a formátum kiválasztásával. + A tündérrel különféle formátumú Bibliákat lehet importálni. Az alább található Tovább gombra való kattintással indítható a folyamat első lépése a formátum kiválasztásával. Select Import Source - Válassza ki az importálandó forrást + Válaszd ki az importálandó forrást Select the import format, and where to import from. - Válassza ki a importálandó forrást és a helyet, ahonnan importálja. + Válaszd ki az importálandó forrást és a helyet, ahonnan importálja. Format: - Formátum: + Formátum: OSIS - OSIS + CSV - + OpenSong - + Web Download - Web letöltés + Web letöltés File location: - + Fájl helye: Books location: - + Könyvek helye: Verse location: - + Vers helye: Bible filename: - + Biblia fájl: Location: - Hely: + Hely: Crosswalk - + BibleGateway - + Bible: - Biblia: + Biblia: Download Options - Letöltési beállítások + Letöltési beállítások Server: - Szerver: + Szerver: Username: - Felhasználói név: + Felhasználói név: Password: - Jelszó: + Jelszó: Proxy Server (Optional) - Proxy szerver (választható) + Proxy szerver (választható) License Details - Licenc részletek + Licenc részletek Set up the Bible's license details. - Állítsa be a Biblia licenc részleteit. + Állítsd be a Biblia licenc részleteit. Version name: - + Verzió neve: Copyright: - Copyright: + Szerzői jog: Permission: - Engedély: + Engedély: Importing - Importálás + Importálás Please wait while your Bible is imported. - Kérem, várjon, míg a Biblia importálás alatt áll. + Kérlek, várj, míg a Biblia importálás alatt áll. Ready. - Kész. + Kész. Invalid Bible Location - Érvénytelen a Biblia elérési útvonala + Érvénytelen a Biblia elérési útvonala You need to specify a file to import your Bible from. - Meg kell adni egy fájlt, amelyből a Bibliát importálni lehet. + Meg kell adni egy fájlt, amelyből a Bibliát importálni lehet. Invalid Books File - Érvénytelen könyv fájl + Érvénytelen könyv fájl You need to specify a file with books of the Bible to use in the import. - Meg kell adni egy fájlt a bibliai könyvekről az importáláshoz. + Meg kell adni egy fájlt a bibliai könyvekről az importáláshoz. Invalid Verse File - Érvénytelen versszak fájl + Érvénytelen versszak fájl You need to specify a file of Bible verses to import. - Meg kell adni egy fájlt a bibliai versekről az importáláshoz. + Meg kell adni egy fájlt a bibliai versekről az importáláshoz. Invalid OpenSong Bible - Érvénytelen OpenSong Biblia + Érvénytelen OpenSong Biblia You need to specify an OpenSong Bible file to import. - Meg kell adni egy OpenSong Biblia fájlt az importáláshoz. + Meg kell adni egy OpenSong Biblia fájlt az importáláshoz. Empty Version Name - Üres verziónév + Üres verziónév You need to specify a version name for your Bible. - Meg kell adni a Biblia verziószámát. + Meg kell adni a Biblia verziószámát. - + Empty Copyright - Üres a szerzői jog + Üres a szerzői jog - - You need to set a copyright for your Bible! Bibles in the Public Domain need to be marked as such. - Meg kell adni a szerzői jogokat! A közkincs Bibliákat meg kell jelölni ilyennek. - - - + Bible Exists - Biblia létezik + Biblia létezik - - This Bible already exists! Please import a different Bible or first delete the existing one. - Ez a Biblia már létezik! Kérem, importáljon egy másik Bibliát vagy előbb törölje a meglévőt. - - - + Open OSIS File - OSIS fájl megnyitása + OSIS fájl megnyitása - + Open Books CSV File - Könyv CSV fájl megnyitása + Könyv CSV fájl megnyitása - + Open Verses CSV File - Versszak CSV fájl megnyitása + Versszak CSV fájl megnyitása - + Open OpenSong Bible - OpenSong Biblia megnyitása + OpenSong Biblia megnyitása Starting import... - Importálás indítása... + Importálás indítása... - + Finished import. - Az importálás befejeződött. + Az importálás befejeződött. - + Your Bible import failed. - A Biblia importálása nem sikerült. + A Biblia importálása nem sikerült. + + + + You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. + Meg kell adni a Biblia szerzői jogait. A közkincs Bibliákat meg kell jelölni ilyennek. + + + + This Bible already exists. Please import a different Bible or first delete the existing one. + Ez a Biblia már létezik. Kérlek, importálj egy másik Bibliát vagy előbb töröld a meglévőt. BiblesPlugin.MediaItem - + + Bible + Biblia + + + Quick - Gyors + Gyors - + Advanced - Haladó + Haladó - + Version: - Verzió: + Verzió: - + Dual: - Második: + Második: - + Search type: - + Keresés típusa: - + Find: - Keresés: - - - - Search - Keresés - - - - Results: - Eredmények: - - - - Book: - Könyv: - - - - Chapter: - Fejezet: - - - - Verse: - Vers: - - - - From: - Innentől: + Keresés: + Search + Keresés + + + + Results: + Eredmények: + + + + Book: + Könyv: + + + + Chapter: + Fejezet: + + + + Verse: + Vers: + + + + From: + Innentől: + + + To: - Idáig: + Idáig: - + Verse Search - Vers keresése + Vers keresése - + Text Search - Szöveg keresése + Szöveg keresése - + Clear - + Törlés - + Keep - Megtartása + Megtartása - + No Book Found - Nincs ilyen könyv + Nincs ilyen könyv - + No matching book could be found in this Bible. - Nem található ilyen könyv ebben a Bibliában. + Nem található ilyen könyv ebben a Bibliában. - - etc - - - - + Bible not fully loaded. - + A Biblia nem töltődött be teljesen. @@ -754,15 +686,15 @@ Changes do not affect verses already in the service. Importing - Importálás + Importálás 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 Customs are. This plugin provides greater freedom over the Customs plugin. - + <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. + <strong>Egyedi bővítmény</strong><br />Az egyedi bővítmény dalokhoz hasonló egyedi diák vetítését teszi lehetővé. Ugyanakkor több szabadságot enged meg, mint a dalok bővítmény. @@ -770,17 +702,17 @@ Changes do not affect verses already in the service. Custom - Egyedi + Egyedi dia Custom Display - Egyedi megjelenés + Egyedi dia megjelenés Display footer - + Lábjegyzet megjelenítése @@ -788,369 +720,206 @@ Changes do not affect verses already in the service. Edit Custom Slides - Egyedi diák szerkesztése + Egyedi diák szerkesztése Move slide up one position. - + A dia eggyel feljebb helyezése. Move slide down one position. - + A dia eggyel lejjebb helyezése. &Title: - + &Cím: Add New - Új hozzáadása + Új hozzáadása Add a new slide at bottom. - + Új dia hozzáadása alulra. Edit - Szerkesztés + Szerkesztés Edit the selected slide. - + Kiválasztott dia szerkesztése. Edit All - Összes szerkesztése + Összes szerkesztése Edit all the slides at once. - + Minden kiválasztott dia szerkesztése egyszerre. Save - Mentés + Mentés Save the slide currently being edited. - + Az éppen szerkesztett dia mentése. Delete - Törlés + Törlés Delete the selected slide. - + Kiválasztott dia törlése. Clear - + Szöveg törlése Clear edit area - Szerkesztő terület törlése + Szerkesztő terület törlése Split Slide - Dia kettéválasztása + Dia kettéválasztása Split a slide into two by inserting a slide splitter. - + Dia ketté vágása egy diaelválasztó beszúrásával. The&me: - + &Téma: &Credits: - + &Közreműködők: Save && Preview - Mentés és előnézet + Mentés és előnézet Error - Hiba + Hiba You need to type in a title. - + Meg kell adnod a címet. You need to add at least one slide - + Meg kell adnod legalább egy diát You have one or more unsaved slides, please either save your slide(s) or clear your changes. - + Egy vagy több mentés nélküli dia van, kérlek, vagy ments el a diá(ka)t, vagy töröld a módosításokat. CustomPlugin.MediaItem - - You haven't selected an item to edit. - - - - - You haven't selected an item to delete. - - - - - CustomsPlugin - - + Custom - Egyedi + Egyedi dia - - Customs - + + You haven't selected an item to edit. + Nincs kiválasztott elem a szerkesztéshez. - - Import - Importálás - - - - Import a Custom - - - - - Load - - - - - Load a new Custom - - - - - Add - Hozzáadás - - - - Add a new Custom - - - - - Edit - Szerkesztés - - - - Edit the selected Custom - - - - - Delete - Törlés - - - - Delete the selected Custom - - - - - Preview - Előnézet - - - - Preview the selected Custom - - - - - Live - Egyenes adás - - - - Send the selected Custom live - - - - - Service - - - - - Add the selected Custom to the service - + + You haven't selected an item to delete. + Nincs kiválasztott elem a törléshez. 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 Images with the selected image as a background instead of the background provided by the theme. - - - - - Image - Kép - - - - Images - Képek - - - - Load - - - - - Load a new Image - - - - - Add - Hozzáadás - - - - Add a new Image - - - - - Edit - Szerkesztés - - - - Edit the selected Image - - - - - Delete - Törlés - - - - Delete the selected Image - - - - - Preview - Előnézet - - - - Preview the selected Image - - - - - Live - Egyenes adás - - - - Send the selected Image live - - - - - Service - - - - - Add the selected Image to the service - + <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. ImagePlugin.MediaItem - + + Image + Kép + + + Select Image(s) - Kép(ek) kiválasztása + Kép(ek) kiválasztása - + All Files - + Minden fájl - + Replace Live Background - + Élő adás hátterének cseréje - + Replace Background - + Háttér cseréje - + Reset Live Background - + Élő adás hátterének visszaállítása - + You must select an image to delete. - + Ki kell választani egy képet a törléshez. - + Image(s) - Kép(ek) + Kép(ek) - + You must select an image to replace the background with. - + Ki kell választani egy képet a háttér cseréjéhez. - + You must select a media file to replace the background with. - + Ki kell választani média fájlt a háttér cseréjéhez. @@ -1158,123 +927,43 @@ Changes do not affect verses already in the service. <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. - - - - - Media - Média - - - - Medias - - - - - Load - - - - - Load a new Media - - - - - Add - Hozzáadás - - - - Add a new Media - - - - - Edit - Szerkesztés - - - - Edit the selected Media - - - - - Delete - Törlés - - - - Delete the selected Media - - - - - Preview - Előnézet - - - - Preview the selected Media - - - - - Live - Egyenes adás - - - - Send the selected Media live - - - - - Service - - - - - Add the selected Media to the service - + <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é. MediaPlugin.MediaItem - - Select Media - Média kiválasztása - - - - Replace Live Background - - - - - Replace Background - - - - + Media - Média + Média - + + Select Media + Média kiválasztása + + + + Replace Live Background + Élő adás hátterének cseréje + + + + Replace Background + Háttér cseréje + + + You must select a media file to delete. - + Ki kell választani egy média fájlt a törléshez. OpenLP - + Image Files - + Kép fájlok @@ -1282,7 +971,7 @@ Changes do not affect verses already in the service. About OpenLP - Az OpenLP névjegye + Az OpenLP névjegye @@ -1293,18 +982,18 @@ OpenLP is free church presentation software, or lyrics projection software, used Find out more about OpenLP: http://openlp.org/ OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider contributing by using the button below. - OpenLP <version> összeállítás <revision> – Nyílt forrású dalszöveg vetítő + OpenLP <version> <revision> – Nyílt forrású dalszöveg vetítő Az OpenLP egy templomi/gyülekezeti, ill. dalszöveg vetítő szabad szoftver, mely használható daldiák, bibliai versek, videók, képek és bemutatók (ha az OpenOffice.org, PowerPoint vagy a PowerPoint Viewer telepítve van) vetítésére a gyülekezeti dicsőítés alatt egy számítógép és egy projektor segítségével. Többet az OpenLP-ről: http://openlp.org/ -Az OpenLP-t önkéntesek készítették és tartják karban. Ha szeretne több keresztény számítógépes programot, fontolja meg a részvételt az alábbi gombbal. +Az OpenLP-t önkéntesek készítették és tartják karban. Ha szeretnél több keresztény számítógépes programot, fontold meg a részvételt az alábbi gomb igénybevételével. About - Névjegy + Névjegy @@ -1346,12 +1035,49 @@ Built With PyQt4: http://www.riverbankcomputing.co.uk/software/pyqt/intro Oxygen Icons: http://oxygen-icons.org/ - + Projektvezetés + Raoul „superfly” Snyman + +Fejlesztők + Tim „TRB143” Bentley + Jonathan „gushie” Corwin + Michael „cocooncrash” Gorven + Scott „sguerrieri” Guerrieri + Raoul „superfly” Snyman + Martin „mijiti” Thompson + Jon „Meths” Tibble + +Közreműködők + Meinert „m2j” Jordan + Andreas „googol” Preikschat + Christian „crichter” Richter + Philip „Phill” Ridout + Maikel Stuivenberg + Carsten „catini” Tingaard + Frode „frodus” Woldsund + +Tesztelők + Philip „Phill” Ridout + Wesley „wrst” Stout (lead) + +Csomagkészítők + Thomas „tabthorpe” Abthorpe (FreeBSD) + Tim „TRB143” Bentley (Fedora) + Michael „cocooncrash” Gorven (Ubuntu) + Matthias „matthub” Hub (Mac OS X) + Raoul „superfly” Snyman (Windows, Ubuntu) + +Fordítva + 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/ + Credits - Közreműködők + Közreműködők @@ -1486,27 +1212,154 @@ Yoyodyne, Inc., hereby disclaims all copyright interest in the program "Gno Ty Coon, President of Vice This General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. - + Copyright © 2004-2010 Raoul Snyman +Részleges copyright © 2004-2010 Tim Bentley, Jonathan Corwin, Michael Gorven, Scott Guerrieri, Christian Richter, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Carsten Tinggaard + +Ez a program szabad szoftver; terjeszthető illetve módosítható a Free Software Foundation által kiadott GNU General Public License dokumentumában leírtak; akár a licenc 2-es, akár (tetszőleges) későbbi változata szerint. + +Ez a program abban a reményben kerül közreadásra, hogy hasznos lesz, de minden egyéb GARANCIA NÉLKÜL, az ELADHATÓSÁGRA vagy VALAMELY CÉLRA VALÓ ALKALMAZHATÓSÁGRA való származtatott garanciát is beleértve. További részleteket a GNU General Public License tartalmaz. + + +GNU GENERAL PUBLIC LICENSE +Version 2, June 1991 + +Copyright (C) 1989, 1991 Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. Bárki terjesztheti, másolhatja a dokumentumot, de a módosítása nem megengedett. (A fordítás csak tájékoztató jellegű és jogi szempontból csakis az angol eredeti a mérvadó.) + +Előszó + +A legtöbb szoftver licencei azzal a szándékkal készültek, hogy minél kevesebb lehetőséget adjanak a szoftver megváltoztatására és terjesztésére. Ezzel szemben a GNU GPL célja, hogy garantálja a szabad szoftver másolásának és terjesztésének szabadságát, ezáltal biztosítva a szoftver szabad felhasználhatóságát minden felhasználó számára. A GPL szabályai vonatkoznak a Free Software Foundation legtöbb szoftverére, illetve minden olyan programra, melynek szerzője úgy dönt, hogy ezt használja a szerzői jog megjelölésekor. (A Free Software Foundation egyes szoftvereire a GNU LGPL érvényes.) Bárki használhatja a programjaiban a GPL-t a szerzői jogi megjegyzésnél. + +A szabad szoftver megjelölés nem jelenti azt, hogy a szoftvernek nem lehet ára. A GPL licencek célja, hogy garantálja a szabad szoftver másolatainak szabad terjesztését (és e szolgáltatásért akár díj felszámítását), a forráskód elérhetőségét, hogy bárki szabadon módosíthassa a szoftvert, vagy felhasználhassa a részeit új szabad programokban; és hogy mások megismerhessék ezt a lehetőséget. + +A szerző jogainak védelmében korlátozásokat kell hozni, amelyek megtiltják, hogy bárki megtagadhassa ezeket a jogokat másoktól, vagy ezekről való lemondásra kényszerítsen bárki mást. Ezek a megszorítások bizonyos felelősségeket jelentenek azok számára, akik a szoftver másolatait terjesztik vagy módosítják. + +Ha valaki például ilyen program másolatait terjeszti, akár ingyen vagy bizonyos összeg fejében, a szoftverre vonatkozó minden jogot tovább kell adnia a fogadó feleknek. Biztosítani kell továbbá, hogy megkapják vagy legalábbis megkaphassák a forráskódot is. És persze ezeket a licencfeltételeket is el kell juttatni, hogy tisztában legyenek a jogaikkal. + +A jogok védelme két lépésből áll: + +(1) a szoftver szerzői jogainak védelméből és + +(2) a jelen licenc biztosításából, amely jogalapot biztosít a szoftver másolására, terjesztésére és/vagy módosítására. + +Az egyes szerzők és a magunk védelmében biztosítani akarjuk, hogy mindenki megértse: a jelen szabad szoftverre nincs jótállás. Ha a szoftvert módosították és továbbadták, akkor mindenkinek, aki a módosított változatot kapja, tudnia kell, hogy az nem az eredeti, így a mások által okozott hibáknak nem lehet hatása az eredeti szerző hírnevére. + +Végül, a szabad szoftver létét állandóan fenyegetik a szoftverszabadalmak. El szeretnénk kerülni annak veszélyét, hogy a szabad program terjesztői szabadalmat jegyezhessenek be rá, ezáltal saját szellemi tulajdont képezővé tegyék a programot. Ennek megelőzéséhez tisztázni kívánjuk: szabadalom szabad szoftverrel kapcsolatban csak mindenki általi szabad használatra jegyezhető be, vagy egyáltalán nem jegyezhető be. + +A másolásra, terjesztésre, módosításra vonatkozó pontos szabályok és feltételek: +A MÁSOLÁSRA, TERJESZTÉSRE ÉS MÓDOSÍTÁSRA VONATKOZÓ FELTÉTELEK ÉS KIKÖTÉSEK + +0. Ez a licenc minden olyan programra vagy munkára vonatkozik, amelynek a szerzői jogi megjegyzésében a jog tulajdonosa a következő szöveget helyezte el: a GPL-ben foglaltak alapján terjeszthető. Az alábbiakban a Program kifejezés bármely ilyen programra vagy munkára vonatkozik, a Programon alapuló munka pedig magát a programot vagy egy szerzői joggal védett munkát jelenti: vagyis olyan munkát, amely tartalmazza a programot vagy annak egy részletét, módosítottan vagy módosítatlanul és/vagy más nyelvre fordítva. (Az alábbiakban a fordítás minden egyéb megkötés nélkül beletartozik a módosítás fogalmába.) Minden engedélyezés címzettje Ön. + +A jelen licenc a másoláson, terjesztésen és módosításon kívül más tevékenységre nem vonatkozik, azok a hatályán kívül esnek. A Program futtatása nincs korlátozva, illetve a Program kimenetére is csak abban az esetben vonatkozik ez a szabályozás, ha az tartalmazza a Programon alapuló munka egy részletét (függetlenül attól, hogy ez a Program futtatásával jött-e létre). Ez tehát a Program működésétől függ. + +1. A Program forráskódja módosítás nélkül másolható és bármely adathordozón terjeszthető, feltéve, hogy minden egyes példányon pontosan szerepel a megfelelő szerzői jogi megjegyzés, illetve a garanciavállalás elutasítása; érintetlenül kell hagyni minden erre a szabályozásra és a garancia teljes hiányára utaló szöveget és a jelen licencdokumentumot is el kell juttatni mindazokhoz, akik a Programot kapják. + +Felszámítható díj a másolat fizikai továbbítása fejében, illetve ellenszolgáltatás fejében a Programhoz garanciális támogatás is biztosítható. + +2. A Program vagy annak egy része módosítható, így a Programon alapuló munka jön létre. A módosítás ezután az 1. szakaszban adott feltételek szerint tovább terjeszthető, ha az alábbi feltételek is teljesülnek: + +a) A módosított fájlokat el kell látni olyan megjegyzéssel, amely feltünteti a módosítást végző nevét és a módosítások dátumát. + +b) Minden olyan munkát, amely részben vagy egészben tartalmazza a Programot vagy a Programon alapul, olyan szabályokkal kell kiadni vagy terjeszteni, hogy annak használati joga harmadik személy részére licencdíjmentesen hozzáférhető legyen, a jelen dokumentumban található feltételeknek megfelelően. + +c) Ha a módosított Program interaktívan olvassa a parancsokat futás közben, akkor úgy kell elkészíteni, hogy a megszokott módon történő indításkor megjelenítsen egy üzenetet a megfelelő szerzői jogi megjegyzéssel és a garancia hiányára utaló közléssel (vagy éppen azzal az információval, hogy miként juthat valaki garanciához), illetve azzal az információval, hogy bárki terjesztheti a Programot a jelen feltételeknek megfelelően, és arra is utalást kell tenni, hogy a felhasználó miként tekintheti meg a licenc egy példányát. (Kivétel: ha a Program interaktív ugyan, de nem jelenít meg hasonló üzenetet, akkor a Programon alapuló munkának sem kell ezt tennie.) + +Ezek a feltételek a módosított munkára, mint egészre vonatkoznak. Ha a munka azonosítható részei nem a Programon alapulnak és független munkákként elkülönülten azonosíthatók, akkor ez a szabályozás nem vonatkozik ezekre a részekre, ha azok külön munkaként kerülnek terjesztésre. Viszont, ha ugyanez a rész az egész részeként kerül terjesztésre, amely a Programon alapuló munka, akkor az egész terjesztése csak a jelen dokumentum alapján lehetséges, amely ebben az esetben a jogokat minden egyes felhasználó számára kiterjeszti az egészre tekintet nélkül arra, hogy melyik részt ki írta. + +E szövegrésznek tehát nem az a célja, hogy mások jogait elvegye vagy korlátozza a kizárólag saját maga által írt munkákra; a cél az, hogy a jogok gyakorlása szabályozva legyen a Programon alapuló illetve a gyűjteményes munkák terjesztése esetében. + +Ezenkívül más munkáknak, amelyek nem a Programon alapulnak, a Programmal (vagy a Programon alapuló munkával) közös adathordozón vagy adattárolón szerepeltetése nem jelenti a jelen szabályok érvényességét azokra is. + +3. A Program (vagy a Programon alapuló munka a 2. szakasznak megfelelően) másolható és terjeszthető tárgykódú vagy végrehajtható kódú formájában az 1. és 2. szakaszban foglaltak szerint, amennyiben az alábbi feltételek is teljesülnek: + +a) a teljes, gép által értelmezhető forráskód kíséri az anyagot, amelynek terjesztése az 1. és 2. szakaszban foglaltak szerint történik, jellemzően szoftverterjesztésre használt adathordozón; vagy, + +b) legalább három évre szólóan írásban vállalja, hogy bármely külső személynek rendelkezésre áll a teljes gép által értelmezhető forráskód, a fizikai továbbítást fedező összegnél nem nagyobb díjért az 1. és 2. szakaszban foglaltak szerint szoftverterjesztésre használt adathordozón; vagy, + +c) a megfelelő forráskód terjesztésére vonatkozóan megkapott tájékoztatás kíséri az anyagot. (Ez az alternatíva csak nem kereskedelmi terjesztés esetén alkalmazható abban az esetben, ha a terjesztő a Programhoz a tárgykódú vagy forráskódú formájában jutott hozzá az ajánlattal együtt a fenti b. cikkelynek megfelelően.) + +Egy munka forráskódja a munkának azt a formáját jelenti, amelyben a módosításokat elsődlegesen végezni szokás. Egy végrehajtható program esetében a teljes forráskód a tartalmazott összes modul forráskódját jelenti, továbbá a kapcsolódó felületdefiníciós fájlokat és a fordítást vezérlő parancsfájlokat. Egy speciális kivételként a forráskódnak nem kell tartalmaznia normál esetben a végrehajtható kód futtatására szolgáló operációs rendszer főbb részeiként (kernel, fordítóprogram stb.) terjesztett részeit (forrás vagy bináris formában), kivéve, ha a komponens maga a végrehajtható állományt kíséri. + +Ha a végrehajtható program vagy tárgykód terjesztése a forráskód hozzáférését egy megadott helyen biztosító írásban vállalja, akkor ez egyenértékű a forráskód terjesztésével, bár másoknak nem kell a forrást lemásolniuk a tárgykóddal együtt. + +4. A Programot csak a jelen Licencben leírtaknak megfelelően szabad lemásolni, terjeszteni, módosítani és allicencbe adni. Az egyéb módon történő másolás, módosítás, terjesztés és allicencbe adás érvénytelen, és azonnal érvényteleníti a dokumentumban megadott jogosultságokat. Mindazonáltal azok, akik a Licencet megszegőtől kaptak példányokat vagy jogokat, tovább gyakorolhatják a Licenc által meghatározott jogaikat mindaddig, amíg teljesen megfelelnek a Licenc feltételeinek. + +5. Önnek nem kötelező elfogadnia ezt a szabályozást, hiszen nem írta alá. Ezen kívül viszont semmi más nem ad jogokat a Program terjesztésére és módosítására. Ezeket a cselekedeteket a törvény bünteti, ha nem a jelen szerzői jogi szabályozás keretei között történnek. Mindezek miatt a Program (vagy a Programon alapuló munka) terjesztése vagy módosítása a jelen dokumentum szabályainak, és azon belül a Program vagy a munka módosítására, másolására vagy terjesztésére vonatkozó összes feltételének elfogadását jelenti. + +6. Minden alkalommal, amikor a Program (vagy az azon alapuló munka) továbbadása történik, a Programot megkapó személy automatikusan hozzájut az eredeti licenctulajdonostól származó licenchez, amely a jelen szabályok szerint biztosítja a jogot a Program másolására, terjesztésére és módosítására. Nem lehet semmilyen módon tovább korlátozni a fogadó félnek az itt megadott jogait. A Program továbbadója nem felelős harmadik személyekkel betartatni a jelen szabályokat. + +7. Ha bírósági határozat, szabadalomsértés vélelme, vagy egyéb (nem kizárólag szabadalmakkal kapcsolatos) okból olyan feltételeknek kell megfelelnie (akár bírósági határozat, akár megállapodás, akár bármi más eredményeképp), amelyek ellentétesek a jelen feltételekkel, az nem menti fel a terjesztőt a jelen feltételek figyelembevétele alól. Ha a terjesztés nem lehetséges a jelen Licenc és az egyéb feltételek kötelezettségeinek együttes betartásával, akkor tilos a Program terjesztése. Ha például egy szabadalmi szerződés nem engedi meg egy program jogdíj nélküli továbbterjesztését azok számára, akik közvetve vagy közvetlenül megkapják, akkor az egyetlen módja, hogy eleget tegyen valaki mindkét feltételnek az, hogy eláll a Program terjesztésétől. + +Ha ennek a szakasznak bármely része érvénytelen, vagy nem érvényesíthető valamely körülmény folytán, akkor a szakasz maradék részét kell alkalmazni, egyéb esetekben pedig a szakasz egésze alkalmazandó. + +Ennek a szakasznak nem az a célja, hogy a szabadalmak vagy egyéb hasonló jogok megsértésére ösztönözzön bárkit is; mindössze meg szeretné védeni a szabad szoftver terjesztési rendszerének egységét, amelyet a szabad közreadást szabályozó feltételrendszerek teremtenek meg. Sok ember nagymértékben járult hozzá az e rendszer keretében terjesztett, különféle szoftverekhez, és számít a rendszer következetes alkalmazására; azt a szerző/adományozó dönti el, hogy a szoftverét más rendszer szerint is közzé kívánja-e tenni, és a licencet kapók ezt nem befolyásolhatják. + +E szakasz célja, hogy pontosan tisztázza azt, ami elgondolásunk szerint a jelen licenc többi részének a következménye. + +8. Ha a Program terjesztése és/vagy használata egyes országokban nem lehetséges akár szabadalmak, akár szerzői jogokkal védett felületek miatt, akkor a Program szerzői jogainak eredeti tulajdonosa, aki a Programot ezen szabályozás alapján adja közre, egy explicit földrajzi megkötést adhat a terjesztésre, és egyes országokat kizárhat. Ebben az esetben úgy tekintendő, hogy a jelen licenc ezt a megkötést is tartalmazza, ugyanúgy mintha csak a fő szövegében lenne leírva. + +9. A Free Software Foundation időről időre kiadja a General Public License dokumentum felülvizsgált és/vagy újabb változatait. Ezek az újabb dokumentumok az előzőek szellemében készülnek, de részletekben különbözhetnek, hogy új problémákat vagy aggályokat is kezeljenek. + +A dokumentum minden változata egy megkülönböztető verziószámmal ellátva jelenik meg. Ha a Program szerzői jogi megjegyzésében egy bizonyos vagy annál újabb verzió van megjelölve, akkor lehetőség van akár a megjelölt, vagy a Free Software Foundation által kiadott későbbi verzióban leírt feltételek követésére. Ha nincs ilyen megjelölt verzió, akkor lehetőség van a Free Software Foundation által valaha kibocsátott bármelyik dokumentum alkalmazására. + +10. A Programot más szabad szoftverbe, amelynek szerzői jogi szabályozása különbözik, csak akkor építheti be, ha a szerzőtől erre engedélyt szerzett. Abban az esetben, ha a program szerzői jogainak tulajdonosa a Free Software Foundation, akkor a Free Software Foundation címére kell írni; néha kivételt teszünk. A döntés a következő két cél szem előtt tartásával fog történni: megmaradjon a szabad szoftveren alapuló munkák szabad állapota, valamint segítse elő a szoftver újrafelhasználását és megosztását. +GARANCIAVÁLLALÁS HIÁNYA + +11. MIVEL A JELEN PROGRAM HASZNÁLATI JOGA DÍJMENTES, AZ ALKALMAZHATÓ JOGSZABÁLYOK ÁLTAL BIZTOSÍTOTT MAXIMÁLIS MÉRTÉKBEN VISSZAUTASÍTJUK A PROGRAMHOZ A GARANCIA BIZTOSÍTÁSÁT. AMENNYIBEN A SZERZŐI JOGOK TULAJDONOSAI ÍRÁSBAN MÁSKÉNT NEM NYILATKOZNAK, A PROGRAM A &quot;JELEN ÁLLAPOTÁBAN&quot; KERÜL KIADÁSRA, MINDENFÉLE GARANCIAVÁLLALÁS NÉLKÜL, LEGYEN AZ KIFEJEZETT VAGY BELEÉRTETT, BELEÉRTVE, DE NEM KIZÁRÓLAGOSAN A FORGALOMBA HOZHATÓSÁGRA VAGY ALKALMAZHATÓSÁGRA VONATKOZÓ GARANCIÁKAT. A PROGRAM MINŐSÉGÉBŐL ÉS MŰKÖDÉSÉBŐL FAKADÓ ÖSSZES KOCKÁZAT A FELHASZNÁLÓT TERHELI. HA A PROGRAM HIBÁSAN MŰKÖDIK, A FELHASZNÁLÓNAK MAGÁNAK KELL VÁLLALNIA A JAVÍTÁSHOZ SZÜKSÉGES MINDEN KÖLTSÉGET. + +12. AMENNYIBEN A HATÁLYOS JOGSZABÁLYOK VAGY A SZERZŐI JOGOK TULAJDONOSAI ÍRÁSOS MEGÁLLAPODÁSBAN MÁSKÉNT NEM RENDELKEZNEK, SEM A PROGRAM SZERZŐJE, SEM MÁSOK, AKIK MÓDOSÍTOTTÁK ÉS/VAGY TERJESZTETTÉK A PROGRAMOT A FENTIEKNEK MEGFELELŐEN, NEM TEHETŐK FELELŐSSÉ A KÁROKÉRT, BELEÉRTVE MINDEN VÉLETLEN, VAGY KÖVETKEZMÉNYES KÁRT, AMELY A PROGRAM HASZNÁLATÁBÓL VAGY A HASZNÁLAT MEGAKADÁLYOZÁSÁBÓL SZÁRMAZIK (BELEÉRTVE, DE NEM KIZÁRÓLAGOSAN AZ ADATVESZTÉST ÉS A HELYTELEN ADATFELDOLGOZÁST, VALAMINT A MÁS PROGRAMOKKAL VALÓ HIBÁS EGYÜTTMŰKÖDÉST), MÉG AKKOR SEM, HA EZEN FELEK TUDATÁBAN VOLTAK, HOGY ILYEN KÁROK KELETKEZHETNEK. + +FELTÉTELEK ÉS SZABÁLYOK VÉGE +Hogyan alkalmazhatók ezek a szabályok egy új programra? +Ha valaki egy új programot készít és szeretné, hogy az bárki számára a lehető leginkább hasznos legyen, akkor a legjobb módszer, hogy azt szabad szoftverré teszi, megengedve mindenkinek a szabad másolást és módosítást a jelen feltételeknek megfelelően. + +Ehhez a következő megjegyzést kell csatolni a programhoz. A legbiztosabb ezt minden egyes forrásfájl elejére beírni, így közölve leghatásosabban a garancia visszautasítását; ezenkívül minden fájl kell, hogy tartalmazzon egy copyright sort és egy mutatót arra a helyre, ahol a teljes szöveg található. + +Egy sor, amely megadja a program nevét és funkcióját +Copyright (C) év; szerző neve; + +Ez a program szabad szoftver; terjeszthető illetve módosítható a Free Software Foundation által kiadott GNU General Public License dokumentumában leírtak; akár a licenc 2-es, akár (tetszőleges) későbbi változata szerint. + +Ez a program abban a reményben kerül közreadásra, hogy hasznos lesz, de minden egyéb GARANCIA NÉLKÜL, az ELADHATÓSÁGRA vagy VALAMELY CÉLRA VALÓ ALKALMAZHATÓSÁGRA való származtatott garanciát is beleértve. További részleteket a GNU General Public License tartalmaz. + +A felhasználónak a programmal együtt meg kell kapnia a GNU General Public License egy példányát; ha mégsem kapta meg, akkor ezt a Free Software Foundationnak küldött levélben jelezze (cím: Free Software Foundation Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.) + +A programhoz csatolni kell azt is, hogy miként lehet kapcsolatba lépni a szerzővel, elektronikus vagy hagyományos levél küldésével. + +Ha a program interaktív, a következőhöz hasonló üzenettel lehet ezt megtenni a program indulásakor: + +Gnomovision version 69, Copyright (C) év, a szerző neve. +A Gnomovision programhoz SEMMILYEN GARANCIA NEM JÁR; részletekért írja be a &apos;show w&apos; parancsot. Ez egy szabad szoftver, bizonyos feltételek mellett terjeszthető, illetve módosítható; részletekért írja be a &apos;show c&apos; parancsot. + +A show w és show c képzeletbeli parancsok, és a GPL megfelelő részeit kell megjeleníteniük. Természetesen a valódi parancsok a show w és show c parancstól különbözhetnek; lehetnek akár egérkattintások vagy menüpontok is, ami a programnak megfelel. + +Ha szükséges, meg kell szerezni a munkáltatótól (ha a szerző programozóként dolgozik) vagy az iskolától a program szerzői jogairól való lemondás igazolását. Erre itt egy példa; változtassa meg a neveket: + +A Fiktív Bt. ezennel lemond minden szerzői jogi érdekeltségéről a „Gnomovision” programmal (amelyet több fázisban fordítanak le a fordítóprogramok) kapcsolatban, amelyet H. Ekker János írt. + +Aláírás: Tira Mihály, 1989. április 1. Tira Mihály ügyvezető + +A GNU General Public License nem engedi meg, hogy a program része legyen szellemi tulajdont képező programoknak. Ha a program egy szubrutinkönyvtár, akkor megfontolhatja, hogy nem célszerűbb-e megengedni, hogy szellemi tulajdont képező alkalmazásokkal is összefűzhető legyen a programkönyvtár. Ha ezt szeretné, akkor a GPL helyett a GNU LGPL-t kell használni. License - Licenc + Licenc Contribute - Részvétel + Részvétel Close - Bezárás + Bezárás build %s - + @@ -1514,27 +1367,27 @@ This General Public License does not permit incorporating your program into prop Advanced - Haladó + Haladó UI Settings - + Felhasználói felület beállításai Number of recent files to display: - + Előzmények megjelenítésének hossza: Remember active media manager tab on startup - + Újraindításkor visszaállítsa az aktív médiakezelő fülét Double-click to send items straight to live (requires restart) - + Dupla kattintással egyenesen az élő adásba küldés (újraindítás szükséges) @@ -1542,310 +1395,310 @@ This General Public License does not permit incorporating your program into prop Theme Maintenance - Témák kezelése + Témák kezelése Theme &name: - + Téma &neve: Type: - Típus: + Típus: Solid Color - Homogén szín + Homogén szín Gradient - Színátmenet + Színátmenet Image - Kép + Kép Image: - Kép: + Kép: Gradient: - + Színátmenet: Horizontal - Vízszintes + Vízszintes Vertical - Függőleges + Függőleges Circular - Körkörös + Körkörös &Background - + &Háttér Main Font - Alap betűkészlet + Alap betűkészlet Font: - Betűkészlet: + Betűkészlet: Color: - + Szín: Size: - Méret: + Méret: pt - + Adjust line spacing: - + Sorköz igazítása: Normal - Normál + Normál Bold - Félkövér + Félkövér Italics - Dőlt + Dőlt Bold/Italics - Félkövér dőlt + Félkövér dőlt Style: - + Stílus: Display Location - Hely megjelenítése + Hely megjelenítése Use default location - + Alapértelmezett hely alkalmazása X position: - + X pozíció: Y position: - + Y pozíció: Width: - Szélesség: + Szélesség: Height: - Magasság: + Magasság: px - + &Main Font - + &Alap betűkészlet Footer Font - Lábjegyzet betűkészlete + Lábjegyzet betűkészlete &Footer Font - + &Lábjegyzet betűkészlete Outline - Körvonal + Körvonal Outline size: - + Körvonal mérete: Outline color: - + Körvonal színe: Show outline: - + Körvonal megjelenítése: Shadow - Árnyék + Árnyék Shadow size: - + Árnyék mérete: Shadow color: - + Árnyék színe: Show shadow: - + Árnyék megjelenítése: Alignment - Igazítás + Igazítás Horizontal align: - + Vízszintes igazítás: Left - Balra zárt + Balra zárt Right - Jobbra zárt + Jobbra zárt Center - Középre igazított + Középre igazított Vertical align: - + Függőleges igazítás: Top - + Felülre Middle - Középre + Középre Bottom - + Alulra Slide Transition - Diaátmenet + Diaátmenet Transition active - + Aktív átmenet &Other Options - + &További beállítások Preview - Előnézet + Előnézet All Files - + Minden fájl Select Image - + Kép kiválasztása First color: - + Első szín: Second color: - + Második szín: Slide height is %s rows. - + A dia magassága %s sor. OpenLP.ExceptionDialog - - - Error Occured - - 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. - + Hoppá! Az OpenLP hibába ütközött, és nem tudta lekezelni. Az alábbi dobozban található szöveg olyan információkat tartalmaz, amelyek hasznosak lehetnek az OpenLP fejlesztői számára, tehát kérjük, küld el bugs@openlp.org email címre egy részletes leírás mellett, amely tartalmazza, hogy éppen merre és mit tettél, amikor a hiba történt. + + + + Error Occurred + Hiba történt @@ -1853,643 +1706,716 @@ This General Public License does not permit incorporating your program into prop General - Általános + Általános Monitors - Monitorok + Monitorok Select monitor for output display: - Válassza ki a vetítési képernyőt: + Válaszd ki a vetítési képernyőt: Display if a single screen - Megjelenítés egy képernyő esetén + Megjelenítés egy képernyő esetén Application Startup - Alkalmazás indítása + Alkalmazás indítása Show blank screen warning - Figyelmeztetés megjelenítése a fekete képernyőről + Figyelmeztetés megjelenítése a fekete képernyőről Automatically open the last service - Utolsó szolgálat automatikus megnyitása + Utolsó szolgálat automatikus megnyitása Show the splash screen - Indító képernyő megjelenítése + Indító képernyő megjelenítése Application Settings - Alkalmazás beállítások + Alkalmazás beállítások Prompt to save before starting a new service - + Rákérdezés mentésre új szolgálat kezdése előtt Automatically preview next item in service - + Következő elem automatikus előnézete a szolgálatban Slide loop delay: - + Időzített diák késleltetése: sec - + mp CCLI Details - CCLI részletek + CCLI részletek CCLI number: - + CCLI szám: SongSelect username: - + SongSelect felhasználói név: SongSelect password: - + SongSelect jelszó: Display Position - + Megjelenítés pozíciója X - + Y - + Height - + Magasság Width - + Szélesség Override display position - + Megjelenítési pozíció felülírása Screen - Képernyő + Képernyő primary - elsődleges + elsődleges OpenLP.LanguageManager - + Language - Nyelv + 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. OpenLP.MainWindow - - - New Service - Új szolgálat - - - - Open Service - Szolgálat megnyitása - - - - Save Service - Szolgálat mentése - OpenLP 2.0 - - - - - AddHereYourLanguageName - + &File - &Fájl + &Fájl &Import - &Importálás + &Importálás &Export - &Exportálás + &Exportálás &View - &Nézet + &Nézet M&ode - &Mód + &Mód &Tools - &Eszközök + &Eszközök &Settings - &Beállítások + &Beállítások &Language - &Nyelv + &Nyelv &Help - &Súgó + &Súgó Media Manager - Médiakezelő + Médiakezelő Service Manager - Szolgálatkezelő + Szolgálatkezelő Theme Manager - Témakezelő + Témakezelő &New - &Új + &Új + + + + New Service + Új szolgálat Create a new service. - + Új szolgálat létrehozása. Ctrl+N - + &Open - &Megnyitás + &Megnyitás + + + + Open Service + Szolgálat megnyitása Open an existing service. - + Meglévő szolgálat megnyitása. Ctrl+O - + &Save - + &Mentés + + + + Save Service + Szolgálat mentése Save the current service to disk. - + Aktuális szolgálat mentése lemezre. Ctrl+S - + Save &As... - Mentés má&sként... + Mentés má&sként... Save Service As - Szolgálat mentése másként + Szolgálat mentése másként Save the current service under a new name. - + Az aktuális szolgálat más néven való mentése. Ctrl+Shift+S - + E&xit - &Kilépés + &Kilépés Quit OpenLP - OpenLP bezárása + OpenLP bezárása Alt+F4 - + &Theme - &Téma + &Téma &Configure OpenLP... - + OpenLP &beállítása... &Media Manager - &Médiakezelő + &Médiakezelő Toggle Media Manager - Médiakezelő átváltása + Médiakezelő átváltása Toggle the visibility of the media manager. - + A médiakezelő láthatóságának átváltása. F8 - + &Theme Manager - &Témakezelő + &Témakezelő Toggle Theme Manager - Témakezelő átváltása + Témakezelő átváltása Toggle the visibility of the theme manager. - + A témakezelő láthatóságának átváltása. F10 - + &Service Manager - &Szolgálatkezelő + &Szolgálatkezelő Toggle Service Manager - Szolgálatkezelő átváltása + Szolgálatkezelő átváltása Toggle the visibility of the service manager. - + A szolgálatkezelő láthatóságának átváltása. F9 - + &Preview Panel - &Előnézet panel + &Előnézet panel Toggle Preview Panel - Előnézet panel átváltása + Előnézet panel átváltása Toggle the visibility of the preview panel. - + Az előnézet panel láthatóságának átváltása. F11 - + &Live Panel - + &Élő adás panel Toggle Live Panel - + Élő adás panel átváltása Toggle the visibility of the live panel. - + Az élő adás panel láthatóságának átváltása. F12 - + &Plugin List - &Bővítménylista + &Bővítménylista List the Plugins - Bővítmények listája + Bővítmények listája Alt+F7 - + &User Guide - &Felhasználói kézikönyv + &Felhasználói kézikönyv &About - &Névjegy + &Névjegy More information about OpenLP - Több információ az OpenLP-ről + További információ az OpenLP-ről Ctrl+F1 - + &Online Help - &Online súgó + &Online súgó &Web Site - &Weboldal + &Weboldal &Auto Detect - &Automatikus felismerés + &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 Add &Tool... - &Eszköz hozzáadása... + &Eszköz hozzáadása... Add an application to the list of tools. - + Egy alkalmazás hozzáadása az eszközök listához. &Default - + &Alapértelmezett Set the view mode back to the default. - + Nézetmód visszaállítása az alapértelmezettre. &Setup - + &Szerkesztés Set the view mode to Setup. - + Nézetmód váltása a Beállítás módra. &Live - &Egyenes adás + &Élő adás Set the view mode to Live. - + 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/. - + Már letölthető az OpenLP %s verziója (jelenleg a %s verzió fut). + +A legfrissebb verzió a http://openlp.org/ oldalról szerezhető be. OpenLP Version Updated - OpenLP verziófrissítés + OpenLP verziófrissítés - + OpenLP Main Display Blanked - Sötét OpenLP fő képernyő + Sötét OpenLP fő képernyő - + The Main Display has been blanked out - A fő képernyő el lett sötétítve + A fő képernyő el lett sötétítve - + Save Changes to Service? - + Mentsük a változásokat a szolgálatban? - + Your service has changed. Do you want to save those changes? - + A szolgálat módosult. Szeretné elmenteni? - + Default Theme: %s - + Alapértelmezett téma: %s - + English + Please add the name of your language here Magyar OpenLP.MediaManagerItem - + No Items Selected - Nincs kiválasztott elem + Nincs kiválasztott elem - + + Import %s + %s importálása + + + + Import a %s + Egy %s importálása + + + + Load %s + %s betöltése + + + + Load a new %s + Új %s betöltése + + + + New %s + Új %s + + + + Add a new %s + Új %s hozzáadása + + + + Edit %s + %s szerkesztése + + + + Edit the selected %s + A kiválasztott %s szerkesztése + + + + Delete %s + %s törlése + + + + Delete the selected item + Kiválasztott elem törlése + + + + Preview %s + %s előnézete + + + + Preview the selected item + A kiválasztott elem előnézete + + + + Send the selected item live + A kiválasztott elem élő adásba küldése + + + + Add %s to Service + %s hozzáadása a szolgálathoz + + + + Add the selected item(s) to the service + A kiválasztott elem(ek) hozzáadása a szolgálathoz + + + &Edit %s - + %s sz&erkesztése - + &Delete %s - + %s &törlése - + &Preview %s - + %s elő&nézete - + &Show Live - Egyenes &adásba + Élő &adásba - + &Add to Service - &Hozzáadás a szolgálathoz + &Hozzáadás a szolgálathoz - + &Add to selected Service Item - &Hozzáadás a kiválasztott szolgálat elemhez + &Hozzáadás a kiválasztott szolgálat elemhez - + You must select one or more items to preview. - + Ki kell választani egy elemet az előnézethez. - + You must select one or more items to send live. - + Ki kell választani egy élő adásba küldendő elemet. - + You must select one or more items. - Ki kell választani egy vagy több elemet. + Ki kell választani egy vagy több elemet. - + No items selected - Nincs kiválasztott elem + Nincs kiválasztott elem - + You must select one or more items - Ki kell választani egy vagy több elemet + Ki kell választani egy vagy több elemet - + No Service Item Selected - Nincs kiválasztott szolgálat elem + Nincs kiválasztott szolgálat elem - + You must select an existing service item to add to. - Ki kell választani egy szolgálati elemet, amihez hozzá szeretné adni. + Ki kell választani egy szolgálati elemet, amihez hozzá szeretné adni. - + Invalid Service Item - Érvénytelen szolgálat elem + Érvénytelen szolgálat elem - + You must select a %s service item. - + Ki kell választani egy %s szolgálati elemet. @@ -2497,52 +2423,52 @@ You can download the latest version from http://openlp.org/. Plugin List - Bővítménylista + Bővítménylista Plugin Details - Bővítmény részletei + Bővítmény részletei Version: - Verzió: + Verzió: About: - Névjegy: + Névjegy: Status: - Állapot: + Állapot: Active - Aktív + Aktív Inactive - Inaktív + Inaktív - + %s (Inactive) - + %s (inaktív) - + %s (Active) - + %s (aktív) - + %s (Disabled) - + %s (letiltott) @@ -2550,22 +2476,22 @@ You can download the latest version from http://openlp.org/. Reorder Service Item - + Szolgálati elemek újrarendezése Up - Fel + Fel Delete - Törlés + Törlés Down - Le + Le @@ -2573,178 +2499,184 @@ You can download the latest version from http://openlp.org/. New Service - Új szolgálat + Új szolgálat Create a new service - Új szolgálat létrehozása + Új szolgálat létrehozása - + Open Service - Szolgálat megnyitása + Szolgálat megnyitása Load an existing service - Egy meglévő szolgálat betöltése + Egy meglévő szolgálat betöltése - + Save Service - Szolgálat mentése + Szolgálat mentése Save this service - Aktuális szolgálat mentése + Aktuális szolgálat mentése Theme: - Téma: + Téma: Select a theme for the service - + Válasszon egy témát a szolgálathoz Move to &top - Mozgatás &felülre + Mozgatás &felülre Move item to the top of the service. - + Elem mozgatása a szolgálat elejére. Move &up - Mozgatás f&eljebb + Mozgatás f&eljebb Move item up one position in the service. - + Elem mozgatása a szolgálatban eggyel feljebb. Move &down - Mozgatás &lejjebb + Mozgatás &lejjebb Move item down one position in the service. - + Elem mozgatása a szolgálatban eggyel lejjebb. Move to &bottom - Mozgatás &alulra + Mozgatás &alulra Move item to the end of the service. - + Elem mozgatása a szolgálat végére. &Delete From Service - &Törlés a szolgálatból + &Törlés a szolgálatból Delete the selected item from the service. - + Kiválasztott elem törlése a szolgálatból. &Add New Item - Új elem &hozzáadása + Új elem &hozzáadása &Add to Selected Item - &Hozzáadás a kiválasztott elemhez + &Hozzáadás a kiválasztott elemhez &Edit Item - &Elem szerkesztése + &Elem szerkesztése &Reorder Item - + Elem újra&rendezése &Notes - &Jegyzetek + &Jegyzetek &Preview Verse - Versszak &előnézete + Versszak &előnézete &Live Verse - &Adásban lévő versszak + &Adásban lévő versszak &Change Item Theme - + Elem témájának &módosítása - + Save Changes to Service? - + Mentsük a változásokat a szolgálatban? - + Your service is unsaved, do you want to save those changes before creating a new one? - A szolgálat nincs elmentve, szeretné menteni, mielőtt az újat létrehozná? + A szolgálat nincs elmentve, szeretné menteni, mielőtt az újat létrehozná? - + OpenLP Service Files (*.osz) - + OpenLP szolgálat fájlok (*.osz) - + Your current service is unsaved, do you want to save the changes before opening a new one? - A szolgálat nincs elmentve, szeretné menteni, mielőtt az újat megnyitná? + A szolgálat nincs elmentve, szeretné menteni, mielőtt az újat megnyitná? - + Error - Hiba + Hiba - + 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ő + 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é + 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 @@ -2752,7 +2684,7 @@ The content encoding is not UTF-8. Service Item Notes - Szolgálat elem jegyzetek + Szolgálat elem jegyzetek @@ -2760,7 +2692,7 @@ The content encoding is not UTF-8. Configure OpenLP - + OpenLP beállítása @@ -2768,95 +2700,80 @@ The content encoding is not UTF-8. Live - Egyenes adás + Élő adás Preview - Előnézet + Előnézet Move to previous - Mozgatás az előzőre + Mozgatás az előzőre Move to next - Mozgatás a következőre + Mozgatás a következőre Hide - + Elrejtés - - Blank Screen - Elsötétített képernyő - - - - Blank to Theme - - - - - Show Desktop - - - - + Move to live - Mozgatás az egyenes adásban lévőre + Élő adásba küldés - - Edit and re-preview song - - - - + Start continuous loop - Folyamatos vetítés indítása + Folyamatos vetítés indítása - + Stop continuous loop - Folyamatos vetítés leállítása + Folyamatos vetítés leállítása - + s - mp + mp - + Delay between slides in seconds - Diák közötti késleltetés másodpercben + Diák közötti késleltetés másodpercben - + Start playing media - Médialejátszás indítása + Médialejátszás indítása - + Go To - + Ugrás erre + + + + Edit and reload song preview + Szerkesztés és az dal előnézetének újraolvasása OpenLP.SpellTextEdit - + Spelling Suggestions - + Helyesírási javaslatok - + Formatting Tags - + Formázó címkék @@ -2864,178 +2781,179 @@ The content encoding is not UTF-8. New Theme - Új téma + Új téma Create a new theme. - + Új téma létrehozása. Edit Theme - Téma szerkesztése + Téma szerkesztése Edit a theme. - + Egy téma szerkesztése. Delete Theme - Téma törlése + Téma törlése Delete a theme. - + Egy téma törlése. Import Theme - Téma importálása + Téma importálása Import a theme. - + Egy téma importálása. Export Theme - Téma exportálása + Téma exportálása Export a theme. - + Egy téma exportálása. &Edit Theme - + Téma sz&erkesztése &Delete Theme - + Téma &törlése Set As &Global Default - + Beállítás &globális alapértelmezetté E&xport Theme - + Téma e&xportálása %s (default) - + %s (alapértelmezett) You must select a theme to edit. - + Ki kell választani témát a szerkesztéshez. You must select a theme to delete. - + Ki kell választani témát a törléshez. Delete Confirmation - Törlés megerősítése + Törlés megerősítése Delete theme? - + Törölhető a téma? Error - Hiba + Hiba You are unable to delete the default theme. - Az alapértelmezett témát nem lehet törölni. - - - - Theme %s is use in %s plugin. - - - - - Theme %s is use by the service manager. - + Az alapértelmezett témát nem lehet törölni. You have not selected a theme. - Nincs kiválasztva egy téma sem. + Nincs kiválasztva egy téma sem. Save Theme - (%s) - Téma mentése – (%s) + Téma mentése – (%s) Theme Exported - + Téma exportálva Your theme has been successfully exported. - + A téma sikeresen exportálásra került. Theme Export Failed - + A téma exportálása nem sikerült Your theme could not be exported due to an error. - + A témát nem sikerült exportálni egy hiba miatt. Select Theme Import File - Importálandó téma fájl kiválasztása + Importálandó téma fájl kiválasztása Theme (*.*) - + Témák (*.*) File is not a valid theme. The content encoding is not UTF-8. - + Nem érvényes témafájl. +A tartalom kódolása nem UTF-8. File is not a valid theme. - Nem érvényes témafájl. + Nem érvényes témafájl. Theme Exists - A téma már létezik + A téma már létezik A theme with this name already exists. Would you like to overwrite it? - + Egy ilyen nevű téma már létezik. Szeretnéd felülírni? + + + + Theme %s is used in the %s plugin. + A(z) %s témát a(z) %s bővítmény használja. + + + + Theme %s is used by the service manager. + A(z) %s témát a szolgálatkezelő használja. @@ -3043,47 +2961,47 @@ The content encoding is not UTF-8. Themes - Témák + Témák Global Theme - + Globális téma Theme Level - + Téma szint S&ong Level - + Dal &szint 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. - Minden dalra az adatbázisban tárolt téma alkalmazása. Ha egy dalhoz nincs saját téma beállítva, akkor a szolgálathoz beállított használata. Ha a szolgálathoz sincs téma beállítva, akkor a globális téma alkalmazása. + Minden dalra az adatbázisban tárolt téma alkalmazása. Ha egy dalhoz nincs saját téma beállítva, akkor a szolgálathoz beállított alkalmazása. Ha a szolgálathoz sincs téma beállítva, akkor a globális téma alkalmazása. &Service Level - + Szolgálati &szint 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. - A szolgálathoz beállított téma alkalmazása, vagyis az egyes dalokhoz megadott témák felülírása. Ha a szolgálathoz nincs téma beállítva, akkor a globális téma alkalmazása. + A szolgálathoz beállított téma alkalmazása, vagyis az egyes dalokhoz megadott témák felülírása. Ha a szolgálathoz nincs téma beállítva, akkor a globális téma alkalmazása. &Global Level - + &Globális szint Use the global theme, overriding any themes associated with either the service or the songs. - A globális téma alkalmazása, vagyis a szolgálathoz, ill. a dalokhoz beállított témák felülírása. + A globális téma alkalmazása, vagyis a szolgálathoz, ill. a dalokhoz beállított témák felülírása. @@ -3091,110 +3009,55 @@ The content encoding is not UTF-8. <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. - - - - - Presentation - Bemutató - - - - Presentations - Bemutatók - - - - Load - - - - - Load a new Presentation - - - - - Delete - Törlés - - - - Delete the selected Presentation - - - - - Preview - Előnézet - - - - Preview the selected Presentation - - - - - Live - Egyenes adás - - - - Send the selected Presentation live - - - - - Service - - - - - Add the selected Presentation to the service - + <strong>Bemutató bővítmény</strong><br />A bemutató bővítmény különböző külső programok segítségével bemutatók megjelenítését teszi lehetővé. A prezentációs programok egy listából választhatók ki. PresentationPlugin.MediaItem - + + Presentation + Bemutató + + + Select Presentation(s) - Bemutató(k) kiválasztása + Bemutató(k) kiválasztása - + Automatic - Automatikus + Automatikus - + Present using: - Bemutató ezzel: + Bemutató ezzel: - + File Exists - + A fájl létezik - + A presentation with that filename already exists. - Ilyen fájlnéven már létezik egy bemutató. + Ilyen fájlnéven már létezik egy bemutató. - + Unsupported File - + Nem támogatott fájl - + This type of presentation is not supported. - + Ez a bemutató típus nem támogatott. - + You must select an item to delete. - + Ki kell választani egy törlendő elemet. @@ -3202,22 +3065,22 @@ The content encoding is not UTF-8. Presentations - Bemutatók + Bemutatók Available Controllers - Elérhető vezérlők + Elérhető vezérlők Advanced - Haladó + Haladó Allow presentation application to be overriden - + A bemutató program felülírásának engedélyezése @@ -3225,17 +3088,7 @@ The content encoding is not UTF-8. <strong>Remote Plugin</strong><br />The remote plugin provides the ability to send messages to a running version of OpenLP on a different computer via a web browser or through the remote API. - - - - - Remote - - - - - Remotes - Távvezérlés + <strong>Távvezérlő bővítmény</strong><br />A távvezérlő bővítmény egy böngésző vagy egy távoli API segítségével lehetővé teszi egy másik számítógépen futó OpenLP számára való üzenetküldést. @@ -3243,22 +3096,22 @@ The content encoding is not UTF-8. Remotes - Távvezérlés + Távvezérlés Serve on IP address: - + Szolgáltatás IP címe: Port number: - + Port száma: Server Settings - + Szerver beállítások @@ -3266,47 +3119,42 @@ The content encoding is not UTF-8. &Song Usage Tracking - + &Dalstatisztika rögzítése &Delete Tracking Data - + Rögzített adatok &törlése Delete song usage data up to a specified date. - + Dalstatisztika adatok törlése egy meghatározott dátumig. &Extract Tracking Data - + Rögzített adatok &kicsomagolása Generate a report on song usage. - + Dalstatisztika jelentés összeállítása. Toggle Tracking - + Rögzítés Toggle the tracking of song usage. - + Dalstatisztika rögzítésének átváltása. <strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services. - - - - - SongUsage - + <strong>Dalstatisztika bővítmény</strong><br />Ez a bővítmény rögzíti, hogy a dalok mikor lettek vetítve egy élő szolgálat során. @@ -3314,17 +3162,17 @@ The content encoding is not UTF-8. Delete Song Usage Data - + Dalstatisztika adatok törlése Delete Selected Song Usage Events? - Valóban törölhetők a kiválasztott dalstatisztika események? + Valóban törölhetők a kiválasztott dalstatisztika események? Are you sure you want to delete selected Song Usage data? - Valóban törölhetők a kiválasztott dalstatisztika adatok? + Valóban törölhetők a kiválasztott dalstatisztika adatok? @@ -3332,27 +3180,27 @@ The content encoding is not UTF-8. Song Usage Extraction - Dalstatisztika kicsomagolása + Dalstatisztika kicsomagolása Select Date Range - Időintervallum megadása + Időintervallum megadása to - + Report Location - Helyszín jelentése + Helyszín jelentése Output File Location - Kimeneti fájl elérési útvonala + Kimeneti fájl elérési útvonala @@ -3360,87 +3208,17 @@ The content encoding is not UTF-8. &Song - &Dal + &Dal Import songs using the import wizard. - Dalok importálása az importálás tündérrel. + 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. - - - - - Song - Dal - - - - Songs - Dalok - - - - Add - Hozzáadás - - - - Add a new Song - - - - - Edit - Szerkesztés - - - - Edit the selected Song - - - - - Delete - Törlés - - - - Delete the selected Song - - - - - Preview - Előnézet - - - - Preview the selected Song - - - - - Live - Egyenes adás - - - - Send the selected Song live - - - - - Service - - - - - Add the selected Song to the service - + <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é. @@ -3448,42 +3226,42 @@ The content encoding is not UTF-8. Author Maintenance - Szerzők kezelése + Szerzők kezelése Display name: - Megjelenített név: + Megjelenített név: First name: - Keresztnév: + Keresztnév: Last name: - Vezetéknév: + Vezetéknév: Error - Hiba + Hiba You need to type in the first name of the author. - Meg kell adni a szerző vezetéknevét. + Meg kell adni a szerző vezetéknevét. You need to type in the last name of the author. - Meg kell adni a szerző keresztnevét. + Meg kell adni a szerző keresztnevét. - You have not set a display name for the author, would you like me to combine the first and last names for you? - + You have not set a display name for the author, combine the first and last names? + Nincs megadva a szerző megjelenített neve, legyen előállítva a vezeték és keresztnevéből? @@ -3491,242 +3269,242 @@ The content encoding is not UTF-8. Song Editor - Dalszerkesztő + Dalszerkesztő &Title: - + &Cím: Alt&ernate title: - + &Alternatív cím: &Lyrics: - + &Dalszöveg: &Verse order: - + Versszak &sorrend: &Add - + &Hozzáadás &Edit - &Szerkesztés + &Szerkesztés Ed&it All - + &Összes szerkesztése &Delete - &Törlés + &Törlés Title && Lyrics - Cím és dalszöveg + Cím és dalszöveg Authors - Szerzők + Szerzők &Add to Song - &Hozzáadás dalhoz + &Hozzáadás dalhoz &Remove - &Eltávolítás + &Eltávolítás &Manage Authors, Topics, Song Books - + Szerzők, témakörök, énekeskönyvek &kezelése Topic - Témakör + Témakör A&dd to Song - &Hozzáadás dalhoz + &Hozzáadás dalhoz R&emove - &Eltávolítás + &Eltávolítás Song Book - Daloskönyv + Énekeskönyv Book: - Könyv: + Könyv: Number: - + Szám: Authors, Topics && Song Book - + Szerzők, témakörök és énekeskönyvek Theme - Téma + Téma New &Theme - + Új &téma Copyright Information - Szerzői jogi információ + Szerzői jogi információ © - + CCLI number: - + CCLI szám: Comments - Megjegyzések + Megjegyzések Theme, Copyright Info && Comments - Téma, szerzői jogi infók és megjegyzések + Téma, szerzői jogi infók és megjegyzések Save && Preview - Mentés és előnézet + Mentés és előnézet Add Author - + Szerző hozzáadása This author does not exist, do you want to add them? - + Ez a szerző még nem létezik, valóban hozzá kívánja adni? Error - Hiba + Hiba This author is already in the list. - + A szerző már benne van a listában. No Author Selected - + Nincs kiválasztott szerző 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. - + Nincs kiválasztva egyetlen szerző sem. Vagy válassz egy szerzőt a listából, vagy írj az új szerző mezőbe és kattints az „Szerző hozzáadása a dalhoz” gombon a szerző megjelöléséhez. Add Topic - + Témakör hozzáadása This topic does not exist, do you want to add it? - + Ez a témakör még nem létezik, szeretnéd hozzáadni? This topic is already in the list. - + A témakör már benne van a listában. No Topic Selected - + Nincs kiválasztott témakör 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. - + Nincs kiválasztva egyetlen témakör sem. Vagy válassz egy témakört a listából, vagy írj az új témakör mezőbe és kattints a Témakör hozzáadása a dalhoz gombon a témakör megjelöléséhez. You need to type in a song title. - + Add meg a dal címét. You need to type in at least one verse. - + Legalább egy versszakot meg kell adnod. Warning - + Figyelmeztetés You have not added any authors for this song. Do you want to add an author now? - + Még nincs hozzáadva egyetlen szerző sem. Szeretnél most egyet megjelölni? The verse order is invalid. There is no verse corresponding to %s. Valid entries are %s. - + A versszaksorrend hibás. Nincs ilyen versszak: %s. Az érvényes elemek ezek: %s. You have not used %s anywhere in the verse order. Are you sure you want to save the song like this? - + Ez a versszak sehol nem lett megadva a sorrendben: %s. Biztosan így kívánod elmenteni a dalt? Add Book - + Könyv hozzáadása This song book does not exist, do you want to add it? - + Ez az énekeskönyv még nem létezik, szeretnéd hozzáadni a listához? @@ -3734,343 +3512,378 @@ The content encoding is not UTF-8. Edit Verse - Versszak szerkesztése + Versszak szerkesztése &Verse type: - + Versszak &típusa: &Insert - + &Beszúrás SongsPlugin.ImportWizardForm - + No OpenLP 2.0 Song Database Selected - + Nincs kiválasztott OpenLP 2.0 adatbázis - + You need to select an OpenLP 2.0 song database file to import from. - + Ki kell választani egy OpenLP 2.0 adatbázis fájlt az importáláshoz. - + No openlp.org 1.x Song Database Selected - + Nincs kiválasztott openlp.org 1.x adatbázis - + You need to select an openlp.org 1.x song database file to import from. - + Ki kell választani egy openlp.org 1.x adatbázis fájlt az importáláshoz. - - No OpenLyrics Files Selected - Nincsenek kijelölt OpenLyrics fájlok - - - - You need to add at least one OpenLyrics song file to import from. - Meg kell adni legalább egy OpenLyrics dal fájlt az importáláshoz. - - - + No OpenSong Files Selected - Nincsenek kijelölt OpenSong fájlok + Nincsenek kiválasztott OpenSong fájlok - + You need to add at least one OpenSong song file to import from. - Meg kell adni legalább egy OpenSong dal fájlt az importáláshoz. + Ki kell választani legalább egy OpenSong dal fájlt az importáláshoz. - + No Words of Worship Files Selected - + Nincsenek kiválasztott Words of Worship fájlok - + You need to add at least one Words of Worship file to import from. - + Ki kell választani legalább egy Words of Worship dal fájlt az importáláshoz. - + No CCLI Files Selected - Nincsenek kijelölt CCLI fájlok + Nincsenek kiválasztott CCLI fájlok - + You need to add at least one CCLI file to import from. - Meg kell adni legalább egy CCLI fájlt az importáláshoz. + Ki kell választani legalább egy CCLI fájlt az importáláshoz. - + No Songs of Fellowship File Selected - + Nincs kiválasztott Songs of Fellowship fájl - + You need to add at least one Songs of Fellowship file to import from. - + Ki kell választani legalább egy Songs of Fellowship fájlt az importáláshoz. - + No Document/Presentation Selected - + Nincs kiválasztott dokumentum vagy bemutató - + You need to add at least one document or presentation file to import from. - + Ki kell választani legalább egy dokumentumot vagy bemutatót az importáláshoz. - + Select OpenLP 2.0 Database File - + Válassz egy OpenLP 2.0 adatbázis fájlt - + Select openlp.org 1.x Database File - + Válassz egy openlp.org 1.x adatbázis fájlt - - Select OpenLyrics Files - - - - + Select Open Song Files - + Válassz OpenSong fájlokat - + Select Words of Worship Files - + Válassz Words of Worship fájlokat - + Select CCLI Files - + Válassz CCLI fájlokat - + Select Songs of Fellowship Files - + Válassz Songs of Fellowship fájlokat - + Select Document/Presentation Files - + Válassz dokumentum vagy bemutató fájlokat - + Starting import... - Importálás indítása... + Importálás indítása... - + Song Import Wizard - Dalimportáló tündér + Dalimportáló tündér - + Welcome to the Song Import Wizard - Üdvözlet a dalimportáló tündérben + Üdvözlet a dalimportáló tündérben - + 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. - A tündérrel különféle formátumú dalokat lehet importálni. Az alább található Tovább gombra való kattintással indítható a folyamat első lépése a formátum kiválasztásával. + A tündérrel különféle formátumú dalokat lehet importálni. Az alább található Tovább gombra való kattintással indítható a folyamat első lépése a formátum kiválasztásával. - + Select Import Source - Válassza ki az importálandó forrást + Válaszd ki az importálandó forrást - + Select the import format, and where to import from. - Válassza ki a importálandó forrást és a helyet, ahonnan importálja. + Válaszd ki a importálandó forrást és a helyet. - + Format: - Formátum: + Formátum: - + OpenLP 2.0 - + - + openlp.org 1.x - + - + OpenLyrics - + - + OpenSong - + - + Words of Worship - + - + CCLI/SongSelect - + - + Songs of Fellowship - + - + Generic Document/Presentation - + Általános dokumentum vagy bemutató - + Filename: - Fájlnév: + Fájlnév: - + Browse... - Tallózás... + Tallózás... - + + 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. + Az openlp.org 1.x importáló le lett tiltva egy hiányzó Python modul miatt. Ha szeretnéd használni ezt az importálót, telepíteni kell a „python-sqlite” modult. + + + Add Files... - Fájlok hozzáadása... + Fájlok hozzáadása... - + Remove File(s) - Fájlok törlése + Fájl(ok) törlése - + + The Songs of Fellowship importer has been disabled because OpenLP cannot find OpenOffice.org on your computer. + A Songs of Fellowship importáló le lett tiltva, mivel az OpenLP nem találja az OpenOffice.org-ot a számítógépen. + + + + The generic document/presentation importer has been disabled because OpenLP cannot find OpenOffice.org on your computer. + Az általános dokumentum, ill. bemutató importáló le lett tiltva, mivel az OpenLP nem találja az OpenOffice.org-ot a számítógépen. + + + Importing - Importálás + Importálás - + Please wait while your songs are imported. - Kérem, várjon, míg a dalok importálás alatt állnak. + Kérlek, várj, míg a dalok importálás alatt állnak. - + Ready. - Kész. + Kész. - + %p% - + - + Importing "%s"... - + Importálás „%s”... - + Importing %s... + Importálás %s... + + + + No EasyWorship Song Database Selected + Nincs kiválasztott EasyWorship dal adatbázis + + + + You need to select an EasyWorship song database file to import from. + Ki kell választani egy EasyWorship dal adatbázis fájlt az importáláshoz. + + + + Select EasyWorship Database File + Válassz egy EasyWorship adatbázis fájlt + + + + EasyWorship + + + + + 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. + Az OpenLyrics importáló még nem lett kifejlesztve, de amint már láthatod, szándékozunk elkészíteni. Remélhetőleg a következő kiadásban már benne lesz. + + + + Administered by %s SongsPlugin.MediaItem - + + Song + Dal + + + Song Maintenance - Dalok kezelése + Dalok kezelése - + Maintain the lists of authors, topics and books - A szerzők, témakörök, könyvek listájának kezelése - - - - Search: - Keresés: + Szerzők, témakörök, könyvek listájának kezelése - Type: - Típus: + Search: + Keresés: - Clear - + Type: + Típus: - Search - Keresés + Clear + Törlés - - Titles - Címek + + Search + Keresés - Lyrics - Dalszöveg + Titles + Címek + Lyrics + Dalszöveg + + + Authors - Szerzők + Szerzők - + You must select an item to edit. - + Ki kell választani egy szerkesztendő elemet. - + You must select an item to delete. - + Ki kell választani egy törlendő elemet. - + Are you sure you want to delete the selected song? - + Valóban törölhető a kiválasztott dal? - + Are you sure you want to delete the %d selected songs? - + Valóban törölhetők a kiválasztott dalok: %d? - + Delete Song(s)? - + Törölhető(ek) a dal(ok)? - + CCLI Licence: - CCLI licenc: + CCLI licenc: @@ -4078,53 +3891,53 @@ The content encoding is not UTF-8. Song Book Maintenance - + Énekeskönyvek kezelése &Name: - + &Név: &Publisher: - + &Kiadó: Error - Hiba + Hiba You need to type in a name for the book. - + Meg kell adni a könyv nevét. SongsPlugin.SongImport - + copyright - + szerzői jog - + © - + SongsPlugin.SongImportForm - + Finished import. - Az importálás befejeződött. + Az importálás befejeződött. - + Your song import failed. - + Az importálás meghiúsult. @@ -4132,147 +3945,147 @@ The content encoding is not UTF-8. Song Maintenance - Dalok kezelése + Dalok kezelése Authors - Szerzők + Szerzők Topics - Témakörök + Témakörök Song Books - + Énekeskönyvek &Add - + &Hozzáadás &Edit - &Szerkesztés + &Szerkesztés &Delete - &Törlés + &Törlés Error - Hiba + Hiba Could not add your author. - + A szerzőt nem lehet hozzáadni. This author already exists. - + Ez a szerző már létezik. Could not add your topic. - + A témakört nem lehet hozzáadni. This topic already exists. - + Ez a témakör már létezik. Could not add your book. - + A könyvet nem lehet hozzáadni. This book already exists. - + Ez a könyv már létezik. Could not save your changes. - - - - - Could not save your modified author, because he already exists. - + A módosításokat nem lehet elmenteni. Could not save your modified topic, because it already exists. - + A módosított témakört nem lehet elmenteni, mivel már létezik. Delete Author - Szerző törlése + Szerző törlése Are you sure you want to delete the selected author? - A kiválasztott szerző biztosan törölhető? + A kiválasztott szerző biztosan törölhető? This author cannot be deleted, they are currently assigned to at least one song. - + Ezt a szerzőt nem lehet törölni, mivel jelenleg legalább egy dalhoz hozzá van rendelve. No author selected! - Nincs kiválasztott szerző! + Nincs kiválasztott szerző. Delete Topic - Témakör törlése + Témakör törlése Are you sure you want to delete the selected topic? - A kiválasztott témakör biztosan törölhető? + A kiválasztott témakör biztosan törölhető? This topic cannot be deleted, it is currently assigned to at least one song. - + Ezt a témakört nem lehet törölni, mivel jelenleg legalább egy dalhoz hozzá van rendelve. No topic selected! - Nincs kiválasztott témakör! + Nincs kiválasztott témakör. Delete Book - Könyv törlése + Könyv törlése Are you sure you want to delete the selected book? - A kiválasztott könyv biztosan törölhető? + A kiválasztott könyv biztosan törölhető? This book cannot be deleted, it is currently assigned to at least one song. - + Ezt a könyvet nem lehet törölni, mivel jelenleg legalább egy dalhoz hozzá van rendelve. No book selected! - Nincs kiválasztott könyv! + Nincs kiválasztott könyv. + + + + Could not save your modified author, because the author already exists. + A módosított szerzőt nem lehet elmenteni, mivel már a szerző létezik. @@ -4280,22 +4093,22 @@ The content encoding is not UTF-8. Songs - Dalok + Dalok Songs Mode - Dalmód + Dalmód Enable search as you type - Gépelés közbeni keresés engedélyezése + Gépelés közbeni keresés engedélyezése Display verses on live tool bar - + Versszakok megjelenítése az élő adás eszköztáron @@ -4303,22 +4116,22 @@ The content encoding is not UTF-8. Topic Maintenance - Témakörök kezelése + Témakörök kezelése Topic name: - Témakör neve: + Témakör neve: Error - Hiba + Hiba - You need to type in a topic name! - Meg kell adni egy témakör nevet! + You need to type in a topic name. + Meg kell adni egy témakör nevet. @@ -4326,37 +4139,37 @@ The content encoding is not UTF-8. Verse - Versszak + Versszak Chorus - Refrén + Refrén Bridge - Mellékdal + Mellékdal Pre-Chorus - Elő-refrén + Elő-refrén Intro - Bevezetés + Bevezetés Ending - Befejezés + Befejezés Other - Egyéb + Egyéb diff --git a/resources/i18n/ko.ts b/resources/i18n/ko.ts index 59be559d5..07347e7d5 100644 --- a/resources/i18n/ko.ts +++ b/resources/i18n/ko.ts @@ -17,16 +17,6 @@ <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of nursery alerts on the display screen - - - Alert - - - - - Alerts - - AlertsPlugin.AlertForm @@ -172,6 +162,19 @@ + + BiblePlugin.MediaItem + + + Error + + + + + You cannot combine single and dual bible verses. Do you want to delete your search results and start a new search? + + + BiblesPlugin @@ -184,86 +187,6 @@ <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display bible verses from different sources during the service. - - - Bible - 성경 - - - - Bibles - - - - - Import - - - - - Import a Bible - - - - - Add - - - - - Add a new Bible - - - - - Edit - - - - - Edit the selected Bible - - - - - Delete - - - - - Delete the selected Bible - - - - - Preview - - - - - Preview the selected Bible - - - - - Live - - - - - Send the selected Bible live - - - - - Service - - - - - Add the selected Bible to the service - - BiblesPlugin.BibleDB @@ -287,7 +210,7 @@ - Your scripture reference is either not supported by OpenLP or invalid. Please make sure your reference conforms to one of the following patterns: + 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 @@ -586,42 +509,32 @@ Changes do not affect verses already in the service. - + Empty Copyright - - 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. - - - - + Open OSIS File - + Open Books CSV File - + Open Verses CSV File - + Open OpenSong Bible @@ -631,120 +544,130 @@ Changes do not affect verses already in the service. - + Finished import. - + Your Bible import failed. + + + You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. + + + + + This Bible already exists. Please import a different Bible or first delete the existing one. + + BiblesPlugin.MediaItem - + + Bible + 성경 + + + Quick 즉시 - + Advanced - + Version: - + Dual: - + Search type: - + Find: - + Search - + Results: - + Book: - + Chapter: - + Verse: - + From: - + To: - + Verse Search - + Text Search - + Clear - + Keep - + No Book Found - + No matching book could be found in this Bible. - - etc - - - - + Bible not fully loaded. @@ -761,7 +684,7 @@ Changes do not affect verses already in the service. 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 Customs are. This plugin provides greater freedom over the Customs plugin. + <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. @@ -914,106 +837,18 @@ Changes do not affect verses already in the service. CustomPlugin.MediaItem - - You haven't selected an item to edit. - - - - - You haven't selected an item to delete. - - - - - CustomsPlugin - - + Custom - - Customs + + You haven't selected an item to edit. - - Import - - - - - Import a Custom - - - - - Load - - - - - Load a new Custom - - - - - Add - - - - - Add a new Custom - - - - - Edit - - - - - Edit the selected Custom - - - - - Delete - - - - - Delete the selected Custom - - - - - Preview - - - - - Preview the selected Custom - - - - - Live - - - - - Send the selected Custom live - - - - - Service - - - - - Add the selected Custom to the service + + You haven't selected an item to delete. @@ -1021,134 +856,59 @@ Changes do not affect verses already in the service. 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 Images with the selected image as a background instead of the background provided by the theme. - - - - - Image - - - - - Images - - - - - Load - - - - - Load a new Image - - - - - Add - - - - - Add a new Image - - - - - Edit - - - - - Edit the selected Image - - - - - Delete - - - - - Delete the selected Image - - - - - Preview - - - - - Preview the selected Image - - - - - Live - - - - - Send the selected Image live - - - - - Service - - - - - Add the selected Image to the service + <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. ImagePlugin.MediaItem - + + Image + + + + Select Image(s) - + All Files - + Replace Live Background - + Replace Background - + Reset Live Background - + You must select an image to delete. - + Image(s) - + You must select an image to replace the background with. - + You must select a media file to replace the background with. @@ -1160,111 +920,31 @@ Changes do not affect verses already in the service. <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. - - - Media - - - - - Medias - - - - - Load - - - - - Load a new Media - - - - - Add - - - - - Add a new Media - - - - - Edit - - - - - Edit the selected Media - - - - - Delete - - - - - Delete the selected Media - - - - - Preview - - - - - Preview the selected Media - - - - - Live - - - - - Send the selected Media live - - - - - Service - - - - - Add the selected Media to the service - - MediaPlugin.MediaItem - - Select Media - - - - - Replace Live Background - - - - - Replace Background - - - - + Media - + + Select Media + + + + + Replace Live Background + + + + + Replace Background + + + + You must select a media file to delete. @@ -1272,7 +952,7 @@ Changes do not affect verses already in the service. OpenLP - + Image Files @@ -1832,13 +1512,13 @@ This General Public License does not permit incorporating your program into prop OpenLP.ExceptionDialog - - Error Occured + + 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. - - 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. + + Error Occurred @@ -1973,43 +1653,23 @@ This General Public License does not permit incorporating your program into prop OpenLP.LanguageManager - + Language - + Please restart OpenLP to use your new language setting. OpenLP.MainWindow - - - New Service - - - - - Open Service - - - - - Save Service - - OpenLP 2.0 - - - AddHereYourLanguageName - - &File @@ -2075,6 +1735,11 @@ This General Public License does not permit incorporating your program into prop &New + + + New Service + + Create a new service. @@ -2090,6 +1755,11 @@ This General Public License does not permit incorporating your program into prop &Open + + + Open Service + + Open an existing service. @@ -2105,6 +1775,11 @@ This General Public License does not permit incorporating your program into prop &Save + + + Save Service + + Save the current service to disk. @@ -2373,115 +2048,191 @@ You can download the latest version from http://openlp.org/. - + OpenLP Main Display Blanked - + The Main Display has been blanked out - + Save Changes to Service? - + Your service has changed. Do you want to save those changes? - + Default Theme: %s - + English + Please add the name of your language here OpenLP.MediaManagerItem - + No Items Selected - + + Import %s + + + + + Import a %s + + + + + Load %s + + + + + Load a new %s + + + + + New %s + + + + + Add a new %s + + + + + Edit %s + + + + + Edit the selected %s + + + + + Delete %s + + + + + Delete the selected item + + + + + Preview %s + + + + + Preview the selected item + + + + + Send the selected item live + + + + + Add %s to Service + + + + + Add the selected item(s) to the service + + + + &Edit %s - + &Delete %s - + &Preview %s - + &Show Live - + &Add to Service - + &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. - + No items selected - + You must select one or more items - + No Service Item Selected - + You must select an existing service item to add to. - + Invalid Service Item - + You must select a %s service item. @@ -2524,17 +2275,17 @@ You can download the latest version from http://openlp.org/. - + %s (Inactive) - + %s (Active) - + %s (Disabled) @@ -2575,7 +2326,7 @@ You can download the latest version from http://openlp.org/. - + Open Service @@ -2585,7 +2336,7 @@ You can download the latest version from http://openlp.org/. - + Save Service @@ -2695,51 +2446,56 @@ You can download the latest version from http://openlp.org/. - + Save Changes to Service? - + Your service is unsaved, do you want to save those changes before creating a new one? - + OpenLP Service Files (*.osz) - + Your current service is unsaved, do you want to save the changes before opening a new one? - + Error - + 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 + + OpenLP.ServiceNoteForm @@ -2785,70 +2541,55 @@ The content encoding is not UTF-8. - - Blank Screen - - - - - Blank to Theme - - - - - Show Desktop - - - - + Move to live - - Edit and re-preview song - - - - + Start continuous loop - + Stop continuous loop - + s - + Delay between slides in seconds - + Start playing media - + Go To + + + Edit and reload song preview + + OpenLP.SpellTextEdit - + Spelling Suggestions - + Formatting Tags @@ -2960,16 +2701,6 @@ The content encoding is not UTF-8. You are unable to delete the default theme. - - - Theme %s is use in %s plugin. - - - - - Theme %s is use by the service manager. - - You have not selected a theme. @@ -3031,6 +2762,16 @@ The content encoding is not UTF-8. A theme with this name already exists. Would you like to overwrite it? + + + Theme %s is used in the %s plugin. + + + + + Theme %s is used by the service manager. + + OpenLP.ThemesTab @@ -3087,106 +2828,51 @@ The content encoding is not UTF-8. <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. - - - Presentation - - - - - Presentations - - - - - Load - - - - - Load a new Presentation - - - - - Delete - - - - - Delete the selected Presentation - - - - - Preview - - - - - Preview the selected Presentation - - - - - Live - - - - - Send the selected Presentation live - - - - - Service - - - - - Add the selected Presentation to the service - - PresentationPlugin.MediaItem - + + Presentation + + + + Select Presentation(s) - + Automatic - + Present using: - + File Exists - + A presentation with that filename already exists. - + Unsupported File - + This type of presentation is not supported. - + You must select an item to delete. @@ -3221,16 +2907,6 @@ The content encoding is not UTF-8. <strong>Remote Plugin</strong><br />The remote plugin provides the ability to send messages to a running version of OpenLP on a different computer via a web browser or through the remote API. - - - Remote - - - - - Remotes - - RemotePlugin.RemoteTab @@ -3297,11 +2973,6 @@ The content encoding is not UTF-8. <strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services. - - - SongUsage - - SongUsagePlugin.SongUsageDeleteForm @@ -3366,76 +3037,6 @@ The content encoding is not UTF-8. <strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs. - - - Song - - - - - Songs - - - - - Add - - - - - Add a new Song - - - - - Edit - - - - - Edit the selected Song - - - - - Delete - - - - - Delete the selected Song - - - - - Preview - - - - - Preview the selected Song - - - - - Live - - - - - Send the selected Song live - - - - - Service - - - - - Add the selected Song to the service - - SongsPlugin.AuthorsForm @@ -3476,7 +3077,7 @@ The content encoding is not UTF-8. - You have not set a display name for the author, would you like me to combine the first and last names for you? + You have not set a display name for the author, combine the first and last names? @@ -3744,325 +3345,360 @@ The content encoding is not UTF-8. SongsPlugin.ImportWizardForm - + No OpenLP 2.0 Song Database Selected - + You need to select an OpenLP 2.0 song database file to import from. - + No openlp.org 1.x Song Database Selected - + You need to select an openlp.org 1.x song database file to import from. - - No OpenLyrics Files Selected - - - - - You need to add at least one OpenLyrics song file to import from. - - - - + No OpenSong Files Selected - + You need to add at least one OpenSong song file to import from. - + No Words of Worship Files Selected - + You need to add at least one Words of Worship file to import from. - + No CCLI Files Selected - + You need to add at least one CCLI file to import from. - + No Songs of Fellowship File Selected - + You need to add at least one Songs of Fellowship file to import from. - + No Document/Presentation Selected - + You need to add at least one document or presentation file to import from. - + Select OpenLP 2.0 Database File - + Select openlp.org 1.x Database File - - Select OpenLyrics Files - - - - + Select Open Song Files - + Select Words of Worship Files - + Select CCLI Files - + Select Songs of Fellowship Files - + Select Document/Presentation Files - + Starting import... - + Song Import Wizard - + Welcome to the 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. - + Select Import Source - + Select the import format, and where to import from. - + Format: - + OpenLP 2.0 - + openlp.org 1.x - + OpenLyrics - + OpenSong - + Words of Worship - + CCLI/SongSelect - + Songs of Fellowship - + Generic Document/Presentation - + Filename: - + Browse... - + + 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. + + + + 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. + + + + Importing - + Please wait while your songs are imported. - + Ready. - + %p% - + Importing "%s"... - + Importing %s... + + + No EasyWorship Song Database Selected + + + + + You need to select an EasyWorship song database file to import from. + + + + + Select EasyWorship Database File + + + + + EasyWorship + + + + + 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. + + + + + Administered by %s + + SongsPlugin.MediaItem - + + Song + + + + Song Maintenance - + Maintain the lists of authors, topics and books - + Search: - + Type: - + Clear - + Search - + Titles - + Lyrics - + Authors - + You must select an item to edit. - + You must select an item to delete. - + Are you sure you want to delete the selected song? - + Are you sure you want to delete the %d selected songs? - + Delete Song(s)? - + CCLI Licence: @@ -4098,12 +3734,12 @@ The content encoding is not UTF-8. SongsPlugin.SongImport - + copyright - + © @@ -4111,12 +3747,12 @@ The content encoding is not UTF-8. SongsPlugin.SongImportForm - + Finished import. - + Your song import failed. @@ -4198,11 +3834,6 @@ The content encoding is not UTF-8. Could not save your changes. - - - Could not save your modified author, because he already exists. - - Could not save your modified topic, because it already exists. @@ -4268,6 +3899,11 @@ The content encoding is not UTF-8. No book selected! + + + Could not save your modified author, because the author already exists. + + SongsPlugin.SongsTab @@ -4311,7 +3947,7 @@ The content encoding is not UTF-8. - You need to type in a topic name! + You need to type in a topic name. diff --git a/resources/i18n/nb.ts b/resources/i18n/nb.ts index 316e1ecc3..f97f7fec6 100644 --- a/resources/i18n/nb.ts +++ b/resources/i18n/nb.ts @@ -5,27 +5,17 @@ &Alert - + &Varsel Show an alert message. - + Vis en varselmelding. <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of nursery alerts on the display screen - - - - - Alert - - - - - Alerts - + <strong>Varsel Tilleg</strong><br />Varsels tillegg kontrolleren viser barn-varsel på visnings skjermen @@ -33,52 +23,52 @@ Alert Message - Varsel-melding + Varsel-melding Alert &text: - + Varsel &tekst: &Parameter(s): - + %Parameter(e): &New - &Ny + &Ny &Save - &Lagre + &Lagre &Delete - + &Slett Displ&ay - + Vis Display && Cl&ose - + Vis && Lukk &Close - + &Lukk New Alert - + Nytt Varsel @@ -91,7 +81,7 @@ Alert message created and displayed. - + Varsel beskjed er laget og vist @@ -99,76 +89,89 @@ Alerts - + Varsel Font - Skrifttype + Skrifttype Font name: - + Skrift navn: Font color: - + Skrift farge Background color: - + Bakgrunns farge: Font size: - + Skrift størrelse pt - + pt Alert timeout: - + Varsel varighet: s - + s Location: - + Plassering: Preview - + Forhåndsvisning OpenLP 2.0 - OpenLP 2.0 + OpenLP 2.0 Top - Topp + Topp Middle - Midtstilt + Midtstilt Bottom + Bunn + + + + BiblePlugin.MediaItem + + + Error + + + + + You cannot combine single and dual bible verses. Do you want to delete your search results and start a new search? @@ -177,100 +180,20 @@ &Bible - + &Bibel <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display bible verses from different sources during the service. - - - Bible - Bibel - - - - Bibles - Bibler - - - - Import - - - - - Import a Bible - - - - - Add - - - - - Add a new Bible - - - - - Edit - - - - - Edit the selected Bible - - - - - Delete - - - - - Delete the selected Bible - - - - - Preview - - - - - Preview the selected Bible - - - - - Live - Direkte - - - - Send the selected Bible live - - - - - Service - - - - - Add the selected Bible to the service - - BiblesPlugin.BibleDB Book not found - + Fant ikke boken @@ -287,7 +210,7 @@ - Your scripture reference is either not supported by OpenLP or invalid. Please make sure your reference conforms to one of the following patterns: + 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 @@ -304,17 +227,17 @@ Book Chapter:Verse-Chapter:Verse Bibles - Bibler + Bibler Verse Display - + Vers visning Only show new chapter numbers - + Bare vis nye kapittel nummer @@ -334,17 +257,17 @@ Book Chapter:Verse-Chapter:Verse Verse Per Slide - + Vers pr side Verse Per Line - + Vers pr linje Continuous - + Kontinuerlig @@ -354,17 +277,17 @@ Book Chapter:Verse-Chapter:Verse ( And ) - + ( og ) { And } - + { og } [ And ] - + [ og ] @@ -375,7 +298,7 @@ Changes do not affect verses already in the service. Display dual Bible verses - + Vis doble Bibel vers @@ -383,77 +306,77 @@ Changes do not affect verses already in the service. Bible Import Wizard - Bibelimporteringsverktøy + Bibelimporteringsverktøy Welcome to the Bible Import Wizard - + Velkommen til bibelimporterings-veilederen 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. - Denne veiviseren vil hjelpe deg å importere Bibler fra en rekke ulike formater. Klikk på neste-knappen under for å starte prosessen ved å velge et format å importere fra. + Denne veiviseren vil hjelpe deg å importere Bibler fra en rekke ulike formater. Klikk på neste-knappen under for å starte prosessen ved å velge et format å importere fra. Select Import Source - Velg importeringskilde + Velg importeringskilde Select the import format, and where to import from. - + Velg importeringsformat og hvor du vil importere dem Format: - Format: + Format: OSIS - + OSIS CSV - + CSV OpenSong - OpenSong + OpenSong Web Download - + Web nedlastning File location: - + Fil plassering: Books location: - + Bok plassering: Verse location: - + Vers plassering: Bible filename: - + Bibel filnavn: Location: - + Plassering: @@ -468,112 +391,112 @@ Changes do not affect verses already in the service. Bible: - Bibel: + Bibel: Download Options - Nedlastingsalternativer + Nedlastingsalternativer Server: - Server: + Server: Username: - Brukernavn: + Brukernavn: Password: - + Passord: Proxy Server (Optional) - + Proxy Server (valgfritt) License Details - Lisensdetaljer + Lisensdetaljer Set up the Bible's license details. - Skriv inn Bibelens lisensdetaljer. + Skriv inn Bibelens lisensdetaljer. Version name: - + Versons navn: Copyright: - Copyright: + Opphavsrett: Permission: - Tillatelse: + Tillatelse: Importing - + Importerer Please wait while your Bible is imported. - + Vennligst vent mens bibelen blir importert Ready. - Klar. + Klar. Invalid Bible Location - Ugyldig Bibelplassering + Ugyldig Bibelplassering You need to specify a file to import your Bible from. - + Du om spesifisere en fil for å importere bibelen. Invalid Books File - + Ugyldig Book fil You need to specify a file with books of the Bible to use in the import. - Du må angi en fil som inneholder bøkene i Bibelen. + Du må angi en fil som inneholder bøkene i Bibelen du vil importere. Invalid Verse File - + Ugyldig vers fil You need to specify a file of Bible verses to import. - Du må angi en fil med bibelvers som skal importeres. + Du må angi en fil med bibelvers som skal importeres. Invalid OpenSong Bible - Ugyldig OpenSong Bibel + Ugyldig OpenSong Bibel You need to specify an OpenSong Bible file to import. - + Du må spesifisere en OpenSong Bibel fil å importere @@ -583,170 +506,170 @@ Changes do not affect verses already in the service. You need to specify a version name for your Bible. - + Du må spesifisere et versjonsnummer for Bibelen din. - + Empty Copyright Tom copyright - - You need to set a copyright for your Bible! Bibles in the Public Domain need to be marked as such. - Du må angi hvem som har opphavsrett til denne bibelutgaven! Bibler som ikke er tilknyttet noen opphavsrett må bli merket med dette. - - - + Bible Exists Bibelen eksisterer - - This Bible already exists! Please import a different Bible or first delete the existing one. - - - - + Open OSIS File - + Åpne OSIS fil - + Open Books CSV File - + Åpne Bøker CSV fil - + Open Verses CSV File - + Åpne Vers CSV fil - + Open OpenSong Bible - + Åpne OpenSong Bibel Starting import... - + Starter å importere... - + Finished import. Import fullført. - + Your Bible import failed. Bibelimporteringen mislyktes. + + + You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. + + + + + This Bible already exists. Please import a different Bible or first delete the existing one. + + BiblesPlugin.MediaItem - + + Bible + Bibel + + + Quick Rask - + Advanced Avansert - + Version: - + Versjon: - + Dual: Dobbel: - + Search type: - + Søk type: - + Find: Finn: - + Search - Søk - - - - Results: - Resultat: - - - - Book: - Bok: - - - - Chapter: - Kapittel - - - - Verse: - + Søk + Results: + Resultat: + + + + Book: + Bok: + + + + Chapter: + Kapittel: + + + + Verse: + Vers: + + + From: Fra: - + To: Til: - + Verse Search Søk i vers - + Text Search Tekstsøk - + Clear - + Keep Behold - + No Book Found Ingen bøker funnet - + No matching book could be found in this Bible. Finner ingen matchende bøker i denne Bibelen. - - etc - - - - + Bible not fully loaded. - + Bibelen ble ikke lastet. @@ -754,14 +677,14 @@ Changes do not affect verses already in the service. Importing - + Importerer 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 Customs are. This plugin provides greater freedom over the Customs plugin. + <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. @@ -780,7 +703,7 @@ Changes do not affect verses already in the service. Display footer - + Vis bunntekst @@ -803,7 +726,7 @@ Changes do not affect verses already in the service. &Title: - + &Tittel: @@ -818,22 +741,22 @@ Changes do not affect verses already in the service. Edit - + Rediger Edit the selected slide. - + Rediger merket side Edit All - + Rediger Alt Edit all the slides at once. - + Rediger alle sider på en gang. @@ -914,106 +837,18 @@ Changes do not affect verses already in the service. CustomPlugin.MediaItem - - You haven't selected an item to edit. - - - - - You haven't selected an item to delete. - - - - - CustomsPlugin - - + Custom - - Customs + + You haven't selected an item to edit. - - Import - - - - - Import a Custom - - - - - Load - - - - - Load a new Custom - - - - - Add - - - - - Add a new Custom - - - - - Edit - - - - - Edit the selected Custom - - - - - Delete - - - - - Delete the selected Custom - - - - - Preview - - - - - Preview the selected Custom - - - - - Live - Direkte - - - - Send the selected Custom live - - - - - Service - - - - - Add the selected Custom to the service + + You haven't selected an item to delete. @@ -1021,134 +856,59 @@ Changes do not affect verses already in the service. 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 Images with the selected image as a background instead of the background provided by the theme. - - - - - Image - - - - - Images - - - - - Load - - - - - Load a new Image - - - - - Add - - - - - Add a new Image - - - - - Edit - - - - - Edit the selected Image - - - - - Delete - - - - - Delete the selected Image - - - - - Preview - - - - - Preview the selected Image - - - - - Live - Direkte - - - - Send the selected Image live - - - - - Service - - - - - Add the selected Image to the service + <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. ImagePlugin.MediaItem - + + Image + + + + Select Image(s) Velg bilde(r) - + All Files - + Replace Live Background - + Replace Background - + Reset Live Background - + You must select an image to delete. - + Image(s) Bilde(r) - + You must select an image to replace the background with. - + You must select a media file to replace the background with. @@ -1160,111 +920,31 @@ Changes do not affect verses already in the service. <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. - - - Media - - - - - Medias - - - - - Load - - - - - Load a new Media - - - - - Add - - - - - Add a new Media - - - - - Edit - - - - - Edit the selected Media - - - - - Delete - - - - - Delete the selected Media - - - - - Preview - - - - - Preview the selected Media - - - - - Live - Direkte - - - - Send the selected Media live - - - - - Service - - - - - Add the selected Media to the service - - MediaPlugin.MediaItem - - Select Media - Velg media - - - - Replace Live Background - - - - - Replace Background - - - - + Media - + + Select Media + Velg media + + + + Replace Live Background + + + + + Replace Background + + + + You must select a media file to delete. @@ -1272,7 +952,7 @@ Changes do not affect verses already in the service. OpenLP - + Image Files @@ -1616,7 +1296,7 @@ This General Public License does not permit incorporating your program into prop pt - + pt @@ -1781,7 +1461,7 @@ This General Public License does not permit incorporating your program into prop Bottom - + Bunn @@ -1801,7 +1481,7 @@ This General Public License does not permit incorporating your program into prop Preview - + Forhåndsvisning @@ -1832,13 +1512,13 @@ This General Public License does not permit incorporating your program into prop OpenLP.ExceptionDialog - - Error Occured + + 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. - - 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. + + Error Occurred @@ -1973,43 +1653,23 @@ This General Public License does not permit incorporating your program into prop OpenLP.LanguageManager - + Language - + Please restart OpenLP to use your new language setting. OpenLP.MainWindow - - - New Service - - - - - Open Service - Åpne møteplan - - - - Save Service - - OpenLP 2.0 OpenLP 2.0 - - - AddHereYourLanguageName - - &File @@ -2075,6 +1735,11 @@ This General Public License does not permit incorporating your program into prop &New &Ny + + + New Service + + Create a new service. @@ -2090,6 +1755,11 @@ This General Public License does not permit incorporating your program into prop &Open &Åpne + + + Open Service + Åpne møteplan + Open an existing service. @@ -2105,6 +1775,11 @@ This General Public License does not permit incorporating your program into prop &Save &Lagre + + + Save Service + + Save the current service to disk. @@ -2373,115 +2048,191 @@ You can download the latest version from http://openlp.org/. OpenLP versjonen har blitt oppdatert - + OpenLP Main Display Blanked - + The Main Display has been blanked out - + Save Changes to Service? - + Your service has changed. Do you want to save those changes? - + Default Theme: %s - + English + Please add the name of your language here Norsk OpenLP.MediaManagerItem - + No Items Selected - + + Import %s + + + + + Import a %s + + + + + Load %s + + + + + Load a new %s + + + + + New %s + + + + + Add a new %s + + + + + Edit %s + + + + + Edit the selected %s + + + + + Delete %s + + + + + Delete the selected item + + + + + Preview %s + + + + + Preview the selected item + + + + + Send the selected item live + + + + + Add %s to Service + + + + + Add the selected item(s) to the service + + + + &Edit %s - + &Delete %s - + &Preview %s - + &Show Live - + &Add to Service &Legg til i møteplan - + &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. - + No items selected - + You must select one or more items - + No Service Item Selected - + You must select an existing service item to add to. - + Invalid Service Item - + You must select a %s service item. @@ -2501,7 +2252,7 @@ You can download the latest version from http://openlp.org/. Version: - + Versjon: @@ -2524,17 +2275,17 @@ You can download the latest version from http://openlp.org/. - + %s (Inactive) - + %s (Active) - + %s (Disabled) @@ -2575,7 +2326,7 @@ You can download the latest version from http://openlp.org/. Opprett ny møteplan - + Open Service Åpne møteplan @@ -2585,7 +2336,7 @@ You can download the latest version from http://openlp.org/. - + Save Service @@ -2695,51 +2446,56 @@ You can download the latest version from http://openlp.org/. &Bytt objekttema - + Save Changes to Service? - + Your service is unsaved, do you want to save those changes before creating a new one? - + OpenLP Service Files (*.osz) OpenLP møteplan (*.osz) - + Your current service is unsaved, do you want to save the changes before opening a new one? - + Error - + 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 + + OpenLP.ServiceNoteForm @@ -2767,7 +2523,7 @@ The content encoding is not UTF-8. Preview - + Forhåndsvisning @@ -2785,70 +2541,55 @@ The content encoding is not UTF-8. - - Blank Screen - - - - - Blank to Theme - - - - - Show Desktop - - - - + Move to live - - Edit and re-preview song - - - - + Start continuous loop Start kontinuerlig løkke - + Stop continuous loop - + s - + s - + Delay between slides in seconds Forsinkelse mellom lysbilder i sekund - + Start playing media Start avspilling av media - + Go To + + + Edit and reload song preview + + OpenLP.SpellTextEdit - + Spelling Suggestions - + Formatting Tags @@ -2960,16 +2701,6 @@ The content encoding is not UTF-8. You are unable to delete the default theme. Du kan ikke slette det globale temaet - - - Theme %s is use in %s plugin. - - - - - Theme %s is use by the service manager. - - You have not selected a theme. @@ -3031,6 +2762,16 @@ The content encoding is not UTF-8. A theme with this name already exists. Would you like to overwrite it? + + + Theme %s is used in the %s plugin. + + + + + Theme %s is used by the service manager. + + OpenLP.ThemesTab @@ -3087,106 +2828,51 @@ The content encoding is not UTF-8. <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. - - - Presentation - Presentasjon - - - - Presentations - - - - - Load - - - - - Load a new Presentation - - - - - Delete - - - - - Delete the selected Presentation - - - - - Preview - - - - - Preview the selected Presentation - - - - - Live - Direkte - - - - Send the selected Presentation live - - - - - Service - - - - - Add the selected Presentation to the service - - PresentationPlugin.MediaItem - + + Presentation + Presentasjon + + + Select Presentation(s) Velg presentasjon(er) - + Automatic Automatisk - + Present using: Presenter ved hjelp av: - + File Exists - + A presentation with that filename already exists. - + Unsupported File - + This type of presentation is not supported. - + You must select an item to delete. @@ -3221,16 +2907,6 @@ The content encoding is not UTF-8. <strong>Remote Plugin</strong><br />The remote plugin provides the ability to send messages to a running version of OpenLP on a different computer via a web browser or through the remote API. - - - Remote - - - - - Remotes - Fjernmeldinger - RemotePlugin.RemoteTab @@ -3297,11 +2973,6 @@ The content encoding is not UTF-8. <strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services. - - - SongUsage - - SongUsagePlugin.SongUsageDeleteForm @@ -3366,76 +3037,6 @@ The content encoding is not UTF-8. <strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs. - - - Song - Sang - - - - Songs - Sanger - - - - Add - - - - - Add a new Song - - - - - Edit - - - - - Edit the selected Song - - - - - Delete - - - - - Delete the selected Song - - - - - Preview - - - - - Preview the selected Song - - - - - Live - Direkte - - - - Send the selected Song live - - - - - Service - - - - - Add the selected Song to the service - - SongsPlugin.AuthorsForm @@ -3476,7 +3077,7 @@ The content encoding is not UTF-8. - You have not set a display name for the author, would you like me to combine the first and last names for you? + You have not set a display name for the author, combine the first and last names? @@ -3490,7 +3091,7 @@ The content encoding is not UTF-8. &Title: - + &Tittel: @@ -3525,7 +3126,7 @@ The content encoding is not UTF-8. &Delete - + &Slett @@ -3744,325 +3345,360 @@ The content encoding is not UTF-8. SongsPlugin.ImportWizardForm - + No OpenLP 2.0 Song Database Selected - + You need to select an OpenLP 2.0 song database file to import from. - + No openlp.org 1.x Song Database Selected - + You need to select an openlp.org 1.x song database file to import from. - - No OpenLyrics Files Selected - - - - - You need to add at least one OpenLyrics song file to import from. - - - - + No OpenSong Files Selected - + You need to add at least one OpenSong song file to import from. - + No Words of Worship Files Selected - + You need to add at least one Words of Worship file to import from. - + No CCLI Files Selected - + You need to add at least one CCLI file to import from. - + No Songs of Fellowship File Selected - + You need to add at least one Songs of Fellowship file to import from. - + No Document/Presentation Selected - + You need to add at least one document or presentation file to import from. - + Select OpenLP 2.0 Database File - + Select openlp.org 1.x Database File - - Select OpenLyrics Files - - - - + Select Open Song Files - + Select Words of Worship Files - + Select CCLI Files - + Select Songs of Fellowship Files - + Select Document/Presentation Files - + Starting import... - + Starter å importere... - + Song Import Wizard - + Welcome to the 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. - + Select Import Source Velg importeringskilde - + Select the import format, and where to import from. - + Velg importeringsformat og hvor du vil importere dem - + Format: Format: - + OpenLP 2.0 OpenLP 2.0 - + openlp.org 1.x - + OpenLyrics - + OpenSong OpenSong - + Words of Worship - + CCLI/SongSelect - + Songs of Fellowship - + Generic Document/Presentation - + Filename: - + Browse... - + + 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. + + + + Add Files... - + Remove File(s) - - Importing + + 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. + + + + + Importing + Importerer + + + Please wait while your songs are imported. - + Ready. Klar. - + %p% - + Importing "%s"... - + Importing %s... + + + No EasyWorship Song Database Selected + + + + + You need to select an EasyWorship song database file to import from. + + + + + Select EasyWorship Database File + + + + + EasyWorship + + + + + 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. + + + + + Administered by %s + + SongsPlugin.MediaItem - + + Song + Sang + + + Song Maintenance - + Maintain the lists of authors, topics and books Rediger liste over forfattere, emner og bøker. - + Search: Søk: - + Type: Type: - + Clear - + Search Søk - + Titles Titler - + Lyrics - + Authors - + You must select an item to edit. - + You must select an item to delete. - + Are you sure you want to delete the selected song? - + Are you sure you want to delete the %d selected songs? - + Delete Song(s)? - + CCLI Licence: CCLI lisens: @@ -4098,12 +3734,12 @@ The content encoding is not UTF-8. SongsPlugin.SongImport - + copyright - + © @@ -4111,12 +3747,12 @@ The content encoding is not UTF-8. SongsPlugin.SongImportForm - + Finished import. Import fullført. - + Your song import failed. @@ -4156,7 +3792,7 @@ The content encoding is not UTF-8. &Delete - + &Slett @@ -4198,11 +3834,6 @@ The content encoding is not UTF-8. Could not save your changes. - - - Could not save your modified author, because he already exists. - - Could not save your modified topic, because it already exists. @@ -4268,6 +3899,11 @@ The content encoding is not UTF-8. No book selected! Ingen bok er valgt! + + + Could not save your modified author, because the author already exists. + + SongsPlugin.SongsTab @@ -4311,8 +3947,8 @@ The content encoding is not UTF-8. - You need to type in a topic name! - Skriv inn et emnenavn! + You need to type in a topic name. + diff --git a/resources/i18n/pt_BR.ts b/resources/i18n/pt_BR.ts index 23e3dc594..400d6d86c 100644 --- a/resources/i18n/pt_BR.ts +++ b/resources/i18n/pt_BR.ts @@ -5,27 +5,17 @@ &Alert - &Alerta + &Alerta Show an alert message. - + Exibir uma mensagem de alerta. <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of nursery alerts on the display screen - - - - - Alert - - - - - Alerts - Alertas + <strong>Plugin de Alertas</strong><br />O plugin de alertas controla a exibição de alertas de berçário na tela de apresentação @@ -33,57 +23,57 @@ Alert Message - Mensagem de Alerta + Mensagem de Alerta Alert &text: - + &Texto de Alerta: &Parameter(s): - &Parâmetro(s) + &Parâmetro(s) &New - &Novo + &Novo &Save - &Salvar + &Salvar &Delete - &Deletar + &Deletar Displ&ay - + &Exibir Display && Cl&ose - + Exibir && &Fechar &Close - &Fechar + &Fechar New Alert - Novo Alerta + Novo Alerta You haven't specified any text for your alert. Please type in some text before clicking New. - + Você não digitou nenhum texto para o seu alerta. Por favor digite algum texto antes de clicar em Novo. @@ -91,7 +81,7 @@ Alert message created and displayed. - + Mensagem de alerta criada e exibida. @@ -99,76 +89,89 @@ Alerts - Alertas + Alertas Font - Fonte + Fonte Font name: - Nome da fonte: + Nome da fonte: Font color: - + Cor da fonte: Background color: - + Cor do plano de fundo: Font size: - + Tamanho da fonte: pt - pt + pt Alert timeout: - Tempo Limite para o Alerta: + Tempo limite para o Alerta: s - s + s Location: - Localização: + Localização: Preview - + Pré-Visualização OpenLP 2.0 - OpenLP 2.0 + OpenLP 2.0 Top - Topo + Topo Middle - Meio + Meio Bottom + Rodapé + + + + BiblePlugin.MediaItem + + + Error + Erro + + + + You cannot combine single and dual bible verses. Do you want to delete your search results and start a new search? @@ -177,92 +180,12 @@ &Bible - &Bíblia + &Bíblia <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display bible verses from different sources during the service. - <strong>Bible Plugin</strong><br />Este plugin permite exibir versículos bíblicos de diferentes fontes durante o culto. - - - - Bible - Bíblia - - - - Bibles - Bíblias - - - - Import - Importar - - - - Import a Bible - - - - - Add - Adicionar - - - - Add a new Bible - - - - - Edit - Editar - - - - Edit the selected Bible - - - - - Delete - Deletar - - - - Delete the selected Bible - - - - - Preview - - - - - Preview the selected Bible - - - - - Live - Ao Vivo - - - - Send the selected Bible live - - - - - Service - - - - - Add the selected Bible to the service - + <strong>Plugin da Bíblia</strong><br />Este plugin permite exibir versículos bíblicos de diferentes fontes durante o culto. @@ -270,12 +193,12 @@ Book not found - Livro não encontrado + Livro não encontrado The book you requested could not be found in this bible. Please check your spelling and that this is a complete bible not just one testament. - + O livro que você solicitou não foi encontrado nesta Bíblia. Por favor verifique se está escrito corretamente e se esta é uma Bíblia completa ou somente um testamento. @@ -283,11 +206,11 @@ Scripture Reference Error - + Erro de Referência na Escritura. - Your scripture reference is either not supported by OpenLP or invalid. Please make sure your reference conforms to one of the following patterns: + 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 @@ -304,73 +227,74 @@ Book Chapter:Verse-Chapter:Verse Bibles - Bíblias + Bíblias Verse Display - Exibição do Versículo + Exibição do Versículo Only show new chapter numbers - Somente mostre números de capítulos novos + Somente mostrar números de capítulos novos Layout style: - + Estilo do Layout: Display style: - + Estilo de Exibição: Bible theme: - + Tema da Bíblia: Verse Per Slide - + Versículos por Slide Verse Per Line - + Versículos por Linha Continuous - Contínuo + Contínuo No Brackets - + Sem Parênteses ( And ) - ( e ) + ( E ) { And } - + { E } [ And ] - + [ E ] Note: Changes do not affect verses already in the service. - + Nota: +Mudanças não afetam os versículos que já estão no culto. @@ -383,77 +307,77 @@ Changes do not affect verses already in the service. Bible Import Wizard - Assistente de Importação da Bíblia + Assistente de Importação de Bíblia Welcome to the Bible Import Wizard - Bem Vindo ao assistente de Importação de Bíblias + Bem Vindo ao assistente de Importação de Bíblias 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. - Este assistente irá ajudá-lo a importar Bíblias de uma variedade de formatos. Clique no botão próximo abaixo para comecar o processo selecionando o formato a ser importado. + Este assistente irá ajudá-lo a importar Bíblias de uma variedade de formatos. Clique no botão próximo abaixo para começar o processo selecionando o formato a ser importado. Select Import Source - Selecionar Origem da Importação + Selecionar Origem da Importação Select the import format, and where to import from. - Selecione o formato e de onde será a importação + Selecione o formato, e de onde importar. Format: - Formato: + Formato: OSIS - OSIS + OSIS CSV - CSV + CSV OpenSong - OpenSong + OpenSong Web Download - Download da Internet + Download da Internet File location: - Local do arquivo: + Local do arquivo: Books location: - + Localização dos livros: Verse location: - + Localização do Versículo: Bible filename: - + Nome do arquivo da Bíblia: Location: - Localização: + Localização: @@ -468,285 +392,285 @@ Changes do not affect verses already in the service. Bible: - Bíblia: + Bíblia: Download Options - Opções de Download + Opções de Download Server: - Servidor: + Servidor: Username: - Nome de Usuário: + Nome de Usuário: Password: - Senha: + Senha: Proxy Server (Optional) - Servidor Proxy (Opcional) + Servidor Proxy (Opcional) License Details - Detalhes da Licença + Detalhes da Licença Set up the Bible's license details. - Configurar detalhes de licença da Bíblia. + Configurar detalhes de licença da Bíblia. Version name: - + Nome da Versão: Copyright: - Direito Autoral: + Direito Autoral: Permission: - Permissão: + Permissão: Importing - Importando + Importando Please wait while your Bible is imported. - Por favor aguarde enquanto a sua Bíblia é importada. + Por favor aguarde enquanto a sua Bíblia é importada. Ready. - Pronto. + Pronto. Invalid Bible Location - Localização da Bíblia Inválida + Localização da Bíblia Inválida You need to specify a file to import your Bible from. - + Você precisa especificar um arquivo para importar a sua Bíblia. Invalid Books File - Arquivo de Livros Inválido + Arquivo de Livros Inválido You need to specify a file with books of the Bible to use in the import. - Você precisa especificar um arquivo com os livros da Bíblia a serem importados. + Você precisa especificar um arquivo com os livros da Bíblia para usar na importação. Invalid Verse File - Arquivo de Versículo Inválido + Arquivo de Versículo Inválido You need to specify a file of Bible verses to import. - + Você precisa especificar um arquivo de Versículos da Bíblia para importar. Invalid OpenSong Bible - Bíblia do OpenSong Inválida + Bíblia do OpenSong Inválida You need to specify an OpenSong Bible file to import. - + Você precisa especificar uma Bíblia do OpenSong para importar. Empty Version Name - Nome da Versão Vazio + Nome da Versão Vazio You need to specify a version name for your Bible. - + Você precisa especificar um nome de versão para a sua Bíblia - + Empty Copyright - Limpar Direito Autoral + Limpar Direito Autoral - - You need to set a copyright for your Bible! Bibles in the Public Domain need to be marked as such. - Você precisa definir um direito autoral para a sua Bíblia! Bíblias em Domínio Público necessitam ser marcadas como tal. - - - + Bible Exists - Bíblia Existe + Bíblia Existe - - This Bible already exists! Please import a different Bible or first delete the existing one. - A Bíblia já existe! Por favor importe uma Bíblia diferente ou primeiro delete a existente. - - - + Open OSIS File - Abrir arquivo OSIS + Abrir arquivo OSIS - + Open Books CSV File - Abrir arquivo CSV de Livros + Abrir arquivo CSV de Livros - + Open Verses CSV File - + Abrir arquivo CSV de Versículos - + Open OpenSong Bible - Abrir Biblia do OpenSong + Abrir Biblia do OpenSong Starting import... - Iniciando importação... + Iniciando importação... - + Finished import. - Importação Finalizada. + Importação Finalizada. - + Your Bible import failed. - A sua Importação da Bíblia falhou. + A sua Importação da Bíblia falhou. + + + + You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. + + + + + This Bible already exists. Please import a different Bible or first delete the existing one. + BiblesPlugin.MediaItem - + + Bible + Bíblia + + + Quick - Rápido + Rápido - + Advanced - Avançado + Avançado - + Version: - Versão: + Versão: - + Dual: - Duplo: + Duplo: - + Search type: - Tipo de busca: + Tipo de busca: - + Find: - Buscar: - - - - Search - Buscar - - - - Results: - Resultados: - - - - Book: - Livro: - - - - Chapter: - Capítulo: - - - - Verse: - Versículo: - - - - From: - De: + Buscar: + Search + Pesquisar + + + + Results: + Resultados: + + + + Book: + Livro: + + + + Chapter: + Capítulo: + + + + Verse: + Versículo: + + + + From: + De: + + + To: - Para: + Para: - + Verse Search - Busca de Versículos + Busca de Versículos - + Text Search - Busca de Texto + Busca por Texto - + Clear - Limpar + Limpar - + Keep - Manter + Manter - + No Book Found - Nenhum Livro Encontrado + Nenhum Livro Encontrado - + No matching book could be found in this Bible. - Nenhum livro foi encontrado nesta Bíblia + O livro não foi encontrado nesta Bíblia. - - etc - - - - + Bible not fully loaded. - + A Bíblia não foi completamente carregada. @@ -754,14 +678,14 @@ Changes do not affect verses already in the service. Importing - Importando + Importando 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 Customs are. This plugin provides greater freedom over the Customs plugin. + <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. @@ -770,12 +694,12 @@ Changes do not affect verses already in the service. Custom - Customizado + Customizado Custom Display - Exibição Customizada + Exibição Customizada @@ -788,122 +712,122 @@ Changes do not affect verses already in the service. Edit Custom Slides - Editar Slides Customizados + Editar Slides Customizados Move slide up one position. - + Mover slide uma posição acima. Move slide down one position. - Mover slide uma posição para baixo. + Mover slide uma posição para baixo. &Title: - &Título: + &Título: Add New - Adicionar Novo + Adicionar Novo Add a new slide at bottom. - + Adicionar um novo slide no final. Edit - Editar + Editar Edit the selected slide. - Editar o slide selecionado. + Editar o slide selecionado. Edit All - Editar Todos + Editar Todos Edit all the slides at once. - + Editar todos os slides de uma vez. Save - Salvar + Salvar Save the slide currently being edited. - + Salvar o slide que está sendo editado. Delete - Deletar + Deletar Delete the selected slide. - + Deletar a Bíblia selecionada. Clear - Limpar + Limpar Clear edit area - Limpar área de edição + Limpar área de edição Split Slide - + Dividir Slide Split a slide into two by inserting a slide splitter. - Dividir um slide em dois, inserindo um divisor de slides. + Dividir um slide em dois, inserindo um divisor de slides. The&me: - + The&ma: &Credits: - &Créditos: + &Créditos: Save && Preview - Salvar && Pré-Visualizar + Salvar && Pré-Visualizar Error - Erro + Erro You need to type in a title. - Você precisa digitar um título. + Você precisa digitar um título. You need to add at least one slide - + Você precisa adicionar pelo menos um slide @@ -914,241 +838,78 @@ Changes do not affect verses already in the service. CustomPlugin.MediaItem - + + Custom + Customizado + + + You haven't selected an item to edit. - + You haven't selected an item to delete. - - CustomsPlugin - - - Custom - Customizado - - - - Customs - - - - - Import - Importar - - - - Import a Custom - - - - - Load - - - - - Load a new Custom - - - - - Add - Adicionar - - - - Add a new Custom - - - - - Edit - Editar - - - - Edit the selected Custom - - - - - Delete - Deletar - - - - Delete the selected Custom - - - - - Preview - - - - - Preview the selected Custom - - - - - Live - Ao Vivo - - - - Send the selected Custom live - - - - - Service - - - - - Add the selected Custom to the service - - - 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 Images with the selected image as a background instead of the background provided by the theme. - - - - - Image - Imagem - - - - Images - Imagens - - - - Load - - - - - Load a new Image - - - - - Add - Adicionar - - - - Add a new Image - - - - - Edit - Editar - - - - Edit the selected Image - - - - - Delete - Deletar - - - - Delete the selected Image - - - - - Preview - - - - - Preview the selected Image - - - - - Live - Ao Vivo - - - - Send the selected Image live - - - - - Service - - - - - Add the selected Image to the service + <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. ImagePlugin.MediaItem - + + Image + Imagem + + + Select Image(s) - Selecionar Imagem(s) + Selecionar Imagem(s) - + All Files - Todos os Arquivos + Todos os Arquivos - + Replace Live Background - + Replace Background - Substituir Plano de Fundo + Substituir Plano de Fundo - + Reset Live Background - + You must select an image to delete. - + Image(s) - Imagem(s) + Imagem(s) - + You must select an image to replace the background with. - + You must select a media file to replace the background with. @@ -1160,111 +921,31 @@ Changes do not affect verses already in the service. <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. - - - Media - Mídia - - - - Medias - - - - - Load - - - - - Load a new Media - - - - - Add - Adicionar - - - - Add a new Media - - - - - Edit - Editar - - - - Edit the selected Media - - - - - Delete - Deletar - - - - Delete the selected Media - - - - - Preview - - - - - Preview the selected Media - - - - - Live - Ao Vivo - - - - Send the selected Media live - - - - - Service - - - - - Add the selected Media to the service - - MediaPlugin.MediaItem - - Select Media - Selecionar Mídia + + Media + Mídia - + + Select Media + Selecionar Mídia + + + Replace Live Background - + Replace Background - Substituir Plano de Fundo + Substituir Plano de Fundo - - Media - Mídia - - - + You must select a media file to delete. @@ -1272,7 +953,7 @@ Changes do not affect verses already in the service. OpenLP - + Image Files @@ -1282,7 +963,7 @@ Changes do not affect verses already in the service. About OpenLP - Sobre o OpenLP + Sobre o OpenLP @@ -1298,7 +979,7 @@ OpenLP is written and maintained by volunteers. If you would like to see more fr About - Sobre + Sobre @@ -1340,7 +1021,7 @@ Built With PyQt4: http://www.riverbankcomputing.co.uk/software/pyqt/intro Oxygen Icons: http://oxygen-icons.org/ - Líder do Projeto + Líder do Projeto Raoul "superfly" Snyman Desenvolvedores @@ -1361,7 +1042,7 @@ Contribuidores Carsten "catini" Tingaard Frode "frodus" Woldsund -Testes +Testadores Philip "Phill" Ridout Wesley "wrst" Stout (lead) @@ -1372,7 +1053,7 @@ Criação de Pacotes Matthias "matthub" Hub (Mac OS X) Raoul "superfly" Snyman (Windows, Ubuntu) -Criado Usando +Criado Utilizando Python: http://www.python.org/ Qt4: http://qt.nokia.com/ PyQt4: http://www.riverbankcomputing.co.uk/software/pyqt/intro @@ -1382,7 +1063,7 @@ Criado Usando Credits - Créditos + Créditos @@ -1522,22 +1203,22 @@ This General Public License does not permit incorporating your program into prop License - Licença + Licença Contribute - Contribuir + Contribuir Close - Fechar + Fechar build %s - + compilação %s @@ -1545,17 +1226,17 @@ This General Public License does not permit incorporating your program into prop Advanced - Avançado + Avançado UI Settings - Configurações da Interface + Configurações da Interface Number of recent files to display: - Número de arquivos recentes a serem mostrados: + Número de arquivos recentes a serem exibidos: @@ -1573,87 +1254,87 @@ This General Public License does not permit incorporating your program into prop Theme Maintenance - Manutenção do Tema + Manutenção do Tema Theme &name: - &Nome do Tema: + &Nome do Tema: Type: - Tipo: + Tipo: Solid Color - Cor Sólida + Cor Sólida Gradient - Gradiente + Gradiente Image - Imagem + Imagem Image: - Imagem: + Imagem: Gradient: - + Gradiente: Horizontal - Horizontal + Horizontal Vertical - Vertical + Vertical Circular - Circular + Circular &Background - + &Plano de Fundo Main Font - Fonte Principal + Fonte Principal Font: - Fonte: + Fonte: Color: - + Cor: Size: - Tamanho: + Tamanho: pt - pt + pt @@ -1663,202 +1344,202 @@ This General Public License does not permit incorporating your program into prop Normal - Normal + Normal Bold - Negrito + Negrito Italics - Itálico + Itálico Bold/Italics - Negrito/Itálico + Negrito/Itálico Style: - Estilo: + Estilo: Display Location - Local de Exibição + Local de Exibição Use default location - + Usar local padrão X position: - + Posição X: Y position: - + Posição Y: Width: - Largura: + Largura: Height: - Altura: + Altura: px - px + px &Main Font - + Fonte &Principal Footer Font - Fonte do Rodapé + Fonte do Rodapé &Footer Font - Fonte do &Rodapé + Fonte do &Rodapé Outline - Esboço + Esboço Outline size: - + Tamanho do Esboço: Outline color: - + Cor do Esboço: Show outline: - + Exibir Esboço: Shadow - Sombra + Sombra Shadow size: - + Tamanho da Sombra: Shadow color: - + Cor da Sombra: Show shadow: - + Exibir Sombra: Alignment - Alinhamento + Alinhamento Horizontal align: - + Alinhamento horizontal: Left - Esquerda + Esquerda Right - Direita + Direita Center - Centralizar + Centralizar Vertical align: - + Alinhamento vertical: Top - Topo + Topo Middle - Meio + Meio Bottom - + Rodapé Slide Transition - Transição do Slide + Transição do Slide Transition active - + Transição ativada &Other Options - &Outras Opções + &Outras Opções Preview - + Pré-Visualização All Files - Todos os Arquivos + Todos os Arquivos Select Image - Selecionar Imagem + Selecionar Imagem First color: - + Primeira cor: Second color: - + Segunda cor: @@ -1869,13 +1550,13 @@ This General Public License does not permit incorporating your program into prop OpenLP.ExceptionDialog - - Error Occured + + 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. - - 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. + + Error Occurred @@ -1884,17 +1565,17 @@ This General Public License does not permit incorporating your program into prop General - Geral + Geral Monitors - Monitores + Monitores Select monitor for output display: - Selecione um monitor para exibição: + Selecione um monitor para exibição: @@ -1904,27 +1585,27 @@ This General Public License does not permit incorporating your program into prop Application Startup - Inicialização da Aplicação + Inicialização da Aplicação Show blank screen warning - Exibir alerta de tela em branco + Exibir alerta de tela em branco Automatically open the last service - Abrir o último culto automaticamente + Abrir a última Lista de Exibição automaticamente Show the splash screen - Exibir a tela inicial + Exibir a tela inicial Application Settings - Configurações da Aplicação + Configurações da Aplicação @@ -1934,7 +1615,7 @@ This General Public License does not permit incorporating your program into prop Automatically preview next item in service - Pré-visualizar automaticamente o próximo item na Lista de Exibição + Pré-visualizar automaticamente o próximo item na Lista de Exibição @@ -1949,7 +1630,7 @@ This General Public License does not permit incorporating your program into prop CCLI Details - Detalhes de CCLI + Detalhes de CCLI @@ -1964,7 +1645,7 @@ This General Public License does not permit incorporating your program into prop SongSelect password: - Senha do SongSelect: + Senha do SongSelect: @@ -1974,22 +1655,22 @@ This General Public License does not permit incorporating your program into prop X - + X Y - + Y Height - Altura + Altura Width - + Largura @@ -1999,213 +1680,208 @@ This General Public License does not permit incorporating your program into prop Screen - Tela + Tela primary - principal + principal OpenLP.LanguageManager - + Language - Idioma + Idioma - + Please restart OpenLP to use your new language setting. - Por favor reinicie o OpenLP para usar a nova configuração de idioma. + Por favor reinicie o OpenLP para usar a nova configuração de idioma. OpenLP.MainWindow - - - New Service - Novo Culto - - - - Open Service - - - - - Save Service - Salvar Culto - OpenLP 2.0 - OpenLP 2.0 - - - - AddHereYourLanguageName - + OpenLP 2.0 &File - &Arquivo + &Arquivo &Import - &Importar + &Importar &Export - &Exportar + &Exportar &View - &Visualizar + &Visualizar M&ode - M&odo + M&odo &Tools - &Ferramentas + &Ferramentas &Settings - &Configurações + &Configurações &Language - &Idioma + &Idioma &Help - &Ajuda + &Ajuda Media Manager - Gerenciador de Mídia + Gerenciador de Mídia Service Manager - Gerenciador de Culto + Gerenciador de Lista de Exibição Theme Manager - Gerenciador de Temas + Gerenciador de Temas &New - &Novo + &Novo + + + + New Service + Novo Culto Create a new service. - + Criar uma nova Lista de Exibição. Ctrl+N - Ctrl+N + Ctrl+N &Open - &Abrir + &Abrir + + + + Open Service + Abrir Lista de Exibição Open an existing service. - + Abrir uma Lista de Exibição existente. Ctrl+O - Ctrl+O + Ctrl+O &Save - &Salvar + &Salvar + + + + Save Service + Salvar Lista de Exibição Save the current service to disk. - + Salvar a Lista de Exibição no disco. Ctrl+S - Ctrl+S + Ctrl+S Save &As... - Salvar &Como... + Salvar &Como... Save Service As - Salvar Culto Como + Salvar Lista de Exibição Como Save the current service under a new name. - + Salvar a Lista de Exibição atual com um novo nome. Ctrl+Shift+S - + Ctrl+Shift+S E&xit - S&air + S&air Quit OpenLP - Fechar o OpenLP + Fechar o OpenLP Alt+F4 - Alt+F4 + Alt+F4 &Theme - &Tema + &Tema &Configure OpenLP... - &Configurar o OpenLP... + &Configurar o OpenLP... &Media Manager - &Gerenciador de Mídia + &Gerenciador de Mídia Toggle Media Manager - Alternar Gerenciador de Mídia + Alternar Gerenciador de Mídia @@ -2215,37 +1891,37 @@ This General Public License does not permit incorporating your program into prop F8 - F8 + F8 &Theme Manager - &Gerenciador de Temas + &Gerenciador de Temas Toggle Theme Manager - Alternar para Gerenciamento de Temas + Alternar para Gerenciamento de Temas Toggle the visibility of the theme manager. - Alternar a visibilidade do Gerenciador de Temas. + Alternar a visibilidade do Gerenciador de Temas. F10 - F10 + F10 &Service Manager - &Gerenciador de Culto + &Gerenciador de Lista de Exibição Toggle Service Manager - Alternar para o Gerenciador de Cultos + Alternar para o Gerenciador de Lista de Exibição @@ -2255,17 +1931,17 @@ This General Public License does not permit incorporating your program into prop F9 - F9 + F9 &Preview Panel - &Painel de Pré-Visualização + &Painel de Pré-Visualização Toggle Preview Panel - Alternar para Painel de Pré-Visualização + Alternar para Painel de Pré-Visualização @@ -2275,7 +1951,7 @@ This General Public License does not permit incorporating your program into prop F11 - F11 + F11 @@ -2295,82 +1971,82 @@ This General Public License does not permit incorporating your program into prop F12 - F12 + F12 &Plugin List - &Lista de Plugin + &Lista de Plugins List the Plugins - Listar os Plugins + Listar os Plugins Alt+F7 - Alt+F7 + Alt+F7 &User Guide - &Guia do Usuário + &Guia do Usuário &About - &Sobre + &Sobre More information about OpenLP - Mais informações sobre o OpenLP + Mais informações sobre o OpenLP Ctrl+F1 - Ctrl+F1 + Ctrl+F1 &Online Help - &Ajuda Online + &Ajuda Online &Web Site - &Web Site + &Web Site &Auto Detect - + &Auto-detectar Use the system language, if available. - Usar o idioma do sistema, caso disponível. + Usar o idioma do sistema, caso disponível. Set the interface language to %s - Definir o idioma da interface como %s + Definir o idioma da interface como %s Add &Tool... - + Adicionar &Ferramenta... Add an application to the list of tools. - + Adicionar uma aplicação à lista de ferramentas. &Default - + &Padrão @@ -2380,7 +2056,7 @@ This General Public License does not permit incorporating your program into prop &Setup - + &Configurar @@ -2390,7 +2066,7 @@ This General Public License does not permit incorporating your program into prop &Live - &Ao Vivo + &Ao Vivo @@ -2407,118 +2083,194 @@ You can download the latest version from http://openlp.org/. OpenLP Version Updated - Versão do OpenLP Atualizada + Versão do OpenLP Atualizada - + OpenLP Main Display Blanked - Tela Principal do OpenLP em Branco + Tela Principal do OpenLP em Branco - + The Main Display has been blanked out - A Tela Principal foi apagada + A Tela Principal foi apagada - + Save Changes to Service? - Salvar Mudanças no Culto? + Salvar Mudanças na Lista de Exibição? - + Your service has changed. Do you want to save those changes? - + A sua Lista de Exibição teve mudanças. Você deseja salvá-la? - + Default Theme: %s - Tema padrão: %s + Tema padrão: %s - + English - Inglês + Please add the name of your language here + Português OpenLP.MediaManagerItem - + No Items Selected - + Nenhum Item Selecionado - + + Import %s + Importar %s + + + + Import a %s + Importar um %s + + + + Load %s + Carregar %s + + + + Load a new %s + Carregar um novo %s + + + + New %s + Novo %s + + + + Add a new %s + Adicionar um novo %s + + + + Edit %s + Editar %s + + + + Edit the selected %s + Editar o %s selecionado + + + + Delete %s + Deletar %s + + + + Delete the selected item + Deletar o item selecionado + + + + Preview %s + Pré-visualizar %s + + + + Preview the selected item + Pré-Visualizar o item selecionado + + + + Send the selected item live + Enviar o item selecionado para o ao vivo + + + + Add %s to Service + Adicionar %s à Lista de Exibição + + + + Add the selected item(s) to the service + Adicionar o item selecionado à Lista de Exibição + + + &Edit %s - + &Editar %s - + &Delete %s - &Deletar %s + &Deletar %s - + &Preview %s - + &Pré-visualizar %s - + &Show Live - &Mostrar Ao Vivo + &Mostrar Projeção - + &Add to Service - &Adicionar ao Culto + &Adicionar à Lista de Exibição - + &Add to selected Service Item - + &Adicionar à Lista de Exibição selecionada - + You must select one or more items to preview. - + Você precisa selecionar um ou mais itens para pré-visualizar. - + You must select one or more items to send live. - + You must select one or more items. - Você precisa selecionar um ou mais itens. + Você precisa selecionar um ou mais itens. - + No items selected - + You must select one or more items - Você precisa selecionar um ou mais itens + Você precisa selecionar um ou mais itens - + No Service Item Selected - + You must select an existing service item to add to. - + Invalid Service Item - + You must select a %s service item. @@ -2528,52 +2280,52 @@ You can download the latest version from http://openlp.org/. Plugin List - Lista de Plugins + Lista de Plugins Plugin Details - Detalhes do Plugin + Detalhes do Plugin Version: - Versão: + Versão: About: - Sobre: + Sobre: Status: - Status: + Status: Active - Ativo + Ativo Inactive - Inativo + Inativo - + %s (Inactive) - %s (Inativo) + %s (Inativo) - + %s (Active) - + %s (Ativo) - + %s (Disabled) - + %s (Desabilitado) @@ -2581,22 +2333,22 @@ You can download the latest version from http://openlp.org/. Reorder Service Item - + Reordenar Item da Lista de Exibição Up - + Para Cima Delete - Deletar + Deletar Down - + Para Baixo @@ -2604,179 +2356,184 @@ You can download the latest version from http://openlp.org/. New Service - Novo Culto + Nova Lista de Exibição Create a new service - Criar um novo culto + Criar uma nova Lista de Exibição - + Open Service - + Abrir Lista de Exibição Load an existing service - Carregar um culto existente + Carregar uma Lista de Exibição existente - + Save Service - Salvar Culto + Salvar Lista de Exibição Save this service - Salvar este culto + Salvar esta Lista de Exibição Theme: - Tema: + Tema: Select a theme for the service - Selecione um tema para o culto + Selecione um tema para a Lista de Exibição Move to &top - + Mover para o &topo Move item to the top of the service. - + Mover item para o topo da Lista de Exibição. Move &up - + Mover para &cima Move item up one position in the service. - Mover o ítem uma posição acima no culto. + Mover item uma posição acima na Lista de Exibição. Move &down - + Mover para &baixo Move item down one position in the service. - + Mover item uma posição abaixo na Lista de Exibição. Move to &bottom - + Mover para o &final Move item to the end of the service. - + Mover item para o final da Lista de Exibição. &Delete From Service - + &Deletar da Lista de Exibição Delete the selected item from the service. - + Deletar o item selecionado da Lista de Exibição. &Add New Item - + &Adicionar um Novo Item &Add to Selected Item - + &Adicionar ao Item Selecionado &Edit Item - &Editar Item + &Editar Item &Reorder Item - + &Reordenar Item &Notes - &Notas + &Notas &Preview Verse - &Pré-Visualizar Versículo + &Pré-Visualizar Versículo &Live Verse - &Versículo Ao Vivo + &Versículo na Projeção &Change Item Theme - &Alterar Tema do Item + &Alterar Tema do Item - + Save Changes to Service? - Salvar Mudanças no Culto? + Salvar Mudanças na Lista de Exibição? - + Your service is unsaved, do you want to save those changes before creating a new one? - + OpenLP Service Files (*.osz) - Arquivo de Culto do OpenLP (*.osz) + Arquivo de Lista de Exibição do OpenLP (*.osz) - + Your current service is unsaved, do you want to save the changes before opening a new one? - + Error - Erro + Erro - + 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 + + OpenLP.ServiceNoteForm @@ -2791,7 +2548,7 @@ The content encoding is not UTF-8. Configure OpenLP - Configurar o OpenLP + Configurar o OpenLP @@ -2799,22 +2556,22 @@ The content encoding is not UTF-8. Live - Ao Vivo + Projeção Preview - + Pré-Visualização Move to previous - Mover para o anterior + Mover para o anterior Move to next - Mover para o próximo + Mover para o próximo @@ -2822,70 +2579,55 @@ The content encoding is not UTF-8. - - Blank Screen - Tela em Branco - - - - Blank to Theme - - - - - Show Desktop - - - - + Move to live - Mover para ao vivo + Mover para projeção - - Edit and re-preview song + + Start continuous loop + Iniciar repetição contínua + + + + Stop continuous loop + Parar repetição contínua + + + + s + s + + + + Delay between slides in seconds + Intervalo entre slides em segundos + + + + Start playing media + Iniciar a reprodução de mídia + + + + Go To - - Start continuous loop - Iniciar repetição contínua - - - - Stop continuous loop - Parar repetição contínua - - - - s - s - - - - Delay between slides in seconds - Intervalo entre slides em segundos - - - - Start playing media - Iniciar a reprodução de mídia - - - - Go To + + Edit and reload song preview OpenLP.SpellTextEdit - + Spelling Suggestions - + Formatting Tags @@ -2895,17 +2637,17 @@ The content encoding is not UTF-8. New Theme - Novo Tema + Novo Tema Create a new theme. - Criar um novo tema. + Criar um novo tema. Edit Theme - Editar Tema + Editar Tema @@ -2915,7 +2657,7 @@ The content encoding is not UTF-8. Delete Theme - Deletar Tema + Deletar Tema @@ -2925,7 +2667,7 @@ The content encoding is not UTF-8. Import Theme - Importar Tema + Importar Tema @@ -2935,7 +2677,7 @@ The content encoding is not UTF-8. Export Theme - Exportar Tema + Exportar Tema @@ -2950,7 +2692,7 @@ The content encoding is not UTF-8. &Delete Theme - &Apagar Tema + &Apagar Tema @@ -2990,32 +2732,22 @@ The content encoding is not UTF-8. Error - Erro + Erro You are unable to delete the default theme. - - - Theme %s is use in %s plugin. - - - - - Theme %s is use by the service manager. - - You have not selected a theme. - Você não selecionou um tema. + Você não selecionou um tema. Save Theme - (%s) - Salvar Tema - (%s) + Salvar Tema - (%s) @@ -3035,12 +2767,12 @@ The content encoding is not UTF-8. Your theme could not be exported due to an error. - O tema não pôde ser exportado devido a um erro. + O tema não pôde ser exportado devido a um erro. Select Theme Import File - Selecionar Arquivo de Importação de Tema + Selecionar Arquivo de Importação de Tema @@ -3051,31 +2783,41 @@ The content encoding is not UTF-8. File is not a valid theme. The content encoding is not UTF-8. - O arquivo não é um tema válido. + O arquivo não é um tema válido. A codificação do conteúdo não é UTF-8. File is not a valid theme. - O arquivo não é um tema válido. + O arquivo não é um tema válido. Theme Exists - Tema Existe + Tema Existe A theme with this name already exists. Would you like to overwrite it? + + + Theme %s is used in the %s plugin. + + + + + Theme %s is used by the service manager. + + OpenLP.ThemesTab Themes - Temas + Temas @@ -3090,12 +2832,12 @@ A codificação do conteúdo não é UTF-8. S&ong Level - Nível de &Música + Nível de &Música 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. - Use o tema de cada música na base de dados. Se uma música não tiver um tema associado com ela, então use o tema do culto. Se o culto não tiver um tema, então use o tema global. + Use o tema de cada música na base de dados. Se uma música não tiver um tema associado com ela, então use o tema do culto. Se o culto não tiver um tema, então use o tema global. @@ -3105,7 +2847,7 @@ A codificação do conteúdo não é 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. - Usar o tema do culto, sobrescrevendo qualquer um dos temas individuais das músicas. Se o culto não tiver um tema, então use o tema global. + Usar o tema da lista de exibição, sobrescrevendo qualquer um dos temas individuais das músicas. Se a lista de exibição não tiver um tema, então use o tema global. @@ -3115,7 +2857,7 @@ A codificação do conteúdo não é UTF-8. Use the global theme, overriding any themes associated with either the service or the songs. - Usar o tema global, sobrescrevendo qualquer tema associado com cultos ou músicas. + Usar o tema global, sobrescrevendo qualquer tema associado às lista de exibição ou músicas. @@ -3125,106 +2867,51 @@ A codificação do conteúdo não é UTF-8. <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. - - - Presentation - Apresentação - - - - Presentations - Apresentações - - - - Load - - - - - Load a new Presentation - - - - - Delete - Deletar - - - - Delete the selected Presentation - - - - - Preview - - - - - Preview the selected Presentation - - - - - Live - Ao Vivo - - - - Send the selected Presentation live - - - - - Service - - - - - Add the selected Presentation to the service - - PresentationPlugin.MediaItem - - Select Presentation(s) - Selecionar Apresentação(ões) + + Presentation + Apresentação - + + Select Presentation(s) + Selecionar Apresentação(ões) + + + Automatic - + Present using: - Apresentar usando: + Apresentar usando: - + File Exists - + A presentation with that filename already exists. - Uma apresentação com este nome já existe. + Já existe uma apresentação com este nome. - + Unsupported File - + This type of presentation is not supported. - + You must select an item to delete. @@ -3234,17 +2921,17 @@ A codificação do conteúdo não é UTF-8. Presentations - Apresentações + Apresentações Available Controllers - Controladores Disponíveis + Controladores Disponíveis Advanced - Avançado + Avançado @@ -3259,23 +2946,13 @@ A codificação do conteúdo não é UTF-8. <strong>Remote Plugin</strong><br />The remote plugin provides the ability to send messages to a running version of OpenLP on a different computer via a web browser or through the remote API. - - - Remote - - - - - Remotes - Remoto - RemotePlugin.RemoteTab Remotes - Remoto + Remoto @@ -3335,11 +3012,6 @@ A codificação do conteúdo não é UTF-8. <strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services. - - - SongUsage - - SongUsagePlugin.SongUsageDeleteForm @@ -3369,22 +3041,22 @@ A codificação do conteúdo não é UTF-8. Select Date Range - Selecionar Faixa de Datas + Selecionar Faixa de Datas to - para + para Report Location - Localização do Relatório + Localização do Relatório Output File Location - Local do arquivo de saída + Local do arquivo de saída @@ -3404,118 +3076,48 @@ A codificação do conteúdo não é UTF-8. <strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs. - - - Song - Música - - - - Songs - Músicas - - - - Add - Adicionar - - - - Add a new Song - - - - - Edit - Editar - - - - Edit the selected Song - - - - - Delete - Deletar - - - - Delete the selected Song - - - - - Preview - - - - - Preview the selected Song - - - - - Live - Ao Vivo - - - - Send the selected Song live - - - - - Service - - - - - Add the selected Song to the service - - SongsPlugin.AuthorsForm Author Maintenance - Manutenção de Autores + Manutenção de Autores Display name: - Nome da Tela: + Nome da Tela: First name: - Primeiro Nome: + Primeiro Nome: Last name: - Sobrenome: + Sobrenome: Error - Erro + Erro You need to type in the first name of the author. - Você precisa digitar o primeiro nome do autor. + Você precisa digitar o primeiro nome do autor. You need to type in the last name of the author. - Você precisa digitar o sobrenome do autor. + Você precisa digitar o sobrenome do autor. - You have not set a display name for the author, would you like me to combine the first and last names for you? - Você não configurou um nome de exibição para o autor. Você quer que eu combine o primeiro e último nomes para você? + You have not set a display name for the author, combine the first and last names? + @@ -3523,17 +3125,17 @@ A codificação do conteúdo não é UTF-8. Song Editor - Editor de Músicas + Editor de Músicas &Title: - &Título: + &Título: Alt&ernate title: - Título &Alternativo: + Título &Alternativo: @@ -3543,17 +3145,17 @@ A codificação do conteúdo não é UTF-8. &Verse order: - Ordem das &estrofes: + Ordem das &estrofes: &Add - %Adicionar + %Adicionar &Edit - &Editar + &Editar @@ -3563,27 +3165,27 @@ A codificação do conteúdo não é UTF-8. &Delete - &Deletar + &Deletar Title && Lyrics - Título && Letras + Título && Letras Authors - Autores + Autores &Add to Song - &Adicionar à Música + &Adicionar à Música &Remove - &Remover + &Remover @@ -3598,22 +3200,22 @@ A codificação do conteúdo não é UTF-8. A&dd to Song - A&dicionar uma Música + A&dicionar uma Música R&emove - R&emover + R&emover Song Book - Livro de Músicas + Livro de Músicas Book: - Livro: + Livro: @@ -3628,7 +3230,7 @@ A codificação do conteúdo não é UTF-8. Theme - Tema + Tema @@ -3638,7 +3240,7 @@ A codificação do conteúdo não é UTF-8. Copyright Information - Informação de Direitos Autorais + Informação de Direitos Autorais @@ -3653,32 +3255,32 @@ A codificação do conteúdo não é UTF-8. Comments - Comentários + Comentários Theme, Copyright Info && Comments - Tema, Direitos Autorais && Comentários + Tema, Direitos Autorais && Comentários Save && Preview - Salvar && Pré-Visualizar + Salvar && Pré-Visualizar Add Author - Adicionar Autor + Adicionar Autor This author does not exist, do you want to add them? - Este autor não existe, deseja adicioná-lo? + Este autor não existe, deseja adicioná-lo? Error - Erro + Erro @@ -3703,12 +3305,12 @@ A codificação do conteúdo não é UTF-8. This topic does not exist, do you want to add it? - Este tópico não existe, deseja adicioná-lo? + Este tópico não existe, deseja adicioná-lo? This topic is already in the list. - Este tópico já está na lista. + Este tópico já está na lista. @@ -3718,7 +3320,7 @@ A codificação do conteúdo não é UTF-8. 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. - Não há nenhum tópico válido selecionado. Selecione um tópico da lista, ou digite um novo tópico e clique em "Adicionar Tópico à Música" para adicionar o novo tópico. + Não há nenhum tópico válido selecionado. Selecione um tópico da lista ou digite um novo tópico e clique em "Adicionar Tópico à Música" para adicionar o novo tópico. @@ -3738,7 +3340,7 @@ A codificação do conteúdo não é UTF-8. You have not added any authors for this song. Do you want to add an author now? - Você não adicionou nenhum autor a esta música. Deseja adicionar um agora? + Você não adicionou nenhum autor a esta música. Deseja adicionar um autor agora? @@ -3758,7 +3360,7 @@ A codificação do conteúdo não é UTF-8. This song book does not exist, do you want to add it? - Este hinário não existe, deseja adicioná-lo? + Este hinário não existe, deseja adicioná-lo? @@ -3766,12 +3368,12 @@ A codificação do conteúdo não é UTF-8. Edit Verse - Editar Versículo + Editar Versículo &Verse type: - Tipo de &Versículo: + Tipo de &Versículo: @@ -3782,327 +3384,362 @@ A codificação do conteúdo não é UTF-8. SongsPlugin.ImportWizardForm - + No OpenLP 2.0 Song Database Selected - + You need to select an OpenLP 2.0 song database file to import from. - + No openlp.org 1.x Song Database Selected - + You need to select an openlp.org 1.x song database file to import from. - - No OpenLyrics Files Selected - - - - - You need to add at least one OpenLyrics song file to import from. - - - - + No OpenSong Files Selected - + You need to add at least one OpenSong song file to import from. - + No Words of Worship Files Selected - + You need to add at least one Words of Worship file to import from. - + No CCLI Files Selected - + You need to add at least one CCLI file to import from. - Você precisa adicionar ao menos um arquivo CCLI para importação. + Você precisa adicionar ao menos um arquivo CCLI para importação. - + No Songs of Fellowship File Selected - + You need to add at least one Songs of Fellowship file to import from. - + No Document/Presentation Selected - + You need to add at least one document or presentation file to import from. - + Select OpenLP 2.0 Database File - + Select openlp.org 1.x Database File - - Select OpenLyrics Files - - - - + Select Open Song Files - + Select Words of Worship Files - + Select CCLI Files - + Select Songs of Fellowship Files - + Select Document/Presentation Files - + Starting import... Iniciando importação... - + Song Import Wizard - + Welcome to the 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. - + Select Import Source Selecionar Origem da Importação - + Select the import format, and where to import from. - Selecione o formato e de onde será a importação + Selecione o formato, e de onde importar. - + Format: Formato: - + OpenLP 2.0 OpenLP 2.0 - + openlp.org 1.x - + OpenLyrics - + OpenSong OpenSong - + Words of Worship - + CCLI/SongSelect - + Songs of Fellowship - + Generic Document/Presentation - + Filename: - + Browse... - + + 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. + + + + 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. + + + + Importing Importando - + Please wait while your songs are imported. - Por favor aguarde enquanto as músicas são importadas. + - + Ready. Pronto. - + %p% - + Importing "%s"... - + Importing %s... + + + No EasyWorship Song Database Selected + + + + + You need to select an EasyWorship song database file to import from. + + + + + Select EasyWorship Database File + + + + + EasyWorship + + + + + 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. + + + + + Administered by %s + + SongsPlugin.MediaItem - + + Song + + + + Song Maintenance - Manutenção de Músicas + Gerenciamento de Músicas - + Maintain the lists of authors, topics and books - Gerenciar as listas de autores, tópicos e livros - - - - Search: - Buscar: + + Search: + + + + Type: Tipo: - + Clear Limpar - + Search - Buscar - - - - Titles - Títulos + Pesquisar - Lyrics - Letras + Titles + + Lyrics + + + + Authors Autores - + You must select an item to edit. - + You must select an item to delete. - + Are you sure you want to delete the selected song? - + Are you sure you want to delete the %d selected songs? - + Delete Song(s)? - + CCLI Licence: - Licença CCLI: + @@ -4136,12 +3773,12 @@ A codificação do conteúdo não é UTF-8. SongsPlugin.SongImport - + copyright - + © @@ -4149,12 +3786,12 @@ A codificação do conteúdo não é UTF-8. SongsPlugin.SongImportForm - + Finished import. Importação Finalizada. - + Your song import failed. @@ -4164,7 +3801,7 @@ A codificação do conteúdo não é UTF-8. Song Maintenance - Manutenção de Músicas + Gerenciamento de Músicas @@ -4174,7 +3811,7 @@ A codificação do conteúdo não é UTF-8. Topics - Tópicos + @@ -4214,7 +3851,7 @@ A codificação do conteúdo não é UTF-8. Could not add your topic. - Não foi possível adicionar o seu tópico. + @@ -4224,7 +3861,7 @@ A codificação do conteúdo não é UTF-8. Could not add your book. - Não foi possível adicionar o livro. + @@ -4236,25 +3873,20 @@ A codificação do conteúdo não é UTF-8. Could not save your changes. - - - Could not save your modified author, because he already exists. - Não foi possível salvar o seu autor modificado, porque ele já existe. - Could not save your modified topic, because it already exists. - Não foi possível salvar o tópico modificado, porque ele já existe. + Delete Author - Deletar Autor + Are you sure you want to delete the selected author? - Você tem certeza que deseja deletar o autor selecionado? + @@ -4264,37 +3896,37 @@ A codificação do conteúdo não é UTF-8. No author selected! - Nenhum autor selecionado! + Delete Topic - Deletar Tópico + Are you sure you want to delete the selected topic? - Você tem certeza que deseja deletar o tópico selecionado? + This topic cannot be deleted, it is currently assigned to at least one song. - Este tópico não pode ser removido, pois está associado a pelo menos uma música. + No topic selected! - Nenhum tópico selecionado! + Delete Book - Deletar Livro + Apagar Livro Are you sure you want to delete the selected book? - Você tem certeza que deseja deletar o livro selecionado? + @@ -4304,7 +3936,12 @@ A codificação do conteúdo não é UTF-8. No book selected! - Nenhum livro selecionado! + + + + + Could not save your modified author, because the author already exists. + @@ -4312,12 +3949,12 @@ A codificação do conteúdo não é UTF-8. Songs - Músicas + Songs Mode - Modo de Músicas + @@ -4335,12 +3972,12 @@ A codificação do conteúdo não é UTF-8. Topic Maintenance - Manutenção de Tópico + Topic name: - Nome do tópico: + @@ -4349,8 +3986,8 @@ A codificação do conteúdo não é UTF-8. - You need to type in a topic name! - Você precisa digitar um nome para o tópico! + You need to type in a topic name. + @@ -4358,37 +3995,37 @@ A codificação do conteúdo não é UTF-8. Verse - Versículo + Chorus - Refrão + Bridge - Ligação + Pre-Chorus - Pré-Refrão + Intro - Introdução + Ending - Terminando + Other - Outro + diff --git a/resources/i18n/sv.ts b/resources/i18n/sv.ts index 701f2e3f0..be456b31b 100644 --- a/resources/i18n/sv.ts +++ b/resources/i18n/sv.ts @@ -17,16 +17,6 @@ <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of nursery alerts on the display screen - - - Alert - - - - - Alerts - Alarm - AlertsPlugin.AlertForm @@ -172,6 +162,19 @@ + + BiblePlugin.MediaItem + + + Error + + + + + You cannot combine single and dual bible verses. Do you want to delete your search results and start a new search? + + + BiblesPlugin @@ -184,86 +187,6 @@ <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display bible verses from different sources during the service. - - - Bible - Bibel - - - - Bibles - Biblar - - - - Import - Importera - - - - Import a Bible - - - - - Add - Lägg till - - - - Add a new Bible - - - - - Edit - Redigera - - - - Edit the selected Bible - - - - - Delete - Ta bort - - - - Delete the selected Bible - - - - - Preview - Förhandsgranska - - - - Preview the selected Bible - - - - - Live - Live - - - - Send the selected Bible live - - - - - Service - - - - - Add the selected Bible to the service - - BiblesPlugin.BibleDB @@ -287,7 +210,7 @@ - Your scripture reference is either not supported by OpenLP or invalid. Please make sure your reference conforms to one of the following patterns: + 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 @@ -586,42 +509,32 @@ Changes do not affect verses already in the service. Du måste ange ett versionsnamn för din Bibel. - + Empty Copyright Tom copyright-information - - You need to set a copyright for your Bible! Bibles in the Public Domain need to be marked as such. - Du måste infoga copyright-information för din Bibel! Biblar i den publika domänen måste innehålla det. - - - + Bible Exists Bibel existerar - - This Bible already exists! Please import a different Bible or first delete the existing one. - Bibeln existerar redan! Importera en annan BIbel eller ta bort den som finns. - - - + Open OSIS File - + Open Books CSV File - + Open Verses CSV File - + Open OpenSong Bible Öppna OpenSong Bibel @@ -631,120 +544,130 @@ Changes do not affect verses already in the service. Påbörjar import... - + Finished import. Importen är färdig. - + Your Bible import failed. Din Bibelimport misslyckades. + + + You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. + + + + + This Bible already exists. Please import a different Bible or first delete the existing one. + + BiblesPlugin.MediaItem - + + Bible + Bibel + + + Quick Snabb - + Advanced Avancerat - + Version: Version: - + Dual: Dubbel: - + Search type: - + Find: Hitta: - + Search Sök - + Results: Resultat: - + Book: Bok: - + Chapter: Kapitel: - + Verse: Vers: - + From: Från: - + To: Till: - + Verse Search Sök vers - + Text Search Textsökning - + Clear - + Keep Behåll - + No Book Found Ingen bok hittades - + No matching book could be found in this Bible. Ingen matchande bok kunde hittas i den här Bibeln. - - etc - - - - + Bible not fully loaded. @@ -761,7 +684,7 @@ Changes do not affect verses already in the service. 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 Customs are. This plugin provides greater freedom over the Customs plugin. + <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. @@ -914,106 +837,18 @@ Changes do not affect verses already in the service. CustomPlugin.MediaItem - - You haven't selected an item to edit. - - - - - You haven't selected an item to delete. - - - - - CustomsPlugin - - + Custom - - Customs + + You haven't selected an item to edit. - - Import - Importera - - - - Import a Custom - - - - - Load - - - - - Load a new Custom - - - - - Add - Lägg till - - - - Add a new Custom - - - - - Edit - Redigera - - - - Edit the selected Custom - - - - - Delete - Ta bort - - - - Delete the selected Custom - - - - - Preview - Förhandsgranska - - - - Preview the selected Custom - - - - - Live - Live - - - - Send the selected Custom live - - - - - Service - - - - - Add the selected Custom to the service + + You haven't selected an item to delete. @@ -1021,134 +856,59 @@ Changes do not affect verses already in the service. 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 Images with the selected image as a background instead of the background provided by the theme. - - - - - Image - Bild - - - - Images - Bilder - - - - Load - - - - - Load a new Image - - - - - Add - Lägg till - - - - Add a new Image - - - - - Edit - Redigera - - - - Edit the selected Image - - - - - Delete - Ta bort - - - - Delete the selected Image - - - - - Preview - Förhandsgranska - - - - Preview the selected Image - - - - - Live - Live - - - - Send the selected Image live - - - - - Service - - - - - Add the selected Image to the service + <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. ImagePlugin.MediaItem - + + Image + Bild + + + Select Image(s) Välj bild(er) - + All Files - + Replace Live Background - + Replace Background - + Reset Live Background - + You must select an image to delete. - + Image(s) Bilder - + You must select an image to replace the background with. - + You must select a media file to replace the background with. @@ -1160,111 +920,31 @@ Changes do not affect verses already in the service. <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. - - - Media - Media - - - - Medias - - - - - Load - - - - - Load a new Media - - - - - Add - Lägg till - - - - Add a new Media - - - - - Edit - Redigera - - - - Edit the selected Media - - - - - Delete - Ta bort - - - - Delete the selected Media - - - - - Preview - Förhandsgranska - - - - Preview the selected Media - - - - - Live - Live - - - - Send the selected Media live - - - - - Service - - - - - Add the selected Media to the service - - MediaPlugin.MediaItem - - Select Media - Välj media - - - - Replace Live Background - - - - - Replace Background - - - - + Media Media - + + Select Media + Välj media + + + + Replace Live Background + + + + + Replace Background + + + + You must select a media file to delete. @@ -1272,7 +952,7 @@ Changes do not affect verses already in the service. OpenLP - + Image Files @@ -1832,13 +1512,13 @@ This General Public License does not permit incorporating your program into prop OpenLP.ExceptionDialog - - Error Occured + + 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. - - 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. + + Error Occurred @@ -1973,43 +1653,23 @@ This General Public License does not permit incorporating your program into prop OpenLP.LanguageManager - + Language - + Please restart OpenLP to use your new language setting. OpenLP.MainWindow - - - New Service - - - - - Open Service - - - - - Save Service - - OpenLP 2.0 OpenLP 2.0 - - - AddHereYourLanguageName - - &File @@ -2075,6 +1735,11 @@ This General Public License does not permit incorporating your program into prop &New &Ny + + + New Service + + Create a new service. @@ -2090,6 +1755,11 @@ This General Public License does not permit incorporating your program into prop &Open &Öppna + + + Open Service + + Open an existing service. @@ -2105,6 +1775,11 @@ This General Public License does not permit incorporating your program into prop &Save &Spara + + + Save Service + + Save the current service to disk. @@ -2373,115 +2048,191 @@ You can download the latest version from http://openlp.org/. OpenLP-version uppdaterad - + OpenLP Main Display Blanked OpenLP huvuddisplay tömd - + The Main Display has been blanked out Huvuddisplayen har rensats - + Save Changes to Service? - + Your service has changed. Do you want to save those changes? - + Default Theme: %s - + English + Please add the name of your language here Engelska OpenLP.MediaManagerItem - + No Items Selected - + + Import %s + + + + + Import a %s + + + + + Load %s + + + + + Load a new %s + + + + + New %s + + + + + Add a new %s + + + + + Edit %s + + + + + Edit the selected %s + + + + + Delete %s + + + + + Delete the selected item + Ta bort det valda objektet + + + + Preview %s + + + + + Preview the selected item + Förhandsgranska det valda objektet + + + + Send the selected item live + Skicka det valda objektet till live + + + + Add %s to Service + + + + + Add the selected item(s) to the service + Lägg till valda objekt till planeringen + + + &Edit %s - + &Delete %s - + &Preview %s - + &Show Live &Visa Live - + &Add to Service &Lägg till i mötesplanering - + &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. - + No items selected - + You must select one or more items Du måste välja ett eller flera objekt - + No Service Item Selected - + You must select an existing service item to add to. - + Invalid Service Item - + You must select a %s service item. @@ -2524,17 +2275,17 @@ You can download the latest version from http://openlp.org/. Inaktiv - + %s (Inactive) - + %s (Active) - + %s (Disabled) @@ -2575,7 +2326,7 @@ You can download the latest version from http://openlp.org/. Skapa en ny mötesplanering - + Open Service @@ -2585,7 +2336,7 @@ You can download the latest version from http://openlp.org/. Ladda en planering - + Save Service @@ -2695,51 +2446,56 @@ You can download the latest version from http://openlp.org/. &Byt objektets tema - + Save Changes to Service? - + Your service is unsaved, do you want to save those changes before creating a new one? - + OpenLP Service Files (*.osz) - + Your current service is unsaved, do you want to save the changes before opening a new one? - + Error Fel - + 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 + + OpenLP.ServiceNoteForm @@ -2785,70 +2541,55 @@ The content encoding is not UTF-8. - - Blank Screen - Töm skärm - - - - Blank to Theme - - - - - Show Desktop - - - - + Move to live Flytta till live - - Edit and re-preview song - - - - + Start continuous loop Börja oändlig loop - + Stop continuous loop Stoppa upprepad loop - + s s - + Delay between slides in seconds Fördröjning mellan bilder, i sekunder - + Start playing media Börja spela media - + Go To + + + Edit and reload song preview + + OpenLP.SpellTextEdit - + Spelling Suggestions - + Formatting Tags @@ -2960,16 +2701,6 @@ The content encoding is not UTF-8. You are unable to delete the default theme. Du kan inte ta bort standardtemat. - - - Theme %s is use in %s plugin. - - - - - Theme %s is use by the service manager. - - You have not selected a theme. @@ -3031,6 +2762,16 @@ The content encoding is not UTF-8. A theme with this name already exists. Would you like to overwrite it? + + + Theme %s is used in the %s plugin. + + + + + Theme %s is used by the service manager. + + OpenLP.ThemesTab @@ -3087,106 +2828,51 @@ The content encoding is not UTF-8. <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. - - - Presentation - Presentation - - - - Presentations - Presentationer - - - - Load - - - - - Load a new Presentation - - - - - Delete - Ta bort - - - - Delete the selected Presentation - - - - - Preview - Förhandsgranska - - - - Preview the selected Presentation - - - - - Live - Live - - - - Send the selected Presentation live - - - - - Service - - - - - Add the selected Presentation to the service - - PresentationPlugin.MediaItem - + + Presentation + Presentation + + + Select Presentation(s) Välj presentation(er) - + Automatic Automatisk - + Present using: Presentera genom: - + File Exists - + A presentation with that filename already exists. En presentation med det namnet finns redan. - + Unsupported File - + This type of presentation is not supported. - + You must select an item to delete. @@ -3221,16 +2907,6 @@ The content encoding is not UTF-8. <strong>Remote Plugin</strong><br />The remote plugin provides the ability to send messages to a running version of OpenLP on a different computer via a web browser or through the remote API. - - - Remote - - - - - Remotes - Fjärrstyrningar - RemotePlugin.RemoteTab @@ -3297,11 +2973,6 @@ The content encoding is not UTF-8. <strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services. - - - SongUsage - - SongUsagePlugin.SongUsageDeleteForm @@ -3366,76 +3037,6 @@ The content encoding is not UTF-8. <strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs. - - - Song - Sång - - - - Songs - Sånger - - - - Add - Lägg till - - - - Add a new Song - - - - - Edit - Redigera - - - - Edit the selected Song - - - - - Delete - Ta bort - - - - Delete the selected Song - - - - - Preview - Förhandsgranska - - - - Preview the selected Song - - - - - Live - Live - - - - Send the selected Song live - - - - - Service - - - - - Add the selected Song to the service - - SongsPlugin.AuthorsForm @@ -3476,7 +3077,7 @@ The content encoding is not UTF-8. - You have not set a display name for the author, would you like me to combine the first and last names for you? + You have not set a display name for the author, combine the first and last names? @@ -3744,325 +3345,360 @@ The content encoding is not UTF-8. SongsPlugin.ImportWizardForm - + No OpenLP 2.0 Song Database Selected - + You need to select an OpenLP 2.0 song database file to import from. - + No openlp.org 1.x Song Database Selected - + You need to select an openlp.org 1.x song database file to import from. - - No OpenLyrics Files Selected - - - - - You need to add at least one OpenLyrics song file to import from. - - - - + No OpenSong Files Selected - + You need to add at least one OpenSong song file to import from. - + No Words of Worship Files Selected - + You need to add at least one Words of Worship file to import from. - + No CCLI Files Selected - + You need to add at least one CCLI file to import from. - + No Songs of Fellowship File Selected - + You need to add at least one Songs of Fellowship file to import from. - + No Document/Presentation Selected - + You need to add at least one document or presentation file to import from. - + Select OpenLP 2.0 Database File - + Select openlp.org 1.x Database File - - Select OpenLyrics Files - - - - + Select Open Song Files - + Select Words of Worship Files - + Select CCLI Files - + Select Songs of Fellowship Files - + Select Document/Presentation Files - + Starting import... Påbörjar import... - + Song Import Wizard - + Welcome to the 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. - + Select Import Source Välj importkälla - + Select the import format, and where to import from. Välj format för import, och plats att importera från. - + Format: Format: - + OpenLP 2.0 OpenLP 2.0 - + openlp.org 1.x - + OpenLyrics - + OpenSong OpenSong - + Words of Worship - + CCLI/SongSelect - + Songs of Fellowship - + Generic Document/Presentation - + Filename: - + Browse... - + + 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. + + + + 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. + + + + Importing Importerar - + Please wait while your songs are imported. - + Ready. Redo. - + %p% - + Importing "%s"... - + Importing %s... + + + No EasyWorship Song Database Selected + + + + + You need to select an EasyWorship song database file to import from. + + + + + Select EasyWorship Database File + + + + + EasyWorship + + + + + 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. + + + + + Administered by %s + + SongsPlugin.MediaItem - + + Song + Sång + + + Song Maintenance Sångunderhåll - + Maintain the lists of authors, topics and books Hantera listorna över författare, ämnen och böcker - + Search: Sök: - + Type: Typ: - + Clear - + Search Sök - + Titles Titlar - + Lyrics Sångtexter - + Authors - + You must select an item to edit. - + You must select an item to delete. - + Are you sure you want to delete the selected song? - + Are you sure you want to delete the %d selected songs? - + Delete Song(s)? - + CCLI Licence: CCLI-licens: @@ -4098,12 +3734,12 @@ The content encoding is not UTF-8. SongsPlugin.SongImport - + copyright - + © @@ -4111,12 +3747,12 @@ The content encoding is not UTF-8. SongsPlugin.SongImportForm - + Finished import. Importen är färdig. - + Your song import failed. @@ -4198,11 +3834,6 @@ The content encoding is not UTF-8. Could not save your changes. - - - Could not save your modified author, because he already exists. - - Could not save your modified topic, because it already exists. @@ -4268,6 +3899,11 @@ The content encoding is not UTF-8. No book selected! Ingen bok vald! + + + Could not save your modified author, because the author already exists. + + SongsPlugin.SongsTab @@ -4311,8 +3947,8 @@ The content encoding is not UTF-8. - You need to type in a topic name! - Du måste skriva in ett namn på ämnet! + You need to type in a topic name. + diff --git a/resources/openlp.desktop b/resources/openlp.desktop index 3c1b94d71..684119773 100755 --- a/resources/openlp.desktop +++ b/resources/openlp.desktop @@ -1,4 +1,3 @@ -#!/usr/bin/env xdg-open [Desktop Entry] Categories=AudioVideo; Comment[de]=