From 95ffc8dd3b462841309059b8d64389e0708d15e2 Mon Sep 17 00:00:00 2001 From: rimach Date: Sat, 4 Sep 2010 00:51:28 +0200 Subject: [PATCH] add translation code for MediaDocks and PluginList --- openlp/core/lib/mediamanageritem.py | 67 +- openlp/core/lib/plugin.py | 15 + openlp/core/lib/settingstab.py | 2 +- openlp/core/ui/mediadockmanager.py | 5 +- openlp/core/ui/pluginform.py | 8 +- openlp/plugins/alerts/alertsplugin.py | 29 + openlp/plugins/bibles/bibleplugin.py | 29 + openlp/plugins/bibles/lib/mediaitem.py | 2 - openlp/plugins/custom/customplugin.py | 29 + openlp/plugins/custom/lib/mediaitem.py | 2 - openlp/plugins/images/imageplugin.py | 30 + openlp/plugins/images/lib/mediaitem.py | 2 - openlp/plugins/media/lib/mediaitem.py | 2 - openlp/plugins/media/mediaplugin.py | 29 + openlp/plugins/presentations/lib/mediaitem.py | 3 - .../presentations/presentationplugin.py | 29 + openlp/plugins/remotes/remoteplugin.py | 30 + openlp/plugins/songs/lib/mediaitem.py | 2 - openlp/plugins/songs/songsplugin.py | 29 + openlp/plugins/songusage/songusageplugin.py | 30 + resources/i18n/openlp_af.ts | 1510 ++++++--- resources/i18n/openlp_de.ts | 1500 ++++++--- resources/i18n/openlp_en.ts | 1510 ++++++--- resources/i18n/openlp_en_GB.ts | 1510 ++++++--- resources/i18n/openlp_en_ZA.ts | 2934 +++++++++-------- resources/i18n/openlp_es.ts | 1510 ++++++--- resources/i18n/openlp_et.ts | 1490 ++++++--- resources/i18n/openlp_hu.ts | 1510 ++++++--- resources/i18n/openlp_ko.ts | 1510 ++++++--- resources/i18n/openlp_nb.ts | 1512 ++++++--- resources/i18n/openlp_pt_BR.ts | 1514 ++++++--- resources/i18n/openlp_sv.ts | 1510 ++++++--- 32 files changed, 12741 insertions(+), 7153 deletions(-) diff --git a/openlp/core/lib/mediamanageritem.py b/openlp/core/lib/mediamanageritem.py index a6d62f618..5056237ae 100644 --- a/openlp/core/lib/mediamanageritem.py +++ b/openlp/core/lib/mediamanageritem.py @@ -63,14 +63,6 @@ class MediaManagerItem(QtGui.QWidget): When creating a descendant class from this class for your plugin, the following member variables should be set. - ``self.PluginNameShort`` - The shortened (usually singular) name for the plugin e.g. *'Song'* - for the Songs plugin. - - ``self.pluginNameVisible`` - The user visible name for a plugin which should use a suitable - translation function. - ``self.OnNewPrompt`` Defaults to *'Select Image(s)'*. @@ -99,7 +91,7 @@ class MediaManagerItem(QtGui.QWidget): """ QtGui.QWidget.__init__(self) self.parent = parent - self.settingsSection = title.lower() + self.settingsSection = parent.get_text('name_lower') if isinstance(icon, QtGui.QIcon): self.icon = icon elif isinstance(icon, basestring): @@ -108,7 +100,7 @@ class MediaManagerItem(QtGui.QWidget): else: self.icon = None if title: - self.title = title + self.title = parent.get_text('name_more') self.toolbar = None self.remoteTriggered = None self.serviceItemIconName = None @@ -210,62 +202,55 @@ class MediaManagerItem(QtGui.QWidget): if self.hasImportIcon: self.addToolbarButton( unicode(translate('OpenLP.MediaManagerItem', 'Import %s')) % - self.PluginNameShort, - unicode(translate('OpenLP.MediaManagerItem', 'Import a %s')) % - self.pluginNameVisible, + self.parent.name, + unicode(self.parent.get_text('import')), u':/general/general_import.png', self.onImportClick) ## File Button ## if self.hasFileIcon: self.addToolbarButton( unicode(translate('OpenLP.MediaManagerItem', 'Load %s')) % - self.PluginNameShort, - unicode(translate('OpenLP.MediaManagerItem', 'Load a new %s')) % - self.pluginNameVisible, + self.parent.name, + unicode(self.parent.get_text('load')), u':/general/general_open.png', self.onFileClick) ## New Button ## if self.hasNewIcon: self.addToolbarButton( unicode(translate('OpenLP.MediaManagerItem', 'New %s')) % - self.PluginNameShort, - unicode(translate('OpenLP.MediaManagerItem', 'Add a new %s')) % - self.pluginNameVisible, + self.parent.name, + unicode(self.parent.get_text('new')), u':/general/general_new.png', self.onNewClick) ## Edit Button ## if self.hasEditIcon: self.addToolbarButton( unicode(translate('OpenLP.MediaManagerItem', 'Edit %s')) % - self.PluginNameShort, - unicode(translate( - 'OpenLP.MediaManagerItem', 'Edit the selected %s')) % - self.pluginNameVisible, + self.parent.name, + unicode(self.parent.get_text('edit')), u':/general/general_edit.png', self.onEditClick) ## Delete Button ## if self.hasDeleteIcon: self.addToolbarButton( unicode(translate('OpenLP.MediaManagerItem', 'Delete %s')) % - self.PluginNameShort, - translate('OpenLP.MediaManagerItem', - 'Delete the selected item'), + self.parent.name, + unicode(self.parent.get_text('delete')), u':/general/general_delete.png', self.onDeleteClick) ## Separator Line ## self.addToolbarSeparator() ## Preview ## self.addToolbarButton( unicode(translate('OpenLP.MediaManagerItem', 'Preview %s')) % - self.PluginNameShort, - translate('OpenLP.MediaManagerItem', 'Preview the selected item'), + self.parent.name, + unicode(self.parent.get_text('preview')), u':/general/general_preview.png', self.onPreviewClick) ## Live Button ## self.addToolbarButton( - u'Go Live', - translate('OpenLP.MediaManagerItem', 'Send the selected item live'), + unicode(translate('OpenLP.MediaManagerItem', u'Go Live')), + unicode(self.parent.get_text('live')), u':/general/general_live.png', self.onLiveClick) ## Add to service Button ## self.addToolbarButton( unicode(translate('OpenLP.MediaManagerItem', 'Add %s to Service')) % - self.PluginNameShort, - translate('OpenLP.MediaManagerItem', - 'Add the selected item(s) to the service'), + self.parent.name, + unicode(self.parent.get_text('service')), u':/general/general_add.png', self.onAddClick) def addListViewToToolBar(self): @@ -281,7 +266,7 @@ class MediaManagerItem(QtGui.QWidget): QtGui.QAbstractItemView.ExtendedSelection) self.listView.setAlternatingRowColors(True) self.listView.setDragEnabled(True) - self.listView.setObjectName(u'%sListView' % self.PluginNameShort) + self.listView.setObjectName(u'%sListView' % self.parent.name) #Add to pageLayout self.pageLayout.addWidget(self.listView) #define and add the context menu @@ -291,7 +276,7 @@ class MediaManagerItem(QtGui.QWidget): context_menu_action( self.listView, u':/general/general_edit.png', unicode(translate('OpenLP.MediaManagerItem', '&Edit %s')) % - self.pluginNameVisible, + self.parent.name, self.onEditClick)) self.listView.addAction(context_menu_separator(self.listView)) if self.hasDeleteIcon: @@ -300,14 +285,14 @@ class MediaManagerItem(QtGui.QWidget): self.listView, u':/general/general_delete.png', unicode(translate('OpenLP.MediaManagerItem', '&Delete %s')) % - self.pluginNameVisible, + self.parent.name, self.onDeleteClick)) self.listView.addAction(context_menu_separator(self.listView)) self.listView.addAction( context_menu_action( self.listView, u':/general/general_preview.png', unicode(translate('OpenLP.MediaManagerItem', '&Preview %s')) % - self.pluginNameVisible, + self.parent.name, self.onPreviewClick)) self.listView.addAction( context_menu_action( @@ -447,7 +432,7 @@ class MediaManagerItem(QtGui.QWidget): translate('OpenLP.MediaManagerItem', 'You must select one or more items to preview.')) else: - log.debug(self.PluginNameShort + u' Preview requested') + log.debug(self.parent.name + u' Preview requested') service_item = self.buildServiceItem() if service_item: service_item.from_plugin = True @@ -464,7 +449,7 @@ class MediaManagerItem(QtGui.QWidget): translate('OpenLP.MediaManagerItem', 'You must select one or more items to send live.')) else: - log.debug(self.PluginNameShort + u' Live requested') + log.debug(self.parent.name + u' Live requested') service_item = self.buildServiceItem() if service_item: service_item.from_plugin = True @@ -483,7 +468,7 @@ class MediaManagerItem(QtGui.QWidget): #Is it posssible to process multiple list items to generate multiple #service items? if self.singleServiceItem or self.remoteTriggered: - log.debug(self.PluginNameShort + u' Add requested') + log.debug(self.parent.name + u' Add requested') service_item = self.buildServiceItem() if service_item: service_item.from_plugin = False @@ -507,7 +492,7 @@ class MediaManagerItem(QtGui.QWidget): translate('OpenLP.MediaManagerItem', 'You must select one or more items')) else: - log.debug(self.PluginNameShort + u' Add requested') + log.debug(self.parent.name + u' Add requested') service_item = self.parent.serviceManager.getServiceItem() if not service_item: QtGui.QMessageBox.information(self, diff --git a/openlp/core/lib/plugin.py b/openlp/core/lib/plugin.py index 45fbcb6b0..7eee2dd6e 100644 --- a/openlp/core/lib/plugin.py +++ b/openlp/core/lib/plugin.py @@ -289,3 +289,18 @@ class Plugin(QtCore.QObject): The new name the plugin should now use. """ pass + def set_plugin_translations(self): + """ + Called to define all translatable texts of the plugin + """ + pass + self.text = {} + + def get_text(self, content): + """ + Called to retrieve a translated piece of text for menues, context menues, ... + """ + if self.text.has_key(content): + return self.text[content] + else: + return self.name diff --git a/openlp/core/lib/settingstab.py b/openlp/core/lib/settingstab.py index 99389d4c4..d746636cd 100644 --- a/openlp/core/lib/settingstab.py +++ b/openlp/core/lib/settingstab.py @@ -41,7 +41,7 @@ class SettingsTab(QtGui.QWidget): QtGui.QWidget.__init__(self) self.tabTitle = title self.tabTitleVisible = None - self.settingsSection = self.tabTitle.lower() + self.settingsSection = self.tabTitle self.setupUi() self.retranslateUi() self.initialise() diff --git a/openlp/core/ui/mediadockmanager.py b/openlp/core/ui/mediadockmanager.py index afe316a8a..24a3fd64d 100644 --- a/openlp/core/ui/mediadockmanager.py +++ b/openlp/core/ui/mediadockmanager.py @@ -61,7 +61,7 @@ class MediaDockManager(object): match = False for dock_index in range(0, self.media_dock.count()): if self.media_dock.widget(dock_index).settingsSection == \ - media_item.title.lower(): + media_item.parent.get_text('name_lower'): match = True break if not match: @@ -77,7 +77,8 @@ class MediaDockManager(object): log.debug(u'remove %s dock' % name) for dock_index in range(0, self.media_dock.count()): if self.media_dock.widget(dock_index): + log.debug(u'%s %s' % (name, self.media_dock.widget(dock_index).settingsSection)) if self.media_dock.widget(dock_index).settingsSection == \ - name.lower(): + name: self.media_dock.widget(dock_index).hide() self.media_dock.removeItem(dock_index) diff --git a/openlp/core/ui/pluginform.py b/openlp/core/ui/pluginform.py index c0fd53938..053acb3f1 100644 --- a/openlp/core/ui/pluginform.py +++ b/openlp/core/ui/pluginform.py @@ -75,7 +75,7 @@ class PluginForm(QtGui.QDialog, Ui_PluginViewDialog): elif plugin.status == PluginStatus.Disabled: status_text = unicode( translate('OpenLP.PluginForm', '%s (Disabled)')) - item.setText(status_text % plugin.name) + item.setText(status_text % plugin.get_text('name_more')) # If the plugin has an icon, set it! if plugin.icon: item.setIcon(plugin.icon) @@ -103,10 +103,10 @@ class PluginForm(QtGui.QDialog, Ui_PluginViewDialog): if self.pluginListWidget.currentItem() is None: self._clearDetails() return - plugin_name = self.pluginListWidget.currentItem().text().split(u' ')[0] + plugin_name_more = self.pluginListWidget.currentItem().text().split(u' ')[0] self.activePlugin = None for plugin in self.parent.plugin_manager.plugins: - if plugin.name == plugin_name: + if plugin.get_text('name_more') == plugin_name_more: self.activePlugin = plugin break if self.activePlugin: @@ -135,4 +135,4 @@ class PluginForm(QtGui.QDialog, Ui_PluginViewDialog): status_text = unicode( translate('OpenLP.PluginForm', '%s (Disabled)')) self.pluginListWidget.currentItem().setText( - status_text % self.activePlugin.name) + status_text % self.activePlugin.get_text('name_more')) diff --git a/openlp/plugins/alerts/alertsplugin.py b/openlp/plugins/alerts/alertsplugin.py index 9e1da2267..e77b57430 100644 --- a/openlp/plugins/alerts/alertsplugin.py +++ b/openlp/plugins/alerts/alertsplugin.py @@ -40,6 +40,7 @@ class AlertsPlugin(Plugin): log.info(u'Alerts Plugin loaded') def __init__(self, plugin_helpers): + self.set_plugin_translations() Plugin.__init__(self, u'Alerts', u'1.9.2', plugin_helpers) self.weight = -3 self.icon = build_icon(u':/plugins/plugin_alerts.png') @@ -101,3 +102,31 @@ class AlertsPlugin(Plugin): '
The alert plugin controls the displaying of nursery alerts ' 'on the display screen') return about_text + def set_plugin_translations(self): + """ + Called to define all translatable texts of the plugin + """ + self.name = u'Alerts' + self.name_lower = u'alerts' + self.text = {} + # for context menu +# elf.text['context_edit'] = translate('AlertsPlugin', '&Edit Song') +# elf.text['context_delete'] = translate('AlertsPlugin', '&Delete Song') +# elf.text['context_preview'] = translate('AlertsPlugin', '&Preview Song') +# elf.text['context_live'] = translate('AlertsPlugin', '&Show Live') +# # forHeaders in mediamanagerdock +# elf.text['import'] = translate('AlertsPlugin', 'Import a Song') +# elf.text['file'] = translate('AlertsPlugin', 'Load a new Song') +# elf.text['new'] = translate('AlertsPlugin', 'Add a new Song') +# elf.text['edit'] = translate('AlertsPlugin', 'Edit the selected Song') +# elf.text['delete'] = translate('AlertsPlugin', 'Delete the selected Song') +# elf.text['delete_more'] = translate('AlertsPlugin', 'Delete the selected Songs') +# elf.text['preview'] = translate('AlertsPlugin', 'Preview the selected Song') +# elf.text['preview_more'] = translate('AlertsPlugin', 'Preview the selected Songs') +# elf.text['live'] = translate('AlertsPlugin', 'Send the selected Song live') +# elf.text['live_more'] = translate('AlertsPlugin', 'Send the selected Songs live') +# elf.text['service'] = translate('AlertsPlugin', 'Add the selected Song to the service') +# elf.text['service_more'] = translate('AlertsPlugin', 'Add the selected Songs to the service') +# # for names in mediamanagerdock and pluginlist + self.text['name'] = translate('AlertsPlugin', 'Alert') + self.text['name_more'] = translate('AlertsPlugin', 'Alerts') diff --git a/openlp/plugins/bibles/bibleplugin.py b/openlp/plugins/bibles/bibleplugin.py index da542b23b..850516783 100644 --- a/openlp/plugins/bibles/bibleplugin.py +++ b/openlp/plugins/bibles/bibleplugin.py @@ -37,6 +37,7 @@ class BiblePlugin(Plugin): log.info(u'Bible Plugin loaded') def __init__(self, plugin_helpers): + self.set_plugin_translations() Plugin.__init__(self, u'Bibles', u'1.9.2', plugin_helpers) self.weight = -9 self.icon_path = u':/plugins/plugin_bibles.png' @@ -116,3 +117,31 @@ class BiblePlugin(Plugin): The new name the plugin should now use. """ self.settings_tab.bible_theme = newTheme + def set_plugin_translations(self): + """ + Called to define all translatable texts of the plugin + """ + self.name = u'Bibles' + self.name_lower = u'bibles' + self.text = {} + #for context menu + self.text['context_edit'] = translate('BiblesPlugin', '&Edit Bible') + self.text['context_delete'] = translate('BiblesPlugin', '&Delete Bible') + self.text['context_preview'] = translate('BiblesPlugin', '&Preview Bible') + self.text['context_live'] = translate('BiblesPlugin', '&Show Live') + # forHeaders in mediamanagerdock + self.text['import'] = translate('BiblesPlugin', 'Import a Bible') + self.text['load'] = translate('BiblesPlugin', 'Load a new Bible') + self.text['new'] = translate('BiblesPlugin', 'Add a new Bible') + self.text['edit'] = translate('BiblesPlugin', 'Edit the selected Bible') + self.text['delete'] = translate('BiblesPlugin', 'Delete the selected Bible') + self.text['delete_more'] = translate('BiblesPlugin', 'Delete the selected Bibles') + self.text['preview'] = translate('BiblesPlugin', 'Preview the selected Bible') + self.text['preview_more'] = translate('BiblesPlugin', 'Preview the selected Bibles') + self.text['live'] = translate('BiblesPlugin', 'Send the selected Bible live') + self.text['live_more'] = translate('BiblesPlugin', 'Send the selected Bibles live') + self.text['service'] = translate('BiblesPlugin', 'Add the selected Verse to the service') + self.text['service_more'] = translate('BiblesPlugin', 'Add the selected Verses to the service') + # for names in mediamanagerdock and pluginlist + self.text['name'] = translate('BiblesPlugin', 'Bible') + self.text['name_more'] = translate('BiblesPlugin', 'Bibles') diff --git a/openlp/plugins/bibles/lib/mediaitem.py b/openlp/plugins/bibles/lib/mediaitem.py index e7850c65c..ac0febb82 100644 --- a/openlp/plugins/bibles/lib/mediaitem.py +++ b/openlp/plugins/bibles/lib/mediaitem.py @@ -54,8 +54,6 @@ class BibleMediaItem(MediaManagerItem): log.info(u'Bible Media Item loaded') def __init__(self, parent, icon, title): - self.PluginNameShort = u'Bible' - self.pluginNameVisible = translate('BiblesPlugin.MediaItem', 'Bible') self.IconPath = u'songs/song' self.ListViewWithDnD_class = BibleListView MediaManagerItem.__init__(self, parent, icon, title) diff --git a/openlp/plugins/custom/customplugin.py b/openlp/plugins/custom/customplugin.py index 4e3819961..007b8d560 100644 --- a/openlp/plugins/custom/customplugin.py +++ b/openlp/plugins/custom/customplugin.py @@ -47,6 +47,7 @@ class CustomPlugin(Plugin): log.info(u'Custom Plugin loaded') def __init__(self, plugin_helpers): + self.set_plugin_translations() Plugin.__init__(self, u'Custom', u'1.9.2', plugin_helpers) self.weight = -5 self.custommanager = Manager(u'custom', init_schema) @@ -96,3 +97,31 @@ class CustomPlugin(Plugin): for custom in customsUsingTheme: custom.theme_name = newTheme self.custommanager.save_object(custom) + def set_plugin_translations(self): + """ + Called to define all translatable texts of the plugin + """ + self.name = u'Custom' + self.name_lower = u'custom' + self.text = {} + #for context menu + self.text['context_edit'] = translate('CustomsPlugin', '&Edit Custom') + self.text['context_delete'] = translate('CustomsPlugin', '&Delete Custom') + self.text['context_preview'] = translate('CustomsPlugin', '&Preview Custom') + self.text['context_live'] = translate('CustomsPlugin', '&Show Live') + # forHeaders in mediamanagerdock + self.text['import'] = translate('CustomsPlugin', 'Import a Custom') + self.text['load'] = translate('CustomsPlugin', 'Load a new Custom') + self.text['new'] = translate('CustomsPlugin', 'Add a new Custom') + self.text['edit'] = translate('CustomsPlugin', 'Edit the selected Custom') + self.text['delete'] = translate('CustomsPlugin', 'Delete the selected Custom') + self.text['delete_more'] = translate('CustomsPlugin', 'Delete the selected Custom') + self.text['preview'] = translate('CustomsPlugin', 'Preview the selected Custom') + self.text['preview_more'] = translate('CustomsPlugin', 'Preview the selected Custom') + self.text['live'] = translate('CustomsPlugin', 'Send the selected Custom live') + self.text['live_more'] = translate('CustomsPlugin', 'Send the selected Custom live') + self.text['service'] = translate('CustomsPlugin', 'Add the selected Custom to the service') + self.text['service_more'] = translate('CustomsPlugin', 'Add the selected Custom to the service') + # for names in mediamanagerdock and pluginlist + self.text['name'] = translate('CustomsPlugin', 'Custom') + self.text['name_more'] = translate('CustomsPlugin', 'Custom') diff --git a/openlp/plugins/custom/lib/mediaitem.py b/openlp/plugins/custom/lib/mediaitem.py index 671a3679a..ab5039c34 100644 --- a/openlp/plugins/custom/lib/mediaitem.py +++ b/openlp/plugins/custom/lib/mediaitem.py @@ -47,8 +47,6 @@ class CustomMediaItem(MediaManagerItem): log.info(u'Custom Media Item loaded') def __init__(self, parent, icon, title): - self.PluginNameShort = u'Custom' - self.pluginNameVisible = translate('CustomPlugin.MediaItem', 'Custom') self.IconPath = u'custom/custom' # this next is a class, not an instance of a class - it will # be instanced by the base MediaManagerItem diff --git a/openlp/plugins/images/imageplugin.py b/openlp/plugins/images/imageplugin.py index d34cd6a3c..ee303689e 100644 --- a/openlp/plugins/images/imageplugin.py +++ b/openlp/plugins/images/imageplugin.py @@ -35,6 +35,7 @@ class ImagePlugin(Plugin): log.info(u'Image Plugin loaded') def __init__(self, plugin_helpers): + self.set_plugin_translations() Plugin.__init__(self, u'Images', u'1.9.2', plugin_helpers) self.weight = -7 self.icon_path = u':/plugins/plugin_images.png' @@ -57,3 +58,32 @@ class ImagePlugin(Plugin): 'selected image as a background instead of the background ' 'provided by the theme.') return about_text + # rimach + def set_plugin_translations(self): + """ + Called to define all translatable texts of the plugin + """ + self.name = u'Images' + self.name_lower = u'images' + self.text = {} + #for context menu + self.text['context_edit'] = translate('ImagePlugin', '&Edit Image') + self.text['context_delete'] = translate('ImagePlugin', '&Delete Image') + self.text['context_preview'] = translate('ImagePlugin', '&Preview Image') + self.text['context_live'] = translate('ImagePlugin', '&Show Live') + # forHeaders in mediamanagerdock + self.text['import'] = translate('ImagePlugin', 'Import a Image') + self.text['load'] = translate('ImagePlugin', 'Load a new Image') + self.text['new'] = translate('ImagePlugin', 'Add a new Image') + self.text['edit'] = translate('ImagePlugin', 'Edit the selected Image') + self.text['delete'] = translate('ImagePlugin', 'Delete the selected Image') + self.text['delete_more'] = translate('ImagePlugin', 'Delete the selected Images') + self.text['preview'] = translate('ImagePlugin', 'Preview the selected Image') + self.text['preview_more'] = translate('ImagePlugin', 'Preview the selected Images') + self.text['live'] = translate('ImagePlugin', 'Send the selected Image live') + self.text['live_more'] = translate('ImagePlugin', 'Send the selected Images live') + self.text['service'] = translate('ImagePlugin', 'Add the selected Image to the service') + self.text['service_more'] = translate('ImagePlugin', 'Add the selected Images to the service') + # for names in mediamanagerdock and pluginlist + self.text['name'] = translate('ImagePlugin', 'Image') + self.text['name_more'] = translate('ImagePlugin', 'Images') diff --git a/openlp/plugins/images/lib/mediaitem.py b/openlp/plugins/images/lib/mediaitem.py index 93271a604..d6584acfe 100644 --- a/openlp/plugins/images/lib/mediaitem.py +++ b/openlp/plugins/images/lib/mediaitem.py @@ -50,8 +50,6 @@ class ImageMediaItem(MediaManagerItem): log.info(u'Image Media Item loaded') def __init__(self, parent, icon, title): - self.PluginNameShort = u'Image' - self.pluginNameVisible = translate('ImagePlugin.MediaItem', 'Image') self.IconPath = u'images/image' # this next is a class, not an instance of a class - it will # be instanced by the base MediaManagerItem diff --git a/openlp/plugins/media/lib/mediaitem.py b/openlp/plugins/media/lib/mediaitem.py index 447d4ccb5..c9a5df152 100644 --- a/openlp/plugins/media/lib/mediaitem.py +++ b/openlp/plugins/media/lib/mediaitem.py @@ -47,8 +47,6 @@ class MediaMediaItem(MediaManagerItem): log.info(u'%s MediaMediaItem loaded', __name__) def __init__(self, parent, icon, title): - self.PluginNameShort = u'Media' - self.pluginNameVisible = translate('MediaPlugin.MediaItem', 'Media') self.IconPath = u'images/image' self.background = False # this next is a class, not an instance of a class - it will diff --git a/openlp/plugins/media/mediaplugin.py b/openlp/plugins/media/mediaplugin.py index db326f843..7ff32b5b3 100644 --- a/openlp/plugins/media/mediaplugin.py +++ b/openlp/plugins/media/mediaplugin.py @@ -37,6 +37,7 @@ class MediaPlugin(Plugin): log.info(u'%s MediaPlugin loaded', __name__) def __init__(self, plugin_helpers): + self.set_plugin_translations() Plugin.__init__(self, u'Media', u'1.9.2', plugin_helpers) self.weight = -6 self.icon_path = u':/plugins/plugin_media.png' @@ -76,3 +77,31 @@ class MediaPlugin(Plugin): about_text = translate('MediaPlugin', 'Media Plugin' '
The media plugin provides playback of audio and video.') return about_text + def set_plugin_translations(self): + """ + Called to define all translatable texts of the plugin + """ + self.name = u'Media' + self.name_lower = u'media' + self.text = {} + #for context menu + self.text['context_edit'] = translate('MediaPlugin', '&Edit Media') + self.text['context_delete'] = translate('MediaPlugin', '&Delete Media') + self.text['context_preview'] = translate('MediaPlugin', '&Preview Media') + self.text['context_live'] = translate('MediaPlugin', '&Show Live') + # forHeaders in mediamanagerdock + self.text['import'] = translate('MediaPlugin', 'Import a Media') + self.text['load'] = translate('MediaPlugin', 'Load a new Media') + self.text['new'] = translate('MediaPlugin', 'Add a new Media') + self.text['edit'] = translate('MediaPlugin', 'Edit the selected Media') + self.text['delete'] = translate('MediaPlugin', 'Delete the selected Media') + self.text['delete_more'] = translate('MediaPlugin', 'Delete the selected Media') + self.text['preview'] = translate('MediaPlugin', 'Preview the selected Media') + self.text['preview_more'] = translate('MediaPlugin', 'Preview the selected Media') + self.text['live'] = translate('MediaPlugin', 'Send the selected Media live') + self.text['live_more'] = translate('MediaPlugin', 'Send the selected Media live') + self.text['service'] = translate('MediaPlugin', 'Add the selected Media to the service') + self.text['service_more'] = translate('MediaPlugin', 'Add the selected Media to the service') + # for names in mediamanagerdock and pluginlist + self.text['name'] = translate('MediaPlugin', 'Media') + self.text['name_more'] = translate('MediaPlugin', 'Media') diff --git a/openlp/plugins/presentations/lib/mediaitem.py b/openlp/plugins/presentations/lib/mediaitem.py index 001aeac4d..bb0c243ff 100644 --- a/openlp/plugins/presentations/lib/mediaitem.py +++ b/openlp/plugins/presentations/lib/mediaitem.py @@ -58,9 +58,6 @@ class PresentationMediaItem(MediaManagerItem): Constructor. Setup defaults """ self.controllers = controllers - self.PluginNameShort = u'Presentation' - self.pluginNameVisible = translate('PresentationPlugin.MediaItem', - 'Presentation') self.IconPath = u'presentations/presentation' self.Automatic = u'' # this next is a class, not an instance of a class - it will diff --git a/openlp/plugins/presentations/presentationplugin.py b/openlp/plugins/presentations/presentationplugin.py index e63063ffd..208c74349 100644 --- a/openlp/plugins/presentations/presentationplugin.py +++ b/openlp/plugins/presentations/presentationplugin.py @@ -51,6 +51,7 @@ class PresentationPlugin(Plugin): """ log.debug(u'Initialised') self.controllers = {} + self.set_plugin_translations() Plugin.__init__(self, u'Presentations', u'1.9.2', plugin_helpers) self.weight = -8 self.icon_path = u':/plugins/plugin_presentations.png' @@ -143,3 +144,31 @@ class PresentationPlugin(Plugin): 'programs. The choice of available presentation programs is ' 'available to the user in a drop down box.') return about_text + def set_plugin_translations(self): + """ + Called to define all translatable texts of the plugin + """ + self.name = u'Presentations' + self.name_lower = u'presentations' + self.text = {} + #for context menu + self.text['context_edit'] = translate('PresentationPlugin', '&Edit Presentation') + self.text['context_delete'] = translate('PresentationPlugin', '&Delete Presentation') + self.text['context_preview'] = translate('PresentationPlugin', '&Preview Presentation') + self.text['context_live'] = translate('PresentationPlugin', '&Show Live') + # forHeaders in mediamanagerdock + self.text['import'] = translate('PresentationPlugin', 'Import a Presentation') + self.text['load'] = translate('PresentationPlugin', 'Load a new Presentation') + self.text['new'] = translate('PresentationPlugin', 'Add a new Presentation') + self.text['edit'] = translate('PresentationPlugin', 'Edit the selected Presentation') + self.text['delete'] = translate('PresentationPlugin', 'Delete the selected Presentation') + self.text['delete_more'] = translate('PresentationPlugin', 'Delete the selected Presentations') + self.text['preview'] = translate('PresentationPlugin', 'Preview the selected Presentation') + self.text['preview_more'] = translate('PresentationPlugin', 'Preview the selected Presentations') + self.text['live'] = translate('PresentationPlugin', 'Send the selected Presentation live') + self.text['live_more'] = translate('PresentationPlugin', 'Send the selected Presentations live') + self.text['service'] = translate('PresentationPlugin', 'Add the selected Presentation to the service') + self.text['service_more'] = translate('PresentationPlugin', 'Add the selected Presentations to the service') + # for names in mediamanagerdock and pluginlist + self.text['name'] = translate('PresentationPlugin', 'Presentation') + self.text['name_more'] = translate('PresentationPlugin', 'Presentations') diff --git a/openlp/plugins/remotes/remoteplugin.py b/openlp/plugins/remotes/remoteplugin.py index 59ad9a99c..d9566b57f 100644 --- a/openlp/plugins/remotes/remoteplugin.py +++ b/openlp/plugins/remotes/remoteplugin.py @@ -38,6 +38,7 @@ class RemotesPlugin(Plugin): """ remotes constructor """ + self.set_plugin_translations() Plugin.__init__(self, u'Remotes', u'1.9.2', plugin_helpers) self.icon = build_icon(u':/plugins/plugin_remote.png') self.weight = -1 @@ -76,3 +77,32 @@ class RemotesPlugin(Plugin): 'a running version of OpenLP on a different computer via a web ' 'browser or through the remote API.') return about_text + # rimach + def set_plugin_translations(self): + """ + Called to define all translatable texts of the plugin + """ + self.name = u'Remotes' + self.name_lower = u'remotes' + self.text = {} + #for context menu +# self.text['context_edit'] = translate('RemotePlugin', '&Edit Remotes') +# self.text['context_delete'] = translate('RemotePlugin', '&Delete Remotes') +# self.text['context_preview'] = translate('RemotePlugin', '&Preview Remotes') +# self.text['context_live'] = translate('RemotePlugin', '&Show Live') +# # forHeaders in mediamanagerdock +# self.text['import'] = translate('RemotePlugin', 'Import a Remotes') +# self.text['file'] = translate('RemotePlugin', 'Load a new Remotes') +# self.text['new'] = translate('RemotePlugin', 'Add a new Remotes') +# self.text['edit'] = translate('RemotePlugin', 'Edit the selected Remotes') +# self.text['delete'] = translate('RemotePlugin', 'Delete the selected Remotes') +# self.text['delete_more'] = translate('RemotePlugin', 'Delete the selected Remotes') +# self.text['preview'] = translate('RemotePlugin', 'Preview the selected Remotes') +# self.text['preview_more'] = translate('RemotePlugin', 'Preview the selected Remotes') +# self.text['live'] = translate('RemotePlugin', 'Send the selected Remotes live') +# self.text['live_more'] = translate('RemotePlugin', 'Send the selected Remotes live') +# self.text['service'] = translate('RemotePlugin', 'Add the selected Remotes to the service') +# self.text['service_more'] = translate('RemotePlugin', 'Add the selected Remotes to the service') +# # for names in mediamanagerdock and pluginlist + self.text['name'] = translate('RemotePlugin', 'Remote') + self.text['name_more'] = translate('RemotePlugin', 'Remotes') diff --git a/openlp/plugins/songs/lib/mediaitem.py b/openlp/plugins/songs/lib/mediaitem.py index 85ba1cf06..9299669a6 100644 --- a/openlp/plugins/songs/lib/mediaitem.py +++ b/openlp/plugins/songs/lib/mediaitem.py @@ -49,8 +49,6 @@ class SongMediaItem(MediaManagerItem): log.info(u'Song Media Item loaded') def __init__(self, parent, icon, title): - self.PluginNameShort = u'Song' - self.pluginNameVisible = translate('SongsPlugin.MediaItem', 'Song') self.IconPath = u'songs/song' self.ListViewWithDnD_class = SongListView MediaManagerItem.__init__(self, parent, icon, title) diff --git a/openlp/plugins/songs/songsplugin.py b/openlp/plugins/songs/songsplugin.py index 0064be23a..ddbf8e955 100644 --- a/openlp/plugins/songs/songsplugin.py +++ b/openlp/plugins/songs/songsplugin.py @@ -50,6 +50,7 @@ class SongsPlugin(Plugin): """ Create and set up the Songs plugin. """ + self.set_plugin_translations() Plugin.__init__(self, u'Songs', u'1.9.2', plugin_helpers) self.weight = -10 self.manager = Manager(u'songs', init_schema) @@ -147,3 +148,31 @@ class SongsPlugin(Plugin): importer = class_(self.manager, **kwargs) importer.register(self.mediaItem.import_wizard) return importer + def set_plugin_translations(self): + """ + Called to define all translatable texts of the plugin + """ + self.name = u'Songs' + self.name_lower = u'songs' + self.text = {} + #for context menu + self.text['context_edit'] = translate('SongsPlugin', '&Edit Song') + self.text['context_delete'] = translate('SongsPlugin', '&Delete Song') + self.text['context_preview'] = translate('SongsPlugin', '&Preview Song') + self.text['context_live'] = translate('SongsPlugin', '&Show Live') + # forHeaders in mediamanagerdock + self.text['import'] = translate('SongsPlugin', 'Import a Song') + self.text['load'] = translate('SongsPlugin', 'Load a new Song') + self.text['new'] = translate('SongsPlugin', 'Add a new Song') + self.text['edit'] = translate('SongsPlugin', 'Edit the selected Song') + self.text['delete'] = translate('SongsPlugin', 'Delete the selected Song') + self.text['delete_more'] = translate('SongsPlugin', 'Delete the selected Songs') + self.text['preview'] = translate('SongsPlugin', 'Preview the selected Song') + self.text['preview_more'] = translate('SongsPlugin', 'Preview the selected Songs') + self.text['live'] = translate('SongsPlugin', 'Send the selected Song live') + self.text['live_more'] = translate('SongsPlugin', 'Send the selected Songs live') + self.text['service'] = translate('SongsPlugin', 'Add the selected Song to the service') + self.text['service_more'] = translate('SongsPlugin', 'Add the selected Songs to the service') + # for names in mediamanagerdock and pluginlist + self.text['name'] = translate('SongsPlugin', 'Song') + self.text['name_more'] = translate('SongsPlugin', 'Songs') diff --git a/openlp/plugins/songusage/songusageplugin.py b/openlp/plugins/songusage/songusageplugin.py index c8dfd06fc..73d0d21d4 100644 --- a/openlp/plugins/songusage/songusageplugin.py +++ b/openlp/plugins/songusage/songusageplugin.py @@ -41,6 +41,7 @@ class SongUsagePlugin(Plugin): log.info(u'SongUsage Plugin loaded') def __init__(self, plugin_helpers): + self.set_plugin_translations() Plugin.__init__(self, u'SongUsage', u'1.9.2', plugin_helpers) self.weight = -4 self.icon = build_icon(u':/plugins/plugin_songusage.png') @@ -162,3 +163,32 @@ class SongUsagePlugin(Plugin): '
This plugin tracks the usage of songs in ' 'services.') return about_text + + def set_plugin_translations(self): + """ + Called to define all translatable texts of the plugin + """ + self.name = u'SongUsage' + self.name_lower = u'songusage' + self.text = {} +# #for context menu +# self.text['context_edit'] = translate('SongUsagePlugin', '&Edit SongUsage') +# self.text['context_delete'] = translate('SongUsagePlugin', '&Delete SongUsage') +# self.text['context_preview'] = translate('SongUsagePlugin', '&Preview SongUsage') +# self.text['context_live'] = translate('SongUsagePlugin', '&Show Live') +# # forHeaders in mediamanagerdock +# self.text['import'] = translate('SongUsagePlugin', 'Import a SongUsage') +# self.text['file'] = translate('SongUsagePlugin', 'Load a new SongUsage') +# self.text['new'] = translate('SongUsagePlugin', 'Add a new SongUsage') +# self.text['edit'] = translate('SongUsagePlugin', 'Edit the selected SongUsage') +# self.text['delete'] = translate('SongUsagePlugin', 'Delete the selected SongUsage') +# self.text['delete_more'] = translate('SongUsagePlugin', 'Delete the selected Songs') +# self.text['preview'] = translate('SongUsagePlugin', 'Preview the selected SongUsage') +# self.text['preview_more'] = translate('SongUsagePlugin', 'Preview the selected Songs') +# self.text['live'] = translate('SongUsagePlugin', 'Send the selected SongUsage live') +# self.text['live_more'] = translate('SongUsagePlugin', 'Send the selected Songs live') +# self.text['service'] = translate('SongUsagePlugin', 'Add the selected SongUsage to the service') +# self.text['service_more'] = translate('SongUsagePlugin', 'Add the selected Songs to the service') + # for names in mediamanagerdock and pluginlist + self.text['name'] = translate('SongUsagePlugin', 'SongUsage') + self.text['name_more'] = translate('SongUsagePlugin', 'Songs') diff --git a/resources/i18n/openlp_af.ts b/resources/i18n/openlp_af.ts index 47853ca2e..fc20ab5b7 100644 --- a/resources/i18n/openlp_af.ts +++ b/resources/i18n/openlp_af.ts @@ -3,20 +3,30 @@ AlertsPlugin - + &Alert W&aarskuwing - + Show an alert message. - + <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of nursery alerts on the display screen + + + Alert + + + + + Alerts + Waarskuwings + AlertsPlugin.AlertForm @@ -79,7 +89,7 @@ AlertsPlugin.AlertsManager - + Alert message created and displayed. @@ -165,15 +175,105 @@ BiblesPlugin - + &Bible &Bybel - + <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display bible verses from different sources during the service. + + + &Edit Bible + + + + + &Delete Bible + + + + + &Preview Bible + + + + + &Show Live + &Vertoon Regstreeks + + + + Import a Bible + + + + + Load a new Bible + + + + + Add a new Bible + + + + + Edit the selected Bible + + + + + Delete the selected Bible + + + + + Delete the selected Bibles + + + + + Preview the selected Bible + + + + + Preview the selected Bibles + + + + + Send the selected Bible live + + + + + Send the selected Bibles live + + + + + Add the selected Verse to the service + + + + + Add the selected Verses to the service + + + + + Bible + Bybel + + + + Bibles + Bybels + BiblesPlugin.BibleDB @@ -554,112 +654,107 @@ Changes do not affect verses already in the service. BiblesPlugin.MediaItem - - Bible - Bybel - - - + Quick Vinnig - + Advanced Gevorderd - + Version: Weergawe: - + Dual: Dubbel: - + Search type: - + Find: Vind: - + Search Soek - + Results: &Resultate: - + Book: Boek: - + Chapter: Hoofstuk: - + Verse: Vers: - + From: Vanaf: - + To: Aan: - + Verse Search Soek Vers - + Text Search Teks Soektog - + Clear - + Keep Behou - + No Book Found Geeb Boek Gevind nie - + No matching book could be found in this Bible. Geen bypassende boek kon in dié Bybel gevind word nie. - + etc - + Bible not fully loaded. @@ -675,7 +770,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 songs are. This plugin provides greater freedom over the songs plugin. @@ -701,102 +796,102 @@ Changes do not affect verses already in the service. CustomPlugin.EditCustomForm - + Edit Custom Slides Redigeer Aangepaste Skyfies - + Move slide up one position. - + Move slide down one position. - + &Title: - + Add New Voeg Nuwe By - + Add a new slide at bottom. - + Edit Redigeer - + Edit the selected slide. - + Edit All Redigeer Alles - + Edit all the slides at once. - + Save Stoor - + Save the slide currently being edited. - + Delete - + Delete the selected slide. - + Clear - + Clear edit area Maak skoon die redigeer area - + Split Slide - + Split a slide into two by inserting a slide splitter. - + The&me: - + &Credits: @@ -829,73 +924,226 @@ Changes do not affect verses already in the service. CustomPlugin.MediaItem - - Custom - - - - + You haven't selected an item to edit. - + You haven't selected an item to delete. + + CustomsPlugin + + + &Edit Custom + + + + + &Delete Custom + + + + + &Preview Custom + + + + + &Show Live + &Vertoon Regstreeks + + + + Import a Custom + + + + + Load a new Custom + + + + + Add a new Custom + + + + + Edit the selected Custom + + + + + Delete the selected Custom + + + + + Preview the selected Custom + + + + + Send the selected Custom live + + + + + Add the selected Custom to the service + + + + + Custom + + + ImagePlugin - + <strong>Image Plugin</strong><br />The image plugin provides displaying of images.<br />One of the distinguishing features of this plugin is the ability to group a number of images together in the service manager, making the displaying of multiple images easier. This plugin can also make use of OpenLP's "timed looping" feature to create a slide show that runs automatically. In addition to this, images from the plugin can be used to override the current theme's background, which renders text-based items like songs with the selected image as a background instead of the background provided by the theme. + + + &Edit Image + + + + + &Delete Image + + + + + &Preview Image + + + + + &Show Live + &Vertoon Regstreeks + + + + Import a Image + + + + + Load a new Image + + + + + Add a new Image + + + + + Edit the selected Image + + + + + Delete the selected Image + + + + + Delete the selected Images + + + + + Preview the selected Image + + + + + Preview the selected Images + + + + + Send the selected Image live + + + + + Send the selected Images live + + + + + Add the selected Image to the service + + + + + Add the selected Images to the service + + + + + Image + Beeld + + + + Images + Beelde + ImagePlugin.MediaItem - - Image - Beeld - - - + Select Image(s) Selekteer beeld(e) - + All Files - + Replace Live Background - + Replace Background - + + Reset Live Background + + + + You must select an image to delete. - + Image(s) Beeld(e) - + You must select an image to replace the background with. - + You must select a media file to replace the background with. @@ -903,35 +1151,100 @@ Changes do not affect verses already in the service. MediaPlugin - + <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. + + + &Edit Media + + + + + &Delete Media + + + + + &Preview Media + + + + + &Show Live + &Vertoon Regstreeks + + + + Import a Media + + + + + Load a new Media + + + + + Add a new Media + + + + + Edit the selected Media + + + + + Delete the selected Media + + + + + Preview the selected Media + + + + + Send the selected Media live + + + + + Add the selected Media to the service + + + + + Media + Media + MediaPlugin.MediaItem - - Media - Media - - - + Select Media Selekteer Media - + Replace Live Background - + Replace Background - + + Media + Media + + + You must select a media file to delete. @@ -939,7 +1252,7 @@ Changes do not affect verses already in the service. OpenLP - + Image Files @@ -1201,317 +1514,297 @@ This General Public License does not permit incorporating your program into prop OpenLP.AmendThemeForm - + Theme Maintenance Tema Onderhoud - + Theme &name: - - &Visibility: - - - - - Opaque - Deursigtigheid - - - - Transparent - Deursigtig - - - + Type: Tipe: - + Solid Color Soliede Kleur - + Gradient Gradiënt - + Image Beeld - + Image: Beeld: - + Gradient: - + Horizontal Horisontaal - + Vertical Vertikaal - + Circular Sirkelvormig - + &Background - + Main Font Hoof Skrif - + Font: Skrif: - + Color: - + Size: Grootte: - + pt pt - - Wrap indentation: - - - - + Adjust line spacing: - + Normal Normaal - + Bold Vetgedruk - + Italics Kursief - + Bold/Italics Bold/Italics - + Style: - + Display Location Vertoon Ligging - + Use default location - + X position: - + Y position: - + Width: Wydte: - + Height: Hoogte: - + px px - + &Main Font - + Footer Font Voetnota Skriftipe - + &Footer Font - + Outline Buitelyn - + Outline size: - + Outline color: - + Show outline: - + Shadow Skaduwee - + Shadow size: - + Shadow color: - + Show shadow: - + Alignment Belyning - + Horizontal align: - + Left Links - + Right Regs - + Center Middel - + Vertical align: - + Top - + Middle Middel - + Bottom Onder - + Slide Transition Skyfie Verandering - + Transition active - + &Other Options - + Preview Voorskou - + All Files - + Select Image - + First color: - + Second color: - + Slide height is %s rows. @@ -1660,7 +1953,7 @@ This General Public License does not permit incorporating your program into prop OpenLP.MainWindow - + OpenLP 2.0 OpenLP 2.0 @@ -1670,404 +1963,404 @@ This General Public License does not permit incorporating your program into prop Engels - + &File &Lêer - + &Import &Invoer - + &Export &Uitvoer - + &View &Bekyk - + M&ode M&odus - + &Tools &Gereedskap - + &Settings Ver&stellings - + &Language Taa&l - + &Help &Hulp - + Media Manager Media Bestuurder - + Service Manager Diens Bestuurder - + Theme Manager Tema Bestuurder - + &New &Nuwe - + New Service Nuwe Diens - + Create a new service. - + Ctrl+N Ctrl+N - + &Open Maak &Oop - + Open Service Maak Diens Oop - + Open an existing service. - + Ctrl+O Ctrl+O - + &Save &Stoor - + Save Service Stoor Diens - + Save the current service to disk. - + Ctrl+S Ctrl+S - + Save &As... Stoor &As... - + Save Service As Stoor Diens As - + Save the current service under a new name. - + Ctrl+Shift+S - + E&xit &Uitgang - + Quit OpenLP Sluit OpenLP Af - + Alt+F4 Alt+F4 - + &Theme &Tema - + &Configure OpenLP... - + &Media Manager &Media Bestuurder - + Toggle Media Manager Wissel Media Bestuurder - + Toggle the visibility of the media manager. - + F8 F8 - + &Theme Manager &Tema Bestuurder - + Toggle Theme Manager Wissel Tema Bestuurder - + Toggle the visibility of the theme manager. - + F10 F10 - + &Service Manager &Diens Bestuurder - + Toggle Service Manager Wissel Diens Bestuurder - + Toggle the visibility of the service manager. - + F9 F9 - + &Preview Panel &Voorskou Paneel - + Toggle Preview Panel Wissel Voorskou Paneel - + Toggle the visibility of the preview panel. - + F11 F11 - + &Live Panel - + Toggle Live Panel - + Toggle the visibility of the live panel. - + F12 F12 - + &Plugin List In&prop Lys - + List the Plugins Lys die Inproppe - + Alt+F7 Alt+F7 - + &User Guide &Gebruikers Gids - + &About &Aangaande - + More information about OpenLP Meer inligting aangaande OpenLP - + Ctrl+F1 Ctrl+F1 - + &Online Help &Aanlyn Hulp - + &Web Site &Web Tuiste - + &Auto Detect - + Use the system language, if available. - + Set the interface language to %s - + Add &Tool... - + Add an application to the list of tools. - + &Default - + Set the view mode back to the default. - + &Setup - + Set the view mode to Setup. - + &Live &Regstreeks - + 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 <a href="http://openlp.org/">http://openlp.org/</a>. +You can download the latest version from http://openlp.org/. - + OpenLP Version Updated OpenLP Weergawe is Opdateer - + OpenLP Main Display Blanked OpenLP Hoof Vertoning Blanko - + The Main Display has been blanked out Die Hoof Skerm is blanko - + Save Changes to Service? - + Your service has changed. Do you want to save those changes? - + Default Theme: %s @@ -2075,157 +2368,117 @@ You can download the latest version from <a href="http://openlp.org/&quo 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 - Wis geselekteerde item uit - - - + Preview %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 - - Add the selected item(s) to the service - Voeg die geselekteerde item(s) by die diens - - - + &Edit %s - + &Delete %s - + &Preview %s - + &Show Live &Vertoon Regstreeks - + &Add to Service &Voeg by Diens - + &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. @@ -2324,7 +2577,7 @@ You can download the latest version from <a href="http://openlp.org/&quo Skep 'n nuwe diens - + Open Service Maak Diens Oop @@ -2334,7 +2587,7 @@ You can download the latest version from <a href="http://openlp.org/&quo Laai 'n bestaande diens - + Save Service Stoor Diens @@ -2444,48 +2697,48 @@ You can download the latest version from <a href="http://openlp.org/&quo &Verander Item 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 Fout - + 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 @@ -2509,72 +2762,62 @@ The content encoding is not UTF-8. OpenLP.SlideController - + Live Regstreeks - + Preview Voorskou - - Move to first - Verskuif na eerste - - - + Move to previous Beweeg na vorige - + Move to next Verskuif na volgende - - Move to last - Verskuif na laaste posisie - - - + Hide - + Move to live Verskuif na regstreekse skerm - + Edit and re-preview Song Redigeer en sien weer 'n voorskou van die Lied - + Start continuous loop Begin aaneenlopende lus - + Stop continuous loop Stop deurlopende lus - + s s - + Delay between slides in seconds Vertraging in sekondes tussen skyfies - + Start playing media Begin media speel @@ -2584,10 +2827,23 @@ The content encoding is not UTF-8. Gaan na Vers + + OpenLP.SpellTextEdit + + + Spelling Suggestions + + + + + Formatting Tags + + + OpenLP.ThemeManager - + New Theme Nuwe Tema @@ -2657,7 +2913,7 @@ The content encoding is not UTF-8. - + %s (default) @@ -2682,7 +2938,7 @@ The content encoding is not UTF-8. - + Error Fout @@ -2742,23 +2998,23 @@ 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. - + Theme Exists Tema Bestaan - + A theme with this name already exists. Would you like to overwrite it? @@ -2814,55 +3070,140 @@ The content encoding is not UTF-8. PresentationPlugin - + <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. + + + &Edit Presentation + + + + + &Delete Presentation + + + + + &Preview Presentation + + + + + &Show Live + &Vertoon Regstreeks + + + + Import a Presentation + + + + + Load a new Presentation + + + + + Add a new Presentation + + + + + Edit the selected Presentation + + + + + Delete the selected Presentation + + + + + Delete the selected Presentations + + + + + Preview the selected Presentation + + + + + Preview the selected Presentations + + + + + Send the selected Presentation live + + + + + Send the selected Presentations live + + + + + Add the selected Presentation to the service + + + + + Add the selected Presentations to the service + + + + + Presentation + Aanbieding + + + + Presentations + Aanbiedinge + PresentationPlugin.MediaItem - - Presentation - Aanbieding - - - + Select Presentation(s) Selekteer Aanbieding(e) - + Automatic - + Present using: Bied aan met: - + File Exists - + A presentation with that filename already exists. 'n Voorstelling met daardie lêernaam bestaan reeds. - + Unsupported File - + This type of presentation is not supported - + You must select an item to delete. @@ -2893,10 +3234,20 @@ The content encoding is not UTF-8. RemotePlugin - + <strong>Remote Plugin</strong><br />The remote plugin provides the ability to send messages to a running version of OpenLP on a different computer via a web browser or through the remote API. + + + Remote + + + + + Remotes + Afstandbehere + RemotePlugin.RemoteTab @@ -2924,45 +3275,55 @@ The content encoding is not UTF-8. SongUsagePlugin - + &Song Usage Tracking - + &Delete Tracking Data - + Delete song usage data up to a specified date. - + &Extract Tracking Data - + Generate a report on song usage. - + Toggle Tracking - + Toggle the tracking of song usage. - + <strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services. + + + SongUsage + + + + + Songs + Liedere + SongUsagePlugin.SongUsageDeleteForm @@ -3013,20 +3374,110 @@ The content encoding is not UTF-8. SongsPlugin - + &Song &Lied - + Import songs using the import wizard. - + <strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs. + + + &Edit Song + + + + + &Delete Song + + + + + &Preview Song + + + + + &Show Live + &Vertoon Regstreeks + + + + Import a Song + + + + + Load a new Song + + + + + Add a new Song + + + + + Edit the selected Song + + + + + Delete the selected Song + + + + + Delete the selected Songs + + + + + Preview the selected Song + + + + + Preview the selected Songs + + + + + Send the selected Song live + + + + + Send the selected Songs live + + + + + Add the selected Song to the service + + + + + Add the selected Songs to the service + + + + + Song + Lied + + + + Songs + Liedere + SongsPlugin.AuthorsForm @@ -3074,232 +3525,237 @@ The content encoding is not UTF-8. SongsPlugin.EditSongForm - + Song Editor Lied Redigeerder - + &Title: - + Alt&ernate title: - + &Lyrics: - + &Verse order: - + &Add - + &Edit R&edigeer - + Ed&it All - + &Delete - + Title && Lyrics Titel && Lirieke - + Authors Skrywers - + &Add to Song &Voeg by Lied - + &Remove &Verwyder - + &Manage Authors, Topics, Song Books - + Topic Onderwerp - + A&dd to Song Voeg by Lie&d - + R&emove V&erwyder - + Song Book Lied Boek - - - Authors, Topics && Song Book - - - - - Theme - Tema - - New &Theme + Song No.: - Copyright Information - Kopiereg Informasie - - - - © + Authors, Topics && Song Book + Theme + Tema + + + + New &Theme + + + + + Copyright Information + Kopiereg Informasie + + + + © + + + + CCLI number: - + Comments Kommentaar - + Theme, Copyright Info && Comments Tema, Kopiereg Informasie && Kommentaar - + Save && Preview Stoor && Voorskou - + Add Author - + This author does not exist, do you want to add them? - + Error Fout - + This author is already in the list. - + 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. - + Add Topic - + This topic does not exist, do you want to add it? - + This topic is already in the list. - + 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 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? - + Add Book - + This song book does not exist, do you want to add it? @@ -3307,17 +3763,17 @@ The content encoding is not UTF-8. SongsPlugin.EditVerseForm - + Edit Verse Redigeer Vers - + &Verse type: - + &Insert @@ -3325,232 +3781,237 @@ 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... Invoer begin... - + 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 Selekteer Invoer Bron - + Select the import format, and where to import from. Selekteer die invoer formaat en van waar af om in te voer. - + Format: Formaat: - + 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... - + Add Files... - + Remove File(s) - + Importing Invoer - + Please wait while your songs are imported. - + Ready. Gereed. - + %p% @@ -3558,82 +4019,77 @@ The content encoding is not UTF-8. SongsPlugin.MediaItem - - Song - Lied - - - + Song Maintenance Lied Onderhoud - + Maintain the lists of authors, topics and books Handhaaf die lys van skrywers, onderwerpe en boeke - + Search: Soek: - + Type: Tipe: - + Clear - + Search Soek - + Titles Titels - + Lyrics - + Authors Skrywers - + 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 Lisensie: @@ -3669,12 +4125,12 @@ The content encoding is not UTF-8. SongsPlugin.SongImport - + copyright - + © @@ -3682,12 +4138,12 @@ The content encoding is not UTF-8. SongsPlugin.SongImportForm - + Finished import. Invoer voltooi. - + Your song import failed. @@ -3730,112 +4186,112 @@ The content encoding is not UTF-8. - + Error Fout - + 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. - + Delete Author Wis Skrywer Uit - + Are you sure you want to delete the selected author? Is u seker u wil die geselekteerde skrywer uitwis? - + This author cannot be deleted, they are currently assigned to at least one song. - + No author selected! Geen skrywer geselekteer nie! - + Delete Topic Wis Onderwerp Uit - + Are you sure you want to delete the selected topic? Is u seker u wil die geselekteerde onderwerp uitwis? - + This topic cannot be deleted, it is currently assigned to at least one song. - + No topic selected! Geen onderwerp geselekteer nie! - + Delete Book Wis Boek Uit - + Are you sure you want to delete the selected book? Is jy seker jy wil die geselekteerde boek uitwis? - + This book cannot be deleted, it is currently assigned to at least one song. - + No book selected! Geen boek geselekteer nie! diff --git a/resources/i18n/openlp_de.ts b/resources/i18n/openlp_de.ts index d805db01c..08b0e5cfe 100644 --- a/resources/i18n/openlp_de.ts +++ b/resources/i18n/openlp_de.ts @@ -3,19 +3,29 @@ AlertsPlugin - + &Alert &Hinweis - + Show an alert message. + Hinweis anzeigen + + + + <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 + Hinweise @@ -79,7 +89,7 @@ AlertsPlugin.AlertsManager - + Alert message created and displayed. @@ -165,15 +175,105 @@ BiblesPlugin - + &Bible &Bibel - + <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display bible verses from different sources during the service. + + + &Edit Bible + + + + + &Delete Bible + + + + + &Preview Bible + + + + + &Show Live + &Zeige Live + + + + Import a Bible + + + + + Load a new Bible + + + + + Add a new Bible + + + + + Edit the selected Bible + + + + + Delete the selected Bible + + + + + Delete the selected Bibles + + + + + Preview the selected Bible + + + + + Preview the selected Bibles + + + + + Send the selected Bible live + + + + + Send the selected Bibles live + + + + + Add the selected Verse to the service + + + + + Add the selected Verses to the service + + + + + Bible + Bibel + + + + Bibles + Bibeln + BiblesPlugin.BibleDB @@ -554,112 +654,107 @@ Changes do not affect verses already in the service. 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 - + 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: - + Bible not fully loaded. @@ -675,7 +770,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 songs are. This plugin provides greater freedom over the songs plugin. @@ -701,62 +796,62 @@ Changes do not affect verses already in the service. CustomPlugin.EditCustomForm - + Edit Custom Slides Sonderfolien bearbeiten - + &Title: - + Add New Neues anfügen - + Edit Bearbeiten - + Edit All - + Save Speichern - + Delete Löschen - + Clear - + Clear edit area Aufräumen des Bearbeiten Bereiches - + Split Slide - + The&me: - + &Credits: @@ -771,37 +866,37 @@ Changes do not affect verses already in the service. Fehler - + Move slide down one position. - + Add a new slide at bottom. - + Edit the selected slide. - + Edit all the slides at once. - + Save the slide currently being edited. - + Delete the selected slide. - + Split a slide into two by inserting a slide splitter. @@ -821,7 +916,7 @@ Changes do not affect verses already in the service. - + Move slide up one position. @@ -829,109 +924,327 @@ Changes do not affect verses already in the service. CustomPlugin.MediaItem - - Custom - Sonderfolien - - - + You haven't selected an item to edit. - + You haven't selected an item to delete. + + CustomsPlugin + + + &Edit Custom + + + + + &Delete Custom + + + + + &Preview Custom + + + + + &Show Live + &Zeige Live + + + + Import a Custom + + + + + Load a new Custom + + + + + Add a new Custom + + + + + Edit the selected Custom + + + + + Delete the selected Custom + + + + + Preview the selected Custom + + + + + Send the selected Custom live + + + + + Add the selected Custom to the service + + + + + Custom + Sonderfolien + + ImagePlugin - + <strong>Image Plugin</strong><br />The image plugin provides displaying of images.<br />One of the distinguishing features of this plugin is the ability to group a number of images together in the service manager, making the displaying of multiple images easier. This plugin can also make use of OpenLP's "timed looping" feature to create a slide show that runs automatically. In addition to this, images from the plugin can be used to override the current theme's background, which renders text-based items like songs with the selected image as a background instead of the background provided by the theme. + + + &Edit Image + + + + + &Delete Image + + + + + &Preview Image + + + + + &Show Live + &Zeige Live + + + + Import a Image + + + + + Load a new Image + + + + + Add a new Image + + + + + Edit the selected Image + + + + + Delete the selected Image + + + + + Delete the selected Images + + + + + Preview the selected Image + + + + + Preview the selected Images + + + + + Send the selected Image live + + + + + Send the selected Images live + + + + + Add the selected Image to the service + + + + + Add the selected Images to the service + + + + + Image + Bild + + + + Images + + ImagePlugin.MediaItem - - Image - Bild - - - + Select Image(s) Bild(er) auswählen - + All Files - + Replace Live Background - + Image(s) Bild(er) - + Replace Background - + You must select an image to delete. - + You must select an image to replace the background with. - + You must select a media file to replace the background with. + + + Reset Live Background + + MediaPlugin - + <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. + + + &Edit Media + + + + + &Delete Media + + + + + &Preview Media + + + + + &Show Live + &Zeige Live + + + + Import a Media + + + + + Load a new Media + + + + + Add a new Media + + + + + Edit the selected Media + + + + + Delete the selected Media + + + + + Preview the selected Media + + + + + Send the selected Media live + + + + + Add the selected Media to the service + + + + + Media + Medien + MediaPlugin.MediaItem - + Media Medien - + Select Media Medien auswählen - + Replace Live Background - + Replace Background - + You must select a media file to delete. @@ -939,7 +1252,7 @@ Changes do not affect verses already in the service. OpenLP - + Image Files @@ -1201,317 +1514,297 @@ This General Public License does not permit incorporating your program into prop OpenLP.AmendThemeForm - + Theme Maintenance Designverwaltung - + Theme &name: - - &Visibility: - - - - - Opaque - Fest - - - - Transparent - Durchsichtig - - - + Type: Art: - + Solid Color Füllfarbe - + Gradient Farbverlauf - + Image Bild - + Image: Bild: - + Gradient: - + Horizontal Horizontal - + Vertical Vertikal - + Circular Radial - + &Background - + Main Font Hauptschriftart - + Font: Schriftart: - + Color: Farbe: - + Size: Größe: - + pt pt - - Wrap indentation: - - - - + Adjust line spacing: - + Normal Normal - + Bold Fett - + Italics Kursiv - + Bold/Italics Fett/Kursiv - + Style: - + Display Location Anzeige Ort - + Use default location - + X position: - + Y position: - + Width: Breite: - + Height: Höhe: - + px px - + &Main Font - + Footer Font Schriftart der Fußzeile - + &Footer Font - + Outline Rand - + Outline size: - + Outline color: - + Show outline: - + Shadow Schatten - + Shadow size: - + Shadow color: - + Show shadow: - + Alignment Ausrichtung - + Horizontal align: - + Left Links - + Right Rechts - + Center Mitte - + Vertical align: - + Top Oben - + Middle Mittig - + Bottom Unten - + Slide Transition Folienübergang - + Transition active - + &Other Options - + Preview Vorschau - + All Files - + Select Image - + First color: - + Second color: - + Slide height is %s rows. @@ -1660,7 +1953,7 @@ This General Public License does not permit incorporating your program into prop OpenLP.MainWindow - + OpenLP 2.0 OpenLP 2.0 @@ -1670,562 +1963,522 @@ This General Public License does not permit incorporating your program into prop Deutsch - + &File &Datei - + &Import &Importieren - + &Export &Exportieren - + &View &Ansicht - + M&ode M&odus - + &Tools &Extras - + &Settings Ein&stellungen - + &Language &Sprache - + &Help &Hilfe - + Media Manager Medienmanager - + Service Manager Ablaufverwaltung - + Theme Manager Designmanager - + &New &Neu - + New Service Neuer Ablauf - + Create a new service. - + Ctrl+N Strg+N - + &Open &Öffnen - + Open Service Öffnen Ablauf - + Open an existing service. - + Ctrl+O Strg+O - + &Save &Speichern - + Save Service Ablauf speichern - + Save the current service to disk. - + Ctrl+S Strg+S - + Save &As... Speichern &als... - + Save Service As Speicher Gottesdienst unter - + Save the current service under a new name. - + Ctrl+Shift+S - + E&xit &Beenden - + Quit OpenLP OpenLP beenden - + Alt+F4 Alt+F4 - + &Theme &Design - + &Configure OpenLP... - + &Media Manager &Medienmanager - + Toggle Media Manager Medienmanager ein/ausblenden - + Toggle the visibility of the media manager. - + F8 F8 - + &Theme Manager &Designmanager - + Toggle Theme Manager Designverwaltung ein/ausblenden - + Toggle the visibility of the theme manager. - + F10 F10 - + &Service Manager Ablauf&sverwaltung - + Toggle Service Manager Ablaufmanager ein/ausblenden - + Toggle the visibility of the service manager. - + F9 F9 - + &Preview Panel &Vorschaubereich - + Toggle Preview Panel Vorschaubereich ein/ausblenden - + Toggle the visibility of the preview panel. - + F11 F11 - + &Live Panel - + Toggle Live Panel - + Toggle the visibility of the live panel. - + F12 F12 - + &Plugin List &Plugin-Liste - + List the Plugins Plugins auflisten - + Alt+F7 Alt+F7 - + &User Guide Ben&utzerhandbuch - + &About &Über - + More information about OpenLP Mehr Informationen über OpenLP - + Ctrl+F1 Strg+F1 - + &Online Help &Online Hilfe - + &Web Site &Webseite - + &Auto Detect - + Use the system language, if available. - + Set the interface language to %s - + Add &Tool... - + Add an application to the list of tools. - + &Default - + Set the view mode back to the default. - + &Setup - + Set the view mode to Setup. - + &Live &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 <a href="http://openlp.org/">http://openlp.org/</a>. - - - - + OpenLP Version Updated 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? - + Default Theme: %s + + + Version %s of OpenLP is now available for download (you are currently running version %s). + +You can download the latest version from http://openlp.org/. + + 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 - Markiertes Element löschen - - - + Preview %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 - - Add the selected item(s) to the service - Füge Element(e) zum Ablauf hinzu - - - + &Edit %s - + &Delete %s - + &Preview %s - + &Show Live &Zeige Live - + &Add to Service &Zum Ablauf hinzufügen - + &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 Sie müssen mindestens ein Element markieren - + No Service Item Selected - + You must select an existing service item to add to. - + Invalid Service Item - + You must select a %s service item. @@ -2275,17 +2528,17 @@ You can download the latest version from <a href="http://openlp.org/&quo %s (Inactive) - + %s (Inaktiv) %s (Active) - + %s (Aktiv) %s (Disabled) - + %s (Deaktiviert) @@ -2324,7 +2577,7 @@ You can download the latest version from <a href="http://openlp.org/&quo Erstelle neuen Ablauf - + Open Service Öffnen Ablauf @@ -2334,7 +2587,7 @@ You can download the latest version from <a href="http://openlp.org/&quo Öffne Ablauf - + Save Service Ablauf speichern @@ -2444,48 +2697,48 @@ You can download the latest version from <a href="http://openlp.org/&quo &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? - + OpenLP Service Files (*.osz) - + Your current service is unsaved, do you want to save the changes before opening a new one? - + Error Fehler - + 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 @@ -2509,72 +2762,62 @@ The content encoding is not UTF-8. OpenLP.SlideController - + Live Live - + Preview Vorschau - - Move to first - Ganz nach vorn verschieben - - - + Move to previous Vorherige Folie anzeigen - + Move to next Verschiebe zum Nächsten - - Move to last - Zur letzten Folie - - - + Hide - + Move to live Verschieben zur Live Ansicht - + Edit and re-preview Song Lied bearbeiten und wieder anzeigen - + 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 @@ -2584,10 +2827,23 @@ The content encoding is not UTF-8. Springe zu + + OpenLP.SpellTextEdit + + + Spelling Suggestions + + + + + Formatting Tags + + + OpenLP.ThemeManager - + New Theme Neues Design @@ -2657,7 +2913,7 @@ The content encoding is not UTF-8. - + %s (default) @@ -2682,7 +2938,7 @@ The content encoding is not UTF-8. - + Error Fehler @@ -2742,23 +2998,23 @@ 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. - + Theme Exists Design existiert - + A theme with this name already exists. Would you like to overwrite it? @@ -2814,55 +3070,140 @@ The content encoding is not UTF-8. PresentationPlugin - + <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. + + + &Edit Presentation + + + + + &Delete Presentation + + + + + &Preview Presentation + + + + + &Show Live + &Zeige Live + + + + Import a Presentation + + + + + Load a new Presentation + + + + + Add a new Presentation + + + + + Edit the selected Presentation + + + + + Delete the selected Presentation + + + + + Delete the selected Presentations + + + + + Preview the selected Presentation + + + + + Preview the selected Presentations + + + + + Send the selected Presentation live + + + + + Send the selected Presentations live + + + + + Add the selected Presentation to the service + + + + + Add the selected Presentations to the service + + + + + Presentation + Präsentation + + + + Presentations + Präsentationen + PresentationPlugin.MediaItem - - Presentation - Präsentation - - - + Select Presentation(s) Präsentation(en) auswählen - + Automatic - + 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. - + File Exists - + Unsupported File - + This type of presentation is not supported @@ -2893,10 +3234,20 @@ The content encoding is not UTF-8. RemotePlugin - + <strong>Remote Plugin</strong><br />The remote plugin provides the ability to send messages to a running version of OpenLP on a different computer via a web browser or through the remote API. + + + Remote + + + + + Remotes + Fernprojektion + RemotePlugin.RemoteTab @@ -2924,45 +3275,55 @@ The content encoding is not UTF-8. SongUsagePlugin - + &Song Usage Tracking - + &Delete Tracking Data - + Delete song usage data up to a specified date. - + &Extract Tracking Data - + Generate a report on song usage. - + Toggle Tracking - + Toggle the tracking of song usage. - + <strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services. + + + SongUsage + + + + + Songs + Lieder + SongUsagePlugin.SongUsageDeleteForm @@ -3013,20 +3374,110 @@ The content encoding is not UTF-8. SongsPlugin - + &Song &Lied - + Import songs using the import wizard. - + <strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs. + + + &Edit Song + + + + + &Delete Song + + + + + &Preview Song + + + + + &Show Live + &Zeige Live + + + + Import a Song + + + + + Load a new Song + + + + + Add a new Song + + + + + Edit the selected Song + + + + + Delete the selected Song + + + + + Delete the selected Songs + + + + + Preview the selected Song + + + + + Preview the selected Songs + + + + + Send the selected Song live + + + + + Send the selected Songs live + + + + + Add the selected Song to the service + + + + + Add the selected Songs to the service + + + + + Song + Lied + + + + Songs + Lieder + SongsPlugin.AuthorsForm @@ -3074,250 +3525,255 @@ The content encoding is not UTF-8. SongsPlugin.EditSongForm - + Song Editor Lied bearbeiten - + &Title: - + &Lyrics: - + &Add - + &Edit &Bearbeiten - + Ed&it All - + &Delete - + Title && Lyrics Titel && Liedtext - + Authors Autoren - + &Add to Song Zum Lied &hinzufügen - + &Remove Entfe&rnen - + Topic Thema - + A&dd to Song Zum Lied &hinzufügen - + R&emove &Entfernen - + Song Book Liederbuch - + Theme Design - + New &Theme - + Copyright Information Copyright Angaben - + © - + Comments Kommentare - + Theme, Copyright Info && Comments Design, Copyrightinformationen && Kommentare - + Save && Preview Speichern && Vorschau - + Add Author - + This author does not exist, do you want to add them? - + 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. - + Add Topic - + This topic does not exist, do you want to add it? - + 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. - + Add Book - + This song book does not exist, do you want to add it? - + Error Fehler - + 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: - + This author is already in the list. - + This topic is already in the list. + + + Song No.: + + SongsPlugin.EditVerseForm - + Edit Verse Bearbeite Vers - + &Verse type: - + &Insert @@ -3325,232 +3781,237 @@ The content encoding is not UTF-8. 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 ... - + 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.org 1.x - + Words of Worship - + CCLI/SongSelect - + Songs of Fellowship - + Generic Document/Presentation @@ -3558,82 +4019,77 @@ The content encoding is not UTF-8. 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 - + Search Suche - + Titles Titel - + Lyrics Liedtext - + Authors Autoren - + You must select an item to edit. - + You must select an item to delete. - + 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)? @@ -3669,12 +4125,12 @@ The content encoding is not UTF-8. SongsPlugin.SongImport - + copyright - + © @@ -3682,12 +4138,12 @@ The content encoding is not UTF-8. SongsPlugin.SongImportForm - + Finished import. Importvorgang abgeschlossen. - + Your song import failed. @@ -3725,52 +4181,52 @@ The content encoding is not UTF-8. - + Error Fehler - + Delete Author Lösche Autor - + Are you sure you want to delete the selected author? Sind Sie sicher, dass Sie den ausgewählten Autor löschen wollen? - + No author selected! Sie haben keinen Autor ausgewählt! - + Delete Topic Lösche Thema - + Are you sure you want to delete the selected topic? Soll der gewählte Eintrag wirklich gelöscht werden? - + No topic selected! Kein Thema ausgewählt! - + Delete Book Buch löschen - + Are you sure you want to delete the selected book? Sind Sie sicher, dass das markierte Buch wirklich gelöscht werden soll? - + No book selected! Kein Buch ausgewählt! @@ -3780,62 +4236,62 @@ The content encoding is not UTF-8. - + 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. diff --git a/resources/i18n/openlp_en.ts b/resources/i18n/openlp_en.ts index 3d538ab1b..4fac40d62 100644 --- a/resources/i18n/openlp_en.ts +++ b/resources/i18n/openlp_en.ts @@ -3,20 +3,30 @@ AlertsPlugin - + &Alert - + Show an alert message. - + <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of nursery alerts on the display screen + + + Alert + + + + + Alerts + + AlertsPlugin.AlertForm @@ -79,7 +89,7 @@ AlertsPlugin.AlertsManager - + Alert message created and displayed. @@ -165,15 +175,105 @@ BiblesPlugin - + &Bible - + <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display bible verses from different sources during the service. + + + &Edit Bible + + + + + &Delete Bible + + + + + &Preview Bible + + + + + &Show Live + + + + + Import a Bible + + + + + Load a new Bible + + + + + Add a new Bible + + + + + Edit the selected Bible + + + + + Delete the selected Bible + + + + + Delete the selected Bibles + + + + + Preview the selected Bible + + + + + Preview the selected Bibles + + + + + Send the selected Bible live + + + + + Send the selected Bibles live + + + + + Add the selected Verse to the service + + + + + Add the selected Verses to the service + + + + + Bible + + + + + Bibles + + BiblesPlugin.BibleDB @@ -554,112 +654,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. @@ -675,7 +770,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 songs are. This plugin provides greater freedom over the songs plugin. @@ -701,102 +796,102 @@ Changes do not affect verses already in the service. CustomPlugin.EditCustomForm - + Edit Custom Slides - + Move slide up one position. - + Move slide down one position. - + &Title: - + Add New - + Add a new slide at bottom. - + Edit - + Edit the selected slide. - + Edit All - + Edit all the slides at once. - + Save - + Save the slide currently being edited. - + Delete - + Delete the selected slide. - + Clear - + Clear edit area - + Split Slide - + Split a slide into two by inserting a slide splitter. - + The&me: - + &Credits: @@ -829,73 +924,226 @@ Changes do not affect verses already in the service. CustomPlugin.MediaItem - - Custom - - - - + You haven't selected an item to edit. - + You haven't selected an item to delete. + + CustomsPlugin + + + &Edit Custom + + + + + &Delete Custom + + + + + &Preview Custom + + + + + &Show Live + + + + + Import a Custom + + + + + Load a new Custom + + + + + Add a new Custom + + + + + Edit the selected Custom + + + + + Delete the selected Custom + + + + + Preview the selected Custom + + + + + Send the selected Custom live + + + + + Add the selected Custom to the service + + + + + Custom + + + ImagePlugin - + <strong>Image Plugin</strong><br />The image plugin provides displaying of images.<br />One of the distinguishing features of this plugin is the ability to group a number of images together in the service manager, making the displaying of multiple images easier. This plugin can also make use of OpenLP's "timed looping" feature to create a slide show that runs automatically. In addition to this, images from the plugin can be used to override the current theme's background, which renders text-based items like songs with the selected image as a background instead of the background provided by the theme. + + + &Edit Image + + + + + &Delete Image + + + + + &Preview Image + + + + + &Show Live + + + + + Import a Image + + + + + Load a new Image + + + + + Add a new Image + + + + + Edit the selected Image + + + + + Delete the selected Image + + + + + Delete the selected Images + + + + + Preview the selected Image + + + + + Preview the selected Images + + + + + Send the selected Image live + + + + + Send the selected Images live + + + + + Add the selected Image to the service + + + + + Add the selected Images to the service + + + + + Image + + + + + Images + + 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. @@ -903,35 +1151,100 @@ Changes do not affect verses already in the service. MediaPlugin - + <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. + + + &Edit Media + + + + + &Delete Media + + + + + &Preview Media + + + + + &Show Live + + + + + Import a Media + + + + + Load a new Media + + + + + Add a new Media + + + + + Edit the selected Media + + + + + Delete the selected Media + + + + + Preview the selected Media + + + + + Send the selected Media live + + + + + Add the selected Media to the service + + + + + Media + + MediaPlugin.MediaItem - - Media - - - - + Select Media - + Replace Live Background - + Replace Background - + + Media + + + + You must select a media file to delete. @@ -939,7 +1252,7 @@ Changes do not affect verses already in the service. OpenLP - + Image Files @@ -1201,317 +1514,297 @@ This General Public License does not permit incorporating your program into prop OpenLP.AmendThemeForm - + Theme Maintenance - + Theme &name: - - &Visibility: - - - - - Opaque - - - - - Transparent - - - - + Type: - + Solid Color - + Gradient - + Image - + Image: - + Gradient: - + Horizontal - + Vertical - + Circular - + &Background - + Main Font - + Font: - + Color: - + Size: - + pt - - Wrap indentation: - - - - + Adjust line spacing: - + Normal - + Bold - + Italics - + Bold/Italics - + Style: - + Display Location - + Use default location - + X position: - + Y position: - + Width: - + Height: - + px - + &Main Font - + Footer Font - + &Footer Font - + Outline - + Outline size: - + Outline color: - + Show outline: - + Shadow - + Shadow size: - + Shadow color: - + Show shadow: - + Alignment - + Horizontal align: - + Left - + Right - + Center - + Vertical align: - + Top - + Middle - + Bottom - + Slide Transition - + Transition active - + &Other Options - + Preview - + All Files - + Select Image - + First color: - + Second color: - + Slide height is %s rows. @@ -1660,7 +1953,7 @@ This General Public License does not permit incorporating your program into prop OpenLP.MainWindow - + OpenLP 2.0 @@ -1670,404 +1963,404 @@ This General Public License does not permit incorporating your program into prop - + &File - + &Import - + &Export - + &View - + M&ode - + &Tools - + &Settings - + &Language - + &Help - + Media Manager - + Service Manager - + Theme Manager - + &New - + New Service - + Create a new service. - + Ctrl+N - + &Open - + Open Service - + Open an existing service. - + Ctrl+O - + &Save - + Save Service - + Save the current service to disk. - + Ctrl+S - + Save &As... - + Save Service As - + Save the current service under a new name. - + Ctrl+Shift+S - + E&xit - + Quit OpenLP - + Alt+F4 - + &Theme - + &Configure OpenLP... - + &Media Manager - + Toggle Media Manager - + Toggle the visibility of the media manager. - + F8 - + &Theme Manager - + Toggle Theme Manager - + Toggle the visibility of the theme manager. - + F10 - + &Service Manager - + Toggle Service Manager - + Toggle the visibility of the service manager. - + F9 - + &Preview Panel - + Toggle Preview Panel - + Toggle the visibility of the preview panel. - + F11 - + &Live Panel - + Toggle Live Panel - + Toggle the visibility of the live panel. - + F12 - + &Plugin List - + List the Plugins - + Alt+F7 - + &User Guide - + &About - + More information about OpenLP - + Ctrl+F1 - + &Online Help - + &Web Site - + &Auto Detect - + Use the system language, if available. - + Set the interface language to %s - + Add &Tool... - + Add an application to the list of tools. - + &Default - + Set the view mode back to the default. - + &Setup - + Set the view mode to Setup. - + &Live - + Set the view mode to Live. - + Version %s of OpenLP is now available for download (you are currently running version %s). -You can download the latest version from <a href="http://openlp.org/">http://openlp.org/</a>. +You can download the latest version from 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 @@ -2075,157 +2368,117 @@ You can download the latest version from <a href="http://openlp.org/&quo 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. @@ -2324,7 +2577,7 @@ You can download the latest version from <a href="http://openlp.org/&quo - + Open Service @@ -2334,7 +2587,7 @@ You can download the latest version from <a href="http://openlp.org/&quo - + Save Service @@ -2444,48 +2697,48 @@ You can download the latest version from <a href="http://openlp.org/&quo - + 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 @@ -2509,72 +2762,62 @@ The content encoding is not UTF-8. OpenLP.SlideController - + Live - + Preview - - Move to first - - - - + Move to previous - + Move to next - - Move to last - - - - + Hide - + Move to live - + Edit and re-preview Song - + Start continuous loop - + Stop continuous loop - + s - + Delay between slides in seconds - + Start playing media @@ -2584,10 +2827,23 @@ The content encoding is not UTF-8. + + OpenLP.SpellTextEdit + + + Spelling Suggestions + + + + + Formatting Tags + + + OpenLP.ThemeManager - + New Theme @@ -2657,7 +2913,7 @@ The content encoding is not UTF-8. - + %s (default) @@ -2682,7 +2938,7 @@ The content encoding is not UTF-8. - + Error @@ -2742,23 +2998,23 @@ 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. - + Theme Exists - + A theme with this name already exists. Would you like to overwrite it? @@ -2814,55 +3070,140 @@ The content encoding is not UTF-8. PresentationPlugin - + <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. + + + &Edit Presentation + + + + + &Delete Presentation + + + + + &Preview Presentation + + + + + &Show Live + + + + + Import a Presentation + + + + + Load a new Presentation + + + + + Add a new Presentation + + + + + Edit the selected Presentation + + + + + Delete the selected Presentation + + + + + Delete the selected Presentations + + + + + Preview the selected Presentation + + + + + Preview the selected Presentations + + + + + Send the selected Presentation live + + + + + Send the selected Presentations live + + + + + Add the selected Presentation to the service + + + + + Add the selected Presentations to the service + + + + + Presentation + + + + + Presentations + + 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. @@ -2893,10 +3234,20 @@ The content encoding is not UTF-8. RemotePlugin - + <strong>Remote Plugin</strong><br />The remote plugin provides the ability to send messages to a running version of OpenLP on a different computer via a web browser or through the remote API. + + + Remote + + + + + Remotes + + RemotePlugin.RemoteTab @@ -2924,45 +3275,55 @@ The content encoding is not UTF-8. SongUsagePlugin - + &Song Usage Tracking - + &Delete Tracking Data - + Delete song usage data up to a specified date. - + &Extract Tracking Data - + Generate a report on song usage. - + Toggle Tracking - + Toggle the tracking of song usage. - + <strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services. + + + SongUsage + + + + + Songs + + SongUsagePlugin.SongUsageDeleteForm @@ -3013,20 +3374,110 @@ The content encoding is not UTF-8. SongsPlugin - + &Song - + Import songs using the import wizard. - + <strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs. + + + &Edit Song + + + + + &Delete Song + + + + + &Preview Song + + + + + &Show Live + + + + + Import a Song + + + + + Load a new Song + + + + + Add a new Song + + + + + Edit the selected Song + + + + + Delete the selected Song + + + + + Delete the selected Songs + + + + + Preview the selected Song + + + + + Preview the selected Songs + + + + + Send the selected Song live + + + + + Send the selected Songs live + + + + + Add the selected Song to the service + + + + + Add the selected Songs to the service + + + + + Song + + + + + Songs + + SongsPlugin.AuthorsForm @@ -3074,232 +3525,237 @@ The content encoding is not UTF-8. SongsPlugin.EditSongForm - + Song Editor - + &Title: - + Alt&ernate title: - + &Lyrics: - + &Verse order: - + &Add - + &Edit - + Ed&it All - + &Delete - + Title && Lyrics - + Authors - + &Add to Song - + &Remove - + &Manage Authors, Topics, Song Books - + Topic - + A&dd to Song - + R&emove - + Song Book - - - Authors, Topics && Song Book - - - - - Theme - - - New &Theme + Song No.: - Copyright Information - - - - - © + Authors, Topics && Song Book - CCLI number: + Theme - Comments + New &Theme + Copyright Information + + + + + © + + + + + CCLI number: + + + + + Comments + + + + Theme, Copyright Info && Comments - + Save && Preview - + Add Author - + This author does not exist, do you want to add them? - + Error - + This author is already in the list. - + 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. - + Add Topic - + This topic does not exist, do you want to add it? - + This topic is already in the list. - + 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 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? - + Add Book - + This song book does not exist, do you want to add it? @@ -3307,17 +3763,17 @@ The content encoding is not UTF-8. SongsPlugin.EditVerseForm - + Edit Verse - + &Verse type: - + &Insert @@ -3325,232 +3781,237 @@ 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... - + Add Files... - + Remove File(s) - + Importing - + Please wait while your songs are imported. - + Ready. - + %p% @@ -3558,82 +4019,77 @@ 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: @@ -3669,12 +4125,12 @@ The content encoding is not UTF-8. SongsPlugin.SongImport - + copyright - + © @@ -3682,12 +4138,12 @@ The content encoding is not UTF-8. SongsPlugin.SongImportForm - + Finished import. - + Your song import failed. @@ -3730,112 +4186,112 @@ The content encoding is not UTF-8. - + Error - + 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. - + Delete Author - + Are you sure you want to delete the selected author? - + This author cannot be deleted, they are currently assigned to at least one song. - + No author selected! - + Delete Topic - + Are you sure you want to delete the selected topic? - + This topic cannot be deleted, it is currently assigned to at least one song. - + No topic selected! - + Delete Book - + Are you sure you want to delete the selected book? - + This book cannot be deleted, it is currently assigned to at least one song. - + No book selected! diff --git a/resources/i18n/openlp_en_GB.ts b/resources/i18n/openlp_en_GB.ts index 3503a2e29..0a7b926bb 100644 --- a/resources/i18n/openlp_en_GB.ts +++ b/resources/i18n/openlp_en_GB.ts @@ -3,20 +3,30 @@ AlertsPlugin - + &Alert &Alert - + 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 + AlertsPlugin.AlertForm @@ -79,7 +89,7 @@ AlertsPlugin.AlertsManager - + Alert message created and displayed. @@ -165,15 +175,105 @@ BiblesPlugin - + &Bible &Bible - + <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display bible verses from different sources during the service. + + + &Edit Bible + + + + + &Delete Bible + + + + + &Preview Bible + + + + + &Show Live + &Show Live + + + + Import a Bible + + + + + Load a new Bible + + + + + Add a new Bible + + + + + Edit the selected Bible + + + + + Delete the selected Bible + + + + + Delete the selected Bibles + + + + + Preview the selected Bible + + + + + Preview the selected Bibles + + + + + Send the selected Bible live + + + + + Send the selected Bibles live + + + + + Add the selected Verse to the service + + + + + Add the selected Verses to the service + + + + + Bible + Bible + + + + Bibles + Bibles + BiblesPlugin.BibleDB @@ -554,112 +654,107 @@ Changes do not affect verses already in the service. BiblesPlugin.MediaItem - - Bible - Bible - - - + Quick Quick - + Advanced Advanced - + Version: Version: - + Dual: Dual: - + 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 - + Bible not fully loaded. @@ -675,7 +770,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 songs are. This plugin provides greater freedom over the songs plugin. @@ -701,102 +796,102 @@ Changes do not affect verses already in the service. CustomPlugin.EditCustomForm - + Edit Custom Slides Edit Custom Slides - + Move slide up one position. - + Move slide down one position. - + &Title: - + Add New Add New - + Add a new slide at bottom. - + Edit Edit - + Edit the selected slide. - + Edit All Edit All - + Edit all the slides at once. - + Save Save - + Save the slide currently being edited. - + Delete Delete - + Delete the selected slide. - + Clear Clear - + Clear edit area Clear edit area - + Split Slide - + Split a slide into two by inserting a slide splitter. - + The&me: - + &Credits: @@ -829,73 +924,226 @@ 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 delete. + + CustomsPlugin + + + &Edit Custom + + + + + &Delete Custom + + + + + &Preview Custom + + + + + &Show Live + &Show Live + + + + Import a Custom + + + + + Load a new Custom + + + + + Add a new Custom + + + + + Edit the selected Custom + + + + + Delete the selected Custom + + + + + Preview the selected Custom + + + + + Send the selected Custom live + + + + + Add the selected Custom to the service + + + + + Custom + Custom + + ImagePlugin - + <strong>Image Plugin</strong><br />The image plugin provides displaying of images.<br />One of the distinguishing features of this plugin is the ability to group a number of images together in the service manager, making the displaying of multiple images easier. This plugin can also make use of OpenLP's "timed looping" feature to create a slide show that runs automatically. In addition to this, images from the plugin can be used to override the current theme's background, which renders text-based items like songs with the selected image as a background instead of the background provided by the theme. + + + &Edit Image + + + + + &Delete Image + + + + + &Preview Image + + + + + &Show Live + &Show Live + + + + Import a Image + + + + + Load a new Image + + + + + Add a new Image + + + + + Edit the selected Image + + + + + Delete the selected Image + + + + + Delete the selected Images + + + + + Preview the selected Image + + + + + Preview the selected Images + + + + + Send the selected Image live + + + + + Send the selected Images live + + + + + Add the selected Image to the service + + + + + Add the selected Images to the service + + + + + Image + Image + + + + Images + Images + ImagePlugin.MediaItem - - Image - Image - - - + Select Image(s) Select Image(s) - + All Files - + Replace Live Background - + Replace Background - + + Reset Live Background + + + + You must select an image to delete. - + Image(s) Image(s) - + You must select an image to replace the background with. - + You must select a media file to replace the background with. @@ -903,35 +1151,100 @@ Changes do not affect verses already in the service. MediaPlugin - + <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. + + + &Edit Media + + + + + &Delete Media + + + + + &Preview Media + + + + + &Show Live + &Show Live + + + + Import a Media + + + + + Load a new Media + + + + + Add a new Media + + + + + Edit the selected Media + + + + + Delete the selected Media + + + + + Preview the selected Media + + + + + Send the selected Media live + + + + + Add the selected Media to the service + + + + + Media + Media + MediaPlugin.MediaItem - - Media - Media - - - + Select Media Select Media - + Replace Live Background - + Replace Background - + + Media + Media + + + You must select a media file to delete. @@ -939,7 +1252,7 @@ Changes do not affect verses already in the service. OpenLP - + Image Files @@ -1201,317 +1514,297 @@ This General Public License does not permit incorporating your program into prop OpenLP.AmendThemeForm - + Theme Maintenance Theme Maintenance - + Theme &name: - - &Visibility: - - - - - Opaque - Opaque - - - - Transparent - Transparent - - - + Type: Type: - + Solid Color Solid Color - + Gradient Gradient - + Image Image - + Image: Image: - + Gradient: - + Horizontal Horizontal - + Vertical Vertical - + Circular - + &Background - + Main Font Main Font - + Font: Font: - + Color: - + Size: Size: - + pt pt - - Wrap indentation: - - - - + Adjust line spacing: - + Normal Normal - + Bold Bold - + Italics Italics - + Bold/Italics Bold/Italics - + Style: - + Display Location Display Location - + Use default location - + X position: - + Y position: - + Width: Width: - + Height: Height: - + px px - + &Main Font - + Footer Font Footer Font - + &Footer Font - + Outline Outline - + Outline size: - + Outline color: - + Show outline: - + Shadow Shadow - + Shadow size: - + Shadow color: - + Show shadow: - + Alignment Alignment - + Horizontal align: - + Left Left - + Right Right - + Center Center - + Vertical align: - + Top Top - + Middle Middle - + Bottom Bottom - + Slide Transition Slide Transition - + Transition active - + &Other Options - + Preview Preview - + All Files - + Select Image - + First color: - + Second color: - + Slide height is %s rows. @@ -1660,7 +1953,7 @@ This General Public License does not permit incorporating your program into prop OpenLP.MainWindow - + OpenLP 2.0 OpenLP 2.0 @@ -1670,404 +1963,404 @@ This General Public License does not permit incorporating your program into prop English - + &File &File - + &Import &Import - + &Export &Export - + &View &View - + M&ode M&ode - + &Tools &Tools - + &Settings &Settings - + &Language &Language - + &Help &Help - + Media Manager Media Manager - + Service Manager Service Manager - + Theme Manager Theme Manager - + &New &New - + New Service New Service - + Create a new service. - + Ctrl+N Ctrl+N - + &Open &Open - + Open Service Open Service - + Open an existing service. - + Ctrl+O Ctrl+O - + &Save &Save - + Save Service Save Service - + Save the current service to disk. - + Ctrl+S Ctrl+S - + Save &As... Save &As... - + Save Service As Save Service As - + Save the current service under a new name. - + Ctrl+Shift+S - + E&xit E&xit - + Quit OpenLP Quit OpenLP - + Alt+F4 Alt+F4 - + &Theme &Theme - + &Configure OpenLP... - + &Media Manager &Media Manager - + Toggle Media Manager Toggle Media Manager - + Toggle the visibility of the media manager. - + F8 F8 - + &Theme Manager &Theme Manager - + Toggle Theme Manager Toggle Theme Manager - + Toggle the visibility of the theme manager. - + F10 F10 - + &Service Manager &Service Manager - + Toggle Service Manager Toggle Service Manager - + Toggle the visibility of the service manager. - + F9 F9 - + &Preview Panel &Preview Panel - + Toggle Preview Panel Toggle Preview Panel - + Toggle the visibility of the preview panel. - + F11 F11 - + &Live Panel - + Toggle Live Panel - + Toggle the visibility of the live panel. - + F12 F12 - + &Plugin List &Plugin List - + List the Plugins List the Plugins - + Alt+F7 Alt+F7 - + &User Guide &User Guide - + &About &About - + More information about OpenLP More information about OpenLP - + Ctrl+F1 Ctrl+F1 - + &Online Help &Online Help - + &Web Site &Web Site - + &Auto Detect - + Use the system language, if available. - + Set the interface language to %s - + Add &Tool... - + Add an application to the list of tools. - + &Default - + Set the view mode back to the default. - + &Setup - + Set the view mode to Setup. - + &Live &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 <a href="http://openlp.org/">http://openlp.org/</a>. +You can download the latest version from http://openlp.org/. - + OpenLP Version Updated OpenLP Version Updated - + OpenLP Main Display Blanked OpenLP Main Display Blanked - + The Main Display has been blanked out The Main Display has been blanked out - + Save Changes to Service? Save Changes to Service? - + Your service has changed. Do you want to save those changes? - + Default Theme: %s @@ -2075,157 +2368,117 @@ You can download the latest version from <a href="http://openlp.org/&quo 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 - Delete the selected item - - - + 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 the selected item(s) to the service - Add the selected item(s) to the service - - - + &Edit %s - + &Delete %s - + &Preview %s - + &Show Live &Show Live - + &Add to Service &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 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. @@ -2324,7 +2577,7 @@ You can download the latest version from <a href="http://openlp.org/&quo Create a new service - + Open Service Open Service @@ -2334,7 +2587,7 @@ You can download the latest version from <a href="http://openlp.org/&quo Load an existing service - + Save Service Save Service @@ -2444,48 +2697,48 @@ You can download the latest version from <a href="http://openlp.org/&quo &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? - + 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 @@ -2509,72 +2762,62 @@ The content encoding is not UTF-8. OpenLP.SlideController - + Live Live - + Preview Preview - - Move to first - Move to first - - - + Move to previous Move to previous - + Move to next Move to next - - Move to last - Move to last - - - + Hide - + Move to live Move to live - + Edit and re-preview Song Edit and re-preview Song - + 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 @@ -2584,10 +2827,23 @@ The content encoding is not UTF-8. Go to Verse + + OpenLP.SpellTextEdit + + + Spelling Suggestions + + + + + Formatting Tags + + + OpenLP.ThemeManager - + New Theme New Theme @@ -2657,7 +2913,7 @@ The content encoding is not UTF-8. - + %s (default) @@ -2682,7 +2938,7 @@ The content encoding is not UTF-8. - + Error Error @@ -2742,23 +2998,23 @@ 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. - + Theme Exists Theme Exists - + A theme with this name already exists. Would you like to overwrite it? @@ -2814,55 +3070,140 @@ The content encoding is not UTF-8. PresentationPlugin - + <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. + + + &Edit Presentation + + + + + &Delete Presentation + + + + + &Preview Presentation + + + + + &Show Live + &Show Live + + + + Import a Presentation + + + + + Load a new Presentation + + + + + Add a new Presentation + + + + + Edit the selected Presentation + + + + + Delete the selected Presentation + + + + + Delete the selected Presentations + + + + + Preview the selected Presentation + + + + + Preview the selected Presentations + + + + + Send the selected Presentation live + + + + + Send the selected Presentations live + + + + + Add the selected Presentation to the service + + + + + Add the selected Presentations to the service + + + + + Presentation + Presentation + + + + Presentations + Presentations + PresentationPlugin.MediaItem - - Presentation - Presentation - - - + Select Presentation(s) Select Presentation(s) - + Automatic - + Present using: Present using: - + File Exists - + A presentation with that filename already exists. A presentation with that filename already exists. - + Unsupported File - + This type of presentation is not supported - + You must select an item to delete. @@ -2893,10 +3234,20 @@ The content encoding is not UTF-8. RemotePlugin - + <strong>Remote Plugin</strong><br />The remote plugin provides the ability to send messages to a running version of OpenLP on a different computer via a web browser or through the remote API. + + + Remote + + + + + Remotes + Remotes + RemotePlugin.RemoteTab @@ -2924,45 +3275,55 @@ The content encoding is not UTF-8. SongUsagePlugin - + &Song Usage Tracking - + &Delete Tracking Data - + Delete song usage data up to a specified date. - + &Extract Tracking Data - + Generate a report on song usage. - + Toggle Tracking - + Toggle the tracking of song usage. - + <strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services. + + + SongUsage + + + + + Songs + Songs + SongUsagePlugin.SongUsageDeleteForm @@ -3013,20 +3374,110 @@ The content encoding is not UTF-8. SongsPlugin - + &Song &Song - + Import songs using the import wizard. - + <strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs. + + + &Edit Song + + + + + &Delete Song + + + + + &Preview Song + + + + + &Show Live + &Show Live + + + + Import a Song + + + + + Load a new Song + + + + + Add a new Song + + + + + Edit the selected Song + + + + + Delete the selected Song + + + + + Delete the selected Songs + + + + + Preview the selected Song + + + + + Preview the selected Songs + + + + + Send the selected Song live + + + + + Send the selected Songs live + + + + + Add the selected Song to the service + + + + + Add the selected Songs to the service + + + + + Song + Song + + + + Songs + Songs + SongsPlugin.AuthorsForm @@ -3074,232 +3525,237 @@ The content encoding is not UTF-8. SongsPlugin.EditSongForm - + Song Editor Song Editor - + &Title: - + Alt&ernate title: - + &Lyrics: - + &Verse order: - + &Add - + &Edit &Edit - + Ed&it All - + &Delete - + Title && Lyrics Title && Lyrics - + Authors Authors - + &Add to Song &Add to Song - + &Remove &Remove - + &Manage Authors, Topics, Song Books - + Topic Topic - + A&dd to Song A&dd to Song - + R&emove R&emove - + Song Book Song Book - - - Authors, Topics && Song Book - - - - - Theme - Theme - - New &Theme + Song No.: - Copyright Information - Copyright Information - - - - © + Authors, Topics && Song Book + Theme + Theme + + + + New &Theme + + + + + Copyright Information + Copyright Information + + + + © + + + + CCLI number: - + Comments Comments - + Theme, Copyright Info && Comments Theme, Copyright Info && Comments - + Save && Preview Save && Preview - + Add Author - + This author does not exist, do you want to add them? - + Error Error - + This author is already in the list. - + 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. - + Add Topic - + This topic does not exist, do you want to add it? - + This topic is already in the list. - + 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 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? - + Add Book - + This song book does not exist, do you want to add it? @@ -3307,17 +3763,17 @@ The content encoding is not UTF-8. SongsPlugin.EditVerseForm - + Edit Verse Edit Verse - + &Verse type: - + &Insert @@ -3325,232 +3781,237 @@ 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... 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 Import Source - + Select the import format, and where to import from. Select the import format, and where to import from. - + 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... - + Add Files... - + Remove File(s) - + Importing Importing - + Please wait while your songs are imported. - + Ready. Ready. - + %p% @@ -3558,82 +4019,77 @@ The content encoding is not UTF-8. 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: - + Type: Type: - + Clear Clear - + Search Search - + Titles - + Lyrics Lyrics - + Authors 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 Licence: @@ -3669,12 +4125,12 @@ The content encoding is not UTF-8. SongsPlugin.SongImport - + copyright - + © @@ -3682,12 +4138,12 @@ The content encoding is not UTF-8. SongsPlugin.SongImportForm - + Finished import. Finished import. - + Your song import failed. @@ -3730,112 +4186,112 @@ The content encoding is not UTF-8. - + Error Error - + 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. - + Delete Author Delete Author - + Are you sure you want to delete the selected author? - + This author cannot be deleted, they are currently assigned to at least one song. - + No author selected! - + 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. - + No topic selected! No topic selected! - + Delete Book Delete 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. - + No book selected! diff --git a/resources/i18n/openlp_en_ZA.ts b/resources/i18n/openlp_en_ZA.ts index 24faf3bc9..67a21d3ac 100644 --- a/resources/i18n/openlp_en_ZA.ts +++ b/resources/i18n/openlp_en_ZA.ts @@ -3,27 +3,37 @@ AlertsPlugin - + &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 <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of nursery alerts on the display screen + + + Alert + + + + + Alerts + Alerts + AlertsPlugin.AlertForm Alert Message - Alert Message + Alert Message @@ -38,7 +48,7 @@ &New - &New + &New @@ -79,7 +89,7 @@ AlertsPlugin.AlertsManager - + Alert message created and displayed. Alert message created and displayed. @@ -119,7 +129,7 @@ pt - pt + pt @@ -134,7 +144,7 @@ Location: - Location: + Location: @@ -154,7 +164,7 @@ Middle - Middle + Middle @@ -165,15 +175,105 @@ BiblesPlugin - + &Bible &Bible - + <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. + + + &Edit Bible + + + + + &Delete Bible + + + + + &Preview Bible + + + + + &Show Live + &Show Live + + + + Import a Bible + + + + + Load a new Bible + + + + + Add a new Bible + + + + + Edit the selected Bible + + + + + Delete the selected Bible + + + + + Delete the selected Bibles + + + + + Preview the selected Bible + + + + + Preview the selected Bibles + + + + + Send the selected Bible live + + + + + Send the selected Bibles live + + + + + Add the selected Verse to the service + + + + + Add the selected Verses to the service + + + + + Bible + Bible + + + + Bibles + Bibles + BiblesPlugin.BibleDB @@ -185,7 +285,7 @@ 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. + @@ -206,15 +306,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: - -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 - + @@ -222,17 +314,17 @@ 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 @@ -563,112 +655,107 @@ Changes do not affect verses already in the service. 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. @@ -684,7 +771,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 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. @@ -710,97 +797,97 @@ Changes do not affect verses already in the service. CustomPlugin.EditCustomForm - + Edit Custom Slides Edit Custom Slides - + Move slide down one position. Move slide down one position. - + &Title: &Title: - + Add New Add New - + Add a new slide at bottom. Add a new slide at bottom. - + Edit Edit - + Edit the selected slide. Edit the selected slide. - + Edit All Edit All - + Edit all the slides at once. Edit all the slides at once. - + Save Save - + Save the slide currently being edited. Save the slide currently being edited. - + Delete Delete - + Delete the selected slide. Delete the selected slide. - + Clear Clear - + 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: @@ -830,117 +917,335 @@ Changes do not affect verses already in the service. You have one or more unsaved slides, please either save your slide(s) or clear your changes. - + Move slide up one position. - + Move slide up one position. 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 + + + &Edit Custom + + + + + &Delete Custom + + + + + &Preview Custom + + + + + &Show Live + &Show Live + + + + Import a Custom + + + + + Load a new Custom + + + + + Add a new Custom + + + + + Edit the selected Custom + + + + + Delete the selected Custom + + + + + Preview the selected Custom + + + + + Send the selected Custom live + + + + + Add the selected Custom to the service + + + + + Custom + Custom + + ImagePlugin - + <strong>Image Plugin</strong><br />The image plugin provides displaying of images.<br />One of the distinguishing features of this plugin is the ability to group a number of images together in the service manager, making the displaying of multiple images easier. This plugin can also make use of OpenLP's "timed looping" feature to create a slide show that runs automatically. In addition to this, images from the plugin can be used to override the current theme's background, which renders text-based items like songs with the selected image as a background instead of the background provided by the theme. <strong>Image Plugin</strong><br />The image plugin provides displaying of images.<br />One of the distinguishing features of this plugin is the ability to group a number of images together in the service manager, making the displaying of multiple images easier. This plugin can also make use of OpenLP's "timed looping" feature to create a slide show that runs automatically. In addition to this, images from the plugin can be used to override the current theme's background, which renders text-based items like songs with the selected image as a background instead of the background provided by the theme. + + + &Edit Image + + + + + &Delete Image + + + + + &Preview Image + + + + + &Show Live + &Show Live + + + + Import a Image + + + + + Load a new Image + + + + + Add a new Image + + + + + Edit the selected Image + + + + + Delete the selected Image + + + + + Delete the selected Images + + + + + Preview the selected Image + + + + + Preview the selected Images + + + + + Send the selected Image live + + + + + Send the selected Images live + + + + + Add the selected Image to the service + + + + + Add the selected Images to the service + + + + + Image + Image + + + + Images + + 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 + MediaPlugin - + <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. + + + &Edit Media + + + + + &Delete Media + + + + + &Preview Media + + + + + &Show Live + &Show Live + + + + Import a Media + + + + + Load a new Media + + + + + Add a new Media + + + + + Edit the selected Media + + + + + Delete the selected Media + + + + + Preview the selected Media + + + + + Send the selected Media live + + + + + Add the selected Media to the service + + + + + Media + Media + 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. @@ -948,7 +1253,7 @@ Changes do not affect verses already in the service. OpenLP - + Image Files Image Files @@ -987,6 +1292,105 @@ OpenLP is written and maintained by volunteers. If you would like to see more fr Credits Credits + + + License + License + + + + Contribute + Contribute + + + + Close + Close + + + + build %s + build %s + + + + 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/ + + 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/ + + Copyright © 2004-2010 Raoul Snyman @@ -1120,236 +1524,7 @@ 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 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. - - - - License - License - - - - Contribute - Contribute - - - - Close - Close - - - - build %s - build %s - - - - 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/ - - 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/ - + @@ -1383,319 +1558,299 @@ Built With OpenLP.AmendThemeForm - + Theme Maintenance Theme Maintenance - + Theme &name: Theme &name: - - &Visibility: - &Visibility: - - - - Opaque - Opaque - - - - Transparent - Transparent - - - + Type: - Type: + Type: - + Solid Color - Solid Colour + Solid Colour - + Gradient - + Gradient - + Image - Image + Image - + Image: - + Image: - + Gradient: - + Gradient: - + Horizontal - Horizontal + Horizontal - + Vertical - Vertical + Vertical - + Circular - Circular + Circular - + &Background - + &Background - + Main Font - Main Font + Main Font - + Font: - + Font: - + Color: - + Color: - + Size: - + Size: - + pt - pt + pt - - Wrap indentation: - - - - + Adjust line spacing: - + Adjust line spacing: - + Normal - Normal + Normal - + Bold - Bold + Bold - + Italics - Italics + Italics - + Bold/Italics - + Bold/Italics - + Style: - + Style: - + Display Location - + Display Location - + Use default location - + Use default location - + X position: - + X position: - + Y position: - + Y position: - + Width: - Width: - - - - Height: - Height: - - - - px - px - - - - &Main Font - + Width: - Footer Font - Footer Font + Height: + Height: - + + px + px + + + + &Main Font + &Main Font + + + + Footer Font + Footer Font + + + &Footer Font - + &Footer Font + + + + Outline + Outline + + + + Outline size: + Outline size: + + + + Outline color: + Outline color: + + + + Show outline: + Show outline: + + + + Shadow + Shadow + + + + Shadow size: + Shadow size: + + + + Shadow color: + Shadow color: + + + + Show shadow: + Show shadow: + + + + Alignment + Alignment + + + + Horizontal align: + Horizontal align: + + + + Left + Left + + + + Right + Right + + + + Center + Centre - Outline - Outline + Vertical align: + Vertical align: - Outline size: - + Top + Top + + + + Middle + Middle - Outline color: - + Bottom + Bottom - Show outline: - + Slide Transition + Slide Transition - Shadow - Shadow + Transition active + Transition active - Shadow size: - - - - - Shadow color: - - - - - Show shadow: - - - - - Alignment - Alignment - - - - Horizontal align: - - - - - Left - - - - - Right - Right - - - - Center - Centre - - - - Vertical align: - - - - - Top - Top - - - - Middle - Middle - - - - Bottom - Bottom - - - - Slide Transition - Slide Transition - - - - Transition active - - - - &Other Options - + &Other Options - + Preview - Preview + Preview - + All Files - All Files + All Files - + Select Image - + Select Image - + First color: - + First color: - + Second color: - + Second color: - + Slide height is %s rows. - + Slide height is %s rows. @@ -1703,127 +1858,127 @@ Built With General - + General 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 Application Settings - Application Settings + Application Settings 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 primary - primary + primary 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 @@ -1831,585 +1986,547 @@ Built With Language - + Language Please restart OpenLP to use your new language setting. - + Please restart OpenLP to use your new language setting. OpenLP.MainWindow - + OpenLP 2.0 - OpenLP 2.0 + OpenLP 2.0 English - English - - - - &File - &File - - - - &Import - &Import + English - &Export - &Export + &File + &File - &View - &View + &Import + &Import - M&ode - + &Export + &Export - &Tools - + &View + &View + M&ode + M&ode + + + + &Tools + &Tools + + + &Settings - &Settings - - - - &Language - - - - - &Help - - - - - Media Manager - Media Manager - - - - Service Manager - Service Manager - - - - Theme Manager - - - - - &New - &New - - - - New Service - - - - - Create a new service. - - - - - Ctrl+N - Ctrl+N - - - - &Open - &Open - - - - Open Service - Open Service - - - - Open an existing service. - - - - - Ctrl+O - Ctrl+O - - - - &Save - &Save - - - - Save Service - - - - - Save the current service to disk. - - - - - Ctrl+S - Ctrl+S - - - - Save &As... - - - - - Save Service As - - - - - Save the current service under a new name. - - - - - Ctrl+Shift+S - - - - - E&xit - - - - - Quit OpenLP - Quit OpenLP - - - - Alt+F4 - Alt+F4 - - - - &Theme - + &Settings - &Configure OpenLP... - + &Language + &Language + + + + &Help + &Help + + + + Media Manager + Media Manager + + + + Service Manager + Service Manager + + + + Theme Manager + Theme Manager + + + + &New + &New + + + + New Service + New Service + + + + Create a new service. + Create a new service. + + + + Ctrl+N + Ctrl+N + + + + &Open + &Open + + + + Open Service + Open Service + + + + Open an existing service. + Open an existing service. + + + + Ctrl+O + Ctrl+O + + + + &Save + &Save + + + + Save Service + Save Service + + + + Save the current service to disk. + Save the current service to disk. + + + + Ctrl+S + Ctrl+S + + + + Save &As... + Save &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 + + + + Quit OpenLP + Quit OpenLP + + + + Alt+F4 + Alt+F4 + + + + &Theme + &Theme - &Media Manager - + &Configure OpenLP... + &Configure OpenLP... - Toggle Media Manager - + &Media Manager + &Media Manager - Toggle the visibility of the media manager. - + Toggle Media Manager + Toggle Media Manager - F8 - F8 + Toggle the visibility of the media manager. + Toggle the visibility of the media manager. - &Theme Manager - + F8 + F8 - Toggle Theme Manager - Toggle Theme Manager + &Theme Manager + &Theme Manager - Toggle the visibility of the theme manager. - + Toggle Theme Manager + Toggle Theme Manager - F10 - + Toggle the visibility of the theme manager. + Toggle the visibility of the theme manager. - &Service Manager - &Service Manager + F10 + F10 - Toggle Service Manager - Toggle Service Manager. + &Service Manager + &Service Manager - Toggle the visibility of the service manager. - + Toggle Service Manager + Toggle Service Manager. - F9 - F9 + Toggle the visibility of the service manager. + Toggle the visibility of the service manager. - &Preview Panel - &Preview Panel + F9 + F9 - Toggle Preview Panel - Toggle Preview Panel + &Preview Panel + &Preview Panel - Toggle the visibility of the preview panel. - + Toggle Preview Panel + Toggle Preview Panel - F11 - + Toggle the visibility of the preview panel. + Toggle the visibility of the preview panel. - &Live Panel - + F11 + F11 - Toggle Live Panel - + &Live Panel + &Live Panel - Toggle the visibility of the live panel. - + Toggle Live Panel + Toggle Live Panel - F12 - + Toggle the visibility of the live panel. + Toggle the visibility of the live panel. - &Plugin List - + F12 + F12 - List the Plugins - List the plugins + &Plugin List + &Plugin List - Alt+F7 - Alt+F7 + List the Plugins + List the Plugins - &User Guide - &User Guide + Alt+F7 + Alt+F7 - &About - + &User Guide + &User Guide - - More information about OpenLP - + + &About + &About - Ctrl+F1 - Ctrl+F1 + More information about OpenLP + More information about OpenLP - &Online Help - + Ctrl+F1 + Ctrl+F1 - &Web Site - + &Online Help + &Online Help - &Auto Detect - + &Web Site + &Web Site - Use the system language, if available. - + &Auto Detect + &Auto Detect - - Set the interface language to %s - + + Use the system language, if available. + Use the system language, if available. - Add &Tool... - + Set the interface language to %s + Set the interface language to %s - Add an application to the list of tools. - + Add &Tool... + Add &Tool... - - &Default - + + 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. - + + OpenLP Version Updated + OpenLP Version Updated + + + + OpenLP Main Display Blanked + OpenLP Main Display Blanked + + + + The Main Display has been blanked out + The Main Display has been blanked out + + + + 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 + + + Version %s of OpenLP is now available for download (you are currently running version %s). -You can download the latest version from <a href="http://openlp.org/">http://openlp.org/</a>. - - - - - OpenLP Version Updated - OpenLP Version Updated - - - - 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? - - - - - Default Theme: %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.MediaManagerItem - + No Items Selected - + No Items Selected - + Import %s - + Import %s - - Import a %s - - - - + Load %s - + Load %s - - Load a new %s - - - - + New %s - + New %s - - Add a new %s - - - - + Edit %s - + Edit %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 - - - - - 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 + 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. @@ -2417,56 +2534,56 @@ You can download the latest version from <a href="http://openlp.org/&quo Plugin List - + Plugin List Plugin Details - Plugin Details + Plugin Details Version: - Version: - - - - TextLabel - + Version: About: - + About: Status: - Status: + Status: Active - Active + Active Inactive - + Inactive %s (Inactive) - + %s (Inactive) %s (Active) - + %s (Active) %s (Disabled) + %s (Disabled) + + + + TextLabel @@ -2475,22 +2592,22 @@ You can download the latest version from <a href="http://openlp.org/&quo Reorder Service Item - + Reorder Service Item Up - + Up Delete - Delete + Delete Down - + Down @@ -2498,178 +2615,179 @@ You can download the latest version from <a href="http://openlp.org/&quo 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 - + 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 &Reorder Item - + &Reorder Item &Notes - + &Notes &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 @@ -2677,7 +2795,7 @@ The content encoding is not UTF-8. Service Item Notes - Service Item Notes + Service Item Notes @@ -2685,262 +2803,266 @@ The content encoding is not UTF-8. Configure OpenLP - + Configure OpenLP OpenLP.SlideController - + Live - Live + Live - + Preview - Preview + Preview - - Move to first - - - - + Move to previous - Move to previous + Move to previous + + + + Move to next + Move to next - Move to next - Move to next slide. - - - - Move to last - Move to last - - - Hide - + Hide - + Move to live - Move to live + Move to live - - Edit and re-preview Song - Edit and re-preview Song. - - - + Start continuous loop - Start continuous loop + Start continuous loop + + + + Stop continuous loop + Stop continuous loop + + + + s + s - Stop continuous loop - - - - - 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 + + + + Edit and re-preview Song + Go to Verse - Go to Verse + + + + + OpenLP.SpellTextEdit + + + Spelling Suggestions + Spelling Suggestions + + + + Formatting Tags + Formatting Tags OpenLP.ThemeManager - + 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. - + 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. - + 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 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? @@ -2950,103 +3072,188 @@ 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. PresentationPlugin - + <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. + <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. + + + + &Edit Presentation + + + &Delete Presentation + + + + + &Preview Presentation + + + + + &Show Live + &Show Live + + + + Import a Presentation + + + + + Load a new Presentation + + + + + Add a new Presentation + + + + + Edit the selected Presentation + + + + + Delete the selected Presentation + + + + + Delete the selected Presentations + + + + + Preview the selected Presentation + + + + + Preview the selected Presentations + + + + + Send the selected Presentation live + + + + + Send the selected Presentations live + + + + + Add the selected Presentation to the service + + + + + Add the selected Presentations to the service + + + + + Presentation + Presentation + + + + Presentations + Presentations + PresentationPlugin.MediaItem - - Presentation - Presentation - - - + 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. - + Unsupported File - + Unsupported File - + This type of presentation is not supported - + You must select an item to delete. - + You must select an item to delete. @@ -3054,95 +3261,115 @@ The content encoding is not UTF-8. Presentations - + Presentations Available Controllers - Available Controllers + Available Controllers Advanced - Advanced + Advanced Allow presentation application to be overriden - + Allow presentation application to be overriden RemotePlugin - + <strong>Remote Plugin</strong><br />The remote plugin provides the ability to send messages to a running version of OpenLP on a different computer via a web browser or through the remote API. + <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 Remotes - Remotes + Remotes Serve on IP address: - + Serve on IP address: Port number: - + Port number: Server Settings - + Server Settings SongUsagePlugin - + &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. + <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. + + Songs @@ -3151,17 +3378,17 @@ The content encoding is not UTF-8. 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? Delete Song Usage Data - + Delete Song Usage Data @@ -3169,44 +3396,134 @@ The content encoding is not UTF-8. Output File Location - Output File Location + Output File Location Song Usage Extraction - + Song Usage Extraction Select Date Range - + Select Date Range to - + to Report Location - Report Location + Report Location SongsPlugin - + &Song &Song - + Import songs using the import wizard. + Import songs using the import wizard. + + + + <strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs. + <strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs. + + + + &Edit Song - - <strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs. + + &Delete Song + + + + + &Preview Song + + + + + &Show Live + &Show Live + + + + Import a Song + + + + + Load a new Song + + + + + Add a new Song + + + + + Edit the selected Song + + + + + Delete the selected Song + + + + + Delete the selected Songs + + + + + Preview the selected Song + + + + + Preview the selected Songs + + + + + Send the selected Song live + + + + + Send the selected Songs live + + + + + Add the selected Song to the service + + + + + Add the selected Songs to the service + + + + + Song + Song + + + + Songs @@ -3215,291 +3532,296 @@ The content encoding is not UTF-8. Author Maintenance - Author Maintenance + Author Maintenance 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 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? SongsPlugin.EditSongForm - - - Song Editor - Song Editor - - - - &Title: - &Title: - - &Lyrics: - + Song Editor + Song Editor - - &Add - + + &Title: + &Title: - &Edit - - - - - Ed&it All - + &Lyrics: + &Lyrics: - &Delete - &Delete + &Add + &Add + &Edit + &Edit + + + + Ed&it All + Ed&it All + + + + &Delete + &Delete + + + Title && Lyrics - Title && Lyrics - - - - Authors - Authors - - - - &Add to Song - - - - - &Remove - &Remove + Title && Lyrics - &Manage Authors, Topics, Song Books - + Authors + Authors - Topic - Topic + &Add to Song + &Add to Song - A&dd to Song - + &Remove + &Remove - R&emove - + &Manage Authors, Topics, Song Books + &Manage Authors, Topics, Song Books - Song Book - + Topic + Topic - Authors, Topics && Song Book - + A&dd to Song + A&dd to Song + + + + R&emove + R&emove - Theme - Theme - - - - New &Theme - + Song Book + Song Book - Copyright Information - Copyright Information + Authors, Topics && Song Book + Authors, Topics && Song Book - - © - + + Theme + Theme + New &Theme + New &Theme + + + + Copyright Information + Copyright Information + + + + © + © + + + Comments - + Theme, Copyright Info && Comments - + Save && Preview Save && Preview - + Add Author - + This author does not exist, do you want to add them? - + Error Error - + This author is already in the list. - + 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. - + Add Topic - + This topic does not exist, do you want to add it? - + This topic is already in the list. - + 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 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? - + Add Book - + This song book does not exist, do you want to add it? - + Alt&ernate title: - + &Verse order: - + CCLI number: + CCLI number: + + + + Song No.: SongsPlugin.EditVerseForm - + Edit Verse Edit Verse - + &Verse type: - + &Insert @@ -3507,315 +3829,315 @@ The content encoding is not UTF-8. 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... 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 Import Source - + Select the import format, and where to import from. Select the import format, and where to import from. - + Format: Format: - + OpenLyrics - + OpenSong OpenSong - + Add Files... - + Remove File(s) - + Filename: - + Browse... - + Importing Importing - + Please wait while your songs are imported. - + Ready. Ready. - + %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 Songs of Fellowship Files - + Select Document/Presentation Files - + OpenLP 2.0 OpenLP 2.0 - + openlp.org 1.x - + Words of Worship - + CCLI/SongSelect - + Songs of Fellowship - + Generic Document/Presentation + + + Select CCLI Files + + SongsPlugin.MediaItem - - Song - Song - - - + Song Maintenance - + Maintain the lists of authors, topics and books Maintain the lists of authors, topics and books - + Search: Search: - + Type: Type: - + Clear Clear - + Search Search - + Titles Titles - + Lyrics Lyrics - + Authors Authors - + You must select an item to edit. - + You must select an item to delete. - + You must select an item to delete. - + CCLI Licence: CCLI License: - + Are you sure you want to delete the selected song? - + Are you sure you want to delete the %d selected songs? - + Delete Song(s)? @@ -3851,25 +4173,25 @@ The content encoding is not UTF-8. SongsPlugin.SongImport - + copyright - + © - + © SongsPlugin.SongImportForm - + Finished import. Finished import. - + Your song import failed. @@ -3899,12 +4221,12 @@ The content encoding is not UTF-8. &Add - + &Add &Edit - + &Edit @@ -3912,112 +4234,112 @@ The content encoding is not UTF-8. &Delete - + Error Error - + 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. - + 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. - + No author selected! No author selected! - + Delete Topic Delete Topic - + Are you sure you want to delete the selected topic? - + This topic cannot be deleted, it is currently assigned to at least one song. - + No topic selected! - + Delete Book Delete 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. - + No book selected! No book selected! diff --git a/resources/i18n/openlp_es.ts b/resources/i18n/openlp_es.ts index 93d04b1c4..11358db65 100644 --- a/resources/i18n/openlp_es.ts +++ b/resources/i18n/openlp_es.ts @@ -3,20 +3,30 @@ AlertsPlugin - + &Alert &Alerta - + Show an alert message. - + <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of nursery alerts on the display screen + + + Alert + + + + + Alerts + Alertas + AlertsPlugin.AlertForm @@ -79,7 +89,7 @@ AlertsPlugin.AlertsManager - + Alert message created and displayed. @@ -165,15 +175,105 @@ BiblesPlugin - + &Bible &Biblia - + <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display bible verses from different sources during the service. + + + &Edit Bible + + + + + &Delete Bible + + + + + &Preview Bible + + + + + &Show Live + Mo&star En Vivo + + + + Import a Bible + + + + + Load a new Bible + + + + + Add a new Bible + + + + + Edit the selected Bible + + + + + Delete the selected Bible + + + + + Delete the selected Bibles + + + + + Preview the selected Bible + + + + + Preview the selected Bibles + + + + + Send the selected Bible live + + + + + Send the selected Bibles live + + + + + Add the selected Verse to the service + + + + + Add the selected Verses to the service + + + + + Bible + Biblia + + + + Bibles + Biblias + BiblesPlugin.BibleDB @@ -554,112 +654,107 @@ Changes do not affect verses already in the service. 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. @@ -675,7 +770,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 songs are. This plugin provides greater freedom over the songs plugin. @@ -701,102 +796,102 @@ Changes do not affect verses already in the service. CustomPlugin.EditCustomForm - + Edit Custom Slides Editar Diapositivas Personalizadas - + Move slide up one position. - + Move slide down one position. - + &Title: - + Add New Agregar Nueva - + Add a new slide at bottom. - + Edit Editar - + Edit the selected slide. - + Edit All Editar Todo - + Edit all the slides at once. - + Save Guardar - + Save the slide currently being edited. - + Delete Eliminar - + Delete the selected slide. - + Clear Limpiar - + Clear edit area Limpiar el área de edición - + Split Slide - + Split a slide into two by inserting a slide splitter. - + The&me: - + &Credits: @@ -829,73 +924,226 @@ Changes do not affect verses already in the service. CustomPlugin.MediaItem - - Custom - - - - + You haven't selected an item to edit. - + You haven't selected an item to delete. + + CustomsPlugin + + + &Edit Custom + + + + + &Delete Custom + + + + + &Preview Custom + + + + + &Show Live + Mo&star En Vivo + + + + Import a Custom + + + + + Load a new Custom + + + + + Add a new Custom + + + + + Edit the selected Custom + + + + + Delete the selected Custom + + + + + Preview the selected Custom + + + + + Send the selected Custom live + + + + + Add the selected Custom to the service + + + + + Custom + + + ImagePlugin - + <strong>Image Plugin</strong><br />The image plugin provides displaying of images.<br />One of the distinguishing features of this plugin is the ability to group a number of images together in the service manager, making the displaying of multiple images easier. This plugin can also make use of OpenLP's "timed looping" feature to create a slide show that runs automatically. In addition to this, images from the plugin can be used to override the current theme's background, which renders text-based items like songs with the selected image as a background instead of the background provided by the theme. + + + &Edit Image + + + + + &Delete Image + + + + + &Preview Image + + + + + &Show Live + Mo&star En Vivo + + + + Import a Image + + + + + Load a new Image + + + + + Add a new Image + + + + + Edit the selected Image + + + + + Delete the selected Image + + + + + Delete the selected Images + + + + + Preview the selected Image + + + + + Preview the selected Images + + + + + Send the selected Image live + + + + + Send the selected Images live + + + + + Add the selected Image to the service + + + + + Add the selected Images to the service + + + + + Image + Imagen + + + + Images + Imágenes + 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. @@ -903,35 +1151,100 @@ Changes do not affect verses already in the service. MediaPlugin - + <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. + + + &Edit Media + + + + + &Delete Media + + + + + &Preview Media + + + + + &Show Live + Mo&star En Vivo + + + + Import a Media + + + + + Load a new Media + + + + + Add a new Media + + + + + Edit the selected Media + + + + + Delete the selected Media + + + + + Preview the selected Media + + + + + Send the selected Media live + + + + + Add the selected Media to the service + + + + + Media + Medios + MediaPlugin.MediaItem - - Media - Medios - - - + Select Media Seleccionar Medios - + Replace Live Background - + Replace Background - + + Media + Medios + + + You must select a media file to delete. @@ -939,7 +1252,7 @@ Changes do not affect verses already in the service. OpenLP - + Image Files @@ -1201,317 +1514,297 @@ This General Public License does not permit incorporating your program into prop OpenLP.AmendThemeForm - + Theme Maintenance Mantenimiento de Temas - + Theme &name: - - &Visibility: - - - - - Opaque - Opaco - - - - Transparent - Transparente - - - + Type: Tipo: - + Solid Color Color Sólido - + Gradient Gradiente - + Image Imagen - + Image: Imagen: - + Gradient: - + Horizontal Horizontal - + Vertical Vertical - + Circular Circular - + &Background - + Main Font Tipo de Letra Principal - + Font: Fuente: - + Color: - + Size: Tamaño: - + pt pt - - Wrap indentation: - - - - + Adjust line spacing: - + Normal Normal - + Bold Negrita - + Italics Cursiva - + Bold/Italics Negrita/Cursiva - + Style: - + Display Location Ubicación en la pantalla - + Use default location - + X position: - + Y position: - + Width: Ancho: - + Height: Altura: - + px px - + &Main Font - + Footer Font Fuente de Pie de Página - + &Footer Font - + Outline Contorno - + Outline size: - + Outline color: - + Show outline: - + Shadow Sombra - + Shadow size: - + Shadow color: - + Show shadow: - + Alignment Alineación - + Horizontal align: - + Left Izquierda - + Right Derecha - + Center Centro - + Vertical align: - + Top - + Middle Medio - + Bottom - + Slide Transition Transición de Diapositiva - + Transition active - + &Other Options - + Preview Vista Previa - + All Files - + Select Image - + First color: - + Second color: - + Slide height is %s rows. @@ -1660,7 +1953,7 @@ This General Public License does not permit incorporating your program into prop OpenLP.MainWindow - + OpenLP 2.0 OpenLP 2.0 @@ -1670,404 +1963,404 @@ This General Public License does not permit incorporating your program into prop Ingles - + &File &Archivo - + &Import &Importar - + &Export &Exportar - + &View &Ver - + M&ode M&odo - + &Tools &Herramientas - + &Settings &Preferencias - + &Language &Idioma - + &Help &Ayuda - + Media Manager Gestor de Medios - + Service Manager Gestor de Servicio - + Theme Manager Gestor de Temas - + &New &Nuevo - + New Service Servicio Nuevo - + Create a new service. - + Ctrl+N Ctrl+N - + &Open &Abrir - + Open Service Abrir Servicio - + Open an existing service. - + Ctrl+O Ctrl+O - + &Save &Guardar - + Save Service Guardar Servicio - + Save the current service to disk. - + Ctrl+S Crtl+G - + Save &As... Guardar &Como... - + Save Service As Guardar Servicio Como - + Save the current service under a new name. - + Ctrl+Shift+S - + E&xit &Salir - + Quit OpenLP Salir de OpenLP - + Alt+F4 Alt+F4 - + &Theme &Tema - + &Configure OpenLP... - + &Media Manager Gestor de &Medios - + Toggle Media Manager Alternar Gestor de Medios - + Toggle the visibility of the media manager. - + F8 F8 - + &Theme Manager Gestor de &Temas - + Toggle Theme Manager Alternar Gestor de Temas - + Toggle the visibility of the theme manager. - + F10 F10 - + &Service Manager Gestor de &Servicio - + Toggle Service Manager Alternar Gestor de Servicio - + Toggle the visibility of the service manager. - + F9 F9 - + &Preview Panel &Panel de Vista Previa - + Toggle Preview Panel Alternar Panel de Vista Previa - + Toggle the visibility of the preview panel. - + F11 F11 - + &Live Panel - + Toggle Live Panel - + Toggle the visibility of the live panel. - + F12 F12 - + &Plugin List Lista de &Plugins - + List the Plugins Lista de Plugins - + Alt+F7 Alt+F7 - + &User Guide Guía de &Usuario - + &About &Acerca De - + More information about OpenLP Más información acerca de OpenLP - + Ctrl+F1 Ctrl+F1 - + &Online Help &Ayuda En Línea - + &Web Site Sitio &Web - + &Auto Detect - + Use the system language, if available. - + Set the interface language to %s - + Add &Tool... - + Add an application to the list of tools. - + &Default - + Set the view mode back to the default. - + &Setup - + Set the view mode to Setup. - + &Live En &vivo - + 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 <a href="http://openlp.org/">http://openlp.org/</a>. +You can download the latest version from http://openlp.org/. - + OpenLP Version Updated Versión de OpenLP Actualizada - + OpenLP Main Display Blanked Pantalla Principal de OpenLP en Blanco - + The Main Display has been blanked out La Pantalla Principal esta en negro - + Save Changes to Service? - + Your service has changed. Do you want to save those changes? - + Default Theme: %s @@ -2075,157 +2368,117 @@ You can download the latest version from <a href="http://openlp.org/&quo 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. @@ -2324,7 +2577,7 @@ You can download the latest version from <a href="http://openlp.org/&quo Crear un servicio nuevo - + Open Service Abrir Servicio @@ -2334,7 +2587,7 @@ You can download the latest version from <a href="http://openlp.org/&quo Abrir un servicio existente - + Save Service Guardar Servicio @@ -2444,48 +2697,48 @@ You can download the latest version from <a href="http://openlp.org/&quo &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 @@ -2509,72 +2762,62 @@ The content encoding is not UTF-8. OpenLP.SlideController - + Live En vivo - + Preview Vista Previa - - Move to first - Ir al principio - - - + Move to previous Regresar al anterior - + Move to next Ir al siguiente - - Move to last - Mover al final - - - + Hide - + Move to live Proyectar en vivo - + Edit and re-preview Song Editar y re-visualizar Canción - + 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 @@ -2584,10 +2827,23 @@ The content encoding is not UTF-8. Ir al Verso + + OpenLP.SpellTextEdit + + + Spelling Suggestions + + + + + Formatting Tags + + + OpenLP.ThemeManager - + New Theme Tema Nuevo @@ -2657,7 +2913,7 @@ The content encoding is not UTF-8. - + %s (default) @@ -2682,7 +2938,7 @@ The content encoding is not UTF-8. - + Error Error @@ -2742,23 +2998,23 @@ 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. - + Theme Exists Ya existe el Tema - + A theme with this name already exists. Would you like to overwrite it? @@ -2814,55 +3070,140 @@ The content encoding is not UTF-8. PresentationPlugin - + <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. + + + &Edit Presentation + + + + + &Delete Presentation + + + + + &Preview Presentation + + + + + &Show Live + Mo&star En Vivo + + + + Import a Presentation + + + + + Load a new Presentation + + + + + Add a new Presentation + + + + + Edit the selected Presentation + + + + + Delete the selected Presentation + + + + + Delete the selected Presentations + + + + + Preview the selected Presentation + + + + + Preview the selected Presentations + + + + + Send the selected Presentation live + + + + + Send the selected Presentations live + + + + + Add the selected Presentation to the service + + + + + Add the selected Presentations to the service + + + + + Presentation + Presentación + + + + Presentations + Presentaciones + 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. @@ -2893,10 +3234,20 @@ The content encoding is not UTF-8. RemotePlugin - + <strong>Remote Plugin</strong><br />The remote plugin provides the ability to send messages to a running version of OpenLP on a different computer via a web browser or through the remote API. + + + Remote + + + + + Remotes + Remotas + RemotePlugin.RemoteTab @@ -2924,45 +3275,55 @@ The content encoding is not UTF-8. SongUsagePlugin - + &Song Usage Tracking - + &Delete Tracking Data - + Delete song usage data up to a specified date. - + &Extract Tracking Data - + Generate a report on song usage. - + Toggle Tracking - + Toggle the tracking of song usage. - + <strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services. + + + SongUsage + + + + + Songs + Canciones + SongUsagePlugin.SongUsageDeleteForm @@ -3013,20 +3374,110 @@ The content encoding is not UTF-8. SongsPlugin - + &Song &Canción - + Import songs using the import wizard. - + <strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs. + + + &Edit Song + + + + + &Delete Song + + + + + &Preview Song + + + + + &Show Live + Mo&star En Vivo + + + + Import a Song + + + + + Load a new Song + + + + + Add a new Song + + + + + Edit the selected Song + + + + + Delete the selected Song + + + + + Delete the selected Songs + + + + + Preview the selected Song + + + + + Preview the selected Songs + + + + + Send the selected Song live + + + + + Send the selected Songs live + + + + + Add the selected Song to the service + + + + + Add the selected Songs to the service + + + + + Song + Canción + + + + Songs + Canciones + SongsPlugin.AuthorsForm @@ -3074,232 +3525,237 @@ The content encoding is not UTF-8. SongsPlugin.EditSongForm - + Song Editor Editor de Canción - + &Title: - + Alt&ernate title: - + &Lyrics: - + &Verse order: - + &Add - + &Edit &Editar - + Ed&it All - + &Delete - + Title && Lyrics Título && Letra - + Authors Autores - + &Add to Song &Agregar a Canción - + &Remove &Quitar - + &Manage Authors, Topics, Song Books - + Topic Categoría - + A&dd to Song A&gregar a Canción - + R&emove &Quitar - + Song Book Himnario - - - Authors, Topics && Song Book - - - - - Theme - Tema - - New &Theme + Song No.: - Copyright Information - Información de Derechos de Autor - - - - © + Authors, Topics && Song Book + Theme + Tema + + + + New &Theme + + + + + Copyright Information + Información de Derechos de Autor + + + + © + + + + CCLI number: - + Comments Comentarios - + Theme, Copyright Info && Comments Tema, Derechos de Autor && Comentarios - + Save && Preview Guardar && Vista Previa - + Add Author - + This author does not exist, do you want to add them? - + Error Error - + This author is already in the list. - + 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. - + Add Topic - + This topic does not exist, do you want to add it? - + This topic is already in the list. - + 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 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? - + Add Book - + This song book does not exist, do you want to add it? @@ -3307,17 +3763,17 @@ The content encoding is not UTF-8. SongsPlugin.EditVerseForm - + Edit Verse Editar Verso - + &Verse type: - + &Insert @@ -3325,232 +3781,237 @@ 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... - + Add Files... - + Remove File(s) - + Importing Importando - + Please wait while your songs are imported. - + Ready. Listo. - + %p% @@ -3558,82 +4019,77 @@ The content encoding is not UTF-8. 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: @@ -3669,12 +4125,12 @@ The content encoding is not UTF-8. SongsPlugin.SongImport - + copyright - + © @@ -3682,12 +4138,12 @@ The content encoding is not UTF-8. SongsPlugin.SongImportForm - + Finished import. Importación finalizada. - + Your song import failed. @@ -3730,112 +4186,112 @@ The content encoding is not UTF-8. - + Error Error - + 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. - + Delete Author Borrar Autor - + Are you sure you want to delete the selected author? ¿Está seguro que desea eliminar el autor seleccionado? - + This author cannot be deleted, they are currently assigned to at least one song. - + No author selected! ¡Ningún autor seleccionado! - + Delete Topic Borrar Categoría - + Are you sure you want to delete the selected topic? ¿Está seguro que desea eliminar la categoría seleccionada? - + This topic cannot be deleted, it is currently assigned to at least one song. - + No topic selected! ¡No seleccionó la categoría! - + Delete Book Eliminar Libro - + Are you sure you want to delete the selected book? ¿Está seguro de que quiere eliminar el libro seleccionado? - + This book cannot be deleted, it is currently assigned to at least one song. - + No book selected! ¡Ningún libro seleccionado! diff --git a/resources/i18n/openlp_et.ts b/resources/i18n/openlp_et.ts index d37314bdb..adc325c99 100644 --- a/resources/i18n/openlp_et.ts +++ b/resources/i18n/openlp_et.ts @@ -3,20 +3,30 @@ AlertsPlugin - + &Alert - + Show an alert message. - + <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of nursery alerts on the display screen + + + Alert + + + + + Alerts + + AlertsPlugin.AlertForm @@ -79,7 +89,7 @@ AlertsPlugin.AlertsManager - + Alert message created and displayed. @@ -165,15 +175,105 @@ BiblesPlugin - + &Bible - + <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display bible verses from different sources during the service. + + + &Edit Bible + + + + + &Delete Bible + + + + + &Preview Bible + + + + + &Show Live + + + + + Import a Bible + + + + + Load a new Bible + + + + + Add a new Bible + + + + + Edit the selected Bible + + + + + Delete the selected Bible + + + + + Delete the selected Bibles + + + + + Preview the selected Bible + + + + + Preview the selected Bibles + + + + + Send the selected Bible live + + + + + Send the selected Bibles live + + + + + Add the selected Verse to the service + + + + + Add the selected Verses to the service + + + + + Bible + + + + + Bibles + + BiblesPlugin.BibleDB @@ -554,112 +654,107 @@ Changes do not affect verses already in the service. BiblesPlugin.MediaItem - - Bible - - - - + Quick - + Advanced - + Version: Versioon: - + Dual: - + Find: - + Search - + Results: - + Book: - + Chapter: - + Verse: - + From: - + To: - + Verse Search - + Text Search - + Clear - + Keep - + No Book Found - + etc - + No matching book could be found in this Bible. - + Search type: - + Bible not fully loaded. @@ -675,7 +770,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 songs are. This plugin provides greater freedom over the songs plugin. @@ -701,47 +796,47 @@ Changes do not affect verses already in the service. CustomPlugin.EditCustomForm - + Edit Custom Slides Kohandatud slaidide muutmine - + Add New Uue lisamine - + Edit Muuda - + Edit All Kõigi muutmine - + Save Salvesta - + Delete Kustuta - + Clear Puhasta - + Clear edit area Muutmise ala puhastamine - + Split Slide Tükelda slaid @@ -756,52 +851,52 @@ Changes do not affect verses already in the service. Viga - + Move slide down one position. - + &Title: - + Add a new slide at bottom. - + Edit the selected slide. - + Edit all the slides at once. - + Save the slide currently being edited. - + Delete the selected slide. - + Split a slide into two by inserting a slide splitter. - + The&me: - + &Credits: @@ -821,7 +916,7 @@ Changes do not affect verses already in the service. - + Move slide up one position. @@ -829,109 +924,327 @@ Changes do not affect verses already in the service. CustomPlugin.MediaItem - - Custom - - - - + You haven't selected an item to edit. - + You haven't selected an item to delete. + + CustomsPlugin + + + &Edit Custom + + + + + &Delete Custom + + + + + &Preview Custom + + + + + &Show Live + + + + + Import a Custom + + + + + Load a new Custom + + + + + Add a new Custom + + + + + Edit the selected Custom + + + + + Delete the selected Custom + + + + + Preview the selected Custom + + + + + Send the selected Custom live + + + + + Add the selected Custom to the service + + + + + Custom + + + ImagePlugin - + <strong>Image Plugin</strong><br />The image plugin provides displaying of images.<br />One of the distinguishing features of this plugin is the ability to group a number of images together in the service manager, making the displaying of multiple images easier. This plugin can also make use of OpenLP's "timed looping" feature to create a slide show that runs automatically. In addition to this, images from the plugin can be used to override the current theme's background, which renders text-based items like songs with the selected image as a background instead of the background provided by the theme. + + + &Edit Image + + + + + &Delete Image + + + + + &Preview Image + + + + + &Show Live + + + + + Import a Image + + + + + Load a new Image + + + + + Add a new Image + + + + + Edit the selected Image + + + + + Delete the selected Image + + + + + Delete the selected Images + + + + + Preview the selected Image + + + + + Preview the selected Images + + + + + Send the selected Image live + + + + + Send the selected Images live + + + + + Add the selected Image to the service + + + + + Add the selected Images to the service + + + + + Image + Pilt + + + + Images + + ImagePlugin.MediaItem - - Image - Pilt - - - + Select Image(s) Pildi (piltide) valimine - + All Files - + Replace Live Background Ekraani tausta asendamine - + Image(s) Pilt(pildid) - + Replace Background - + You must select an image to delete. - + You must select an image to replace the background with. - + You must select a media file to replace the background with. + + + Reset Live Background + + MediaPlugin - + <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. + + + &Edit Media + + + + + &Delete Media + + + + + &Preview Media + + + + + &Show Live + + + + + Import a Media + + + + + Load a new Media + + + + + Add a new Media + + + + + Edit the selected Media + + + + + Delete the selected Media + + + + + Preview the selected Media + + + + + Send the selected Media live + + + + + Add the selected Media to the service + + + + + Media + + MediaPlugin.MediaItem - + Media Meedia - + Select Media Meedia valimine - + Replace Live Background - + Replace Background - + You must select a media file to delete. @@ -939,7 +1252,7 @@ Changes do not affect verses already in the service. OpenLP - + Image Files @@ -1207,317 +1520,297 @@ Built With OpenLP.AmendThemeForm - + Theme Maintenance Kujunduste haldus - + Theme &name: - - &Visibility: - - - - - Opaque - Läbipaistmatu - - - - Transparent - Läbipaistev - - - + Type: Liik: - + Solid Color Ühtlane värv - + Gradient Üleminek - + Image Pilt - + Image: Pilt: - + Gradient: - + Horizontal Horisontaalne - + Vertical Vertikaalne - + Circular Ümmargune - + &Background - + Main Font Peamine kirjastiil - + Font: Kirjastiil: - + Color: - + Size: Suurus: - + pt pt - - Wrap indentation: - - - - + Adjust line spacing: - + Normal Tavaline - + Bold Rasvane - + Italics Kursiiv - + Bold/Italics Rasvane/kaldkiri - + Style: - + Display Location Kuva asukoht - + Use default location - + X position: - + Y position: - + Width: Laius: - + Height: Kõrgus: - + px px - + &Main Font - + Footer Font Jaluse kirjatüüp - + &Footer Font - + Outline Välisjoon - + Outline size: - + Outline color: - + Show outline: - + Shadow Vari - + Shadow size: - + Shadow color: - + Show shadow: - + Alignment Joondus - + Horizontal align: - + Left Vasakul - + Right Paremal - + Center Keskel - + Vertical align: - + Top Üleval - + Middle Keskel - + Bottom All - + Slide Transition Slaidide üleminek - + Transition active - + &Other Options - + Preview Eelvaade - + All Files - + Select Image - + First color: - + Second color: - + Slide height is %s rows. @@ -1671,567 +1964,527 @@ Built With Eesti - + OpenLP 2.0 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. - + Ctrl+N Ctrl+N - + &Open &Ava - + Open Service Teenistuse avamine - + Open an existing service. - + Ctrl+O Ctrl+O - + &Save &Salvesta - + Save Service Salvesta teenistus - + Save the current service to disk. - + Ctrl+S Ctrl+S - + Save &As... Salvesta &kui... - + Save Service As Salvesta teenistus kui - + Save the current service under a new name. - + Ctrl+Shift+S - + E&xit &Välju - + Quit OpenLP Lahku OpenLPst - + Alt+F4 Alt+F4 - + &Theme &Kujundus - + &Configure OpenLP... - + &Media Manager &Meediahaldur - + Toggle Media Manager Meediahalduri lüliti - + Toggle the visibility of the media manager. - + F8 F8 - + &Theme Manager &Kujunduse haldur - + Toggle Theme Manager Kujunduse halduri lüliti - + Toggle the visibility of the theme manager. - + F10 F10 - + &Service Manager &Teenistuse haldur - + Toggle Service Manager Teenistuse halduri lüliti - + Toggle the visibility of the service manager. - + F9 F9 - + &Preview Panel &Eelvaatluspaneel - + Toggle Preview Panel Eelvaatluspaneeli lüliti - + Toggle the visibility of the preview panel. - + F11 F11 - + &Live Panel - + Toggle Live Panel - + Toggle the visibility of the live panel. - + 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. - + Set the interface language to %s - + Add &Tool... Lisa &tööriist... - + Add an application to the list of tools. - + &Default - + Set the view mode back to the default. - + &Setup - + Set the view mode to Setup. - + &Live &Otse - + 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 <a href="http://openlp.org/">http://openlp.org/</a>. - - - - + 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? - + Default Theme: %s + + + Version %s of OpenLP is now available for download (you are currently running version %s). + +You can download the latest version from http://openlp.org/. + + OpenLP.MediaManagerItem - + 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 - Valitud elemendi kustutamine - - - + Preview %s - - Preview the selected item - Valitud kirje eelvaatlus - - - - Send the selected item live - Valitud kirje saatmine ekraanile - - - + Add %s to Service - - Add the selected item(s) to the service - Valitud kirje(te) lisamine teenistusse - - - + &Edit %s - + &Delete %s - + &Preview %s - + &Show Live &Kuva ekraanil - + &Add to Service &Lisa teenistusele - + &Add to selected Service Item &Lisa valitud teenistuse elemendile - + No Items Selected Ühtegi elementi pole valitud - + 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. 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. @@ -2330,7 +2583,7 @@ You can download the latest version from <a href="http://openlp.org/&quo Uue teenistuse loomine - + Open Service Teenistuse avamine @@ -2340,7 +2593,7 @@ You can download the latest version from <a href="http://openlp.org/&quo Välise teenistuse laadimine - + Save Service Salvesta teenistus @@ -2425,48 +2678,48 @@ You can download the latest version from <a href="http://openlp.org/&quo - + 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 uue avamist salvestada? - + OpenLP Service Files (*.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. - + File is not a valid service. - + Missing Display Handler - + 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 @@ -2515,72 +2768,62 @@ The content encoding is not UTF-8. OpenLP.SlideController - + Live Ekraan - + Preview Eelvaade - - Move to first - Liikumine esimesele - - - + Move to previous Eelmisele liikumine - + Move to next Liikumine järgmisele - - Move to last - Liikumine viimasele - - - + Hide - + Move to live Tõsta ekraanile - + Edit and re-preview Song 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 @@ -2590,10 +2833,23 @@ The content encoding is not UTF-8. Liikumine salmile + + OpenLP.SpellTextEdit + + + Spelling Suggestions + + + + + Formatting Tags + + + OpenLP.ThemeManager - + New Theme Uus kujundus @@ -2663,7 +2919,7 @@ The content encoding is not UTF-8. - + %s (default) @@ -2688,7 +2944,7 @@ The content encoding is not UTF-8. - + Error Viga @@ -2748,23 +3004,23 @@ 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. 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? @@ -2820,55 +3076,140 @@ The content encoding is not UTF-8. PresentationPlugin - + <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. + + + &Edit Presentation + + + + + &Delete Presentation + + + + + &Preview Presentation + + + + + &Show Live + + + + + Import a Presentation + + + + + Load a new Presentation + + + + + Add a new Presentation + + + + + Edit the selected Presentation + + + + + Delete the selected Presentation + + + + + Delete the selected Presentations + + + + + Preview the selected Presentation + + + + + Preview the selected Presentations + + + + + Send the selected Presentation live + + + + + Send the selected Presentations live + + + + + Add the selected Presentation to the service + + + + + Add the selected Presentations to the service + + + + + Presentation + + + + + Presentations + + PresentationPlugin.MediaItem - + Present using: - - Presentation - - - - + Select Presentation(s) - + Automatic - + A presentation with that filename already exists. - + You must select an item to delete. - + This type of presentation is not supported - + File Exists - + Unsupported File @@ -2899,10 +3240,20 @@ The content encoding is not UTF-8. RemotePlugin - + <strong>Remote Plugin</strong><br />The remote plugin provides the ability to send messages to a running version of OpenLP on a different computer via a web browser or through the remote API. + + + Remote + + + + + Remotes + + RemotePlugin.RemoteTab @@ -2930,45 +3281,55 @@ The content encoding is not UTF-8. SongUsagePlugin - + &Song Usage Tracking - + &Delete Tracking Data - + Delete song usage data up to a specified date. - + &Extract Tracking Data - + Generate a report on song usage. - + Toggle Tracking - + Toggle the tracking of song usage. - + <strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services. + + + SongUsage + + + + + Songs + + SongUsagePlugin.SongUsageDeleteForm @@ -3019,20 +3380,110 @@ The content encoding is not UTF-8. SongsPlugin - + &Song - + Import songs using the import wizard. - + <strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs. + + + &Edit Song + + + + + &Delete Song + + + + + &Preview Song + + + + + &Show Live + + + + + Import a Song + + + + + Load a new Song + + + + + Add a new Song + + + + + Edit the selected Song + + + + + Delete the selected Song + + + + + Delete the selected Songs + + + + + Preview the selected Song + + + + + Preview the selected Songs + + + + + Send the selected Song live + + + + + Send the selected Songs live + + + + + Add the selected Song to the service + + + + + Add the selected Songs to the service + + + + + Song + + + + + Songs + + SongsPlugin.AuthorsForm @@ -3080,250 +3531,255 @@ The content encoding is not UTF-8. SongsPlugin.EditSongForm - + Song Editor Lauluredaktor - + &Title: - + &Lyrics: - + &Add - + &Edit &Muuda - + Ed&it All - + &Delete &Kustuta - + Title && Lyrics Pealkiri && laulusõnad - + Authors Autorid - + &Add to Song &Lisa laulule - + &Remove &Eemalda - + Topic Teema - + A&dd to Song L&isa laulule - + R&emove &Eemalda - + Song Book Laulik - + Theme Kujundus - + Copyright Information Autoriõiguse andmed - + Comments Kommentaarid - + Theme, Copyright Info && Comments Kujundus, autoriõigus && kommentaarid - + Add Author - + This author does not exist, do you want to add them? - + 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. - + Add Topic - + This topic does not exist, do you want to add it? - + 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. - + Add Book - + This song book does not exist, do you want to add it? - + The verse order is invalid. There is no verse corresponding to %s. Valid entries are %s. - + New &Theme - + © - + Save && Preview - + Error Viga - + 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? - + You have not used %s anywhere in the verse order. Are you sure you want to save the song like this? - + &Manage Authors, Topics, Song Books - + Authors, Topics && Song Book - + This author is already in the list. - + This topic is already in the list. - + Alt&ernate title: - + &Verse order: - + CCLI number: + + + Song No.: + + SongsPlugin.EditVerseForm - + Edit Verse - + &Verse type: - + &Insert @@ -3331,315 +3787,315 @@ The content encoding is not UTF-8. 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. - + 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: - + OpenLyrics - + OpenSong - + Add Files... - + Remove File(s) - + Filename: - + Browse... - + Importing - + Please wait while your songs are imported. - + Ready. - + %p% - + Starting import... - + 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 Songs of Fellowship Files - + Select Document/Presentation Files - + OpenLP 2.0 - + openlp.org 1.x - + Words of Worship - + CCLI/SongSelect - + Songs of Fellowship - + Generic Document/Presentation + + + Select CCLI Files + + SongsPlugin.MediaItem - - Song - - - - + Song Maintenance - + Search: - + Type: Liik: - + Clear - + Search - + Titles - + Lyrics - + Authors - + CCLI Licence: - + Maintain the lists of authors, topics and books - + 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)? @@ -3675,12 +4131,12 @@ The content encoding is not UTF-8. SongsPlugin.SongImport - + copyright - + © @@ -3688,12 +4144,12 @@ The content encoding is not UTF-8. SongsPlugin.SongImportForm - + Finished import. - + Your song import failed. @@ -3731,47 +4187,47 @@ The content encoding is not UTF-8. &Kustuta - + Delete Author - + Delete Topic - + Delete Book - + Error Viga - + Are you sure you want to delete the selected author? - + No author selected! - + Are you sure you want to delete the selected topic? - + No topic selected! - + Are you sure you want to delete the selected book? @@ -3781,67 +4237,67 @@ The content encoding is not UTF-8. - + 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. - + No book selected! diff --git a/resources/i18n/openlp_hu.ts b/resources/i18n/openlp_hu.ts index ba662fc28..09cbf481e 100644 --- a/resources/i18n/openlp_hu.ts +++ b/resources/i18n/openlp_hu.ts @@ -3,20 +3,30 @@ AlertsPlugin - + &Alert &Figyelmeztetés - + Show an alert message. - + <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of nursery alerts on the display screen + + + Alert + + + + + Alerts + Figyelmeztetések + AlertsPlugin.AlertForm @@ -79,7 +89,7 @@ AlertsPlugin.AlertsManager - + Alert message created and displayed. @@ -165,15 +175,105 @@ BiblesPlugin - + &Bible &Biblia - + <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display bible verses from different sources during the service. + + + &Edit Bible + + + + + &Delete Bible + + + + + &Preview Bible + + + + + &Show Live + Egyenes &adásba + + + + Import a Bible + + + + + Load a new Bible + + + + + Add a new Bible + + + + + Edit the selected Bible + + + + + Delete the selected Bible + + + + + Delete the selected Bibles + + + + + Preview the selected Bible + + + + + Preview the selected Bibles + + + + + Send the selected Bible live + + + + + Send the selected Bibles live + + + + + Add the selected Verse to the service + + + + + Add the selected Verses to the service + + + + + Bible + Biblia + + + + Bibles + Bibliák + BiblesPlugin.BibleDB @@ -554,112 +654,107 @@ Changes do not affect verses already in the service. BiblesPlugin.MediaItem - - Bible - Biblia - - - + Quick Gyors - + Advanced Haladó - + Version: Verzió: - + Dual: Második: - + Search type: - + Find: Keresés: - + Search Keresés - + Results: Eredmények: - + Book: Könyv: - + Chapter: Fejezet: - + Verse: Vers: - + From: Innentől: - + To: Idáig: - + Verse Search Vers keresése - + Text Search Szöveg keresése - + Clear - + Keep Megtartása - + No Book Found Nincs ilyen könyv - + No matching book could be found in this Bible. Nem található ilyen könyv ebben a Bibliában. - + etc - + Bible not fully loaded. @@ -675,7 +770,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 songs are. This plugin provides greater freedom over the songs plugin. @@ -701,102 +796,102 @@ Changes do not affect verses already in the service. CustomPlugin.EditCustomForm - + Edit Custom Slides Egyedi diák szerkesztése - + Move slide up one position. - + Move slide down one position. - + &Title: - + Add New Új hozzáadása - + Add a new slide at bottom. - + Edit Szerkesztés - + Edit the selected slide. - + Edit All Összes szerkesztése - + Edit all the slides at once. - + Save Mentés - + Save the slide currently being edited. - + Delete Törlés - + Delete the selected slide. - + Clear - + Clear edit area Szerkesztő terület törlése - + Split Slide Dia kettéválasztása - + Split a slide into two by inserting a slide splitter. - + The&me: - + &Credits: @@ -829,73 +924,226 @@ Changes do not affect verses already in the service. CustomPlugin.MediaItem - - Custom - Egyedi - - - + You haven't selected an item to edit. - + You haven't selected an item to delete. + + CustomsPlugin + + + &Edit Custom + + + + + &Delete Custom + + + + + &Preview Custom + + + + + &Show Live + Egyenes &adásba + + + + Import a Custom + + + + + Load a new Custom + + + + + Add a new Custom + + + + + Edit the selected Custom + + + + + Delete the selected Custom + + + + + Preview the selected Custom + + + + + Send the selected Custom live + + + + + Add the selected Custom to the service + + + + + Custom + Egyedi + + ImagePlugin - + <strong>Image Plugin</strong><br />The image plugin provides displaying of images.<br />One of the distinguishing features of this plugin is the ability to group a number of images together in the service manager, making the displaying of multiple images easier. This plugin can also make use of OpenLP's "timed looping" feature to create a slide show that runs automatically. In addition to this, images from the plugin can be used to override the current theme's background, which renders text-based items like songs with the selected image as a background instead of the background provided by the theme. + + + &Edit Image + + + + + &Delete Image + + + + + &Preview Image + + + + + &Show Live + Egyenes &adásba + + + + Import a Image + + + + + Load a new Image + + + + + Add a new Image + + + + + Edit the selected Image + + + + + Delete the selected Image + + + + + Delete the selected Images + + + + + Preview the selected Image + + + + + Preview the selected Images + + + + + Send the selected Image live + + + + + Send the selected Images live + + + + + Add the selected Image to the service + + + + + Add the selected Images to the service + + + + + Image + Kép + + + + Images + Képek + ImagePlugin.MediaItem - - Image - Kép - - - + Select Image(s) Kép(ek) kiválasztása - + All Files - + Replace Live Background - + Replace Background - + + Reset Live Background + + + + You must select an image to delete. - + Image(s) Kép(ek) - + You must select an image to replace the background with. - + You must select a media file to replace the background with. @@ -903,35 +1151,100 @@ Changes do not affect verses already in the service. MediaPlugin - + <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. + + + &Edit Media + + + + + &Delete Media + + + + + &Preview Media + + + + + &Show Live + Egyenes &adásba + + + + Import a Media + + + + + Load a new Media + + + + + Add a new Media + + + + + Edit the selected Media + + + + + Delete the selected Media + + + + + Preview the selected Media + + + + + Send the selected Media live + + + + + Add the selected Media to the service + + + + + Media + Média + MediaPlugin.MediaItem - - Media - Média - - - + Select Media Média kiválasztása - + Replace Live Background - + Replace Background - + + Media + Média + + + You must select a media file to delete. @@ -939,7 +1252,7 @@ Changes do not affect verses already in the service. OpenLP - + Image Files @@ -1334,317 +1647,297 @@ A GNU General Public License nem engedi meg, hogy a program része legyen szelle OpenLP.AmendThemeForm - + Theme Maintenance Témák kezelése - + Theme &name: - - &Visibility: - - - - - Opaque - Átlátszatlan - - - - Transparent - Átlátszó - - - + Type: Típus: - + Solid Color Homogén szín - + Gradient Színátmenet - + Image Kép - + Image: Kép: - + Gradient: - + Horizontal Vízszintes - + Vertical Függőleges - + Circular Körkörös - + &Background - + Main Font Alap betűkészlet - + Font: Betűkészlet: - + Color: - + Size: Méret: - + pt - - Wrap indentation: - - - - + Adjust line spacing: - + Normal Normál - + Bold Félkövér - + Italics Dőlt - + Bold/Italics Félkövér dőlt - + Style: - + Display Location Hely megjelenítése - + Use default location - + X position: - + Y position: - + Width: Szélesség: - + Height: Magasság: - + px - + &Main Font - + Footer Font Lábjegyzet betűkészlete - + &Footer Font - + Outline Körvonal - + Outline size: - + Outline color: - + Show outline: - + Shadow Árnyék - + Shadow size: - + Shadow color: - + Show shadow: - + Alignment Igazítás - + Horizontal align: - + Left Balra zárt - + Right Jobbra zárt - + Center Középre igazított - + Vertical align: - + Top - + Middle Középre - + Bottom - + Slide Transition Diaátmenet - + Transition active - + &Other Options - + Preview Előnézet - + All Files - + Select Image - + First color: - + Second color: - + Slide height is %s rows. @@ -1793,7 +2086,7 @@ A GNU General Public License nem engedi meg, hogy a program része legyen szelle OpenLP.MainWindow - + OpenLP 2.0 @@ -1803,404 +2096,404 @@ A GNU General Public License nem engedi meg, hogy a program része legyen szelle Magyar - + &File &Fájl - + &Import &Importálás - + &Export &Exportálás - + &View &Nézet - + M&ode &Mód - + &Tools &Eszközök - + &Settings &Beállítások - + &Language &Nyelv - + &Help &Súgó - + Media Manager Médiakezelő - + Service Manager Szolgálatkezelő - + Theme Manager Témakezelő - + &New &Új - + New Service Új szolgálat - + Create a new service. - + Ctrl+N - + &Open &Megnyitás - + Open Service Szolgálat megnyitása - + Open an existing service. - + Ctrl+O - + &Save - + Save Service Szolgálat mentése - + Save the current service to disk. - + Ctrl+S - + Save &As... Mentés má&sként... - + Save Service As Szolgálat mentése másként - + Save the current service under a new name. - + Ctrl+Shift+S - + E&xit &Kilépés - + Quit OpenLP OpenLP bezárása - + Alt+F4 - + &Theme &Téma - + &Configure OpenLP... - + &Media Manager &Médiakezelő - + Toggle Media Manager Médiakezelő átváltása - + Toggle the visibility of the media manager. - + F8 - + &Theme Manager &Témakezelő - + Toggle Theme Manager Témakezelő átváltása - + Toggle the visibility of the theme manager. - + F10 - + &Service Manager &Szolgálatkezelő - + Toggle Service Manager Szolgálatkezelő átváltása - + Toggle the visibility of the service manager. - + F9 - + &Preview Panel &Előnézet panel - + Toggle Preview Panel Előnézet panel átváltása - + Toggle the visibility of the preview panel. - + F11 - + &Live Panel - + Toggle Live Panel - + Toggle the visibility of the live panel. - + F12 - + &Plugin List &Bővítménylista - + List the Plugins Bővítmények listája - + Alt+F7 - + &User Guide &Felhasználói kézikönyv - + &About &Névjegy - + More information about OpenLP Több információ az OpenLP-ről - + Ctrl+F1 - + &Online Help &Online súgó - + &Web Site &Weboldal - + &Auto Detect &Automatikus felismerés - + Use the system language, if available. - + Set the interface language to %s - + Add &Tool... &Eszköz hozzáadása... - + Add an application to the list of tools. - + &Default - + Set the view mode back to the default. - + &Setup - + Set the view mode to Setup. - + &Live &Egyenes adás - + Set the view mode to Live. - + Version %s of OpenLP is now available for download (you are currently running version %s). -You can download the latest version from <a href="http://openlp.org/">http://openlp.org/</a>. +You can download the latest version from http://openlp.org/. - + OpenLP Version Updated OpenLP verziófrissítés - + OpenLP Main Display Blanked Sötét OpenLP fő képernyő - + The Main Display has been blanked out A fő képernyő el lett sötétítve - + Save Changes to Service? - + Your service has changed. Do you want to save those changes? - + Default Theme: %s @@ -2208,157 +2501,117 @@ You can download the latest version from <a href="http://openlp.org/&quo OpenLP.MediaManagerItem - + No Items Selected Nincs kiválasztott elem - + 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 - Kiválasztott elem törlése - - - + Preview %s - - Preview the selected item - A kiválasztott elem előnézete - - - - Send the selected item live - A kiválasztott elem egyenes adásba küldése - - - + Add %s to Service - - Add the selected item(s) to the service - A kiválasztott elem(ek) hozzáadása a szolgálathoz - - - + &Edit %s - + &Delete %s - + &Preview %s - + &Show Live Egyenes &adásba - + &Add to Service &Hozzáadás a szolgálathoz - + &Add to selected Service Item &Hozzáadás a kiválasztott szolgálat elemhez - + 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. Ki kell választani egy vagy több elemet. - + No items selected Nincs kiválasztott elem - + You must select one or more items Ki kell választani egy vagy több elemet - + No Service Item Selected 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. - + Invalid Service Item Érvénytelen szolgálat elem - + You must select a %s service item. @@ -2457,7 +2710,7 @@ You can download the latest version from <a href="http://openlp.org/&quo Új szolgálat létrehozása - + Open Service Szolgálat megnyitása @@ -2467,7 +2720,7 @@ You can download the latest version from <a href="http://openlp.org/&quo Egy meglévő szolgálat betöltése - + Save Service Szolgálat mentése @@ -2577,48 +2830,48 @@ You can download the latest version from <a href="http://openlp.org/&quo - + Save Changes to Service? - + 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á? - + OpenLP Service Files (*.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á? - + Error Hiba - + File is not a valid service. The content encoding is not UTF-8. - + File is not a valid service. - + Missing Display Handler Hiányzó képernyő kezelő - + Your item cannot be displayed as there is no handler to display it Az elemet nem lehet megjeleníteni, mert nincs kezelő, amely megjelenítené @@ -2642,72 +2895,62 @@ The content encoding is not UTF-8. OpenLP.SlideController - + Live Egyenes adás - + Preview Előnézet - - Move to first - Mozgatás az elsőre - - - + Move to previous Mozgatás az előzőre - + Move to next Mozgatás a következőre - - Move to last - Mozgatás az utolsóra - - - + Hide - + Move to live Mozgatás az egyenes adásban lévőre - + Edit and re-preview Song Dal szerkesztése, majd újra az előnézet megnyitása - + Start continuous loop Folyamatos vetítés indítása - + Stop continuous loop Folyamatos vetítés leállítása - + s mp - + Delay between slides in seconds Diák közötti késleltetés másodpercben - + Start playing media Médialejátszás indítása @@ -2717,10 +2960,23 @@ The content encoding is not UTF-8. Ugrás versszakra + + OpenLP.SpellTextEdit + + + Spelling Suggestions + + + + + Formatting Tags + + + OpenLP.ThemeManager - + New Theme Új téma @@ -2790,7 +3046,7 @@ The content encoding is not UTF-8. - + %s (default) @@ -2815,7 +3071,7 @@ The content encoding is not UTF-8. - + Error Hiba @@ -2875,23 +3131,23 @@ 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. Nem érvényes témafájl. - + Theme Exists A téma már létezik - + A theme with this name already exists. Would you like to overwrite it? @@ -2947,55 +3203,140 @@ The content encoding is not UTF-8. PresentationPlugin - + <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. + + + &Edit Presentation + + + + + &Delete Presentation + + + + + &Preview Presentation + + + + + &Show Live + Egyenes &adásba + + + + Import a Presentation + + + + + Load a new Presentation + + + + + Add a new Presentation + + + + + Edit the selected Presentation + + + + + Delete the selected Presentation + + + + + Delete the selected Presentations + + + + + Preview the selected Presentation + + + + + Preview the selected Presentations + + + + + Send the selected Presentation live + + + + + Send the selected Presentations live + + + + + Add the selected Presentation to the service + + + + + Add the selected Presentations to the service + + + + + Presentation + Bemutató + + + + Presentations + Bemutatók + PresentationPlugin.MediaItem - - Presentation - Bemutató - - - + Select Presentation(s) Bemutató(k) kiválasztása - + Automatic Automatikus - + Present using: Bemutató ezzel: - + File Exists - + A presentation with that filename already exists. Ilyen fájlnéven már létezik egy bemutató. - + Unsupported File - + This type of presentation is not supported - + You must select an item to delete. @@ -3026,10 +3367,20 @@ The content encoding is not UTF-8. RemotePlugin - + <strong>Remote Plugin</strong><br />The remote plugin provides the ability to send messages to a running version of OpenLP on a different computer via a web browser or through the remote API. + + + Remote + + + + + Remotes + Távvezérlés + RemotePlugin.RemoteTab @@ -3057,45 +3408,55 @@ The content encoding is not UTF-8. SongUsagePlugin - + &Song Usage Tracking - + &Delete Tracking Data - + Delete song usage data up to a specified date. - + &Extract Tracking Data - + Generate a report on song usage. - + Toggle Tracking - + Toggle the tracking of song usage. - + <strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services. + + + SongUsage + + + + + Songs + Dalok + SongUsagePlugin.SongUsageDeleteForm @@ -3146,20 +3507,110 @@ The content encoding is not UTF-8. SongsPlugin - + &Song &Dal - + Import songs using the import wizard. Dalok importálása az importálás tündérrel. - + <strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs. + + + &Edit Song + + + + + &Delete Song + + + + + &Preview Song + + + + + &Show Live + Egyenes &adásba + + + + Import a Song + + + + + Load a new Song + + + + + Add a new Song + + + + + Edit the selected Song + + + + + Delete the selected Song + + + + + Delete the selected Songs + + + + + Preview the selected Song + + + + + Preview the selected Songs + + + + + Send the selected Song live + + + + + Send the selected Songs live + + + + + Add the selected Song to the service + + + + + Add the selected Songs to the service + + + + + Song + Dal + + + + Songs + Dalok + SongsPlugin.AuthorsForm @@ -3207,232 +3658,237 @@ The content encoding is not UTF-8. SongsPlugin.EditSongForm - + Song Editor Dalszerkesztő - + &Title: - + Alt&ernate title: - + &Lyrics: - + &Verse order: - + &Add - + &Edit &Szerkesztés - + Ed&it All - + &Delete &Törlés - + Title && Lyrics Cím és dalszöveg - + Authors Szerzők - + &Add to Song &Hozzáadás dalhoz - + &Remove &Eltávolítás - + &Manage Authors, Topics, Song Books - + Topic Témakör - + A&dd to Song &Hozzáadás dalhoz - + R&emove &Eltávolítás - + Song Book Daloskönyv - - - Authors, Topics && Song Book - - - - - Theme - Téma - - New &Theme + Song No.: - Copyright Information - Szerzői jogi információ - - - - © + Authors, Topics && Song Book + Theme + Téma + + + + New &Theme + + + + + Copyright Information + Szerzői jogi információ + + + + © + + + + CCLI number: - + Comments Megjegyzések - + Theme, Copyright Info && Comments Téma, szerzői jogi infók és megjegyzések - + Save && Preview Mentés és előnézet - + Add Author - + This author does not exist, do you want to add them? - + Error Hiba - + This author is already in the list. - + 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. - + Add Topic - + This topic does not exist, do you want to add it? - + This topic is already in the list. - + 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 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? - + Add Book - + This song book does not exist, do you want to add it? @@ -3440,17 +3896,17 @@ The content encoding is not UTF-8. SongsPlugin.EditVerseForm - + Edit Verse Versszak szerkesztése - + &Verse type: - + &Insert @@ -3458,232 +3914,237 @@ 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 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 - + 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. - + No Words of Worship Files Selected - + You need to add at least one Words of Worship file to import from. - + No CCLI Files Selected Nincsenek kijelölt 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. - + 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... Importálás indítása... - + Song Import Wizard Dalimportáló tündér - + Welcome to the Song Import Wizard Ü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. - + Select Import Source Válassza 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. - + Format: Formátum: - + OpenLP 2.0 - + openlp.org 1.x - + OpenLyrics - + OpenSong - + Words of Worship - + CCLI/SongSelect - + Songs of Fellowship - + Generic Document/Presentation - + Filename: Fájlnév: - + Browse... Tallózás... - + Add Files... Fájlok hozzáadása... - + Remove File(s) Fájlok törlése - + Importing Importálás - + Please wait while your songs are imported. Kérem, várjon, míg a dalok importálás alatt állnak. - + Ready. Kész. - + %p% @@ -3691,82 +4152,77 @@ The content encoding is not UTF-8. SongsPlugin.MediaItem - - Song - Dal - - - + Song Maintenance 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: - + Type: Típus: - + Clear - + Search Keresés - + Titles Címek - + Lyrics Dalszöveg - + Authors Szerzők - + 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 licenc: @@ -3802,12 +4258,12 @@ The content encoding is not UTF-8. SongsPlugin.SongImport - + copyright - + © @@ -3815,12 +4271,12 @@ The content encoding is not UTF-8. SongsPlugin.SongImportForm - + Finished import. Az importálás befejeződött. - + Your song import failed. @@ -3863,112 +4319,112 @@ The content encoding is not UTF-8. &Törlés - + Error Hiba - + 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. - + Delete Author Szerző törlése - + Are you sure you want to delete the selected author? A kiválasztott szerző biztosan törölhető? - + This author cannot be deleted, they are currently assigned to at least one song. - + No author selected! Nincs kiválasztott szerző! - + Delete Topic 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ő? - + This topic cannot be deleted, it is currently assigned to at least one song. - + No topic selected! Nincs kiválasztott témakör! - + Delete Book Könyv törlése - + Are you sure you want to delete the selected book? A kiválasztott könyv biztosan törölhető? - + This book cannot be deleted, it is currently assigned to at least one song. - + No book selected! Nincs kiválasztott könyv! diff --git a/resources/i18n/openlp_ko.ts b/resources/i18n/openlp_ko.ts index a74275115..93accb132 100644 --- a/resources/i18n/openlp_ko.ts +++ b/resources/i18n/openlp_ko.ts @@ -3,20 +3,30 @@ AlertsPlugin - + &Alert - + Show an alert message. - + <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of nursery alerts on the display screen + + + Alert + + + + + Alerts + + AlertsPlugin.AlertForm @@ -79,7 +89,7 @@ AlertsPlugin.AlertsManager - + Alert message created and displayed. @@ -165,15 +175,105 @@ BiblesPlugin - + &Bible - + <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display bible verses from different sources during the service. + + + &Edit Bible + + + + + &Delete Bible + + + + + &Preview Bible + + + + + &Show Live + + + + + Import a Bible + + + + + Load a new Bible + + + + + Add a new Bible + + + + + Edit the selected Bible + + + + + Delete the selected Bible + + + + + Delete the selected Bibles + + + + + Preview the selected Bible + + + + + Preview the selected Bibles + + + + + Send the selected Bible live + + + + + Send the selected Bibles live + + + + + Add the selected Verse to the service + + + + + Add the selected Verses to the service + + + + + Bible + 성경 + + + + Bibles + + BiblesPlugin.BibleDB @@ -554,112 +654,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. @@ -675,7 +770,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 songs are. This plugin provides greater freedom over the songs plugin. @@ -701,102 +796,102 @@ Changes do not affect verses already in the service. CustomPlugin.EditCustomForm - + Edit Custom Slides - + Move slide up one position. - + Move slide down one position. - + &Title: - + Add New - + Add a new slide at bottom. - + Edit - + Edit the selected slide. - + Edit All - + Edit all the slides at once. - + Save - + Save the slide currently being edited. - + Delete - + Delete the selected slide. - + Clear - + Clear edit area - + Split Slide - + Split a slide into two by inserting a slide splitter. - + The&me: - + &Credits: @@ -829,73 +924,226 @@ Changes do not affect verses already in the service. CustomPlugin.MediaItem - - Custom - - - - + You haven't selected an item to edit. - + You haven't selected an item to delete. + + CustomsPlugin + + + &Edit Custom + + + + + &Delete Custom + + + + + &Preview Custom + + + + + &Show Live + + + + + Import a Custom + + + + + Load a new Custom + + + + + Add a new Custom + + + + + Edit the selected Custom + + + + + Delete the selected Custom + + + + + Preview the selected Custom + + + + + Send the selected Custom live + + + + + Add the selected Custom to the service + + + + + Custom + + + ImagePlugin - + <strong>Image Plugin</strong><br />The image plugin provides displaying of images.<br />One of the distinguishing features of this plugin is the ability to group a number of images together in the service manager, making the displaying of multiple images easier. This plugin can also make use of OpenLP's "timed looping" feature to create a slide show that runs automatically. In addition to this, images from the plugin can be used to override the current theme's background, which renders text-based items like songs with the selected image as a background instead of the background provided by the theme. + + + &Edit Image + + + + + &Delete Image + + + + + &Preview Image + + + + + &Show Live + + + + + Import a Image + + + + + Load a new Image + + + + + Add a new Image + + + + + Edit the selected Image + + + + + Delete the selected Image + + + + + Delete the selected Images + + + + + Preview the selected Image + + + + + Preview the selected Images + + + + + Send the selected Image live + + + + + Send the selected Images live + + + + + Add the selected Image to the service + + + + + Add the selected Images to the service + + + + + Image + + + + + Images + + 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. @@ -903,35 +1151,100 @@ Changes do not affect verses already in the service. MediaPlugin - + <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. + + + &Edit Media + + + + + &Delete Media + + + + + &Preview Media + + + + + &Show Live + + + + + Import a Media + + + + + Load a new Media + + + + + Add a new Media + + + + + Edit the selected Media + + + + + Delete the selected Media + + + + + Preview the selected Media + + + + + Send the selected Media live + + + + + Add the selected Media to the service + + + + + Media + + MediaPlugin.MediaItem - - Media - - - - + Select Media - + Replace Live Background - + Replace Background - + + Media + + + + You must select a media file to delete. @@ -939,7 +1252,7 @@ Changes do not affect verses already in the service. OpenLP - + Image Files @@ -1201,317 +1514,297 @@ This General Public License does not permit incorporating your program into prop OpenLP.AmendThemeForm - + Theme Maintenance - + Theme &name: - - &Visibility: - - - - - Opaque - - - - - Transparent - - - - + Type: - + Solid Color - + Gradient - + Image - + Image: - + Gradient: - + Horizontal - + Vertical - + Circular - + &Background - + Main Font - + Font: - + Color: - + Size: - + pt - - Wrap indentation: - - - - + Adjust line spacing: - + Normal - + Bold - + Italics - + Bold/Italics - + Style: - + Display Location - + Use default location - + X position: - + Y position: - + Width: - + Height: - + px - + &Main Font - + Footer Font - + &Footer Font - + Outline - + Outline size: - + Outline color: - + Show outline: - + Shadow - + Shadow size: - + Shadow color: - + Show shadow: - + Alignment - + Horizontal align: - + Left - + Right - + Center - + Vertical align: - + Top - + Middle - + Bottom - + Slide Transition - + Transition active - + &Other Options - + Preview - + All Files - + Select Image - + First color: - + Second color: - + Slide height is %s rows. @@ -1660,7 +1953,7 @@ This General Public License does not permit incorporating your program into prop OpenLP.MainWindow - + OpenLP 2.0 @@ -1670,404 +1963,404 @@ This General Public License does not permit incorporating your program into prop - + &File - + &Import - + &Export - + &View - + M&ode - + &Tools - + &Settings - + &Language - + &Help - + Media Manager - + Service Manager - + Theme Manager - + &New - + New Service - + Create a new service. - + Ctrl+N - + &Open - + Open Service - + Open an existing service. - + Ctrl+O - + &Save - + Save Service - + Save the current service to disk. - + Ctrl+S - + Save &As... - + Save Service As - + Save the current service under a new name. - + Ctrl+Shift+S - + E&xit - + Quit OpenLP - + Alt+F4 - + &Theme - + &Configure OpenLP... - + &Media Manager - + Toggle Media Manager - + Toggle the visibility of the media manager. - + F8 - + &Theme Manager - + Toggle Theme Manager - + Toggle the visibility of the theme manager. - + F10 - + &Service Manager - + Toggle Service Manager - + Toggle the visibility of the service manager. - + F9 - + &Preview Panel - + Toggle Preview Panel - + Toggle the visibility of the preview panel. - + F11 - + &Live Panel - + Toggle Live Panel - + Toggle the visibility of the live panel. - + F12 - + &Plugin List - + List the Plugins - + Alt+F7 - + &User Guide - + &About - + More information about OpenLP - + Ctrl+F1 - + &Online Help - + &Web Site - + &Auto Detect - + Use the system language, if available. - + Set the interface language to %s - + Add &Tool... - + Add an application to the list of tools. - + &Default - + Set the view mode back to the default. - + &Setup - + Set the view mode to Setup. - + &Live - + Set the view mode to Live. - + Version %s of OpenLP is now available for download (you are currently running version %s). -You can download the latest version from <a href="http://openlp.org/">http://openlp.org/</a>. +You can download the latest version from 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 @@ -2075,157 +2368,117 @@ You can download the latest version from <a href="http://openlp.org/&quo 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. @@ -2324,7 +2577,7 @@ You can download the latest version from <a href="http://openlp.org/&quo - + Open Service @@ -2334,7 +2587,7 @@ You can download the latest version from <a href="http://openlp.org/&quo - + Save Service @@ -2444,48 +2697,48 @@ You can download the latest version from <a href="http://openlp.org/&quo - + 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 @@ -2509,72 +2762,62 @@ The content encoding is not UTF-8. OpenLP.SlideController - + Live - + Preview - - Move to first - - - - + Move to previous - + Move to next - - Move to last - - - - + Hide - + Move to live - + Edit and re-preview Song - + Start continuous loop - + Stop continuous loop - + s - + Delay between slides in seconds - + Start playing media @@ -2584,10 +2827,23 @@ The content encoding is not UTF-8. + + OpenLP.SpellTextEdit + + + Spelling Suggestions + + + + + Formatting Tags + + + OpenLP.ThemeManager - + New Theme @@ -2657,7 +2913,7 @@ The content encoding is not UTF-8. - + %s (default) @@ -2682,7 +2938,7 @@ The content encoding is not UTF-8. - + Error @@ -2742,23 +2998,23 @@ 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. - + Theme Exists - + A theme with this name already exists. Would you like to overwrite it? @@ -2814,55 +3070,140 @@ The content encoding is not UTF-8. PresentationPlugin - + <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. + + + &Edit Presentation + + + + + &Delete Presentation + + + + + &Preview Presentation + + + + + &Show Live + + + + + Import a Presentation + + + + + Load a new Presentation + + + + + Add a new Presentation + + + + + Edit the selected Presentation + + + + + Delete the selected Presentation + + + + + Delete the selected Presentations + + + + + Preview the selected Presentation + + + + + Preview the selected Presentations + + + + + Send the selected Presentation live + + + + + Send the selected Presentations live + + + + + Add the selected Presentation to the service + + + + + Add the selected Presentations to the service + + + + + Presentation + + + + + Presentations + + 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. @@ -2893,10 +3234,20 @@ The content encoding is not UTF-8. RemotePlugin - + <strong>Remote Plugin</strong><br />The remote plugin provides the ability to send messages to a running version of OpenLP on a different computer via a web browser or through the remote API. + + + Remote + + + + + Remotes + + RemotePlugin.RemoteTab @@ -2924,45 +3275,55 @@ The content encoding is not UTF-8. SongUsagePlugin - + &Song Usage Tracking - + &Delete Tracking Data - + Delete song usage data up to a specified date. - + &Extract Tracking Data - + Generate a report on song usage. - + Toggle Tracking - + Toggle the tracking of song usage. - + <strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services. + + + SongUsage + + + + + Songs + + SongUsagePlugin.SongUsageDeleteForm @@ -3013,20 +3374,110 @@ The content encoding is not UTF-8. SongsPlugin - + &Song - + Import songs using the import wizard. - + <strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs. + + + &Edit Song + + + + + &Delete Song + + + + + &Preview Song + + + + + &Show Live + + + + + Import a Song + + + + + Load a new Song + + + + + Add a new Song + + + + + Edit the selected Song + + + + + Delete the selected Song + + + + + Delete the selected Songs + + + + + Preview the selected Song + + + + + Preview the selected Songs + + + + + Send the selected Song live + + + + + Send the selected Songs live + + + + + Add the selected Song to the service + + + + + Add the selected Songs to the service + + + + + Song + + + + + Songs + + SongsPlugin.AuthorsForm @@ -3074,232 +3525,237 @@ The content encoding is not UTF-8. SongsPlugin.EditSongForm - + Song Editor - + &Title: - + Alt&ernate title: - + &Lyrics: - + &Verse order: - + &Add - + &Edit - + Ed&it All - + &Delete - + Title && Lyrics - + Authors - + &Add to Song - + &Remove - + &Manage Authors, Topics, Song Books - + Topic - + A&dd to Song - + R&emove - + Song Book - - - Authors, Topics && Song Book - - - - - Theme - - - New &Theme + Song No.: - Copyright Information - - - - - © + Authors, Topics && Song Book - CCLI number: + Theme - Comments + New &Theme + Copyright Information + + + + + © + + + + + CCLI number: + + + + + Comments + + + + Theme, Copyright Info && Comments - + Save && Preview - + Add Author - + This author does not exist, do you want to add them? - + Error - + This author is already in the list. - + 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. - + Add Topic - + This topic does not exist, do you want to add it? - + This topic is already in the list. - + 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 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? - + Add Book - + This song book does not exist, do you want to add it? @@ -3307,17 +3763,17 @@ The content encoding is not UTF-8. SongsPlugin.EditVerseForm - + Edit Verse - + &Verse type: - + &Insert @@ -3325,232 +3781,237 @@ 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... - + Add Files... - + Remove File(s) - + Importing - + Please wait while your songs are imported. - + Ready. - + %p% @@ -3558,82 +4019,77 @@ 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: @@ -3669,12 +4125,12 @@ The content encoding is not UTF-8. SongsPlugin.SongImport - + copyright - + © @@ -3682,12 +4138,12 @@ The content encoding is not UTF-8. SongsPlugin.SongImportForm - + Finished import. - + Your song import failed. @@ -3730,112 +4186,112 @@ The content encoding is not UTF-8. - + Error - + 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. - + Delete Author - + Are you sure you want to delete the selected author? - + This author cannot be deleted, they are currently assigned to at least one song. - + No author selected! - + Delete Topic - + Are you sure you want to delete the selected topic? - + This topic cannot be deleted, it is currently assigned to at least one song. - + No topic selected! - + Delete Book - + Are you sure you want to delete the selected book? - + This book cannot be deleted, it is currently assigned to at least one song. - + No book selected! diff --git a/resources/i18n/openlp_nb.ts b/resources/i18n/openlp_nb.ts index 2bb0ae95e..80ff69b28 100644 --- a/resources/i18n/openlp_nb.ts +++ b/resources/i18n/openlp_nb.ts @@ -3,20 +3,30 @@ AlertsPlugin - + &Alert - + Show an alert message. - + <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of nursery alerts on the display screen + + + Alert + + + + + Alerts + + AlertsPlugin.AlertForm @@ -79,7 +89,7 @@ AlertsPlugin.AlertsManager - + Alert message created and displayed. @@ -165,15 +175,105 @@ BiblesPlugin - + &Bible - + <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display bible verses from different sources during the service. + + + &Edit Bible + + + + + &Delete Bible + + + + + &Preview Bible + + + + + &Show Live + + + + + Import a Bible + + + + + Load a new Bible + + + + + Add a new Bible + + + + + Edit the selected Bible + + + + + Delete the selected Bible + + + + + Delete the selected Bibles + + + + + Preview the selected Bible + + + + + Preview the selected Bibles + + + + + Send the selected Bible live + + + + + Send the selected Bibles live + + + + + Add the selected Verse to the service + + + + + Add the selected Verses to the service + + + + + Bible + Bibel + + + + Bibles + Bibler + BiblesPlugin.BibleDB @@ -554,112 +654,107 @@ Changes do not affect verses already in the service. BiblesPlugin.MediaItem - - Bible - Bibel - - - + Quick Rask - + Advanced Avansert - + Version: - + Dual: Dobbel: - + Search type: - + Find: Finn: - + Search Søk - + Results: Resultat: - + Book: Bok: - + Chapter: Kapittel - + Verse: - + 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. @@ -675,7 +770,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 songs are. This plugin provides greater freedom over the songs plugin. @@ -701,102 +796,102 @@ Changes do not affect verses already in the service. CustomPlugin.EditCustomForm - + Edit Custom Slides Rediger egendefinerte lysbilder - + Move slide up one position. - + Move slide down one position. - + &Title: - + Add New Legg til Ny - + Add a new slide at bottom. - + Edit - + Edit the selected slide. - + Edit All - + Edit all the slides at once. - + Save Lagre - + Save the slide currently being edited. - + Delete - + Delete the selected slide. - + Clear - + Clear edit area - + Split Slide - + Split a slide into two by inserting a slide splitter. - + The&me: - + &Credits: @@ -829,73 +924,226 @@ Changes do not affect verses already in the service. CustomPlugin.MediaItem - - Custom - - - - + You haven't selected an item to edit. - + You haven't selected an item to delete. + + CustomsPlugin + + + &Edit Custom + + + + + &Delete Custom + + + + + &Preview Custom + + + + + &Show Live + + + + + Import a Custom + + + + + Load a new Custom + + + + + Add a new Custom + + + + + Edit the selected Custom + + + + + Delete the selected Custom + + + + + Preview the selected Custom + + + + + Send the selected Custom live + + + + + Add the selected Custom to the service + + + + + Custom + + + ImagePlugin - + <strong>Image Plugin</strong><br />The image plugin provides displaying of images.<br />One of the distinguishing features of this plugin is the ability to group a number of images together in the service manager, making the displaying of multiple images easier. This plugin can also make use of OpenLP's "timed looping" feature to create a slide show that runs automatically. In addition to this, images from the plugin can be used to override the current theme's background, which renders text-based items like songs with the selected image as a background instead of the background provided by the theme. + + + &Edit Image + + + + + &Delete Image + + + + + &Preview Image + + + + + &Show Live + + + + + Import a Image + + + + + Load a new Image + + + + + Add a new Image + + + + + Edit the selected Image + + + + + Delete the selected Image + + + + + Delete the selected Images + + + + + Preview the selected Image + + + + + Preview the selected Images + + + + + Send the selected Image live + + + + + Send the selected Images live + + + + + Add the selected Image to the service + + + + + Add the selected Images to the service + + + + + Image + + + + + Images + + 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. @@ -903,35 +1151,100 @@ Changes do not affect verses already in the service. MediaPlugin - + <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. + + + &Edit Media + + + + + &Delete Media + + + + + &Preview Media + + + + + &Show Live + + + + + Import a Media + + + + + Load a new Media + + + + + Add a new Media + + + + + Edit the selected Media + + + + + Delete the selected Media + + + + + Preview the selected Media + + + + + Send the selected Media live + + + + + Add the selected Media to the service + + + + + Media + + MediaPlugin.MediaItem - - Media - - - - + Select Media Velg media - + Replace Live Background - + Replace Background - + + Media + + + + You must select a media file to delete. @@ -939,7 +1252,7 @@ Changes do not affect verses already in the service. OpenLP - + Image Files @@ -1201,317 +1514,297 @@ This General Public License does not permit incorporating your program into prop OpenLP.AmendThemeForm - + Theme Maintenance Vedlikehold av tema - + Theme &name: - - &Visibility: - - - - - Opaque - Gjennomsiktighet - - - - Transparent - Gjennomsiktig - - - + Type: Type: - + Solid Color Ensfarget - + Gradient - + Image - + Image: - + Gradient: - + Horizontal - + Vertical Vertikal - + Circular - + &Background - + Main Font Hovedskrifttype - + Font: - + Color: - + Size: Størrelse: - + pt - - Wrap indentation: - - - - + Adjust line spacing: - + Normal Normal - + Bold Fet - + Italics Kursiv - + Bold/Italics - + Style: - + Display Location - + Use default location - + X position: - + Y position: - + Width: Bredde: - + Height: Høyde: - + px - + &Main Font - + Footer Font Skrifttype bunntekst - + &Footer Font - + Outline Omriss - + Outline size: - + Outline color: - + Show outline: - + Shadow Skygge - + Shadow size: - + Shadow color: - + Show shadow: - + Alignment Justering - + Horizontal align: - + Left - + Right - + Center Sentrert - + Vertical align: - + Top Topp - + Middle Midtstilt - + Bottom - + Slide Transition Lysbildeovergang - + Transition active - + &Other Options - + Preview - + All Files - + Select Image - + First color: - + Second color: - + Slide height is %s rows. @@ -1660,7 +1953,7 @@ This General Public License does not permit incorporating your program into prop OpenLP.MainWindow - + OpenLP 2.0 OpenLP 2.0 @@ -1670,404 +1963,404 @@ This General Public License does not permit incorporating your program into prop Norsk - + &File &Fil - + &Import &Import - + &Export &Eksporter - + &View &Vis - + M&ode - + &Tools - + &Settings &Innstillinger - + &Language &Språk - + &Help &Hjelp - + Media Manager Innholdselementer - + Service Manager - + Theme Manager - + &New &Ny - + New Service - + Create a new service. - + Ctrl+N Ctrl+N - + &Open &Åpne - + Open Service Åpne møteplan - + Open an existing service. - + Ctrl+O Ctrl+O - + &Save &Lagre - + Save Service - + Save the current service to disk. - + Ctrl+S Ctrl+S - + Save &As... - + Save Service As - + Save the current service under a new name. - + Ctrl+Shift+S - + E&xit &Avslutt - + Quit OpenLP Avslutt OpenLP - + Alt+F4 Alt+F4 - + &Theme &Tema - + &Configure OpenLP... - + &Media Manager - + Toggle Media Manager - + Toggle the visibility of the media manager. - + F8 F8 - + &Theme Manager - + Toggle Theme Manager Åpne tema-behandler - + Toggle the visibility of the theme manager. - + F10 F10 - + &Service Manager - + Toggle Service Manager Vis møteplanlegger - + Toggle the visibility of the service manager. - + F9 F9 - + &Preview Panel &Forhåndsvisningspanel - + Toggle Preview Panel Vis forhåndsvisningspanel - + Toggle the visibility of the preview panel. - + F11 F11 - + &Live Panel - + Toggle Live Panel - + Toggle the visibility of the live panel. - + F12 F12 - + &Plugin List &Tillegsliste - + List the Plugins Hent liste over tillegg - + Alt+F7 ALT+F7 - + &User Guide &Brukerveiledning - + &About &Om - + More information about OpenLP - + Ctrl+F1 Ctrl+F1 - + &Online Help - + &Web Site &Internett side - + &Auto Detect - + Use the system language, if available. - + Set the interface language to %s - + Add &Tool... Legg til & Verktøy... - + Add an application to the list of tools. - + &Default - + Set the view mode back to the default. - + &Setup - + Set the view mode to Setup. - + &Live &Direkte - + 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 <a href="http://openlp.org/">http://openlp.org/</a>. +You can download the latest version from http://openlp.org/. - + OpenLP Version Updated OpenLP versjonen har blitt oppdatert - + OpenLP Main Display Blanked - + The Main Display has been blanked out - + Save Changes to Service? - + Your service has changed. Do you want to save those changes? - + Default Theme: %s @@ -2075,157 +2368,117 @@ You can download the latest version from <a href="http://openlp.org/&quo 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. @@ -2324,7 +2577,7 @@ You can download the latest version from <a href="http://openlp.org/&quo Opprett ny møteplan - + Open Service Åpne møteplan @@ -2334,7 +2587,7 @@ You can download the latest version from <a href="http://openlp.org/&quo - + Save Service @@ -2444,48 +2697,48 @@ You can download the latest version from <a href="http://openlp.org/&quo &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 @@ -2509,72 +2762,62 @@ The content encoding is not UTF-8. OpenLP.SlideController - + Live Direkte - + Preview - - Move to first - - - - + Move to previous Flytt til forrige - + Move to next - - Move to last - Flytt til sist - - - + Hide - + Move to live - + Edit and re-preview Song Endre og forhåndsvis sang - + Start continuous loop Start kontinuerlig løkke - + Stop continuous loop - + s - + Delay between slides in seconds Forsinkelse mellom lysbilder i sekund - + Start playing media Start avspilling av media @@ -2584,10 +2827,23 @@ The content encoding is not UTF-8. Gå til vers + + OpenLP.SpellTextEdit + + + Spelling Suggestions + + + + + Formatting Tags + + + OpenLP.ThemeManager - + New Theme @@ -2657,7 +2913,7 @@ The content encoding is not UTF-8. - + %s (default) @@ -2682,7 +2938,7 @@ The content encoding is not UTF-8. - + Error @@ -2742,23 +2998,23 @@ 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. Filen er ikke et gyldig tema. - + Theme Exists Temaet eksisterer - + A theme with this name already exists. Would you like to overwrite it? @@ -2814,55 +3070,140 @@ The content encoding is not UTF-8. PresentationPlugin - + <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. + + + &Edit Presentation + + + + + &Delete Presentation + + + + + &Preview Presentation + + + + + &Show Live + + + + + Import a Presentation + + + + + Load a new Presentation + + + + + Add a new Presentation + + + + + Edit the selected Presentation + + + + + Delete the selected Presentation + + + + + Delete the selected Presentations + + + + + Preview the selected Presentation + + + + + Preview the selected Presentations + + + + + Send the selected Presentation live + + + + + Send the selected Presentations live + + + + + Add the selected Presentation to the service + + + + + Add the selected Presentations to the service + + + + + Presentation + Presentasjon + + + + Presentations + + 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. @@ -2893,10 +3234,20 @@ The content encoding is not UTF-8. RemotePlugin - + <strong>Remote Plugin</strong><br />The remote plugin provides the ability to send messages to a running version of OpenLP on a different computer via a web browser or through the remote API. + + + Remote + + + + + Remotes + Fjernmeldinger + RemotePlugin.RemoteTab @@ -2924,45 +3275,55 @@ The content encoding is not UTF-8. SongUsagePlugin - + &Song Usage Tracking - + &Delete Tracking Data - + Delete song usage data up to a specified date. - + &Extract Tracking Data - + Generate a report on song usage. - + Toggle Tracking - + Toggle the tracking of song usage. - + <strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services. + + + SongUsage + + + + + Songs + Sanger + SongUsagePlugin.SongUsageDeleteForm @@ -3013,20 +3374,110 @@ The content encoding is not UTF-8. SongsPlugin - + &Song &Sang - + Import songs using the import wizard. - + <strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs. + + + &Edit Song + + + + + &Delete Song + + + + + &Preview Song + + + + + &Show Live + + + + + Import a Song + + + + + Load a new Song + + + + + Add a new Song + + + + + Edit the selected Song + + + + + Delete the selected Song + + + + + Delete the selected Songs + + + + + Preview the selected Song + + + + + Preview the selected Songs + + + + + Send the selected Song live + + + + + Send the selected Songs live + + + + + Add the selected Song to the service + + + + + Add the selected Songs to the service + + + + + Song + Sang + + + + Songs + Sanger + SongsPlugin.AuthorsForm @@ -3074,232 +3525,237 @@ The content encoding is not UTF-8. SongsPlugin.EditSongForm - + Song Editor Sangredigeringsverktøy - + &Title: - + Alt&ernate title: - + &Lyrics: - + &Verse order: - + &Add - + &Edit &Rediger - + Ed&it All - + &Delete - + Title && Lyrics Tittel && Sangtekst - + Authors - + &Add to Song - + &Remove &Fjern - + &Manage Authors, Topics, Song Books - + Topic Emne - + A&dd to Song - + R&emove &Fjern - + Song Book - - - Authors, Topics && Song Book - - - - - Theme - Tema - - New &Theme + Song No.: - Copyright Information - Copyright-informasjon - - - - © + Authors, Topics && Song Book - CCLI number: - + Theme + Tema - Comments + New &Theme + Copyright Information + Copyright-informasjon + + + + © + + + + + CCLI number: + + + + + Comments + + + + Theme, Copyright Info && Comments - + Save && Preview - + Add Author - + This author does not exist, do you want to add them? - + Error - + This author is already in the list. - + 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. - + Add Topic - + This topic does not exist, do you want to add it? - + This topic is already in the list. - + 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 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? - + Add Book - + This song book does not exist, do you want to add it? @@ -3307,17 +3763,17 @@ The content encoding is not UTF-8. SongsPlugin.EditVerseForm - + Edit Verse Rediger Vers - + &Verse type: - + &Insert @@ -3325,232 +3781,237 @@ 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 Velg importeringskilde - + Select the import format, and where to import from. - + 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... - + Add Files... - + Remove File(s) - + Importing - + Please wait while your songs are imported. - + Ready. Klar. - + %p% @@ -3558,82 +4019,77 @@ The content encoding is not UTF-8. 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: @@ -3669,12 +4125,12 @@ The content encoding is not UTF-8. SongsPlugin.SongImport - + copyright - + © @@ -3682,12 +4138,12 @@ The content encoding is not UTF-8. SongsPlugin.SongImportForm - + Finished import. Import fullført. - + Your song import failed. @@ -3730,112 +4186,112 @@ The content encoding is not UTF-8. - + Error - + 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. - + Delete Author - + Are you sure you want to delete the selected author? Er du sikker på at du vil slette den valgte forfatteren? - + This author cannot be deleted, they are currently assigned to at least one song. - + No author selected! Ingen forfatter er valgt! - + Delete Topic Slett emne - + Are you sure you want to delete the selected topic? - + This topic cannot be deleted, it is currently assigned to at least one song. - + No topic selected! - + Delete Book Slett bok - + Are you sure you want to delete the selected book? Er du sikker på at du vil slette den merkede boken? - + This book cannot be deleted, it is currently assigned to at least one song. - + No book selected! Ingen bok er valgt! diff --git a/resources/i18n/openlp_pt_BR.ts b/resources/i18n/openlp_pt_BR.ts index f0481854f..c5a331423 100644 --- a/resources/i18n/openlp_pt_BR.ts +++ b/resources/i18n/openlp_pt_BR.ts @@ -3,20 +3,30 @@ AlertsPlugin - + &Alert &Alerta - + Show an alert message. - + <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of nursery alerts on the display screen + + + Alert + + + + + Alerts + Alertas + AlertsPlugin.AlertForm @@ -79,7 +89,7 @@ AlertsPlugin.AlertsManager - + Alert message created and displayed. @@ -165,15 +175,105 @@ BiblesPlugin - + &Bible &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. + + + &Edit Bible + + + + + &Delete Bible + + + + + &Preview Bible + + + + + &Show Live + &Mostrar Ao Vivo + + + + Import a Bible + + + + + Load a new Bible + + + + + Add a new Bible + + + + + Edit the selected Bible + + + + + Delete the selected Bible + + + + + Delete the selected Bibles + + + + + Preview the selected Bible + + + + + Preview the selected Bibles + + + + + Send the selected Bible live + + + + + Send the selected Bibles live + + + + + Add the selected Verse to the service + + + + + Add the selected Verses to the service + + + + + Bible + Bíblia + + + + Bibles + Bíblias + BiblesPlugin.BibleDB @@ -554,112 +654,107 @@ Changes do not affect verses already in the service. BiblesPlugin.MediaItem - - Bible - Bíblia - - - + Quick Rápido - + Advanced Avançado - + Version: Versão: - + Dual: Duplo: - + Search type: Tipo de busca: - + Find: Buscar: - + Search Buscar - + Results: Resultados: - + Book: Livro: - + Chapter: Capítulo: - + Verse: Versículo: - + From: De: - + To: Para: - + Verse Search Busca de Versículos - + Text Search Busca de Texto - + Clear Limpar - + Keep Manter - + No Book Found Nenhum Livro Encontrado - + No matching book could be found in this Bible. Nenhum livro foi encontrado nesta Bíblia - + etc - + Bible not fully loaded. @@ -675,7 +770,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 songs are. This plugin provides greater freedom over the songs plugin. @@ -701,102 +796,102 @@ Changes do not affect verses already in the service. CustomPlugin.EditCustomForm - + Edit Custom Slides Editar Slides Customizados - + Move slide up one position. - + Move slide down one position. Mover slide uma posição para baixo. - + &Title: &Título: - + Add New Adicionar Novo - + Add a new slide at bottom. - + Edit Editar - + Edit the selected slide. Editar o slide selecionado. - + Edit All Editar Todos - + Edit all the slides at once. - + Save Salvar - + Save the slide currently being edited. - + Delete Deletar - + Delete the selected slide. - + Clear Limpar - + Clear edit area Limpar área de edição - + Split Slide - + Split a slide into two by inserting a slide splitter. Dividir um slide em dois, inserindo um divisor de slides. - + The&me: - + &Credits: &Créditos: @@ -829,73 +924,226 @@ 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 + + + &Edit Custom + + + + + &Delete Custom + + + + + &Preview Custom + + + + + &Show Live + &Mostrar Ao Vivo + + + + Import a Custom + + + + + Load a new Custom + + + + + Add a new Custom + + + + + Edit the selected Custom + + + + + Delete the selected Custom + + + + + Preview the selected Custom + + + + + Send the selected Custom live + + + + + Add the selected Custom to the service + + + + + Custom + Customizado + + ImagePlugin - + <strong>Image Plugin</strong><br />The image plugin provides displaying of images.<br />One of the distinguishing features of this plugin is the ability to group a number of images together in the service manager, making the displaying of multiple images easier. This plugin can also make use of OpenLP's "timed looping" feature to create a slide show that runs automatically. In addition to this, images from the plugin can be used to override the current theme's background, which renders text-based items like songs with the selected image as a background instead of the background provided by the theme. + + + &Edit Image + + + + + &Delete Image + + + + + &Preview Image + + + + + &Show Live + &Mostrar Ao Vivo + + + + Import a Image + + + + + Load a new Image + + + + + Add a new Image + + + + + Edit the selected Image + + + + + Delete the selected Image + + + + + Delete the selected Images + + + + + Preview the selected Image + + + + + Preview the selected Images + + + + + Send the selected Image live + + + + + Send the selected Images live + + + + + Add the selected Image to the service + + + + + Add the selected Images to the service + + + + + Image + Imagem + + + + Images + Imagens + ImagePlugin.MediaItem - - Image - Imagem - - - + Select Image(s) Selecionar Imagem(s) - + All Files Todos os Arquivos - + Replace Live Background - + Replace Background Substituir Plano de Fundo - + + Reset Live Background + + + + You must select an image to delete. - + Image(s) Imagem(s) - + You must select an image to replace the background with. - + You must select a media file to replace the background with. @@ -903,35 +1151,100 @@ Changes do not affect verses already in the service. MediaPlugin - + <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. + + + &Edit Media + + + + + &Delete Media + + + + + &Preview Media + + + + + &Show Live + &Mostrar Ao Vivo + + + + Import a Media + + + + + Load a new Media + + + + + Add a new Media + + + + + Edit the selected Media + + + + + Delete the selected Media + + + + + Preview the selected Media + + + + + Send the selected Media live + + + + + Add the selected Media to the service + + + + + Media + Mídia + MediaPlugin.MediaItem - - Media - Mídia - - - + Select Media Selecionar Mídia - + Replace Live Background - + Replace Background Substituir Plano de Fundo - + + Media + Mídia + + + You must select a media file to delete. @@ -939,7 +1252,7 @@ Changes do not affect verses already in the service. OpenLP - + Image Files @@ -1238,317 +1551,297 @@ This General Public License does not permit incorporating your program into prop OpenLP.AmendThemeForm - + Theme Maintenance Manutenção do Tema - + Theme &name: &Nome do Tema: - - &Visibility: - - - - - Opaque - Opaco - - - - Transparent - Transparente - - - + Type: Tipo: - + Solid Color Cor Sólida - + Gradient Gradiente - + Image Imagem - + Image: Imagem: - + Gradient: - + Horizontal Horizontal - + Vertical Vertical - + Circular Circular - + &Background - + Main Font Fonte Principal - + Font: Fonte: - + Color: - + Size: Tamanho: - + pt pt - - Wrap indentation: - - - - + Adjust line spacing: - + Normal Normal - + Bold Negrito - + Italics Itálico - + Bold/Italics Negrito/Itálico - + Style: Estilo: - + Display Location Local de Exibição - + Use default location - + X position: - + Y position: - + Width: Largura: - + Height: Altura: - + px px - + &Main Font - + Footer Font Fonte do Rodapé - + &Footer Font Fonte do &Rodapé - + Outline Esboço - + Outline size: - + Outline color: - + Show outline: - + Shadow Sombra - + Shadow size: - + Shadow color: - + Show shadow: - + Alignment Alinhamento - + Horizontal align: - + Left Esquerda - + Right Direita - + Center Centralizar - + Vertical align: - + Top Topo - + Middle Meio - + Bottom - + Slide Transition Transição do Slide - + Transition active - + &Other Options &Outras Opções - + Preview - + All Files Todos os Arquivos - + Select Image Selecionar Imagem - + First color: - + Second color: - + Slide height is %s rows. @@ -1697,7 +1990,7 @@ This General Public License does not permit incorporating your program into prop OpenLP.MainWindow - + OpenLP 2.0 OpenLP 2.0 @@ -1707,406 +2000,404 @@ This General Public License does not permit incorporating your program into prop Inglês - + &File &Arquivo - + &Import &Importar - + &Export &Exportar - + &View &Visualizar - + M&ode M&odo - + &Tools &Ferramentas - + &Settings &Configurações - + &Language &Idioma - + &Help &Ajuda - + Media Manager Gerenciador de Mídia - + Service Manager Gerenciador de Culto - + Theme Manager Gerenciador de Temas - + &New &Novo - + New Service Novo Culto - + Create a new service. - + Ctrl+N Ctrl+N - + &Open &Abrir - + Open Service - + Open an existing service. - + Ctrl+O Ctrl+O - + &Save &Salvar - + Save Service Salvar Culto - + Save the current service to disk. - + Ctrl+S Ctrl+S - + Save &As... Salvar &Como... - + Save Service As Salvar Culto Como - + Save the current service under a new name. - + Ctrl+Shift+S - + E&xit S&air - + Quit OpenLP Fechar o OpenLP - + Alt+F4 Alt+F4 - + &Theme &Tema - + &Configure OpenLP... &Configurar o OpenLP... - + &Media Manager &Gerenciador de Mídia - + Toggle Media Manager Alternar Gerenciador de Mídia - + Toggle the visibility of the media manager. - + F8 F8 - + &Theme Manager &Gerenciador de Temas - + Toggle Theme Manager Alternar para Gerenciamento de Temas - + Toggle the visibility of the theme manager. Alternar a visibilidade do Gerenciador de Temas. - + F10 F10 - + &Service Manager &Gerenciador de Culto - + Toggle Service Manager Alternar para o Gerenciador de Cultos - + Toggle the visibility of the service manager. - + F9 F9 - + &Preview Panel &Painel de Pré-Visualização - + Toggle Preview Panel Alternar para Painel de Pré-Visualização - + Toggle the visibility of the preview panel. - + F11 F11 - + &Live Panel - + Toggle Live Panel - + Toggle the visibility of the live panel. - + F12 F12 - + &Plugin List &Lista de Plugin - + List the Plugins Listar os Plugins - + Alt+F7 Alt+F7 - + &User Guide &Guia do Usuário - + &About &Sobre - + More information about OpenLP Mais informações sobre o OpenLP - + Ctrl+F1 Ctrl+F1 - + &Online Help &Ajuda Online - + &Web Site &Web Site - + &Auto Detect - + Use the system language, if available. Usar o idioma do sistema, caso disponível. - + Set the interface language to %s Definir o idioma da interface como %s - + Add &Tool... - + Add an application to the list of tools. - + &Default - + Set the view mode back to the default. - + &Setup - + Set the view mode to Setup. - + &Live &Ao Vivo - + 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 <a href="http://openlp.org/">http://openlp.org/</a>. - A versão %s do OpenLP já está disponível para download (você está usando a versão %s). - -Você pode baixar a versão mais recente em <a href="http://openlp.org/">http://openlp.org/</a>. +You can download the latest version from http://openlp.org/. + - + OpenLP Version Updated Versão do OpenLP Atualizada - + OpenLP Main Display Blanked Tela Principal do OpenLP em Branco - + The Main Display has been blanked out A Tela Principal foi apagada - + Save Changes to Service? Salvar Mudanças no Culto? - + Your service has changed. Do you want to save those changes? - + Default Theme: %s Tema padrão: %s @@ -2114,157 +2405,117 @@ Você pode baixar a versão mais recente em <a href="http://openlp.org/& OpenLP.MediaManagerItem - + No Items Selected - + Import %s - - Import a %s - Importar um %s - - - + Load %s - - Load a new %s - - - - + New %s - - Add a new %s - Adicionar um novo %s - - - + Edit %s - - Edit the selected %s - Editar o %s selecionado - - - + Delete %s - - Delete the selected item - Deletar o item selecionado - - - + Preview %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 ao Culto - - Add the selected item(s) to the service - Adicionar o item selecionado ao culto - - - + &Edit %s - + &Delete %s &Deletar %s - + &Preview %s - + &Show Live &Mostrar Ao Vivo - + &Add to Service &Adicionar ao Culto - + &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. Você precisa selecionar um ou mais itens. - + No items selected - + You must select one or more items 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. @@ -2363,7 +2614,7 @@ Você pode baixar a versão mais recente em <a href="http://openlp.org/& Criar um novo culto - + Open Service @@ -2373,7 +2624,7 @@ Você pode baixar a versão mais recente em <a href="http://openlp.org/& Carregar um culto existente - + Save Service Salvar Culto @@ -2483,48 +2734,48 @@ Você pode baixar a versão mais recente em <a href="http://openlp.org/& &Alterar Tema do Item - + Save Changes to Service? Salvar Mudanças no Culto? - + 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) - + Your current service is unsaved, do you want to save the changes before opening a new one? - + Error 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 @@ -2548,72 +2799,62 @@ The content encoding is not UTF-8. OpenLP.SlideController - + Live Ao Vivo - + Preview - - Move to first - Mover para o primeiro - - - + Move to previous Mover para o anterior - + Move to next Mover para o próximo - - Move to last - Mover para o último - - - + Hide - + Move to live Mover para ao vivo - + Edit and re-preview Song Editar e pré-visualizar Música novamente - + 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 @@ -2623,10 +2864,23 @@ The content encoding is not UTF-8. Ir ao Versículo + + OpenLP.SpellTextEdit + + + Spelling Suggestions + + + + + Formatting Tags + + + OpenLP.ThemeManager - + New Theme Novo Tema @@ -2696,7 +2950,7 @@ The content encoding is not UTF-8. - + %s (default) @@ -2721,7 +2975,7 @@ The content encoding is not UTF-8. - + Error Erro @@ -2781,24 +3035,24 @@ 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. A codificação do conteúdo não é UTF-8. - + File is not a valid theme. O arquivo não é um tema válido. - + Theme Exists Tema Existe - + A theme with this name already exists. Would you like to overwrite it? Já existe um tema com este nome. Deseja sobreescrevê-lo? @@ -2854,55 +3108,140 @@ A codificação do conteúdo não é UTF-8. PresentationPlugin - + <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. + + + &Edit Presentation + + + + + &Delete Presentation + + + + + &Preview Presentation + + + + + &Show Live + &Mostrar Ao Vivo + + + + Import a Presentation + + + + + Load a new Presentation + + + + + Add a new Presentation + + + + + Edit the selected Presentation + + + + + Delete the selected Presentation + + + + + Delete the selected Presentations + + + + + Preview the selected Presentation + + + + + Preview the selected Presentations + + + + + Send the selected Presentation live + + + + + Send the selected Presentations live + + + + + Add the selected Presentation to the service + + + + + Add the selected Presentations to the service + + + + + Presentation + Apresentação + + + + Presentations + Apresentações + PresentationPlugin.MediaItem - - Presentation - Apresentação - - - + Select Presentation(s) Selecionar Apresentação(ões) - + Automatic - + Present using: Apresentar usando: - + File Exists - + A presentation with that filename already exists. Uma apresentação com este nome já existe. - + Unsupported File - + This type of presentation is not supported - + You must select an item to delete. @@ -2933,10 +3272,20 @@ A codificação do conteúdo não é UTF-8. RemotePlugin - + <strong>Remote Plugin</strong><br />The remote plugin provides the ability to send messages to a running version of OpenLP on a different computer via a web browser or through the remote API. + + + Remote + + + + + Remotes + Remoto + RemotePlugin.RemoteTab @@ -2964,45 +3313,55 @@ A codificação do conteúdo não é UTF-8. SongUsagePlugin - + &Song Usage Tracking - + &Delete Tracking Data - + Delete song usage data up to a specified date. - + &Extract Tracking Data - + Generate a report on song usage. - + Toggle Tracking - + Toggle the tracking of song usage. - + <strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services. + + + SongUsage + + + + + Songs + Músicas + SongUsagePlugin.SongUsageDeleteForm @@ -3053,20 +3412,110 @@ A codificação do conteúdo não é UTF-8. SongsPlugin - + &Song &Música - + Import songs using the import wizard. - + <strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs. + + + &Edit Song + + + + + &Delete Song + + + + + &Preview Song + + + + + &Show Live + &Mostrar Ao Vivo + + + + Import a Song + + + + + Load a new Song + + + + + Add a new Song + + + + + Edit the selected Song + + + + + Delete the selected Song + + + + + Delete the selected Songs + + + + + Preview the selected Song + + + + + Preview the selected Songs + + + + + Send the selected Song live + + + + + Send the selected Songs live + + + + + Add the selected Song to the service + + + + + Add the selected Songs to the service + + + + + Song + Música + + + + Songs + Músicas + SongsPlugin.AuthorsForm @@ -3114,232 +3563,237 @@ A codificação do conteúdo não é UTF-8. SongsPlugin.EditSongForm - + Song Editor Editor de Músicas - + &Title: &Título: - + Alt&ernate title: Título &Alternativo: - + &Lyrics: - + &Verse order: Ordem das &estrofes: - + &Add %Adicionar - + &Edit &Editar - + Ed&it All - + &Delete &Deletar - + Title && Lyrics Título && Letras - + Authors Autores - + &Add to Song &Adicionar à Música - + &Remove &Remover - + &Manage Authors, Topics, Song Books - + Topic Tópico - + A&dd to Song A&dicionar uma Música - + R&emove R&emover - + Song Book Livro de Músicas - - - Authors, Topics && Song Book - - - - - Theme - Tema - - New &Theme + Song No.: - Copyright Information - Informação de Direitos Autorais - - - - © + Authors, Topics && Song Book + Theme + Tema + + + + New &Theme + + + + + Copyright Information + Informação de Direitos Autorais + + + + © + + + + CCLI number: - + Comments Comentários - + Theme, Copyright Info && Comments Tema, Direitos Autorais && Comentários - + Save && Preview Salvar && Pré-Visualizar - + Add Author Adicionar Autor - + This author does not exist, do you want to add them? Este autor não existe, deseja adicioná-lo? - + Error Erro - + This author is already in the list. - + 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. - + Add Topic - + This topic does not exist, do you want to add it? Este tópico não existe, deseja adicioná-lo? - + This topic is already in the list. Este tópico já está na lista. - + 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. 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. - + 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? Você não adicionou nenhum autor a esta música. Deseja adicionar um agora? - + The verse order is invalid. There is no verse corresponding to %s. Valid entries are %s. - + You have not used %s anywhere in the verse order. Are you sure you want to save the song like this? - + Add Book - + This song book does not exist, do you want to add it? Este hinário não existe, deseja adicioná-lo? @@ -3347,17 +3801,17 @@ A codificação do conteúdo não é UTF-8. SongsPlugin.EditVerseForm - + Edit Verse Editar Versículo - + &Verse type: Tipo de &Versículo: - + &Insert @@ -3365,232 +3819,237 @@ 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. - + 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 - + 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... - + Add Files... - + Remove File(s) - + Importing Importando - + Please wait while your songs are imported. Por favor aguarde enquanto as músicas são importadas. - + Ready. Pronto. - + %p% @@ -3598,82 +4057,77 @@ A codificação do conteúdo não é UTF-8. SongsPlugin.MediaItem - - Song - Música - - - + Song Maintenance Manutenção de Músicas - + Maintain the lists of authors, topics and books Gerenciar as listas de autores, tópicos e livros - + Search: Buscar: - + Type: Tipo: - + Clear Limpar - + Search Buscar - + Titles Títulos - + Lyrics Letras - + 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: @@ -3709,12 +4163,12 @@ A codificação do conteúdo não é UTF-8. SongsPlugin.SongImport - + copyright - + © @@ -3722,12 +4176,12 @@ A codificação do conteúdo não é UTF-8. SongsPlugin.SongImportForm - + Finished import. Importação Finalizada. - + Your song import failed. @@ -3770,112 +4224,112 @@ A codificação do conteúdo não é UTF-8. &Deletar - + Error Erro - + Could not add your author. - + This author already exists. - + Could not add your topic. Não foi possível adicionar o seu tópico. - + This topic already exists. - + Could not add your book. Não foi possível adicionar o livro. - + This book already exists. - + 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? - + This author cannot be deleted, they are currently assigned to at least one song. - + 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 - + Are you sure you want to delete the selected book? Você tem certeza que deseja deletar o livro selecionado? - + This book cannot be deleted, it is currently assigned to at least one song. - + No book selected! Nenhum livro selecionado! diff --git a/resources/i18n/openlp_sv.ts b/resources/i18n/openlp_sv.ts index 606e6e21a..a34589a06 100644 --- a/resources/i18n/openlp_sv.ts +++ b/resources/i18n/openlp_sv.ts @@ -3,20 +3,30 @@ AlertsPlugin - + &Alert &Alarm - + Show an alert message. - + <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of nursery alerts on the display screen + + + Alert + + + + + Alerts + Alarm + AlertsPlugin.AlertForm @@ -79,7 +89,7 @@ AlertsPlugin.AlertsManager - + Alert message created and displayed. @@ -165,15 +175,105 @@ BiblesPlugin - + &Bible &Bibel - + <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display bible verses from different sources during the service. + + + &Edit Bible + + + + + &Delete Bible + + + + + &Preview Bible + + + + + &Show Live + &Visa Live + + + + Import a Bible + + + + + Load a new Bible + + + + + Add a new Bible + + + + + Edit the selected Bible + + + + + Delete the selected Bible + + + + + Delete the selected Bibles + + + + + Preview the selected Bible + + + + + Preview the selected Bibles + + + + + Send the selected Bible live + + + + + Send the selected Bibles live + + + + + Add the selected Verse to the service + + + + + Add the selected Verses to the service + + + + + Bible + Bibel + + + + Bibles + Biblar + BiblesPlugin.BibleDB @@ -554,112 +654,107 @@ Changes do not affect verses already in the service. 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. @@ -675,7 +770,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 songs are. This plugin provides greater freedom over the songs plugin. @@ -701,102 +796,102 @@ Changes do not affect verses already in the service. CustomPlugin.EditCustomForm - + Edit Custom Slides Redigera anpassad bild - + Move slide up one position. - + Move slide down one position. - + &Title: - + Add New Lägg till ny - + Add a new slide at bottom. - + Edit Redigera - + Edit the selected slide. - + Edit All Redigera alla - + Edit all the slides at once. - + Save Spara - + Save the slide currently being edited. - + Delete Ta bort - + Delete the selected slide. - + Clear - + Clear edit area Töm redigeringsområde - + Split Slide - + Split a slide into two by inserting a slide splitter. - + The&me: - + &Credits: @@ -829,73 +924,226 @@ Changes do not affect verses already in the service. CustomPlugin.MediaItem - - Custom - - - - + You haven't selected an item to edit. - + You haven't selected an item to delete. + + CustomsPlugin + + + &Edit Custom + + + + + &Delete Custom + + + + + &Preview Custom + + + + + &Show Live + &Visa Live + + + + Import a Custom + + + + + Load a new Custom + + + + + Add a new Custom + + + + + Edit the selected Custom + + + + + Delete the selected Custom + + + + + Preview the selected Custom + + + + + Send the selected Custom live + + + + + Add the selected Custom to the service + + + + + Custom + + + ImagePlugin - + <strong>Image Plugin</strong><br />The image plugin provides displaying of images.<br />One of the distinguishing features of this plugin is the ability to group a number of images together in the service manager, making the displaying of multiple images easier. This plugin can also make use of OpenLP's "timed looping" feature to create a slide show that runs automatically. In addition to this, images from the plugin can be used to override the current theme's background, which renders text-based items like songs with the selected image as a background instead of the background provided by the theme. + + + &Edit Image + + + + + &Delete Image + + + + + &Preview Image + + + + + &Show Live + &Visa Live + + + + Import a Image + + + + + Load a new Image + + + + + Add a new Image + + + + + Edit the selected Image + + + + + Delete the selected Image + + + + + Delete the selected Images + + + + + Preview the selected Image + + + + + Preview the selected Images + + + + + Send the selected Image live + + + + + Send the selected Images live + + + + + Add the selected Image to the service + + + + + Add the selected Images to the service + + + + + Image + Bild + + + + Images + Bilder + 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. @@ -903,35 +1151,100 @@ Changes do not affect verses already in the service. MediaPlugin - + <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. + + + &Edit Media + + + + + &Delete Media + + + + + &Preview Media + + + + + &Show Live + &Visa Live + + + + Import a Media + + + + + Load a new Media + + + + + Add a new Media + + + + + Edit the selected Media + + + + + Delete the selected Media + + + + + Preview the selected Media + + + + + Send the selected Media live + + + + + Add the selected Media to the service + + + + + Media + Media + MediaPlugin.MediaItem - - Media - Media - - - + Select Media Välj media - + Replace Live Background - + Replace Background - + + Media + Media + + + You must select a media file to delete. @@ -939,7 +1252,7 @@ Changes do not affect verses already in the service. OpenLP - + Image Files @@ -1201,317 +1514,297 @@ This General Public License does not permit incorporating your program into prop OpenLP.AmendThemeForm - + Theme Maintenance Temaunderhåll - + Theme &name: - - &Visibility: - - - - - Opaque - Ogenomskinlig - - - - Transparent - Genomskinlig - - - + Type: Typ: - + Solid Color Solid Färg - + Gradient Stegvis - + Image Bild - + Image: Bild: - + Gradient: - + Horizontal Horisontellt - + Vertical Vertikal - + Circular Cirkulär - + &Background - + Main Font Huvudfont - + Font: Font: - + Color: - + Size: Storlek: - + pt pt - - Wrap indentation: - - - - + Adjust line spacing: - + Normal Normal - + Bold Fetstil - + Italics Kursiv - + Bold/Italics Fetstil/kursiv - + Style: - + Display Location Visa plats - + Use default location - + X position: - + Y position: - + Width: Bredd: - + Height: Höjd: - + px px - + &Main Font - + Footer Font Sidfot-font - + &Footer Font - + Outline Kontur - + Outline size: - + Outline color: - + Show outline: - + Shadow Skugga - + Shadow size: - + Shadow color: - + Show shadow: - + Alignment Justering - + Horizontal align: - + Left Vänster - + Right Höger - + Center Centrera - + Vertical align: - + Top Topp - + Middle Mitten - + Bottom - + Slide Transition Bildövergång - + Transition active - + &Other Options - + Preview Förhandsgranska - + All Files - + Select Image - + First color: - + Second color: - + Slide height is %s rows. @@ -1660,7 +1953,7 @@ This General Public License does not permit incorporating your program into prop OpenLP.MainWindow - + OpenLP 2.0 OpenLP 2.0 @@ -1670,404 +1963,404 @@ This General Public License does not permit incorporating your program into prop Engelska - + &File &Fil - + &Import &Importera - + &Export &Exportera - + &View &Visa - + M&ode &Läge - + &Tools &Verktyg - + &Settings &Inställningar - + &Language &Språk - + &Help &Hjälp - + Media Manager Mediahanterare - + Service Manager Mötesplaneringshanterare - + Theme Manager Temahanterare - + &New &Ny - + New Service - + Create a new service. - + Ctrl+N Ctrl+N - + &Open &Öppna - + Open Service - + Open an existing service. - + Ctrl+O Ctrl+O - + &Save &Spara - + Save Service - + Save the current service to disk. - + Ctrl+S Ctrl+S - + Save &As... S&para som... - + Save Service As Spara mötesplanering som... - + Save the current service under a new name. - + Ctrl+Shift+S - + E&xit &Avsluta - + Quit OpenLP Stäng OpenLP - + Alt+F4 Alt+F4 - + &Theme &Tema - + &Configure OpenLP... - + &Media Manager &Mediahanterare - + Toggle Media Manager Växla mediahanterare - + Toggle the visibility of the media manager. - + F8 F8 - + &Theme Manager &Temahanterare - + Toggle Theme Manager Växla temahanteraren - + Toggle the visibility of the theme manager. - + F10 F10 - + &Service Manager &Mötesplaneringshanterare - + Toggle Service Manager Växla mötesplaneringshanterare - + Toggle the visibility of the service manager. - + F9 F9 - + &Preview Panel &Förhandsgranskning - + Toggle Preview Panel Växla förhandsgranskningspanel - + Toggle the visibility of the preview panel. - + F11 F11 - + &Live Panel - + Toggle Live Panel - + Toggle the visibility of the live panel. - + F12 F12 - + &Plugin List &Pluginlista - + List the Plugins Lista Plugin - + Alt+F7 Alt+F7 - + &User Guide &Användarguide - + &About &Om - + More information about OpenLP Mer information om OpenLP - + Ctrl+F1 Ctrl+F1 - + &Online Help &Online-hjälp - + &Web Site &Webbsida - + &Auto Detect - + Use the system language, if available. - + Set the interface language to %s - + Add &Tool... - + Add an application to the list of tools. - + &Default - + Set the view mode back to the default. - + &Setup - + Set the view mode to Setup. - + &Live &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 <a href="http://openlp.org/">http://openlp.org/</a>. +You can download the latest version from http://openlp.org/. - + OpenLP Version Updated 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 @@ -2075,157 +2368,117 @@ You can download the latest version from <a href="http://openlp.org/&quo 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. @@ -2324,7 +2577,7 @@ You can download the latest version from <a href="http://openlp.org/&quo Skapa en ny mötesplanering - + Open Service @@ -2334,7 +2587,7 @@ You can download the latest version from <a href="http://openlp.org/&quo Ladda en planering - + Save Service @@ -2444,48 +2697,48 @@ You can download the latest version from <a href="http://openlp.org/&quo &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 @@ -2509,72 +2762,62 @@ The content encoding is not UTF-8. OpenLP.SlideController - + Live Live - + Preview Förhandsgranska - - Move to first - Flytta till första - - - + Move to previous Flytta till föregående - + Move to next Flytta till nästa - - Move to last - Flytta till sist - - - + Hide - + Move to live Flytta till live - + Edit and re-preview Song Ändra och åter-förhandsgranska sång - + 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 @@ -2584,10 +2827,23 @@ The content encoding is not UTF-8. Hoppa till vers + + OpenLP.SpellTextEdit + + + Spelling Suggestions + + + + + Formatting Tags + + + OpenLP.ThemeManager - + New Theme Nytt Tema @@ -2657,7 +2913,7 @@ The content encoding is not UTF-8. - + %s (default) @@ -2682,7 +2938,7 @@ The content encoding is not UTF-8. - + Error Fel @@ -2742,23 +2998,23 @@ 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. Filen är inte ett giltigt tema. - + Theme Exists Temat finns - + A theme with this name already exists. Would you like to overwrite it? @@ -2814,55 +3070,140 @@ The content encoding is not UTF-8. PresentationPlugin - + <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. + + + &Edit Presentation + + + + + &Delete Presentation + + + + + &Preview Presentation + + + + + &Show Live + &Visa Live + + + + Import a Presentation + + + + + Load a new Presentation + + + + + Add a new Presentation + + + + + Edit the selected Presentation + + + + + Delete the selected Presentation + + + + + Delete the selected Presentations + + + + + Preview the selected Presentation + + + + + Preview the selected Presentations + + + + + Send the selected Presentation live + + + + + Send the selected Presentations live + + + + + Add the selected Presentation to the service + + + + + Add the selected Presentations to the service + + + + + Presentation + Presentation + + + + Presentations + Presentationer + 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. @@ -2893,10 +3234,20 @@ The content encoding is not UTF-8. RemotePlugin - + <strong>Remote Plugin</strong><br />The remote plugin provides the ability to send messages to a running version of OpenLP on a different computer via a web browser or through the remote API. + + + Remote + + + + + Remotes + Fjärrstyrningar + RemotePlugin.RemoteTab @@ -2924,45 +3275,55 @@ The content encoding is not UTF-8. SongUsagePlugin - + &Song Usage Tracking - + &Delete Tracking Data - + Delete song usage data up to a specified date. - + &Extract Tracking Data - + Generate a report on song usage. - + Toggle Tracking - + Toggle the tracking of song usage. - + <strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services. + + + SongUsage + + + + + Songs + Sånger + SongUsagePlugin.SongUsageDeleteForm @@ -3013,20 +3374,110 @@ The content encoding is not UTF-8. SongsPlugin - + &Song &Sång - + Import songs using the import wizard. - + <strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs. + + + &Edit Song + + + + + &Delete Song + + + + + &Preview Song + + + + + &Show Live + &Visa Live + + + + Import a Song + + + + + Load a new Song + + + + + Add a new Song + + + + + Edit the selected Song + + + + + Delete the selected Song + + + + + Delete the selected Songs + + + + + Preview the selected Song + + + + + Preview the selected Songs + + + + + Send the selected Song live + + + + + Send the selected Songs live + + + + + Add the selected Song to the service + + + + + Add the selected Songs to the service + + + + + Song + Sång + + + + Songs + Sånger + SongsPlugin.AuthorsForm @@ -3074,232 +3525,237 @@ The content encoding is not UTF-8. SongsPlugin.EditSongForm - + Song Editor Sångredigerare - + &Title: - + Alt&ernate title: - + &Lyrics: - + &Verse order: - + &Add - + &Edit &Redigera - + Ed&it All - + &Delete - + Title && Lyrics Titel && Sångtexter - + Authors - + &Add to Song &Lägg till i sång - + &Remove &Ta bort - + &Manage Authors, Topics, Song Books - + Topic Ämne - + A&dd to Song Lägg till i sång - + R&emove Ta &bort - + Song Book Sångbok - - - Authors, Topics && Song Book - - - - - Theme - Tema - - New &Theme + Song No.: - Copyright Information - Copyright-information - - - - © + Authors, Topics && Song Book + Theme + Tema + + + + New &Theme + + + + + Copyright Information + Copyright-information + + + + © + + + + CCLI number: - + Comments Kommentarer - + Theme, Copyright Info && Comments Tema, copyright-info && kommentarer - + Save && Preview Spara && förhandsgranska - + Add Author - + This author does not exist, do you want to add them? - + Error Fel - + This author is already in the list. - + 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. - + Add Topic - + This topic does not exist, do you want to add it? - + This topic is already in the list. - + 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 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? - + Add Book - + This song book does not exist, do you want to add it? @@ -3307,17 +3763,17 @@ The content encoding is not UTF-8. SongsPlugin.EditVerseForm - + Edit Verse Redigera vers - + &Verse type: - + &Insert @@ -3325,232 +3781,237 @@ 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... - + Add Files... - + Remove File(s) - + Importing Importerar - + Please wait while your songs are imported. - + Ready. Redo. - + %p% @@ -3558,82 +4019,77 @@ The content encoding is not UTF-8. 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: @@ -3669,12 +4125,12 @@ The content encoding is not UTF-8. SongsPlugin.SongImport - + copyright - + © @@ -3682,12 +4138,12 @@ The content encoding is not UTF-8. SongsPlugin.SongImportForm - + Finished import. Importen är färdig. - + Your song import failed. @@ -3730,112 +4186,112 @@ The content encoding is not UTF-8. - + Error Fel - + 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. - + Delete Author Ta bort låtskrivare - + Are you sure you want to delete the selected author? Är du säker på att du vill ta bort den valda låtskrivaren? - + This author cannot be deleted, they are currently assigned to at least one song. - + No author selected! Ingen författare vald! - + Delete Topic Ta bort ämne - + Are you sure you want to delete the selected topic? Är du säker på att du vill ta bort valt ämne? - + This topic cannot be deleted, it is currently assigned to at least one song. - + No topic selected! Inget ämne valt! - + Delete Book Ta bort bok - + Are you sure you want to delete the selected book? Är du säker på att du vill ta bort vald bok? - + This book cannot be deleted, it is currently assigned to at least one song. - + No book selected! Ingen bok vald!