diff --git a/.bzrignore b/.bzrignore index 191ba49fd..073fb531a 100644 --- a/.bzrignore +++ b/.bzrignore @@ -18,3 +18,4 @@ _eric4project .pylint.d *.qm openlp/core/resources.py.old +*.qm diff --git a/openlp/core/lib/__init__.py b/openlp/core/lib/__init__.py index f62778820..6eb60b20f 100644 --- a/openlp/core/lib/__init__.py +++ b/openlp/core/lib/__init__.py @@ -200,7 +200,7 @@ def check_item_selected(list_widget, message): """ if not list_widget.selectedIndexes(): QtGui.QMessageBox.information(list_widget.parent(), - translate('MediaManagerItem', 'No Items Selected'), message) + translate('OpenLP.MediaManagerItem', 'No Items Selected'), message) return False return True diff --git a/openlp/core/lib/mediamanageritem.py b/openlp/core/lib/mediamanageritem.py index cad0b35cb..8c7dd52bd 100644 --- a/openlp/core/lib/mediamanageritem.py +++ b/openlp/core/lib/mediamanageritem.py @@ -208,61 +208,61 @@ class MediaManagerItem(QtGui.QWidget): ## Import Button ## if self.hasImportIcon: self.addToolbarButton( - unicode(translate('MediaManagerItem', 'Import %s')) % + unicode(translate('OpenLP.MediaManagerItem', 'Import %s')) % self.PluginNameShort, - unicode(translate('MediaManagerItem', 'Import a %s')) % + unicode(translate('OpenLP.MediaManagerItem', 'Import a %s')) % self.pluginNameVisible, u':/general/general_import.png', self.onImportClick) ## File Button ## if self.hasFileIcon: self.addToolbarButton( - unicode(translate('MediaManagerItem', 'Load %s')) % + unicode(translate('OpenLP.MediaManagerItem', 'Load %s')) % self.PluginNameShort, - unicode(translate('MediaManagerItem', 'Load a new %s')) % + unicode(translate('OpenLP.MediaManagerItem', 'Load a new %s')) % self.pluginNameVisible, u':/general/general_open.png', self.onFileClick) ## New Button ## if self.hasNewIcon: self.addToolbarButton( - unicode(translate('MediaManagerItem', 'New %s')) % + unicode(translate('OpenLP.MediaManagerItem', 'New %s')) % self.PluginNameShort, - unicode(translate('MediaManagerItem', 'Add a new %s')) % + unicode(translate('OpenLP.MediaManagerItem', 'Add a new %s')) % self.pluginNameVisible, u':/general/general_new.png', self.onNewClick) ## Edit Button ## if self.hasEditIcon: self.addToolbarButton( - unicode(translate('MediaManagerItem', 'Edit %s')) % + unicode(translate('OpenLP.MediaManagerItem', 'Edit %s')) % self.PluginNameShort, unicode(translate( - 'MediaManagerItem', 'Edit the selected %s')) % + 'OpenLP.MediaManagerItem', 'Edit the selected %s')) % self.pluginNameVisible, u':/general/general_edit.png', self.onEditClick) ## Delete Button ## if self.hasDeleteIcon: self.addToolbarButton( - unicode(translate('MediaManagerItem', 'Delete %s')) % + unicode(translate('OpenLP.MediaManagerItem', 'Delete %s')) % self.PluginNameShort, - translate('MediaManagerItem', 'Delete the selected item'), + translate('OpenLP.MediaManagerItem', 'Delete the selected item'), u':/general/general_delete.png', self.onDeleteClick) ## Separator Line ## self.addToolbarSeparator() ## Preview ## self.addToolbarButton( - unicode(translate('MediaManagerItem', 'Preview %s')) % + unicode(translate('OpenLP.MediaManagerItem', 'Preview %s')) % self.PluginNameShort, - translate('MediaManagerItem', 'Preview the selected item'), + translate('OpenLP.MediaManagerItem', 'Preview the selected item'), u':/general/general_preview.png', self.onPreviewClick) ## Live Button ## self.addToolbarButton( u'Go Live', - translate('MediaManagerItem', 'Send the selected item live'), + translate('OpenLP.MediaManagerItem', 'Send the selected item live'), u':/general/general_live.png', self.onLiveClick) ## Add to service Button ## self.addToolbarButton( - unicode(translate('MediaManagerItem', 'Add %s to Service')) % + unicode(translate('OpenLP.MediaManagerItem', 'Add %s to Service')) % self.PluginNameShort, - translate('MediaManagerItem', + translate('OpenLP.MediaManagerItem', 'Add the selected item(s) to the service'), u':/general/general_add.png', self.onAddClick) @@ -288,7 +288,7 @@ class MediaManagerItem(QtGui.QWidget): self.listView.addAction( context_menu_action( self.listView, u':/general/general_edit.png', - unicode(translate('MediaManagerItem', '&Edit %s')) % + unicode(translate('OpenLP.MediaManagerItem', '&Edit %s')) % self.pluginNameVisible, self.onEditClick)) self.listView.addAction(context_menu_separator(self.listView)) @@ -296,31 +296,31 @@ class MediaManagerItem(QtGui.QWidget): self.listView.addAction( context_menu_action( self.listView, u':/general/general_delete.png', - unicode(translate('MediaManagerItem', '&Delete %s')) % + unicode(translate('OpenLP.MediaManagerItem', '&Delete %s')) % self.pluginNameVisible, 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('MediaManagerItem', '&Preview %s')) % + unicode(translate('OpenLP.MediaManagerItem', '&Preview %s')) % self.pluginNameVisible, self.onPreviewClick)) self.listView.addAction( context_menu_action( self.listView, u':/general/general_live.png', - translate('MediaManagerItem', '&Show Live'), + translate('OpenLP.MediaManagerItem', '&Show Live'), self.onLiveClick)) self.listView.addAction( context_menu_action( self.listView, u':/general/general_add.png', - translate('MediaManagerItem', '&Add to Service'), + translate('OpenLP.MediaManagerItem', '&Add to Service'), self.onAddClick)) if self.addToServiceItem: self.listView.addAction( context_menu_action( self.listView, u':/general/general_add.png', - translate('MediaManagerItem', + translate('OpenLP.MediaManagerItem', '&Add to selected Service Item'), self.onAddEditClick)) if QtCore.QSettings().value(u'advanced/double click live', @@ -440,8 +440,8 @@ class MediaManagerItem(QtGui.QWidget): """ if not self.listView.selectedIndexes() and not self.remoteTriggered: QtGui.QMessageBox.information(self, - translate('MediaManagerItem', 'No Items Selected'), - translate('MediaManagerItem', + translate('OpenLP.MediaManagerItem', 'No Items Selected'), + translate('OpenLP.MediaManagerItem', 'You must select one or more items to preview.')) else: log.debug(self.PluginNameShort + u' Preview requested') @@ -457,8 +457,8 @@ class MediaManagerItem(QtGui.QWidget): """ if not self.listView.selectedIndexes(): QtGui.QMessageBox.information(self, - translate('MediaManagerItem', 'No Items Selected'), - translate('MediaManagerItem', + translate('OpenLP.MediaManagerItem', 'No Items Selected'), + translate('OpenLP.MediaManagerItem', 'You must select one or more items to send live.')) else: log.debug(self.PluginNameShort + u' Live requested') @@ -473,8 +473,8 @@ class MediaManagerItem(QtGui.QWidget): """ if not self.listView.selectedIndexes() and not self.remoteTriggered: QtGui.QMessageBox.information(self, - translate('MediaManagerItem', 'No Items Selected'), - translate('MediaManagerItem', + translate('OpenLP.MediaManagerItem', 'No Items Selected'), + translate('OpenLP.MediaManagerItem', 'You must select one or more items.')) else: #Is it posssible to process multiple list items to generate multiple @@ -500,16 +500,16 @@ class MediaManagerItem(QtGui.QWidget): """ if not self.listView.selectedIndexes() and not self.remoteTriggered: QtGui.QMessageBox.information(self, - translate('MediaManagerItem', 'No items selected'), - translate('MediaManagerItem', + translate('OpenLP.MediaManagerItem', 'No items selected'), + translate('OpenLP.MediaManagerItem', 'You must select one or more items')) else: log.debug(self.PluginNameShort + u' Add requested') service_item = self.parent.serviceManager.getServiceItem() if not service_item: QtGui.QMessageBox.information(self, - translate('MediaManagerItem', 'No Service Item Selected'), - translate('MediaManagerItem', + translate('OpenLP.MediaManagerItem', 'No Service Item Selected'), + translate('OpenLP.MediaManagerItem', 'You must select an existing service item to add to.')) elif self.title.lower() == service_item.name.lower(): self.generateSlideData(service_item) @@ -518,8 +518,8 @@ class MediaManagerItem(QtGui.QWidget): else: #Turn off the remote edit update message indicator QtGui.QMessageBox.information(self, - translate('MediaManagerItem', 'Invalid Service Item'), - unicode(translate('MediaManagerItem', + translate('OpenLP.MediaManagerItem', 'Invalid Service Item'), + unicode(translate('OpenLP.MediaManagerItem', 'You must select a %s service item.')) % self.title) def buildServiceItem(self, item=None): @@ -535,3 +535,4 @@ class MediaManagerItem(QtGui.QWidget): return service_item else: return None + diff --git a/openlp/core/ui/aboutdialog.py b/openlp/core/ui/aboutdialog.py index 2537a3662..a48af11dc 100644 --- a/openlp/core/ui/aboutdialog.py +++ b/openlp/core/ui/aboutdialog.py @@ -105,8 +105,9 @@ class Ui_AboutDialog(object): QtCore.QMetaObject.connectSlotsByName(aboutDialog) def retranslateUi(self, aboutDialog): - aboutDialog.setWindowTitle(translate('AboutForm', 'About OpenLP')) - self.aboutTextEdit.setPlainText(translate('AboutForm', + aboutDialog.setWindowTitle(translate('OpenLP.AboutForm', + 'About OpenLP')) + self.aboutTextEdit.setPlainText(translate('OpenLP.AboutForm', 'OpenLP - Open Source Lyrics ' 'Projection\n' '\n' @@ -124,8 +125,8 @@ class Ui_AboutDialog(object): )) self.aboutNotebook.setTabText( self.aboutNotebook.indexOf(self.aboutTab), - translate('AboutForm', 'About')) - self.creditsTextEdit.setPlainText(translate('AboutForm', + translate('OpenLP.AboutForm', 'About')) + self.creditsTextEdit.setPlainText(translate('OpenLP.AboutForm', 'Project Lead\n' ' Raoul "superfly" Snyman\n' '\n' @@ -157,8 +158,8 @@ class Ui_AboutDialog(object): )) self.aboutNotebook.setTabText( self.aboutNotebook.indexOf(self.creditsTab), - translate('AboutForm', 'Credits')) - self.licenseTextEdit.setPlainText(translate('AboutForm', + translate('OpenLP.AboutForm', 'Credits')) + self.licenseTextEdit.setPlainText(translate('OpenLP.AboutForm', 'Copyright \xa9 2004-2010 Raoul Snyman\n' 'Portions copyright \xa9 2004-2010 ' 'Tim Bentley, Jonathan Corwin, Michael Gorven, Scott Guerrieri, ' @@ -549,6 +550,6 @@ class Ui_AboutDialog(object): 'instead of this License.')) self.aboutNotebook.setTabText( self.aboutNotebook.indexOf(self.licenseTab), - translate('AboutForm', 'License')) - self.contributeButton.setText(translate('AboutForm', 'Contribute')) - self.closeButton.setText(translate('AboutForm', 'Close')) + translate('OpenLP.AboutForm', 'License')) + self.contributeButton.setText(translate('OpenLP.AboutForm', 'Contribute')) + self.closeButton.setText(translate('OpenLP.AboutForm', 'Close')) diff --git a/openlp/core/ui/aboutform.py b/openlp/core/ui/aboutform.py index a96325bda..8ae391df6 100644 --- a/openlp/core/ui/aboutform.py +++ b/openlp/core/ui/aboutform.py @@ -44,7 +44,7 @@ class AboutForm(QtGui.QDialog, Ui_AboutDialog): about_text = about_text.replace(u'', self.applicationVersion[u'version']) if self.applicationVersion[u'build']: - build_text = unicode(translate('AboutForm', ' build %s')) % \ + build_text = unicode(translate('OpenLP.AboutForm', ' build %s')) % \ self.applicationVersion[u'build'] else: build_text = u'' @@ -61,3 +61,4 @@ class AboutForm(QtGui.QDialog, Ui_AboutDialog): url = u'http://www.openlp.org/en/documentation/introduction/' \ + u'contributing.html' webbrowser.open_new(url) + diff --git a/openlp/core/ui/advancedtab.py b/openlp/core/ui/advancedtab.py index c0c5a6109..a32dee333 100644 --- a/openlp/core/ui/advancedtab.py +++ b/openlp/core/ui/advancedtab.py @@ -45,7 +45,7 @@ class AdvancedTab(SettingsTab): Configure the UI elements for the tab. """ self.setObjectName(u'AdvancedTab') - self.tabTitleVisible = translate('AdvancedTab', 'Advanced') + self.tabTitleVisible = translate('OpenLP.AdvancedTab', 'Advanced') self.advancedTabLayout = QtGui.QHBoxLayout(self) self.advancedTabLayout.setSpacing(8) self.advancedTabLayout.setMargin(8) @@ -131,12 +131,12 @@ class AdvancedTab(SettingsTab): """ Setup the interface translation strings. """ - self.uiGroupBox.setTitle(translate('AdvancedTab', 'UI Settings')) + self.uiGroupBox.setTitle(translate('OpenLP.AdvancedTab', 'UI Settings')) self.recentLabel.setText( - translate('AdvancedTab', 'Number of recent files to display:')) - self.mediaPluginCheckBox.setText(translate('AdvancedTab', - 'Save currently selected media manager plugin')) - self.doubleClickLiveCheckBox.setText(translate('AdvancedTab', + translate('OpenLP.AdvancedTab', 'Number of recent files to display:')) + self.mediaPluginCheckBox.setText(translate('OpenLP.AdvancedTab', + 'Remember active media manager tab on startup')) + self.doubleClickLiveCheckBox.setText(translate('OpenLP.AdvancedTab', 'Double-click to send items straight to live (requires restart)')) # self.sharedDirGroupBox.setTitle( # translate('AdvancedTab', 'Central Data Store')) @@ -188,3 +188,4 @@ class AdvancedTab(SettingsTab): self.sharedLabel.setEnabled(checked) self.sharedTextEdit.setEnabled(checked) self.sharedPushButton.setEnabled(checked) + diff --git a/openlp/core/ui/amendthemedialog.py b/openlp/core/ui/amendthemedialog.py index 8fd26691f..c1e57ae45 100644 --- a/openlp/core/ui/amendthemedialog.py +++ b/openlp/core/ui/amendthemedialog.py @@ -657,152 +657,173 @@ class Ui_AmendThemeDialog(object): def retranslateUi(self, AmendThemeDialog): AmendThemeDialog.setWindowTitle( - translate('AmendThemeForm', 'Theme Maintenance')) + translate('OpenLP.AmendThemeForm', 'Theme Maintenance')) self.ThemeNameLabel.setText( - translate('AmendThemeForm', 'Theme &Name:')) + translate('OpenLP.AmendThemeForm', 'Theme &name:')) self.BackgroundLabel.setText( - translate('AmendThemeForm', '&Visibility:')) + translate('OpenLP.AmendThemeForm', '&Visibility:')) self.BackgroundComboBox.setItemText(0, - translate('AmendThemeForm', 'Opaque')) + translate('OpenLP.AmendThemeForm', 'Opaque')) self.BackgroundComboBox.setItemText(1, - translate('AmendThemeForm', 'Transparent')) + translate('OpenLP.AmendThemeForm', 'Transparent')) self.BackgroundTypeLabel.setText( - translate('AmendThemeForm', 'Type:')) + translate('OpenLP.AmendThemeForm', 'Type:')) self.BackgroundTypeComboBox.setItemText(0, - translate('AmendThemeForm', 'Solid Color')) + translate('OpenLP.AmendThemeForm', 'Solid Color')) self.BackgroundTypeComboBox.setItemText(1, - translate('AmendThemeForm', 'Gradient')) + translate('OpenLP.AmendThemeForm', 'Gradient')) self.BackgroundTypeComboBox.setItemText(2, - translate('AmendThemeForm', 'Image')) + translate('OpenLP.AmendThemeForm', 'Image')) self.Color1Label.setText(u':') self.Color2Label.setText(u':') - self.ImageLabel.setText(translate('AmendThemeForm', 'Image:')) - self.GradientLabel.setText(translate('AmendThemeForm', 'Gradient:')) + self.ImageLabel.setText( + translate('OpenLP.AmendThemeForm', 'Image:')) + self.GradientLabel.setText( + translate('OpenLP.AmendThemeForm', 'Gradient:')) self.GradientComboBox.setItemText(0, - translate('AmendThemeForm', 'Horizontal')) + translate('OpenLP.AmendThemeForm', 'Horizontal')) self.GradientComboBox.setItemText(1, - translate('AmendThemeForm', 'Vertical')) + translate('OpenLP.AmendThemeForm', 'Vertical')) self.GradientComboBox.setItemText(2, - translate('AmendThemeForm', 'Circular')) + translate('OpenLP.AmendThemeForm', 'Circular')) self.ThemeTabWidget.setTabText( self.ThemeTabWidget.indexOf(self.BackgroundTab), - translate('AmendThemeForm', '&Background')) + translate('OpenLP.AmendThemeForm', '&Background')) self.FontMainGroupBox.setTitle( - translate('AmendThemeForm', 'Main Font')) - self.FontMainlabel.setText(translate('AmendThemeForm', 'Font:')) + translate('OpenLP.AmendThemeForm', 'Main Font')) + self.FontMainlabel.setText( + translate('OpenLP.AmendThemeForm', 'Font:')) self.FontMainColorLabel.setText( - translate('AmendThemeForm', 'Color:')) - self.FontMainSize.setText(translate('AmendThemeForm', 'Size:')) - self.FontMainSizeSpinBox.setSuffix(translate('AmendThemeForm', 'pt')) + translate('OpenLP.AmendThemeForm', 'Color:')) + self.FontMainSize.setText( + translate('OpenLP.AmendThemeForm', 'Size:')) + self.FontMainSizeSpinBox.setSuffix( + translate('OpenLP.AmendThemeForm', 'pt')) self.FontMainWrapIndentationLabel.setText( - translate('AmendThemeForm', 'Wrap indentation:')) + translate('OpenLP.AmendThemeForm', 'Wrap indentation:')) self.FontMainWrapLineAdjustmentLabel.setText( - translate('AmendThemeForm', 'Adjust line spacing:')) + translate('OpenLP.AmendThemeForm', 'Adjust line spacing:')) self.FontMainWeightComboBox.setItemText(0, - translate('AmendThemeForm', 'Normal')) + translate('OpenLP.AmendThemeForm', 'Normal')) self.FontMainWeightComboBox.setItemText(1, - translate('AmendThemeForm', 'Bold')) + translate('OpenLP.AmendThemeForm', 'Bold')) self.FontMainWeightComboBox.setItemText(2, - translate('AmendThemeForm', 'Italics')) + translate('OpenLP.AmendThemeForm', 'Italics')) self.FontMainWeightComboBox.setItemText(3, - translate('AmendThemeForm', 'Bold/Italics')) + translate('OpenLP.AmendThemeForm', 'Bold/Italics')) self.FontMainWeightLabel.setText( - translate('AmendThemeForm', 'Style:')) + translate('OpenLP.AmendThemeForm', 'Style:')) self.MainLocationGroupBox.setTitle( - translate('AmendThemeForm', 'Display Location')) + translate('OpenLP.AmendThemeForm', 'Display Location')) self.DefaultLocationLabel.setText( - translate('AmendThemeForm', 'Use default location:')) + translate('OpenLP.AmendThemeForm', 'Use default location')) self.FontMainXLabel.setText( - translate('AmendThemeForm', 'X position:')) + translate('OpenLP.AmendThemeForm', 'X position:')) self.FontMainYLabel.setText( - translate('AmendThemeForm', 'Y position:')) + translate('OpenLP.AmendThemeForm', 'Y position:')) self.FontMainWidthLabel.setText( - translate('AmendThemeForm', 'Width:')) + translate('OpenLP.AmendThemeForm', 'Width:')) self.FontMainHeightLabel.setText( - translate('AmendThemeForm', 'Height:')) - self.FontMainXSpinBox.setSuffix(translate('AmendThemeForm', 'px')) - self.FontMainYSpinBox.setSuffix(translate('AmendThemeForm', 'px')) - self.FontMainWidthSpinBox.setSuffix(translate('AmendThemeForm', 'px')) - self.FontMainHeightSpinBox.setSuffix(translate('AmendThemeForm', 'px')) + translate('OpenLP.AmendThemeForm', 'Height:')) + self.FontMainXSpinBox.setSuffix( + translate('OpenLP.AmendThemeForm', 'px')) + self.FontMainYSpinBox.setSuffix( + translate('OpenLP.AmendThemeForm', 'px')) + self.FontMainWidthSpinBox.setSuffix( + translate('OpenLP.AmendThemeForm', 'px')) + self.FontMainHeightSpinBox.setSuffix( + translate('OpenLP.AmendThemeForm', 'px')) self.ThemeTabWidget.setTabText( self.ThemeTabWidget.indexOf(self.FontMainTab), - translate('AmendThemeForm', '&Main Font')) + translate('OpenLP.AmendThemeForm', '&Main Font')) self.FooterFontGroupBox.setTitle( - translate('AmendThemeForm', 'Footer Font')) - self.FontFooterLabel.setText(translate('AmendThemeForm', 'Font:')) + translate('OpenLP.AmendThemeForm', 'Footer Font')) + self.FontFooterLabel.setText( + translate('OpenLP.AmendThemeForm', 'Font:')) self.FontFooterColorLabel.setText( - translate('AmendThemeForm', 'Color:')) - self.FontFooterSizeLabel.setText(translate('AmendThemeForm', 'Size:')) - self.FontFooterSizeSpinBox.setSuffix(translate('AmendThemeForm', 'pt')) + translate('OpenLP.AmendThemeForm', 'Color:')) + self.FontFooterSizeLabel.setText( + translate('OpenLP.AmendThemeForm', 'Size:')) + self.FontFooterSizeSpinBox.setSuffix( + translate('OpenLP.AmendThemeForm', 'pt')) self.FontFooterWeightComboBox.setItemText(0, - translate('AmendThemeForm', 'Normal')) + translate('OpenLP.AmendThemeForm', 'Normal')) self.FontFooterWeightComboBox.setItemText(1, - translate('AmendThemeForm', 'Bold')) + translate('OpenLP.AmendThemeForm', 'Bold')) self.FontFooterWeightComboBox.setItemText(2, - translate('AmendThemeForm', 'Italics')) + translate('OpenLP.AmendThemeForm', 'Italics')) self.FontFooterWeightComboBox.setItemText(3, - translate('AmendThemeForm', 'Bold/Italics')) + translate('OpenLP.AmendThemeForm', 'Bold/Italics')) self.FontFooterWeightLabel.setText( - translate('AmendThemeForm', 'Style:')) + translate('OpenLP.AmendThemeForm', 'Style:')) self.LocationFooterGroupBox.setTitle( - translate('AmendThemeForm', 'Display Location')) + translate('OpenLP.AmendThemeForm', 'Display Location')) self.FontFooterDefaultLabel.setText( - translate('AmendThemeForm', 'Use default location:')) + translate('OpenLP.AmendThemeForm', 'Use default location')) self.FontFooterXLabel.setText( - translate('AmendThemeForm', 'X position:')) + translate('OpenLP.AmendThemeForm', 'X position:')) self.FontFooterYLabel.setText( - translate('AmendThemeForm', 'Y position:')) + translate('OpenLP.AmendThemeForm', 'Y position:')) self.FontFooterWidthLabel.setText( - translate('AmendThemeForm', 'Width:')) + translate('OpenLP.AmendThemeForm', 'Width:')) self.FontFooterHeightLabel.setText( - translate('AmendThemeForm', 'Height:')) - self.FontFooterXSpinBox.setSuffix(translate('AmendThemeForm', 'px')) - self.FontFooterYSpinBox.setSuffix(translate('AmendThemeForm', 'px')) - self.FontFooterWidthSpinBox.setSuffix(translate('AmendThemeForm', 'px')) + translate('OpenLP.AmendThemeForm', 'Height:')) + self.FontFooterXSpinBox.setSuffix( + translate('OpenLP.AmendThemeForm', 'px')) + self.FontFooterYSpinBox.setSuffix( + translate('OpenLP.AmendThemeForm', 'px')) + self.FontFooterWidthSpinBox.setSuffix( + translate('OpenLP.AmendThemeForm', 'px')) self.FontFooterHeightSpinBox.setSuffix( - translate('AmendThemeForm', 'px')) + translate('OpenLP.AmendThemeForm', 'px')) self.ThemeTabWidget.setTabText( self.ThemeTabWidget.indexOf(self.FontFooterTab), - translate('AmendThemeForm', '&Footer Font')) - self.OutlineGroupBox.setTitle(translate('AmendThemeForm', 'Outline')) + translate('OpenLP.AmendThemeForm', '&Footer Font')) + self.OutlineGroupBox.setTitle( + translate('OpenLP.AmendThemeForm', 'Outline')) self.OutlineSpinBoxLabel.setText( - translate('AmendThemeForm', 'Outline size:')) - self.OutlineSpinBox.setSuffix(translate('AmendThemeForm', 'px')) + translate('OpenLP.AmendThemeForm', 'Outline size:')) + self.OutlineSpinBox.setSuffix( + translate('OpenLP.AmendThemeForm', 'px')) self.OutlineColorLabel.setText( - translate('AmendThemeForm', 'Outline color:')) + translate('OpenLP.AmendThemeForm', 'Outline color:')) self.OutlineEnabledLabel.setText( - translate('AmendThemeForm', 'Show outline:')) - self.ShadowGroupBox.setTitle(translate('AmendThemeForm', 'Shadow')) + translate('OpenLP.AmendThemeForm', 'Show outline:')) + self.ShadowGroupBox.setTitle( + translate('OpenLP.AmendThemeForm', 'Shadow')) self.ShadowSpinBoxLabel.setText( - translate('AmendThemeForm', 'Shadow size:')) - self.ShadowSpinBox.setSuffix(translate('AmendThemeForm', 'px')) + translate('OpenLP.AmendThemeForm', 'Shadow size:')) + self.ShadowSpinBox.setSuffix( + translate('OpenLP.AmendThemeForm', 'px')) self.ShadowColorLabel.setText( - translate('AmendThemeForm', 'Shadow color:')) + translate('OpenLP.AmendThemeForm', 'Shadow color:')) self.ShadowEnabledLabel.setText( - translate('AmendThemeForm', 'Show shadow:')) + translate('OpenLP.AmendThemeForm', 'Show shadow:')) self.AlignmentGroupBox.setTitle( - translate('AmendThemeForm', 'Alignment')) + translate('OpenLP.AmendThemeForm', 'Alignment')) self.HorizontalLabel.setText( - translate('AmendThemeForm', 'Horizontal align:')) + translate('OpenLP.AmendThemeForm', 'Horizontal align:')) self.HorizontalComboBox.setItemText(0, - translate('AmendThemeForm', 'Left')) + translate('OpenLP.AmendThemeForm', 'Left')) self.HorizontalComboBox.setItemText(1, - translate('AmendThemeForm', 'Right')) + translate('OpenLP.AmendThemeForm', 'Right')) self.HorizontalComboBox.setItemText(2, - translate('AmendThemeForm', 'Center')) + translate('OpenLP.AmendThemeForm', 'Center')) self.VerticalLabel.setText( - translate('AmendThemeForm', 'Vertical align:')) + translate('OpenLP.AmendThemeForm', 'Vertical align:')) self.VerticalComboBox.setItemText(0, - translate('AmendThemeForm', 'Top')) + translate('OpenLP.AmendThemeForm', 'Top')) self.VerticalComboBox.setItemText(1, - translate('AmendThemeForm', 'Middle')) + translate('OpenLP.AmendThemeForm', 'Middle')) self.VerticalComboBox.setItemText(2, - translate('AmendThemeForm', 'Bottom')) + translate('OpenLP.AmendThemeForm', 'Bottom')) self.TransitionGroupBox.setTitle( - translate('AmendThemeForm', 'Slide Transition')) + translate('OpenLP.AmendThemeForm', 'Slide Transition')) self.SlideTransitionCheckBoxLabel.setText( - translate('AmendThemeForm', 'Transition active:')) + translate('OpenLP.AmendThemeForm', 'Transition active')) self.ThemeTabWidget.setTabText( self.ThemeTabWidget.indexOf(self.OtherOptionsTab), - translate('AmendThemeForm', '&Other Options')) - self.PreviewGroupBox.setTitle(translate('AmendThemeForm', 'Preview')) + translate('OpenLP.AmendThemeForm', '&Other Options')) + self.PreviewGroupBox.setTitle( + translate('OpenLP.AmendThemeForm', 'Preview')) + diff --git a/openlp/core/ui/amendthemeform.py b/openlp/core/ui/amendthemeform.py index 10198bc7a..7676e9c25 100644 --- a/openlp/core/ui/amendthemeform.py +++ b/openlp/core/ui/amendthemeform.py @@ -219,9 +219,9 @@ class AmendThemeForm(QtGui.QDialog, Ui_AmendThemeDialog): def onImageToolButtonClicked(self): images_filter = get_images_filter() images_filter = '%s;;%s (*.*) (*)' % (images_filter, - translate('AmendThemeForm', 'All Files')) + translate('OpenLP.AmendThemeForm', 'All Files')) filename = QtGui.QFileDialog.getOpenFileName(self, - translate('AmendThemeForm', 'Select Image'), u'', images_filter) + translate('OpenLP.AmendThemeForm', 'Select Image'), u'', images_filter) if filename: self.ImageLineEdit.setText(filename) self.theme.background_filename = filename @@ -658,7 +658,7 @@ class AmendThemeForm(QtGui.QDialog, Ui_AmendThemeDialog): self.Color1PushButton.setStyleSheet( u'background-color: %s' % unicode(theme.background_color)) self.Color1Label.setText( - translate('AmendThemeForm', 'Color:')) + translate('OpenLP.AmendThemeForm', 'Color:')) self.Color1Label.setVisible(True) self.Color1PushButton.setVisible(True) self.Color2Label.setVisible(False) @@ -674,9 +674,9 @@ class AmendThemeForm(QtGui.QDialog, Ui_AmendThemeDialog): self.Color2PushButton.setStyleSheet(u'background-color: %s' \ % unicode(theme.background_endColor)) self.Color1Label.setText( - translate('AmendThemeForm', 'First color:')) + translate('OpenLP.AmendThemeForm', 'First color:')) self.Color2Label.setText( - translate('AmendThemeForm', 'Second color:')) + translate('OpenLP.AmendThemeForm', 'Second color:')) self.Color1Label.setVisible(True) self.Color1PushButton.setVisible(True) self.Color2Label.setVisible(True) @@ -745,7 +745,7 @@ class AmendThemeForm(QtGui.QDialog, Ui_AmendThemeDialog): (self.FontMainHeightSpinBox.value(), metrics.height(), page_length)) page_length_text = unicode( - translate('AmendThemeForm', 'Slide height is %s rows.')) + translate('OpenLP.AmendThemeForm', 'Slide height is %s rows.')) self.FontMainLinesPageLabel.setText(page_length_text % page_length) frame = self.thememanager.generateImage(self.theme) self.ThemePreview.setPixmap(QtGui.QPixmap.fromImage(frame)) diff --git a/openlp/core/ui/generaltab.py b/openlp/core/ui/generaltab.py index 1392992d3..5f0fbf566 100644 --- a/openlp/core/ui/generaltab.py +++ b/openlp/core/ui/generaltab.py @@ -59,7 +59,7 @@ class GeneralTab(SettingsTab): Create the user interface for the general settings tab """ self.setObjectName(u'GeneralTab') - self.tabTitleVisible = translate('GeneralTab', 'General') + self.tabTitleVisible = translate('OpenLP.GeneralTab', 'General') self.GeneralLayout = QtGui.QHBoxLayout(self) self.GeneralLayout.setSpacing(8) self.GeneralLayout.setMargin(8) @@ -286,7 +286,7 @@ class GeneralTab(SettingsTab): """ Translate the general settings tab to the currently selected language """ - self.MonitorGroupBox.setTitle(translate('GeneralTab', 'Monitors')) + self.MonitorGroupBox.setTitle(translate('OpenLP.GeneralTab', 'Monitors')) self.MonitorLabel.setText(translate('OpenLP.GeneralTab', 'Select monitor for output display:')) self.DisplayOnMonitorCheck.setText( @@ -299,18 +299,20 @@ class GeneralTab(SettingsTab): 'Automatically open the last service')) self.ShowSplashCheckBox.setText( translate('OpenLP.GeneralTab', 'Show the splash screen')) - self.SettingsGroupBox.setTitle(translate('OpenLP.GeneralTab', - 'Application Settings')) + self.SettingsGroupBox.setTitle( + translate('OpenLP.GeneralTab', 'Application Settings')) self.SaveCheckServiceCheckBox.setText(translate('OpenLP.GeneralTab', 'Prompt to save Service before starting New')) self.AutoPreviewCheckBox.setText(translate('OpenLP.GeneralTab', 'Preview Next Song from Service Manager')) - self.CCLIGroupBox.setTitle(translate('GeneralTab', 'CCLI Details')) - self.NumberLabel.setText(translate('GeneralTab', 'CCLI Number:')) - self.UsernameLabel.setText(translate('OpenLP.GeneralTab', - 'SongSelect Username:')) + self.CCLIGroupBox.setTitle( + translate('OpenLP.GeneralTab', 'CCLI Details')) + self.NumberLabel.setText( + translate('OpenLP.GeneralTab', 'CCLI number:')) + self.UsernameLabel.setText( + translate('OpenLP.GeneralTab', 'SongSelect username:')) self.PasswordLabel.setText( - translate('OpenLP.GeneralTab', 'SongSelect Password:')) + translate('OpenLP.GeneralTab', 'SongSelect password:')) # Moved from display tab self.displayGroupBox.setTitle( translate('OpenLP.GeneralTab', 'Display Position')) @@ -321,14 +323,15 @@ class GeneralTab(SettingsTab): self.currentHeightLabel.setText( translate('OpenLP.GeneralTab', 'Height')) self.currentHeightValueLabel.setText(u'0') - self.currentWidthLabel.setText(translate('OpenLP.GeneralTab', 'Width')) + self.currentWidthLabel.setText( + translate('OpenLP.GeneralTab', 'Width')) self.currentWidthValueLabel.setText(u'0') self.overrideCheckBox.setText(translate('OpenLP.GeneralTab', 'Override display position')) - self.customXLabel.setText(translate('DisplayTab', 'X')) - self.customYLabel.setText(translate('DisplayTab', 'Y')) - self.customHeightLabel.setText(translate('DisplayTab', 'Height')) - self.customWidthLabel.setText(translate('DisplayTab', 'Width')) + self.customXLabel.setText(translate('OpenLP.GeneralTab', 'X')) + self.customYLabel.setText(translate('OpenLP.GeneralTab', 'Y')) + self.customHeightLabel.setText(translate('OpenLP.GeneralTab', 'Height')) + self.customWidthLabel.setText(translate('OpenLP.GeneralTab', 'Width')) def load(self): """ @@ -337,11 +340,11 @@ class GeneralTab(SettingsTab): settings = QtCore.QSettings() settings.beginGroup(self.settingsSection) for screen in self.screens.screen_list: - screen_name = u'%s %d' % (translate('GeneralTab', 'Screen'), + screen_name = u'%s %d' % (translate('OpenLP.GeneralTab', 'Screen'), screen[u'number'] + 1) if screen[u'primary']: screen_name = u'%s (%s)' % (screen_name, - translate('GeneralTab', 'primary')) + translate('OpenLP.GeneralTab', 'primary')) self.MonitorComboBox.addItem(screen_name) self.NumberEdit.setText(unicode(settings.value( u'ccli number', QtCore.QVariant(u'')).toString())) @@ -461,3 +464,4 @@ class GeneralTab(SettingsTab): self.customHeightValueEdit.setEnabled(checked) self.customWidthValueEdit.setEnabled(checked) self.override_changed = True + diff --git a/openlp/core/ui/mainwindow.py b/openlp/core/ui/mainwindow.py index a5705834c..9ccf3f205 100644 --- a/openlp/core/ui/mainwindow.py +++ b/openlp/core/ui/mainwindow.py @@ -385,127 +385,149 @@ class Ui_MainWindow(object): """ Set up the translation system """ - MainWindow.mainTitle = translate('MainWindow', 'OpenLP 2.0') - MainWindow.language = translate('MainWindow', 'English') + MainWindow.mainTitle = translate('OpenLP.MainWindow', 'OpenLP 2.0') + MainWindow.language = translate('OpenLP.MainWindow', 'English') MainWindow.setWindowTitle(MainWindow.mainTitle) - self.FileMenu.setTitle(translate('MainWindow', '&File')) - self.FileImportMenu.setTitle(translate('MainWindow', '&Import')) - self.FileExportMenu.setTitle(translate('MainWindow', '&Export')) - self.ViewMenu.setTitle(translate('MainWindow', '&View')) - self.ViewModeMenu.setTitle(translate('MainWindow', 'M&ode')) - self.ToolsMenu.setTitle(translate('MainWindow', '&Tools')) - self.SettingsMenu.setTitle(translate('MainWindow', '&Settings')) - self.SettingsLanguageMenu.setTitle(translate('MainWindow', + self.FileMenu.setTitle(translate('OpenLP.MainWindow', '&File')) + self.FileImportMenu.setTitle(translate('OpenLP.MainWindow', '&Import')) + self.FileExportMenu.setTitle(translate('OpenLP.MainWindow', '&Export')) + self.ViewMenu.setTitle(translate('OpenLP.MainWindow', '&View')) + self.ViewModeMenu.setTitle(translate('OpenLP.MainWindow', 'M&ode')) + self.ToolsMenu.setTitle(translate('OpenLP.MainWindow', '&Tools')) + self.SettingsMenu.setTitle(translate('OpenLP.MainWindow', '&Settings')) + self.SettingsLanguageMenu.setTitle(translate('OpenLP.MainWindow', '&Language')) - self.HelpMenu.setTitle(translate('MainWindow', '&Help')) + self.HelpMenu.setTitle(translate('OpenLP.MainWindow', '&Help')) self.MediaManagerDock.setWindowTitle( - translate('MainWindow', 'Media Manager')) + translate('OpenLP.MainWindow', 'Media Manager')) self.ServiceManagerDock.setWindowTitle( - translate('MainWindow', 'Service Manager')) + translate('OpenLP.MainWindow', 'Service Manager')) self.ThemeManagerDock.setWindowTitle( - translate('MainWindow', 'Theme Manager')) - self.FileNewItem.setText(translate('MainWindow', '&New')) - self.FileNewItem.setToolTip(translate('MainWindow', 'New Service')) + translate('OpenLP.MainWindow', 'Theme Manager')) + self.FileNewItem.setText(translate('OpenLP.MainWindow', '&New')) + self.FileNewItem.setToolTip( + translate('OpenLP.MainWindow', 'New Service')) self.FileNewItem.setStatusTip( - translate('MainWindow', 'Create a new service.')) - self.FileNewItem.setShortcut(translate('MainWindow', 'Ctrl+N')) - self.FileOpenItem.setText(translate('MainWindow', '&Open')) - self.FileOpenItem.setToolTip(translate('MainWindow', 'Open Service')) + translate('OpenLP.MainWindow', 'Create a new service.')) + self.FileNewItem.setShortcut(translate('OpenLP.MainWindow', 'Ctrl+N')) + self.FileOpenItem.setText(translate('OpenLP.MainWindow', '&Open')) + self.FileOpenItem.setToolTip( + translate('OpenLP.MainWindow', 'Open Service')) self.FileOpenItem.setStatusTip( - translate('MainWindow', 'Open an existing service.')) - self.FileOpenItem.setShortcut(translate('MainWindow', 'Ctrl+O')) - self.FileSaveItem.setText(translate('MainWindow', '&Save')) - self.FileSaveItem.setToolTip(translate('MainWindow', 'Save Service')) + translate('OpenLP.MainWindow', 'Open an existing service.')) + self.FileOpenItem.setShortcut(translate('OpenLP.MainWindow', 'Ctrl+O')) + self.FileSaveItem.setText(translate('OpenLP.MainWindow', '&Save')) + self.FileSaveItem.setToolTip( + translate('OpenLP.MainWindow', 'Save Service')) self.FileSaveItem.setStatusTip( - translate('MainWindow', 'Save the current service to disk.')) - self.FileSaveItem.setShortcut(translate('MainWindow', 'Ctrl+S')) - self.FileSaveAsItem.setText(translate('MainWindow', 'Save &As...')) + translate('OpenLP.MainWindow', 'Save the current service to disk.')) + self.FileSaveItem.setShortcut(translate('OpenLP.MainWindow', 'Ctrl+S')) + self.FileSaveAsItem.setText( + translate('OpenLP.MainWindow', 'Save &As...')) self.FileSaveAsItem.setToolTip( - translate('MainWindow', 'Save Service As')) - self.FileSaveAsItem.setStatusTip(translate('MainWindow', + translate('OpenLP.MainWindow', 'Save Service As')) + self.FileSaveAsItem.setStatusTip(translate('OpenLP.MainWindow', 'Save the current service under a new name.')) - self.FileSaveAsItem.setShortcut(translate('MainWindow', 'Ctrl+Shift+S')) - self.FileExitItem.setText(translate('MainWindow', 'E&xit')) - self.FileExitItem.setStatusTip(translate('MainWindow', 'Quit OpenLP')) - self.FileExitItem.setShortcut(translate('MainWindow', 'Alt+F4')) - self.ImportThemeItem.setText(translate('MainWindow', '&Theme')) - self.ImportLanguageItem.setText(translate('MainWindow', '&Language')) - self.ExportThemeItem.setText(translate('MainWindow', '&Theme')) - self.ExportLanguageItem.setText(translate('MainWindow', '&Language')) - self.SettingsConfigureItem.setText(translate('MainWindow', - '&Configure OpenLP...')) + self.FileSaveAsItem.setShortcut( + translate('OpenLP.MainWindow', 'Ctrl+Shift+S')) + self.FileExitItem.setText( + translate('OpenLP.MainWindow', 'E&xit')) + self.FileExitItem.setStatusTip( + translate('OpenLP.MainWindow', 'Quit OpenLP')) + self.FileExitItem.setShortcut( + translate('OpenLP.MainWindow', 'Alt+F4')) + self.ImportThemeItem.setText( + translate('OpenLP.MainWindow', '&Theme')) + self.ImportLanguageItem.setText( + translate('OpenLP.MainWindow', '&Language')) + self.ExportThemeItem.setText( + translate('OpenLP.MainWindow', '&Theme')) + self.ExportLanguageItem.setText( + translate('OpenLP.MainWindow', '&Language')) + self.SettingsConfigureItem.setText( + translate('OpenLP.MainWindow', '&Configure OpenLP...')) self.ViewMediaManagerItem.setText( - translate('MainWindow', '&Media Manager')) + translate('OpenLP.MainWindow', '&Media Manager')) self.ViewMediaManagerItem.setToolTip( - translate('MainWindow', 'Toggle Media Manager')) - self.ViewMediaManagerItem.setStatusTip(translate('MainWindow', + translate('OpenLP.MainWindow', 'Toggle Media Manager')) + self.ViewMediaManagerItem.setStatusTip(translate('OpenLP.MainWindow', 'Toggle the visibility of the media manager.')) - self.ViewMediaManagerItem.setShortcut(translate('MainWindow', 'F8')) + self.ViewMediaManagerItem.setShortcut( + translate('OpenLP.MainWindow', 'F8')) self.ViewThemeManagerItem.setText( - translate('MainWindow', '&Theme Manager')) + translate('OpenLP.MainWindow', '&Theme Manager')) self.ViewThemeManagerItem.setToolTip( - translate('MainWindow', 'Toggle Theme Manager')) - self.ViewThemeManagerItem.setStatusTip(translate('MainWindow', + translate('OpenLP.MainWindow', 'Toggle Theme Manager')) + self.ViewThemeManagerItem.setStatusTip(translate('OpenLP.MainWindow', 'Toggle the visibility of the theme manager.')) - self.ViewThemeManagerItem.setShortcut(translate('MainWindow', 'F10')) + self.ViewThemeManagerItem.setShortcut( + translate('OpenLP.MainWindow', 'F10')) self.ViewServiceManagerItem.setText( - translate('MainWindow', '&Service Manager')) + translate('OpenLP.MainWindow', '&Service Manager')) self.ViewServiceManagerItem.setToolTip( - translate('MainWindow', 'Toggle Service Manager')) - self.ViewServiceManagerItem.setStatusTip(translate('MainWindow', + translate('OpenLP.MainWindow', 'Toggle Service Manager')) + self.ViewServiceManagerItem.setStatusTip(translate('OpenLP.MainWindow', 'Toggle the visibility of the service manager.')) - self.ViewServiceManagerItem.setShortcut(translate('MainWindow', 'F9')) + self.ViewServiceManagerItem.setShortcut( + translate('OpenLP.MainWindow', 'F9')) self.ViewPreviewPanel.setText( - translate('MainWindow', '&Preview Panel')) + translate('OpenLP.MainWindow', '&Preview Panel')) self.ViewPreviewPanel.setToolTip( - translate('MainWindow', 'Toggle Preview Panel')) - self.ViewPreviewPanel.setStatusTip(translate('MainWindow', + translate('OpenLP.MainWindow', 'Toggle Preview Panel')) + self.ViewPreviewPanel.setStatusTip(translate('OpenLP.MainWindow', 'Toggle the visibility of the preview panel.')) - self.ViewPreviewPanel.setShortcut(translate('MainWindow', 'F11')) + self.ViewPreviewPanel.setShortcut( + translate('OpenLP.MainWindow', 'F11')) self.ViewLivePanel.setText( - translate('MainWindow', '&Live Panel')) + translate('OpenLP.MainWindow', '&Live Panel')) self.ViewLivePanel.setToolTip( - translate('MainWindow', 'Toggle Live Panel')) - self.ViewLivePanel.setStatusTip(translate('MainWindow', + translate('OpenLP.MainWindow', 'Toggle Live Panel')) + self.ViewLivePanel.setStatusTip(translate('OpenLP.MainWindow', 'Toggle the visibility of the live panel.')) - self.ViewLivePanel.setShortcut(translate('MainWindow', 'F12')) - self.SettingsPluginListItem.setText(translate('MainWindow', + self.ViewLivePanel.setShortcut( + translate('OpenLP.MainWindow', 'F12')) + self.SettingsPluginListItem.setText(translate('OpenLP.MainWindow', '&Plugin List')) self.SettingsPluginListItem.setStatusTip( - translate('MainWindow', 'List the Plugins')) + translate('OpenLP.MainWindow', 'List the Plugins')) self.SettingsPluginListItem.setShortcut( - translate('MainWindow', 'Alt+F7')) + translate('OpenLP.MainWindow', 'Alt+F7')) self.HelpDocumentationItem.setText( - translate('MainWindow', '&User Guide')) - self.HelpAboutItem.setText(translate('MainWindow', '&About')) + translate('OpenLP.MainWindow', '&User Guide')) + self.HelpAboutItem.setText(translate('OpenLP.MainWindow', '&About')) self.HelpAboutItem.setStatusTip( - translate('MainWindow', 'More information about OpenLP')) - self.HelpAboutItem.setShortcut(translate('MainWindow', 'Ctrl+F1')) + translate('OpenLP.MainWindow', 'More information about OpenLP')) + self.HelpAboutItem.setShortcut(translate('OpenLP.MainWindow', 'Ctrl+F1')) self.HelpOnlineHelpItem.setText( - translate('MainWindow', '&Online Help')) - self.HelpWebSiteItem.setText(translate('MainWindow', '&Web Site')) - self.AutoLanguageItem.setText(translate('MainWindow', '&Auto Detect')) + translate('OpenLP.MainWindow', '&Online Help')) + self.HelpWebSiteItem.setText( + translate('OpenLP.MainWindow', '&Web Site')) + self.AutoLanguageItem.setText( + translate('OpenLP.MainWindow', '&Auto Detect')) self.AutoLanguageItem.setStatusTip( - translate('MainWindow', 'Use the system language, if available.')) + translate('OpenLP.MainWindow', + 'Use the system language, if available.')) for item in self.LanguageGroup.actions(): item.setText(item.objectName()) - item.setStatusTip(unicode(translate('MainWindow', + item.setStatusTip(unicode(translate('OpenLP.MainWindow', 'Set the interface language to %s')) % item.objectName()) - self.ToolsAddToolItem.setText(translate('MainWindow', 'Add &Tool...')) + self.ToolsAddToolItem.setText( + translate('OpenLP.MainWindow', 'Add &Tool...')) self.ToolsAddToolItem.setStatusTip( - translate('MainWindow', + translate('OpenLP.MainWindow', 'Add an application to the list of tools.')) - self.ModeDefaultItem.setText(translate('MainWindow', '&Default')) + self.ModeDefaultItem.setText( + translate('OpenLP.MainWindow', '&Default')) self.ModeDefaultItem.setStatusTip( - translate('MainWindow', + translate('OpenLP.MainWindow', 'Set the view mode back to the default.')) - self.ModeSetupItem.setText(translate('MainWindow', '&Setup')) + self.ModeSetupItem.setText(translate('OpenLP.MainWindow', '&Setup')) self.ModeSetupItem.setStatusTip( - translate('MainWindow', + translate('OpenLP.MainWindow', 'Set the view mode to Setup.')) - self.ModeLiveItem.setText(translate('MainWindow', '&Live')) + self.ModeLiveItem.setText(translate('OpenLP.MainWindow', '&Live')) self.ModeLiveItem.setStatusTip( - translate('MainWindow', + translate('OpenLP.MainWindow', 'Set the view mode to Live.')) @@ -681,12 +703,12 @@ class MainWindow(QtGui.QMainWindow, Ui_MainWindow): Triggered by delay thread. """ app_version = self.applicationVersion[u'full'] - version_text = unicode(translate('MainWindow', 'Version %s of OpenLP ' - 'is now available for download (you are currently running version ' - ' %s). \n\nYou can download the latest version from ' - 'http://openlp.org')) + version_text = unicode(translate('OpenLP.MainWindow', + 'Version %s of OpenLP is now available for download (you are ' + 'currently running version %s). \n\nYou can download the latest ' + 'version from http://openlp.org/.')) QtGui.QMessageBox.question(self, - translate('MainWindow', 'OpenLP Version Updated'), + translate('OpenLP.MainWindow', 'OpenLP Version Updated'), version_text % (version, app_version), QtGui.QMessageBox.StandardButtons(QtGui.QMessageBox.Ok), QtGui.QMessageBox.Ok) @@ -718,8 +740,9 @@ class MainWindow(QtGui.QMainWindow, Ui_MainWindow): if settings.value(u'blank warning', QtCore.QVariant(False)).toBool(): QtGui.QMessageBox.question(self, - translate('MainWindow', 'OpenLP Main Display Blanked'), - translate('MainWindow', + translate('OpenLP.MainWindow', + 'OpenLP Main Display Blanked'), + translate('OpenLP.MainWindow', 'The Main Display has been blanked out')) settings.endGroup() @@ -803,8 +826,8 @@ class MainWindow(QtGui.QMainWindow, Ui_MainWindow): """ if self.serviceNotSaved: ret = QtGui.QMessageBox.question(self, - translate('MainWindow', 'Save Changes to Service?'), - translate('MainWindow', 'Your service has changed. ' + translate('OpenLP.MainWindow', 'Save Changes to Service?'), + translate('OpenLP.MainWindow', 'Your service has changed. ' 'Do you want to save those changes?'), QtGui.QMessageBox.StandardButtons( QtGui.QMessageBox.Cancel | @@ -869,7 +892,7 @@ class MainWindow(QtGui.QMainWindow, Ui_MainWindow): def defaultThemeChanged(self, theme): self.DefaultThemeLabel.setText( - unicode(translate('MainWindow', 'Default Theme: %s')) % theme) + unicode(translate('OpenLP.MainWindow', 'Default Theme: %s')) % theme) def toggleMediaManager(self, visible): if self.MediaManagerDock.isVisible() != visible: diff --git a/openlp/core/ui/plugindialog.py b/openlp/core/ui/plugindialog.py index 2a4ed3da9..cef5fca56 100644 --- a/openlp/core/ui/plugindialog.py +++ b/openlp/core/ui/plugindialog.py @@ -100,14 +100,19 @@ class Ui_PluginViewDialog(object): def retranslateUi(self, PluginViewDialog): PluginViewDialog.setWindowTitle( - translate('PluginForm', 'Plugin List')) + translate('OpenLP.PluginForm', 'Plugin List')) self.PluginInfoGroupBox.setTitle( - translate('PluginForm', 'Plugin Details')) + translate('OpenLP.PluginForm', 'Plugin Details')) self.VersionLabel.setText( - translate('PluginForm', 'Version:')) - self.VersionNumberLabel.setText(translate('PluginForm', 'TextLabel')) - self.AboutLabel.setText(translate('PluginForm', 'About:')) - self.StatusLabel.setText(translate('PluginForm', 'Status:')) - self.StatusComboBox.setItemText(0, translate('PluginForm', 'Active')) + translate('OpenLP.PluginForm', 'Version:')) + self.VersionNumberLabel.setText( + translate('OpenLP.PluginForm', 'TextLabel')) + self.AboutLabel.setText( + translate('OpenLP.PluginForm', 'About:')) + self.StatusLabel.setText( + translate('OpenLP.PluginForm', 'Status:')) + self.StatusComboBox.setItemText(0, + translate('OpenLP.PluginForm', 'Active')) self.StatusComboBox.setItemText(1, - translate('PluginForm', 'Inactive')) + translate('OpenLP.PluginForm', 'Inactive')) + diff --git a/openlp/core/ui/pluginform.py b/openlp/core/ui/pluginform.py index 77ce458f4..f1111ff85 100644 --- a/openlp/core/ui/pluginform.py +++ b/openlp/core/ui/pluginform.py @@ -63,15 +63,17 @@ class PluginForm(QtGui.QDialog, Ui_PluginViewDialog): # sometimes when it's loaded from the config, it isn't cast to int. plugin.status = int(plugin.status) # Set the little status text in brackets next to the plugin name. - status_text = unicode(translate('PluginForm', '%s (Inactive)')) + status_text = unicode( + translate('OpenLP.PluginForm', '%s (Inactive)')) if plugin.status == PluginStatus.Active: - status_text = unicode(translate('PluginForm', '%s (Active)')) + status_text = unicode( + translate('OpenLP.PluginForm', '%s (Active)')) elif plugin.status == PluginStatus.Inactive: status_text = unicode( - translate('PluginForm', '%s (Inactive)')) + translate('OpenLP.PluginForm', '%s (Inactive)')) elif plugin.status == PluginStatus.Disabled: status_text = unicode( - translate('PluginForm', '%s (Disabled)')) + translate('OpenLP.PluginForm', '%s (Disabled)')) item.setText(status_text % plugin.name) # If the plugin has an icon, set it! if plugin.icon: @@ -120,12 +122,17 @@ class PluginForm(QtGui.QDialog, Ui_PluginViewDialog): else: self.activePlugin.toggleStatus(PluginStatus.Inactive) self.activePlugin.finalise() - status_text = 'Inactive' + status_text = unicode( + translate('OpenLP.PluginForm', '%s (Inactive)')) if self.activePlugin.status == PluginStatus.Active: - status_text = 'Active' + status_text = unicode( + translate('OpenLP.PluginForm', '%s (Active)')) elif self.activePlugin.status == PluginStatus.Inactive: - status_text = 'Inactive' + status_text = unicode( + translate('OpenLP.PluginForm', '%s (Inactive)')) elif self.activePlugin.status == PluginStatus.Disabled: - status_text = 'Disabled' + status_text = unicode( + translate('OpenLP.PluginForm', '%s (Disabled)')) self.PluginListWidget.currentItem().setText( - u'%s (%s)' % (self.activePlugin.name, status_text)) \ No newline at end of file + status_text % self.activePlugin.name) + diff --git a/openlp/core/ui/serviceitemeditdialog.py b/openlp/core/ui/serviceitemeditdialog.py index ef041972b..a32abce37 100644 --- a/openlp/core/ui/serviceitemeditdialog.py +++ b/openlp/core/ui/serviceitemeditdialog.py @@ -68,9 +68,9 @@ class Ui_ServiceItemEditDialog(object): def retranslateUi(self, ServiceItemEditDialog): ServiceItemEditDialog.setWindowTitle( - translate('ServiceItemEditForm', 'Service Item Maintenance')) - self.upButton.setText(translate('ServiceItemEditForm', 'Up')) - self.deleteButton.setText(translate('ServiceItemEditForm', 'Delete')) - self.downButton.setText(translate('ServiceItemEditForm', 'Down')) + translate('OpenLP.ServiceItemEditForm', 'Reorder Service Item')) + self.upButton.setText(translate('OpenLP.ServiceItemEditForm', 'Up')) + self.deleteButton.setText(translate('OpenLP.ServiceItemEditForm', 'Delete')) + self.downButton.setText(translate('OpenLP.ServiceItemEditForm', 'Down')) diff --git a/openlp/core/ui/servicemanager.py b/openlp/core/ui/servicemanager.py index 19811b979..85193d82d 100644 --- a/openlp/core/ui/servicemanager.py +++ b/openlp/core/ui/servicemanager.py @@ -117,27 +117,27 @@ class ServiceManager(QtGui.QWidget): # Create the top toolbar self.Toolbar = OpenLPToolbar(self) self.Toolbar.addToolbarButton( - translate('ServiceManager', 'New Service'), + translate('OpenLP.ServiceManager', 'New Service'), u':/general/general_new.png', - translate('ServiceManager', 'Create a new service'), + translate('OpenLP.ServiceManager', 'Create a new service'), self.onNewService) self.Toolbar.addToolbarButton( - translate('ServiceManager', 'Open Service'), + translate('OpenLP.ServiceManager', 'Open Service'), u':/general/general_open.png', - translate('ServiceManager', 'Load an existing service'), + translate('OpenLP.ServiceManager', 'Load an existing service'), self.onLoadService) self.Toolbar.addToolbarButton( - translate('ServiceManager', 'Save Service'), + translate('OpenLP.ServiceManager', 'Save Service'), u':/general/general_save.png', - translate('ServiceManager', 'Save this service'), + translate('OpenLP.ServiceManager', 'Save this service'), self.onQuickSaveService) self.Toolbar.addSeparator() - self.ThemeLabel = QtGui.QLabel(translate('ServiceManager', 'Theme:'), + self.ThemeLabel = QtGui.QLabel(translate('OpenLP.ServiceManager', 'Theme:'), self) self.ThemeLabel.setMargin(3) self.Toolbar.addToolbarWidget(u'ThemeLabel', self.ThemeLabel) self.ThemeComboBox = QtGui.QComboBox(self.Toolbar) - self.ThemeComboBox.setToolTip(translate('ServiceManager', + self.ThemeComboBox.setToolTip(translate('OpenLP.ServiceManager', 'Select a theme for the service')) self.ThemeComboBox.setSizeAdjustPolicy( QtGui.QComboBox.AdjustToContents) @@ -168,28 +168,35 @@ class ServiceManager(QtGui.QWidget): # Add the bottom toolbar self.OrderToolbar = OpenLPToolbar(self) self.OrderToolbar.addToolbarButton( - translate('ServiceManager', 'Move to &top'), + translate('OpenLP.ServiceManager', 'Move to &top'), u':/services/service_top.png', - translate('ServiceManager', 'Move to top'), self.onServiceTop) + translate('OpenLP.ServiceManager', + 'Move item to the top of the service.'), + self.onServiceTop) self.OrderToolbar.addToolbarButton( - translate('ServiceManager', 'Move &up'), + translate('OpenLP.ServiceManager', 'Move &up'), u':/services/service_up.png', - translate('ServiceManager', 'Move up order'), self.onServiceUp) + translate('OpenLP.ServiceManager', + 'Move item up one position in the service.'), + self.onServiceUp) self.OrderToolbar.addToolbarButton( - translate('ServiceManager', 'Move &down'), + translate('OpenLP.ServiceManager', 'Move &down'), u':/services/service_down.png', - translate('ServiceManager', 'Move down order'), + translate('OpenLP.ServiceManager', + 'Move item down one position in the service.'), self.onServiceDown) self.OrderToolbar.addToolbarButton( - translate('ServiceManager', 'Move to &bottom'), + translate('OpenLP.ServiceManager', 'Move to &bottom'), u':/services/service_bottom.png', - translate('ServiceManager', 'Move to end'), + translate('OpenLP.ServiceManager', + 'Move item to the end of the service.'), self.onServiceEnd) self.OrderToolbar.addSeparator() self.OrderToolbar.addToolbarButton( - translate('ServiceManager', '&Delete From Service'), + translate('OpenLP.ServiceManager', '&Delete From Service'), u':/general/general_delete.png', - translate('ServiceManager', 'Delete From Service'), + translate('OpenLP.ServiceManager', + 'Delete the selected item from the service.'), self.onDeleteFromService) self.Layout.addWidget(self.OrderToolbar) # Connect up our signals and slots @@ -223,37 +230,37 @@ class ServiceManager(QtGui.QWidget): #build the drag and drop context menu self.dndMenu = QtGui.QMenu() self.newAction = self.dndMenu.addAction( - translate('ServiceManager', '&Add New Item')) + translate('OpenLP.ServiceManager', '&Add New Item')) self.newAction.setIcon(build_icon(u':/general/general_edit.png')) self.addToAction = self.dndMenu.addAction( - translate('ServiceManager', '&Add to Selected Item')) + translate('OpenLP.ServiceManager', '&Add to Selected Item')) self.addToAction.setIcon(build_icon(u':/general/general_edit.png')) #build the context menu self.menu = QtGui.QMenu() self.editAction = self.menu.addAction( - translate('ServiceManager', '&Edit Item')) + translate('OpenLP.ServiceManager', '&Edit Item')) self.editAction.setIcon(build_icon(u':/general/general_edit.png')) self.maintainAction = self.menu.addAction( - translate('ServiceManager', '&Maintain Item')) + translate('OpenLP.ServiceManager', '&Reorder Item')) self.maintainAction.setIcon(build_icon(u':/general/general_edit.png')) self.notesAction = self.menu.addAction( - translate('ServiceManager', '&Notes')) + translate('OpenLP.ServiceManager', '&Notes')) self.notesAction.setIcon(build_icon(u':/services/service_notes.png')) self.deleteAction = self.menu.addAction( - translate('ServiceManager', '&Delete From Service')) + translate('OpenLP.ServiceManager', '&Delete From Service')) self.deleteAction.setIcon(build_icon(u':/general/general_delete.png')) self.sep1 = self.menu.addAction(u'') self.sep1.setSeparator(True) self.previewAction = self.menu.addAction( - translate('ServiceManager', '&Preview Verse')) + translate('OpenLP.ServiceManager', '&Preview Verse')) self.previewAction.setIcon(build_icon(u':/general/general_preview.png')) self.liveAction = self.menu.addAction( - translate('ServiceManager', '&Live Verse')) + translate('OpenLP.ServiceManager', '&Live Verse')) self.liveAction.setIcon(build_icon(u':/general/general_live.png')) self.sep2 = self.menu.addAction(u'') self.sep2.setSeparator(True) self.themeMenu = QtGui.QMenu( - translate('ServiceManager', '&Change Item Theme')) + translate('OpenLP.ServiceManager', '&Change Item Theme')) self.menu.addMenu(self.themeMenu) def supportedSuffixes(self, suffix): @@ -485,8 +492,8 @@ class ServiceManager(QtGui.QWidget): self.parent.generalSettingsSection + u'/save prompt', QtCore.QVariant(False)).toBool(): ret = QtGui.QMessageBox.question(self, - translate('ServiceManager', 'Save Changes to Service?'), - translate('ServiceManager', + translate('OpenLP.ServiceManager', 'Save Changes to Service?'), + translate('OpenLP.ServiceManager', 'Your service is unsaved, do you want to save ' 'those changes before creating a new one?'), QtGui.QMessageBox.StandardButtons( @@ -571,9 +578,9 @@ class ServiceManager(QtGui.QWidget): log.debug(u'onSaveService') if not quick or self.isNew: filename = QtGui.QFileDialog.getSaveFileName(self, - translate('ServiceManager', 'Save Service'), + translate('OpenLP.ServiceManager', 'Save Service'), SettingsManager.get_last_dir(self.parent.serviceSettingsSection), - translate('ServiceManager', 'OpenLP Service Files (*.osz)')) + translate('OpenLP.ServiceManager', 'OpenLP Service Files (*.osz)')) else: filename = os.path.join(SettingsManager.get_last_dir( self.parent.serviceSettingsSection), self.serviceName) @@ -629,7 +636,7 @@ class ServiceManager(QtGui.QWidget): filename = self.parent.recentFiles[0] else: filename = QtGui.QFileDialog.getOpenFileName( - self, translate('ServiceManager', 'Open Service'), + self, translate('OpenLP.ServiceManager', 'Open Service'), SettingsManager.get_last_dir( self.parent.serviceSettingsSection), u'Services (*.osz)') filename = QtCore.QDir.toNativeSeparators(filename) @@ -643,8 +650,8 @@ class ServiceManager(QtGui.QWidget): """ if self.parent.serviceNotSaved: ret = QtGui.QMessageBox.question(self, - translate('ServiceManager', 'Save Changes to Service?'), - translate('ServiceManager', + translate('OpenLP.ServiceManager', 'Save Changes to Service?'), + translate('OpenLP.ServiceManager', 'Your current service is unsaved, do you want to ' 'save the changes before opening a new one?'), QtGui.QMessageBox.StandardButtons( @@ -673,8 +680,8 @@ class ServiceManager(QtGui.QWidget): ucsfile = file.decode(u'utf-8') except UnicodeDecodeError: QtGui.QMessageBox.critical( - self, translate('ServiceManager', 'Error'), - translate('ServiceManager', + self, translate('OpenLP.ServiceManager', 'Error'), + translate('OpenLP.ServiceManager', 'File is not a valid service.\n' 'The content encoding is not UTF-8.')) log.exception(u'Filename "%s" is not valid UTF-8' % @@ -708,8 +715,8 @@ class ServiceManager(QtGui.QWidget): log.exception(u'Failed to remove osd file') else: QtGui.QMessageBox.critical( - self, translate('ServiceManager', 'Error'), - translate('ServiceManager', + self, translate('OpenLP.ServiceManager', 'Error'), + translate('OpenLP.ServiceManager', 'File is not a valid service.')) log.exception(u'File contains no service data') except (IOError, NameError): @@ -837,8 +844,8 @@ class ServiceManager(QtGui.QWidget): self.serviceItems[item][u'service_item'], count) else: QtGui.QMessageBox.critical(self, - translate('ServiceManager', 'Missing Display Handler'), - translate('ServiceManager', 'Your item cannot be displayed ' + translate('OpenLP.ServiceManager', 'Missing Display Handler'), + translate('OpenLP.ServiceManager', 'Your item cannot be displayed ' 'as there is no handler to display it'), QtGui.QMessageBox.StandardButtons( QtGui.QMessageBox.Ok), @@ -873,8 +880,8 @@ class ServiceManager(QtGui.QWidget): self.serviceItems[item][u'service_item'], 0) else: QtGui.QMessageBox.critical(self, - translate('ServiceManager', 'Missing Display Handler'), - translate('ServiceManager', 'Your item cannot be displayed ' + translate('OpenLP.ServiceManager', 'Missing Display Handler'), + translate('OpenLP.ServiceManager', 'Your item cannot be displayed ' 'as there is no handler to display it'), QtGui.QMessageBox.StandardButtons( QtGui.QMessageBox.Ok), diff --git a/openlp/core/ui/servicenotedialog.py b/openlp/core/ui/servicenotedialog.py index 740d304f4..a5977a2de 100644 --- a/openlp/core/ui/servicenotedialog.py +++ b/openlp/core/ui/servicenotedialog.py @@ -49,4 +49,4 @@ class Ui_ServiceNoteEdit(object): def retranslateUi(self, ServiceNoteEdit): ServiceNoteEdit.setWindowTitle( - translate('ServiceNoteForm', 'Service Item Notes')) + translate('OpenLP.ServiceNoteForm', 'Service Item Notes')) diff --git a/openlp/core/ui/settingsdialog.py b/openlp/core/ui/settingsdialog.py index c337ccc48..36e6304e5 100644 --- a/openlp/core/ui/settingsdialog.py +++ b/openlp/core/ui/settingsdialog.py @@ -63,5 +63,5 @@ class Ui_SettingsDialog(object): QtCore.QMetaObject.connectSlotsByName(SettingsDialog) def retranslateUi(self, SettingsDialog): - SettingsDialog.setWindowTitle(translate('SettingsForm', + SettingsDialog.setWindowTitle(translate('OpenLP.SettingsForm', 'Configure OpenLP')) diff --git a/openlp/core/ui/slidecontroller.py b/openlp/core/ui/slidecontroller.py index 4791df129..e5e4dd462 100644 --- a/openlp/core/ui/slidecontroller.py +++ b/openlp/core/ui/slidecontroller.py @@ -128,11 +128,11 @@ class SlideController(QtGui.QWidget): # Type label for the top of the slide controller self.TypeLabel = QtGui.QLabel(self.Panel) if self.isLive: - self.TypeLabel.setText(translate('SlideController', 'Live')) + self.TypeLabel.setText(translate('OpenLP.SlideController', 'Live')) self.split = 1 self.typePrefix = u'live' else: - self.TypeLabel.setText(translate('SlideController', 'Preview')) + self.TypeLabel.setText(translate('OpenLP.SlideController', 'Preview')) self.split = 0 self.typePrefix = u'preview' self.TypeLabel.setStyleSheet(u'font-weight: bold; font-size: 12pt;') @@ -179,29 +179,29 @@ class SlideController(QtGui.QWidget): if self.isLive: self.Toolbar.addToolbarButton( u'First Slide', u':/slides/slide_first.png', - translate('SlideController', 'Move to first'), + translate('OpenLP.SlideController', 'Move to first'), self.onSlideSelectedFirst) self.Toolbar.addToolbarButton( u'Previous Slide', u':/slides/slide_previous.png', - translate('SlideController', 'Move to previous'), + translate('OpenLP.SlideController', 'Move to previous'), self.onSlideSelectedPrevious) self.Toolbar.addToolbarButton( u'Next Slide', u':/slides/slide_next.png', - translate('SlideController', 'Move to next'), + translate('OpenLP.SlideController', 'Move to next'), self.onSlideSelectedNext) if self.isLive: self.Toolbar.addToolbarButton( u'Last Slide', u':/slides/slide_last.png', - translate('SlideController', 'Move to last'), + translate('OpenLP.SlideController', 'Move to last'), self.onSlideSelectedLast) if self.isLive: self.Toolbar.addToolbarSeparator(u'Close Separator') self.HideMenu = QtGui.QToolButton(self.Toolbar) - self.HideMenu.setText(translate('SlideController', 'Hide')) + self.HideMenu.setText(translate('OpenLP.SlideController', 'Hide')) self.HideMenu.setPopupMode(QtGui.QToolButton.MenuButtonPopup) self.Toolbar.addToolbarWidget(u'Hide Menu', self.HideMenu) self.HideMenu.setMenu(QtGui.QMenu( - translate('SlideController', 'Hide'), self.Toolbar)) + translate('OpenLP.SlideController', 'Hide'), self.Toolbar)) self.BlankScreen = QtGui.QAction(QtGui.QIcon( u':/slides/slide_blank.png'), u'Blank Screen', self.HideMenu) self.BlankScreen.setCheckable(True) @@ -225,44 +225,44 @@ class SlideController(QtGui.QWidget): self.Toolbar.addToolbarSeparator(u'Close Separator') self.Toolbar.addToolbarButton( u'Go Live', u':/general/general_live.png', - translate('SlideController', 'Move to live'), self.onGoLive) + translate('OpenLP.SlideController', 'Move to live'), self.onGoLive) self.Toolbar.addToolbarSeparator(u'Close Separator') self.Toolbar.addToolbarButton( u'Edit Song', u':/general/general_edit.png', - translate('SlideController', 'Edit and re-preview Song'), + translate('OpenLP.SlideController', 'Edit and re-preview Song'), self.onEditSong) if isLive: self.Toolbar.addToolbarSeparator(u'Loop Separator') self.Toolbar.addToolbarButton( u'Start Loop', u':/media/media_time.png', - translate('SlideController', 'Start continuous loop'), + translate('OpenLP.SlideController', 'Start continuous loop'), self.onStartLoop) self.Toolbar.addToolbarButton( u'Stop Loop', u':/media/media_stop.png', - translate('SlideController', 'Stop continuous loop'), + translate('OpenLP.SlideController', 'Stop continuous loop'), self.onStopLoop) self.DelaySpinBox = QtGui.QSpinBox() self.DelaySpinBox.setMinimum(1) self.DelaySpinBox.setMaximum(180) self.Toolbar.addToolbarWidget( u'Image SpinBox', self.DelaySpinBox) - self.DelaySpinBox.setSuffix(translate('SlideController', 's')) - self.DelaySpinBox.setToolTip(translate('SlideController', + self.DelaySpinBox.setSuffix(translate('OpenLP.SlideController', 's')) + self.DelaySpinBox.setToolTip(translate('OpenLP.SlideController', 'Delay between slides in seconds')) self.ControllerLayout.addWidget(self.Toolbar) #Build a Media ToolBar self.Mediabar = OpenLPToolbar(self) self.Mediabar.addToolbarButton( u'Media Start', u':/slides/media_playback_start.png', - translate('SlideController', 'Start playing media'), + translate('OpenLP.SlideController', 'Start playing media'), self.onMediaPlay) self.Mediabar.addToolbarButton( u'Media Pause', u':/slides/media_playback_pause.png', - translate('SlideController', 'Start playing media'), + translate('OpenLP.SlideController', 'Start playing media'), self.onMediaPause) self.Mediabar.addToolbarButton( u'Media Stop', u':/slides/media_playback_stop.png', - translate('SlideController', 'Start playing media'), + translate('OpenLP.SlideController', 'Start playing media'), self.onMediaStop) if not self.isLive: self.seekSlider = Phonon.SeekSlider() @@ -278,11 +278,11 @@ class SlideController(QtGui.QWidget): # Build the Song Toolbar if isLive: self.SongMenu = QtGui.QToolButton(self.Toolbar) - self.SongMenu.setText(translate('SlideController', 'Go to Verse')) + self.SongMenu.setText(translate('OpenLP.SlideController', 'Go to Verse')) self.SongMenu.setPopupMode(QtGui.QToolButton.InstantPopup) self.Toolbar.addToolbarWidget(u'Song Menu', self.SongMenu) self.SongMenu.setMenu(QtGui.QMenu( - translate('SlideController', 'Go to Verse'), self.Toolbar)) + translate('OpenLP.SlideController', 'Go to Verse'), self.Toolbar)) self.Toolbar.makeWidgetsInvisible([u'Song Menu']) # Screen preview area self.PreviewFrame = QtGui.QFrame(self.Splitter) diff --git a/openlp/core/ui/splashscreen.py b/openlp/core/ui/splashscreen.py index ff2be94df..bd87bcb12 100644 --- a/openlp/core/ui/splashscreen.py +++ b/openlp/core/ui/splashscreen.py @@ -31,9 +31,6 @@ class SplashScreen(object): def __init__(self, version): self.splash_screen = QtGui.QSplashScreen() self.setupUi() - self.message = translate( - 'Splashscreen', 'Starting')\ - + '..... ' + version def setupUi(self): self.splash_screen.setObjectName(u'splash_screen') @@ -48,25 +45,15 @@ class SplashScreen(object): self.splash_screen.sizePolicy().hasHeightForWidth()) self.splash_screen.setSizePolicy(sizePolicy) self.splash_screen.setContextMenuPolicy(QtCore.Qt.PreventContextMenu) - icon = build_icon(u':/icon/openlp-logo-16x16.png') - self.splash_screen.setWindowIcon(icon) splash_image = QtGui.QPixmap(u':/graphics/openlp-splash-screen.png') self.splash_screen.setPixmap(splash_image) self.splash_screen.setMask(splash_image.mask()) self.splash_screen.setWindowFlags( QtCore.Qt.SplashScreen | QtCore.Qt.WindowStaysOnTopHint) - self.retranslateUi() QtCore.QMetaObject.connectSlotsByName(self.splash_screen) - def retranslateUi(self): - self.splash_screen.setWindowTitle( - translate('Splashscreen', 'Splash Screen')) - def show(self): self.splash_screen.show() - self.splash_screen.showMessage(self.message, - QtCore.Qt.AlignLeft | QtCore.Qt.AlignBottom, QtCore.Qt.black) - self.splash_screen.repaint() def finish(self, widget): self.splash_screen.finish(widget) diff --git a/openlp/core/ui/thememanager.py b/openlp/core/ui/thememanager.py index 1745e6030..9f1067baa 100644 --- a/openlp/core/ui/thememanager.py +++ b/openlp/core/ui/thememanager.py @@ -55,25 +55,31 @@ class ThemeManager(QtGui.QWidget): self.amendThemeForm = AmendThemeForm(self) self.Toolbar = OpenLPToolbar(self) self.Toolbar.addToolbarButton( - translate('ThemeManager', 'New Theme'), u':/themes/theme_new.png', - translate('ThemeManager', 'Create a new theme.'), self.onAddTheme) + translate('OpenLP.ThemeManager', 'New Theme'), + u':/themes/theme_new.png', + translate('OpenLP.ThemeManager', 'Create a new theme.'), + self.onAddTheme) self.Toolbar.addToolbarButton( - translate('ThemeManager', 'Edit Theme'), + translate('OpenLP.ThemeManager', 'Edit Theme'), u':/themes/theme_edit.png', - translate('ThemeManager', 'Edit a theme.'), self.onEditTheme) + translate('OpenLP.ThemeManager', 'Edit a theme.'), + self.onEditTheme) self.Toolbar.addToolbarButton( - translate('ThemeManager', 'Delete Theme'), + translate('OpenLP.ThemeManager', 'Delete Theme'), u':/general/general_delete.png', - translate('ThemeManager', 'Delete a theme.'), self.onDeleteTheme) + translate('OpenLP.ThemeManager', 'Delete a theme.'), + self.onDeleteTheme) self.Toolbar.addSeparator() self.Toolbar.addToolbarButton( - translate('ThemeManager', 'Import Theme'), + translate('OpenLP.ThemeManager', 'Import Theme'), u':/general/general_import.png', - translate('ThemeManager', 'Import a theme.'), self.onImportTheme) + translate('OpenLP.ThemeManager', 'Import a theme.'), + self.onImportTheme) self.Toolbar.addToolbarButton( - translate('ThemeManager', 'Export Theme'), + translate('OpenLP.ThemeManager', 'Export Theme'), u':/general/general_export.png', - translate('ThemeManager', 'Export a theme.'), self.onExportTheme) + translate('OpenLP.ThemeManager', 'Export a theme.'), + self.onExportTheme) self.ThemeWidget = QtGui.QWidgetAction(self.Toolbar) self.Layout.addWidget(self.Toolbar) self.ThemeListWidget = QtGui.QListWidget(self) @@ -84,23 +90,24 @@ class ThemeManager(QtGui.QWidget): self.ThemeListWidget.addAction( context_menu_action(self.ThemeListWidget, u':/themes/theme_edit.png', - translate('ThemeManager', '&Edit Theme'), self.onEditTheme)) + translate('OpenLP.ThemeManager', '&Edit Theme'), + self.onEditTheme)) self.ThemeListWidget.addAction( context_menu_separator(self.ThemeListWidget)) self.ThemeListWidget.addAction( context_menu_action(self.ThemeListWidget, u':/general/general_delete.png', - translate('ThemeManager', '&Delete Theme'), + translate('OpenLP.ThemeManager', '&Delete Theme'), self.onDeleteTheme)) self.ThemeListWidget.addAction( context_menu_action(self.ThemeListWidget, u':/general/general_export.png', - translate('ThemeManager', 'Set As &Global Default'), + translate('OpenLP.ThemeManager', 'Set As &Global Default'), self.changeGlobalFromScreen)) self.ThemeListWidget.addAction( context_menu_action(self.ThemeListWidget, u':/general/general_export.png', - translate('ThemeManager', 'E&xport Theme'), + translate('OpenLP.ThemeManager', 'E&xport Theme'), self.onExportTheme)) self.ThemeListWidget.addAction( context_menu_separator(self.ThemeListWidget)) @@ -139,8 +146,8 @@ class ThemeManager(QtGui.QWidget): self.ThemeListWidget.item(count).setText(newName) #Set the new name if themeName == newName: - name = unicode(translate('ThemeManager', '%s (default)')) % \ - newName + name = unicode(translate('OpenLP.ThemeManager', + '%s (default)')) % newName self.ThemeListWidget.item(count).setText(name) def changeGlobalFromScreen(self, index = -1): @@ -161,13 +168,14 @@ class ThemeManager(QtGui.QWidget): if count == selected_row: self.global_theme = unicode( self.ThemeListWidget.item(count).text()) - name = unicode(translate('ThemeManager', '%s (default)')) % \ - self.global_theme + name = unicode(translate('OpenLP.ThemeManager', + '%s (default)')) % self.global_theme self.ThemeListWidget.item(count).setText(name) QtCore.QSettings().setValue( self.settingsSection + u'/global theme', QtCore.QVariant(self.global_theme)) - Receiver.send_message(u'theme_update_global', self.global_theme) + Receiver.send_message(u'theme_update_global', + self.global_theme) self.pushThemes() def onAddTheme(self): @@ -185,7 +193,8 @@ class ThemeManager(QtGui.QWidget): Loads the settings for the theme that is to be edited and launches the theme editing form so the user can make their changes. """ - if check_item_selected(self.ThemeListWidget, translate('ThemeManager', + if check_item_selected(self.ThemeListWidget, + translate('OpenLP.ThemeManager', 'You must select a theme to edit.')): item = self.ThemeListWidget.currentItem() themeName = unicode(item.text()) @@ -207,14 +216,15 @@ class ThemeManager(QtGui.QWidget): self.global_theme = unicode(QtCore.QSettings().value( self.settingsSection + u'/global theme', QtCore.QVariant(u'')).toString()) - if check_item_selected(self.ThemeListWidget, translate('ThemeManager', + if check_item_selected(self.ThemeListWidget, + translate('OpenLP.ThemeManager', 'You must select a theme to delete.')): item = self.ThemeListWidget.currentItem() theme = unicode(item.text()) # confirm deletion answer = QtGui.QMessageBox.question(self, - translate('ThemeManager', 'Delete Confirmation'), - translate('ThemeManager', 'Delete theme?'), + translate('OpenLP.ThemeManager', 'Delete Confirmation'), + translate('OpenLP.ThemeManager', 'Delete theme?'), QtGui.QMessageBox.StandardButtons(QtGui.QMessageBox.Yes | QtGui.QMessageBox.No), QtGui.QMessageBox.No) if answer == QtGui.QMessageBox.No: @@ -222,24 +232,24 @@ class ThemeManager(QtGui.QWidget): # should be the same unless default if theme != unicode(item.data(QtCore.Qt.UserRole).toString()): QtGui.QMessageBox.critical(self, - translate('ThemeManager', 'Error'), - translate('ThemeManager', + translate('OpenLP.ThemeManager', 'Error'), + translate('OpenLP.ThemeManager', 'You are unable to delete the default theme.'), QtGui.QMessageBox.StandardButtons(QtGui.QMessageBox.Ok)) else: for plugin in self.parent.plugin_manager.plugins: if plugin.usesTheme(theme): QtGui.QMessageBox.critical(self, - translate('ThemeManager', 'Error'), - unicode(translate('ThemeManager', + translate('OpenLP.ThemeManager', 'Error'), + unicode(translate('OpenLP.ThemeManager', 'Theme %s is use in %s plugin.')) % \ (theme, plugin.name)) return if unicode(self.serviceComboBox.currentText()) == theme: QtGui.QMessageBox.critical(self, - translate('ThemeManager', 'Error'), - unicode(translate('ThemeManager', - 'Theme %s is use by the service manager.')) % theme) + translate('OpenLP.ThemeManager', 'Error'), + unicode(translate('OpenLP.ThemeManager', + 'Theme %s is use by the service manager.')) % theme) return row = self.ThemeListWidget.row(item) self.ThemeListWidget.takeItem(row) @@ -273,12 +283,14 @@ class ThemeManager(QtGui.QWidget): item = self.ThemeListWidget.currentItem() if item is None: QtGui.QMessageBox.critical(self, - translate('ThemeManager', 'Error'), - translate('ThemeManager', 'You have not selected a theme.')) + translate('OpenLP.ThemeManager', 'Error'), + translate('OpenLP.ThemeManager', + 'You have not selected a theme.')) return theme = unicode(item.data(QtCore.Qt.UserRole).toString()) path = QtGui.QFileDialog.getExistingDirectory(self, - unicode(translate('ThemeManager', 'Save Theme - (%s)')) % theme, + unicode(translate('OpenLP.ThemeManager', + 'Save Theme - (%s)')) % theme, SettingsManager.get_last_dir(self.settingsSection, 1)) path = unicode(path) if path: @@ -294,14 +306,14 @@ class ThemeManager(QtGui.QWidget): os.path.join(source, name).encode(u'utf-8'), os.path.join(theme, name).encode(u'utf-8')) QtGui.QMessageBox.information(self, - translate('ThemeManager', 'Theme Exported'), - translate('ThemeManager', + translate('OpenLP.ThemeManager', 'Theme Exported'), + translate('OpenLP.ThemeManager', 'Your theme has been successfully exported.')) except (IOError, OSError): log.exception(u'Export Theme Failed') QtGui.QMessageBox.critical(self, - translate('ThemeManager', 'Theme Export Failed'), - translate('ThemeManager', + translate('OpenLP.ThemeManager', 'Theme Export Failed'), + translate('OpenLP.ThemeManager', 'Your theme could not be exported due to an error.')) finally: if zip: @@ -314,9 +326,9 @@ class ThemeManager(QtGui.QWidget): will load both OpenLP version 1 and version 2 themes. """ files = QtGui.QFileDialog.getOpenFileNames(self, - translate('ThemeManager', 'Select Theme Import File'), + translate('OpenLP.ThemeManager', 'Select Theme Import File'), SettingsManager.get_last_dir(self.settingsSection), - translate('ThemeManager', 'Theme (*.*)')) + translate('OpenLP.ThemeManager', 'Theme (*.*)')) log.info(u'New Themes %s', unicode(files)) if files: for file in files: @@ -343,7 +355,7 @@ class ThemeManager(QtGui.QWidget): if os.path.exists(theme): textName = os.path.splitext(name)[0] if textName == self.global_theme: - name = unicode(translate('ThemeManager', + name = unicode(translate('OpenLP.ThemeManager', '%s (default)')) % textName else: name = textName @@ -419,8 +431,9 @@ class ThemeManager(QtGui.QWidget): ucsfile = file.decode(u'utf-8') except UnicodeDecodeError: QtGui.QMessageBox.critical( - self, translate('ThemeManager', 'Error'), - translate('ThemeManager', 'File is not a valid theme.\n' + self, translate('OpenLP.ThemeManager', 'Error'), + translate('OpenLP.ThemeManager', + 'File is not a valid theme.\n' 'The content encoding is not UTF-8.')) log.exception(u'Filename "%s" is not valid UTF-8' % file.decode(u'utf-8', u'replace')) @@ -464,15 +477,16 @@ class ThemeManager(QtGui.QWidget): self.generateAndSaveImage(dir, themename, filexml) else: QtGui.QMessageBox.critical(self, - translate('ThemeManager', 'Error'), - translate('ThemeManager', 'File is not a valid theme.')) - log.exception(u'Theme file dosen\'t contain XML data %s' % + translate('OpenLP.ThemeManager', 'Error'), + translate('OpenLP.ThemeManager', + 'File is not a valid theme.')) + log.exception(u'Theme file does not contain XML data %s' % filename) except (IOError, NameError): QtGui.QMessageBox.critical(self, - translate('ThemeManager', 'Error'), - translate('ThemeManager', 'File is not a valid theme.')) - log.exception(u'Importing theme from zip file failed %s' % filename) + translate('OpenLP.ThemeManager', 'Error'), + translate('OpenLP.ThemeManager', 'File is not a valid theme.')) + log.exception(u'Importing theme from zip failed %s' % filename) finally: if zip: zip.close() @@ -536,7 +550,8 @@ class ThemeManager(QtGui.QWidget): vAlignCorrection = 1 elif theme.VerticalAlign == 1: vAlignCorrection = 2 - newtheme.add_display(unicode(shadow), unicode(theme.ShadowColor.name()), + newtheme.add_display(unicode(shadow), + unicode(theme.ShadowColor.name()), unicode(outline), unicode(theme.OutlineColor.name()), unicode(theme.HorizontalAlign), unicode(vAlignCorrection), unicode(theme.WrapStyle), unicode(0)) @@ -559,8 +574,9 @@ class ThemeManager(QtGui.QWidget): if self.saveThemeName != name: if os.path.exists(theme_file): result = QtGui.QMessageBox.question(self, - translate('ThemeManager', 'Theme Exists'), - translate('ThemeManager', 'A theme with this name already ' + translate('OpenLP.ThemeManager', 'Theme Exists'), + translate('OpenLP.ThemeManager', + 'A theme with this name already ' 'exists. Would you like to overwrite it?'), (QtGui.QMessageBox.Yes | QtGui.QMessageBox.No), QtGui.QMessageBox.No) @@ -611,7 +627,7 @@ class ThemeManager(QtGui.QWidget): newThemeItem).row() self.global_theme = unicode( self.ThemeListWidget.item(newThemeIndex).text()) - newName = unicode(translate('ThemeManager', + newName = unicode(translate('OpenLP.ThemeManager', '%s (default)')) % self.global_theme self.ThemeListWidget.item(newThemeIndex).setText(newName) QtCore.QSettings().setValue( @@ -665,14 +681,15 @@ class ThemeManager(QtGui.QWidget): """ log.debug(u'base theme created') newtheme = ThemeXML() - newtheme.new_document(unicode(translate('ThemeManager', 'New Theme'))) - newtheme.add_background_solid(unicode(u'#000000')) - newtheme.add_font(unicode(QtGui.QFont().family()), unicode(u'#FFFFFF'), - unicode(30), u'False') - newtheme.add_font(unicode(QtGui.QFont().family()), unicode(u'#FFFFFF'), - unicode(12), u'False', u'footer') - newtheme.add_display(u'False', unicode(u'#FFFFFF'), u'False', - unicode(u'#FFFFFF'), unicode(0), unicode(0), unicode(0), u'False') + newtheme.new_document( + unicode(translate('OpenLP.ThemeManager', 'New Theme'))) + newtheme.add_background_solid(u'#000000') + newtheme.add_font(unicode(QtGui.QFont().family()), u'#FFFFFF', + u'30', u'False') + newtheme.add_font(unicode(QtGui.QFont().family()), u'#FFFFFF', + u'12', u'False', u'footer') + newtheme.add_display(u'False', u'#FFFFFF', u'False', + unicode(u'#FFFFFF'), u'0', u'0', u'0', u'False') return newtheme.extract_xml() def createThemeFromXml(self, theme_xml, path): diff --git a/openlp/core/ui/themestab.py b/openlp/core/ui/themestab.py index 007a51fd6..7643525af 100644 --- a/openlp/core/ui/themestab.py +++ b/openlp/core/ui/themestab.py @@ -37,7 +37,7 @@ class ThemesTab(SettingsTab): def setupUi(self): self.setObjectName(u'ThemesTab') - self.tabTitleVisible = translate('ThemesTab', 'Themes') + self.tabTitleVisible = translate('OpenLP.ThemesTab', 'Themes') self.ThemesTabLayout = QtGui.QHBoxLayout(self) self.ThemesTabLayout.setSpacing(8) self.ThemesTabLayout.setMargin(8) @@ -106,26 +106,28 @@ class ThemesTab(SettingsTab): QtCore.SIGNAL(u'theme_update_list'), self.updateThemeList) def retranslateUi(self): - self.GlobalGroupBox.setTitle(translate('ThemesTab', 'Global Theme')) - self.LevelGroupBox.setTitle(translate('ThemesTab', 'Theme Level')) + self.GlobalGroupBox.setTitle( + translate('OpenLP.ThemesTab', 'Global Theme')) + self.LevelGroupBox.setTitle( + translate('OpenLP.ThemesTab', 'Theme Level')) self.SongLevelRadioButton.setText( - translate('ThemesTab', 'S&ong Level')) + translate('OpenLP.ThemesTab', 'S&ong Level')) self.SongLevelLabel.setText( - translate('ThemesTab', 'Use the theme from each song ' + translate('OpenLP.ThemesTab', '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.')) self.ServiceLevelRadioButton.setText( - translate('ThemesTab', '&Service Level')) + translate('OpenLP.ThemesTab', '&Service Level')) self.ServiceLevelLabel.setText( - translate('ThemesTab', 'Use the theme from the service, ' + translate('OpenLP.ThemesTab', '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.')) self.GlobalLevelRadioButton.setText( - translate('ThemesTab', '&Global Level')) + translate('OpenLP.ThemesTab', '&Global Level')) self.GlobalLevelLabel.setText( - translate('ThemesTab', 'Use the global theme, overriding any ' - 'themes associated with either the service or the songs.')) + translate('OpenLP.ThemesTab', 'Use the global theme, overriding ' + 'any themes associated with either the service or the songs.')) def load(self): settings = QtCore.QSettings() diff --git a/openlp/core/utils/languagemanager.py b/openlp/core/utils/languagemanager.py index 9cb87e891..f8ef385ea 100644 --- a/openlp/core/utils/languagemanager.py +++ b/openlp/core/utils/languagemanager.py @@ -82,7 +82,7 @@ class LanguageManager(object): """ translator = QtCore.QTranslator() translator.load(qm_file) - return translator.translate('MainWindow', 'English') + return translator.translate('OpenLP.MainWindow', 'English') @staticmethod def get_language(): @@ -117,9 +117,9 @@ class LanguageManager(object): u'general/language', QtCore.QVariant(language)) log.info(u'Language file: \'%s\' written to conf file' % language) QtGui.QMessageBox.information(None, - translate('LanguageManager', 'Language'), - translate('LanguageManager', - 'After restart new Language settings will be used.')) + translate('OpenLP.LanguageManager', 'Language'), + translate('OpenLP.LanguageManager', + 'Please restart OpenLP to use your new language setting.')) @staticmethod def init_qm_list(): diff --git a/openlp/plugins/alerts/alertsplugin.py b/openlp/plugins/alerts/alertsplugin.py index d5dd4e274..a9c726024 100644 --- a/openlp/plugins/alerts/alertsplugin.py +++ b/openlp/plugins/alerts/alertsplugin.py @@ -71,7 +71,7 @@ class AlertsPlugin(Plugin): self.toolsAlertItem.setText( translate('AlertsPlugin', '&Alert')) self.toolsAlertItem.setStatusTip( - translate('AlertsPlugin', 'Show an alert message')) + translate('AlertsPlugin', 'Show an alert message.')) self.toolsAlertItem.setShortcut(u'F7') self.serviceManager.parent.ToolsMenu.addAction(self.toolsAlertItem) QtCore.QObject.connect(self.toolsAlertItem, @@ -99,8 +99,7 @@ class AlertsPlugin(Plugin): self.alertForm.exec_() def about(self): - about_text = translate('AlertsPlugin', - 'Alerts Plugin
This plugin ' - 'controls the displaying of alerts on the presentations screen') + about_text = translate('AlertsPlugin', 'Alerts Plugin' + '
The alert plugin controls the displaying of nursery alerts ' + 'on the display screen') return about_text - diff --git a/openlp/plugins/alerts/lib/alertsmanager.py b/openlp/plugins/alerts/lib/alertsmanager.py index a8c4c9bfe..32150748a 100644 --- a/openlp/plugins/alerts/lib/alertsmanager.py +++ b/openlp/plugins/alerts/lib/alertsmanager.py @@ -79,7 +79,7 @@ class AlertsManager(QtCore.QObject): if self.timer_id != 0: Receiver.send_message(u'maindisplay_status_text', translate('AlertsPlugin.AlertsManager', - 'Alert message created and delayed')) + 'Alert message created and displayed.')) return Receiver.send_message(u'maindisplay_status_text', u'') self.generateAlert() diff --git a/openlp/plugins/alerts/lib/alertstab.py b/openlp/plugins/alerts/lib/alertstab.py index a024d4e49..07c39939d 100644 --- a/openlp/plugins/alerts/lib/alertstab.py +++ b/openlp/plugins/alerts/lib/alertstab.py @@ -190,13 +190,13 @@ class AlertsTab(SettingsTab): self.FontGroupBox.setTitle( translate('AlertsPlugin.AlertsTab', 'Font')) self.FontLabel.setText( - translate('AlertsPlugin.AlertsTab', 'Font Name:')) + translate('AlertsPlugin.AlertsTab', 'Font name:')) self.FontColorLabel.setText( - translate('AlertsPlugin.AlertsTab', 'Font Color:')) + translate('AlertsPlugin.AlertsTab', 'Font color:')) self.BackgroundColorLabel.setText( - translate('AlertsPlugin.AlertsTab', 'Background Color:')) + translate('AlertsPlugin.AlertsTab', 'Background color:')) self.FontSizeLabel.setText( - translate('AlertsPlugin.AlertsTab', 'Font Size:')) + translate('AlertsPlugin.AlertsTab', 'Font size:')) self.FontSizeSpinBox.setSuffix( translate('AlertsPlugin.AlertsTab', 'pt')) self.TimeoutLabel.setText( @@ -208,7 +208,7 @@ class AlertsTab(SettingsTab): self.PreviewGroupBox.setTitle( translate('AlertsPlugin.AlertsTab', 'Preview')) self.FontPreview.setText( - translate('AlertsPlugin.AlertsTab', 'openlp.org')) + translate('AlertsPlugin.AlertsTab', 'OpenLP 2.0')) self.LocationComboBox.setItemText(0, translate('AlertsPlugin.AlertsTab', 'Top')) self.LocationComboBox.setItemText(1, diff --git a/openlp/plugins/bibles/bibleplugin.py b/openlp/plugins/bibles/bibleplugin.py index 5ea870da6..19d6d65cd 100644 --- a/openlp/plugins/bibles/bibleplugin.py +++ b/openlp/plugins/bibles/bibleplugin.py @@ -70,7 +70,7 @@ class BiblePlugin(Plugin): self.ImportBibleItem.setObjectName(u'ImportBibleItem') import_menu.addAction(self.ImportBibleItem) self.ImportBibleItem.setText( - translate('BiblePlugin', '&Bible')) + translate('BiblesPlugin', '&Bible')) # signals and slots QtCore.QObject.connect(self.ImportBibleItem, QtCore.SIGNAL(u'triggered()'), self.onBibleImportClick) @@ -81,7 +81,7 @@ class BiblePlugin(Plugin): self.ExportBibleItem.setObjectName(u'ExportBibleItem') export_menu.addAction(self.ExportBibleItem) self.ExportBibleItem.setText(translate( - 'BiblePlugin', '&Bible')) + 'BiblesPlugin', '&Bible')) self.ExportBibleItem.setVisible(False) def onBibleImportClick(self): @@ -89,10 +89,9 @@ class BiblePlugin(Plugin): self.mediaItem.onImportClick() def about(self): - about_text = translate('BiblePlugin', - 'Bible Plugin
This ' - 'plugin allows bible verses from different sources to be ' - 'displayed on the screen during the service.') + about_text = translate('BiblesPlugin', 'Bible Plugin' + '
The Bible plugin provides the ability to display bible ' + 'verses from different sources during the service.') return about_text def usesTheme(self, theme): diff --git a/openlp/plugins/bibles/forms/bibleimportwizard.py b/openlp/plugins/bibles/forms/bibleimportwizard.py index 0408be550..53cca6eff 100644 --- a/openlp/plugins/bibles/forms/bibleimportwizard.py +++ b/openlp/plugins/bibles/forms/bibleimportwizard.py @@ -334,13 +334,13 @@ class Ui_BibleImportWizard(object): self.FormatComboBox.setItemText(3, translate('BiblesPlugin.ImportWizardForm', 'Web Download')) self.OsisLocationLabel.setText( - translate('BiblesPlugin.ImportWizardForm', 'File Location:')) + translate('BiblesPlugin.ImportWizardForm', 'File location:')) self.BooksLocationLabel.setText( - translate('BiblesPlugin.ImportWizardForm', 'Books Location:')) + translate('BiblesPlugin.ImportWizardForm', 'Books location:')) self.VerseLocationLabel.setText( - translate('BiblesPlugin.ImportWizardForm', 'Verse Location:')) + translate('BiblesPlugin.ImportWizardForm', 'Verse location:')) self.OpenSongFileLabel.setText( - translate('BiblesPlugin.ImportWizardForm', 'Bible Filename:')) + translate('BiblesPlugin.ImportWizardForm', 'Bible filename:')) self.LocationLabel.setText( translate('BiblesPlugin.ImportWizardForm', 'Location:')) self.LocationComboBox.setItemText(0, @@ -368,7 +368,7 @@ class Ui_BibleImportWizard(object): translate('BiblesPlugin.ImportWizardForm', 'Set up the Bible\'s license details.')) self.VersionNameLabel.setText( - translate('BiblesPlugin.ImportWizardForm', 'Version Name:')) + translate('BiblesPlugin.ImportWizardForm', 'Version name:')) self.CopyrightLabel.setText( translate('BiblesPlugin.ImportWizardForm', 'Copyright:')) self.PermissionLabel.setText( @@ -381,3 +381,4 @@ class Ui_BibleImportWizard(object): self.ImportProgressLabel.setText( translate('BiblesPlugin.ImportWizardForm', 'Ready.')) self.ImportProgressBar.setFormat(u'%p%') + diff --git a/openlp/plugins/bibles/lib/biblestab.py b/openlp/plugins/bibles/lib/biblestab.py index 3d3966777..d31ebb571 100644 --- a/openlp/plugins/bibles/lib/biblestab.py +++ b/openlp/plugins/bibles/lib/biblestab.py @@ -45,7 +45,7 @@ class BiblesTab(SettingsTab): def setupUi(self): self.setObjectName(u'BiblesTab') - self.tabTitleVisible = translate('BiblesPlugin,BiblesTab', 'Bibles') + self.tabTitleVisible = translate('BiblesPlugin.BiblesTab', 'Bibles') self.BibleLayout = QtGui.QHBoxLayout(self) self.BibleLayout.setSpacing(8) self.BibleLayout.setMargin(8) @@ -150,34 +150,34 @@ class BiblesTab(SettingsTab): def retranslateUi(self): self.VerseDisplayGroupBox.setTitle( - translate('BiblesPlugin,BiblesTab', 'Verse Display')) + translate('BiblesPlugin.BiblesTab', 'Verse Display')) self.NewChaptersCheckBox.setText( - translate('BiblesPlugin,BiblesTab', + translate('BiblesPlugin.BiblesTab', 'Only show new chapter numbers')) self.LayoutStyleLabel.setText( - translate('BiblesPlugin,BiblesTab', 'Layout Style:')) + translate('BiblesPlugin.BiblesTab', 'Layout style:')) self.DisplayStyleLabel.setText( - translate('BiblesPlugin,BiblesTab', 'Display Style:')) + translate('BiblesPlugin.BiblesTab', 'Display style:')) self.BibleThemeLabel.setText( - translate('BiblesPlugin,BiblesTab', 'Bible Theme:')) + translate('BiblesPlugin.BiblesTab', 'Bible theme:')) self.LayoutStyleComboBox.setItemText(0, - translate('BiblesPlugin,BiblesTab', 'verse per slide')) + translate('BiblesPlugin.BiblesTab', 'Verse Per Slide')) self.LayoutStyleComboBox.setItemText(1, - translate('BiblesPlugin,BiblesTab', 'verse per line')) + translate('BiblesPlugin.BiblesTab', 'Verse Per Line')) self.LayoutStyleComboBox.setItemText(2, - translate('BiblesPlugin,BiblesTab', 'continuous')) + translate('BiblesPlugin.BiblesTab', 'Continuous')) self.DisplayStyleComboBox.setItemText(0, - translate('BiblesPlugin,BiblesTab', 'No brackets')) + translate('BiblesPlugin.BiblesTab', 'No Brackets')) self.DisplayStyleComboBox.setItemText(1, - translate('BiblesPlugin,BiblesTab', '( and )')) + translate('BiblesPlugin.BiblesTab', '( And )')) self.DisplayStyleComboBox.setItemText(2, - translate('BiblesPlugin,BiblesTab', '{ and }')) + translate('BiblesPlugin.BiblesTab', '{ And }')) self.DisplayStyleComboBox.setItemText(3, - translate('BiblesPlugin,BiblesTab', '[ and ]')) + translate('BiblesPlugin.BiblesTab', '[ And ]')) self.ChangeNoteLabel.setText(translate('BiblesPlugin.BiblesTab', - 'Note:\nChanges don\'t affect verses already in the service')) + 'Note:\nChanges do not affect verses already in the service.')) self.BibleDualCheckBox.setText( - translate('BiblesPlugin,BiblesTab', 'Display Dual Bible Verses')) + translate('BiblesPlugin.BiblesTab', 'Display dual Bible verses')) def onBibleThemeComboBoxChanged(self): self.bible_theme = self.BibleThemeComboBox.currentText() diff --git a/openlp/plugins/bibles/lib/db.py b/openlp/plugins/bibles/lib/db.py index 3a4f72bcb..bb899e5cb 100644 --- a/openlp/plugins/bibles/lib/db.py +++ b/openlp/plugins/bibles/lib/db.py @@ -350,11 +350,11 @@ class BibleDB(QtCore.QObject, Manager): else: log.debug(u'OpenLP failed to find book %s', book) QtGui.QMessageBox.information(self.bible_plugin.mediaItem, - translate('BibleDB', 'Book not found'), - translate('BibleDB', u'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.')) + translate('BiblesPlugin.BibleDB', 'Book not found'), + translate('BiblesPlugin.BibleDB', '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.')) return verse_list def verse_search(self, text): diff --git a/openlp/plugins/bibles/lib/mediaitem.py b/openlp/plugins/bibles/lib/mediaitem.py index 96538a7eb..2d394814b 100644 --- a/openlp/plugins/bibles/lib/mediaitem.py +++ b/openlp/plugins/bibles/lib/mediaitem.py @@ -294,7 +294,7 @@ class BibleMediaItem(MediaManagerItem): self.QuickSecondVersionLabel.setText( translate('BiblesPlugin.MediaItem', 'Dual:')) self.QuickSearchLabel.setText( - translate('BiblesPlugin.MediaItem', 'Search Type:')) + translate('BiblesPlugin.MediaItem', 'Search type:')) self.QuickSearchLabel.setText( translate('BiblesPlugin.MediaItem', 'Find:')) self.QuickSearchButton.setText( @@ -611,7 +611,7 @@ class BibleMediaItem(MediaManagerItem): if self.verses == 0: self.AdvancedSearchButton.setEnabled(False) self.AdvancedMessage.setText( - translate('BiblesPlugin.MediaItem', 'Bible not fully loaded')) + translate('BiblesPlugin.MediaItem', 'Bible not fully loaded.')) else: self.AdvancedSearchButton.setEnabled(True) self.AdvancedMessage.setText(u'') diff --git a/openlp/plugins/custom/customplugin.py b/openlp/plugins/custom/customplugin.py index 79ccb1f9b..4785ad6b8 100644 --- a/openlp/plugins/custom/customplugin.py +++ b/openlp/plugins/custom/customplugin.py @@ -62,11 +62,11 @@ class CustomPlugin(Plugin): return CustomMediaItem(self, self.icon, self.name) def about(self): - about_text = translate('CustomPlugin', - 'Custom Plugin
This plugin ' - 'allows slides to be displayed on the screen in the same way ' - 'songs are. This plugin provides greater freedom over the ' - 'songs plugin.
') + about_text = translate('CustomPlugin', 'Custom Plugin' + '
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.') return about_text def usesTheme(self, theme): diff --git a/openlp/plugins/custom/forms/editcustomdialog.py b/openlp/plugins/custom/forms/editcustomdialog.py index 64b309a5f..eb503b01f 100644 --- a/openlp/plugins/custom/forms/editcustomdialog.py +++ b/openlp/plugins/custom/forms/editcustomdialog.py @@ -141,31 +141,38 @@ class Ui_customEditDialog(object): customEditDialog.setWindowTitle( translate('CustomPlugin.EditCustomForm', 'Edit Custom Slides')) self.UpButton.setToolTip( - translate('CustomPlugin.EditCustomForm', 'Move slide Up 1')) + translate('CustomPlugin.EditCustomForm', 'Move slide up once ' + 'position.')) self.DownButton.setToolTip( - translate('CustomPlugin.EditCustomForm', 'Move slide down 1')) + translate('CustomPlugin.EditCustomForm', 'Move slide down one ' + 'position.')) self.TitleLabel.setText( translate('CustomPlugin.EditCustomForm', '&Title:')) self.AddButton.setText( translate('CustomPlugin.EditCustomForm', 'Add New')) self.AddButton.setToolTip( - translate('CustomPlugin.EditCustomForm', 'Add new slide at bottom')) + translate('CustomPlugin.EditCustomForm', 'Add a new slide at ' + 'bottom.')) self.EditButton.setText( translate('CustomPlugin.EditCustomForm', 'Edit')) self.EditButton.setToolTip( - translate('CustomPlugin.EditCustomForm', 'Edit selected slide')) + translate('CustomPlugin.EditCustomForm', 'Edit the selected ' + 'slide.')) self.EditAllButton.setText( translate('CustomPlugin.EditCustomForm', 'Edit All')) self.EditAllButton.setToolTip( - translate('CustomPlugin.EditCustomForm', 'Edit all slides')) + translate('CustomPlugin.EditCustomForm', 'Edit all the slides at ' + 'once.')) self.SaveButton.setText( translate('CustomPlugin.EditCustomForm', 'Save')) self.SaveButton.setToolTip( - translate('CustomPlugin.EditCustomForm', 'Replace edited slide')) + translate('CustomPlugin.EditCustomForm', 'Save the slide currently ' + 'being edited.')) self.DeleteButton.setText( translate('CustomPlugin.EditCustomForm', 'Delete')) self.DeleteButton.setToolTip( - translate('CustomPlugin.EditCustomForm', 'Delete selected slide')) + translate('CustomPlugin.EditCustomForm', 'Delete the selected ' + 'slide.')) self.ClearButton.setText( translate('CustomPlugin.EditCustomForm', 'Clear')) self.ClearButton.setToolTip( @@ -173,7 +180,8 @@ class Ui_customEditDialog(object): self.SplitButton.setText( translate('CustomPlugin.EditCustomForm', 'Split Slide')) self.SplitButton.setToolTip( - translate('CustomPlugin.EditCustomForm', 'Add slide split')) + translate('CustomPlugin.EditCustomForm', 'Split a slide into two ' + 'by inserting a slide splitter.')) self.ThemeLabel.setText( translate('CustomPlugin.EditCustomForm', 'The&me:')) self.CreditLabel.setText( diff --git a/openlp/plugins/custom/forms/editcustomform.py b/openlp/plugins/custom/forms/editcustomform.py index 24810eb0b..e88c6c3d3 100644 --- a/openlp/plugins/custom/forms/editcustomform.py +++ b/openlp/plugins/custom/forms/editcustomform.py @@ -269,14 +269,16 @@ class EditCustomForm(QtGui.QDialog, Ui_customEditDialog): if len(self.TitleEdit.displayText()) == 0: self.TitleEdit.setFocus() return False, translate('CustomPlugin.EditCustomForm', - 'You need to enter a title') + 'You need to type in a title.') # must have 1 slide if self.VerseListView.count() == 0: self.VerseTextEdit.setFocus() return False, translate('CustomPlugin.EditCustomForm', - 'You need to enter a slide') + 'You need to add at least one slide') if self.VerseTextEdit.toPlainText(): self.VerseTextEdit.setFocus() - return False, translate('CustomPlugin.editCustomForm', - 'You have unsaved data, please save or clear') + return False, translate('CustomPlugin.EditCustomForm', + 'You have one or more unsaved slides, please either save your ' + 'slide(s) or clear your changes.') return True, u'' + diff --git a/openlp/plugins/custom/lib/customtab.py b/openlp/plugins/custom/lib/customtab.py index ac0db035e..c860ece5d 100644 --- a/openlp/plugins/custom/lib/customtab.py +++ b/openlp/plugins/custom/lib/customtab.py @@ -58,7 +58,7 @@ class CustomTab(SettingsTab): self.CustomModeGroupBox.setTitle(translate('CustomPlugin.CustomTab', 'Custom Display')) self.DisplayFooterCheckBox.setText( - translate('CustomPlugin.CustomTab', 'Display Footer')) + translate('CustomPlugin.CustomTab', 'Display footer')) def onDisplayFooterCheckBoxChanged(self, check_state): self.displayFooter = False diff --git a/openlp/plugins/custom/lib/mediaitem.py b/openlp/plugins/custom/lib/mediaitem.py index cdea8cb48..7595bfb73 100644 --- a/openlp/plugins/custom/lib/mediaitem.py +++ b/openlp/plugins/custom/lib/mediaitem.py @@ -121,7 +121,7 @@ class CustomMediaItem(MediaManagerItem): """ if check_item_selected(self.listView, translate('CustomPlugin.MediaItem', - 'You must select an item to edit.')): + 'You haven\'t selected an item to edit.')): item = self.listView.currentItem() item_id = (item.data(QtCore.Qt.UserRole)).toInt()[0] self.parent.edit_custom_form.loadCustom(item_id, False) @@ -134,7 +134,7 @@ class CustomMediaItem(MediaManagerItem): """ if check_item_selected(self.listView, translate('CustomPlugin.MediaItem', - 'You must select an item to delete.')): + 'You haven\'t selected an item to delete.')): row_list = [item.row() for item in self.listView.selectedIndexes()] row_list.sort(reverse=True) id_list = [(item.data(QtCore.Qt.UserRole)).toInt()[0] diff --git a/openlp/plugins/images/imageplugin.py b/openlp/plugins/images/imageplugin.py index adf8e401b..03c8992f9 100644 --- a/openlp/plugins/images/imageplugin.py +++ b/openlp/plugins/images/imageplugin.py @@ -48,12 +48,15 @@ class ImagePlugin(Plugin): return ImageMediaItem(self, self.icon, self.name) def about(self): - about_text = translate('ImagePlugin', 'Image Plugin' - '
Allows images of all types to be displayed. If a number ' - 'of images are selected together and presented on the live ' - 'controller it is possible to turn them into a timed loop.' - 'From the plugin if the Override background is chosen and ' - 'an image is selected any songs which are rendered will use the ' - 'selected image from the background instead of the one provied by ' - 'the theme.
') - return about_text \ No newline at end of file + about_text = translate('ImagePlugin', 'Image Plugin' + '
The image plugin provides displaying of images.
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.') + return about_text diff --git a/openlp/plugins/images/lib/imagetab.py b/openlp/plugins/images/lib/imagetab.py index 06b300b98..319ec7ac4 100644 --- a/openlp/plugins/images/lib/imagetab.py +++ b/openlp/plugins/images/lib/imagetab.py @@ -66,7 +66,7 @@ class ImageTab(SettingsTab): self.ImageSettingsGroupBox.setTitle( translate('ImagePlugin.ImageTab', 'Image Settings')) self.TimeoutLabel.setText( - translate('ImagePlugin.ImageTab', 'Slide Loop Delay:')) + translate('ImagePlugin.ImageTab', 'Slide loop delay:')) self.TimeoutSpinBox.setSuffix( translate('ImagePlugin.ImageTab', 'sec')) @@ -88,3 +88,4 @@ class ImageTab(SettingsTab): def postSetUp(self): Receiver.send_message(u'slidecontroller_live_spin_delay', self.loop_delay) + diff --git a/openlp/plugins/images/lib/mediaitem.py b/openlp/plugins/images/lib/mediaitem.py index 802ed8d71..51e06be3f 100644 --- a/openlp/plugins/images/lib/mediaitem.py +++ b/openlp/plugins/images/lib/mediaitem.py @@ -105,9 +105,10 @@ class ImageMediaItem(MediaManagerItem): self.ImageWidget.setSizePolicy(sizePolicy) self.ImageWidget.setObjectName(u'ImageWidget') self.blankButton = self.toolbar.addToolbarButton( - u'Replace Background', u':/slides/slide_blank.png', + translate('ImagePlugin.MediaItem', 'Replace Background'), + u':/slides/slide_blank.png', translate('ImagePlugin.MediaItem', 'Replace Live Background'), - self.onReplaceClick, False) + self.onReplaceClick, False) # Add the song widget to the page layout self.pageLayout.addWidget(self.ImageWidget) @@ -116,7 +117,7 @@ class ImageMediaItem(MediaManagerItem): Remove an image item from the list """ if check_item_selected(self.listView, translate('ImagePlugin.MediaItem', - 'You must select an item to delete.')): + 'You must select an image to delete.')): row_list = [item.row() for item in self.listView.selectedIndexes()] row_list.sort(reverse=True) for row in row_list: @@ -170,7 +171,7 @@ class ImageMediaItem(MediaManagerItem): def onReplaceClick(self): if check_item_selected(self.listView, translate('ImagePlugin.MediaItem', - 'You must select an item to process.')): + 'You must select an image to replace the background with.')): items = self.listView.selectedIndexes() for item in items: bitem = self.listView.item(item.row()) @@ -180,3 +181,4 @@ class ImageMediaItem(MediaManagerItem): def onPreviewClick(self): MediaManagerItem.onPreviewClick(self) + diff --git a/openlp/plugins/media/lib/mediaitem.py b/openlp/plugins/media/lib/mediaitem.py index 082d9b3fd..b295d7b70 100644 --- a/openlp/plugins/media/lib/mediaitem.py +++ b/openlp/plugins/media/lib/mediaitem.py @@ -92,17 +92,17 @@ class MediaMediaItem(MediaManagerItem): self.ImageWidget.setObjectName(u'ImageWidget') #Replace backgrounds do not work at present so remove functionality. self.blankButton = self.toolbar.addToolbarButton( - u'Replace Background', u':/slides/slide_blank.png', + translate('MediaPlugin.MediaItem', 'Replace Background'), + u':/slides/slide_blank.png', translate('MediaPlugin.MediaItem', 'Replace Live Background'), self.onReplaceClick, False) # Add the song widget to the page layout self.pageLayout.addWidget(self.ImageWidget) def onReplaceClick(self): - if check_item_selected(self.listView, translate('ImagePlugin.MediaItem', - 'You must select an item to process.')): + 'You must select a media file to replace the background with.')): item = self.listView.currentItem() filename = unicode(item.data(QtCore.Qt.UserRole).toString()) self.parent.displayManager.displayVideo(filename) @@ -133,7 +133,7 @@ class MediaMediaItem(MediaManagerItem): Remove a media item from the list """ if check_item_selected(self.listView, translate('MediaPlugin.MediaItem', - 'You must select an item to delete.')): + 'You must select a media file to delete.')): row_list = [item.row() for item in self.listView.selectedIndexes()] row_list.sort(reverse=True) for row in row_list: @@ -149,3 +149,4 @@ class MediaMediaItem(MediaManagerItem): item_name.setIcon(build_icon(img)) item_name.setData(QtCore.Qt.UserRole, QtCore.QVariant(file)) self.listView.addItem(item_name) + diff --git a/openlp/plugins/media/mediaplugin.py b/openlp/plugins/media/mediaplugin.py index 4162c4d31..a2e27bd4d 100644 --- a/openlp/plugins/media/mediaplugin.py +++ b/openlp/plugins/media/mediaplugin.py @@ -73,7 +73,6 @@ class MediaPlugin(Plugin): return MediaMediaItem(self, self.icon, self.name) def about(self): - about_text = translate('MediaPlugin', - 'Media Plugin
This plugin ' - 'allows the playing of audio and video media') + about_text = translate('MediaPlugin', 'Media Plugin' + '
The media plugin provides playback of audio and video.') return about_text diff --git a/openlp/plugins/presentations/lib/mediaitem.py b/openlp/plugins/presentations/lib/mediaitem.py index 33d4d2ab2..fe2c3ead6 100644 --- a/openlp/plugins/presentations/lib/mediaitem.py +++ b/openlp/plugins/presentations/lib/mediaitem.py @@ -184,9 +184,9 @@ class PresentationMediaItem(MediaManagerItem): filename = os.path.split(unicode(file))[1] if titles.count(filename) > 0: if not initialLoad: - QtGui.QMessageBox.critical( - self, translate('PresentationPlugin.MediaItem', - 'File exists'), + QtGui.QMessageBox.critical(self, + translate('PresentationPlugin.MediaItem', + 'File Exists'), translate('PresentationPlugin.MediaItem', 'A presentation with that filename already exists.'), QtGui.QMessageBox.Ok) @@ -211,7 +211,7 @@ class PresentationMediaItem(MediaManagerItem): else: QtGui.QMessageBox.critical( self, translate('PresentationPlugin.MediaItem', - 'Unsupported file'), + 'Unsupported File'), translate('PresentationPlugin.MediaItem', 'This type of presentation is not supported'), QtGui.QMessageBox.Ok) @@ -299,3 +299,4 @@ class PresentationMediaItem(MediaManagerItem): if filetype in self.controllers[controller].alsosupports: return controller return None + diff --git a/openlp/plugins/presentations/lib/presentationtab.py b/openlp/plugins/presentations/lib/presentationtab.py index 1b9b3bb55..ba0d2fd4f 100644 --- a/openlp/plugins/presentations/lib/presentationtab.py +++ b/openlp/plugins/presentations/lib/presentationtab.py @@ -114,9 +114,7 @@ class PresentationTab(SettingsTab): for key in self.controllers: controller = self.controllers[key] checkbox = self.PresenterCheckboxes[controller.name] - checkbox.setText( - u'%s %s' % (controller.name, - translate('PresentationPlugin.PresentationTab', 'available'))) + checkbox.setText(controller.name) self.AdvancedGroupBox.setTitle( translate('PresentationPlugin.PresentationTab', 'Advanced')) diff --git a/openlp/plugins/presentations/presentationplugin.py b/openlp/plugins/presentations/presentationplugin.py index 51449fa83..26e5f94c3 100644 --- a/openlp/plugins/presentations/presentationplugin.py +++ b/openlp/plugins/presentations/presentationplugin.py @@ -46,7 +46,7 @@ class PresentationPlugin(Plugin): def __init__(self, plugin_helpers): """ - PluginPresentation constructor. + PluginPresentation constructor. """ log.debug(u'Initialised') self.controllers = {} @@ -136,9 +136,9 @@ class PresentationPlugin(Plugin): """ Return information about this plugin """ - about_text = translate('PresentationPlugin', - 'Presentation Plugin
Delivers ' - 'the ability to show presentations using a number of different ' + about_text = translate('PresentationPlugin', 'Presentation ' + 'Plugin
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.') return about_text diff --git a/openlp/plugins/remotes/lib/remotetab.py b/openlp/plugins/remotes/lib/remotetab.py index 83f335382..7400875ee 100644 --- a/openlp/plugins/remotes/lib/remotetab.py +++ b/openlp/plugins/remotes/lib/remotetab.py @@ -37,30 +37,43 @@ class RemoteTab(SettingsTab): def setupUi(self): self.setObjectName(u'RemoteTab') self.tabTitleVisible = translate('RemotePlugin.RemoteTab', 'Remotes') - self.RemoteLayout = QtGui.QFormLayout(self) - self.RemoteLayout.setObjectName(u'RemoteLayout') - self.RemoteModeGroupBox = QtGui.QGroupBox(self) - self.RemoteModeGroupBox.setObjectName(u'RemoteModeGroupBox') - self.RemoteModeLayout = QtGui.QVBoxLayout(self.RemoteModeGroupBox) - self.RemoteModeLayout.setSpacing(8) - self.RemoteModeLayout.setMargin(8) - self.RemoteModeLayout.setObjectName(u'RemoteModeLayout') - self.RemotePortSpinBox = QtGui.QSpinBox(self.RemoteModeGroupBox) - self.RemotePortSpinBox.setObjectName(u'RemotePortSpinBox') - self.RemotePortSpinBox.setMaximum(32767) - self.RemoteModeLayout.addWidget(self.RemotePortSpinBox) - self.RemoteLayout.setWidget( - 0, QtGui.QFormLayout.LabelRole, self.RemoteModeGroupBox) + self.remoteLayout = QtGui.QFormLayout(self) + self.remoteLayout.setObjectName(u'remoteLayout') + self.serverSettingsGroupBox = QtGui.QGroupBox(self) + self.serverSettingsGroupBox.setObjectName(u'serverSettingsGroupBox') + self.serverSettingsLayout = QtGui.QFormLayout(self.serverSettingsGroupBox) + self.serverSettingsLayout.setSpacing(8) + self.serverSettingsLayout.setMargin(8) + self.serverSettingsLayout.setObjectName(u'serverSettingsLayout') + self.addressEdit = QtGui.QLineEdit(self.serverSettingsGroupBox) + self.addressEdit.setObjectName(u'addressEdit') + self.serverSettingsLayout.addRow( + translate('RemotePlugin.RemoteTab', 'Serve on IP address:'), + self.addressEdit) + self.portSpinBox = QtGui.QSpinBox(self.serverSettingsGroupBox) + self.portSpinBox.setObjectName(u'portSpinBox') + self.portSpinBox.setMaximum(32767) + self.serverSettingsLayout.addRow( + translate('RemotePlugin.RemoteTab', 'Port number:'), + self.portSpinBox) + self.remoteLayout.setWidget( + 0, QtGui.QFormLayout.LabelRole, self.serverSettingsGroupBox) def retranslateUi(self): - self.RemoteModeGroupBox.setTitle( - translate('RemotePlugin.RemoteTab', 'Remotes Receiver Port')) + self.serverSettingsGroupBox.setTitle( + translate('RemotePlugin.RemoteTab', 'Server Settings')) def load(self): - self.RemotePortSpinBox.setValue( - QtCore.QSettings().value(self.settingsSection + u'/remote port', + self.portSpinBox.setValue( + QtCore.QSettings().value(self.settingsSection + u'/port', QtCore.QVariant(4316)).toInt()[0]) + self.addressEdit.setText( + QtCore.QSettings().value(self.settingsSection + u'/ip address', + QtCore.QVariant(u'0.0.0.0')).toString()) def save(self): - QtCore.QSettings().setValue(self.settingsSection + u'/remote port', - QtCore.QVariant(self.RemotePortSpinBox.value())) \ No newline at end of file + QtCore.QSettings().setValue(self.settingsSection + u'/port', + QtCore.QVariant(self.portSpinBox.value())) + QtCore.QSettings().setValue(self.settingsSection + u'/ip address', + QtCore.QVariant(self.addressEdit.text())) + diff --git a/openlp/plugins/remotes/remoteplugin.py b/openlp/plugins/remotes/remoteplugin.py index a878869d0..6666b5e93 100644 --- a/openlp/plugins/remotes/remoteplugin.py +++ b/openlp/plugins/remotes/remoteplugin.py @@ -70,9 +70,8 @@ class RemotesPlugin(Plugin): """ Information about this plugin """ - about_text = translate('RemotePlugin', - 'Remote Plugin
This plugin ' - 'provides the ability to send messages to a running version of ' - 'openlp on a different computer via a web browser or other app
' - 'The Primary use for this would be to send alerts from a creche') - return about_text \ No newline at end of file + about_text = translate('RemotePlugin', 'Remote Plugin' + '
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.') + return about_text diff --git a/openlp/plugins/songs/forms/editsongdialog.py b/openlp/plugins/songs/forms/editsongdialog.py index dccc6d6ba..e89433fe5 100644 --- a/openlp/plugins/songs/forms/editsongdialog.py +++ b/openlp/plugins/songs/forms/editsongdialog.py @@ -407,11 +407,11 @@ class Ui_EditSongDialog(object): self.TitleLabel.setText( translate('SongsPlugin.EditSongForm', '&Title:')) self.AlternativeTitleLabel.setText( - translate('SongsPlugin.EditSongForm', 'Alt&ernate Title:')) + translate('SongsPlugin.EditSongForm', 'Alt&ernate title:')) self.LyricsLabel.setText( translate('SongsPlugin.EditSongForm', '&Lyrics:')) self.VerseOrderLabel.setText( - translate('SongsPlugin.EditSongForm', '&Verse Order:')) + translate('SongsPlugin.EditSongForm', '&Verse order:')) self.VerseAddButton.setText( translate('SongsPlugin.EditSongForm', '&Add')) self.VerseEditButton.setText( @@ -452,7 +452,7 @@ class Ui_EditSongDialog(object): self.CopyrightInsertButton.setText( translate('SongsPlugin.EditSongForm', '\xa9')) self.CCLILabel.setText( - translate('SongsPlugin.EditSongForm', 'CCLI Number:')) + translate('SongsPlugin.EditSongForm', 'CCLI number:')) self.CommentsGroupBox.setTitle( translate('SongsPlugin.EditSongForm', 'Comments')) self.SongTabWidget.setTabText( diff --git a/openlp/plugins/songs/lib/__init__.py b/openlp/plugins/songs/lib/__init__.py index 0e2b93bd6..9a5e92bcc 100644 --- a/openlp/plugins/songs/lib/__init__.py +++ b/openlp/plugins/songs/lib/__init__.py @@ -93,19 +93,19 @@ class VerseType(object): The type to return a string for """ if verse_type == VerseType.Verse: - return translate('VerseType', 'Verse') + return translate('SongsPlugin.VerseType', 'Verse') elif verse_type == VerseType.Chorus: - return translate('VerseType', 'Chorus') + return translate('SongsPlugin.VerseType', 'Chorus') elif verse_type == VerseType.Bridge: - return translate('VerseType', 'Bridge') + return translate('SongsPlugin.VerseType', 'Bridge') elif verse_type == VerseType.PreChorus: - return translate('VerseType', 'Pre-Chorus') + return translate('SongsPlugin.VerseType', 'Pre-Chorus') elif verse_type == VerseType.Intro: - return translate('VerseType', 'Intro') + return translate('SongsPlugin.VerseType', 'Intro') elif verse_type == VerseType.Ending: - return translate('VerseType', 'Ending') + return translate('SongsPlugin.VerseType', 'Ending') elif verse_type == VerseType.Other: - return translate('VerseType', 'Other') + return translate('SongsPlugin.VerseType', 'Other') @staticmethod def from_string(verse_type): diff --git a/openlp/plugins/songs/lib/mediaitem.py b/openlp/plugins/songs/lib/mediaitem.py index 0b9ef789d..28677e3b6 100644 --- a/openlp/plugins/songs/lib/mediaitem.py +++ b/openlp/plugins/songs/lib/mediaitem.py @@ -209,9 +209,7 @@ class SongMediaItem(MediaManagerItem): self.listView.clear() for author in searchresults: for song in author.songs: - song_detail = unicode( - translate('SongsPlugin.MediaItem', '%s (%s)')) % \ - (author.display_name, song.title) + song_detail = '%s (%s)' % (author.display_name, song.title) song_name = QtGui.QListWidgetItem(song_detail) song_name.setData(QtCore.Qt.UserRole, QtCore.QVariant(song.id)) self.listView.addItem(song_name) @@ -270,7 +268,8 @@ class SongMediaItem(MediaManagerItem): """ Edit a song """ - if check_item_selected(self.listView, translate('SongsPlugin.MediaItem', + if check_item_selected(self.listView, + translate('SongsPlugin.MediaItem', 'You must select an item to edit.')): item = self.listView.currentItem() item_id = (item.data(QtCore.Qt.UserRole)).toInt()[0] @@ -281,18 +280,19 @@ class SongMediaItem(MediaManagerItem): """ Remove a song from the list and database """ - if check_item_selected(self.listView, translate('SongsPlugin.MediaItem', + if check_item_selected(self.listView, + translate('SongsPlugin.MediaItem', 'You must select an item to delete.')): items = self.listView.selectedIndexes() if len(items) == 1: del_message = translate('SongsPlugin.MediaItem', - 'Delete song?') + 'Are you sure you want to delete the selected song?') else: - del_message = unicode( - translate('SongsPlugin.MediaItem', - 'Delete %d songs?')) % len(items) + del_message = unicode(translate('SongsPlugin.MediaItem', + 'Are you sure you want to delete the %d selected ' + 'songs?')) % len(items) ans = QtGui.QMessageBox.question(self, - translate('SongsPlugin.MediaItem', 'Delete Confirmation'), + translate('SongsPlugin.MediaItem', 'Delete Song(s)?'), del_message, QtGui.QMessageBox.StandardButtons(QtGui.QMessageBox.Ok| QtGui.QMessageBox.Cancel), diff --git a/openlp/plugins/songs/lib/songstab.py b/openlp/plugins/songs/lib/songstab.py index 13e497014..e9579aa7f 100644 --- a/openlp/plugins/songs/lib/songstab.py +++ b/openlp/plugins/songs/lib/songstab.py @@ -66,7 +66,7 @@ class SongsTab(SettingsTab): self.SearchAsTypeCheckBox.setText( translate('SongsPlugin.SongsTab', 'Enable search as you type')) self.SongBarActiveCheckBox.setText(translate('SongsPlugin.SongsTab', - 'Display Verses on Live Tool bar')) + 'Display verses on live tool bar')) def onSearchAsTypeCheckBoxChanged(self, check_state): self.song_search = False diff --git a/openlp/plugins/songs/songsplugin.py b/openlp/plugins/songs/songsplugin.py index bf1c0cb23..c57a175e6 100644 --- a/openlp/plugins/songs/songsplugin.py +++ b/openlp/plugins/songs/songsplugin.py @@ -259,9 +259,9 @@ class SongsPlugin(Plugin): Receiver.send_message(u'songs_load_list') def about(self): - about_text = translate('SongsPlugin', - 'Song Plugin
' - 'This plugin allows songs to be managed and displayed.') + about_text = translate('SongsPlugin', 'Songs Plugin' + '
The songs plugin provides the ability to display and ' + 'manage songs.') return about_text def usesTheme(self, theme): diff --git a/openlp/plugins/songusage/forms/songusagedeletedialog.py b/openlp/plugins/songusage/forms/songusagedeletedialog.py index e7216d479..1b4ac7309 100644 --- a/openlp/plugins/songusage/forms/songusagedeletedialog.py +++ b/openlp/plugins/songusage/forms/songusagedeletedialog.py @@ -59,4 +59,5 @@ class Ui_SongUsageDeleteDialog(object): def retranslateUi(self, SongUsageDeleteDialog): SongUsageDeleteDialog.setWindowTitle( - translate('SongsPlugin.AuditDeleteDialog', 'Song Usage Delete')) \ No newline at end of file + translate('SongUsagePlugin.SongUsageDeleteForm', + 'Delete Song Usage Data')) diff --git a/openlp/plugins/songusage/forms/songusagedeleteform.py b/openlp/plugins/songusage/forms/songusagedeleteform.py index 4ded872f0..e97f58878 100644 --- a/openlp/plugins/songusage/forms/songusagedeleteform.py +++ b/openlp/plugins/songusage/forms/songusagedeleteform.py @@ -43,9 +43,9 @@ class SongUsageDeleteForm(QtGui.QDialog, Ui_SongUsageDeleteDialog): def accept(self): ret = QtGui.QMessageBox.question(self, - translate('SongsPlugin.SongUsageDeleteForm', + translate('SongUsagePlugin.SongUsageDeleteForm', 'Delete Selected Song Usage Events?'), - translate('SongsPlugin.SongUsageDeleteForm', + translate('SongUsagePlugin.SongUsageDeleteForm', 'Are you sure you want to delete selected Song Usage data?'), QtGui.QMessageBox.StandardButtons( QtGui.QMessageBox.Ok | @@ -56,3 +56,4 @@ class SongUsageDeleteForm(QtGui.QDialog, Ui_SongUsageDeleteDialog): self.songusagemanager.delete_all_objects(SongUsageItem, SongUsageItem.usagedate <= deleteDate) self.close() + diff --git a/openlp/plugins/songusage/forms/songusagedetaildialog.py b/openlp/plugins/songusage/forms/songusagedetaildialog.py index fc7f8af7c..699c0bb6a 100644 --- a/openlp/plugins/songusage/forms/songusagedetaildialog.py +++ b/openlp/plugins/songusage/forms/songusagedetaildialog.py @@ -86,11 +86,13 @@ class Ui_SongUsageDetailDialog(object): def retranslateUi(self, SongUsageDetailDialog): SongUsageDetailDialog.setWindowTitle( - translate('SongsPlugin.AuditDetailDialog', - 'Song Usage Extraction')) + translate('SongUsagePlugin.SongUsageDetailForm', + 'Song Usage Extraction')) self.DateRangeGroupBox.setTitle( - translate('SongsPlugin.AuditDetailDialog', 'Select Date Range')) + translate('SongUsagePlugin.SongUsageDetailForm', + 'Select Date Range')) self.ToLabel.setText( - translate('SongsPlugin.AuditDetailDialog', 'to')) + translate('SongUsagePlugin.SongUsageDetailForm', 'to')) self.FileGroupBox.setTitle( - translate('SongsPlugin.AuditDetailDialog', 'Report Location')) + translate('SongUsagePlugin.SongUsageDetailForm', + 'Report Location')) diff --git a/openlp/plugins/songusage/forms/songusagedetailform.py b/openlp/plugins/songusage/forms/songusagedetailform.py index ac65ce857..67c2935eb 100644 --- a/openlp/plugins/songusage/forms/songusagedetailform.py +++ b/openlp/plugins/songusage/forms/songusagedetailform.py @@ -62,7 +62,7 @@ class SongUsageDetailForm(QtGui.QDialog, Ui_SongUsageDetailDialog): def defineOutputLocation(self): path = QtGui.QFileDialog.getExistingDirectory(self, - translate('SongsPlugin.SongUsageDetailForm', + translate('SongUsagePlugin.SongUsageDetailForm', 'Output File Location'), SettingsManager.get_last_dir(self.parent.settingsSection, 1)) path = unicode(path) diff --git a/openlp/plugins/songusage/songusageplugin.py b/openlp/plugins/songusage/songusageplugin.py index c7a8a30aa..a11e61605 100644 --- a/openlp/plugins/songusage/songusageplugin.py +++ b/openlp/plugins/songusage/songusageplugin.py @@ -60,31 +60,30 @@ class SongUsagePlugin(Plugin): self.SongUsageMenu = QtGui.QMenu(tools_menu) self.SongUsageMenu.setObjectName(u'SongUsageMenu') self.SongUsageMenu.setTitle(translate( - 'SongUsagePlugin', '&Song Usage')) + 'SongUsagePlugin', '&Song Usage Tracking')) #SongUsage Delete self.SongUsageDelete = QtGui.QAction(tools_menu) self.SongUsageDelete.setText(translate('SongUsagePlugin', - '&Delete recorded data')) + '&Delete Tracking Data')) self.SongUsageDelete.setStatusTip(translate('SongUsagePlugin', - 'Delete song usage to specified date')) + 'Delete song usage data up to a specified date.')) self.SongUsageDelete.setObjectName(u'SongUsageDelete') #SongUsage Report self.SongUsageReport = QtGui.QAction(tools_menu) self.SongUsageReport.setText( - translate('SongUsagePlugin', '&Extract recorded data')) + translate('SongUsagePlugin', '&Extract Tracking Data')) self.SongUsageReport.setStatusTip( - translate('SongUsagePlugin', 'Generate report on Song Usage')) + translate('SongUsagePlugin', 'Generate a report on song usage.')) self.SongUsageReport.setObjectName(u'SongUsageReport') #SongUsage activation SongUsageIcon = build_icon(u':/plugins/plugin_songusage.png') self.SongUsageStatus = QtGui.QAction(tools_menu) - self.SongUsageStatus.setIcon(SongUsageIcon) self.SongUsageStatus.setCheckable(True) self.SongUsageStatus.setChecked(False) self.SongUsageStatus.setText(translate( - 'SongUsagePlugin', 'Song Usage Status')) + 'SongUsagePlugin', 'Toggle Tracking')) self.SongUsageStatus.setStatusTip(translate('SongUsagePlugin', - 'Start/Stop live song usage recording')) + 'Toggle the tracking of song usage.')) self.SongUsageStatus.setShortcut(u'F4') self.SongUsageStatus.setObjectName(u'SongUsageStatus') #Add Menus together @@ -158,8 +157,7 @@ class SongUsagePlugin(Plugin): self.SongUsagedetailform.exec_() def about(self): - about_text = translate('SongUsagePlugin', - 'SongUsage Plugin
This plugin ' - 'records the use of songs and when they have been used during ' - 'a live service') - return about_text \ No newline at end of file + about_text = translate('SongUsagePlugin', 'SongUsage Plugin' + '
This plugin tracks the usage of songs in ' + 'services.') + return about_text diff --git a/resources/i18n/openlp_af.ts b/resources/i18n/openlp_af.ts index f3370fed9..b41fe2f51 100644 --- a/resources/i18n/openlp_af.ts +++ b/resources/i18n/openlp_af.ts @@ -1,4254 +1,3893 @@ - - - - BibleMediaItem - - - Quick - Vinnig - - - Ui_customEditDialog - - - Delete selected slide - Wis die geselekteerde skyfie uit - - - BiblesTab - - - ( and ) - ( en ) - - - RemoteTab - - - Remotes - Afstandbehere - - - Ui_EditSongDialog - - - &Remove - &Verwyder - - - Ui_AmendThemeDialog - - - Shadow Size: - Skaduwee Grote: - - - Ui_OpenSongExportDialog - - - Close - Maak toe - - - ThemeManager - - - Import Theme - Tema Invoer - - - Ui_AmendThemeDialog - - - Slide Transition - Skyfie Verandering - - - SongMaintenanceForm - - - Are you sure you want to delete the selected book? - Is jy seker jy wil die geselekteerde boek uitwis? - - - ThemesTab - - - Theme level - Tema vlak - - - BibleMediaItem - - - Bible - Bybel - - - ServiceManager - - - Save Changes to Service? - Stoor Veranderinge aan Diens? - - - SongUsagePlugin - - - &Delete recorded data - &Wis opname data uit - - - Ui_OpenLPExportDialog - - - Song Title - Lied Titel - - - Ui_customEditDialog - - - Edit selected slide - Redigeer geselekteerde skyfie - - - SongMediaItem - - - CCLI Licence: - CCLI Lisensie: - - - Ui_SongUsageDeleteDialog - - - Audit Delete - Wis Oudit Uit - - - Ui_BibleImportWizard - - - Bible Import Wizard - Bybel Invoer Gids - - - Ui_customEditDialog - - - Edit All - Redigeer Alles - - - Ui_ServiceNoteEdit - - - Service Item Notes - Diens Item Notas - - - SongMaintenanceForm - - - Couldn't save your author! - Kon nie u skrywer stoor nie! - - - Ui_customEditDialog - - - Clear - Skoon - - - ThemesTab - - - Global theme - Globale tema - - - SongUsagePlugin - - - Start/Stop live song usage recording - Begin/Stop regstreekse lied-gebruik opname - - - MainWindow - - - The Main Display has been blanked out - Die Hoof Skerm is blanko - - - Ui_OpenSongExportDialog - - - Lyrics - Lerieke - - - Ui_AlertDialog - - - Display - Vertoon - - - Ui_customEditDialog - - - Delete - Wis uit - - - Ui_EditVerseDialog - - - Verse - Vers - - - SongMaintenanceForm - - - This author can't be deleted, they are currently assigned to at least one song! - Die skrywer kan nie uitgewis word nie want die skrywer is aan minstens een lied toegeken! - - - ThemeManager - - - Create a new theme - Skep 'n nuwe tema - - - Ui_MainWindow - - - Open an existing service - Maak 'n bestaande diens oop - - - SlideController - - - Move to previous - Beweeg na vorige - - - SongsPlugin - - - &Song - &Lied - - - Ui_PluginViewDialog - - - Plugin Details - Inprop Besonderhede - - - AlertsTab - - - pt - pt - - - Edit History: - Redigeer Geskiedenis: - - - Ui_MainWindow - - - &File - &Lêer - - - SongMaintenanceForm - - - Couldn't add your book! - Kan nie die boek byvoeg nie! - - - BiblesTab - - - verse per line - vers per lyn - - - Ui_customEditDialog - - - Theme: - Tema: - - - SongMaintenanceForm - - - Error - Fout - - - Ui_BibleImportWizard - - - Bible: - Bybel: - - - ImportWizardForm - - - You need to specify a file with books of the Bible to use in the import! - Spesifiseer 'n lêer met die boeke van die Bybel vir gebruik tydens die invoer! - - - ThemeManager - - - Delete Theme - Wis Tema Uit - - - SplashScreen - - - Splash Screen - Spatsel Skerm - - - SongMediaItem - - - Song - Lied - - - SongUsageDeleteForm - - - Delete Selected Audit Events? - Wis Geselekteerde Oudit Aksies uit? - - - Ui_OpenSongExportDialog - - - Song Title - Lied Titel - - - Ui_AmendThemeDialog - - - Bottom - Onder - - - Ui_MainWindow - - - List the Plugins - Lys die Inproppe - - - SongMaintenanceForm - - - No author selected! - Geen skrywer geselekteer nie! - - - SongUsagePlugin - - - <b>SongUsage Plugin</b><br>This plugin records the use of songs and when they have been used during a live service - <b>SongUsage Inprop</b><br>Hierdie inprop stoor die gebruik van liedere en wanneer dit gebruik was gedurende 'n regstreekse diens. - - - Ui_customEditDialog - - - Move slide Up 1 - Beweeg skyfie 1 plek Op - - - SongsPlugin - - - OpenSong - OpenSong - - - AlertsManager - - - Alert message created and delayed - Waarskuwings boodskap geskep en vertraag - - - Ui_EditSongDialog - - - Alternative Title: - Alternatiewe Titel: - - - ServiceManager - - - Open Service - Maak Diens Oop - - - BiblesTab - - - Display Style: - Vertoon Styl: - - - Ui_AmendThemeDialog - - - Image - Beeld - - - EditSongForm - - - You need to enter a song title. - U moet 'n lied titel invoer. - - - ThemeManager - - - Error - Fout - - - ImportWizardForm - - - Invalid Bible Location - Ongeldige Bybel Ligging - - - ThemesTab - - - Global level - Globale vlak - - - ThemeManager - - - Make Global - Maak Globaal - - - Ui_MainWindow - - - &Service Manager - &Diens Bestuurder - - - Ui_OpenLPImportDialog - - - Author - Skrywer - - - Ui_AmendThemeDialog - - - Height: - Hoogte: - - - ThemeManager - - - Delete a theme - Wis 'n tema uit - - - Ui_BibleImportWizard - - - Crosswalk - CosswalkSover ek verstaan is Crosswalk sagteware. Verwysings na sagteware, akronieme en so meer bly in die oorspronklike vorm. - - - SongBookForm - - - Error - Fout - - - Ui_AuthorsDialog - - - Last name: - Van: - - - Ui_customEditDialog - - - Title: - Titel: - - - ImportWizardForm - - - You need to set a copyright for your Bible! Bibles in the Public Domain need to be marked as such. - Stel Kopiereg op vir die spesifieke Bybel! Bybels in die Publieke Omgewing moet so gemerk word. - - - SongMediaItem - - - Maintain the lists of authors, topics and books - Handhaaf die lys van skrywers, onderwerpe en boeke - - - Ui_AlertEditDialog - - - Save - Stoor - - - EditCustomForm - - - You have unsaved data - U het data wat nie gestoor is nie - - - Ui_AmendThemeDialog - - - Outline - Buitelyn - - - BibleMediaItem - - - Text Search - Teks Soektog - - - Ui_BibleImportWizard - - - CSV - KGW - - - SongUsagePlugin - - - Delete song usage to specified date - Wis lied-gebruik uit tot gespesifiseerde datum - - - Ui_SongUsageDetailDialog - - - Report Location - Rapporteer Ligging - - - Ui_BibleImportWizard - - - OpenSong - OpenSong - - - Ui_MainWindow - - - Open Service - Maak Diens Oop - - - BibleMediaItem - - - Find: - Vind: - - - ImageMediaItem - - - Select Image(s) - Selekteer beeld(e) - - - BibleMediaItem - - - Search Type: - Soek Tipe: - - - Ui_MainWindow - - - Media Manager - Media Bestuurder - - - Alt+F4 - Alt+F4 - - - MediaManagerItem - - - &Preview - &Voorskou - - - GeneralTab - - - CCLI Details - CCLI Inligting - - - BibleMediaItem - - - Bible not fully loaded - Bybel nie tenvolle gelaai nie - - - Ui_MainWindow - - - Toggle the visibility of the Preview Panel - Wissel die sigbaarheid van die Voorskou Paneel - - - ImportWizardForm - - - Bible Exists - Bybel Bestaan - - - Ui_MainWindow - - - &User Guide - &Gebruikers Gids - - - SongUsageDeleteForm - - - Are you sure you want to delete selected Audit Data? - Is u seker dat u die Oudit Data wil uitwis? - - - Ui_MainWindow - - - Set the interface language to English - Verstel die koppelvlak taal na Engels - - - Ui_AmendThemeDialog - - - Main Font - Hoof Skrif - - - ImportWizardForm - - - Empty Copyright - Leë Kopiereg - - + + + + 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 + + + + + AlertsPlugin.AlertForm + + + Alert Message + Waarskuwing Boodskap + + + + Alert &text: + + + + + &Parameter(s): + + + + + &New + &Nuwe + + + + &Save + &Stoor + + + + &Delete + + + + + Displ&ay + + + + + Display && Cl&ose + + + + + &Close + + + + + New Alert + + + + + You haven't specified any text for your alert. Please type in some text before clicking New. + + + + + AlertsPlugin.AlertsManager + + + Alert message created and displayed. + + + + + AlertsPlugin.AlertsTab + + + Alerts + Waarskuwings + + + + Font + Skrif + + + + Font name: + + + + + Font color: + + + + + Background color: + + + + + Font size: + + + + + pt + pt + + + + Alert timeout: + Waarskuwing tydgrens: + + + + s + s + + + + Location: + Ligging: + + + + Preview + Voorskou + + + + OpenLP 2.0 + OpenLP 2.0 + + + + Top + + + + + Middle + Middel + + + + Bottom + Onder + + + + BiblesPlugin + + + &Bible + &Bybel + + + + <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display bible verses from different sources during the service. + + + + + BiblesPlugin.BibleDB + + + Book not found + + + + + The book you requested could not be found in this bible. Please check your spelling and that this is a complete bible not just one testament. + + + + + BiblesPlugin.BiblesTab + + + Bibles + Bybels + + + + Verse Display + Vers Vertoning + + + + Only show new chapter numbers + Vertoon net nuwe hoofstuk nommers + + + + Layout style: + + + + + Display style: + + + + + Bible theme: + + + + + Verse Per Slide + + + + + Verse Per Line + + + + + Continuous + + + + + No Brackets + + + + + ( And ) + + + + + { And } + + + + + [ And ] + + + + + Note: +Changes do not affect verses already in the service. + + + + + Display dual Bible verses + + + + + BiblesPlugin.ImportWizardForm + + + Bible Import Wizard + Bybel Invoer Gids + + + + Welcome to the Bible Import Wizard + Welkom by die Bybel Invoer Gids + + + + This wizard will help you to import Bibles from a variety of formats. Click the next button below to start the process by selecting a format to import from. + Hierdie gids sal u help om Bybels van 'n verskeidenheid vormate in te voer. Kliek die volgende knoppie hieronder om die proses te begin en 'n formaat te kies om in te voer. + + + + 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: + + + + OSIS + OSIS + + + + CSV + KGW + + + + OpenSong + OpenSong + + + + Web Download + Web Aflaai + + + + File location: + + + + + Books location: + + + + + Verse location: + + + + + Bible filename: + + + + + Location: + Ligging: + + + + Crosswalk + Cosswalk + + + + BibleGateway + BibleGateway + + + + Bible: + Bybel: + + + + Download Options + Aflaai Opsies + + + + Server: + Bediener: + + + + Username: + Gebruikersnaam: + + + + Password: + Wagwoord: + + + + Proxy Server (Optional) + Tussenganger Bediener (Opsioneel) + + + + License Details + Lisensie Besonderhede + + + + Set up the Bible's license details. + Stel hierdie Bybel se lisensie besonderhede op. + + + + Version name: + + + + + Copyright: + Kopiereg: + + + + Permission: + Toestemming: + + + + Importing + Invoer + + + + Please wait while your Bible is imported. + Wag asseblief terwyl u Bybel ingevoer word. + + + + Ready. + Gereed. + + + + Invalid Bible Location + Ongeldige Bybel Ligging + + + + You need to specify a file to import your Bible from. + + + + + Invalid Books File + Ongeldige Boeke Lêer + + + + You need to specify a file with books of the Bible to use in the import. + + + + + Invalid Verse File + Ongeldige Vers Lêer + + + + You need to specify a file of Bible verses to import. + + + + + Invalid OpenSong Bible + Ongeldige OpenSong Bybel + + + + You need to specify an OpenSong Bible file to import. + + + + + Empty Version Name + Weergawe Naam is Leeg + + + + You need to specify a version name for your Bible. + + + + + Empty Copyright + Leë Kopiereg + + + + You need to set a copyright for your Bible! Bibles in the Public Domain need to be marked as such. + Stel Kopiereg op vir die spesifieke Bybel! Bybels in die Publieke Omgewing moet so gemerk word. + + + + Bible Exists + Bybel Bestaan + + + + This Bible already exists! Please import a different Bible or first delete the existing one. + Dié Bybel bestaan reeds! Voer asseblief 'n ander Bybel in of wis die eerste een uit. + + + + Open OSIS File + + + + + Open Books CSV File + + + + + Open Verses CSV File + + + + + Open OpenSong Bible + Maak OpenSong Bybel Oop + + + + Starting import... + Invoer begin... + + + + Finished import. + Invoer voltooi. + + + + Your Bible import failed. + U Bybel invoer het misluk. + + + + 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. + + + + + BiblesPlugin.Opensong + + + Importing + Invoer + + + CustomPlugin - - <b>Custom Plugin</b><br>This plugin allows slides to be displayed on the screen in the same way songs are. This plugin provides greater freedom over the songs plugin.<br> - <b>Aanpas Inprop</b><br/>Hierdie inprop vertoon skyfies op dieselfde manier as wat liedere vertoon word. Hierdie inprop beskik oor meer vryheid as die liedere inprop.<br/> - - - AuthorsForm - - - You need to type in the first name of the author. - U moet die naam van die skrywer invul. - - - SongsTab - - - Display Verses on Live Tool bar: - Vertoon Verse op Regstreekse Gereedskap-balk: - - - ServiceManager - - - Move to top - Skuif na bo - - - ImageMediaItem - - - Override background - Oorskryf agtergrond - - - Ui_SongMaintenanceDialog - - - Edit - Redigeer - - - Ui_OpenSongExportDialog - - - Select All - Selekteer Almal - - - ThemesTab - - - Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. - Gebruik die tema van elke lied in die lied-databasis. As 'n lied nie 'n geassosieërde tema het nie, gebruik die diens se tema. As die diens nie 'n tema het nie, gebruik dan die globale tema. - - - PresentationMediaItem - - - Presentation - Aanbieding - - - Ui_AmendThemeDialog - - - Solid Color - Soliede Kleur - - - CustomTab - - - Custom - Aangepas - - - Ui_OpenLPImportDialog - - - Ready to import - Gereed vir invoer - - - MainWindow - - - OpenLP version %s has been updated to version %s - -You can obtain the latest version from http://openlp.org - OpenLP weergawe %s is opdateer na weergawe %s - -U kan die nuutste weergawe verkry van http://openlp.org - - - Ui_BibleImportWizard - - - File Location: - Lêer Ligging: - - - SlideController - - - Go to Verse - Gaan na Vers - - - Ui_MainWindow - - - &Import - &Invoer - - - Quit OpenLP - Sluit OpenLP Af - - - Ui_BibleImportWizard - - - This wizard will help you to import Bibles from a variety of formats. Click the next button below to start the process by selecting a format to import from. - Hierdie gids sal u help om Bybels van 'n verskeidenheid vormate in te voer. Kliek die volgende knoppie hieronder om die proses te begin en 'n formaat te kies om in te voer. - - - SongMaintenanceForm - - - Couldn't add your topic! - Kon nie u onderwerp byvoeg nie! - - - ImportWizardForm - - - Empty Version Name - Weergawe Naam is Leeg - - - Ui_MainWindow - - - &Preview Panel - &Voorskou Paneel - - - SlideController - - - Start continuous loop - Begin aaneenlopende lus - - - ServiceManager - - - Move down - Beweeg af - - - GeneralTab - - - primary - primêre - - - Ui_EditSongDialog - - - Add a Theme - Voeg 'n Tema by - - - Ui_MainWindow - - - &New - &Nuwe - - - Ui_customEditDialog - - - Credits: - Krediete: - - - SlideController - - - Live - Regstreeks - - - GeneralTab - - - Show blank screen warning - Vertoon leë skerm waarskuwing - - - BiblesTab - - - continuous - aaneenlopend - - - Ui_EditVerseDialog - - - Number - Nommer - - - GeneralTab - - - Application Startup - Program Aanskakel - - - Ui_AmendThemeDialog - - - Use Default Location: - Gebruik Verstek Ligging: - - - Ui_OpenSongImportDialog - - - Import - Invoer - - - Ui_AmendThemeDialog - - - Other Options - Ander Opsies - - - Ui_EditSongDialog - - - Verse Order: - Vers Orde: - - - Ui_SongUsageDetailDialog - - - ASelect Date Range - Selekteer Datum Reeks - - - Ui_MainWindow - - - Default Theme: - Verstek Tema: - - - Toggle Preview Panel - Wissel Voorskou Paneel - - - SongMediaItem - - - Lyrics - Lerieke - - - Ui_OpenLPImportDialog - - - Progress: - Vordering: - - - Ui_AmendThemeDialog - - - Shadow - Skaduwee - - - GeneralTab - - - Select monitor for output display: - Selekteer monitor vir uitgaande vertoning: - - - Ui_MainWindow - - - &Settings - Ver&stellings - - - Ui_AmendThemeDialog - - - Italics - Kursief - - - ServiceManager - - - Create a new service - Skep 'n nuwe diens - - - Ui_AmendThemeDialog - - - Background: - Agtergrond: - - - Ui_OpenLPImportDialog - - - openlp.org Song Importer - openlp.org Lied Invoerder - - - Ui_BibleImportWizard - - - Copyright: - Kopiereg: - - - ThemesTab - - - Service level - Diens vlak - - - BiblesTab - - - [ and ] - [ en ] - - - Ui_BibleImportWizard - - - Verse Location: - Vers Ligging: - - - MediaManagerItem - - - You must select one or more items - P moet meer as een item selekteer - - - GeneralTab - - - Application Settings - Program Verstellings - - - ServiceManager - - - Save this service - Stoor hierdie diens - - - ImportWizardForm - - - Open Books CSV file - Maak Boeke CSV lêer oop - - - GeneralTab - - - SongSelect Username: - SongSelect Gebruikers naam: - - - Ui_AmendThemeDialog - - - X Position: - X Posisie: - - - BibleMediaItem - - - No matching book could be found in this Bible. - Geen bypassende boek kon in dié Bybel gevind word nie. - - - Ui_BibleImportWizard - - - Server: - Bediener: - - - SongMaintenanceForm - - - Couldn't save your book! - Kon nie u boek stoor nie! - - - Ui_EditVerseDialog - - - Ending - Slot - - - CustomTab - - - Display Footer: - Vertoon Voetnota: - - - ImportWizardForm - - - Invalid OpenSong Bible - Ongeldige OpenSong Bybel - - - GeneralTab - - - CCLI Number: - CCLI Nommer: - - - Ui_AmendThemeDialog - - - Center - Middel - - - ServiceManager - - - Theme: - Tema: - - - Ui_MainWindow - - - &Live - &Regstreeks - - - Ui_AmendThemeDialog - - - <Color2> - <Color2> - - - Ui_MainWindow - - - English - Engels - - - ImageMediaItem - - - You must select one or more items - U moet een of meer items selekteer - - - Ui_AuthorsDialog - - - First name: - Voornaam: - - - Ui_OpenLPExportDialog - - - Select openlp.org export filename: - Selekteer openlp.org uitvoer lêer-naam: - - - Ui_BibleImportWizard - - - Permission: - Toestemming: - - - Ui_OpenSongImportDialog - - - Close - Maak toe - - - Ui_AmendThemeDialog - - - Opaque - Deursigtigheid - - - SongMaintenanceForm - - - This book can't be deleted, it is currently assigned to at least one song! - Die boek kan nie uitgewis word nie, dit is toegeken aan ten minste een lied! - - - ImportWizardForm - - - Your Bible import failed. - U Bybel invoer het misluk. - - - SlideController - - - Start playing media - Begin media speel - - - SongMediaItem - - - Type: - Tipe: - - - Ui_AboutDialog - - - Close - Maak toe - - - TopicsForm - - - You need to type in a topic name! - U moet 'n onderwerp naam invoer! - - - Ui_OpenSongExportDialog - - - Song Export List - Lied Uitvoer Lys - - - BibleMediaItem - - - Dual: - Dubbel: - - - ImageTab - - - sec - sec - - - ServiceManager - - - Delete From Service - Verwyder Van Diens - - - GeneralTab - - - Automatically open the last service - Maak vanself die laaste diens oop - - - Ui_OpenLPImportDialog - - - Song Import List - Lied Invoer Lys - - - Ui_OpenSongExportDialog - - - Author - Skrywer - - - Ui_AmendThemeDialog - - - Outline Color: - Buitelyn Kleur: - - - Ui_BibleImportWizard - - - Select Import Source - Selekteer Invoer Bron - - - Ui_MainWindow - - - F9 - F9 - - - F8 - F8 - - - ServiceManager - - - &Change Item Theme - &Verander Item Tema - - - Ui_OpenSongImportDialog - - - OpenSong Folder: - OpenSong Gids: - - - Ui_OpenLPImportDialog - - - Import File Song List - Voer Lêer Lied Lys in - - - Ui_customEditDialog - - - Edit Custom Slides - Redigeer Aangepaste Skyfies - - - Ui_BibleImportWizard - - - Set up the Bible's license details. - Stel hierdie Bybel se lisensie besonderhede op. - - - Ui_AmendThemeDialog - - - Alignment - Belyning - - - SongMaintenanceForm - - - Delete Book - Wis Boek Uit - - - ThemeManager - - - Edit a theme - Redigeer 'n tema - - - Ui_BibleImportWizard - - - BibleGateway - BibleGateway - - - GeneralTab - - - Preview Next Song from Service Manager - Sien Voorskou van Volgende Lied vanaf Diens Bestuurder - - - Ui_EditSongDialog - - - Title && Lyrics - Titel && Lirieke - - - SongMaintenanceForm - - - No book selected! - Geen boek geselekteer nie! - - - SlideController - - - Move to live - Verskuif na regstreekse skerm - - - Ui_EditVerseDialog - - - Other - Ander - - - Ui_EditSongDialog - - - Theme - Tema - - - ServiceManager - - - Save Service - Stoor Diens - - - Ui_MainWindow - - - Save the current service to disk - Stoor die huidige diens na skyf - - - BibleMediaItem - - - Chapter: - Hoofstuk: - - - Search - Soek - - - PresentationTab - - - Available Controllers - Beskikbare Beheerders - - - ImportWizardForm - - - Open Verses CSV file - Maak Verse CSV lêer oop - - - TopicsForm - - - Error - Fout - - - RemoteTab - - - Remotes Receiver Port - Afstandbeheer Ontvanger Poort - - - Ui_MainWindow - - - &View - &Bekyk - - - Ui_AmendThemeDialog - - - Normal - Normaal - - - Ui_OpenLPExportDialog - - - Close - Maak toe - - - Ui_BibleImportWizard - - - Username: - Gebruikersnaam: - - - ThemeManager - - - Edit Theme - Wysig Tema - - - SlideController - - - Preview - Voorskou - - - Ui_AlertDialog - - - Alert Message - Waarskuwing Boodskap - - - ImportWizardForm - - - Finished import. - Invoer voltooi. - - - You need to specify a file of Bible verses to import! - Spesifiseer 'n lêer van Bybel verse om in te voer! - - - AlertsTab - - - Location: - Ligging: - - - Ui_EditSongDialog - - - Authors, Topics && Book - Skrywer, Onderwerpe && Boek - - - EditSongForm - - - You need to enter some verses. - U moet 'n paar verse invoer. - - - Ui_BibleImportWizard - - - Download Options - Aflaai Opsies - - - BiblePlugin - - - <strong>Bible Plugin</strong><br />This plugin allows bible verses from different sources to be displayed on the screen during the service. - <strong>Bybel Miniprogram</strong><br/>Dié miniprogram laat toe dat Bybel verse van verskillende bronne op die skerm vertoon kan word gedurende die diens. - - - Ui_EditSongDialog - - - Copyright Information - Kopiereg Informasie - - - Ui_MainWindow - - - &Export - &Uitvoer - - - Ui_AmendThemeDialog - - - Bold - Vetgedruk - - - SongsPlugin - - - Export songs in OpenLP 2.0 format - Voer liedere uit in OpenLP 2.0 formaat - - - MediaManagerItem - - - Load a new - Laai 'n nuwe - - - AlertEditForm - - - Missing data - Verlore data - - - SongsPlugin - - - <b>Song Plugin</b> <br>This plugin allows Songs to be managed and displayed.<br> - <b>Song Miniprogram</b> <br/>Hierdie miniprogram laat toe dat Liedere bestuur en vertoon kan word.<br/> - - - Ui_AmendThemeDialog - - - Footer Font - Voetnota Skriftipe - - - EditSongForm - - - Invalid verse entry - vX - Ongeldige vers inskrywing - vX - - - MediaManagerItem - - - Delete the selected item - Wis geselekteerde item uit - - - Ui_OpenLPExportDialog - - - Export - Voer uit - - - Ui_BibleImportWizard - - - Location: - Ligging: - - - BibleMediaItem - - - Keep - Behou - - - SongUsagePlugin - - - Generate report on Song Usage - Genereer verslag van Lied Gebruik - - - Ui_EditSongDialog - - - Topic - Onderwerp - - - Ui_MainWindow - - - &Open - Maak &Oop - - - AuthorsForm - - - You haven't set a display name for the author, would you like me to combine the first and last names for you? - U het nie 'n vertoon naam vir die skrywer gegee nie, moet ek die voornaam en van kombineer? - - - AmendThemeForm - - - Slide Height is %s rows - Skyfie Hoogte is %s rye - - - Ui_EditVerseDialog - - - Pre-Chorus - Voor-Refrein - - - Ui_EditSongDialog - - - Lyrics: - Lirieke: - - - Ui_AboutDialog - - - Project Lead - Raoul "superfly" Snyman - -Developers - Tim "TRB143" Bentley - Jonathan "gushie" Corwin - Michael "cocooncrash" Gorven - Scott "sguerrieri" Guerrieri - Raoul "superfly" Snyman - Maikel Stuivenberg - Martin "mijiti" Thompson - Jon "Meths" Tibble - Carsten "catini" Tingaard - -Testers - Wesley "wrst" Stout - Projek Leier -Raoul "superfly" Snyman - -Onwikkelaars -Tim "TRB143" Bentley -Jonathan "gushie" Corwin -Michael "cocooncrash" Gorven -Scott "sguerrieri" Guerrieri -Raoul "superfly" Snyman -Maikel Stuivenberg -Martin "mijiti" Thompson -Jon "Meths" Tibble -Carsten "catini" Tingaard - -Testers -Wesley "wrst" Stout - - - SongMediaItem - - - Titles - Titels - - - Ui_OpenLPExportDialog - - - Lyrics - Lirieke - - - PresentationMediaItem - - - Present using: - Bied aan met: - - - SongMediaItem - - - Clear - Maak skoon - - - ServiceManager - - - &Live Verse - &Lewendige Vers - - - Ui_OpenSongImportDialog - - - Progress: - Vordering: - - - Ui_MainWindow - - - Toggle Theme Manager - Wissel Tema Bestuurder - - - Ui_AlertDialog - - - Alert Text: - Waarskuwing Teks: - - - Ui_EditSongDialog - - - Edit - Redigeer - - - AlertsTab - - - Font Color: - Skrif Kleur: - - - Ui_AmendThemeDialog - - - Theme Maintenance - Tema Onderhoud - - - CustomTab - - - Custom Display - Aangepasde Vertoning - - - Ui_OpenSongExportDialog - - - Title - Titel - - - Ui_AmendThemeDialog - - - <Color1> - <Color1> - - - Ui_EditSongDialog - - - Authors - Skrywers - - - ThemeManager - - - Export Theme - Voer Tema Uit - - - ServiceManager - - - (N) - (N) - - - Ui_SongBookDialog - - - Name: - Naam: - - - Ui_AuthorsDialog - - - Author Maintenance - Skrywer Onderhoud - - - Ui_AmendThemeDialog - - - Font Footer - Skrif Voetnota - - - BiblesTab - - - Verse Display - Vers Vertoning - - - Ui_MainWindow - - - &Options - &Opsies - - - BibleMediaItem - - - Results: - &Resultate: - - - Ui_OpenLPExportDialog - - - Full Song List - Volle Liedere Lys - - - SlideController - - - Move to last - Verskuif na laaste posisie - - - Ui_OpenLPExportDialog - - - Progress: - Vordering: - - - Ui_SongMaintenanceDialog - - - Add - Byvoeg - - - SongMaintenanceForm - - - Are you sure you want to delete the selected author? - Is u seker u wil die geselekteerde skrywer uitwis? - - - SongUsagePlugin - - - Song Usage Status - Lied Gebruik Status - - - BibleMediaItem - - - Verse Search - Soek Vers - - - Ui_SongBookDialog - - - Edit Book - Redigeer Boek - - - EditSongForm - - - Save && Preview - Stoor && Voorskou - - - Ui_SongBookDialog - - - Publisher: - Uitgewer: - - - Ui_AmendThemeDialog - - - Font Weight: - Skrif Donkerheid: - - - Ui_BibleImportWizard - - - Bible Filename: - Bybel Lêernaam: - - - Ui_AmendThemeDialog - - - Transparent - Deursigtig - - - SongMediaItem - - - Search - Soek - - - Ui_BibleImportWizard - - - Format: - Formaat: - - - Ui_AmendThemeDialog - - - Background - Agtergrond - - - Ui_BibleImportWizard - - - Importing - Invoer - - - Ui_customEditDialog - - - Edit all slides - Redigeer alle skyfies - - - SongsTab - - - Enable search as you type: - Stel soek soos u tik in staat: - - - Ui_MainWindow - - - Ctrl+S - Ctrl+S - - - SongMediaItem - - - Authors - Skrywers - - - Ui_PluginViewDialog - - - Active - Aktief - - - SongMaintenanceForm - - - Couldn't save your topic! - Kon nie u onderwerp stoor nie! - - - Ui_MainWindow - - - Ctrl+O - Ctrl+O - - - Ctrl+N - Ctrl+N - - - SongMaintenanceForm - - - Couldn't add your author! - Kon nie u skrywer byvoeg nie! - - - Ui_AlertEditDialog - - - Edit - Redigeer - - - Ui_EditSongDialog - - - Song Editor - Lied Redigeerder - - - AlertsTab - - - Font - Skrif - - - SlideController - - - Edit and re-preview Song - Redigeer en sien weer 'n voorskou van die Lied - - - Delay between slides in seconds - Vertraging in sekondes tussen skyfies - - - MediaManagerItem - - - &Edit - R&edigeer - - - Ui_AmendThemeDialog - - - Vertical - Vertikaal - - - Width: - Wydte: - - - ThemeManager - - - You are unable to delete the default theme! - U is nie in staat om die verstek tema uit te wis nie! - - - ThemesTab - - - Use the global theme, overriding any themes associated with either the service or the songs. - Gebruik die globale tema om enige temas wat met die diens of liedere geassosieer is te vervang. - - - BibleMediaItem - - - Version: - Weergawe: - - - Ui_AboutDialog - - - OpenLP <version> build <revision> - Open Source Lyrics Projection + + <strong>Custom Plugin</strong><br />The custom plugin provides the ability to set up custom text slides that can be displayed on the screen the same way songs are. This plugin provides greater freedom over the songs plugin. + + + + + CustomPlugin.CustomTab + + + Custom + + + + + Custom Display + Aangepasde Vertoning + + + + Display footer + + + + + CustomPlugin.EditCustomForm + + + Edit Custom Slides + Redigeer Aangepaste Skyfies + + + + Move slide up once 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: + + + + + Save && Preview + Stoor && Voorskou + + + + Error + Fout + + + + You need to type in a title. + + + + + You need to add at least one slide + + + + + You have one or more unsaved slides, please either save your slide(s) or clear your changes. + + + + + CustomPlugin.MediaItem + + + Custom + + + + + You haven't selected an item to edit. + + + + + You haven't selected an item to delete. + + + + + ImagePlugin + + + <strong>Image Plugin</strong><br />The image plugin provides displaying of images.<br />One of the distinguishing features of this plugin is the ability to group a number of images together in the service manager, making the displaying of multiple images easier. This plugin can also make use of OpenLP's "timed looping" feature to create a slide show that runs automatically. In addition to this, images from the plugin can be used to override the current theme's background, which renders text-based items like songs with the selected image as a background instead of the background provided by the theme. + + + + + ImagePlugin.ImageTab + + + Images + Beelde + + + + Image Settings + Beeld Verstellings + + + + Slide loop delay: + + + + + sec + sec + + + + ImagePlugin.MediaItem + + + Image + Beeld + + + + Select Image(s) + Selekteer beeld(e) + + + + All Files + + + + + Replace Live Background + + + + + Replace 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. + + + + + MediaPlugin + + + <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. + + + + + MediaPlugin.MediaItem + + + Media + Media + + + + Select Media + Selekteer Media + + + + Replace Live Background + + + + + Replace Background + + + + + You must select a media file to delete. + + + + + OpenLP + + + Image Files + + + + + OpenLP.AboutForm + + + About OpenLP + Aangaande OpenLP + + + + OpenLP <version><revision> - Open Source Lyrics Projection OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if OpenOffice.org, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. Find out more about OpenLP: http://openlp.org/ OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider contributing by using the button below. - OpenLP <version> bou <revision> - Open Source Lyrics Projection + + + + + About + Aangaande + + + + Project Lead + Raoul "superfly" Snyman -OpenLP is gratis kerk aanbieding sagteware of lirieke projeksie sagteware wat gebruik word vir die vertoning van liedere, Bybel verse, video's, beelde tot ook aanbiedings (as OpenOffice.org, PowerPoint of PowerPoint Viewer geïnstalleer is) vir kerklike aanbidding deur middel van 'n rekenaar en 'n data projektor. +Developers + Tim "TRB143" Bentley + Jonathan "gushie" Corwin + Michael "cocooncrash" Gorven + Scott "sguerrieri" Guerrieri + Raoul "superfly" Snyman + Martin "mijiti" Thompson + Jon "Meths" Tibble -Vind meer uit oor OpenLP: http://openlp.org/ +Contributors + Meinert "m2j" Jordan + Christian "crichter" Richter + Maikel Stuivenberg + Carsten "catini" Tingaard -OpenLP is geskryf en word onderhou deur vrywilligers. As u graag wil sien dat meer Christelike sagteware geskryf word, oorweeg dit asseblief om by te dra deur die knoppie hieronder te gebruik. - - - SongsPlugin - - - OpenLP 2.0 - OpenLP 2.0 - - - ServiceManager - - - New Service - Nuwe Diens - - - Ui_TopicsDialog - - - Topic name: - Onderwerp naam: - - - ThemeManager - - - File is not a valid theme! - Lêer is nie 'n geldige tema nie! - - - Ui_BibleImportWizard - - - License Details - Lisensie Besonderhede - - - Ui_AboutDialog - - - License - Lisensie - - - Ui_EditSongDialog - - - R&emove - V&erwyder - - - Ui_AmendThemeDialog - - - Middle - Middel - - - Ui_customEditDialog - - - Save - Stoor - - - AlertEditForm - - - Item selected to Edit - Item geselekteer vir Redigering - - - BibleMediaItem - - - From: - Vanaf: - - - Ui_AmendThemeDialog - - - Shadow Color: - Skaduwee Kleur: - - - ServiceManager - - - &Notes - &Notas - - - Ui_MainWindow - - - E&xit - &Uitgang - - - Ui_OpenLPImportDialog - - - Close - Maak toe - - - MainWindow - - - OpenLP Version Updated - OpenLP Weergawe is Opdateer - - - Ui_customEditDialog - - - Replace edited slide - Vervang geredigeerde skyfie - - - Add new slide at bottom - Voeg nuwe skyfie aan die onderkant by - - - EditCustomForm - - - You need to enter a title - U moet 'n titel invoer - - - ThemeManager - - - Theme Exists - Tema Bestaan - - - Ui_MainWindow - - - &Help - &Hulp - - - Ui_EditVerseDialog - - - Bridge - Brug - - - Ui_OpenSongExportDialog - - - OpenSong Song Exporter - OpenSong Lied Uitvoerder - - - Ui_AmendThemeDialog - - - Vertical Align: - Vertikale Belyning: - - - TestMediaManager - - - Item2 - Item2 - - - Item1 - Item1 - - - Ui_AmendThemeDialog - - - Top - Bokant - - - BiblesTab - - - Display Dual Bible Verses - Vertoon Dubbel Bybel Verse - - - Ui_MainWindow - - - Toggle Service Manager - Wissel Diens Bestuurder - - - MediaManagerItem - - - &Add to Service - &Voeg by Diens - - - AmendThemeForm - - - First Color: - Eerste Kleur: - - - ThemesTab - - - Song level - Lied vlak - - - alertsPlugin - - - Show an alert message - Vertoon 'n waarskuwing boodskap - - - Ui_MainWindow - - - Ctrl+F1 - Ctrl+F1 - - - Save the current service under a new name - Stoor die huidige diens onder 'n nuwe naam - - - Ui_OpenLPExportDialog - - - Remove Selected - Verwyder Geselekteerde - - - ThemeManager - - - Delete theme - Wis tema uit - - - ImageTab - - - Image Settings - Beeld Verstellings - - - Ui_OpenSongImportDialog - - - OpenSong Song Importer - OpenSong Lied Invoerder - - - SongUsagePlugin - - - &Extract recorded data - V&erkry aangetekende data - - - AlertsTab - - - Font Name: - Skrif Naam: - - - Ui_MainWindow - - - &Web Site - &Web Tuiste - - - MediaManagerItem - - - Send the selected item live - Stuur die geselekteerde item na regstreekse vertoning - - - Ui_MainWindow - - - M&ode - M&odus - - - Translate the interface to your language - Vertaal die koppelvlak na u taal - - - Service Manager - Diens Bestuurder - - - CustomMediaItem - - - Custom - Pas aan - - - ImageMediaItem - - - No items selected... - Geen items geselekteer nie... - - - Ui_BibleImportWizard - - - OSIS - OSIS - - - SongsPlugin - - - openlp.org 1.0 - openlp.org 1.0 - - - Ui_MainWindow - - - &Theme - &Tema - - - Ui_EditVerseDialog - - - Edit Verse - Redigeer Vers - - - Ui_MainWindow - - - &Language - Taa&l - - - ServiceManager - - - Move to end - Verskuif na einde - - - Your service is unsaved, do you want to save those changes before creating a new one ? - U diens is nie gestoor nie. Wil u daardie veranderinge stoor voordat 'n nuwe een geskep word? - - - Ui_OpenSongExportDialog - - - Remove Selected - Verwyder Geselekteerde - - - SongMediaItem - - - Search: - Soek: - - - MainWindow - - - Save Changes to Service? - Stoor Veranderinge na die Diens? - - - Your service has changed, do you want to save those changes? - U diens het verander. Wil u daardie veranderinge stoor? - - - EditSongForm - - - Invalid verse entry - values must be Numeric, I,B,C,T,P,E,O - Ongeldige vers invoer - waardes moet Numeries, I,B,C,T,P,E,O wees - - - Ui_EditSongDialog - - - &Add to Song - &Voeg by Lied - - - Ui_MainWindow - - - &About - &Aangaande - - - BiblesTab - - - Only show new chapter numbers - Vertoon net nuwe hoofstuk nommers - - - ImportWizardForm - - - You need to specify a version name for your Bible! - U moet 'n weergawe naam spesifiseer vir die Bybel! - - - Ui_AlertEditDialog - - - Delete - Wis uit - - - EditCustomForm - - - Error - Fout - - - ThemesTab - - - Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. - Gebruik die tema van die diens en verplaas enige van die individuele liedere se temas. As die diens nie 'n tema het nie, gebruik dan die globale tema. - - - SongMaintenanceForm - - - This topic can't be deleted, it is currently assigned to at least one song! - Hierdie onderwerp kan nie uitgewis word nie want dit is aan ten minste een lied toegeken! - - - AlertEditForm - - - Item selected to Add - Item geselekteer vir Byvoegging - - - Ui_AmendThemeDialog - - - Right - Regs - - - ThemeManager - - - Save Theme - (%s) - Stoor Tema - (%s) - - - ImageMediaItem - - - Allow background of live slide to be overridden - Laat toe dat die agtergrond van die regstreekse skyfie verplaas kan word. - - - MediaManagerItem - - - Add the selected item(s) to the service - Voeg die geselekteerde item(s) by die diens - - - AuthorsForm - - - Error - Fout - - - BibleMediaItem - - - Book: - Boek: - - - Ui_AmendThemeDialog - - - Font Color: - Skrif Kleur: - - - Ui_OpenLPImportDialog - - - Select openlp.org songfile to import: - Kies openlp.org liedlêer om in te voer: - - - Ui_SettingsDialog - - - Settings - Verstellings - - - BiblesTab - - - Layout Style: - Uitleg Styl: - - - MediaManagerItem - - - Edit the selected - Redigeer die geselekteerde - - - SlideController - - - Move to next - Verskuif na volgende - - - Ui_MainWindow - - - &Plugin List - In&prop Lys - - - BiblePlugin - - - &Bible - &Bybel - - - Ui_BibleImportWizard - - - Web Download - Web Aflaai - - - Ui_AmendThemeDialog - - - Horizontal - Horisontaal - - - ImportWizardForm - - - Open OSIS file - Waak OSIS lêer oop - - - Ui_AmendThemeDialog - - - Circular - Sirkelvormig - - - pt - pt - - - Ui_MainWindow - - - &Add Tool... - Voeg Gereedsk&ap By - - - SongMaintenanceForm - - - Delete Topic - Wis Onderwerp Uit - - - ServiceManager - - - Move up - Beweeg Op - - - Ui_OpenLPImportDialog - - - Lyrics - Lerieke - - - BiblesTab - - - No brackets - Geen hakkies - - - Ui_AlertEditDialog - - - Maintain Alerts - Onderhou Waarskuwings - - - Ui_AmendThemeDialog - - - px - px - - - ServiceManager - - - Select a theme for the service - Selekteer 'n tema vir die diens - - - ThemesTab - - - Themes - Temas - - - ServiceManager - - - Move to bottom - Verskuif na onder - - - Ui_PluginViewDialog - - - Status: - Status: - - - Ui_EditSongDialog - - - CCLI Number: - CCLI Nommer: - - - ImportWizardForm - - - This Bible already exists! Please import a different Bible or first delete the existing one. - Dié Bybel bestaan reeds! Voer asseblief 'n ander Bybel in of wis die eerste een uit. - - - Ui_MainWindow - - - &Translate - Ver&taal - - - AlertEditForm - - - Please Save or Clear seletced item - Stoor of wis asseblief die geselekteerde item uit - - - BiblesTab - - - Bibles - Bybels - - - Ui_SongMaintenanceDialog - - - Authors - Skrywers - - - SongUsageDetailForm - - - Output File Location - Uitvoer Lêer Ligging - - - BiblesTab - - - { and } - { en } - - - GeneralTab - - - Prompt to save Service before starting New - Bevestig om Diens te stoor voor 'n Nuwe een begin word - - - ImportWizardForm - - - Starting import... - Invoer begin... - - - BiblesTab - - - Note: -Changes don't affect verses already in the service - Nota: -Verstellings affekteer nie verse wat alreeds in die diens is nie - - - Ui_EditVerseDialog - - - Intro - Inleiding - - - ServiceManager - - - Move up order - Verskuif orde op - - - PresentationTab - - - available - beskikbaar - - - ThemeManager - - - default - verstek - - - SongMaintenanceForm - - - Delete Author - Wis Skrywer Uit - - - Ui_AmendThemeDialog - - - Display Location - Vertoon Ligging - - - Ui_PluginViewDialog - - - Version: - Weergawe: - - - Ui_AlertEditDialog - - - Add - Byvoeg - - - GeneralTab - - - General - Algemeen - - - Ui_AmendThemeDialog - - - Y Position: - Y Posisie: - - - ServiceManager - - - Move down order - Verskuif orde af - - - BiblesTab - - - verse per slide - verse per skyfie - - - Ui_AmendThemeDialog - - - Show Shadow: - Vertoon Skaduwee: - - - AlertsTab - - - Preview - Voorskou - - - alertsPlugin - - - <b>Alerts Plugin</b><br>This plugin controls the displaying of alerts on the presentations screen - <b>Waarskuwing Inprop</b><br/>Hierdie inprop beheer die vertoning van waarskuwings op die aanbieding skerm - - - GeneralTab - - - Show the splash screen - Wys die spatsel skerm - - - Ui_MainWindow - - - New Service - Nuwe Diens - - - SlideController - - - Move to first - Verskuif na eerste - - - Ui_MainWindow - - - &Online Help - &Aanlyn Hulp - - - SlideController - - - Blank Screen - Blanko Skerm - - - Ui_MainWindow - - - Save Service - Stoor Diens - - - Save &As... - Stoor &As... - - - Toggle the visibility of the Media Manager - Wissel sigbaarheid van die Media Bestuurder - - - BibleMediaItem - - - No Book Found - Geeb Boek Gevind nie - - - Ui_EditSongDialog - - - Add - Byvoeg - - - alertsPlugin - - - &Alert - W&aarskuwing - - - BibleMediaItem - - - Advanced - Gevorderd - - - ImageMediaItem - - - Image(s) - Beeld(e) - - - Ui_MainWindow - - - F11 - F11 - - - F10 - F10 - - - F12 - F12 - - - Ui_BibleImportWizard - - - Select the import format, and where to import from. - Selekteer die invoer formaat en van waar af om in te voer. - - - Ui_MainWindow - - - Alt+F7 - Alt+F7 - - - Add an application to the list of tools - Voeg 'n program by die lys van gereedskap - - - MediaPlugin - - - <b>Media Plugin</b><br>This plugin allows the playing of audio and video media - <b>Media Inprop</b><br/>Hierdie inprop verskaf die vermoë om audio of video media te speel - - - BiblesTab - - - Bible Theme: - Bybel Tema: - - - SongsPlugin - - - Export songs in openlp.org 1.0 format - Voer liedere uit in openlp.org 1.0 formaat - - - Ui_MainWindow - - - Theme Manager - Tema Bestuurder - - - AlertsTab - - - Alerts - Waarskuwings - - - Ui_customEditDialog - - - Move slide down 1 - Verskuif skyfie 1 af - - - Ui_AmendThemeDialog - - - Font: - Skrif: - - - ServiceManager - - - Load an existing service - Laai 'n bestaande diens - - - Ui_MainWindow - - - Toggle the visibility of the Theme Manager - Wissel die sigbaarheid van die Tema Bestuurder - - - PresentationTab - - - Presentations - Aanbiedinge - - - SplashScreen - - - Starting - Begin - - - ImageTab - - - Slide Loop Delay: - Skyfie Lus Vertraging: - - - SlideController - - - Verse - Vers - - - AlertsTab - - - Alert timeout: - Waarskuwing tydgrens: - - - Ui_MainWindow - - - &Preview Pane - Voorskou &Paneel - - - MediaManagerItem - - - Add a new - Voeg 'n nuwe by - - - ThemeManager - - - Select Theme Import File - Kies Tema Invoer Lêer - - - New Theme - Nuwe Tema - - - MediaMediaItem - - - Media - Media - - - Ui_AmendThemeDialog - - - Preview - Voorskou - - - Outline Size: - Buitelyn Grootte: - - - Ui_OpenSongExportDialog - - - Progress: - Vordering: - - - AmendThemeForm - - - Second Color: - Tweede Kleur: - - - Ui_EditSongDialog - - - Theme, Copyright Info && Comments - Tema, Kopiereg Informasie && Kommentaar - - - Ui_AboutDialog - - - Credits - Krediete - - - BibleMediaItem - - - To: - Aan: - - - Ui_EditSongDialog - - - Song Book - Lied Boek - - - alertsPlugin - - - F7 - F7 - - - Ui_OpenLPExportDialog - - - Author - Skrywer - - - Ui_AmendThemeDialog - - - Wrap Indentation - Omvou Inkeping - - - ThemeManager - - - Import a theme - Voer 'n tema in - - +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) + + + + + + Credits + Krediete + + + + Copyright © 2004-2010 Raoul Snyman +Portions copyright © 2004-2010 Tim Bentley, Jonathan Corwin, Michael Gorven, Scott Guerrieri, Christian Richter, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Carsten Tinggaard + +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 + Lisensie + + + + Contribute + Dra By + + + + Close + Maak toe + + + + build %s + + + + + OpenLP.AdvancedTab + + + Advanced + Gevorderd + + + + UI Settings + + + + + Number of recent files to display: + + + + + Remember active media manager tab on startup + + + + + Double-click to send items straight to live (requires restart) + + + + + 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. + + + + + OpenLP.GeneralTab + + + General + Algemeen + + + + Monitors + Monitors + + + + Select monitor for output display: + Selekteer monitor vir uitgaande vertoning: + + + + Display if a single screen + + + + + Application Startup + Program Aanskakel + + + + Show blank screen warning + Vertoon leë skerm waarskuwing + + + + Automatically open the last service + Maak vanself die laaste diens oop + + + + Show the splash screen + Wys die spatsel skerm + + + + Application Settings + Program Verstellings + + + + Prompt to save Service before starting New + Bevestig om Diens te stoor voor 'n Nuwe een begin word + + + + Preview Next Song from Service Manager + Sien Voorskou van Volgende Lied vanaf Diens Bestuurder + + + + CCLI Details + CCLI Inligting + + + + CCLI number: + + + + + SongSelect username: + + + + + SongSelect password: + + + + + Display Position + + + + + X + + + + + Y + + + + + Height + + + + + Width + + + + + Override display position + + + + + Screen + Skerm + + + + primary + primêre + + + + OpenLP.LanguageManager + + + Language + + + + + Please restart OpenLP to use your new language setting. + + + + + OpenLP.MainWindow + + + OpenLP 2.0 + OpenLP 2.0 + + + + English + 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>. + + + + + 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 + + + + + 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. + + + + + OpenLP.PluginForm + + + Plugin List + Inprop Lys + + + + Plugin Details + Inprop Besonderhede + + + + Version: + Weergawe: + + + + TextLabel + TeksEtiket + + + + About: + Aangaande: + + + + Status: + Status: + + + + Active + Aktief + + + + Inactive + Onaktief + + + + %s (Inactive) + + + + + %s (Active) + + + + + %s (Disabled) + + + + + OpenLP.ServiceItemEditForm + + + Reorder Service Item + + + + + Up + + + + + Delete + + + + + Down + + + + + OpenLP.ServiceManager + + + New Service + Nuwe Diens + + + + Create a new service + Skep 'n nuwe diens + + + + Open Service + Maak Diens Oop + + + + Load an existing service + Laai 'n bestaande diens + + + + Save Service + Stoor Diens + + + + Save this service + Stoor hierdie diens + + + + Theme: + Tema: + + + + Select a theme for the service + Selekteer 'n tema vir die diens + + + + Move to &top + + + + + Move item to the top of the service. + + + + + Move &up + + + + + Move item up one position in the service. + + + + + Move &down + + + + + Move item down one position in the service. + + + + + Move to &bottom + + + + + Move item to the end of the service. + + + + + &Delete From Service + + + + + Delete the selected item from the service. + + + + + &Add New Item + + + + + &Add to Selected Item + + + + + &Edit Item + R&edigeer Item + + + + &Reorder Item + + + + + &Notes + &Notas + + + + &Preview Verse + Vers V&oorsig + + + + &Live Verse + &Lewendige Vers + + + + &Change Item Theme + &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 + + + + + OpenLP.ServiceNoteForm + + + Service Item Notes + Diens Item Notas + + + + OpenLP.SettingsForm + + + Configure OpenLP + + + + + 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 + + + + Go to Verse + Gaan na Vers + + + + OpenLP.ThemeManager + + + New Theme + Nuwe Tema + + + + Create a new theme. + + + + + Edit Theme + Wysig Tema + + + + Edit a theme. + + + + + Delete Theme + Wis Tema Uit + + + + Delete a theme. + + + + + Import Theme + Tema Invoer + + + + Import a theme. + + + + + Export Theme + Voer Tema Uit + + + + Export a theme. + + + + + &Edit Theme + + + + + &Delete Theme + + + + + Set As &Global Default + + + + + E&xport Theme + + + + + %s (default) + + + + + You must select a theme to edit. + + + + + You must select a theme to delete. + + + + + Delete Confirmation + + + + + Delete theme? + + + + + Error + Fout + + + + You are unable to delete the default theme. + + + + + Theme %s is use in %s plugin. + + + + + Theme %s is use by the service manager. + + + + + You have not selected a theme. + + + + + Save Theme - (%s) + Stoor Tema - (%s) + + + + Theme Exported + + + + + Your theme has been successfully exported. + + + + + Theme Export Failed + + + + + Your theme could not be exported due to an error. + + + + + Select Theme Import File + Kies Tema Invoer Lêer + + + + Theme (*.*) + + + + + 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? + + + + + OpenLP.ThemesTab + + + Themes + Temas + + + + Global Theme + + + + + Theme Level + + + + + S&ong Level + + + + + Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. + Gebruik die tema van elke lied in die lied-databasis. As 'n lied nie 'n geassosieërde tema het nie, gebruik die diens se tema. As die diens nie 'n tema het nie, gebruik dan die globale tema. + + + + &Service Level + + + + + Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. + Gebruik die tema van die diens en verplaas enige van die individuele liedere se temas. As die diens nie 'n tema het nie, gebruik dan die globale tema. + + + + &Global Level + + + + + Use the global theme, overriding any themes associated with either the service or the songs. + Gebruik die globale tema om enige temas wat met die diens of liedere geassosieer is te vervang. + + + PresentationPlugin - - <b>Presentation Plugin</b> <br> Delivers 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. - <b>Aanbieding Inprop</b><br/>Verskaf die vermoë om aanbiedings te vertoon deur 'n verskeidenheid programme. Die keuse van beskikbare aanbieding programme is aan die gebruiker beskikbaar in 'n laat val boks. - - - ImageMediaItem + + <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. + + + + + PresentationPlugin.MediaItem - - Image - Beeld - - - BibleMediaItem + + Presentation + Aanbieding + - - Clear - Maak skoon - - - Ui_MainWindow + + Select Presentation(s) + Selekteer Aanbieding(e) + - - Save Service As - Stoor Diens As - - - Ui_AlertDialog + + Automatic + + - - Cancel - Kanselleer - - - Ui_OpenLPImportDialog + + Present using: + Bied aan met: + - - Import - Invoer - - - Ui_EditVerseDialog + + File Exists + + - - Chorus - Koor - - - Ui_EditSongDialog + + A presentation with that filename already exists. + 'n Voorstelling met daardie lêernaam bestaan reeds. + - - Edit All - Redigeer Alles - - - AuthorsForm + + Unsupported File + + - - You need to type in the last name of the author. - U moet ten minste die skrywer se naam invoer. - - - SongsTab + + This type of presentation is not supported + + - - Songs Mode - Liedere Modus - - - Ui_AmendThemeDialog + + You must select an item to delete. + + + + + PresentationPlugin.PresentationTab - - Left - Links - - - RemotesPlugin + + Presentations + Aanbiedinge + - - <b>Remote Plugin</b><br>This plugin provides the ability to send messages to a running version of openlp on a different computer.<br>The Primary use for this would be to send alerts from a creche - <b>Afstandbeheer Inprop</b><br/>Hierdie inprop verskaf die vermoë om boodskappe na 'n lewendige weergawe van openlp op 'n ander rekenaar te stuur.<br/>Die Hoof gebruik vir hierdie sal wees om waarskuwings vanaf 'n moederskamer te stuur. - - - ImageTab + + Available Controllers + Beskikbare Beheerders + - - Images - Beelde - - - BibleMediaItem + + Advanced + + - - Verse: - Vers: - - - Ui_OpenLPExportDialog + + Allow presentation application to be overriden + + + + + RemotePlugin - - openlp.org Song Exporter - openlp.org Lied Uitvoerder + + <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. + + + + + RemotePlugin.RemoteTab - - Song Export List - Lied Uitvoer Lys - - - ThemeManager + + Remotes + Afstandbehere + - - Export theme - Tema Uitvoer - - - Ui_SongMaintenanceDialog + + Serve on IP address: + + - - Delete - Wis Uit - - - Ui_AmendThemeDialog + + Port number: + + - - Theme Name: - Tema Naam: - - - Ui_AboutDialog - - - About OpenLP - Aangaande OpenLP - - - Ui_MainWindow - - - Toggle the visibility of the Service Manager - Wissel die sigbaarheid van die Diens Bestuurder - - - PresentationMediaItem - - - A presentation with that filename already exists. - 'n Voorstelling met daardie lêernaam bestaan reeds. - - - AlertsTab - - - openlp.org - openlp.org - - - ImportWizardForm - - - Invalid Books File - Ongeldige Boeke Lêer - - - Ui_OpenLPImportDialog - - - Song Title - Lied Titel - - - MediaManagerItem - - - &Show Live - &Vertoon Regstreeks - - - AlertsTab - - - Keep History: - Behou Geskiedenis: - - - Ui_AmendThemeDialog - - - Image: - Beeld: - - - Ui_customEditDialog - - - Set Theme for Slides - Verstel Tema vir Skyfies - - - Ui_MainWindow - - - More information about OpenLP - Meer inligting aangaande OpenLP - - - AlertsTab - - - Background Color: - Agtergrond Kleur: - - - SongMaintenanceForm - - - No topic selected! - Geen onderwerp geselekteer nie! - - - Ui_MainWindow - - - &Media Manager - &Media Bestuurder - - - &Tools - &Gereedskap - - - AmendThemeForm - - - Background Color: - Agtergrond Kleur: - - - Ui_EditSongDialog - - - A&dd to Song - Voeg by Lie&d - - - Title: - Titel: - - - GeneralTab - - - Screen - Skerm - - - AlertsTab - - - s - s - - - ImagePlugin - - - <b>Image Plugin</b><br>Allows images of all types to be displayed. If a number of images are selected together and presented on the live controller it is possible to turn them into a timed loop.<br<br>From the plugin if the <i>Override background</i> is chosen and an image is selected any somgs which are rendered will use the selected image from the background instead of the one provied by the theme.<br> - <b>Beeld Inprop</b><br/>Laat toe om enige tipe beeld te vertoon. As 'n aantal beelde geselekteer word en op die regstreekse beheerder aangebied word, is dit moontlik om hullle in 'n tydsame lus te plaas.<br/><br/>As die <i>Vervang agtergrond</i> opsie gekies is by die inprop en 'n beeld word geselekteer, sal enige lied wat vertoon word die voorkeur beeld gebruik in plaas van die lied se verstek agtergrond vanaf die tema.<br/> - - - Ui_AlertEditDialog - - - Clear - Maak skoon - - - Ui_BibleImportWizard - - - Please wait while your Bible is imported. - Wag asseblief terwyl u Bybel ingevoer word. - - - MediaManagerItem - - - No items selected... - Geet items geselekteer nie... - - - Ui_OpenLPImportDialog - - - Select All - Selekteer Alles - - - Ui_AmendThemeDialog - - - Font Main - Skrif Hoof - - - ImageMediaItem - - - Images (*.jpg *jpeg *.gif *.png *.bmp) - Beelde (*.jpg *jpeg *.gif *.png *.bmp) - - - Ui_OpenLPImportDialog - - - Title - Titel - - - Ui_OpenSongExportDialog - - - Select OpenSong song folder: - Selekteer OpenSong lied gids: - - - Ui_MainWindow - - - Toggle Media Manager - Wissel Media Bestuurder - - + + Server Settings + + + + SongUsagePlugin - - &Song Usage - &Lied Gebruik - - - GeneralTab - - - Monitors - Monitors - - - EditCustomForm - - - You need to enter a slide - U moet 'n skyfie nommer invoer - - - Ui_SongMaintenanceDialog - - - Topics - Onderwerpe - - - ImportWizardForm - - - You need to specify a file to import your Bible from! - U moet 'n lêer spesifiseer om u Bybel vanaf in te voer! - - - Ui_EditVerseDialog - - - Verse Type - Vers Tipe - - - OpenSongBible - - - Importing - Invoer - - - Ui_EditSongDialog - - - Comments - Kommentaar - - - AlertsTab - - - Bottom - Onder - - - Ui_MainWindow - - - Create a new Service - Skep 'n nuwe Diens - - - AlertsTab - - - Top - Bo - - - ServiceManager - - - &Preview Verse - Vers V&oorsig - - - Ui_PluginViewDialog - - - TextLabel - TeksEtiket - - - AlertsTab - - - Font Size: - Skrif Grootte: - - - Ui_PluginViewDialog - - - About: - Aangaande: - - - Inactive - Onaktief - - - Ui_OpenSongExportDialog - - - Ready to export - Gereed om uit te voer - - - Export - Voer uit - - - Ui_PluginViewDialog - - - Plugin List - Inprop Lys - - - Ui_AmendThemeDialog - - - Transition Active: - Verandering Aktief: - - - Ui_BibleImportWizard - - - Proxy Server (Optional) - Tussenganger Bediener (Opsioneel) - - - Ui_EditSongDialog - - - &Manage Authors, Topics, Books - &Bestuur Skrywers, Onderwerpe en Boeke - - - Ui_SongUsageDetailDialog - - - Audit Detail Extraction - Oudit Besonderhede Inwinning - - - Ui_OpenLPExportDialog - - - Ready to export - Gereed vir Uitvoer - - - EditCustomForm - - - Save && Preview - Stoor && Voorskou - - - Ui_OpenLPExportDialog - - - Select All - Selekteer Alles - - - Ui_SongUsageDetailDialog - - - to - aan - - - Ui_AmendThemeDialog - - - Size: - Grootte: - - - MainWindow - - - OpenLP Main Display Blanked - OpenLP Hoof Vertoning Blanko - - - Ui_OpenLPImportDialog - - - Remove Selected - Verwyder Geselekteerde - - - Ui_EditSongDialog - - - Delete - Wis uit - - - ImportWizardForm - - - You need to specify an OpenSong Bible file to import! - U moet 'n OpenSong Bybel lêer spesifiseer om in te voer! - - - PresentationMediaItem - - - File exists - Lêer bestaan - - - Ui_OpenLPExportDialog - - - Title - Titel - - - Ui_OpenSongImportDialog - - - Ready to import - Gereed vir invoer - - - SlideController - - - Stop continuous loop - Stop deurlopende lus - - - s - s - - - SongMediaItem - - - Song Maintenance - Lied Onderhoud - - - Ui_customEditDialog - - - Edit - Redigeer - - - Ui_AmendThemeDialog - - - Gradient : - Gradiënt : - - - ImportWizardForm - - - Invalid Verse File - Ongeldige Vers Lêer - - - EditSongForm - - - Error - Fout - - - Ui_customEditDialog - - - Add New - Voeg Nuwe By - - - Ui_AuthorsDialog - - - Display name: - Vertoon naam: - - - SongMaintenanceForm - - - Are you sure you want to delete the selected topic? - Is u seker u wil die geselekteerde onderwerp uitwis? - - - Ui_AmendThemeDialog - - - Bold/Italics - Bold/Italics - - - Ui_SongMaintenanceDialog - - - Song Maintenance - Lied Onderhoud - - - Ui_BibleImportWizard - - - Welcome to the Bible Import Wizard - Welkom by die Bybel Invoer Gids - - - SongsTab - - - Songs - Liedere - - - Ui_BibleImportWizard - - - Password: - Wagwoord: - - - Ui_MainWindow - - - &Theme Manager - &Tema Bestuurder - - - MediaManagerItem - - - Preview the selected item - Voorskou die geselekteerde item - - - Ui_BibleImportWizard - - - Version Name: - Weergawe Naam: - - - Ui_AboutDialog - - - About - Aangaande - - - MediaMediaItem - - - Select Media - Selekteer Media - - - Ui_AmendThemeDialog - - - Horizontal Align: - Horisontale Belyning: - - - ServiceManager - - - &Edit Item - R&edigeer Item - - - Ui_AmendThemeDialog - - - Background Type: - Agtergrond Tipe: - - - Ui_MainWindow - - - &Save - &Stoor - - - OpenLP 2.0 - OpenLP 2.0 - - - ThemeManager - - - A theme with this name already exists, would you like to overwrite it? - 'n Tema met hierdie naam bestaan alreeds, wil u daaroor skryf? - - - PresentationMediaItem - - - Select Presentation(s) - Selekteer Aanbieding(e) - - - ThemeManager - - - Export a theme - Voer 'n tema uit - - - AmendThemeForm - - - Open file - Maak lêer oop - - - Ui_TopicsDialog - - - Topic Maintenance - Onderwerp Onderhoud - - - Ui_customEditDialog - - - Clear edit area - Maak skoon die redigeer area - - - Ui_AmendThemeDialog - - - Show Outline: - Vertoon Buitelyn: - - - SongBookForm - - - You need to type in a book name! - U moet 'n boek naam invoer! - - - ImportWizardForm - - - Open OpenSong Bible - Maak OpenSong Bybel Oop - - - Ui_MainWindow - - - Look && &Feel - Vertoning && &Gevoel - - - Ui_BibleImportWizard - - - Ready. - Gereed. - - - ThemeManager - - - You have not selected a theme! - U het nie 'n tema geselekteer nie! - - - Ui_SongMaintenanceDialog - - - Books/Hymnals - Boeke/Liedboeke - - - Ui_AboutDialog - - - Contribute - Dra By - - - Ui_AmendThemeDialog - - - Gradient - Gradiënt - - - Ui_BibleImportWizard - - - Books Location: - Boeke Ligging: - - - Ui_OpenSongExportDialog - - - Full Song List - Volle Lied Lys - - - GeneralTab - - - SongSelect Password: - SongSelect Wagwoord: - - -Delete Selected Song Usage Events?Couldn't save your book.AutomaticMove to &bottomThis author can't be deleted, they are currently assigned to at least one song.Couldn't save your topic.Move to &topYou need to specify a file to import your Bible from.Song Usage ExtractionAllow the background of live slide to be overriddenYou are unable to delete the default theme.Couldn't save your author.<b>Image Plugin</b><br>Allows images of all types to be displayed. If a number of images are selected together and presented on the live controller it is possible to turn them into a timed loop.<br<br>From the plugin if the <i>Override background</i> is chosen and an image is selected any songs which are rendered will use the selected image from the background instead of the one provied by the theme.<br>&Delete From ServiceImages (*.jpg *.jpeg *.gif *.png *.bmp);; All files (*)You need to specify a version name for your Bible.Couldn't add your topic.You need to specify a file of Bible verses to import.File is not a valid theme.This book can't be deleted, it is currently assigned to at least one song.<b>Custom Plugin</b><br>This plugin allows slides to be displayed on the screen in the same way songs are. This plugin provides greater freedom over the songs plugin.<br>Please save or clear selected itemOpenLP Service Files (*.osz)Couldn't add your author.This topic can't be deleted, it is currently assigned to at least one song.Move &downAre you sure you want to delete selected Song Usage data?Add &Tool...Song Usage DeleteMove &upYou need to specify a file with books of the Bible to use in the import.<b>Presentation Plugin</b> <br> Delivers 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.Couldn't add your book.You have not selected a theme.Select Date RangeYou need to specify an OpenSong Bible file to import. + + &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. + + + + + SongUsagePlugin.SongUsageDeleteForm + + + Delete Selected Song Usage Events? + + + + + Are you sure you want to delete selected Song Usage data? + + + + + Delete Song Usage Data + + + + + SongUsagePlugin.SongUsageDetailForm + + + Output File Location + Uitvoer Lêer Ligging + + + + Song Usage Extraction + + + + + Select Date Range + + + + + to + aan + + + + Report Location + Rapporteer Ligging + + + + SongsPlugin + + + &Song + &Lied + + + + Import songs using the import wizard. + + + + + Songs of Fellowship (temp menu item) + + + + + Import songs from the VOLS1_2.RTF, sof3words.rtf and sof4words.rtf supplied with the music books + + + + + Generic Document/Presentation Import (temp menu item) + + + + + Import songs from Word/Writer/Powerpoint/Impress + + + + + OpenSong (temp menu item) + + + + + Import songs from OpenSong files(either raw text or ZIPfiles) + + + + + OpenLP v2 Songs (temporary) + + + + + Import an OpenLP v2 song database + + + + + Open Songs of Fellowship file + + + + + Import Error + + + + + Error importing Songs of Fellowship file. +OpenOffice.org must be installed and you must be using an unedited copy of the RTF included with the Songs of Fellowship Music Editions + + + + + Open OpenSong file + + + + + Error importing OpenSong file + + + + + Select OpenLP database(s) to import... + + + + + Database(s) imported + + + + + Your OpenLP v2 song databases have been successfully imported + + + + + Error importing OpenLP v2 database(s) + + + + + Open documents or presentations + + + + + <strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs. + + + + + SongsPlugin.AuthorsForm + + + Author Maintenance + Skrywer Onderhoud + + + + Display name: + Vertoon naam: + + + + First name: + Voornaam: + + + + Last name: + Van: + + + + Error + Fout + + + + You need to type in the first name of the author. + U moet die naam van die skrywer invul. + + + + You need to type in the last name of the author. + U moet ten minste die skrywer se naam invoer. + + + + 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 + Lied Redigeerder + + + + &Title: + + + + + &Lyrics: + + + + + &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 + + + + + Copyright Information + Kopiereg Informasie + + + + © + + + + + 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? + + + + + Alt&ernate title: + + + + + &Verse order: + + + + + CCLI number: + + + + + SongsPlugin.EditVerseForm + + + Edit Verse + Redigeer Vers + + + + &Verse type: + + + + + &Insert + + + + + SongsPlugin.ImportWizardForm + + + No OpenLyrics Files Selected + + + + + You need to add at least one OpenLyrics song file to import from. + + + + + No OpenSong Files Selected + + + + + You need to add at least one OpenSong song file to import from. + + + + + No CCLI Files Selected + + + + + You need to add at least one CCLI file to import from. + + + + + No CSV File Selected + + + + + You need to specify a CSV file to import from. + + + + + 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: + + + + OpenLyrics + + + + + OpenSong + OpenSong + + + + CCLI + + + + + CSV + KGW + + + + Add Files... + + + + + Remove File(s) + + + + + Filename: + + + + + Browse... + + + + + Importing + Invoer + + + + Please wait while your songs are imported. + + + + + Ready. + Gereed. + + + + %p% + + + + + 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. + + + + + CCLI Licence: + CCLI Lisensie: + + + + Are you sure you want to delete the selected song? + + + + + Are you sure you want to delete the %d selected songs? + + + + + Delete Song(s)? + + + + + SongsPlugin.SongBookForm + + + Song Book Maintenance + + + + + &Name: + + + + + &Publisher: + + + + + Error + Fout + + + + You need to type in a name for the book. + + + + + SongsPlugin.SongImport + + + copyright + + + + + © + + + + + SongsPlugin.SongMaintenanceForm + + + Song Maintenance + Lied Onderhoud + + + + Authors + Skrywers + + + + Topics + Onderwerpe + + + + Song Books + + + + + &Add + + + + + &Edit + R&edigeer + + + + &Delete + + + + + 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! + + + + SongsPlugin.SongsTab + + + Songs + Liedere + + + + Songs Mode + Liedere Modus + + + + Enable search as you type + + + + + Display verses on live tool bar + + + + + SongsPlugin.TopicsForm + + + Topic Maintenance + Onderwerp Onderhoud + + + + Topic name: + Onderwerp naam: + + + + Error + Fout + + + + You need to type in a topic name! + U moet 'n onderwerp naam invoer! + + + + SongsPlugin.VerseType + + + Verse + Vers + + + + Chorus + Koor + + + + Bridge + Brug + + + + Pre-Chorus + Voor-Refrein + + + + Intro + Inleiding + + + + Ending + Slot + + + + Other + Ander + + + diff --git a/resources/i18n/openlp_de.ts b/resources/i18n/openlp_de.ts index 922c3b27b..022a1a412 100644 --- a/resources/i18n/openlp_de.ts +++ b/resources/i18n/openlp_de.ts @@ -1,4259 +1,3893 @@ - - - - BibleMediaItem - - - Quick - Schnellsuche - - - Ui_customEditDialog - - - Delete selected slide - Lösche ausgewählte Folie - - - BiblesTab - - - ( and ) - ( und ) - - - RemoteTab - - - Remotes - Fernprojektion - - - Ui_EditSongDialog - - - &Remove - Entfe&rnen - - - Ui_AmendThemeDialog - - - Shadow Size: - Schattengröße: - - - Ui_OpenSongExportDialog - - - Close - Schließen - - - ThemeManager - - - Import Theme - Design importieren - - - Ui_AmendThemeDialog - - - Slide Transition - FolienübergangBei mir im OOo3 ist es Folienübergang (vgl. Impress) ->(wie in OpenOffice 3) - - - SongMaintenanceForm - - - Are you sure you want to delete the selected book? - Sind Sie sicher, dass das markierte Buch wirklich gelöscht werden soll? - - - ThemesTab - - - Theme level - Design-EbeneJetzt einheitlich (Gotttesdienst-Ebene, Lied-Ebene, Global-Ebene) - - - BibleMediaItem - - - Bible - Bibel - - - ServiceManager - - - Save Changes to Service? - Änderungen am Ablauf speichern? - - - SongUsagePlugin - - - &Delete recorded data - Aufgezeichnete &Daten löschen - - - Ui_OpenLPExportDialog - - - Song Title - Liedtitel - - - Ui_customEditDialog - - - Edit selected slide - Markierte Folie bearbeiten - - - SongMediaItem - - - CCLI Licence: - CCLI-Lizenz: - - - Ui_SongUsageDeleteDialog - - - Audit Delete - Statistik löschenAudit = Aufzeichnung, welche Lieder während eines Gottesdienstes benutzt wurden, keine Prüfung! - - - Ui_BibleImportWizard - - - Bible Import Wizard - Bibel Import Assistent - - - Ui_customEditDialog - - - Edit All - Alle bearbeiten - - - Ui_ServiceNoteEdit - - - Service Item Notes - Elementnotiz - - - SongMaintenanceForm - - - Couldn't save your author! - Der Autor konnte nicht gespeichert werden! - - - Ui_customEditDialog - - - Clear - Löschen - - - ThemesTab - - - Global theme - Standarddesign - - - SongUsagePlugin - - - Start/Stop live song usage recording - Liederstatistik unterbrechen/weiterführen - - - MainWindow - - - The Main Display has been blanked out - Die Projektion ist momentan nicht aktiv - - - Ui_OpenSongExportDialog - - - Lyrics - Liedtext - - - Ui_AlertDialog - - - Display - Anzeige - - - Ui_customEditDialog - - - Delete - Löschen - - - Ui_EditVerseDialog - - - Verse - Vers - - - SongMaintenanceForm - - - This author can't be deleted, they are currently assigned to at least one song! - Dieser Autor kann nicht gelöscht werden, da er mindestens einem Lied zugeordnet ist! - - - ThemeManager - - - Create a new theme - Erstelle neues DesignAuf Design geeinigt - - - Ui_MainWindow - - - Open an existing service - Ablauf öffnen - - - SlideController - - - Move to previous - Vorherige Folie anzeigen - - - SongsPlugin - - - &Song - &Lied - - - Ui_PluginViewDialog - - - Plugin Details - Plugin-Details - - - AlertsTab - - - pt - pt - - - Edit History: - Verlauf bearbeiten: - - - Ui_MainWindow - - - &File - &Datei - - - SongMaintenanceForm - - - Couldn't add your book! - Das Buch konnte nicht hinzugefügt werden! - - - BiblesTab - - - verse per line - Ein Vers pro Zeile - - - Ui_customEditDialog - - - Theme: - Design: - - - SongMaintenanceForm - - - Error - Fehler - - - Ui_BibleImportWizard - - - Bible: - Bibel: - - - ImportWizardForm - - - You need to specify a file with books of the Bible to use in the import! - Sie müssen eine Datei mit der Liste der Bibelbücher auswählen! - - - ThemeManager - - - Delete Theme - Design löschen - - - SplashScreen - - - Splash Screen - Startbildschirm - - - SongMediaItem - - - Song - Lied - - - SongUsageDeleteForm - - - Delete Selected Audit Events? - Sollen die ausgewählten Einträge aus der Statistik entfernt werden? - - - Ui_OpenSongExportDialog - - - Song Title - Liedtitel - - - Ui_AmendThemeDialog - - - Bottom - Unten - - - Ui_MainWindow - - - List the Plugins - Plugins auflisten - - - SongMaintenanceForm - - - No author selected! - Sie haben keinen Autor ausgewählt! - - - SongUsagePlugin - - - <b>SongUsage Plugin</b><br>This plugin records the use of songs and when they have been used during a live service - <b>SongUsage-Plugin</b><br>Dieses Plugin zeichnet auf, welche Lieder Sie wie oft und wann benutzt haben und erstellt daraus eine Statistik - - - Ui_customEditDialog - - - Move slide Up 1 - Folie nach oben verschieben - - - SongsPlugin - - - OpenSong - OpenSong - - - AlertsManager - - - Alert message created and delayed - Hinweis erzeugt und verzögertMit "Hinweis" übersetzt: a) es geht nur eine Übersetzung (Hinweis oder Alarm). b) in 1.2 heißt es auch "Hinweis" - - - Ui_EditSongDialog - - - Alternative Title: - Alternativer Titel: - - - ServiceManager - - - Open Service - Öffnen Ablauf - - - BiblesTab - - - Display Style: - Anzeige: - - - Ui_AmendThemeDialog - - - Image - Bild - - - EditSongForm - - - You need to enter a song title. - Sie müssen einen Liedtitel angeben! - - - ThemeManager - - - Error - Fehler - - - ImportWizardForm - - - Invalid Bible Location - Ungültige Bibelstelle - - - ThemesTab - - - Global level - Global-EbeneÜberseztung darf nicht zu lang sein. Jetzt einheitlich (Gotttesdienst-Ebene, Lied-Ebene, Global-Ebene) - - - ThemeManager - - - Make Global - Als Standarddesign festlegen - - - Ui_MainWindow - - - &Service Manager - Ablauf&sverwaltung - - - Ui_OpenLPImportDialog - - - Author - Autor - - - Ui_AmendThemeDialog - - - Height: - Höhe: - - - ThemeManager - - - Delete a theme - Design löschenDa engl. design = dt. Design und engl. theme = dt. Theme bin ich der Meinung es muss mit Theme übersetzt werden! - - - Ui_BibleImportWizard - - - Crosswalk - Crosswalk - - - SongBookForm - - - Error - Fehler - - - Ui_AuthorsDialog - - - Last name: - Nachname: - - - Ui_customEditDialog - - - Title: - Titel: - - - ImportWizardForm - - - You need to set a copyright for your Bible! Bibles in the Public Domain need to be marked as such. - Sie müssen das Copyright der Bibel angeben. Bei Bibeln, die keinem Copyright mehr unterlegen, geben Sie bitte "Public Domain" ein. - - - SongMediaItem - - - Maintain the lists of authors, topics and books - Autoren, Designs und Bücher verwalten - - - Ui_AlertEditDialog - - - Save - Speichern - - - EditCustomForm - - - You have unsaved data - Nicht alle Änderungen wurden gespeichert - - - Ui_AmendThemeDialog - - - Outline - RandHier ist definitiv ein Rand gemeint. - - - BibleMediaItem - - - Text Search - Textsuche - - - Ui_BibleImportWizard - - - CSV - CSV - - - SongUsagePlugin - - - Delete song usage to specified date - Liedstatistik bis zu einem bestimmten Termin löschen - - - Ui_SongUsageDetailDialog - - - Report Location - Speicherort für die Statistiken - - - Ui_BibleImportWizard - - - OpenSong - OpenSong - - - Ui_MainWindow - - - Open Service - Öffne Ablauf - - - BibleMediaItem - - - Find: - Suchen: - - - ImageMediaItem - - - Select Image(s) - Bild(er) auswählen - - - BibleMediaItem - - - Search Type: - Suchmodus: - - - Ui_MainWindow - - - Media Manager - Medienmanager - - - Alt+F4 - Alt+F4 - - - MediaManagerItem - - - &Preview - &Vorschau - - - GeneralTab - - - CCLI Details - CCLI-Details - - - BibleMediaItem - - - Bible not fully loaded - Die Bibel wurde nicht vollständig geladen - - - Ui_MainWindow - - - Toggle the visibility of the Preview Panel - Vorschaubereich ein/ausblenden - - - ImportWizardForm - - - Bible Exists - Diese Bibelübersetzung ist bereits vorhanden - - - Ui_MainWindow - - - &User Guide - Ben&utzerhandbuch - - - SongUsageDeleteForm - - - Are you sure you want to delete selected Audit Data? - Sind Sie sicher, dass Sie die markierten Einträge aus der Statistik löschen wollen? - - - Ui_MainWindow - - - Set the interface language to English - Oberfläche auf Englisch anzeigen - - - Ui_AmendThemeDialog - - - Main Font - Hauptschriftart - - - ImportWizardForm - - - Empty Copyright - Das Copyright wurde nicht angegeben - - + + + + AlertsPlugin + + + &Alert + &Hinweis + + + + Show an alert message. + + + + + <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of nursery alerts on the display screen + + + + + AlertsPlugin.AlertForm + + + Alert Message + Hinweis + + + + Alert &text: + + + + + &Parameter(s): + + + + + &New + &Neu + + + + &Save + &Speichern + + + + &Delete + + + + + Displ&ay + + + + + Display && Cl&ose + + + + + &Close + + + + + New Alert + + + + + You haven't specified any text for your alert. Please type in some text before clicking New. + + + + + AlertsPlugin.AlertsManager + + + Alert message created and displayed. + + + + + AlertsPlugin.AlertsTab + + + Alerts + Hinweise + + + + Font + Schrift + + + + pt + pt + + + + Alert timeout: + Anzeigedauer: + + + + s + s + + + + Location: + + + + + Preview + Vorschau + + + + Top + Oben + + + + Bottom + Unten + + + + Font name: + + + + + Font color: + + + + + Background color: + + + + + Font size: + + + + + OpenLP 2.0 + OpenLP 2.0 + + + + Middle + Mittig + + + + BiblesPlugin + + + &Bible + &Bibel + + + + <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display bible verses from different sources during the service. + + + + + BiblesPlugin.BibleDB + + + Book not found + + + + + The book you requested could not be found in this bible. Please check your spelling and that this is a complete bible not just one testament. + + + + + BiblesPlugin.BiblesTab + + + Bibles + Bibeln + + + + Verse Display + Bibelstellenanzeige + + + + Only show new chapter numbers + Zeige nur neue Kapitelnummern + + + + Layout style: + + + + + Display style: + + + + + Bible theme: + + + + + Verse Per Slide + + + + + Verse Per Line + + + + + Continuous + + + + + No Brackets + + + + + ( And ) + + + + + { And } + + + + + [ And ] + + + + + Note: +Changes do not affect verses already in the service. + + + + + Display dual Bible verses + + + + + BiblesPlugin.ImportWizardForm + + + Bible Import Wizard + Bibel Import Assistent + + + + Welcome to the Bible Import Wizard + Willkommen beim Bibel Import Assistenten + + + + This wizard will help you to import Bibles from a variety of formats. Click the next button below to start the process by selecting a format to import from. + Dieser Assistent hilft ihnen beim Importieren von Bibeln aus verschiedenen Formaten. Klicken Sie auf Weiter, um den Assistenten zu starten. + + + + 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: + + + + OSIS + OSIS + + + + CSV + CSV + + + + OpenSong + OpenSong + + + + Web Download + Internetdownload + + + + Location: + + + + + Crosswalk + Crosswalk + + + + BibleGateway + BibleGateway + + + + Bible: + Bibel: + + + + Download Options + Download Optionen + + + + Server: + Server: + + + + Username: + Benutzername: + + + + Password: + Passwort: + + + + Proxy Server (Optional) + Proxy-Server (optional) + + + + License Details + Lizenz-Details + + + + Set up the Bible's license details. + Die Lizenzinformationen der Bibelübersetzung angeben. + + + + Copyright: + Copyright: + + + + Permission: + Berechtigung: + + + + Importing + + + + + Please wait while your Bible is imported. + Bitte warten Sie während Ihre Bibel importiert wird. + + + + Ready. + Fertig. + + + + Invalid Bible Location + Ungültige Bibelstelle + + + + You need to specify a file to import your Bible from. + + + + + Invalid Books File + Ungültige Bücherdatei + + + + You need to specify a file with books of the Bible to use in the import. + + + + + Invalid Verse File + Ungültige Liedtext Datei + + + + You need to specify a file of Bible verses to import. + + + + + Invalid OpenSong Bible + Ungültige OpenSong-Bibel + + + + You need to specify an OpenSong Bible file to import. + + + + + Empty Version Name + Leerer Übersetzungsname + + + + You need to specify a version name for your Bible. + + + + + Empty Copyright + Das Copyright wurde nicht angegeben + + + + You need to set a copyright for your Bible! Bibles in the Public Domain need to be marked as such. + Sie müssen das Copyright der Bibel angeben. Bei Bibeln, die keinem Copyright mehr unterlegen, geben Sie bitte "Public Domain" ein. + + + + Bible Exists + Diese Bibelübersetzung ist bereits vorhanden + + + + This Bible already exists! Please import a different Bible or first delete the existing one. + Diese Bibel ist bereits vorhanden! Bitte importieren Sie eine andere Bibel oder löschen Sie die bereits vorhandene. + + + + Open OSIS File + + + + + Open Books CSV File + + + + + Open Verses CSV File + + + + + Open OpenSong Bible + Öffne OpenSong-Bibel + + + + Starting import... + Starte import ... + + + + Finished import. + Importvorgang abgeschlossen. + + + + Your Bible import failed. + Der Bibelimportvorgang ist fehlgeschlagen. + + + + File location: + + + + + Books location: + + + + + Verse location: + + + + + Bible filename: + + + + + Version name: + + + + + 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. + + + + + BiblesPlugin.Opensong + + + Importing + + + + CustomPlugin - - <b>Custom Plugin</b><br>This plugin allows slides to be displayed on the screen in the same way songs are. This plugin provides greater freedom over the songs plugin.<br> - <b>Sonderfolien-Plugin</b><br>Diese Plugin ermöglicht es Folien anzulegen, die wie die Liedfolien dargestellt werden, bietet aber mehr Freiheit.<br> - - - AuthorsForm - - - You need to type in the first name of the author. - Sie müssen den Vornamen des Autors angeben. - - - SongsTab - - - Display Verses on Live Tool bar: - Verse in der Liveansicht anzeigen: - - - ServiceManager - - - Move to top - Nach oben verschieben - - - ImageMediaItem - - - Override background - Hintergrund ignorieren - - - Ui_SongMaintenanceDialog - - - Edit - Bearbeiten - - - Ui_OpenSongExportDialog - - - Select All - Alle markieren - - - ThemesTab - - - 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. - Das im jeweiligen Lied eingestellte Design verwenden. Wenn für ein Lied kein Design festgelegt ist, wird das Ablaufdesign verwendet. Wenn dort auch kein Design festgelegt wurde, wird das Standarddesign benutzt. - - - PresentationMediaItem - - - Presentation - Präsentation - - - Ui_AmendThemeDialog - - - Solid Color - Füllfarbe - - - CustomTab - - - Custom - Sonderfolien - - - Ui_OpenLPImportDialog - - - Ready to import - Bereit für den Importvorgang - - - MainWindow - - - OpenLP version %s has been updated to version %s - -You can obtain the latest version from http://openlp.org - OpenLP Version %s in der Version %s vor. - -Sie können die aktuelle Version von http://de.openlp.org herunterladen"OpenLP Version %s liegt in der Version %s vor.\n -\n -Sie können die aktuelle Version von http://de.openlp.org herunterladen" ist vielleicht das gemeint? - - - Ui_BibleImportWizard - - - File Location: - Speicherort: - - - SlideController - - - Go to Verse - Zum Vers springen - - - Ui_MainWindow - - - &Import - &Importieren - - - Quit OpenLP - OpenLP beenden - - - Ui_BibleImportWizard - - - This wizard will help you to import Bibles from a variety of formats. Click the next button below to start the process by selecting a format to import from. - Dieser Assistent hilft ihnen beim Importieren von Bibeln aus verschiedenen Formaten. Klicken Sie auf Weiter, um den Assistenten zu starten. - - - SongMaintenanceForm - - - Couldn't add your topic! - Das Thema konnte nicht hinzugefügt werden! - - - ImportWizardForm - - - Empty Version Name - Leerer Übersetzungsname - - - Ui_MainWindow - - - &Preview Panel - &Vorschaubereich - - - SlideController - - - Start continuous loop - Endlosschleife startenAlso mir gefällt ja nur "Schleife starten" besser (vgl. Stop continuous loop) - - - ServiceManager - - - Move down - Nach unten verschieben - - - GeneralTab - - - primary - Hauptbildschirm - - - Ui_EditSongDialog - - - Add a Theme - Design hinzufügen - - - Ui_MainWindow - - - &New - &Neu - - - Ui_customEditDialog - - - Credits: - Fußzeile: - - - SlideController - - - Live - Live - - - GeneralTab - - - Show blank screen warning - Warnung anzeigen, wenn die Projektion deaktiviert wurde - - - BiblesTab - - - continuous - unendlich - - - Ui_EditVerseDialog - - - Number - Nummer - - - GeneralTab - - - Application Startup - Programmstart - - - Ui_AmendThemeDialog - - - Use Default Location: - Vorgabewerte verwenden: - - - Ui_OpenSongImportDialog - - - Import - Importieren - - - Ui_AmendThemeDialog - - - Other Options - Weitere Optionen - - - Ui_EditSongDialog - - - Verse Order: - Reihenfolge: - - - Ui_SongUsageDetailDialog - - - ASelect Date Range - Zeitfenster auswählen - - - Ui_MainWindow - - - Default Theme: - Standarddesign: - - - Toggle Preview Panel - Vorschaubereich ein/ausblenden - - - SongMediaItem - - - Lyrics - Liedtext - - - Ui_OpenLPImportDialog - - - Progress: - Fortschritt: - - - Ui_AmendThemeDialog - - - Shadow - Schatten - - - GeneralTab - - - Select monitor for output display: - Projektionsbildschirm: - - - Ui_MainWindow - - - &Settings - Ein&stellungen - - - Ui_AmendThemeDialog - - - Italics - Kursiv - - - ServiceManager - - - Create a new service - Erstelle neuen Ablauf - - - Ui_AmendThemeDialog - - - Background: - Hintergrund: - - - Ui_OpenLPImportDialog - - - openlp.org Song Importer - openlp.org Lieder importieren - - - Ui_BibleImportWizard - - - Copyright: - Copyright: - - - ThemesTab - - - Service level - Gottesdienst-EbeneÜberseztung darf nicht zu lang sein. Jetzt einheitlich (Gotttesdienst-Ebene, Lied-Ebene, Global-Ebene) - - - BiblesTab - - - [ and ] - [ und ] - - - Ui_BibleImportWizard - - - Verse Location: - Versangabe: - - - MediaManagerItem - - - You must select one or more items - Sie müssen mindestens ein Element markieren - - - GeneralTab - - - Application Settings - Anwendungseinstellungen - - - ServiceManager - - - Save this service - Ablauf speichern - - - ImportWizardForm - - - Open Books CSV file - CSV-Datei mit Bücherliste - - - GeneralTab - - - SongSelect Username: - SongSelect-Benutzername: - - - Ui_AmendThemeDialog - - - X Position: - X-Position: - - - BibleMediaItem - - - No matching book could be found in this Bible. - Das Buch wurde in dieser Bibelausgabe nicht gefunden. - - - Ui_BibleImportWizard - - - Server: - Server: - - - SongMaintenanceForm - - - Couldn't save your book! - Das Buch konnte nicht gespeichert werden! - - - Ui_EditVerseDialog - - - Ending - Coda (Schluss) - - - CustomTab - - - Display Footer: - Infobereich anzeigen: - - - ImportWizardForm - - - Invalid OpenSong Bible - Ungültige OpenSong-Bibel - - - GeneralTab - - - CCLI Number: - CCLI-Nummer: - - - Ui_AmendThemeDialog - - - Center - Mitte - - - ServiceManager - - - Theme: - Design: - - - Ui_MainWindow - - - &Live - &Live - - - Ui_AmendThemeDialog - - - <Color2> - <Farbe 2> - - - Ui_MainWindow - - - English - Englisch - - - ImageMediaItem - - - You must select one or more items - Sie müssen mindestens ein Element markieren - - - Ui_AuthorsDialog - - - First name: - Vorname: - - - Ui_OpenLPExportDialog - - - Select openlp.org export filename: - Dateiname für den openlp.org Export auswählen: - - - Ui_BibleImportWizard - - - Permission: - Berechtigung: - - - Ui_OpenSongImportDialog - - - Close - Schließen - - - Ui_AmendThemeDialog - - - Opaque - Fest - - - SongMaintenanceForm - - - This book can't be deleted, it is currently assigned to at least one song! - Dieses Buch kann nicht gelöscht werden, da es mindestens einem Lied zugeordnet ist! - - - ImportWizardForm - - - Your Bible import failed. - Der Bibelimportvorgang ist fehlgeschlagen. - - - SlideController - - - Start playing media - Abspielen - - - SongMediaItem - - - Type: - Art: - - - Ui_AboutDialog - - - Close - Schließen - - - TopicsForm - - - You need to type in a topic name! - Sie müssen dem Thema einen Namen geben! - - - Ui_OpenSongExportDialog - - - Song Export List - Lieder exportieren - - - BibleMediaItem - - - Dual: - Parallel: - - - ImageTab - - - sec - sek - - - ServiceManager - - - Delete From Service - Aus dem Ablauf entfernen - - - GeneralTab - - - Automatically open the last service - Zuletzt benutzten Ablauf beim Start laden - - - Ui_OpenLPImportDialog - - - Song Import List - Lieder importieren - - - Ui_OpenSongExportDialog - - - Author - Autor - - - Ui_AmendThemeDialog - - - Outline Color: - Randfarbe:Hier ist der Rang gemeint... und Kontur passt m. E. nicht so gut. Sry... wenn ihr nicht zustimmt bitte melden - - - Ui_BibleImportWizard - - - Select Import Source - Importquelle auswählen - - - Ui_MainWindow - - - F9 - F9 - - - F8 - F8 - - - ServiceManager - - - &Change Item Theme - &Design des Elements ändern - - - Ui_OpenSongImportDialog - - - OpenSong Folder: - OpenSong-Ordner: - - - Ui_OpenLPImportDialog - - - Import File Song List - Lieder importieren - - - Ui_customEditDialog - - - Edit Custom Slides - Sonderfolien bearbeiten - - - Ui_BibleImportWizard - - - Set up the Bible's license details. - Die Lizenzinformationen der Bibelübersetzung angeben. - - - Ui_AmendThemeDialog - - - Alignment - Ausrichtung - - - SongMaintenanceForm - - - Delete Book - Buch löschen - - - ThemeManager - - - Edit a theme - Design bearbeiten - - - Ui_BibleImportWizard - - - BibleGateway - BibleGateway - - - GeneralTab - - - Preview Next Song from Service Manager - Vorschau des nächsten Lieds - - - Ui_EditSongDialog - - - Title && Lyrics - Titel && Liedtext - - - SongMaintenanceForm - - - No book selected! - Kein Buch ausgewählt! - - - SlideController - - - Move to live - Verschieben zur Live Ansicht - - - Ui_EditVerseDialog - - - Other - Weitere - - - Ui_EditSongDialog - - - Theme - Design - - - ServiceManager - - - Save Service - Ablauf speichern - - - Ui_MainWindow - - - Save the current service to disk - Aktuellen Ablauf speichern - - - BibleMediaItem - - - Chapter: - Kapitel: - - - Search - Suche - - - PresentationTab - - - Available Controllers - Verfügbare Präsentationsprogramme: - - - ImportWizardForm - - - Open Verses CSV file - CSV-Datei mit dem Bibeltext öffnen - - - TopicsForm - - - Error - Fehler - - - RemoteTab - - - Remotes Receiver Port - Fernprojektionsport - - - Ui_MainWindow - - - &View - &Ansicht - - - Ui_AmendThemeDialog - - - Normal - Normal - - - Ui_OpenLPExportDialog - - - Close - Schließen - - - Ui_BibleImportWizard - - - Username: - Benutzername: - - - ThemeManager - - - Edit Theme - Design bearbeiten - - - SlideController - - - Preview - Vorschau - - - Ui_AlertDialog - - - Alert Message - Hinweis - - - ImportWizardForm - - - Finished import. - Importvorgang abgeschlossen. - - - You need to specify a file of Bible verses to import! - Sie müssen die Datei mit dem Bibeltext angeben! - - - AlertsTab - - - Location: - Speicherort: - - - Ui_EditSongDialog - - - Authors, Topics && Book - Autoren, Designs && Bücher - - - EditSongForm - - - You need to enter some verses. - Sie müssen etwas Liedtext angeben. - - - Ui_BibleImportWizard - - - Download Options - Download Optionen - - - BiblePlugin - - - <strong>Bible Plugin</strong><br />This plugin allows bible verses from different sources to be displayed on the screen during the service. - <strong>Bibel-Plugin</strong><br />Mit diesem Plugin können Sie Bibeltexte aus verschiedenen Quellen während des Gottesdienstes anzeigen lassen. - - - Ui_EditSongDialog - - - Copyright Information - Copyright Angaben - - - Ui_MainWindow - - - &Export - &Exportieren - - - Ui_AmendThemeDialog - - - Bold - Fett - - - SongsPlugin - - - Export songs in OpenLP 2.0 format - Lieder als OpenLP 2.0 Datei exportieren - - - MediaManagerItem - - - Load a new - Hinzufügen - - - AlertEditForm - - - Missing data - Datei fehlt - - - SongsPlugin - - - <b>Song Plugin</b> <br>This plugin allows Songs to be managed and displayed.<br> - <b>Lieder-Plugin</b><br>Mit diesem Plugin können Sie Lieder verwalten und anzeigen.<br> - - - Ui_AmendThemeDialog - - - Footer Font - Schriftart der Fußzeile - - - EditSongForm - - - Invalid verse entry - vX - Ungültige Versangabe - vX - - - MediaManagerItem - - - Delete the selected item - Markiertes Element löschen - - - Ui_OpenLPExportDialog - - - Export - Exportieren - - - Ui_BibleImportWizard - - - Location: - Ort: - - - BibleMediaItem - - - Keep - Behalten - - - SongUsagePlugin - - - Generate report on Song Usage - Liederstatistik generieren - - - Ui_EditSongDialog - - - Topic - Thema - - - Ui_MainWindow - - - &Open - &Öffnen - - - AuthorsForm - - - You haven't set a display name for the author, would you like me to combine the first and last names for you? - Sie haben keinen Anzeigenamen für den Autor angegeben. Soll der Vor- mit dem Nachnamen kombiniert dafür verwendet werden? - - - AmendThemeForm - - - Slide Height is %s rows - Folienhöhe beträgt %s Zeilen - - - Ui_EditVerseDialog - - - Pre-Chorus - Vor-Refrain - - - Ui_EditSongDialog - - - Lyrics: - Liedtext: - - - Ui_AboutDialog - - - Project Lead - Raoul "superfly" Snyman - -Developers - Tim "TRB143" Bentley - Jonathan "gushie" Corwin - Michael "cocooncrash" Gorven - Scott "sguerrieri" Guerrieri - Raoul "superfly" Snyman - Maikel Stuivenberg - Martin "mijiti" Thompson - Jon "Meths" Tibble - Carsten "catini" Tingaard - -Testers - Wesley "wrst" Stout - Projektleiter - Raoul "superfly" Snyman - -Entwickler - Tim "TRB143" Bentley - Jonathan "gushie" Corwin - Michael "cocooncrash" Gorven - Scott "sguerrieri" Guerrieri - Raoul "superfly" Snyman - Maikel Stuivenberg - Martin "mijiti" Thompson - Jon "Meths" Tibble - Carsten "catini" Tingaard - -Tester - Wesley "wrst" Stout - - - SongMediaItem - - - Titles - Titel - - - Ui_OpenLPExportDialog - - - Lyrics - Liedtext - - - PresentationMediaItem - - - Present using: - Anzeigen mit: - - - SongMediaItem - - - Clear - AbbrechenIn V1 mit "Abbrechen" übersetzt - - - ServiceManager - - - &Live Verse - Vers &Live zeigenhm... - - - Ui_OpenSongImportDialog - - - Progress: - Fortschritt: - - - Ui_MainWindow - - - Toggle Theme Manager - Designverwaltung ein/ausblendenDesignverwaltung oder Designmanager? - - - Ui_AlertDialog - - - Alert Text: - Hinweistext: - - - Ui_EditSongDialog - - - Edit - Bearbeiten - - - AlertsTab - - - Font Color: - Schriftfarbe: - - - Ui_AmendThemeDialog - - - Theme Maintenance - Designverwaltung - - - CustomTab - - - Custom Display - Sonderfolie Anzeige - - - Ui_OpenSongExportDialog - - - Title - Titel - - - Ui_AmendThemeDialog - - - <Color1> - <Farbe 1> - - - Ui_EditSongDialog - - - Authors - Autoren - - - ThemeManager - - - Export Theme - Design exportieren - - - ServiceManager - - - (N) - (N) - - - Ui_SongBookDialog - - - Name: - Name: - - - Ui_AuthorsDialog - - - Author Maintenance - Autorenverwaltung - - - Ui_AmendThemeDialog - - - Font Footer - Schrift Fußzeile - - - BiblesTab - - - Verse Display - Bibelstellenanzeige - - - Ui_MainWindow - - - &Options - &Einstellungen - - - BibleMediaItem - - - Results: - Ergebnisse: - - - Ui_OpenLPExportDialog - - - Full Song List - Komplette Liedliste - - - SlideController - - - Move to last - Zur letzten Folie - - - Ui_OpenLPExportDialog - - - Progress: - Fortschritt: - - - Ui_SongMaintenanceDialog - - - Add - Hinzufügen - - - SongMaintenanceForm - - - Are you sure you want to delete the selected author? - Sind Sie sicher, dass Sie den ausgewählten Autor löschen wollen? - - - SongUsagePlugin - - - Song Usage Status - Liedstatistik - - - BibleMediaItem - - - Verse Search - Stelle suchen - - - Ui_SongBookDialog - - - Edit Book - Buch bearbeiten - - - EditSongForm - - - Save && Preview - Speichern && Vorschau - - - Ui_SongBookDialog - - - Publisher: - Verlag: - - - Ui_AmendThemeDialog - - - Font Weight: - Schriftschnitt:(aus OO3) - - - Ui_BibleImportWizard - - - Bible Filename: - Bibel Dateiname: - - - Ui_AmendThemeDialog - - - Transparent - Durchsichtig - - - SongMediaItem - - - Search - Suche - - - Ui_BibleImportWizard - - - Format: - Format: - - - Ui_AmendThemeDialog - - - Background - Hintergrund: - - - Ui_BibleImportWizard - - - Importing - Importiere - - - Ui_customEditDialog - - - Edit all slides - Alle bearbeiten - - - SongsTab - - - Enable search as you type: - Während dem Tippen suchen: - - - Ui_MainWindow - - - Ctrl+S - Strg+S - - - SongMediaItem - - - Authors - Autoren - - - Ui_PluginViewDialog - - - Active - Aktiv - - - SongMaintenanceForm - - - Couldn't save your topic! - Thema konnte nicht gespeichert werden! - - - Ui_MainWindow - - - Ctrl+O - Strg+O - - - Ctrl+N - Strg+N - - - SongMaintenanceForm - - - Couldn't add your author! - Der Autor wurde nicht gefunden! - - - Ui_AlertEditDialog - - - Edit - Bearbeiten - - - Ui_EditSongDialog - - - Song Editor - Lied bearbeiten - - - AlertsTab - - - Font - Schrift - - - SlideController - - - Edit and re-preview Song - Lied bearbeiten und wieder anzeigen - - - Delay between slides in seconds - Pause zwischen den Folien in Sekunden - - - MediaManagerItem - - - &Edit - &Bearbeiten - - - Ui_AmendThemeDialog - - - Vertical - Vertikal - - - Width: - Breite: - - - ThemeManager - - - You are unable to delete the default theme! - Sie können das Standarddesign nicht löschen! - - - ThemesTab - - - Use the global theme, overriding any themes associated with either the service or the songs. - Das Standarddesign immer verwenden, unabhängig vom Lieddesign oder Ablaufdesign - - - BibleMediaItem - - - Version: - Version: - - - Ui_AboutDialog - - - OpenLP <version> build <revision> - Open Source Lyrics Projection + + <strong>Custom Plugin</strong><br />The custom plugin provides the ability to set up custom text slides that can be displayed on the screen the same way songs are. This plugin provides greater freedom over the songs plugin. + + + + + CustomPlugin.CustomTab + + + Custom + Sonderfolien + + + + Custom Display + Sonderfolie Anzeige + + + + Display footer + + + + + 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: + + + + + Save && Preview + Speichern && Vorschau + + + + Error + Fehler + + + + Move slide up once position. + + + + + 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. + + + + + You need to type in a title. + + + + + You need to add at least one slide + + + + + You have one or more unsaved slides, please either save your slide(s) or clear your changes. + + + + + CustomPlugin.MediaItem + + + Custom + Sonderfolien + + + + You haven't selected an item to edit. + + + + + You haven't selected an item to delete. + + + + + ImagePlugin + + + <strong>Image Plugin</strong><br />The image plugin provides displaying of images.<br />One of the distinguishing features of this plugin is the ability to group a number of images together in the service manager, making the displaying of multiple images easier. This plugin can also make use of OpenLP's "timed looping" feature to create a slide show that runs automatically. In addition to this, images from the plugin can be used to override the current theme's background, which renders text-based items like songs with the selected image as a background instead of the background provided by the theme. + + + + + ImagePlugin.ImageTab + + + Images + Bilder + + + + Image Settings + Bildeinstellungen + + + + sec + sek + + + + Slide loop delay: + + + + + 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. + + + + + MediaPlugin + + + <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. + + + + + MediaPlugin.MediaItem + + + Media + Medien + + + + Select Media + Medien auswählen + + + + Replace Live Background + + + + + Replace Background + + + + + You must select a media file to delete. + + + + + OpenLP + + + Image Files + + + + + OpenLP.AboutForm + + + About OpenLP + Über OpenLP + + + + OpenLP <version><revision> - Open Source Lyrics Projection OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if OpenOffice.org, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. Find out more about OpenLP: http://openlp.org/ OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider contributing by using the button below. - OpenLP <version> build <revision> - Open Source Liedprojekt + + + + + About + Über + + + + Project Lead + Raoul "superfly" Snyman -OpenLP ist eine kostenlose Präsentationssoftware für Kirchen, mit der Lieder, Bibeltexte, Videos, bilder und sogar Präsentationen (falls OpenOffice.org, PowerPoint oder PowerPoint Viewer installiert ist) für die man nur einen Computer und einen Beamer braucht. +Developers + Tim "TRB143" Bentley + Jonathan "gushie" Corwin + Michael "cocooncrash" Gorven + Scott "sguerrieri" Guerrieri + Raoul "superfly" Snyman + Martin "mijiti" Thompson + Jon "Meths" Tibble -Mehr Informationen über OpenLP: http://de.openlp.org/ +Contributors + Meinert "m2j" Jordan + Christian "crichter" Richter + Maikel Stuivenberg + Carsten "catini" Tingaard -OpenLP wird von Freiwilligen entwickelt und verwaltet. Wenn Sie christliche Software fördern wollen, freuen wir uns über Ihre Spende. - - - SongsPlugin - - - OpenLP 2.0 - OpenLP 2.0 - - - ServiceManager - - - New Service - Neuer Ablauf - - - Ui_TopicsDialog - - - Topic name: - Thema: - - - ThemeManager - - - File is not a valid theme! - Diese Datei ist kein gültiges Design! - - - Ui_BibleImportWizard - - - License Details - Lizenz-Details - - - Ui_AboutDialog - - - License - Lizenz - - - Ui_EditSongDialog - - - R&emove - &Entfernen - - - Ui_AmendThemeDialog - - - Middle - Mittig - - - Ui_customEditDialog - - - Save - Speichern - - - AlertEditForm - - - Item selected to Edit - Element zum bearbeiten ausgewählt - - - BibleMediaItem - - - From: - Von: - - - Ui_AmendThemeDialog - - - Shadow Color: - Schatten Farbe - - - ServiceManager - - - &Notes - &Notizen - - - Ui_MainWindow - - - E&xit - &Beenden - - - Ui_OpenLPImportDialog - - - Close - Schließen - - - MainWindow - - - OpenLP Version Updated - OpenLP-Version aktualisiert - - - Ui_customEditDialog - - - Replace edited slide - Geänderte Folie ersetzen - - - Add new slide at bottom - Neue Folie am Ende - - - EditCustomForm - - - You need to enter a title - Sie müssen eine Titel eingeben - - - ThemeManager - - - Theme Exists - Design existiertich weiß nicht, wo dieser Dialog auftaucht. Aber vielleicht kann hier auch "design existiert bereits" genommen werden?! - - - Ui_MainWindow - - - &Help - &Hilfe - - - Ui_EditVerseDialog - - - Bridge - Bridge - - - Ui_OpenSongExportDialog - - - OpenSong Song Exporter - OpenSong Lied Export - - - Ui_AmendThemeDialog - - - Vertical Align: - Vertikale Ausrichtung: - - - TestMediaManager - - - Item2 - Element2 - - - Item1 - Element1 - - - Ui_AmendThemeDialog - - - Top - Oben - - - BiblesTab - - - Display Dual Bible Verses - Anzeige von dualen Bibelversen - - - Ui_MainWindow - - - Toggle Service Manager - Ablaufmanager ein/ausblendenAblaufverwaltung oder Ablaufmanager? - - - MediaManagerItem - - - &Add to Service - &Zum Ablauf hinzufügen - - - AmendThemeForm - - - First Color: - Erste Farbe: - - - ThemesTab - - - Song level - Lied-EbeneJetzt einheitlich (Gotttesdienst-Ebene, Lied-Ebene, Global-Ebene) - - - alertsPlugin - - - Show an alert message - Zeige einen Hinweis - - - Ui_MainWindow - - - Ctrl+F1 - Strg+F1 - - - Save the current service under a new name - Aktuellen Ablauf unter neuem Namen speichern - - - Ui_OpenLPExportDialog - - - Remove Selected - Ausgewählten Entfernen - - - ThemeManager - - - Delete theme - Design löschen - - - ImageTab - - - Image Settings - Bildeinstellungen - - - Ui_OpenSongImportDialog - - - OpenSong Song Importer - OpenSong Lied Importer - - - SongUsagePlugin - - - &Extract recorded data - &Entpacke aufgezeichnete Daten - - - AlertsTab - - - Font Name: - Schriftart: - - - Ui_MainWindow - - - &Web Site - &Webseite - - - MediaManagerItem - - - Send the selected item live - Ausgewähltes Element Live anzeigen - - - Ui_MainWindow - - - M&ode - M&odus - - - Translate the interface to your language - Übersetzen Sie die Oberfläche in Ihre Sprache - - - Service Manager - Ablaufverwaltung - - - CustomMediaItem - - - Custom - Sonderfolien - - - ImageMediaItem - - - No items selected... - Kein Element ausgewählt... - - - Ui_BibleImportWizard - - - OSIS - OSIS - - - SongsPlugin - - - openlp.org 1.0 - openlp.org 1.0 - - - Ui_MainWindow - - - &Theme - &Design - - - Ui_EditVerseDialog - - - Edit Verse - Bearbeite Vers - - - Ui_MainWindow - - - &Language - &Sprache - - - ServiceManager - - - Move to end - Zum Ende schieben - - - Your service is unsaved, do you want to save those changes before creating a new one ? - Ihr Abllauf ist nicht gespeichert, wollen Sie die Änderungen speichern, bevor Sie einen neuen erstellen? - - - Ui_OpenSongExportDialog - - - Remove Selected - Ausgewählte entfernen - - - SongMediaItem - - - Search: - Suche: - - - MainWindow - - - Save Changes to Service? - Änderungen am Ablauf speichern? - - - Your service has changed, do you want to save those changes? - Ihr Ablauf würde verändert, möchten Sie die Änderungen speichern? - - - EditSongForm - - - Invalid verse entry - values must be Numeric, I,B,C,T,P,E,O - Ingültige Versangabe: Verse müssen numerisch sein, I,B,C,T,P,E,O - - - Ui_EditSongDialog - - - &Add to Song - Zum Lied &hinzufügen - - - Ui_MainWindow - - - &About - &Über - - - BiblesTab - - - Only show new chapter numbers - Zeige nur neue Kapitelnummern - - - ImportWizardForm - - - You need to specify a version name for your Bible! - Sie müssen den Namen der Bibelübersetzung angeben! - - - Ui_AlertEditDialog - - - Delete - Löschen - - - EditCustomForm - - - Error - Fehler - - - ThemesTab - - - 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. - Nutze das dem Ablauf zugewiesene Design, das im Lied eingestellte Design wird ignoriert. Wenn dem Ablauf kein Design zugeordnet ist, dann wird das Standarddesign verwendet. - - - SongMaintenanceForm - - - This topic can't be deleted, it is currently assigned to at least one song! - Dieses Thema kann nicht gelöscht werden, da es momentan mindestens einem Lied zugeordnet ist! - - - AlertEditForm - - - Item selected to Add - Ausgewähltes Element hinzufügen - - - Ui_AmendThemeDialog - - - Right - Rechts - - - ThemeManager - - - Save Theme - (%s) - Speichere Design - (%s) - - - ImageMediaItem - - - Allow background of live slide to be overridden - Erlaubt den Hintergrund einer Live-Folie zu überschreiben - - - MediaManagerItem - - - Add the selected item(s) to the service - Füge Element(e) zum Ablauf hinzu - - - AuthorsForm - - - Error - Fehler - - - BibleMediaItem - - - Book: - Buch: - - - Ui_AmendThemeDialog - - - Font Color: - Schriftfarbe: - - - Ui_OpenLPImportDialog - - - Select openlp.org songfile to import: - Openlp.org Lieddatei für den Import auswählen: - - - Ui_SettingsDialog - - - Settings - Einstellungen - - - BiblesTab - - - Layout Style: - Versdarstellung: - - - MediaManagerItem - - - Edit the selected - Auswahl bearbeiten - - - SlideController - - - Move to next - Verschiebe zum Nächsten - - - Ui_MainWindow - - - &Plugin List - &Plugin-Liste - - - BiblePlugin - - - &Bible - &Bibel - - - Ui_BibleImportWizard - - - Web Download - Internetdownload - - - Ui_AmendThemeDialog - - - Horizontal - Horizontal - - - ImportWizardForm - - - Open OSIS file - Öffne OSIS-Datei - - - Ui_AmendThemeDialog - - - Circular - Radial - - - pt - pt - - - Ui_MainWindow - - - &Add Tool... - &Werkzeug hinzufügen... - - - SongMaintenanceForm - - - Delete Topic - Lösche Thema - - - ServiceManager - - - Move up - Nach oben verschieben - - - Ui_OpenLPImportDialog - - - Lyrics - Liedtext - - - BiblesTab - - - No brackets - Keine Klammern - - - Ui_AlertEditDialog - - - Maintain Alerts - Hinweise verwaltenMit "Hinweis" übersetzt: a) es geht nur eine Übersetzung (Hinweis oder Alarm). b) in 1.2 heißt es auch "Hinweis" - - - Ui_AmendThemeDialog - - - px - px - - - ServiceManager - - - Select a theme for the service - Design für den Ablauf auswählen - - - ThemesTab - - - Themes - Designs - - - ServiceManager - - - Move to bottom - Nach ganz unten verschieben - - - Ui_PluginViewDialog - - - Status: - Status: - - - Ui_EditSongDialog - - - CCLI Number: - CCLI-Nummer: - - - ImportWizardForm - - - This Bible already exists! Please import a different Bible or first delete the existing one. - Diese Bibel ist bereits vorhanden! Bitte importieren Sie eine andere Bibel oder löschen Sie die bereits vorhandene. - - - Ui_MainWindow - - - &Translate - &Übersetzte - - - AlertEditForm - - - Please Save or Clear seletced item - Bitte Ausgewähltes Element speichern oder aufräumen - - - BiblesTab - - - Bibles - Bibeln - - - Ui_SongMaintenanceDialog - - - Authors - Autoren - - - SongUsageDetailForm - - - Output File Location - Ablageort für Aufnahme wählen - - - BiblesTab - - - { and } - { und } - - - GeneralTab - - - Prompt to save Service before starting New - Auffordern den Ablauf zu speichern, bevor ein neuer gestartet wird"Auffordern den Ablauf zu speichern, bevor ein neuer gestartet wird" ist zu lang. Mein Vorschlag gefällt mir leider auch nicht hundertprozentig. Andere Ideen? - - - ImportWizardForm - - - Starting import... - Starte import ... - - - BiblesTab - - - Note: -Changes don't affect verses already in the service - Notiz: -Änderungen werden nicht für bereits im Ablauf vorhandene Verse berücksichtigt. - - - Ui_EditVerseDialog - - - Intro - Intro - - - ServiceManager - - - Move up order - Verschiebe Reihenfolge nach oben - - - PresentationTab - - - available - verfügbar - - - ThemeManager - - - default - Standard - - - SongMaintenanceForm - - - Delete Author - Lösche Autor - - - Ui_AmendThemeDialog - - - Display Location - Anzeige Ort - - - Ui_PluginViewDialog - - - Version: - Version: - - - Ui_AlertEditDialog - - - Add - Füge hinzu ... - - - GeneralTab - - - General - Allgemein - - - Ui_AmendThemeDialog - - - Y Position: - Y-Position: - - - ServiceManager - - - Move down order - Verschiebe Reihenfolge nach unten - - - BiblesTab - - - verse per slide - Verszahl pro Folie - - - Ui_AmendThemeDialog - - - Show Shadow: - Schatten anzeigen - - - AlertsTab - - - Preview - Vorschau - - - alertsPlugin - - - <b>Alerts Plugin</b><br>This plugin controls the displaying of alerts on the presentations screen - <b>Hinweis-Plugin</b><br>Dieses Plugin ermöglicht Hinweise auf dem Projektionsbildschirm anzuzeigen - - - GeneralTab - - - Show the splash screen - Zeige den Startbildschirm - - - Ui_MainWindow - - - New Service - Neuer Ablauf - - - SlideController - - - Move to first - Ganz nach vorn verschieben - - - Ui_MainWindow - - - &Online Help - &Online Hilfe - - - SlideController - - - Blank Screen - Live Bild abschalten - - - Ui_MainWindow - - - Save Service - Ablauf speichern - - - Save &As... - Speichern &als... - - - Toggle the visibility of the Media Manager - Medien Verwaltung ein/ausschalten - - - BibleMediaItem - - - No Book Found - Kein Buch gefunden - - - Ui_EditSongDialog - - - Add - Hinzufügen - - - alertsPlugin - - - &Alert - &Hinweis - - - BibleMediaItem - - - Advanced - Erweitert - - - ImageMediaItem - - - Image(s) - Bild(er) - - - Ui_MainWindow - - - F11 - F11 - - - F10 - F10 - - - F12 - F12 - - - Ui_BibleImportWizard - - - Select the import format, and where to import from. - Wähle das Import Format und woher der Import erfolgen soll. - - - Ui_MainWindow - - - Alt+F7 - Alt+F7 - - - Add an application to the list of tools - Füge eine Anwendung zur Liste der Werkzeuge hinzu - - - MediaPlugin - - - <b>Media Plugin</b><br>This plugin allows the playing of audio and video media - <b>Medien Plugin</b><br>Dieses Plugin ermöglicht das Abspielen von Audio und Video Material - - - BiblesTab - - - Bible Theme: - Bibeldesign: - - - SongsPlugin - - - Export songs in openlp.org 1.0 format - Exportiere Lieder in das openlp.org 1.0 Format - - - Ui_MainWindow - - - Theme Manager - Designmanager - - - AlertsTab - - - Alerts - Hinweise - - - Ui_customEditDialog - - - Move slide down 1 - Folie um 1 nach unten verschieben - - - Ui_AmendThemeDialog - - - Font: - Schriftart: - - - ServiceManager - - - Load an existing service - Öffne Ablauf - - - Ui_MainWindow - - - Toggle the visibility of the Theme Manager - Design Manager ein/ausschalten - - - PresentationTab - - - Presentations - Präsentationen - - - SplashScreen - - - Starting - Starte ... - - - ImageTab - - - Slide Loop Delay: - Zeitverzögerung bis zur nächsten Folie: - - - SlideController - - - Verse - Vers - - - AlertsTab - - - Alert timeout: - Anzeigedauer:Frei übersetzt - - - Ui_MainWindow - - - &Preview Pane - &VorschaubereichHabe es mit "&Vorschaubreich" (und nicht Vorschau Fenster) übersetzt (vereinheitlicht) - - - MediaManagerItem - - - Add a new - Neues anfügen - - - ThemeManager - - - Select Theme Import File - Wähle Datei für Design Import - - - New Theme - Neues Design - - - MediaMediaItem - - - Media - Medien - - - Ui_AmendThemeDialog - - - Preview - Vorschau - - - Outline Size: - Randbreite:Habe ich mal von Randgröße zu Randbreite geändert. Ein Rand ist breit, aber nicht groß. - - - Ui_OpenSongExportDialog - - - Progress: - Fortschritt: - - - AmendThemeForm - - - Second Color: - Zweite Farbe: - - - Ui_EditSongDialog - - - Theme, Copyright Info && Comments - Design, Copyrightinformationen && Kommentare - - - Ui_AboutDialog - - - Credits - Credits - - - BibleMediaItem - - - To: - Bis: - - - Ui_EditSongDialog - - - Song Book - Liederbuch - - - alertsPlugin - - - F7 - F7 - - - Ui_OpenLPExportDialog - - - Author - Autor - - - Ui_AmendThemeDialog - - - Wrap Indentation - Einzug nach Zeilenumbruch:this option shifts the text after the 1st line to the right ->what exactly does this option do? - - - ThemeManager - - - Import a theme - Design importieren - - +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) + + + + + + Credits + Credits + + + + Copyright © 2004-2010 Raoul Snyman +Portions copyright © 2004-2010 Tim Bentley, Jonathan Corwin, Michael Gorven, Scott Guerrieri, Christian Richter, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Carsten Tinggaard + +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 + Lizenz + + + + Contribute + Mitwirken + + + + Close + Schließen + + + + build %s + + + + + OpenLP.AdvancedTab + + + Advanced + + + + + UI Settings + + + + + Number of recent files to display: + + + + + Remember active media manager tab on startup + + + + + Double-click to send items straight to live (requires restart) + + + + + 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. + + + + + OpenLP.GeneralTab + + + General + Allgemein + + + + Monitors + Monitore + + + + Select monitor for output display: + Projektionsbildschirm: + + + + Display if a single screen + + + + + Application Startup + Programmstart + + + + Show blank screen warning + Warnung anzeigen, wenn die Projektion deaktiviert wurde + + + + Automatically open the last service + Zuletzt benutzten Ablauf beim Start laden + + + + Show the splash screen + Zeige den Startbildschirm + + + + Application Settings + Anwendungseinstellungen + + + + Prompt to save Service before starting New + Auffordern den Ablauf zu speichern, bevor ein neuer gestartet wird + + + + Preview Next Song from Service Manager + Vorschau des nächsten Lieds + + + + CCLI Details + CCLI-Details + + + + CCLI number: + + + + + SongSelect username: + + + + + SongSelect password: + + + + + Display Position + + + + + X + + + + + Y + + + + + Height + + + + + Width + + + + + Override display position + + + + + Screen + Bildschirm + + + + primary + Hauptbildschirm + + + + OpenLP.LanguageManager + + + Language + + + + + Please restart OpenLP to use your new language setting. + + + + + OpenLP.MainWindow + + + OpenLP 2.0 + OpenLP 2.0 + + + + English + 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 + + + + + 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. + + + + + OpenLP.PluginForm + + + Plugin List + Plugin-Liste + + + + Plugin Details + Plugin-Details + + + + Version: + Version: + + + + TextLabel + Text Beschriftung + + + + About: + Über: + + + + Status: + Status: + + + + Active + Aktiv + + + + Inactive + Inaktiv + + + + %s (Inactive) + + + + + %s (Active) + + + + + %s (Disabled) + + + + + OpenLP.ServiceItemEditForm + + + Reorder Service Item + + + + + Up + + + + + Delete + Löschen + + + + Down + + + + + OpenLP.ServiceManager + + + New Service + Neuer Ablauf + + + + Create a new service + Erstelle neuen Ablauf + + + + Open Service + Öffnen Ablauf + + + + Load an existing service + Öffne Ablauf + + + + Save Service + Ablauf speichern + + + + Save this service + Ablauf speichern + + + + Theme: + Design: + + + + Select a theme for the service + Design für den Ablauf auswählen + + + + Move to &top + + + + + Move item to the top of the service. + + + + + Move &up + + + + + Move item up one position in the service. + + + + + Move &down + + + + + Move item down one position in the service. + + + + + Move to &bottom + + + + + Move item to the end of the service. + + + + + &Delete From Service + + + + + Delete the selected item from the service. + + + + + &Add New Item + + + + + &Add to Selected Item + + + + + &Edit Item + &Bearbeite Element + + + + &Reorder Item + + + + + &Notes + &Notizen + + + + &Preview Verse + Vers in der &Vorschau zeigen + + + + &Live Verse + Vers &Live zeigen + + + + &Change Item Theme + &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 + + + + + OpenLP.ServiceNoteForm + + + Service Item Notes + Elementnotiz + + + + OpenLP.SettingsForm + + + Configure OpenLP + + + + + 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 + + + + Go to Verse + Springe zu + + + + OpenLP.ThemeManager + + + New Theme + Neues Design + + + + Create a new theme. + + + + + Edit Theme + Design bearbeiten + + + + Edit a theme. + + + + + Delete Theme + Design löschen + + + + Delete a theme. + + + + + Import Theme + Design importieren + + + + Import a theme. + + + + + Export Theme + Design exportieren + + + + Export a theme. + + + + + &Edit Theme + + + + + &Delete Theme + + + + + Set As &Global Default + + + + + E&xport Theme + + + + + %s (default) + + + + + You must select a theme to edit. + + + + + You must select a theme to delete. + + + + + Delete Confirmation + + + + + Delete theme? + + + + + Error + Fehler + + + + You are unable to delete the default theme. + + + + + Theme %s is use in %s plugin. + + + + + Theme %s is use by the service manager. + + + + + You have not selected a theme. + + + + + Save Theme - (%s) + Speichere Design - (%s) + + + + Theme Exported + + + + + Your theme has been successfully exported. + + + + + Theme Export Failed + + + + + Your theme could not be exported due to an error. + + + + + Select Theme Import File + Wähle Datei für Design Import + + + + Theme (*.*) + + + + + 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? + + + + + OpenLP.ThemesTab + + + Themes + Designs + + + + Global Theme + + + + + Theme Level + + + + + S&ong Level + + + + + Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. + Das im jeweiligen Lied eingestellte Design verwenden. Wenn für ein Lied kein Design festgelegt ist, wird das Ablaufdesign verwendet. Wenn dort auch kein Design festgelegt wurde, wird das Standarddesign benutzt. + + + + &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. + Nutze das dem Ablauf zugewiesene Design, das im Lied eingestellte Design wird ignoriert. Wenn dem Ablauf kein Design zugeordnet ist, dann wird das Standarddesign verwendet. + + + + &Global Level + + + + + Use the global theme, overriding any themes associated with either the service or the songs. + Das Standarddesign immer verwenden, unabhängig vom Lieddesign oder Ablaufdesign + + + PresentationPlugin - - <b>Presentation Plugin</b> <br> Delivers 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. - <b>Präsentations-Plugin</b> <br>Ermöglicht es, Präsentationen vieler verschiedener Programme in OpenLP einzubinden. Die verfügbaren Programme sind in der Drop-Down-Liste zu finden. - - - ImageMediaItem + + <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. + + + + + PresentationPlugin.MediaItem - - Image - Bild - - - BibleMediaItem + + Presentation + Präsentation + - - Clear - AbbrechenIn V1 mit "Abbrechen" übersetzt - - - Ui_MainWindow + + Select Presentation(s) + Präsentation(en) auswählen + - - Save Service As - Speicher Gottesdienst unter - - - Ui_AlertDialog + + Automatic + + - - Cancel - Abbrechen - - - Ui_OpenLPImportDialog + + Present using: + Anzeigen mit: + - - Import - Importieren - - - Ui_EditVerseDialog + + A presentation with that filename already exists. + Eine Präsentation mit diesem Dateinamen existiert bereits. + - - Chorus - Refrain - - - Ui_EditSongDialog + + You must select an item to delete. + + - - Edit All - Alles Bearbeiten - - - AuthorsForm + + File Exists + + - - You need to type in the last name of the author. - Sie müssen den Nachnamen des Autors eingeben. - - - SongsTab + + Unsupported File + + - - Songs Mode - Liedermodus - - - Ui_AmendThemeDialog + + This type of presentation is not supported + + + + + PresentationPlugin.PresentationTab - - Left - Links - - - RemotesPlugin + + Presentations + Präsentationen + - - <b>Remote Plugin</b><br>This plugin provides the ability to send messages to a running version of openlp on a different computer.<br>The Primary use for this would be to send alerts from a creche - <b>Fernsteuerungs-Plugin</b><br>Dieses Plugin ermöglicht es Nachrichten zu einer laufenden OpenLP Anwendung auf einem anderen Computer zu senden.<br>Eine Anwendung kann kann z. B. das Senden von Hinweisen aus der Sonntagsschule sein. - - - ImageTab + + Available Controllers + Verfügbare Präsentationsprogramme: + - - Images - Bilder - - - BibleMediaItem + + Advanced + + - - Verse: - Vers: - - - Ui_OpenLPExportDialog + + Allow presentation application to be overriden + + + + + RemotePlugin - - openlp.org Song Exporter - openlp.org-Song-Exporter + + <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. + + + + + RemotePlugin.RemoteTab - - Song Export List - Lied Export Liste - - - ThemeManager + + Remotes + Fernprojektion + - - Export theme - Design exportieren - - - Ui_SongMaintenanceDialog + + Serve on IP address: + + - - Delete - Löschen - - - Ui_AmendThemeDialog + + Port number: + + - - Theme Name: - Designname: - - - Ui_AboutDialog - - - About OpenLP - Über OpenLP - - - Ui_MainWindow - - - Toggle the visibility of the Service Manager - Ablaufverwaltung ein/ausblenden - - - PresentationMediaItem - - - A presentation with that filename already exists. - Eine Präsentation mit diesem Dateinamen existiert bereits.entweder "schon" oder "bereits" - - - AlertsTab - - - openlp.org - openlp.org - - - ImportWizardForm - - - Invalid Books File - Ungültige Bücherdatei - - - Ui_OpenLPImportDialog - - - Song Title - LiedtitelWird zusammen geschrieben - - - MediaManagerItem - - - &Show Live - &Zeige Live - - - AlertsTab - - - Keep History: - Verlauf erhalten: - - - Ui_AmendThemeDialog - - - Image: - Bild: - - - Ui_customEditDialog - - - Set Theme for Slides - Setze Design für Folien - - - Ui_MainWindow - - - More information about OpenLP - Mehr Informationen über OpenLP - - - AlertsTab - - - Background Color: - Hintergrundfarbe: - - - SongMaintenanceForm - - - No topic selected! - Kein Thema ausgewählt! - - - Ui_MainWindow - - - &Media Manager - &Medienmanager - - - &Tools - &Extras - - - AmendThemeForm - - - Background Color: - Hintergrundfarbe: - - - Ui_EditSongDialog - - - A&dd to Song - Zum Lied &hinzufügen - - - Title: - Titel: - - - GeneralTab - - - Screen - Bildschirm - - - AlertsTab - - - s - s - - - ImagePlugin - - - <b>Image Plugin</b><br>Allows images of all types to be displayed. If a number of images are selected together and presented on the live controller it is possible to turn them into a timed loop.<br<br>From the plugin if the <i>Override background</i> is chosen and an image is selected any somgs which are rendered will use the selected image from the background instead of the one provied by the theme.<br> - <b>Bilder Plugin</b><br>Dieses Plugin ermöglicht die Anzeige von Bildern. Wenn mehrere Bilder gemeinsam ausgewählt und präsentiert werden, ist es möglich sie als Dia Show zu zeigen.<br><br>Wird die Option <i>Hintergrund ersetzen</i> ausgewählt, wird für alle Lieder das ausgewählte Bild als Hintergrund gewählt.<br> - - - Ui_AlertEditDialog - - - Clear - AbbrechenIn V1 mit "Abbrechen" übersetzt - - - Ui_BibleImportWizard - - - Please wait while your Bible is imported. - Bitte warten Sie während Ihre Bibel importiert wird. - - - MediaManagerItem - - - No items selected... - Kein Element ausgewählt... - - - Ui_OpenLPImportDialog - - - Select All - Alles auswählen - - - Ui_AmendThemeDialog - - - Font Main - Hauptschriftart - - - ImageMediaItem - - - Images (*.jpg *jpeg *.gif *.png *.bmp) - Bilder (*.jpg *.jpeg *.gif *.png *.bmp) - - - Ui_OpenLPImportDialog - - - Title - Titel - - - Ui_OpenSongExportDialog - - - Select OpenSong song folder: - Wählen Sie einen OpenSong-Liederordner: - - - Ui_MainWindow - - - Toggle Media Manager - Medienmanager ein/ausblenden - - + + Server Settings + + + + SongUsagePlugin - - &Song Usage - Lieder Statistik - - - GeneralTab - - - Monitors - Monitore - - - EditCustomForm - - - You need to enter a slide - Sie müssen eine Folie eingeben - - - Ui_SongMaintenanceDialog - - - Topics - Themen - - - ImportWizardForm - - - You need to specify a file to import your Bible from! - Es muss eine Datei ausgewählt werden, von der die Bibel importiert werden soll! - - - Ui_EditVerseDialog - - - Verse Type - Vers Art - - - OpenSongBible - - - Importing - Importiere... - - - Ui_EditSongDialog - - - Comments - Kommentare - - - AlertsTab - - - Bottom - Unten - - - Ui_MainWindow - - - Create a new Service - Erstelle neuen Ablauf - - - AlertsTab - - - Top - Oben - - - ServiceManager - - - &Preview Verse - Vers in der &Vorschau zeigen - - - Ui_PluginViewDialog - - - TextLabel - Text Beschriftung - - - AlertsTab - - - Font Size: - Schriftgröße: - - - Ui_PluginViewDialog - - - About: - Über: - - - Inactive - Inaktiv - - - Ui_OpenSongExportDialog - - - Ready to export - Bereit zum Exportieren - - - Export - Exportieren - - - Ui_PluginViewDialog - - - Plugin List - Plugin-Liste - - - Ui_AmendThemeDialog - - - Transition Active: - Übergang aktivieren:bewusst so übersetzt (also nicht "Übergang aktiv") - - - Ui_BibleImportWizard - - - Proxy Server (Optional) - Proxy-Server (optional) - - - Ui_EditSongDialog - - - &Manage Authors, Topics, Books - Verwalte Autoren, Themen, Bücher - - - Ui_SongUsageDetailDialog - - - Audit Detail Extraction - - Muss nicht übersetzt werden! - - - Ui_OpenLPExportDialog - - - Ready to export - Bereit zum Exportieren - - - EditCustomForm - - - Save && Preview - Speichern && Vorschau - - - Ui_OpenLPExportDialog - - - Select All - Alle auswählen - - - Ui_SongUsageDetailDialog - - - to - zu - - - Ui_AmendThemeDialog - - - Size: - Größe: - - - MainWindow - - - OpenLP Main Display Blanked - Hauptbildschirm abgedunkelt - - - Ui_OpenLPImportDialog - - - Remove Selected - Ausgewählte Einträgel entfernen - - - Ui_EditSongDialog - - - Delete - Löschen - - - ImportWizardForm - - - You need to specify an OpenSong Bible file to import! - Es muss eine OpenSong Bibel-Datei ausgewählt werden, die importiert werden soll! - - - PresentationMediaItem - - - File exists - Datei existiert bereits - - - Ui_OpenLPExportDialog - - - Title - Titel - - - Ui_OpenSongImportDialog - - - Ready to import - Bereit zum Importieren - - - SlideController - - - Stop continuous loop - Endlosschleife beendenAlso mir gefällt ja nur "Schleife beenden" besser (vgl. Start continuous loop) - - - s - s - - - SongMediaItem - - - Song Maintenance - Liedverwaltung - - - Ui_customEditDialog - - - Edit - Bearbeiten - - - Ui_AmendThemeDialog - - - Gradient : - Farbverlauf : - - - ImportWizardForm - - - Invalid Verse File - Ungültige Liedtext Datei - - - EditSongForm - - - Error - Fehler - - - Ui_customEditDialog - - - Add New - Neues anfügen - - - Ui_AuthorsDialog - - - Display name: - Anzeige Name: - - - SongMaintenanceForm - - - Are you sure you want to delete the selected topic? - Soll der gewählte Eintrag wirklich gelöscht werden? - - - Ui_AmendThemeDialog - - - Bold/Italics - Fett/Kursiv - - - Ui_SongMaintenanceDialog - - - Song Maintenance - Liedverwaltung - - - Ui_BibleImportWizard - - - Welcome to the Bible Import Wizard - Willkommen beim Bibel Import Assistenten - - - SongsTab - - - Songs - Lieder - - - Ui_BibleImportWizard - - - Password: - Passwort: - - - Ui_MainWindow - - - &Theme Manager - &Designmanager - - - MediaManagerItem - - - Preview the selected item - Zeige das auswählte Element in der Vorschau an - - - Ui_BibleImportWizard - - - Version Name: - Bibelübersetzung:Meint wohl die "Bibelübersetzung" - - - Ui_AboutDialog - - - About - Über - - - MediaMediaItem - - - Select Media - Medien auswählen - - - Ui_AmendThemeDialog - - - Horizontal Align: - Horizontale Ausrichtung: - - - ServiceManager - - - &Edit Item - &Bearbeite Element - - - Ui_AmendThemeDialog - - - Background Type: - Hintergrundtyp - - - Ui_MainWindow - - - &Save - &Speichern - - - OpenLP 2.0 - OpenLP 2.0 - - - ThemeManager - - - A theme with this name already exists, would you like to overwrite it? - Ein Design mit diesem Namen existiert bereits, soll es überschrieben werden? - - - PresentationMediaItem - - - Select Presentation(s) - Präsentation(en) auswählen - - - ThemeManager - - - Export a theme - Design exportieren - - - AmendThemeForm - - - Open file - Datei öffnen - - - Ui_TopicsDialog - - - Topic Maintenance - Themenverwaltung - - - Ui_customEditDialog - - - Clear edit area - Aufräumen des Bearbeiten Bereiches - - - Ui_AmendThemeDialog - - - Show Outline: - Rand anzeigen: - - - SongBookForm - - - You need to type in a book name! - Sie müssen ein Buchnamen eingeben! - - - ImportWizardForm - - - Open OpenSong Bible - Öffne OpenSong-Bibel - - - Ui_MainWindow - - - Look && &Feel - Aussehen - - - Ui_BibleImportWizard - - - Ready. - Fertig. - - - ThemeManager - - - You have not selected a theme! - Sie haben kein Design ausgewählt! - - - Ui_SongMaintenanceDialog - - - Books/Hymnals - Bücher/Lieder - - - Ui_AboutDialog - - - Contribute - Mitwirken - - - Ui_AmendThemeDialog - - - Gradient - Farbverlauf - - - Ui_BibleImportWizard - - - Books Location: - Bücher Ablage: - - - Ui_OpenSongExportDialog - - - Full Song List - Lieder Gesamtliste - - - GeneralTab - - - SongSelect Password: - SongSelect-Passwort: - - + + &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. + + + + + SongUsagePlugin.SongUsageDeleteForm + + + Delete Selected Song Usage Events? + + + + + Are you sure you want to delete selected Song Usage data? + + + + + Delete Song Usage Data + + + + + SongUsagePlugin.SongUsageDetailForm + + + Output File Location + Ablageort für Aufnahme wählen + + + + Song Usage Extraction + + + + + Select Date Range + + + + + to + zu + + + + Report Location + Speicherort für die Statistiken + + + + SongsPlugin + + + &Song + &Lied + + + + Import songs using the import wizard. + + + + + Songs of Fellowship (temp menu item) + + + + + Import songs from the VOLS1_2.RTF, sof3words.rtf and sof4words.rtf supplied with the music books + + + + + Generic Document/Presentation Import (temp menu item) + + + + + Import songs from Word/Writer/Powerpoint/Impress + + + + + Open Songs of Fellowship file + + + + + Import Error + + + + + Error importing Songs of Fellowship file. +OpenOffice.org must be installed and you must be using an unedited copy of the RTF included with the Songs of Fellowship Music Editions + + + + + Open documents or presentations + + + + + OpenSong (temp menu item) + + + + + Import songs from OpenSong files(either raw text or ZIPfiles) + + + + + OpenLP v2 Songs (temporary) + + + + + Import an OpenLP v2 song database + + + + + Open OpenSong file + + + + + Error importing OpenSong file + + + + + Select OpenLP database(s) to import... + + + + + Database(s) imported + + + + + Your OpenLP v2 song databases have been successfully imported + + + + + Error importing OpenLP v2 database(s) + + + + + <strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs. + + + + + SongsPlugin.AuthorsForm + + + Author Maintenance + Autorenverwaltung + + + + Display name: + Anzeige Name: + + + + First name: + Vorname: + + + + Last name: + Nachname: + + + + Error + Fehler + + + + You need to type in the first name of the author. + Sie müssen den Vornamen des Autors angeben. + + + + You need to type in the last name of the author. + Sie müssen den Nachnamen des Autors eingeben. + + + + 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 + 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? + + + + + &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: + + + + + SongsPlugin.EditVerseForm + + + Edit Verse + Bearbeite Vers + + + + &Verse type: + + + + + &Insert + + + + + SongsPlugin.ImportWizardForm + + + No OpenLyrics Files Selected + + + + + You need to add at least one OpenLyrics song file to import from. + + + + + No OpenSong Files Selected + + + + + You need to add at least one OpenSong song file to import from. + + + + + No CCLI Files Selected + + + + + You need to add at least one CCLI file to import from. + + + + + No CSV File Selected + + + + + You need to specify a CSV 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 + + + + CCLI + + + + + CSV + CSV + + + + Add Files... + + + + + Remove File(s) + + + + + Filename: + + + + + Browse... + + + + + Importing + + + + + Please wait while your songs are imported. + + + + + Ready. + Fertig. + + + + %p% + + + + + 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)? + + + + + SongsPlugin.SongBookForm + + + &Name: + + + + + &Publisher: + + + + + Error + Fehler + + + + You need to type in a name for the book. + + + + + Song Book Maintenance + + + + + SongsPlugin.SongImport + + + copyright + + + + + © + + + + + SongsPlugin.SongMaintenanceForm + + + Song Maintenance + Liedverwaltung + + + + Authors + Autoren + + + + Topics + Themen + + + + &Add + + + + + &Edit + &Bearbeiten + + + + &Delete + + + + + 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! + + + + Song Books + + + + + Could not add your author. + + + + + This author already exists. + + + + + Could not add your topic. + + + + + This topic already exists. + + + + + Could not add your book. + + + + + This book already exists. + + + + + Could not save your changes. + + + + + Could not save your modified author, because he already exists. + + + + + Could not save your modified topic, because it already exists. + + + + + This author cannot be deleted, they are currently assigned to at least one song. + + + + + This topic cannot be deleted, it is currently assigned to at least one song. + + + + + This book cannot be deleted, it is currently assigned to at least one song. + + + + + SongsPlugin.SongsTab + + + Songs + Lieder + + + + Songs Mode + Liedermodus + + + + Enable search as you type + + + + + Display verses on live tool bar + + + + + SongsPlugin.TopicsForm + + + Topic Maintenance + Themenverwaltung + + + + Topic name: + Thema: + + + + Error + Fehler + + + + You need to type in a topic name! + Sie müssen dem Thema einen Namen geben! + + + + SongsPlugin.VerseType + + + Verse + Vers + + + + Chorus + Refrain + + + + Bridge + Bridge + + + + Pre-Chorus + Vor-Refrain + + + + Intro + Intro + + + + Ending + Coda (Schluss) + + + + Other + Weitere + + diff --git a/resources/i18n/openlp_en.ts b/resources/i18n/openlp_en.ts index 7d914deb7..665eb1e95 100644 --- a/resources/i18n/openlp_en.ts +++ b/resources/i18n/openlp_en.ts @@ -1,4856 +1,3893 @@ - - - - BibleMediaItem + + + AlertsPlugin - - Quick - + + &Alert + - - - Ui_customEditDialog - - Delete selected slide - + + Show an alert message. + - - - BiblesTab - - ( and ) - + + <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of nursery alerts on the display screen + - - - RemoteTab + + + AlertsPlugin.AlertForm - - Remotes - + + Alert Message + - - - ServiceManager - - Save Service - + + Alert &text: + - - - Ui_AmendThemeDialog - - Shadow Size: - + + &Parameter(s): + - - - Ui_OpenSongExportDialog - - Close - + + &New + - - - ThemeManager - - Import Theme - + + &Save + - - - Ui_AmendThemeDialog - - Slide Transition - + + &Delete + - - - ImportWizardForm - - Bible Exists - + + Displ&ay + - - - ThemesTab - - Theme level - + + Display && Cl&ose + - - - BibleMediaItem - - Bible - + + &Close + - - - ServiceManager - - Save Changes to Service? - + + New Alert + - - - SongUsagePlugin - - &Delete recorded data - + + You haven't specified any text for your alert. Please type in some text before clicking New. + - - - Ui_OpenLPExportDialog + + + AlertsPlugin.AlertsManager - - Song Title - + + Alert message created and displayed. + - - - Ui_customEditDialog + + + AlertsPlugin.AlertsTab - - Edit selected slide - + + Alerts + - - - SongMediaItem - - CCLI Licence: - + + Font + - - - Ui_SongUsageDeleteDialog - - Audit Delete - + + Font name: + - - - BibleMediaItem - - Clear - + + Font color: + - - - Ui_BibleImportWizard - - Bible Import Wizard - + + Background color: + - - - Ui_customEditDialog - - Edit All - + + Font size: + - - - Ui_ServiceNoteEdit - - Service Item Notes - + + pt + - - - SongMaintenanceForm - - Couldn't save your author! - + + Alert timeout: + - - - Ui_customEditDialog - - Clear - + + s + - - - ThemesTab - - Global theme - + + Location: + - - - SongUsagePlugin - - Start/Stop live song usage recording - + + Preview + - - - MainWindow - - The Main Display has been blanked out - + + OpenLP 2.0 + - - - Ui_OpenSongExportDialog - - Lyrics - + + Top + - - - Ui_AlertDialog - - Display - + + Middle + - - - Ui_customEditDialog - - Delete - + + Bottom + - - - SongMaintenanceForm + + + BiblesPlugin - - This author can't be deleted, they are currently assigned to at least one song! - + + &Bible + - - - ThemeManager - - Create a new theme - + + <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display bible verses from different sources during the service. + - - - Ui_MainWindow + + + BiblesPlugin.BibleDB - - Open an existing service - + + Book not found + - - - SlideController - - Move to previous - + + 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. + + + + BiblesPlugin.BiblesTab - - Edit and re-preview Song - + + Bibles + - - - Ui_PluginViewDialog - - Plugin Details - + + Verse Display + - - - AlertsTab - - pt - + + Only show new chapter numbers + - - Edit History: - + + Layout style: + - - - SlideController - - Delay between slides in seconds - + + Display style: + - - - SongMaintenanceForm - - Couldn't add your book! - + + Bible theme: + - - - BiblesTab - - verse per line - + + Verse Per Slide + - - - Ui_customEditDialog - - Theme: - + + Verse Per Line + - - - SongMaintenanceForm - - Error - + + Continuous + - - - Ui_BibleImportWizard - - Bible: - + + No Brackets + - - - ImportWizardForm - - You need to specify a file with books of the Bible to use in the import! - + + ( And ) + - - - ThemeManager - - Delete Theme - + + { And } + - - - SplashScreen - - Splash Screen - + + [ And ] + - - - SongMediaItem - - Song - + + Note: +Changes do not affect verses already in the service. + - - - SongUsageDeleteForm - - Delete Selected Audit Events? - + + Display dual Bible verses + - - - Ui_OpenSongExportDialog + + + BiblesPlugin.ImportWizardForm - - Song Title - + + Bible Import Wizard + - - - BibleMediaItem - - Search - + + Welcome to the Bible Import Wizard + - - - Ui_MainWindow - - List the Plugins - + + This wizard will help you to import Bibles from a variety of formats. Click the next button below to start the process by selecting a format to import from. + - - - SongMaintenanceForm - - No author selected! - + + Select Import Source + - - - SongUsagePlugin - - <b>SongUsage Plugin</b><br>This plugin records the use of songs and when they have been used during a live service - + + Select the import format, and where to import from. + - - - Ui_customEditDialog - - Move slide Up 1 - + + Format: + - - - SongsPlugin - - OpenSong - + + OSIS + - - - AlertsManager - - Alert message created and delayed - + + CSV + - - - Ui_EditSongDialog - - Alternative Title: - + + OpenSong + - - - ServiceManager - - Open Service - + + Web Download + - - - BiblesTab - - Display Style: - + + File location: + - - - Ui_AmendThemeDialog - - Image - + + Books location: + - - - EditSongForm - - You need to enter a song title. - + + Verse location: + - - - ThemeManager - - Error - + + Bible filename: + - - - ImportWizardForm - - Invalid Bible Location - + + Location: + - - - ThemesTab - - Global level - + + Crosswalk + - - - ThemeManager - - Make Global - + + BibleGateway + - - - Ui_MainWindow - - &Service Manager - + + Bible: + - - - Ui_OpenLPImportDialog - - Author - + + Download Options + - - - Ui_AmendThemeDialog - - Height: - + + Server: + - - - Ui_BibleImportWizard - - Books Location: - + + Username: + - - - ThemeManager - - Delete a theme - + + Password: + - - - Ui_BibleImportWizard - - Crosswalk - + + Proxy Server (Optional) + - - - SongBookForm - - Error - + + License Details + - - - Ui_AuthorsDialog - - Last name: - + + Set up the Bible's license details. + - - - Ui_customEditDialog - - Title: - + + Version name: + - - - ImportWizardForm - - You need to set a copyright for your Bible! Bibles in the Public Domain need to be marked as such. - + + Copyright: + - - - SongMediaItem - - Maintain the lists of authors, topics and books - + + Permission: + - - - Ui_AlertEditDialog - - Save - + + Importing + - - - EditCustomForm - - You have unsaved data - + + Please wait while your Bible is imported. + - - - BibleMediaItem - - To: - + + Ready. + - - - Ui_AmendThemeDialog - - Outline - + + Invalid Bible Location + - - - BibleMediaItem - - Text Search - + + You need to specify a file to import your Bible from. + - - - Ui_OpenLPExportDialog - - openlp.org Song Exporter - + + Invalid Books File + - - - SongUsagePlugin - - Delete song usage to specified date - + + You need to specify a file with books of the Bible to use in the import. + - - - Ui_SongUsageDetailDialog - - Report Location - + + Invalid Verse File + - - - Ui_BibleImportWizard - - OpenSong - + + You need to specify a file of Bible verses to import. + - - - Ui_MainWindow - - Open Service - + + Invalid OpenSong Bible + - - - SongMediaItem - - Titles - + + You need to specify an OpenSong Bible file to import. + - - - ImageMediaItem - - Select Image(s) - + + Empty Version Name + - - - BibleMediaItem - - Search Type: - + + You need to specify a version name for your Bible. + - - - Ui_MainWindow - - Media Manager - + + Empty Copyright + - - Alt+F4 - + + You need to set a copyright for your Bible! Bibles in the Public Domain need to be marked as such. + - - - MediaManagerItem - - &Preview - + + Bible Exists + - - - GeneralTab - - CCLI Details - + + This Bible already exists! Please import a different Bible or first delete the existing one. + - - SongSelect Password: - + + Open OSIS File + - - - Ui_MainWindow - - Toggle the visibility of the Preview Panel - + + Open Books CSV File + - - - SongMaintenanceForm - - Are you sure you want to delete the selected book? - + + Open Verses CSV File + - - - Ui_MainWindow - - &User Guide - + + Open OpenSong Bible + - - - SongUsageDeleteForm - - Are you sure you want to delete selected Audit Data? - + + Starting import... + - - - Ui_MainWindow - - Set the interface language to English - + + Finished import. + - - - Ui_AmendThemeDialog - - Main Font - + + Your Bible import failed. + - - - ImportWizardForm + + + BiblesPlugin.MediaItem - - Empty Copyright - + + 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. + + + + + BiblesPlugin.Opensong + + + Importing + + + + CustomPlugin - - <b>Custom Plugin</b><br>This plugin allows slides to be displayed on the screen in the same way songs are. This plugin provides greater freedom over the songs plugin.<br> - + + <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. + - - - AuthorsForm + + + CustomPlugin.CustomTab - - You need to type in the first name of the author. - + + Custom + - - - SongsTab - - Display Verses on Live Tool bar: - + + Custom Display + - - - ServiceManager - - Move to top - + + Display footer + - - - ImageMediaItem + + + CustomPlugin.EditCustomForm - - Override background - + + Edit Custom Slides + - - - Ui_SongMaintenanceDialog - - Edit - + + Move slide up once position. + - - - Ui_OpenSongExportDialog - - Select All - + + Move slide down one position. + - - - ThemesTab - - 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. - + + &Title: + - - - PresentationMediaItem - - Presentation - + + Add New + - - - Ui_AmendThemeDialog - - Solid Color - + + Add a new slide at bottom. + - - - CustomTab - - Custom - + + Edit + - - - Ui_OpenLPImportDialog - - Ready to import - + + Edit the selected slide. + - - - MainWindow - - OpenLP version %s has been updated to version %s - -You can obtain the latest version from http://openlp.org - + + Edit All + - - - Ui_BibleImportWizard - - File Location: - + + Edit all the slides at once. + - - - SlideController - - Go to Verse - + + Save + - - - Ui_MainWindow - - &Import - + + Save the slide currently being edited. + - - Quit OpenLP - + + Delete + - - - Ui_BibleImportWizard - - This wizard will help you to import Bibles from a variety of formats. Click the next button below to start the process by selecting a format to import from. - + + Delete the selected slide. + - - - Ui_OpenLPExportDialog - - Title - + + Clear + - - - ImportWizardForm - - Empty Version Name - + + Clear edit area + - - - Ui_MainWindow - - &Preview Panel - + + Split Slide + - - - SlideController - - Start continuous loop - + + Split a slide into two by inserting a slide splitter. + - - - Ui_AboutDialog - - License - + + The&me: + - - - GeneralTab - - primary - + + &Credits: + - - - Ui_EditSongDialog - - Add a Theme - + + Save && Preview + - - - Ui_MainWindow - - &New - + + Error + - - - Ui_customEditDialog - - Credits: - + + You need to type in a title. + - - - SlideController - - Live - + + You need to add at least one slide + - - - ImportWizardForm - - You need to specify a file of Bible verses to import! - + + You have one or more unsaved slides, please either save your slide(s) or clear your changes. + - - - BiblesTab + + + CustomPlugin.MediaItem - - continuous - + + Custom + - - - Ui_EditVerseDialog - - Number - + + You haven't selected an item to edit. + - - - GeneralTab - - Application Startup - + + You haven't selected an item to delete. + - - - Ui_AmendThemeDialog + + + ImagePlugin - - Use Default Location: - + + <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. + - - - Ui_OpenSongImportDialog + + + ImagePlugin.ImageTab - - Import - + + Images + - - - Ui_MainWindow - - Ctrl+N - + + Image Settings + - - - Ui_EditSongDialog - - Verse Order: - + + Slide loop delay: + - - - Ui_SongUsageDetailDialog - - ASelect Date Range - + + sec + - - - Ui_MainWindow + + + ImagePlugin.MediaItem - - Default Theme: - + + Image + - - Toggle Preview Panel - + + Select Image(s) + - - - SongMediaItem - - Lyrics - + + All Files + - - - Ui_OpenLPImportDialog - - Progress: - + + Replace Live Background + - - - Ui_AmendThemeDialog - - Shadow - + + Replace Background + - - - GeneralTab - - Select monitor for output display: - + + You must select an image to delete. + - - - Ui_AmendThemeDialog - - Italics - + + Image(s) + - - - ServiceManager - - Create a new service - + + You must select an image to replace the background with. + - - - Ui_AmendThemeDialog - - Background: - + + You must select a media file to replace the background with. + - - - Ui_OpenLPImportDialog + + + MediaPlugin - - openlp.org Song Importer - + + <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. + - - - Ui_BibleImportWizard + + + MediaPlugin.MediaItem - - Copyright: - + + Media + - - - ThemesTab - - Service level - + + Select Media + - - - BiblesTab - - [ and ] - + + Replace Live Background + - - - Ui_customEditDialog - - Save - + + Replace Background + - - - MediaManagerItem - - You must select one or more items - + + You must select a media file to delete. + - - - GeneralTab + + + OpenLP - - Application Settings - + + Image Files + - - - ServiceManager + + + OpenLP.AboutForm - - Save this service - + + About OpenLP + - - - ImportWizardForm - - Open Books CSV file - - - - - GeneralTab - - - SongSelect Username: - - - - - Ui_AmendThemeDialog - - - X Position: - - - - - BibleMediaItem - - - No matching book could be found in this Bible. - - - - - Ui_BibleImportWizard - - - Server: - - - - - Download Options - - - - - ImportWizardForm - - - Invalid OpenSong Bible - - - - - GeneralTab - - - CCLI Number: - - - - - Ui_AmendThemeDialog - - - Center - - - - - ServiceManager - - - Theme: - - - - - Ui_MainWindow - - - &Live - - - - - SongMaintenanceForm - - - Delete Topic - - - - - Ui_MainWindow - - - English - - - - - ImageMediaItem - - - You must select one or more items - - - - - Ui_AuthorsDialog - - - First name: - - - - - Ui_BibleImportWizard - - - Permission: - - - - - Ui_OpenSongImportDialog - - - Close - - - - - Ui_AmendThemeDialog - - - Opaque - - - - - SongMaintenanceForm - - - This book can't be deleted, it is currently assigned to at least one song! - - - - - ImportWizardForm - - - Your Bible import failed. - - - - - SlideController - - - Start playing media - - - - - SongMediaItem - - - Type: - - - - - Ui_AboutDialog - - - Close - - - - - TopicsForm - - - You need to type in a topic name! - - - - - Ui_OpenSongExportDialog - - - Song Export List - - - - - BibleMediaItem - - - Dual: - - - - - ImageTab - - - sec - - - - - ServiceManager - - - Delete From Service - - - - - GeneralTab - - - Automatically open the last service - - - - - Ui_OpenLPImportDialog - - - Song Import List - - - - - Ui_OpenSongExportDialog - - - Author - - - - - Ui_AmendThemeDialog - - - Outline Color: - - - - - Ui_BibleImportWizard - - - Select Import Source - - - - - Ui_MainWindow - - - F9 - - - - - F8 - - - - - ServiceManager - - - &Change Item Theme - - - - - Ui_SongMaintenanceDialog - - - Topics - - - - - Ui_OpenLPImportDialog - - - Import File Song List - - - - - Ui_customEditDialog - - - Edit Custom Slides - - - - - Ui_EditSongDialog - - - &Remove - - - - - Ui_BibleImportWizard - - - Set up the Bible's license details. - - - - - Ui_AmendThemeDialog - - - Alignment - - - - - SongMaintenanceForm - - - Delete Book - - - - - ThemeManager - - - Edit a theme - - - - - Ui_BibleImportWizard - - - BibleGateway - - - - - GeneralTab - - - Preview Next Song from Service Manager - - - - - Ui_EditSongDialog - - - Title && Lyrics - - - - - SongMaintenanceForm - - - No book selected! - - - - - SlideController - - - Move to live - - - - - Ui_EditVerseDialog - - - Other - - - - - Ui_EditSongDialog - - - Theme - - - - - Ui_EditVerseDialog - - - Verse - - - - - Ui_MainWindow - - - Save the current service to disk - - - - - BibleMediaItem - - - Chapter: - - - - - Ui_AmendThemeDialog - - - Bottom - - - - - PresentationTab - - - Available Controllers - - - - - ImportWizardForm - - - Open Verses CSV file - - - - - TopicsForm - - - Error - - - - - RemoteTab - - - Remotes Receiver Port - - - - - Ui_MainWindow - - - &View - - - - - Ui_AmendThemeDialog - - - Normal - - - - - Ui_OpenLPExportDialog - - - Close - - - - - Ui_BibleImportWizard - - - Username: - - - - - ThemeManager - - - Edit Theme - - - - - ServiceManager - - - &Preview Verse - - - - - Ui_AlertDialog - - - Alert Message - - - - - ImportWizardForm - - - Finished import. - - - - - GeneralTab - - - Show blank screen warning - - - - - AlertsTab - - - Location: - - - - - Ui_EditSongDialog - - - Authors, Topics && Book - - - - - EditSongForm - - - You need to enter some verses. - - - - - BibleMediaItem - - - Bible not fully loaded - - - - - CustomTab - - - Display Footer: - - - - - BiblePlugin - - - <strong>Bible Plugin</strong><br />This plugin allows bible verses from different sources to be displayed on the screen during the service. - - - - - Ui_EditSongDialog - - - Copyright Information - - - - - Ui_MainWindow - - - &Export - - - - - Ui_AmendThemeDialog - - - Bold - - - - - SongsPlugin - - - Export songs in OpenLP 2.0 format - - - - - MediaManagerItem - - - Load a new - - - - - AlertEditForm - - - Missing data - - - - - SongsPlugin - - - <b>Song Plugin</b> <br>This plugin allows Songs to be managed and displayed.<br> - - - - - Ui_AmendThemeDialog - - - Footer Font - - - - - EditSongForm - - - Invalid verse entry - vX - - - - - BibleMediaItem - - - No Book Found - - - - - Ui_OpenLPExportDialog - - - Export - - - - - Ui_BibleImportWizard - - - Location: - - - - - BibleMediaItem - - - Keep - - - - - SongUsagePlugin - - - Generate report on Song Usage - - - - - Ui_EditSongDialog - - - Topic - - - - - Ui_MainWindow - - - &Open - - - - - PresentationMediaItem - - - Present using: - - - - - ServiceManager - - - &Live Verse - - - - - Ui_EditVerseDialog - - - Pre-Chorus - - - - - Ui_EditSongDialog - - - Lyrics: - - - - - Ui_AboutDialog - - - Project Lead - Raoul "superfly" Snyman - -Developers - Tim "TRB143" Bentley - Jonathan "gushie" Corwin - Michael "cocooncrash" Gorven - Scott "sguerrieri" Guerrieri - Raoul "superfly" Snyman - Maikel Stuivenberg - Martin "mijiti" Thompson - Jon "Meths" Tibble - Carsten "catini" Tingaard - -Testers - Wesley "wrst" Stout - - - - - Ui_OpenLPExportDialog - - - Lyrics - - - - - AuthorsForm - - - You haven't set a display name for the author, would you like me to combine the first and last names for you? - - - - - SongMediaItem - - - Clear - - - - - AmendThemeForm - - - Slide Height is %s rows - - - - - Ui_OpenSongImportDialog - - - Progress: - - - - - Ui_MainWindow - - - Toggle Theme Manager - - - - - Ui_AlertDialog - - - Alert Text: - - - - - Ui_EditSongDialog - - - Edit - - - - - AlertsTab - - - Font Color: - - - - - Ui_AmendThemeDialog - - - Theme Maintenance - - - - - CustomTab - - - Custom Display - - - - - Ui_OpenSongExportDialog - - - Title - - - - - Ui_AmendThemeDialog - - - <Color1> - - - - - Ui_EditSongDialog - - - Authors - - - - - ThemeManager - - - Export Theme - - - - - ServiceManager - - - (N) - - - - - Ui_SongBookDialog - - - Name: - - - - - Ui_AuthorsDialog - - - Author Maintenance - - - - - Ui_AmendThemeDialog - - - Font Footer - - - - - Ui_MainWindow - - - &Settings - - - - - &Options - - - - - BibleMediaItem - - - Results: - - - - - Ui_OpenLPExportDialog - - - Full Song List - - - - - Ui_OpenSongImportDialog - - - OpenSong Folder: - - - - - SlideController - - - Move to last - - - - - Ui_OpenLPExportDialog - - - Progress: - - - - - Ui_SongMaintenanceDialog - - - Add - - - - - SongMaintenanceForm - - - Are you sure you want to delete the selected author? - - - - - SongUsagePlugin - - - Song Usage Status - - - - - BibleMediaItem - - - Verse Search - - - - - Ui_SongBookDialog - - - Edit Book - - - - - EditSongForm - - - Save && Preview - - - - - Ui_SongBookDialog - - - Publisher: - - - - - Ui_AmendThemeDialog - - - Font Weight: - - - - - Ui_BibleImportWizard - - - Bible Filename: - - - - - Ui_AmendThemeDialog - - - Transparent - - - - - SongMediaItem - - - Search - - - - - Ui_BibleImportWizard - - - Format: - - - - - Ui_AmendThemeDialog - - - Background - - - - - Ui_BibleImportWizard - - - Importing - - - - - Ui_customEditDialog - - - Edit all slides - - - - - MediaMediaItem - - - Select Media - - - - - PresentationMediaItem - - - Select Presentation(s) - - - - - SongMediaItem - - - Authors - - - - - Ui_PluginViewDialog - - - Active - - - - - Ui_MainWindow - - - Save the current service under a new name - - - - - Ctrl+O - - - - - Ui_AmendThemeDialog - - - Other Options - - - - - SongMaintenanceForm - - - Couldn't add your author! - - - - - Ui_AlertEditDialog - - - Edit - - - - - Ui_EditSongDialog - - - Song Editor - - - - - AlertsTab - - - Font - - - - - SongsPlugin - - - &Song - - - - - Ui_MainWindow - - - &File - - - - - MediaManagerItem - - - &Edit - - - - - Ui_AmendThemeDialog - - - Vertical - - - - - Width: - - - - - ThemeManager - - - You are unable to delete the default theme! - - - - - ThemesTab - - - Use the global theme, overriding any themes associated with either the service or the songs. - - - - - BibleMediaItem - - - Version: - - - - - Ui_AboutDialog - - - OpenLP <version> build <revision> - Open Source Lyrics Projection + + OpenLP <version><revision> - Open Source Lyrics Projection OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if OpenOffice.org, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. Find out more about OpenLP: http://openlp.org/ OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider contributing by using the button below. - + + + + + About + + + + + 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 + Christian "crichter" Richter + Maikel Stuivenberg + Carsten "catini" Tingaard + +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) + + + + + + Credits + + + + + Copyright © 2004-2010 Raoul Snyman +Portions copyright © 2004-2010 Tim Bentley, Jonathan Corwin, Michael Gorven, Scott Guerrieri, Christian Richter, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Carsten Tinggaard + +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 + + + + + Contribute + + + + + Close + + + + + build %s + + + + + OpenLP.AdvancedTab + + + Advanced + - - - SongsPlugin - - OpenLP 2.0 - + + UI Settings + - - - ServiceManager - - New Service - + + Number of recent files to display: + - - - Ui_TopicsDialog - - Topic name: - + + Remember active media manager tab on startup + - - - ThemeManager - - File is not a valid theme! - + + Double-click to send items straight to live (requires restart) + - - - Ui_BibleImportWizard + + + OpenLP.AmendThemeForm - - License Details - + + Theme Maintenance + - - - ServiceManager - - Move down - + + Theme &name: + - - - Ui_EditSongDialog - - R&emove - + + &Visibility: + - - - Ui_AmendThemeDialog - - Middle - + + Opaque + - - - Ui_BibleImportWizard - - Verse Location: - + + Transparent + - - - AlertEditForm - - Item selected to Edit - + + Type: + - - - BibleMediaItem - - From: - + + Solid Color + - - - Ui_AmendThemeDialog - - Shadow Color: - + + Gradient + - - - ServiceManager - - &Notes - + + Image + - - - Ui_MainWindow - - E&xit - + + Image: + - - - Ui_OpenLPImportDialog - - Close - + + Gradient: + - - - MainWindow - - OpenLP Version Updated - + + Horizontal + - - - Ui_customEditDialog - - Replace edited slide - + + Vertical + - - Add new slide at bottom - + + Circular + - - - EditCustomForm - - You need to enter a title - + + &Background + - - - ThemeManager - - Theme Exists - + + Main Font + - - - Ui_MainWindow - - &Help - + + Font: + - - - Ui_OpenSongExportDialog - - OpenSong Song Exporter - + + Color: + - - - Ui_AmendThemeDialog - - Vertical Align: - + + Size: + - - - TestMediaManager - - Item2 - + + pt + - - Item1 - + + Wrap indentation: + - - - Ui_AmendThemeDialog - - Top - + + Adjust line spacing: + - - - BiblesTab - - Display Dual Bible Verses - + + Normal + - - - Ui_MainWindow - - Toggle Service Manager - + + Bold + - - - MediaManagerItem - - &Add to Service - + + Italics + - - - AmendThemeForm - - First Color: - + + Bold/Italics + - - - ThemesTab - - Song level - + + Style: + - - - alertsPlugin - - Show an alert message - + + Display Location + - - - Ui_MainWindow - - Ctrl+F1 - + + Use default location + - - - SongMaintenanceForm - - Couldn't save your topic! - + + X position: + - - - Ui_OpenLPExportDialog - - Remove Selected - + + Y position: + - - - ThemeManager - - Delete theme - + + Width: + - - - ImageTab - - Image Settings - + + Height: + - - - Ui_OpenSongImportDialog - - OpenSong Song Importer - + + px + - - - BiblesTab - - Bibles - + + &Main Font + - - - SongUsagePlugin - - &Extract recorded data - + + Footer Font + - - - AlertsTab - - Font Name: - + + &Footer Font + - - - Ui_MainWindow - - &Web Site - + + Outline + - - - MediaManagerItem - - Send the selected item live - + + Outline size: + - - - Ui_MainWindow - - M&ode - + + Outline color: + - - Translate the interface to your language - + + Show outline: + - - Service Manager - + + Shadow + - - - CustomMediaItem - - Custom - + + Shadow size: + - - - ImageMediaItem - - No items selected... - + + Shadow color: + - - - Ui_BibleImportWizard - - OSIS - + + Show shadow: + - - - SongsPlugin - - openlp.org 1.0 - + + Alignment + - - - Ui_MainWindow - - &Theme - + + Horizontal align: + - - - Ui_EditVerseDialog - - Edit Verse - + + Left + - - - Ui_MainWindow - - &Language - + + Right + - - - SlideController - - Verse - + + Center + - - - ImportWizardForm - - You need to specify an OpenSong Bible file to import! - + + Vertical align: + - - - ServiceManager - - Your service is unsaved, do you want to save those changes before creating a new one ? - + + Top + - - - Ui_OpenSongExportDialog - - Remove Selected - + + Middle + - - - SongMediaItem - - Search: - + + Bottom + - - - MainWindow - - Save Changes to Service? - + + Slide Transition + - - Your service has changed, do you want to save those changes? - + + Transition active + - - - EditSongForm - - Invalid verse entry - values must be Numeric, I,B,C,T,P,E,O - + + &Other Options + - - - Ui_EditSongDialog - - &Add to Song - + + Preview + - - - Ui_MainWindow - - &About - + + All Files + - - - BiblesTab - - Only show new chapter numbers - + + Select Image + - - - ImportWizardForm - - You need to specify a version name for your Bible! - + + First color: + - - - Ui_AlertEditDialog - - Delete - + + Second color: + - - - EditCustomForm - - Error - + + Slide height is %s rows. + - - - RemotesPlugin + + + OpenLP.GeneralTab - - <b>Remote Plugin</b><br>This plugin provides the ability to send messages to a running version of openlp on a different computer.<br>The Primary use for this would be to send alerts from a creche - + + General + - - - SongMaintenanceForm - - This topic can't be deleted, it is currently assigned to at least one song! - + + Monitors + - - - BibleMediaItem - - Find: - + + Select monitor for output display: + - - - AlertEditForm - - Item selected to Add - + + Display if a single screen + - - - Ui_AmendThemeDialog - - Right - + + Application Startup + - - - ThemeManager - - Save Theme - (%s) - + + Show blank screen warning + - - - ImageMediaItem - - Allow background of live slide to be overridden - + + Automatically open the last service + - - - MediaManagerItem - - Add the selected item(s) to the service - + + Show the splash screen + - - - AuthorsForm - - Error - + + Application Settings + - - - BibleMediaItem - - Book: - + + Prompt to save Service before starting New + - - - Ui_AmendThemeDialog - - Font Color: - + + Preview Next Song from Service Manager + - - - Ui_OpenLPExportDialog - - Select openlp.org export filename: - + + CCLI Details + - - - Ui_SettingsDialog - - Settings - + + CCLI number: + - - - BiblesTab - - Verse Display - + + SongSelect username: + - - - MediaManagerItem - - Edit the selected - + + SongSelect password: + - - - SlideController - - Move to next - + + Display Position + - - - Ui_MainWindow - - &Plugin List - + + X + - - - BiblePlugin - - &Bible - + + Y + - - - Ui_BibleImportWizard - - Web Download - + + Height + - - - Ui_AmendThemeDialog - - Horizontal - + + Width + - - - ImportWizardForm - - Open OSIS file - + + Override display position + - - - SongMaintenanceForm - - Couldn't save your book! - + + Screen + - - Couldn't add your topic! - + + primary + - - - Ui_AmendThemeDialog + + + OpenLP.LanguageManager - - pt - + + Language + - - - Ui_MainWindow - - &Add Tool... - + + Please restart OpenLP to use your new language setting. + - - - Ui_AmendThemeDialog + + + OpenLP.MainWindow - - <Color2> - + + OpenLP 2.0 + - - - ServiceManager - - Move up - + + English + - - - Ui_OpenLPImportDialog - - Lyrics - + + &File + - - - BiblesTab - - No brackets - + + &Import + - - - Ui_AlertEditDialog - - Maintain Alerts - + + &Export + - - - Ui_AmendThemeDialog - - px - + + &View + - - - ServiceManager - - Select a theme for the service - + + M&ode + - - - ThemesTab - - Themes - + + &Tools + - - - ServiceManager - - Move to bottom - + + &Settings + - - - Ui_PluginViewDialog - - Status: - + + &Language + - - - Ui_EditSongDialog - - CCLI Number: - + + &Help + - - - ImportWizardForm - - This Bible already exists! Please import a different Bible or first delete the existing one. - + + Media Manager + - - - Ui_MainWindow - - &Translate - + + Service Manager + - - - AlertEditForm - - Please Save or Clear seletced item - + + Theme Manager + - - - Ui_MainWindow - - Save Service As - + + &New + - - - Ui_SongMaintenanceDialog - - Authors - + + New Service + - - - SongUsageDetailForm - - Output File Location - + + Create a new service. + - - - BiblesTab - - { and } - + + Ctrl+N + - - - GeneralTab - - Prompt to save Service before starting New - + + &Open + - - - ImportWizardForm - - Starting import... - + + Open Service + - - - BiblesTab - - Note: -Changes don't affect verses already in the service - + + Open an existing service. + - - - Ui_EditVerseDialog - - Intro - + + Ctrl+O + - - - ServiceManager - - Move up order - + + &Save + - - - PresentationTab - - available - + + Save Service + - - - ThemeManager - - default - + + Save the current service to disk. + - - - SongMaintenanceForm - - Delete Author - + + Ctrl+S + - - - Ui_AmendThemeDialog - - Display Location - + + Save &As... + - - - Ui_PluginViewDialog - - Version: - + + Save Service As + - - - Ui_AlertEditDialog - - Add - + + Save the current service under a new name. + - - - GeneralTab - - General - + + Ctrl+Shift+S + - - - Ui_AmendThemeDialog - - Y Position: - + + E&xit + - - - ServiceManager - - Move down order - + + Quit OpenLP + - - - BiblesTab - - verse per slide - + + Alt+F4 + - - - Ui_BibleImportWizard - - Welcome to the Bible Import Wizard - + + &Theme + - - - Ui_AmendThemeDialog - - Show Shadow: - + + &Configure OpenLP... + - - - AlertsTab - - Preview - + + &Media Manager + - - - alertsPlugin - - <b>Alerts Plugin</b><br>This plugin controls the displaying of alerts on the presentations screen - + + Toggle Media Manager + - - - GeneralTab - - Show the splash screen - + + Toggle the visibility of the media manager. + - - - Ui_MainWindow - - New Service - + + F8 + - - - SlideController - - Move to first - + + &Theme Manager + - - - Ui_MainWindow - - &Online Help - + + Toggle Theme Manager + - - - SlideController - - Blank Screen - + + Toggle the visibility of the theme manager. + - - - Ui_MainWindow - - Save Service - + + F10 + - - Save &As... - + + &Service Manager + - - Toggle the visibility of the Media Manager - + + Toggle Service Manager + - - - MediaManagerItem - - Delete the selected item - + + Toggle the visibility of the service manager. + - - - Ui_EditSongDialog - - Add - + + F9 + - - - alertsPlugin - - &Alert - + + &Preview Panel + - - - BibleMediaItem - - Advanced - + + Toggle Preview Panel + - - - ImageMediaItem - - Image(s) - + + Toggle the visibility of the preview panel. + - - - Ui_MainWindow - - F11 - + + F11 + - - F10 - + + &Live Panel + - - F12 - + + Toggle Live Panel + - - - Ui_BibleImportWizard - - Select the import format, and where to import from. - + + Toggle the visibility of the live panel. + - - - Ui_MainWindow - - Alt+F7 - + + F12 + - - Add an application to the list of tools - + + &Plugin List + - - - MediaPlugin - - <b>Media Plugin</b><br>This plugin allows the playing of audio and video media - + + List the Plugins + - - - BiblesTab - - Bible Theme: - + + Alt+F7 + - - - SongsPlugin - - Export songs in openlp.org 1.0 format - + + &User Guide + - - - Ui_MainWindow - - Theme Manager - + + &About + - - - AlertsTab - - Alerts - + + More information about OpenLP + - - - Ui_customEditDialog - - Move slide down 1 - + + Ctrl+F1 + - - - Ui_AmendThemeDialog - - Font: - + + &Online Help + - - - ServiceManager - - Load an existing service - + + &Web Site + - - - Ui_MainWindow - - Toggle the visibility of the Theme Manager - + + &Auto Detect + - - - PresentationTab - - Presentations - + + Use the system language, if available. + - - - SplashScreen - - Starting - + + Set the interface language to %s + - - - ImageTab - - Slide Loop Delay: - + + Add &Tool... + - - - ServiceManager - - Move to end - + + Add an application to the list of tools. + - - - AlertsTab - - Alert timeout: - + + &Default + - - - Ui_MainWindow - - &Preview Pane - + + Set the view mode back to the default. + - - - MediaManagerItem - - Add a new - + + &Setup + - - - ThemeManager - - Select Theme Import File - + + Set the view mode to Setup. + - - New Theme - + + &Live + - - - MediaMediaItem - - Media - + + Set the view mode to Live. + - - - Ui_BibleImportWizard - - Password: - + + 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>. + - - - Ui_AmendThemeDialog - - Outline Size: - + + OpenLP Version Updated + - - - Ui_OpenSongExportDialog - - Progress: - + + OpenLP Main Display Blanked + - - - AmendThemeForm - - Second Color: - + + The Main Display has been blanked out + - - - Ui_EditSongDialog - - Theme, Copyright Info && Comments - + + Save Changes to Service? + - - - Ui_MainWindow - - &Theme Manager - + + Your service has changed. Do you want to save those changes? + - - - Ui_OpenLPImportDialog - - Select openlp.org songfile to import: - + + Default Theme: %s + - - - Ui_EditSongDialog + + + OpenLP.MediaManagerItem - - Song Book - + + No Items Selected + - - - alertsPlugin - - F7 - + + Import %s + - - - Ui_OpenLPExportDialog - - Author - + + Import a %s + - - - Ui_AmendThemeDialog - - Wrap Indentation - + + Load %s + - - - ThemeManager - - Import a theme - + + 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. + + + + + OpenLP.PluginForm + + + Plugin List + + + + + Plugin Details + + + + + Version: + + + + + TextLabel + + + + + About: + + + + + Status: + + + + + Active + + + + + Inactive + + + + + %s (Inactive) + + + + + %s (Active) + + + + + %s (Disabled) + + + + + OpenLP.ServiceItemEditForm + + + Reorder Service Item + + + + + Up + + + + + Delete + + + + + Down + + + + + OpenLP.ServiceManager + + + New Service + + + + + Create a new service + + + + + Open Service + + + + + Load an existing service + + + + + Save Service + + + + + Save this service + + + + + Theme: + + + + + Select a theme for the service + + + + + Move to &top + + + + + Move item to the top of the service. + + + + + Move &up + + + + + Move item up one position in the service. + + + + + Move &down + + + + + Move item down one position in the service. + + + + + Move to &bottom + + + + + Move item to the end of the service. + + + + + &Delete From Service + + + + + Delete the selected item from the service. + + + + + &Add New Item + + + + + &Add to Selected Item + + + + + &Edit Item + + + + + &Reorder Item + + + + + &Notes + + + + + &Preview Verse + + + + + &Live Verse + + + + + &Change Item Theme + + + + + 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 + + + + + OpenLP.ServiceNoteForm + + + Service Item Notes + + + + + OpenLP.SettingsForm + + + Configure OpenLP + + + + + 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 + + + + + Go to Verse + + + + + OpenLP.ThemeManager + + + New Theme + + + + + Create a new theme. + + + + + Edit Theme + + + + + Edit a theme. + + + + + Delete Theme + + + + + Delete a theme. + + + + + Import Theme + + + + + Import a theme. + + + + + Export Theme + + + + + Export a theme. + + + + + &Edit Theme + + + + + &Delete Theme + + + + + Set As &Global Default + + + + + E&xport Theme + + + + + %s (default) + + + + + You must select a theme to edit. + + + + + You must select a theme to delete. + + + + + Delete Confirmation + + + + + Delete theme? + + + + + Error + + + + + You are unable to delete the default theme. + + + + + Theme %s is use in %s plugin. + + + + + Theme %s is use by the service manager. + + + + + You have not selected a theme. + + + + + Save Theme - (%s) + + + + + Theme Exported + + + + + Your theme has been successfully exported. + + + + + Theme Export Failed + + + + + Your theme could not be exported due to an error. + + + + + Select Theme Import File + + + + + Theme (*.*) + + + + + 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? + + + + + OpenLP.ThemesTab + + + Themes + + + + + Global Theme + + + + + Theme Level + + + + + S&ong Level + + + + + Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. + + + + + &Service Level + + + + + Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. + + + + + &Global Level + + + + + Use the global theme, overriding any themes associated with either the service or the songs. + + + + PresentationPlugin - - <b>Presentation Plugin</b> <br> Delivers 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. + - - - ImageMediaItem + + + PresentationPlugin.MediaItem - - Image - - - - - SongsTab - - - Enable search as you type: - - - - - Ui_AlertDialog - - - Cancel - - - - - Ui_OpenLPImportDialog - - - Import - - - - - Ui_EditVerseDialog - - - Chorus - - - - - Ui_EditSongDialog - - - Edit All - - - - - AuthorsForm - - - You need to type in the last name of the author. - - - - - SongsTab - - - Songs Mode - - - - - Ui_AmendThemeDialog - - - Left - - - - - ThemesTab - - - 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. - - - - - ImageTab - - - Images - - - - - BibleMediaItem - - - Verse: - - - - - Ui_BibleImportWizard - - - CSV - - - - - Ui_OpenLPExportDialog - - - Song Export List - - - - - ThemeManager - - - Export theme - - - - - Ui_SongMaintenanceDialog - - - Delete - - - - - Ui_AmendThemeDialog - - - Theme Name: - - - - - AlertsManager - - - - - - - - Ui_AboutDialog - - - About OpenLP - - - - - Ui_MainWindow - - - Toggle the visibility of the Service Manager - - - - - PresentationMediaItem - - - A presentation with that filename already exists. - - - - - AlertsTab - - - openlp.org - - - - - ImportWizardForm - - - Invalid Books File - - - - - Ui_OpenLPImportDialog - - - Song Title - - - - - MediaManagerItem - - - &Show Live - - - - - AlertsTab - - - Keep History: - - - - - Ui_AmendThemeDialog - - - Image: - - - - - Ui_customEditDialog - - - Set Theme for Slides - - - - - Ui_MainWindow - - - More information about OpenLP - - - - - AlertsTab - - - Background Color: - - - - - SongMaintenanceForm - - - No topic selected! - - - - - Ui_MainWindow - - - &Media Manager - + + Presentation + - - &Tools - - - - - AmendThemeForm - - - Background Color: - - - - - Ui_EditSongDialog - - - A&dd to Song - + + Select Presentation(s) + - - Title: - + + Automatic + - - - GeneralTab - - Screen - + + Present using: + - - - AlertsTab - - s - + + File Exists + - - - ImagePlugin - - <b>Image Plugin</b><br>Allows images of all types to be displayed. If a number of images are selected together and presented on the live controller it is possible to turn them into a timed loop.<br<br>From the plugin if the <i>Override background</i> is chosen and an image is selected any somgs which are rendered will use the selected image from the background instead of the one provied by the theme.<br> - + + A presentation with that filename already exists. + - - - Ui_AlertEditDialog - - Clear - + + Unsupported File + - - - Ui_BibleImportWizard - - Please wait while your Bible is imported. - + + This type of presentation is not supported + - - - MediaManagerItem - - No items selected... - + + You must select an item to delete. + - - - Ui_OpenLPImportDialog + + + PresentationPlugin.PresentationTab - - Select All - + + Presentations + - - - Ui_AmendThemeDialog - - Font Main - + + Available Controllers + - - - ImageMediaItem - - Images (*.jpg *jpeg *.gif *.png *.bmp) - + + Advanced + - - - Ui_OpenLPImportDialog - - Title - + + Allow presentation application to be overriden + - - - Ui_OpenSongExportDialog + + + RemotePlugin - - Select OpenSong song folder: - + + <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. + - - - Ui_MainWindow + + + RemotePlugin.RemoteTab - - Toggle Media Manager - + + Remotes + - - + + + Serve on IP address: + + + + + Port number: + + + + + Server Settings + + + + SongUsagePlugin - - &Song Usage - + + &Song Usage Tracking + - - - GeneralTab - - Monitors - + + &Delete Tracking Data + - - - EditCustomForm - - You need to enter a slide - + + Delete song usage data up to a specified date. + - - - ImportWizardForm - - You need to specify a file to import your Bible from! - + + &Extract Tracking Data + - - - Ui_EditVerseDialog - - Verse Type - + + Generate a report on song usage. + - - - ThemeManager - - You have not selected a theme! - + + Toggle Tracking + - - - Ui_EditSongDialog - - Comments - + + Toggle the tracking of song usage. + - - - AlertsTab - - Bottom - + + <strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services. + - - - Ui_MainWindow + + + SongUsagePlugin.SongUsageDeleteForm - - Create a new Service - + + Delete Selected Song Usage Events? + - - - AlertsTab - - Top - + + Are you sure you want to delete selected Song Usage data? + - - - SlideController - - Preview - + + Delete Song Usage Data + - - - Ui_PluginViewDialog + + + SongUsagePlugin.SongUsageDetailForm - - TextLabel - + + Output File Location + - - About: - + + Song Usage Extraction + - - Inactive - + + Select Date Range + - - - Ui_OpenSongExportDialog - - Ready to export - + + to + - - Export - + + Report Location + - - - Ui_PluginViewDialog + + + SongsPlugin - - Plugin List - + + &Song + - - - Ui_AmendThemeDialog - - Transition Active: - + + Import songs using the import wizard. + - - - Ui_BibleImportWizard - - Proxy Server (Optional) - + + Songs of Fellowship (temp menu item) + - - - Ui_EditSongDialog - - &Manage Authors, Topics, Books - + + Import songs from the VOLS1_2.RTF, sof3words.rtf and sof4words.rtf supplied with the music books + - - - Ui_SongUsageDetailDialog - - Audit Detail Extraction - + + Generic Document/Presentation Import (temp menu item) + - - - Ui_OpenLPExportDialog - - Ready to export - + + Import songs from Word/Writer/Powerpoint/Impress + - - - EditCustomForm - - Save && Preview - + + OpenSong (temp menu item) + - - - Ui_OpenLPExportDialog - - Select All - + + Import songs from OpenSong files(either raw text or ZIPfiles) + - - - Ui_SongUsageDetailDialog - - to - + + OpenLP v2 Songs (temporary) + - - - Ui_AmendThemeDialog - - Size: - + + Import an OpenLP v2 song database + - - - MainWindow - - OpenLP Main Display Blanked - + + Open Songs of Fellowship file + - - - Ui_OpenLPImportDialog - - Remove Selected - + + Import Error + - - - OpenSongBible - - Importing - + + Error importing Songs of Fellowship file. +OpenOffice.org must be installed and you must be using an unedited copy of the RTF included with the Songs of Fellowship Music Editions + - - - Ui_EditSongDialog - - Delete - + + Open OpenSong file + - - - Ui_MainWindow - - Ctrl+S - + + Error importing OpenSong file + - - - PresentationMediaItem - - File exists - + + Select OpenLP database(s) to import... + - - - Ui_OpenSongImportDialog - - Ready to import - + + Database(s) imported + - - - SlideController - - Stop continuous loop - + + Your OpenLP v2 song databases have been successfully imported + - - s - + + Error importing OpenLP v2 database(s) + - - - SongMediaItem - - Song Maintenance - + + Open documents or presentations + - - - Ui_customEditDialog - - Edit - + + <strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs. + - - - Ui_AmendThemeDialog + + + SongsPlugin.AuthorsForm - - Gradient : - + + Author Maintenance + - - - BiblesTab - - Layout Style: - + + Display name: + - - - ImportWizardForm - - Invalid Verse File - + + First name: + - - - EditSongForm - - Error - + + Last name: + - - - Ui_customEditDialog - - Add New - + + Error + - - - Ui_AuthorsDialog - - Display name: - + + You need to type in the first name of the author. + - - - SongMaintenanceForm - - Are you sure you want to delete the selected topic? - + + You need to type in the last name of the author. + - - - Ui_AmendThemeDialog - - Bold/Italics - + + You have not set a display name for the author, would you like me to combine the first and last names for you? + - - - Ui_SongMaintenanceDialog + + + SongsPlugin.EditSongForm - - Song Maintenance - + + Song Editor + - - - Ui_EditVerseDialog - - Bridge - + + &Title: + - - - SongsTab - - Songs - + + &Lyrics: + - - - Ui_AmendThemeDialog - - Preview - + + &Add + - - - Ui_AboutDialog - - Credits - + + &Edit + - - - MediaManagerItem - - Preview the selected item - + + Ed&it All + - - - Ui_BibleImportWizard - - Version Name: - + + &Delete + - - - Ui_AboutDialog - - About - + + Title && Lyrics + - - - Ui_EditVerseDialog - - Ending - + + Authors + - - - Ui_AmendThemeDialog - - Horizontal Align: - + + &Add to Song + - - - ServiceManager - - &Edit Item - + + &Remove + - - - Ui_AmendThemeDialog - - Background Type: - + + &Manage Authors, Topics, Song Books + - - - Ui_MainWindow - - &Save - + + Topic + - - OpenLP 2.0 - + + A&dd to Song + - - - ThemeManager - - A theme with this name already exists, would you like to overwrite it? - + + R&emove + - - Export a theme - + + Song Book + - - - AmendThemeForm - - Open file - + + Authors, Topics && Song Book + - - - Ui_TopicsDialog - - Topic Maintenance - + + Theme + - - - Ui_customEditDialog - - Clear edit area - + + New &Theme + - - - Ui_AmendThemeDialog - - Show Outline: - + + Copyright Information + - - - SongBookForm - - You need to type in a book name! - + + © + - - - ImportWizardForm - - Open OpenSong Bible - + + Comments + - - - Ui_MainWindow - - Look && &Feel - + + Theme, Copyright Info && Comments + - - - Ui_BibleImportWizard - - Ready. - + + Save && Preview + - - - Ui_SongMaintenanceDialog - - Books/Hymnals - + + Add Author + - - - Ui_AboutDialog - - Contribute - + + This author does not exist, do you want to add them? + - - - Ui_AmendThemeDialog - - Gradient - + + Error + - - - AlertsTab - - Font Size: - + + This author is already in the list. + - - - Ui_OpenSongExportDialog - - Full Song List - + + No Author Selected + - - - Ui_AmendThemeDialog - - Circular - + + 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: + + + + + SongsPlugin.EditVerseForm + + + Edit Verse + + + + + &Verse type: + + + + + &Insert + + + + + SongsPlugin.ImportWizardForm + + + No OpenLyrics Files Selected + + + + + You need to add at least one OpenLyrics song file to import from. + + + + + No OpenSong Files Selected + + + + + You need to add at least one OpenSong song file to import from. + + + + + No CCLI Files Selected + + + + + You need to add at least one CCLI file to import from. + + + + + No CSV File Selected + + + + + You need to specify a CSV file to import from. + + + + + 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: + + + + + OpenLyrics + + + + + OpenSong + + + + + CCLI + + + + + CSV + + + + + Add Files... + + + + + Remove File(s) + + + + + Filename: + + + + + Browse... + + + + + Importing + + + + + Please wait while your songs are imported. + + + + + Ready. + + + + + %p% + + + + + 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. + + + + + CCLI Licence: + + + + + Are you sure you want to delete the selected song? + + + + + Are you sure you want to delete the %d selected songs? + + + + + Delete Song(s)? + + + + + SongsPlugin.SongBookForm + + + Song Book Maintenance + + + + + &Name: + + + + + &Publisher: + + + + + Error + + + + + You need to type in a name for the book. + + + + + SongsPlugin.SongImport + + + copyright + + + + + © + + + + + SongsPlugin.SongMaintenanceForm + + + Song Maintenance + + + + + Authors + + + + + Topics + + + + + Song Books + + + + + &Add + + + + + &Edit + + + + + &Delete + + + + + 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! + + + + + SongsPlugin.SongsTab + + + Songs + + + + + Songs Mode + + + + + Enable search as you type + + + + + Display verses on live tool bar + + + + + SongsPlugin.TopicsForm + + + Topic Maintenance + + + + + Topic name: + + + + + Error + + + + + You need to type in a topic name! + + + + + SongsPlugin.VerseType + + + Verse + + + + + Chorus + + + + + Bridge + + + + + Pre-Chorus + + + + + Intro + + + + + Ending + + + + + Other + + + diff --git a/resources/i18n/openlp_en_GB.ts b/resources/i18n/openlp_en_GB.ts index 0f994c2e1..fe066d402 100644 --- a/resources/i18n/openlp_en_GB.ts +++ b/resources/i18n/openlp_en_GB.ts @@ -1,4287 +1,3893 @@ - - - - BibleMediaItem + + + + AlertsPlugin - - Quick - Quick - - - Ui_customEditDialog - - - Delete selected slide - Delete selected slide - - - BiblesTab - - - ( and ) - ( and ) - - - RemoteTab - - - Remotes - Remotes - - - Ui_EditSongDialog - - - &Remove - &Remove - - - Ui_AmendThemeDialog - - - Shadow Size: - Shadow Size: - - - Ui_OpenSongExportDialog - - - Close - Close - - - ThemeManager - - - Import Theme - Import Theme - - - Ui_AmendThemeDialog - - - Slide Transition - Slide Transition - - - SongMaintenanceForm - - - Are you sure you want to delete the selected book? - Are you sure you want to delete the selected book? - - - ThemesTab - - - Theme level - Theme level - - - BibleMediaItem - - - Bible - Bible - - - ServiceManager - - - Save Changes to Service? - Save Changes to Service? - - - SongUsagePlugin - - - &Delete recorded data - &Delete recorded data - - - Ui_OpenLPExportDialog - - - Song Title - Song Title - - - Ui_customEditDialog - - - Edit selected slide - Edit selected slide - - - SongMediaItem - - - CCLI Licence: - CCLI Licence: - - - Ui_SongUsageDeleteDialog - - - Audit Delete - Audit Delete - - - Ui_BibleImportWizard - - - Bible Import Wizard - Bible Import Wizard - - - Ui_customEditDialog - - - Edit All - Edit All - - - Ui_ServiceNoteEdit - - - Service Item Notes - Service Item Notes - - - SongMaintenanceForm - - - Couldn't save your author! - + + &Alert + &Alert - - - Ui_customEditDialog - - Clear - Clear - - - ThemesTab - - - Global theme - Global theme - - - SongUsagePlugin - - - Start/Stop live song usage recording - Start/Stop live song usage recording - - - MainWindow - - - The Main Display has been blanked out - The Main Display has been blanked out - - - Ui_OpenSongExportDialog - - - Lyrics - Lyrics - - - Ui_AlertDialog - - - Display - Display - - - Ui_customEditDialog - - - Delete - Delete - - - Ui_EditVerseDialog - - - Verse - Verse - - - SongMaintenanceForm - - - This author can't be deleted, they are currently assigned to at least one song! - + + Show an alert message. + - - - ThemeManager - - Create a new theme - Create a new theme - - - Ui_MainWindow - - - Open an existing service - Open an existing service - - - SlideController - - - Move to previous - Move to previous - - - SongsPlugin - - - &Song - &Song - - - Ui_PluginViewDialog - - - Plugin Details - Plugin Details - - - AlertsTab - - - pt - pt - - - Edit History: - Edit History: - - - Ui_MainWindow - - - &File - &File - - - SongMaintenanceForm - - - Couldn't add your book! - + + <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of nursery alerts on the display screen + - - - BiblesTab + + + AlertsPlugin.AlertForm - - verse per line - verse per line - - - Ui_customEditDialog - - - Theme: - Theme: - - - SongMaintenanceForm - - - Error - Error - - - Ui_BibleImportWizard - - - Bible: - Bible: - - - ImportWizardForm - - - You need to specify a file with books of the Bible to use in the import! - + + Alert Message + Alert Message - - - ThemeManager - - Delete Theme - Delete Theme - - - SplashScreen - - - Splash Screen - Splash Screen - - - SongMediaItem - - - Song - Song - - - SongUsageDeleteForm - - - Delete Selected Audit Events? - + + Alert &text: + - - - Ui_OpenSongExportDialog - - Song Title - Song Title - - - Ui_AmendThemeDialog - - - Bottom - Bottom - - - Ui_MainWindow - - - List the Plugins - List the Plugins - - - SongMaintenanceForm - - - No author selected! - + + &Parameter(s): + - - - SongUsagePlugin - - <b>SongUsage Plugin</b><br>This plugin records the use of songs and when they have been used during a live service - <b>SongUsage Plugin</b><br>This plugin records the use of songs and when they have been used during a live service - - - Ui_customEditDialog - - - Move slide Up 1 - Move slide Up 1 - - - SongsPlugin - - - OpenSong - OpenSong - - - AlertsManager - - - Alert message created and delayed - Alert message created and delayed - - - Ui_EditSongDialog - - - Alternative Title: - Alternative Title: - - - ServiceManager - - - Open Service - Open Service - - - BiblesTab - - - Display Style: - Display Style: - - - Ui_AmendThemeDialog - - - Image - Image - - - EditSongForm - - - You need to enter a song title. - You need to enter a song title. - - - ThemeManager - - - Error - Error - - - ImportWizardForm - - - Invalid Bible Location - Invalid Bible Location - - - ThemesTab - - - Global level - Global level - - - ThemeManager - - - Make Global - Make Global - - - Ui_MainWindow - - - &Service Manager - &Service Manager - - - Ui_OpenLPImportDialog - - - Author - Author - - - Ui_AmendThemeDialog - - - Height: - Height: - - - ThemeManager - - - Delete a theme - Delete a theme - - - Ui_BibleImportWizard - - - Crosswalk - Crosswalk - - - SongBookForm - - - Error - Error - - - Ui_AuthorsDialog - - - Last name: - Last name: - - - Ui_customEditDialog - - - Title: - Title: - - - ImportWizardForm - - - You need to set a copyright for your Bible! Bibles in the Public Domain need to be marked as such. - You need to set a copyright for your Bible! Bibles in the Public Domain need to be marked as such. - - - SongMediaItem - - - Maintain the lists of authors, topics and books - Maintain the lists of authors, topics and books - - - Ui_AlertEditDialog - - - Save - Save - - - EditCustomForm - - - You have unsaved data - You have unsaved data - - - Ui_AmendThemeDialog - - - Outline - Outline - - - BibleMediaItem - - - Text Search - Text Search - - - Ui_BibleImportWizard - - - CSV - CSV - - - SongUsagePlugin - - - Delete song usage to specified date - Delete song usage to specified date - - - Ui_SongUsageDetailDialog - - - Report Location - Report Location - - - Ui_BibleImportWizard - - - OpenSong - OpenSong - - - Ui_MainWindow - - - Open Service - Open Service - - - BibleMediaItem - - - Find: - Find: - - - ImageMediaItem - - - Select Image(s) - Select Image(s) - - - BibleMediaItem - - - Search Type: - Search Type: - - - Ui_MainWindow - - - Media Manager - Media Manager - - - Alt+F4 - Alt+F4 - - - MediaManagerItem - - - &Preview - &Preview - - - GeneralTab - - - CCLI Details - CCLI Details - - - BibleMediaItem - - - Bible not fully loaded - Bible not fully loaded - - - Ui_MainWindow - - - Toggle the visibility of the Preview Panel - Toggle the visibility of the Preview Panel - - - ImportWizardForm - - - Bible Exists - Bible Exists - - - Ui_MainWindow - - - &User Guide - &User Guide - - - SongUsageDeleteForm - - - Are you sure you want to delete selected Audit Data? - + + &New + &New - - - Ui_MainWindow - - Set the interface language to English - Set the interface language to English - - - Ui_AmendThemeDialog + + &Save + &Save + - - Main Font - Main Font - - - ImportWizardForm + + &Delete + + - - Empty Copyright - Empty Copyright - - + + Displ&ay + + + + + Display && Cl&ose + + + + + &Close + + + + + New Alert + + + + + You haven't specified any text for your alert. Please type in some text before clicking New. + + + + + AlertsPlugin.AlertsManager + + + Alert message created and displayed. + + + + + AlertsPlugin.AlertsTab + + + Alerts + Alerts + + + + Font + Font + + + + Font name: + + + + + Font color: + + + + + Background color: + + + + + Font size: + + + + + pt + pt + + + + Alert timeout: + Alert timeout: + + + + s + s + + + + Location: + Location: + + + + Preview + Preview + + + + OpenLP 2.0 + OpenLP 2.0 + + + + Top + Top + + + + Middle + Middle + + + + Bottom + Bottom + + + + BiblesPlugin + + + &Bible + &Bible + + + + <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display bible verses from different sources during the service. + + + + + BiblesPlugin.BibleDB + + + Book not found + + + + + The book you requested could not be found in this bible. Please check your spelling and that this is a complete bible not just one testament. + + + + + BiblesPlugin.BiblesTab + + + Bibles + Bibles + + + + Verse Display + Verse Display + + + + Only show new chapter numbers + Only show new chapter numbers + + + + Layout style: + + + + + Display style: + + + + + Bible theme: + + + + + Verse Per Slide + + + + + Verse Per Line + + + + + Continuous + + + + + No Brackets + + + + + ( And ) + + + + + { And } + + + + + [ And ] + + + + + Note: +Changes do not affect verses already in the service. + + + + + Display dual Bible verses + + + + + BiblesPlugin.ImportWizardForm + + + Bible Import Wizard + Bible Import Wizard + + + + Welcome to the Bible Import Wizard + Welcome to the Bible Import Wizard + + + + This wizard will help you to import Bibles from a variety of formats. Click the next button below to start the process by selecting a format to import from. + This wizard will help you to import Bibles from a variety of formats. Click the next button below to start the process by selecting a format to import from. + + + + 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: + + + + OSIS + OSIS + + + + CSV + CSV + + + + OpenSong + OpenSong + + + + Web Download + Web Download + + + + File location: + + + + + Books location: + + + + + Verse location: + + + + + Bible filename: + + + + + Location: + Location: + + + + Crosswalk + Crosswalk + + + + BibleGateway + BibleGateway + + + + Bible: + Bible: + + + + Download Options + Download Options + + + + Server: + Server: + + + + Username: + Username: + + + + Password: + Password: + + + + Proxy Server (Optional) + Proxy Server (Optional) + + + + License Details + License Details + + + + Set up the Bible's license details. + Set up the Bible's license details. + + + + Version name: + + + + + Copyright: + Copyright: + + + + Permission: + Permission: + + + + Importing + Importing + + + + Please wait while your Bible is imported. + Please wait while your Bible is imported. + + + + Ready. + Ready. + + + + Invalid Bible Location + Invalid Bible Location + + + + You need to specify a file to import your Bible from. + + + + + Invalid Books File + Invalid Books File + + + + You need to specify a file with books of the Bible to use in the import. + + + + + Invalid Verse File + Invalid Verse File + + + + You need to specify a file of Bible verses to import. + + + + + Invalid OpenSong Bible + Invalid OpenSong Bible + + + + You need to specify an OpenSong Bible file to import. + + + + + Empty Version Name + Empty Version Name + + + + You need to specify a version name for your Bible. + + + + + Empty Copyright + Empty Copyright + + + + You need to set a copyright for your Bible! Bibles in the Public Domain need to be marked as such. + You need to set a copyright for your Bible! Bibles in the Public Domain need to be marked as such. + + + + Bible Exists + Bible Exists + + + + This Bible already exists! Please import a different Bible or first delete the existing one. + + + + + Open OSIS File + + + + + Open Books CSV File + + + + + Open Verses CSV File + + + + + Open OpenSong Bible + Open OpenSong Bible + + + + Starting import... + Starting import... + + + + Finished import. + Finished import. + + + + Your Bible import failed. + Your Bible import failed. + + + + 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. + + + + + BiblesPlugin.Opensong + + + Importing + Importing + + + CustomPlugin - - <b>Custom Plugin</b><br>This plugin allows slides to be displayed on the screen in the same way songs are. This plugin provides greater freedom over the songs plugin.<br> - + + <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. + - - - AuthorsForm + + + CustomPlugin.CustomTab - - You need to type in the first name of the author. - You need to type in the first name of the author. - - - SongsTab - - - Display Verses on Live Tool bar: - Display Verses on Live Tool bar: - - - ServiceManager - - - Move to top - Move to top - - - ImageMediaItem - - - Override background - Override background - - - Ui_SongMaintenanceDialog - - - Edit - Edit - - - Ui_OpenSongExportDialog - - - Select All - Select All - - - ThemesTab - - - 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. - - - PresentationMediaItem - - - Presentation - Presentation - - - Ui_AmendThemeDialog - - - Solid Color - Solid Color - - - CustomTab - - - Custom - Custom - - - Ui_OpenLPImportDialog - - - Ready to import - Ready to import - - - MainWindow - - - OpenLP version %s has been updated to version %s - -You can obtain the latest version from http://openlp.org - OpenLP version %s has been updated to version %s - -You can obtain the latest version from http://openlp.org - - - Ui_BibleImportWizard - - - File Location: - File Location: - - - SlideController - - - Go to Verse - Go to Verse - - - Ui_MainWindow - - - &Import - &Import - - - Quit OpenLP - Quit OpenLP - - - Ui_BibleImportWizard - - - This wizard will help you to import Bibles from a variety of formats. Click the next button below to start the process by selecting a format to import from. - This wizard will help you to import Bibles from a variety of formats. Click the next button below to start the process by selecting a format to import from. - - - SongMaintenanceForm - - - Couldn't add your topic! - + + Custom + Custom - - - ImportWizardForm - - Empty Version Name - Empty Version Name - - - Ui_MainWindow - - - &Preview Panel - &Preview Panel - - - SlideController - - - Start continuous loop - Start continuous loop - - - ServiceManager - - - Move down - Move down - - - GeneralTab - - - primary - primary - - - Ui_EditSongDialog - - - Add a Theme - Add a Theme - - - Ui_MainWindow - - - &New - &New - - - Ui_customEditDialog - - - Credits: - Credits: - - - SlideController - - - Live - Live - - - GeneralTab - - - Show blank screen warning - Show blank screen warning - - - BiblesTab - - - continuous - continuous - - - Ui_EditVerseDialog - - - Number - Number - - - GeneralTab - - - Application Startup - Application Startup - - - Ui_AmendThemeDialog - - - Use Default Location: - Use Default Location: - - - Ui_OpenSongImportDialog - - - Import - Import - - - Ui_AmendThemeDialog - - - Other Options - Other Options - - - Ui_EditSongDialog - - - Verse Order: - Verse Order: - - - Ui_SongUsageDetailDialog - - - ASelect Date Range - + + Custom Display + Custom Display - - - Ui_MainWindow - - Default Theme: - Default Theme: - - - Toggle Preview Panel - Toggle Preview Panel - - - SongMediaItem - - - Lyrics - Lyrics - - - Ui_OpenLPImportDialog - - - Progress: - Progress: - - - Ui_AmendThemeDialog - - - Shadow - Shadow - - - GeneralTab - - - Select monitor for output display: - Select monitor for output display: - - - Ui_MainWindow - - - &Settings - &Settings - - - Ui_AmendThemeDialog - - - Italics - Italics - - - ServiceManager - - - Create a new service - Create a new service - - - Ui_AmendThemeDialog - - - Background: - Background: - - - Ui_OpenLPImportDialog - - - openlp.org Song Importer - openlp.org Song Importer - - - Ui_BibleImportWizard - - - Copyright: - Copyright: - - - ThemesTab - - - Service level - Service level - - - BiblesTab - - - [ and ] - [ and ] - - - Ui_BibleImportWizard - - - Verse Location: - Verse Location: - - - MediaManagerItem - - - You must select one or more items - You must select one or more items - - - GeneralTab - - - Application Settings - Application Settings - - - ServiceManager - - - Save this service - Save this service - - - ImportWizardForm - - - Open Books CSV file - Open Books CSV file - - - GeneralTab - - - SongSelect Username: - SongSelect Username: - - - Ui_AmendThemeDialog - - - X Position: - X Position: - - - BibleMediaItem - - - No matching book could be found in this Bible. - No matching book could be found in this Bible. - - - Ui_BibleImportWizard - - - Server: - Server: - - - SongMaintenanceForm - - - Couldn't save your book! - - - - Ui_EditVerseDialog - - - Ending - Ending - - - CustomTab - - - Display Footer: - Display Footer: - - - ImportWizardForm - - - Invalid OpenSong Bible - Invalid OpenSong Bible - - - GeneralTab - - - CCLI Number: - CCLI Number: - - - Ui_AmendThemeDialog - - - Center - Center - - - ServiceManager - - - Theme: - Theme: - - - Ui_MainWindow - - - &Live - &Live - - - Ui_AmendThemeDialog - - - <Color2> - <Color2> - - - Ui_MainWindow - - - English - English - - - ImageMediaItem - - - You must select one or more items - You must select one or more items - - - Ui_AuthorsDialog - - - First name: - First name: - - - Ui_OpenLPExportDialog - - - Select openlp.org export filename: - Select openlp.org export filename: - - - Ui_BibleImportWizard - - - Permission: - Permission: - - - Ui_OpenSongImportDialog - - - Close - Close - - - Ui_AmendThemeDialog - - - Opaque - Opaque - - - SongMaintenanceForm - - - This book can't be deleted, it is currently assigned to at least one song! - + + Display footer + - - - ImportWizardForm + + + CustomPlugin.EditCustomForm - - Your Bible import failed. - Your Bible import failed. - - - SlideController - - - Start playing media - Start playing media - - - SongMediaItem - - - Type: - Type: - - - Ui_AboutDialog - - - Close - Close - - - TopicsForm - - - You need to type in a topic name! - + + Edit Custom Slides + Edit Custom Slides - - - Ui_OpenSongExportDialog - - Song Export List - Song Export List - - - BibleMediaItem - - - Dual: - Dual: - - - ImageTab - - - sec - sec - - - ServiceManager - - - Delete From Service - Delete From Service - - - GeneralTab - - - Automatically open the last service - Automatically open the last service - - - Ui_OpenLPImportDialog - - - Song Import List - Song Import List - - - Ui_OpenSongExportDialog - - - Author - Author - - - Ui_AmendThemeDialog - - - Outline Color: - Outline Color: - - - Ui_BibleImportWizard - - - Select Import Source - Select Import Source - - - Ui_MainWindow - - - F9 - F9 - - - F8 - F8 - - - ServiceManager - - - &Change Item Theme - &Change Item Theme - - - Ui_OpenSongImportDialog - - - OpenSong Folder: - OpenSong Folder: - - - Ui_OpenLPImportDialog - - - Import File Song List - Import File Song List - - - Ui_customEditDialog - - - Edit Custom Slides - Edit Custom Slides - - - Ui_BibleImportWizard - - - Set up the Bible's license details. - Set up the Bible's license details. - - - Ui_AmendThemeDialog - - - Alignment - Alignment - - - SongMaintenanceForm - - - Delete Book - Delete Book - - - ThemeManager - - - Edit a theme - Edit a theme - - - Ui_BibleImportWizard - - - BibleGateway - BibleGateway - - - GeneralTab - - - Preview Next Song from Service Manager - Preview Next Song from Service Manager - - - Ui_EditSongDialog - - - Title && Lyrics - Title && Lyrics - - - SongMaintenanceForm - - - No book selected! - + + Move slide up once position. + - - - SlideController - - Move to live - Move to live - - - Ui_EditVerseDialog - - - Other - Other - - - Ui_EditSongDialog - - - Theme - Theme - - - ServiceManager - - - Save Service - Save Service - - - Ui_MainWindow - - - Save the current service to disk - Save the current service to disk - - - BibleMediaItem - - - Chapter: - Chapter: - - - Search - Search - - - PresentationTab - - - Available Controllers - Available Controllers - - - ImportWizardForm - - - Open Verses CSV file - Open Verses CSV file - - - TopicsForm - - - Error - Error - - - RemoteTab - - - Remotes Receiver Port - Remotes Receiver Port - - - Ui_MainWindow - - - &View - &View - - - Ui_AmendThemeDialog - - - Normal - Normal - - - Ui_OpenLPExportDialog - - - Close - Close - - - Ui_BibleImportWizard - - - Username: - Username: - - - ThemeManager - - - Edit Theme - Edit Theme - - - SlideController - - - Preview - Preview - - - Ui_AlertDialog - - - Alert Message - Alert Message - - - ImportWizardForm - - - Finished import. - Finished import. - - - You need to specify a file of Bible verses to import! - You need to specify a file of Bible verses to import! - - - AlertsTab - - - Location: - Location: - - - Ui_EditSongDialog - - - Authors, Topics && Book - Authors, Topics && Book - - - EditSongForm - - - You need to enter some verses. - You need to enter some verses. - - - Ui_BibleImportWizard - - - Download Options - Download Options - - - BiblePlugin - - - <strong>Bible Plugin</strong><br />This plugin allows bible verses from different sources to be displayed on the screen during the service. - <strong>Bible Plugin</strong><br />This plugin allows bible verses from different sources to be displayed on the screen during the service. - - - Ui_EditSongDialog - - - Copyright Information - Copyright Information - - - Ui_MainWindow - - - &Export - &Export - - - Ui_AmendThemeDialog - - - Bold - Bold - - - SongsPlugin - - - Export songs in OpenLP 2.0 format - Export songs in OpenLP 2.0 format - - - MediaManagerItem - - - Load a new - Load a new - - - AlertEditForm - - - Missing data - Missing data - - - SongsPlugin - - - <b>Song Plugin</b> <br>This plugin allows Songs to be managed and displayed.<br> - <b>Song Plugin</b> <br>This plugin allows Songs to be managed and displayed.<br> - - - Ui_AmendThemeDialog - - - Footer Font - Footer Font - - - EditSongForm - - - Invalid verse entry - vX - Invalid verse entry - vX - - - MediaManagerItem - - - Delete the selected item - Delete the selected item - - - Ui_OpenLPExportDialog - - - Export - Export - - - Ui_BibleImportWizard - - - Location: - Location: - - - BibleMediaItem - - - Keep - Keep - - - SongUsagePlugin - - - Generate report on Song Usage - Generate report on Song Usage - - - Ui_EditSongDialog - - - Topic - Topic - - - Ui_MainWindow - - - &Open - &Open - - - AuthorsForm - - - You haven't set a display name for the author, would you like me to combine the first and last names for you? - You haven't set a display name for the author, would you like me to combine the first and last names for you? - - - AmendThemeForm - - - Slide Height is %s rows - Slide Height is %s rows - - - Ui_EditVerseDialog - - - Pre-Chorus - Pre-Chorus - - - Ui_EditSongDialog - - - Lyrics: - Lyrics: - - - Ui_AboutDialog - - - Project Lead - Raoul "superfly" Snyman - -Developers - Tim "TRB143" Bentley - Jonathan "gushie" Corwin - Michael "cocooncrash" Gorven - Scott "sguerrieri" Guerrieri - Raoul "superfly" Snyman - Maikel Stuivenberg - Martin "mijiti" Thompson - Jon "Meths" Tibble - Carsten "catini" Tingaard - -Testers - Wesley "wrst" Stout - Project Lead - Raoul "superfly" Snyman - -Developers - Tim "TRB143" Bentley - Jonathan "gushie" Corwin - Michael "cocooncrash" Gorven - Scott "sguerrieri" Guerrieri - Raoul "superfly" Snyman - Maikel Stuivenberg - Martin "mijiti" Thompson - Jon "Meths" Tibble - Carsten "catini" Tingaard - -Testers - Wesley "wrst" Stout - - - SongMediaItem - - - Titles - + + Move slide down one position. + - - - Ui_OpenLPExportDialog - - Lyrics - Lyrics - - - PresentationMediaItem - - - Present using: - Present using: - - - SongMediaItem - - - Clear - Clear - - - ServiceManager - - - &Live Verse - &Live Verse - - - Ui_OpenSongImportDialog - - - Progress: - Progress: - - - Ui_MainWindow - - - Toggle Theme Manager - Toggle Theme Manager - - - Ui_AlertDialog - - - Alert Text: - Alert Text: - - - Ui_EditSongDialog - - - Edit - Edit - - - AlertsTab - - - Font Color: - Font Color: - - - Ui_AmendThemeDialog - - - Theme Maintenance - Theme Maintenance - - - CustomTab - - - Custom Display - Custom Display - - - Ui_OpenSongExportDialog - - - Title - Title - - - Ui_AmendThemeDialog - - - <Color1> - <Color1> - - - Ui_EditSongDialog - - - Authors - Authors - - - ThemeManager - - - Export Theme - Export Theme - - - ServiceManager - - - (N) - + + &Title: + - - - Ui_SongBookDialog - - Name: - Name: - - - Ui_AuthorsDialog - - - Author Maintenance - Author Maintenance - - - Ui_AmendThemeDialog - - - Font Footer - Font Footer - - - BiblesTab - - - Verse Display - Verse Display - - - Ui_MainWindow - - - &Options - &Options - - - BibleMediaItem - - - Results: - Results: - - - Ui_OpenLPExportDialog - - - Full Song List - Full Song List - - - SlideController - - - Move to last - Move to last - - - Ui_OpenLPExportDialog - - - Progress: - + + Add New + Add New - - - Ui_SongMaintenanceDialog - - Add - Add - - - SongMaintenanceForm - - - Are you sure you want to delete the selected author? - + + Add a new slide at bottom. + - - - SongUsagePlugin - - Song Usage Status - Song Usage Status - - - BibleMediaItem - - - Verse Search - Verse Search - - - Ui_SongBookDialog - - - Edit Book - Edit Book - - - EditSongForm - - - Save && Preview - Save && Preview - - - Ui_SongBookDialog - - - Publisher: - Publisher: - - - Ui_AmendThemeDialog - - - Font Weight: - Font Weight: - - - Ui_BibleImportWizard - - - Bible Filename: - Bible Filename: - - - Ui_AmendThemeDialog - - - Transparent - Transparent - - - SongMediaItem - - - Search - Search - - - Ui_BibleImportWizard - - - Format: - Format: - - - Ui_AmendThemeDialog - - - Background - Background - - - Ui_BibleImportWizard - - - Importing - Importing - - - Ui_customEditDialog - - - Edit all slides - Edit all slides - - - SongsTab - - - Enable search as you type: - Enable search as you type: - - - Ui_MainWindow - - - Ctrl+S - Ctrl+S - - - SongMediaItem - - - Authors - Authors - - - Ui_PluginViewDialog - - - Active - Active - - - SongMaintenanceForm - - - Couldn't save your topic! - + + Edit + Edit - - - Ui_MainWindow - - Ctrl+O - Ctrl+O - - - Ctrl+N - Ctrl+N - - - SongMaintenanceForm - - - Couldn't add your author! - + + Edit the selected slide. + - - - Ui_AlertEditDialog - - Edit - Edit - - - Ui_EditSongDialog - - - Song Editor - Song Editor - - - AlertsTab - - - Font - Font - - - SlideController - - - Edit and re-preview Song - Edit and re-preview Song - - - Delay between slides in seconds - Delay between slides in seconds - - - MediaManagerItem - - - &Edit - &Edit - - - Ui_AmendThemeDialog - - - Vertical - Vertical - - - Width: - Width: - - - ThemeManager - - - You are unable to delete the default theme! - + + Edit All + Edit All - - - ThemesTab - - 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. - - - BibleMediaItem + + Edit all the slides at once. + + - - Version: - Version: - - - Ui_AboutDialog + + Save + Save + - - OpenLP <version> build <revision> - Open Source Lyrics Projection + + 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: + + + + + Save && Preview + Save && Preview + + + + Error + Error + + + + You need to type in a title. + + + + + You need to add at least one slide + + + + + You have one or more unsaved slides, please either save your slide(s) or clear your changes. + + + + + CustomPlugin.MediaItem + + + Custom + Custom + + + + You haven't selected an item to edit. + + + + + You haven't selected an item to delete. + + + + + ImagePlugin + + + <strong>Image Plugin</strong><br />The image plugin provides displaying of images.<br />One of the distinguishing features of this plugin is the ability to group a number of images together in the service manager, making the displaying of multiple images easier. This plugin can also make use of OpenLP's "timed looping" feature to create a slide show that runs automatically. In addition to this, images from the plugin can be used to override the current theme's background, which renders text-based items like songs with the selected image as a background instead of the background provided by the theme. + + + + + ImagePlugin.ImageTab + + + Images + Images + + + + Image Settings + Image Settings + + + + Slide loop delay: + + + + + sec + sec + + + + ImagePlugin.MediaItem + + + Image + Image + + + + Select Image(s) + Select Image(s) + + + + All Files + + + + + Replace Live Background + + + + + Replace 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. + + + + + MediaPlugin + + + <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. + + + + + MediaPlugin.MediaItem + + + Media + Media + + + + Select Media + Select Media + + + + Replace Live Background + + + + + Replace Background + + + + + You must select a media file to delete. + + + + + OpenLP + + + Image Files + + + + + OpenLP.AboutForm + + + About OpenLP + About OpenLP + + + + OpenLP <version><revision> - Open Source Lyrics Projection OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if OpenOffice.org, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. Find out more about OpenLP: http://openlp.org/ OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider contributing by using the button below. - OpenLP <version> build <revision> - Open Source Lyrics Projection + + + + + About + About + + + + Project Lead + Raoul "superfly" Snyman -OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if OpenOffice.org, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. +Developers + Tim "TRB143" Bentley + Jonathan "gushie" Corwin + Michael "cocooncrash" Gorven + Scott "sguerrieri" Guerrieri + Raoul "superfly" Snyman + Martin "mijiti" Thompson + Jon "Meths" Tibble -Find out more about OpenLP: http://openlp.org/ +Contributors + Meinert "m2j" Jordan + Christian "crichter" Richter + Maikel Stuivenberg + Carsten "catini" Tingaard -OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider contributing by using the button below. - - - SongsPlugin - - - OpenLP 2.0 - OpenLP 2.0 - - - ServiceManager - - - New Service - New Service - - - Ui_TopicsDialog - - - Topic name: - Topic name: - - - ThemeManager - - - File is not a valid theme! - - - - - Ui_BibleImportWizard - - - License Details - License Details - - - Ui_AboutDialog - - - License - License - - - Ui_EditSongDialog - - - R&emove - R&emove - - - Ui_AmendThemeDialog - - - Middle - Middle - - - Ui_customEditDialog - - - Save - Save - - - AlertEditForm - - - Item selected to Edit - Item selected to Edit - - - BibleMediaItem - - - From: - From: - - - Ui_AmendThemeDialog - - - Shadow Color: - Shadow Color: - - - ServiceManager - - - &Notes - &Notes - - - Ui_MainWindow - - - E&xit - E&xit - - - Ui_OpenLPImportDialog - - - Close - Close - - - MainWindow - - - OpenLP Version Updated - OpenLP Version Updated - - - Ui_customEditDialog - - - Replace edited slide - Replace edited slide - - - Add new slide at bottom - Add new slide at bottom - - - EditCustomForm - - - You need to enter a title - You need to enter a title - - - ThemeManager - - - Theme Exists - Theme Exists - - - Ui_MainWindow - - - &Help - &Help - - - Ui_EditVerseDialog - - - Bridge - Bridge - - - Ui_OpenSongExportDialog - - - OpenSong Song Exporter - OpenSong Song Exporter - - - Ui_AmendThemeDialog - - - Vertical Align: - Vertical Align: - - - TestMediaManager - - - Item2 - +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) + + - - Item1 - - - - - Ui_AmendThemeDialog - - - Top - Top - - - BiblesTab - - - Display Dual Bible Verses - Display Dual Bible Verses - - - Ui_MainWindow - - - Toggle Service Manager - Toggle Service Manager - - - MediaManagerItem - - - &Add to Service - &Add to Service - - - AmendThemeForm - - - First Color: - First Color: - - - ThemesTab - - - Song level - Song level - - - alertsPlugin - - - Show an alert message - Show an alert message - - - Ui_MainWindow - - - Ctrl+F1 - Ctrl+F1 - - - Save the current service under a new name - Save the current service under a new name - - - Ui_OpenLPExportDialog - - - Remove Selected - Remove Selected - - - ThemeManager - - - Delete theme - Delete theme - - - ImageTab - - - Image Settings - Image Settings - - - Ui_OpenSongImportDialog - - - OpenSong Song Importer - OpenSong Song Importer - - - SongUsagePlugin - - - &Extract recorded data - &Extract recorded data - - - AlertsTab - - - Font Name: - Font Name: - - - Ui_MainWindow - - - &Web Site - &Web Site - - - MediaManagerItem - - - Send the selected item live - Send the selected item live - - - Ui_MainWindow - - - M&ode - M&ode - - - Translate the interface to your language - Translate the interface to your language - - - Service Manager - Service Manager - - - CustomMediaItem - - - Custom - Custom - - - ImageMediaItem - - - No items selected... - No items selected... - - - Ui_BibleImportWizard - - - OSIS - OSIS - - - SongsPlugin - - - openlp.org 1.0 - openlp.org 1.0 - - - Ui_MainWindow - - - &Theme - &Theme - - - Ui_EditVerseDialog - - - Edit Verse - Edit Verse - - - Ui_MainWindow - - - &Language - &Language - - - ServiceManager - - - Move to end - Move to end - - - 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 ? - - - Ui_OpenSongExportDialog - - - Remove Selected - Remove Selected - - - SongMediaItem - - - Search: - Search: - - - MainWindow - - - 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? - - - EditSongForm - - - Invalid verse entry - values must be Numeric, I,B,C,T,P,E,O - Invalid verse entry - values must be Numeric, I,B,C,T,P,E,O - - - Ui_EditSongDialog - - - &Add to Song - &Add to Song - - - Ui_MainWindow - - - &About - &About - - - BiblesTab - - - Only show new chapter numbers - Only show new chapter numbers - - - ImportWizardForm - - - You need to specify a version name for your Bible! - You need to specify a version name for your Bible! - - - Ui_AlertEditDialog - - - Delete - Delete - - - EditCustomForm - - - Error - Error - - - ThemesTab - - - 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. - - - SongMaintenanceForm - - - This topic can't be deleted, it is currently assigned to at least one song! - - - - - AlertEditForm - - - Item selected to Add - Item selected to Add - - - Ui_AmendThemeDialog - - - Right - Right - - - ThemeManager - - - Save Theme - (%s) - Save Theme - (%s) - - - ImageMediaItem - - - Allow background of live slide to be overridden - Allow background of live slide to be overridden - - - MediaManagerItem - - - Add the selected item(s) to the service - Add the selected item(s) to the service - - - AuthorsForm - - - Error - Error - - - BibleMediaItem - - - Book: - Book: - - - Ui_AmendThemeDialog - - - Font Color: - Font Color: - - - Ui_OpenLPImportDialog - - - Select openlp.org songfile to import: - Select openlp.org songfile to import: - - - Ui_SettingsDialog - - - Settings - Settings - - - BiblesTab - - - Layout Style: - Layout Style: - - - MediaManagerItem - - - Edit the selected - Edit the selected - - - SlideController - - - Move to next - Move to next - - - Ui_MainWindow - - - &Plugin List - &Plugin List - - - BiblePlugin - - - &Bible - &Bible - - - Ui_BibleImportWizard - - - Web Download - Web Download - - - Ui_AmendThemeDialog - - - Horizontal - Horizontal - - - ImportWizardForm - - - Open OSIS file - Open OSIS file - - - Ui_AmendThemeDialog - - - Circular - + + Credits + Credits - - pt - pt - - - Ui_MainWindow - - - &Add Tool... - &Add Tool... - - - SongMaintenanceForm - - - Delete Topic - Delete Topic - - - ServiceManager - - - Move up - Move up - - - Ui_OpenLPImportDialog - - - Lyrics - Lyrics - - - BiblesTab - - - No brackets - No brackets - - - Ui_AlertEditDialog - - - Maintain Alerts - Maintain Alerts - - - Ui_AmendThemeDialog - - - px - px - - - ServiceManager - - - Select a theme for the service - Select a theme for the service - - - ThemesTab - - - Themes - Themes - - - ServiceManager - - - Move to bottom - Move to bottom - - - Ui_PluginViewDialog - - - Status: - Status: - - - Ui_EditSongDialog - - - CCLI Number: - CCLI Number: - - - ImportWizardForm - - - This Bible already exists! Please import a different Bible or first delete the existing one. - + + 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. + - - - Ui_MainWindow - - &Translate - &Translate - - - AlertEditForm - - - Please Save or Clear seletced item - + + License + License - - - BiblesTab - - Bibles - Bibles - - - Ui_SongMaintenanceDialog - - - Authors - Authors - - - SongUsageDetailForm - - - Output File Location - Output File Location - - - BiblesTab - - - { and } - { and } - - - GeneralTab - - - Prompt to save Service before starting New - Prompt to save Service before starting New - - - ImportWizardForm - - - Starting import... - Starting import... - - - BiblesTab - - - Note: -Changes don't affect verses already in the service - Note: -Changes don't affect verses already in the service - - - Ui_EditVerseDialog - - - Intro - Intro - - - ServiceManager - - - Move up order - Move up order - - - PresentationTab - - - available - available - - - ThemeManager - - - default - default - - - SongMaintenanceForm - - - Delete Author - Delete Author - - - Ui_AmendThemeDialog - - - Display Location - Display Location - - - Ui_PluginViewDialog - - - Version: - Version: - - - Ui_AlertEditDialog - - - Add - Add - - - GeneralTab - - - General - General - - - Ui_AmendThemeDialog - - - Y Position: - Y Position: - - - ServiceManager - - - Move down order - Move down order - - - BiblesTab - - - verse per slide - verse per slide - - - Ui_AmendThemeDialog - - - Show Shadow: - Show Shadow: - - - AlertsTab - - - Preview - Preview - - - alertsPlugin - - - <b>Alerts Plugin</b><br>This plugin controls the displaying of alerts on the presentations screen - <b>Alerts Plugin</b><br>This plugin controls the displaying of alerts on the presentations screen - - - GeneralTab - - - Show the splash screen - Show the splash screen - - - Ui_MainWindow - - - New Service - New Service - - - SlideController - - - Move to first - Move to first - - - Ui_MainWindow - - - &Online Help - &Online Help - - - SlideController - - - Blank Screen - Blank Screen - - - Ui_MainWindow - - - Save Service - Save Service - - - Save &As... - Save &As... - - - Toggle the visibility of the Media Manager - Toggle the visibility of the Media Manager - - - BibleMediaItem - - - No Book Found - No Book Found - - - Ui_EditSongDialog - - - Add - Add - - - alertsPlugin - - - &Alert - &Alert - - - BibleMediaItem - - - Advanced - Advanced - - - ImageMediaItem - - - Image(s) - Image(s) - - - Ui_MainWindow - - - F11 - F11 - - - F10 - F10 - - - F12 - F12 - - - Ui_BibleImportWizard - - - Select the import format, and where to import from. - Select the import format, and where to import from. - - - Ui_MainWindow - - - Alt+F7 - Alt+F7 - - - Add an application to the list of tools - Add an application to the list of tools - - - MediaPlugin - - - <b>Media Plugin</b><br>This plugin allows the playing of audio and video media - <b>Media Plugin</b><br>This plugin allows the playing of audio and video media - - - BiblesTab - - - Bible Theme: - Bible Theme: - - - SongsPlugin - - - Export songs in openlp.org 1.0 format - Export songs in openlp.org 1.0 format - - - Ui_MainWindow - - - Theme Manager - Theme Manager - - - AlertsTab - - - Alerts - Alerts - - - Ui_customEditDialog - - - Move slide down 1 - Move slide down 1 - - - Ui_AmendThemeDialog - - - Font: - Font: - - - ServiceManager - - - Load an existing service - Load an existing service - - - Ui_MainWindow - - - Toggle the visibility of the Theme Manager - Toggle the visibility of the Theme Manager - - - PresentationTab - - - Presentations - Presentations - - - SplashScreen - - - Starting - Starting - - - ImageTab - - - Slide Loop Delay: - Slide Loop Delay: - - - SlideController - - - Verse - Verse - - - AlertsTab - - - Alert timeout: - Alert timeout: - - - Ui_MainWindow - - - &Preview Pane - &Preview Pane - - - MediaManagerItem - - - Add a new - + + Contribute + Contribute - - - ThemeManager - - Select Theme Import File - Select Theme Import File + + Close + Close + - - New Theme - New Theme - - - MediaMediaItem + + build %s + + + + + OpenLP.AdvancedTab - - Media - Media - - - Ui_AmendThemeDialog + + Advanced + Advanced + - - Preview - Preview + + UI Settings + + - - Outline Size: - Outline Size: - - - Ui_OpenSongExportDialog + + Number of recent files to display: + + - - Progress: - Progress: - - - AmendThemeForm + + Remember active media manager tab on startup + + - - Second Color: - Second Color: - - - Ui_EditSongDialog + + Double-click to send items straight to live (requires restart) + + + + + OpenLP.AmendThemeForm - - Theme, Copyright Info && Comments - Theme, Copyright Info && Comments - - - Ui_AboutDialog + + Theme Maintenance + Theme Maintenance + - - Credits - Credits - - - BibleMediaItem + + Theme &name: + + - - To: - To: - - - Ui_EditSongDialog + + &Visibility: + + - - Song Book - Song Book - - - alertsPlugin + + Opaque + Opaque + - - F7 - F7 - - - Ui_OpenLPExportDialog + + Transparent + Transparent + - - Author - Author - - - Ui_AmendThemeDialog + + Type: + Type: + - - Wrap Indentation - Wrap Indentation - - - ThemeManager + + Solid Color + Solid Color + - - Import a theme - Import a theme - - + + 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. + + + + + OpenLP.GeneralTab + + + General + General + + + + Monitors + Monitors + + + + Select monitor for output display: + Select monitor for output display: + + + + Display if a single screen + + + + + Application Startup + Application Startup + + + + Show blank screen warning + Show blank screen warning + + + + Automatically open the last service + Automatically open the last service + + + + Show the splash screen + Show the splash screen + + + + Application Settings + Application Settings + + + + Prompt to save Service before starting New + Prompt to save Service before starting New + + + + Preview Next Song from Service Manager + Preview Next Song from Service Manager + + + + CCLI Details + CCLI Details + + + + CCLI number: + + + + + SongSelect username: + + + + + SongSelect password: + + + + + Display Position + + + + + X + + + + + Y + + + + + Height + + + + + Width + + + + + Override display position + + + + + Screen + Screen + + + + primary + primary + + + + OpenLP.LanguageManager + + + Language + + + + + Please restart OpenLP to use your new language setting. + + + + + OpenLP.MainWindow + + + OpenLP 2.0 + OpenLP 2.0 + + + + English + 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>. + + + + + 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 + + + + + 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. + + + + + OpenLP.PluginForm + + + Plugin List + Plugin List + + + + Plugin Details + Plugin Details + + + + Version: + Version: + + + + TextLabel + TextLabel + + + + About: + About: + + + + Status: + Status: + + + + Active + Active + + + + Inactive + Inactive + + + + %s (Inactive) + + + + + %s (Active) + + + + + %s (Disabled) + + + + + OpenLP.ServiceItemEditForm + + + Reorder Service Item + + + + + Up + + + + + Delete + Delete + + + + Down + + + + + OpenLP.ServiceManager + + + New Service + New Service + + + + Create a new service + Create a new service + + + + Open Service + Open Service + + + + Load an existing service + Load an existing service + + + + Save Service + Save Service + + + + Save this service + Save this service + + + + Theme: + Theme: + + + + Select a theme for the service + Select a theme for the service + + + + Move to &top + + + + + Move item to the top of the service. + + + + + Move &up + + + + + Move item up one position in the service. + + + + + Move &down + + + + + Move item down one position in the service. + + + + + Move to &bottom + + + + + Move item to the end of the service. + + + + + &Delete From Service + + + + + Delete the selected item from the service. + + + + + &Add New Item + + + + + &Add to Selected Item + + + + + &Edit Item + &Edit Item + + + + &Reorder Item + + + + + &Notes + &Notes + + + + &Preview Verse + &Preview Verse + + + + &Live Verse + &Live Verse + + + + &Change Item Theme + &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 + + + + + OpenLP.ServiceNoteForm + + + Service Item Notes + Service Item Notes + + + + OpenLP.SettingsForm + + + Configure OpenLP + + + + + 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 + + + + Go to Verse + Go to Verse + + + + OpenLP.ThemeManager + + + New Theme + New Theme + + + + Create a new theme. + + + + + Edit Theme + Edit Theme + + + + Edit a theme. + + + + + Delete Theme + Delete Theme + + + + Delete a theme. + + + + + Import Theme + Import Theme + + + + Import a theme. + + + + + Export Theme + Export Theme + + + + Export a theme. + + + + + &Edit Theme + + + + + &Delete Theme + + + + + Set As &Global Default + + + + + E&xport Theme + + + + + %s (default) + + + + + You must select a theme to edit. + + + + + You must select a theme to delete. + + + + + Delete Confirmation + + + + + Delete theme? + + + + + Error + Error + + + + You are unable to delete the default theme. + + + + + Theme %s is use in %s plugin. + + + + + Theme %s is use by the service manager. + + + + + You have not selected a theme. + + + + + Save Theme - (%s) + Save Theme - (%s) + + + + Theme Exported + + + + + Your theme has been successfully exported. + + + + + Theme Export Failed + + + + + Your theme could not be exported due to an error. + + + + + Select Theme Import File + Select Theme Import File + + + + Theme (*.*) + + + + + 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? + + + + + OpenLP.ThemesTab + + + Themes + Themes + + + + Global Theme + + + + + Theme Level + + + + + S&ong Level + + + + + Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. + Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. + + + + &Service Level + + + + + Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. + Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. + + + + &Global Level + + + + + Use the global theme, overriding any themes associated with either the service or the songs. + Use the global theme, overriding any themes associated with either the service or the songs. + + + PresentationPlugin - - <b>Presentation Plugin</b> <br> Delivers 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. + - - - ImageMediaItem + + + PresentationPlugin.MediaItem - - Image - Image - - - BibleMediaItem + + Presentation + Presentation + - - Clear - Clear - - - Ui_MainWindow + + Select Presentation(s) + Select Presentation(s) + - - Save Service As - Save Service As - - - Ui_AlertDialog + + Automatic + + - - Cancel - Cancel - - - Ui_OpenLPImportDialog + + Present using: + Present using: + - - Import - Import - - - Ui_EditVerseDialog + + File Exists + + - - Chorus - Chorus - - - Ui_EditSongDialog + + A presentation with that filename already exists. + A presentation with that filename already exists. + - - Edit All - Edit All - - - AuthorsForm + + Unsupported File + + - - You need to type in the last name of the author. - You need to type in the last name of the author. - - - SongsTab + + This type of presentation is not supported + + - - Songs Mode - Songs Mode - - - Ui_AmendThemeDialog + + You must select an item to delete. + + + + + PresentationPlugin.PresentationTab - - Left - Left - - - RemotesPlugin + + Presentations + Presentations + - - <b>Remote Plugin</b><br>This plugin provides the ability to send messages to a running version of openlp on a different computer.<br>The Primary use for this would be to send alerts from a creche - <b>Remote Plugin</b><br>This plugin provides the ability to send messages to a running version of openlp on a different computer.<br>The Primary use for this would be to send alerts from a creche - - - ImageTab + + Available Controllers + Available Controllers + - - Images - Images - - - BibleMediaItem + + Advanced + + - - Verse: - Verse: - - - Ui_OpenLPExportDialog + + Allow presentation application to be overriden + + + + + RemotePlugin - - openlp.org Song Exporter - openlp.org Song Exporter + + <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. + + + + + RemotePlugin.RemoteTab - - Song Export List - Song Export List - - - ThemeManager + + Remotes + Remotes + - - Export theme - Export theme - - - Ui_SongMaintenanceDialog + + Serve on IP address: + + - - Delete - Delete - - - Ui_AmendThemeDialog + + Port number: + + - - Theme Name: - Theme Name: - - - Ui_AboutDialog - - - About OpenLP - About OpenLP - - - Ui_MainWindow - - - Toggle the visibility of the Service Manager - Toggle the visibility of the Service Manager - - - PresentationMediaItem - - - A presentation with that filename already exists. - A presentation with that filename already exists. - - - AlertsTab - - - openlp.org - openlp.org - - - ImportWizardForm - - - Invalid Books File - Invalid Books File - - - Ui_OpenLPImportDialog - - - Song Title - Song Title - - - MediaManagerItem - - - &Show Live - &Show Live - - - AlertsTab - - - Keep History: - Keep History: - - - Ui_AmendThemeDialog - - - Image: - Image: - - - Ui_customEditDialog - - - Set Theme for Slides - Set Theme for Slides - - - Ui_MainWindow - - - More information about OpenLP - More information about OpenLP - - - AlertsTab - - - Background Color: - Background Color: - - - SongMaintenanceForm - - - No topic selected! - No topic selected! - - - Ui_MainWindow - - - &Media Manager - &Media Manager - - - &Tools - &Tools - - - AmendThemeForm - - - Background Color: - Background Color: - - - Ui_EditSongDialog - - - A&dd to Song - A&dd to Song - - - Title: - Title: - - - GeneralTab - - - Screen - Screen - - - AlertsTab - - - s - s - - - ImagePlugin - - - <b>Image Plugin</b><br>Allows images of all types to be displayed. If a number of images are selected together and presented on the live controller it is possible to turn them into a timed loop.<br<br>From the plugin if the <i>Override background</i> is chosen and an image is selected any somgs which are rendered will use the selected image from the background instead of the one provied by the theme.<br> - <b>Image Plugin</b><br>Allows images of all types to be displayed. If a number of images are selected together and presented on the live controller it is possible to turn them into a timed loop.<br<br>From the plugin if the <i>Override background</i> is chosen and an image is selected any somgs which are rendered will use the selected image from the background instead of the one provied by the theme.<br> - - - Ui_AlertEditDialog - - - Clear - Clear - - - Ui_BibleImportWizard - - - Please wait while your Bible is imported. - Please wait while your Bible is imported. - - - MediaManagerItem - - - No items selected... - No items selected... - - - Ui_OpenLPImportDialog - - - Select All - Select All - - - Ui_AmendThemeDialog - - - Font Main - Font Main - - - ImageMediaItem - - - Images (*.jpg *jpeg *.gif *.png *.bmp) - Images (*.jpg *jpeg *.gif *.png *.bmp) - - - Ui_OpenLPImportDialog - - - Title - Title - - - Ui_OpenSongExportDialog - - - Select OpenSong song folder: - Select OpenSong song folder: - - - Ui_MainWindow - - - Toggle Media Manager - Toggle Media Manager - - + + Server Settings + + + + SongUsagePlugin - - &Song Usage - &Song Usage - - - GeneralTab - - - Monitors - Monitors - - - EditCustomForm - - - You need to enter a slide - You need to enter a slide - - - Ui_SongMaintenanceDialog - - - Topics - Topics - - - ImportWizardForm - - - You need to specify a file to import your Bible from! - + + &Song Usage Tracking + - - - Ui_EditVerseDialog - - Verse Type - Verse Type - - - OpenSongBible - - - Importing - Importing - - - Ui_EditSongDialog - - - Comments - Comments - - - AlertsTab - - - Bottom - Bottom - - - Ui_MainWindow - - - Create a new Service - Create a new Service - - - AlertsTab - - - Top - Top - - - ServiceManager - - - &Preview Verse - &Preview Verse - - - Ui_PluginViewDialog - - - TextLabel - TextLabel - - - AlertsTab - - - Font Size: - Font Size: - - - Ui_PluginViewDialog - - - About: - About: - - - Inactive - Inactive - - - Ui_OpenSongExportDialog - - - Ready to export - Ready to export - - - Export - Export - - - Ui_PluginViewDialog - - - Plugin List - Plugin List - - - Ui_AmendThemeDialog - - - Transition Active: - Transition Active: - - - Ui_BibleImportWizard - - - Proxy Server (Optional) - Proxy Server (Optional) - - - Ui_EditSongDialog - - - &Manage Authors, Topics, Books - &Manage Authors, Topics, Books - - - Ui_SongUsageDetailDialog - - - Audit Detail Extraction - + + &Delete Tracking Data + - - - Ui_OpenLPExportDialog - - Ready to export - Ready to export - - - EditCustomForm - - - Save && Preview - Save && Preview - - - Ui_OpenLPExportDialog - - - Select All - Select All - - - Ui_SongUsageDetailDialog - - - to - to - - - Ui_AmendThemeDialog - - - Size: - Size: - - - MainWindow - - - OpenLP Main Display Blanked - OpenLP Main Display Blanked - - - Ui_OpenLPImportDialog - - - Remove Selected - Remove Selected - - - Ui_EditSongDialog - - - Delete - Delete - - - ImportWizardForm - - - You need to specify an OpenSong Bible file to import! - You need to specify an OpenSong Bible file to import! - - - PresentationMediaItem - - - File exists - File exists - - - Ui_OpenLPExportDialog - - - Title - Title - - - Ui_OpenSongImportDialog - - - Ready to import - Ready to import - - - SlideController - - - Stop continuous loop - Stop continuous loop - - - s - s - - - SongMediaItem - - - Song Maintenance - Song Maintenance - - - Ui_customEditDialog - - - Edit - Edit - - - Ui_AmendThemeDialog - - - Gradient : - Gradient : - - - ImportWizardForm - - - Invalid Verse File - Invalid Verse File - - - EditSongForm - - - Error - Error - - - Ui_customEditDialog - - - Add New - Add New - - - Ui_AuthorsDialog - - - Display name: - Display name: - - - SongMaintenanceForm - - - Are you sure you want to delete the selected topic? - Are you sure you want to delete the selected topic? - - - Ui_AmendThemeDialog - - - Bold/Italics - Bold/Italics - - - Ui_SongMaintenanceDialog - - - Song Maintenance - Song Maintenance - - - Ui_BibleImportWizard - - - Welcome to the Bible Import Wizard - Welcome to the Bible Import Wizard - - - SongsTab - - - Songs - Songs - - - Ui_BibleImportWizard - - - Password: - Password: - - - Ui_MainWindow - - - &Theme Manager - &Theme Manager - - - MediaManagerItem - - - Preview the selected item - Preview the selected item - - - Ui_BibleImportWizard - - - Version Name: - Version Name: - - - Ui_AboutDialog - - - About - About - - - MediaMediaItem - - - Select Media - Select Media - - - Ui_AmendThemeDialog - - - Horizontal Align: - Horizontal Align: - - - ServiceManager - - - &Edit Item - &Edit Item - - - Ui_AmendThemeDialog - - - Background Type: - Background Type: - - - Ui_MainWindow - - - &Save - &Save - - - OpenLP 2.0 - OpenLP 2.0 - - - ThemeManager - - - A theme with this name already exists, would you like to overwrite it? - A theme with this name already exists, would you like to overwrite it? - - - PresentationMediaItem - - - Select Presentation(s) - Select Presentation(s) - - - ThemeManager - - - Export a theme - Export a theme - - - AmendThemeForm - - - Open file - Open file - - - Ui_TopicsDialog - - - Topic Maintenance - Topic Maintenance - - - Ui_customEditDialog - - - Clear edit area - Clear edit area - - - Ui_AmendThemeDialog - - - Show Outline: - Show Outline: - - - SongBookForm - - - You need to type in a book name! - + + Delete song usage data up to a specified date. + - - - ImportWizardForm - - Open OpenSong Bible - Open OpenSong Bible - - - Ui_MainWindow - - - Look && &Feel - Look && &Feel - - - Ui_BibleImportWizard - - - Ready. - Ready. - - - ThemeManager - - - You have not selected a theme! - + + &Extract Tracking Data + - - - Ui_SongMaintenanceDialog - - Books/Hymnals - Books/Hymnals - - - Ui_AboutDialog + + Generate a report on song usage. + + - - Contribute - Contribute - - - Ui_AmendThemeDialog + + Toggle Tracking + + - - Gradient - Gradient - - - Ui_BibleImportWizard + + Toggle the tracking of song usage. + + - - Books Location: - Books Location: - - - Ui_OpenSongExportDialog + + <strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services. + + + + + SongUsagePlugin.SongUsageDeleteForm - - Full Song List - Full Song List - - - GeneralTab + + Delete Selected Song Usage Events? + + - - SongSelect Password: - SongSelect Password: - - + + Are you sure you want to delete selected Song Usage data? + + + + + Delete Song Usage Data + + + + + SongUsagePlugin.SongUsageDetailForm + + + Output File Location + Output File Location + + + + Song Usage Extraction + + + + + Select Date Range + + + + + to + to + + + + Report Location + Report Location + + + + SongsPlugin + + + &Song + &Song + + + + Import songs using the import wizard. + + + + + Songs of Fellowship (temp menu item) + + + + + Import songs from the VOLS1_2.RTF, sof3words.rtf and sof4words.rtf supplied with the music books + + + + + Generic Document/Presentation Import (temp menu item) + + + + + Import songs from Word/Writer/Powerpoint/Impress + + + + + OpenSong (temp menu item) + + + + + Import songs from OpenSong files(either raw text or ZIPfiles) + + + + + OpenLP v2 Songs (temporary) + + + + + Import an OpenLP v2 song database + + + + + Open Songs of Fellowship file + + + + + Import Error + + + + + Error importing Songs of Fellowship file. +OpenOffice.org must be installed and you must be using an unedited copy of the RTF included with the Songs of Fellowship Music Editions + + + + + Open OpenSong file + + + + + Error importing OpenSong file + + + + + Select OpenLP database(s) to import... + + + + + Database(s) imported + + + + + Your OpenLP v2 song databases have been successfully imported + + + + + Error importing OpenLP v2 database(s) + + + + + Open documents or presentations + + + + + <strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs. + + + + + SongsPlugin.AuthorsForm + + + Author Maintenance + Author Maintenance + + + + Display name: + Display name: + + + + First name: + First name: + + + + Last name: + Last name: + + + + 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 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? + + + + + SongsPlugin.EditSongForm + + + Song Editor + Song Editor + + + + &Title: + + + + + &Lyrics: + + + + + &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 + + + + + Copyright Information + Copyright Information + + + + © + + + + + 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? + + + + + Alt&ernate title: + + + + + &Verse order: + + + + + CCLI number: + + + + + SongsPlugin.EditVerseForm + + + Edit Verse + Edit Verse + + + + &Verse type: + + + + + &Insert + + + + + SongsPlugin.ImportWizardForm + + + No OpenLyrics Files Selected + + + + + You need to add at least one OpenLyrics song file to import from. + + + + + No OpenSong Files Selected + + + + + You need to add at least one OpenSong song file to import from. + + + + + No CCLI Files Selected + + + + + You need to add at least one CCLI file to import from. + + + + + No CSV File Selected + + + + + You need to specify a CSV 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 + + + + CCLI + + + + + CSV + CSV + + + + Add Files... + + + + + Remove File(s) + + + + + Filename: + + + + + Browse... + + + + + Importing + Importing + + + + Please wait while your songs are imported. + + + + + Ready. + Ready. + + + + %p% + + + + + 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. + + + + + CCLI Licence: + CCLI Licence: + + + + Are you sure you want to delete the selected song? + + + + + Are you sure you want to delete the %d selected songs? + + + + + Delete Song(s)? + + + + + SongsPlugin.SongBookForm + + + Song Book Maintenance + + + + + &Name: + + + + + &Publisher: + + + + + Error + Error + + + + You need to type in a name for the book. + + + + + SongsPlugin.SongImport + + + copyright + + + + + © + + + + + SongsPlugin.SongMaintenanceForm + + + Song Maintenance + Song Maintenance + + + + Authors + Authors + + + + Topics + Topics + + + + Song Books + + + + + &Add + + + + + &Edit + &Edit + + + + &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 + 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! + + + + + SongsPlugin.SongsTab + + + Songs + Songs + + + + Songs Mode + Songs Mode + + + + Enable search as you type + + + + + Display verses on live tool bar + + + + + SongsPlugin.TopicsForm + + + Topic Maintenance + Topic Maintenance + + + + Topic name: + Topic name: + + + + Error + Error + + + + You need to type in a topic name! + + + + + SongsPlugin.VerseType + + + Verse + Verse + + + + Chorus + Chorus + + + + Bridge + Bridge + + + + Pre-Chorus + Pre-Chorus + + + + Intro + Intro + + + + Ending + Ending + + + + Other + Other + + diff --git a/resources/i18n/openlp_en_ZA.ts b/resources/i18n/openlp_en_ZA.ts index a85573725..158671e38 100644 --- a/resources/i18n/openlp_en_ZA.ts +++ b/resources/i18n/openlp_en_ZA.ts @@ -1,4457 +1,3893 @@ - - - - BibleMediaItem - - - Quick - Quick - - - Ui_customEditDialog - - - Delete selected slide - Delete selected slide - - - BiblesTab - - - ( and ) - ( and ) - - - RemoteTab - - - Remotes - Remotes - - - Ui_EditSongDialog - - - &Remove - &Remove"&" needs to stay in, it's a shortcut in a menu. - - - Ui_AmendThemeDialog - - - Shadow Size: - Shadow Size: - - - Ui_OpenSongExportDialog - - - Close - Close - - - ThemeManager - - - Import Theme - Import Theme - - - Ui_AmendThemeDialog - - - Slide Transition - Slide Transition - - - SongMaintenanceForm - - - Are you sure you want to delete the selected book? - Are you sure you want to delete the selected book? - - - ThemesTab - - - Theme level - Theme level - - - BibleMediaItem - - - Bible - Bible - - - ServiceManager - - - Save Changes to Service? - Save Changes to Service? - - - SongUsagePlugin - - - &Delete recorded data - &Delete recorded data - - - Ui_OpenLPExportDialog - - - Song Title - Song Title - - - Ui_customEditDialog - - - Edit selected slide - Edit selected slide - - - SongMediaItem - - - CCLI Licence: - CCLI License: - - - Ui_SongUsageDeleteDialog - - - Audit Delete - Audit Delete - - - Ui_BibleImportWizard - - - Bible Import Wizard - Bible Import Wizard - - - Ui_customEditDialog - - - Edit All - Edit All - - - Ui_ServiceNoteEdit - - - Service Item Notes - Service Item Notes - - - SongMaintenanceForm - - - Couldn't save your author! - Couldn't save your author! - - - Ui_customEditDialog - - - Clear - Clear - - - ThemesTab - - - Global theme - Global theme - - - SongUsagePlugin - - - Start/Stop live song usage recording - Start/Stop live song usage recording - - - MainWindow - - - The Main Display has been blanked out - The Main Display has been blanked out - - - Ui_OpenSongExportDialog - - - Lyrics - Lyrics - - - Ui_AlertDialog - - - Display - Display - - - Ui_customEditDialog - - - Delete - Delete - - - Ui_EditVerseDialog - - - Verse - Verse - - - SongMaintenanceForm - - - This author can't be deleted, they are currently assigned to at least one song! - This author can't be deleted, they are currently assigned to at least one song! - - - ThemeManager - - - Create a new theme - Create a new theme - - - Ui_MainWindow - - - Open an existing service - Open an existing service - - - SlideController - - - Move to previous - Move to previous - - - SongsPlugin - - - &Song - &Song - - - Ui_PluginViewDialog - - - Plugin Details - Plugin Details - - - AlertsTab - - - pt - pt - - - Edit History: - Edit History: - - - Ui_MainWindow - - - &File - &File - - - SongMaintenanceForm - - - Couldn't add your book! - Couldn't add your book! - - - BiblesTab - - - verse per line - verse per line - - - Ui_customEditDialog - - - Theme: - Theme: - - - SongMaintenanceForm - - - Error - Error - - - Ui_BibleImportWizard - - - Bible: - Bible: - - - ImportWizardForm - - - You need to specify a file with books of the Bible to use in the import! - You need to specify a file with books of the Bible to use in the import! - - - ThemeManager - - - Delete Theme - Delete Theme - - - SplashScreen - - - Splash Screen - Splash Screen - - - SongMediaItem - - - Song - Song - - - SongUsageDeleteForm - - - Delete Selected Audit Events? - Delete selected song usage events? - - - Ui_OpenSongExportDialog - - - Song Title - Song Title - - - Ui_AmendThemeDialog - - - Bottom - Bottom - - - Ui_MainWindow - - - List the Plugins - List the plugins - - - SongMaintenanceForm - - - No author selected! - No author selected! - - - SongUsagePlugin - - - <b>SongUsage Plugin</b><br>This plugin records the use of songs and when they have been used during a live service - <b>SongUsage Plugin</b><br>This plugin records the use of songs and when they have been used during a live service - - - Ui_customEditDialog - - - Move slide Up 1 - Move slide up 1 - - - SongsPlugin - - - OpenSong - OpenSong - - - AlertsManager - - - Alert message created and delayed - Alert message created and delayed - - - Ui_EditSongDialog - - - Alternative Title: - Alternative Title: - - - ServiceManager - - - Open Service - Open Service - - - BiblesTab - - - Display Style: - Display Style: - - - Ui_AmendThemeDialog - - - Image - Image - - - EditSongForm - - - You need to enter a song title. - You need to enter a song title. - - - ThemeManager - - - Error - Error - - - ImportWizardForm - - - Invalid Bible Location - Invalid Bible Location - - - ThemesTab - - - Global level - Global level - - - ThemeManager - - - Make Global - Make Global - - - Ui_MainWindow - - - &Service Manager - &Service Manager - - - Ui_OpenLPImportDialog - - - Author - Author - - - Ui_AmendThemeDialog - - - Height: - Height: - - - ThemeManager - - - Delete a theme - Delete a theme - - - Ui_BibleImportWizard - - - Crosswalk - Crosswalk - - - SongBookForm - - - Error - Error - - - Ui_AuthorsDialog - - - Last name: - Last name: - - - Ui_customEditDialog - - - Title: - Title: - - - ImportWizardForm - - - You need to set a copyright for your Bible! Bibles in the Public Domain need to be marked as such. - You need to set a copyright for your Bible! Bibles in the Public Domain need to be marked as such. - - - SongMediaItem - - - Maintain the lists of authors, topics and books - Maintain the lists of authors, topics and books - - - Ui_AlertEditDialog - - - Save - Save - - - EditCustomForm - - - You have unsaved data - You have unsaved data - - - Ui_AmendThemeDialog - - - Outline - Outline - - - BibleMediaItem - - - Text Search - Text Search - - - Ui_BibleImportWizard - - - CSV - CSV - - - SongUsagePlugin - - - Delete song usage to specified date - Delete song usage to specified date - - - Ui_SongUsageDetailDialog - - - Report Location - Report Location - - - Ui_BibleImportWizard - - - OpenSong - OpenSong - - - Ui_MainWindow - - - Open Service - Open Service - - - BibleMediaItem - - - Find: - Find: - - - ImageMediaItem - - - Select Image(s) - Select Image(s) - - - BibleMediaItem - - - Search Type: - Search Type: - - - Ui_MainWindow - - - Media Manager - Media Manager - - - Alt+F4 - Alt+F4 - - - MediaManagerItem - - - &Preview - &Preview - - - GeneralTab - - - CCLI Details - CCLI Details - - - BibleMediaItem - - - Bible not fully loaded - Bible not fully loaded - - - Ui_MainWindow - - - Toggle the visibility of the Preview Panel - Toggle the visibility of the Preview Panel - - - ImportWizardForm - - - Bible Exists - Bible Exists - - - Ui_MainWindow - - - &User Guide - &User Guide - - - SongUsageDeleteForm - - - Are you sure you want to delete selected Audit Data? - Are you sure you want to delete the selected song usage data? - - - Ui_MainWindow - - - Set the interface language to English - Set the interface language to English - - - Ui_AmendThemeDialog - - - Main Font - Main Font - - - ImportWizardForm - - - Empty Copyright - Empty Copyright - - + + + + AlertsPlugin + + + &Alert + + + + + Show an alert message. + + + + + <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of nursery alerts on the display screen + + + + + AlertsPlugin.AlertForm + + + Alert Message + Alert Message + + + + Alert &text: + + + + + &Parameter(s): + + + + + &New + &New + + + + &Save + + + + + &Delete + + + + + Displ&ay + + + + + Display && Cl&ose + + + + + &Close + + + + + New Alert + + + + + You haven't specified any text for your alert. Please type in some text before clicking New. + + + + + AlertsPlugin.AlertsManager + + + Alert message created and displayed. + + + + + AlertsPlugin.AlertsTab + + + Alerts + + + + + Font + Font + + + + Font name: + + + + + Font color: + + + + + Background color: + + + + + Font size: + + + + + pt + pt + + + + Alert timeout: + + + + + s + + + + + Location: + Location: + + + + Preview + + + + + OpenLP 2.0 + + + + + Top + + + + + Middle + Middle + + + + Bottom + + + + + BiblesPlugin + + + &Bible + + + + + <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display bible verses from different sources during the service. + + + + + BiblesPlugin.BibleDB + + + Book not found + + + + + The book you requested could not be found in this bible. Please check your spelling and that this is a complete bible not just one testament. + + + + + BiblesPlugin.BiblesTab + + + Bibles + Bibles + + + + Verse Display + Verse Display + + + + Only show new chapter numbers + Only show new chapter numbers + + + + Layout style: + + + + + Display style: + + + + + Bible theme: + + + + + Verse Per Slide + + + + + Verse Per Line + + + + + Continuous + + + + + No Brackets + + + + + ( And ) + + + + + { And } + + + + + [ And ] + + + + + Note: +Changes do not affect verses already in the service. + + + + + Display dual Bible verses + + + + + BiblesPlugin.ImportWizardForm + + + Bible Import Wizard + Bible Import Wizard + + + + Welcome to the Bible Import Wizard + + + + + This wizard will help you to import Bibles from a variety of formats. Click the next button below to start the process by selecting a format to import from. + This wizard will help you to import Bibles from a variety of formats. Click the next button below to start the process by selecting a format to import from. + + + + Select Import Source + Select Import Source + + + + Select the import format, and where to import from. + + + + + Format: + Format: + + + + OSIS + OSIS + + + + CSV + CSV + + + + OpenSong + OpenSong + + + + Web Download + Web Download + + + + File location: + + + + + Books location: + + + + + Verse location: + + + + + Bible filename: + + + + + Location: + Location: + + + + Crosswalk + Crosswalk + + + + BibleGateway + BibleGateway + + + + Bible: + Bible: + + + + Download Options + Download Options + + + + Server: + Server: + + + + Username: + Username: + + + + Password: + + + + + Proxy Server (Optional) + + + + + License Details + License Details + + + + Set up the Bible's license details. + Set up the Bible's license details. + + + + Version name: + + + + + Copyright: + Copyright: + + + + Permission: + Permission: + + + + Importing + + + + + Please wait while your Bible is imported. + + + + + Ready. + + + + + Invalid Bible Location + Invalid Bible Location + + + + You need to specify a file to import your Bible from. + + + + + Invalid Books File + + + + + You need to specify a file with books of the Bible to use in the import. + + + + + Invalid Verse File + + + + + You need to specify a file of Bible verses to import. + + + + + Invalid OpenSong Bible + Invalid OpenSong Bible + + + + You need to specify an OpenSong Bible file to import. + + + + + Empty Version Name + Empty Version Name + + + + You need to specify a version name for your Bible. + + + + + Empty Copyright + Empty Copyright + + + + You need to set a copyright for your Bible! Bibles in the Public Domain need to be marked as such. + You need to set a copyright for your Bible! Bibles in the Public Domain need to be marked as such. + + + + Bible Exists + Bible Exists + + + + This Bible already exists! Please import a different Bible or first delete the existing one. + This Bible already exists! Please import a different Bible or first delete the existing one. + + + + Open OSIS File + + + + + Open Books CSV File + + + + + Open Verses CSV File + + + + + Open OpenSong Bible + + + + + Starting import... + Starting import... + + + + Finished import. + Finished import. + + + + Your Bible import failed. + Your Bible import failed. + + + + BiblesPlugin.MediaItem + + + Bible + Bible + + + + Quick + Quick + + + + Advanced + + + + + Version: + + + + + Dual: + Dual: + + + + Search type: + + + + + Find: + Find: + + + + Search + Search + + + + Results: + Results: + + + + Book: + Book: + + + + Chapter: + Chapter: + + + + Verse: + + + + + From: + From: + + + + To: + + + + + Verse Search + Verse Search + + + + Text Search + Text Search + + + + Clear + + + + + Keep + Keep + + + + 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. + + + + + BiblesPlugin.Opensong + + + Importing + + + + CustomPlugin - - <b>Custom Plugin</b><br>This plugin allows slides to be displayed on the screen in the same way songs are. This plugin provides greater freedom over the songs plugin.<br> - <b>Custom Plugin</b><br>This plugin allows slides to be displayed on the screen in the same way songs are. This plugin provides greater freedom over the songs plugin. - - - AuthorsForm - - - You need to type in the first name of the author. - You need to type in the first name of the author. - - - SongsTab - - - Display Verses on Live Tool bar: - Display Verses on Live Tool bar: - - - ServiceManager - - - Move to top - Move to top - - - ImageMediaItem - - - Override background - Override background - - - Ui_SongMaintenanceDialog - - - Edit - Edit - - - Ui_OpenSongExportDialog - - - Select All - Select All - - - ThemesTab - - - 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. - - - PresentationMediaItem - - - Presentation - Presentation - - - Ui_AmendThemeDialog - - - Solid Color - Solid Colour - - - CustomTab - - - Custom - Custom - - - Ui_OpenLPImportDialog - - - Ready to import - Ready to import - - - MainWindow - - - OpenLP version %s has been updated to version %s - -You can obtain the latest version from http://openlp.org - OpenLP version %s has been updated to version %s - -You can obtain the latest version from http://openlp.org - - - Ui_BibleImportWizard - - - File Location: - File Location: - - - SlideController - - - Go to Verse - Go to Verse - - - Ui_MainWindow - - - &Import - &Import - - - Quit OpenLP - Quit OpenLP - - - Ui_BibleImportWizard - - - This wizard will help you to import Bibles from a variety of formats. Click the next button below to start the process by selecting a format to import from. - This wizard will help you to import Bibles from a variety of formats. Click the next button below to start the process by selecting a format to import from. - - - SongMaintenanceForm - - - Couldn't add your topic! - Couldn't add your topic! - - - ImportWizardForm - - - Empty Version Name - Empty Version Name - - - Ui_MainWindow - - - &Preview Panel - &Preview Panel - - - SlideController - - - Start continuous loop - Start continuous loop - - - ServiceManager - - - Move down - Move down - - - GeneralTab - - - primary - primary - - - Ui_EditSongDialog - - - Add a Theme - Add a Theme - - - Ui_MainWindow - - - &New - &New - - - Ui_customEditDialog - - - Credits: - Credits: - - - SlideController - - - Live - Live - - - GeneralTab - - - Show blank screen warning - Show blank screen warning - - - BiblesTab - - - continuous - continuous - - - Ui_EditVerseDialog - - - Number - Number - - - GeneralTab - - - Application Startup - Application Startup - - - Ui_AmendThemeDialog - - - Use Default Location: - Use Default Location: - - - Ui_OpenSongImportDialog - - - Import - Import - - - Ui_AmendThemeDialog - - - Other Options - Other Options - - - Ui_EditSongDialog - - - Verse Order: - Verse Order: - - - Ui_SongUsageDetailDialog - - - ASelect Date Range - ASelect Date Range - - - Ui_MainWindow - - - Default Theme: - Default Theme: - - - Toggle Preview Panel - Toggle Preview Panel - - - SongMediaItem - - - Lyrics - Lyrics - - - Ui_OpenLPImportDialog - - - Progress: - Progress: - - - Ui_AmendThemeDialog - - - Shadow - Shadow - - - GeneralTab - - - Select monitor for output display: - Select monitor for output display: - - - Ui_MainWindow - - - &Settings - &Settings - - - Ui_AmendThemeDialog - - - Italics - Italics - - - ServiceManager - - - Create a new service - Create a new service - - - Ui_AmendThemeDialog - - - Background: - Background: - - - Ui_OpenLPImportDialog - - - openlp.org Song Importer - openlp.org Song Importer - - - Ui_BibleImportWizard - - - Copyright: - Copyright: - - - ThemesTab - - - Service level - Service level - - - BiblesTab - - - [ and ] - [ and ] - - - Ui_BibleImportWizard - - - Verse Location: - Verse Location: - - - MediaManagerItem - - - You must select one or more items - You must select one or more items - - - GeneralTab - - - Application Settings - Application Settings - - - ServiceManager - - - Save this service - Save this service - - - ImportWizardForm - - - Open Books CSV file - Open Books CSV file - - - GeneralTab - - - SongSelect Username: - SongSelect Username: - - - Ui_AmendThemeDialog - - - X Position: - X Position: - - - BibleMediaItem - - - No matching book could be found in this Bible. - No matching book could be found in this Bible. - - - Ui_BibleImportWizard - - - Server: - Server: - - - SongMaintenanceForm - - - Couldn't save your book! - Couldn't save your book! - - - Ui_EditVerseDialog - - - Ending - Ending - - - CustomTab - - - Display Footer: - Display Footer: - - - ImportWizardForm - - - Invalid OpenSong Bible - Invalid OpenSong Bible - - - GeneralTab - - - CCLI Number: - CCLI Number: - - - Ui_AmendThemeDialog - - - Center - Centre - - - ServiceManager - - - Theme: - Theme: - - - Ui_MainWindow - - - &Live - &Live - - - Ui_AmendThemeDialog - - - <Color2> - <Color2> - - - Ui_MainWindow - - - English - English - - - ImageMediaItem - - - You must select one or more items - You must select one or more items - - - Ui_AuthorsDialog - - - First name: - First name: - - - Ui_OpenLPExportDialog - - - Select openlp.org export filename: - Select openlp.org export filename: - - - Ui_BibleImportWizard - - - Permission: - Permission: - - - Ui_OpenSongImportDialog - - - Close - Close - - - Ui_AmendThemeDialog - - - Opaque - Opaque - - - SongMaintenanceForm - - - This book can't be deleted, it is currently assigned to at least one song! - This book can't be deleted, it is currently assigned to at least one song! - - - ImportWizardForm - - - Your Bible import failed. - Your Bible import failed. - - - SlideController - - - Start playing media - Start playing media - - - SongMediaItem - - - Type: - Type: - - - Ui_AboutDialog - - - Close - Close - - - TopicsForm - - - You need to type in a topic name! - You need to type in a topic name! - - - Ui_OpenSongExportDialog - - - Song Export List - Song Export List - - - BibleMediaItem - - - Dual: - Dual: - - - ImageTab - - - sec - sec - - - ServiceManager - - - Delete From Service - Delete From Service - - - GeneralTab - - - Automatically open the last service - Automatically open the last service - - - Ui_OpenLPImportDialog - - - Song Import List - Song Import List - - - Ui_OpenSongExportDialog - - - Author - Author - - - Ui_AmendThemeDialog - - - Outline Color: - Outline Colour: - - - Ui_BibleImportWizard - - - Select Import Source - Select Import Source - - - Ui_MainWindow - - - F9 - F9 - - - F8 - F8 - - - ServiceManager - - - &Change Item Theme - &Change Item Theme - - - Ui_OpenSongImportDialog - - - OpenSong Folder: - OpenSong Folder: - - - Ui_OpenLPImportDialog - - - Import File Song List - Import File Song List - - - Ui_customEditDialog - - - Edit Custom Slides - Edit Custom Slides - - - Ui_BibleImportWizard - - - Set up the Bible's license details. - Set up the Bible's license details. - - - Ui_AmendThemeDialog - - - Alignment - Alignment - - - SongMaintenanceForm - - - Delete Book - Delete Book - - - ThemeManager - - - Edit a theme - Edit a theme - - - Ui_BibleImportWizard - - - BibleGateway - BibleGateway - - - GeneralTab - - - Preview Next Song from Service Manager - Preview Next Song from Service Manager - - - Ui_EditSongDialog - - - Title && Lyrics - Title && Lyrics - - - SongMaintenanceForm - - - No book selected! - No book selected! - - - SlideController - - - Move to live - Move to live - - - Ui_EditVerseDialog - - - Other - Other - - - Ui_EditSongDialog - - - Theme - Theme - - - ServiceManager - - - Save Service - Save Service - - - Ui_MainWindow - - - Save the current service to disk - Save the current service to disk - - - BibleMediaItem - - - Chapter: - Chapter: - - - Search - Search - - - PresentationTab - - - Available Controllers - Available Controllers - - - ImportWizardForm - - - Open Verses CSV file - Open Verses CSV file - - - TopicsForm - - - Error - Error - - - RemoteTab - - - Remotes Receiver Port - Remotes Receiver Port - - - Ui_MainWindow - - - &View - &View - - - Ui_AmendThemeDialog - - - Normal - Normal - - - Ui_OpenLPExportDialog - - - Close - Close - - - Ui_BibleImportWizard - - - Username: - Username: - - - ThemeManager - - - Edit Theme - Edit Theme - - - SlideController - - - Preview - Preview - - - Ui_AlertDialog - - - Alert Message - Alert Message - - - ImportWizardForm - - - Finished import. - Finished import. - - - You need to specify a file of Bible verses to import! - You need to specify a file of Bible verses to import! - - - AlertsTab - - - Location: - Location: - - - Ui_EditSongDialog - - - Authors, Topics && Book - Authors, Topics && Book - - - EditSongForm - - - You need to enter some verses. - You need to enter some verses. - - - Ui_BibleImportWizard - - - Download Options - Download Options - - - BiblePlugin - - - <strong>Bible Plugin</strong><br />This plugin allows bible verses from different sources to be displayed on the screen during the service. - <strong>Bible Plugin</strong><br />This plugin allows bible verses from different sources to be displayed on the screen during the service. - - - Ui_EditSongDialog - - - Copyright Information - Copyright Information - - - Ui_MainWindow - - - &Export - &Export - - - Ui_AmendThemeDialog - - - Bold - Bold - - - SongsPlugin - - - Export songs in OpenLP 2.0 format - Export songs in OpenLP 2.0 format - - - MediaManagerItem - - - Load a new - Load a new - - - AlertEditForm - - - Missing data - Missing data - - - SongsPlugin - - - <b>Song Plugin</b> <br>This plugin allows Songs to be managed and displayed.<br> - <b>Song Plugin</b><br>This plugin allows songs to be managed and displayed.<br> - - - Ui_AmendThemeDialog - - - Footer Font - Footer Font - - - EditSongForm - - - Invalid verse entry - vX - Invalid verse entry - vX - - - MediaManagerItem - - - Delete the selected item - Delete the selected item - - - Ui_OpenLPExportDialog - - - Export - Export - - - Ui_BibleImportWizard - - - Location: - Location: - - - BibleMediaItem - - - Keep - Keep - - - SongUsagePlugin - - - Generate report on Song Usage - Generate report on Song Usage - - - Ui_EditSongDialog - - - Topic - Topic - - - Ui_MainWindow - - - &Open - &Open - - - AuthorsForm - - - You haven't set a display name for the author, would you like me to combine the first and last names for you? - You haven't set a display name for the author, would you like me to combine the first and last names for you? - - - AmendThemeForm - - - Slide Height is %s rows - Slide Height is %s rows - - - Ui_EditVerseDialog - - - Pre-Chorus - Pre-Chorus - - - Ui_EditSongDialog - - - Lyrics: - Lyrics: - - - Ui_AboutDialog - - - Project Lead - Raoul "superfly" Snyman - -Developers - Tim "TRB143" Bentley - Jonathan "gushie" Corwin - Michael "cocooncrash" Gorven - Scott "sguerrieri" Guerrieri - Raoul "superfly" Snyman - Maikel Stuivenberg - Martin "mijiti" Thompson - Jon "Meths" Tibble - Carsten "catini" Tingaard - -Testers - Wesley "wrst" Stout - Project Lead - Raoul "superfly" Snyman - -Developers - Tim "TRB143" Bentley - Jonathan "gushie" Corwin - Michael "cocooncrash" Gorven - Scott "sguerrieri" Guerrieri - Raoul "superfly" Snyman - Maikel Stuivenberg - Martin "mijiti" Thompson - Jon "Meths" Tibble - Carsten "catini" Tingaard - -Testers - Wesley "wrst" Stout - - - SongMediaItem - - - Titles - Titles - - - Ui_OpenLPExportDialog - - - Lyrics - Lyrics - - - PresentationMediaItem - - - Present using: - Present using: - - - SongMediaItem - - - Clear - Clear - - - ServiceManager - - - &Live Verse - &Live Verse - - - Ui_OpenSongImportDialog - - - Progress: - Progress: - - - Ui_MainWindow - - - Toggle Theme Manager - Toggle Theme Manager - - - Ui_AlertDialog - - - Alert Text: - Alert Text: - - - Ui_EditSongDialog - - - Edit - Edit - - - AlertsTab - - - Font Color: - Font Colour: - - - Ui_AmendThemeDialog - - - Theme Maintenance - Theme Maintenance - - - CustomTab - - - Custom Display - Custom Display - - - Ui_OpenSongExportDialog - - - Title - Title - - - Ui_AmendThemeDialog - - - <Color1> - <Color1> - - - Ui_EditSongDialog - - - Authors - Authors - - - ThemeManager - - - Export Theme - Export Theme - - - ServiceManager - - - (N) - (N) - - - Ui_SongBookDialog - - - Name: - Name: - - - Ui_AuthorsDialog - - - Author Maintenance - Author Maintenance - - - Ui_AmendThemeDialog - - - Font Footer - Font Footer - - - BiblesTab - - - Verse Display - Verse Display - - - Ui_MainWindow - - - &Options - &Options - - - BibleMediaItem - - - Results: - Results: - - - Ui_OpenLPExportDialog - - - Full Song List - Full Song List - - - SlideController - - - Move to last - Move to last - - - Ui_OpenLPExportDialog - - - Progress: - Progress: - - - Ui_SongMaintenanceDialog - - - Add - Add - - - SongMaintenanceForm - - - Are you sure you want to delete the selected author? - Are you sure you want to delete the selected author? - - - SongUsagePlugin - - - Song Usage Status - Song Usage Status - - - BibleMediaItem - - - Verse Search - Verse Search - - - Ui_SongBookDialog - - - Edit Book - Edit Book - - - EditSongForm - - - Save && Preview - Save && Preview - - - Ui_SongBookDialog - - - Publisher: - Publisher: - - - Ui_AmendThemeDialog - - - Font Weight: - Font Weight: - - - Ui_BibleImportWizard - - - Bible Filename: - Bible Filename: - - - Ui_AmendThemeDialog - - - Transparent - Transparent - - - SongMediaItem - - - Search - Search - - - Ui_BibleImportWizard - - - Format: - Format: - - - Ui_AmendThemeDialog - - - Background - Background - - - Ui_BibleImportWizard - - - Importing - Importing - - - Ui_customEditDialog - - - Edit all slides - Edit all slides. - - - SongsTab - - - Enable search as you type: - Enable search as you type - - - Ui_MainWindow - - - Ctrl+S - Ctrl+S - - - SongMediaItem - - - Authors - Authors - - - Ui_PluginViewDialog - - - Active - Active - - - SongMaintenanceForm - - - Couldn't save your topic! - Couldn't save your topic! - - - Ui_MainWindow - - - Ctrl+O - Ctrl+O - - - Ctrl+N - Ctrl+N - - - SongMaintenanceForm - - - Couldn't add your author! - Couldn't add your author! - - - Ui_AlertEditDialog - - - Edit - Edit - - - Ui_EditSongDialog - - - Song Editor - Song Editor - - - AlertsTab - - - Font - Font - - - SlideController - - - Edit and re-preview Song - Edit and re-preview Song. - - - Delay between slides in seconds - Delay between slides in seconds. - - - MediaManagerItem - - - &Edit - + + <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. + - - - Ui_AmendThemeDialog + + + CustomPlugin.CustomTab - - Vertical - Vertical - - - Width: - Width: - - - ThemeManager - - - You are unable to delete the default theme! - + + Custom + Custom - - - ThemesTab - - 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. - - - BibleMediaItem + + Custom Display + Custom Display + - - Version: - Version: - - - Ui_AboutDialog + + Display footer + + + + + CustomPlugin.EditCustomForm - - OpenLP <version> build <revision> - Open Source Lyrics Projection + + Edit Custom Slides + Edit Custom Slides + + + + Move slide up once 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 + + + + 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: + + + + + Save && Preview + + + + + Error + Error + + + + You need to type in a title. + + + + + You need to add at least one slide + + + + + You have one or more unsaved slides, please either save your slide(s) or clear your changes. + + + + + CustomPlugin.MediaItem + + + Custom + Custom + + + + You haven't selected an item to edit. + + + + + You haven't selected an item to delete. + + + + + ImagePlugin + + + <strong>Image Plugin</strong><br />The image plugin provides displaying of images.<br />One of the distinguishing features of this plugin is the ability to group a number of images together in the service manager, making the displaying of multiple images easier. This plugin can also make use of OpenLP's "timed looping" feature to create a slide show that runs automatically. In addition to this, images from the plugin can be used to override the current theme's background, which renders text-based items like songs with the selected image as a background instead of the background provided by the theme. + + + + + ImagePlugin.ImageTab + + + Images + + + + + Image Settings + Image Settings + + + + Slide loop delay: + + + + + sec + sec + + + + ImagePlugin.MediaItem + + + Image + + + + + Select Image(s) + Select Image(s) + + + + All Files + + + + + Replace Live Background + + + + + Replace 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. + + + + + MediaPlugin + + + <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. + + + + + MediaPlugin.MediaItem + + + Media + + + + + Select Media + + + + + Replace Live Background + + + + + Replace Background + + + + + You must select a media file to delete. + + + + + OpenLP + + + Image Files + + + + + OpenLP.AboutForm + + + About OpenLP + + + + + OpenLP <version><revision> - Open Source Lyrics Projection OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if OpenOffice.org, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. Find out more about OpenLP: http://openlp.org/ OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider contributing by using the button below. - - - - - SongsPlugin - - - OpenLP 2.0 - OpenLP 2.0 - - - ServiceManager - - - New Service - New Service - - - Ui_TopicsDialog - - - Topic name: - Topic name: - - - ThemeManager - - - File is not a valid theme! - File is not a valid theme! - - - Ui_BibleImportWizard - - - License Details - License Details - - - Ui_AboutDialog - - - License - License - - - Ui_EditSongDialog - - - R&emove - - - - - Ui_AmendThemeDialog - - - Middle - Middle - - - Ui_customEditDialog - - - Save - Save - - - AlertEditForm - - - Item selected to Edit - Item selected to Edit - - - BibleMediaItem - - - From: - From: - - - Ui_AmendThemeDialog - - - Shadow Color: - Shadow Color: - - - ServiceManager - - - &Notes - - - - - Ui_MainWindow - - - E&xit - - - - - Ui_OpenLPImportDialog - - - Close - Close - - - MainWindow - - - OpenLP Version Updated - OpenLP Version Updated - - - Ui_customEditDialog - - - Replace edited slide - Replace edited slide. - - - Add new slide at bottom - Add new slide at bottom. - - - EditCustomForm - - - You need to enter a title - You need to enter a title. - - - ThemeManager - - - Theme Exists - Theme Exists - - - Ui_MainWindow - - - &Help - - - - - Ui_EditVerseDialog - - - Bridge - Bridge - - - Ui_OpenSongExportDialog - - - OpenSong Song Exporter - OpenSong Song Exporter - - - Ui_AmendThemeDialog - - - Vertical Align: - Vertical Align: - - - TestMediaManager - - - Item2 - - - - - Item1 - - - - - Ui_AmendThemeDialog - - - Top - Top - - - BiblesTab - - - Display Dual Bible Verses - Display Dual Bible Verses - - - Ui_MainWindow - - - Toggle Service Manager - Toggle Service Manager. - - - MediaManagerItem - - - &Add to Service - - - - - AmendThemeForm - - - First Color: - First Colour: - - - ThemesTab - - - Song level - Song level - - - alertsPlugin - - - Show an alert message - Show an alert message. - - - Ui_MainWindow - - - Ctrl+F1 - Ctrl+F1 - - - Save the current service under a new name - Save the current service under a new name. - - - Ui_OpenLPExportDialog - - - Remove Selected - Remove Selected - - - ThemeManager - - - Delete theme - Delete theme - - - ImageTab - - - Image Settings - Image Settings - - - Ui_OpenSongImportDialog - - - OpenSong Song Importer - OpenSong Song Importer - - - SongUsagePlugin - - - &Extract recorded data - - - - - AlertsTab - - - Font Name: - Font Name: - - - Ui_MainWindow - - - &Web Site - - - - - MediaManagerItem - - - Send the selected item live - Send the selected item live. - - - Ui_MainWindow - - - M&ode - - - - - Translate the interface to your language - Translate the interface to your language. - - - Service Manager - Service Manager - - - CustomMediaItem - - - Custom - Custom - - - ImageMediaItem - - - No items selected... - No items selected... - - - Ui_BibleImportWizard - - - OSIS - OSIS - - - SongsPlugin - - - openlp.org 1.0 - openlp.org 1.0 - - - Ui_MainWindow - - - &Theme - - - - - Ui_EditVerseDialog - - - Edit Verse - Edit Verse - - - Ui_MainWindow - - - &Language - - - - - ServiceManager - - - Move to end - Move to the end - - - 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? - - - Ui_OpenSongExportDialog - - - Remove Selected - Remove Selected - - - SongMediaItem - - - Search: - Search: - - - MainWindow - - - 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? - - - EditSongForm - - - Invalid verse entry - values must be Numeric, I,B,C,T,P,E,O - Invalid verse entry - values must be Numeric, I,B,C,T,P,E,O - - - Ui_EditSongDialog - - - &Add to Song - - - - - Ui_MainWindow - - - &About - - - - - BiblesTab - - - Only show new chapter numbers - Only show new chapter numbers - - - ImportWizardForm - - - You need to specify a version name for your Bible! - You need to specify a version name for the Bible! - - - Ui_AlertEditDialog - - - Delete - Delete - - - EditCustomForm - - - Error - Error - - - ThemesTab - - - 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. - - - SongMaintenanceForm - - - This topic can't be deleted, it is currently assigned to at least one song! - This topic can't be deleted - it is currently assigned to at least one song! - - - AlertEditForm - - - Item selected to Add - Item selected to Add - - - Ui_AmendThemeDialog - - - Right - Right - - - ThemeManager - - - Save Theme - (%s) - Save Theme - (%s) - - - ImageMediaItem - - - Allow background of live slide to be overridden - Allow background of live slide to be overridden. - - - MediaManagerItem - - - Add the selected item(s) to the service - Add the selected item(s) to the service. - - - AuthorsForm - - - Error - Error - - - BibleMediaItem - - - Book: - Book: - - - Ui_AmendThemeDialog - - - Font Color: - Font Colour: - - - Ui_OpenLPImportDialog - - - Select openlp.org songfile to import: - Select openlp.org songfile to import: - - - Ui_SettingsDialog - - - Settings - Settings - - - BiblesTab - - - Layout Style: - Layout Style: - - - MediaManagerItem - - - Edit the selected - Edit the selected - - - SlideController - - - Move to next - Move to next slide. - - - Ui_MainWindow - - - &Plugin List - - - - - BiblePlugin - - - &Bible - - - - - Ui_BibleImportWizard - - - Web Download - Web Download - - - Ui_AmendThemeDialog - - - Horizontal - Horizontal - - - ImportWizardForm - - - Open OSIS file - Open OSIS File - - - Ui_AmendThemeDialog - - - Circular - Circular - - - pt - pt - - - Ui_MainWindow - - - &Add Tool... - - - - - SongMaintenanceForm - - - Delete Topic - Delete Topic - - - ServiceManager - - - Move up - Move Up - - - Ui_OpenLPImportDialog - - - Lyrics - Lyrics - - - BiblesTab - - - No brackets - No Brackets - - - Ui_AlertEditDialog - - - Maintain Alerts - Maintain Alerts - - - Ui_AmendThemeDialog - - - px - px - - - ServiceManager - - - Select a theme for the service - Select a theme for the service. - - - ThemesTab - - - Themes - Themes - - - ServiceManager - - - Move to bottom - Move to Bottom - - - Ui_PluginViewDialog - - - Status: - Status: - - - Ui_EditSongDialog - - - CCLI Number: - CCLI Number: - - - ImportWizardForm - - - This Bible already exists! Please import a different Bible or first delete the existing one. - This Bible already exists! Please import a different Bible or first delete the existing one. - - - Ui_MainWindow - - - &Translate - - - - - AlertEditForm - - - Please Save or Clear seletced item - Please save or clear the selected item. - - - BiblesTab - - - Bibles - Bibles - - - Ui_SongMaintenanceDialog - - - Authors - Authors - - - SongUsageDetailForm - - - Output File Location - Output File Location - - - BiblesTab - - - { and } - { and } - - - GeneralTab - - - Prompt to save Service before starting New - Prompt to save the service before starting new - - - ImportWizardForm - - - Starting import... - Starting import... - - - BiblesTab - - - Note: -Changes don't affect verses already in the service - Note: -Changes don't affect verses already in the service - - - Ui_EditVerseDialog - - - Intro - Intro - - - ServiceManager - - - Move up order - Move up order. - - - PresentationTab - - - available - available - - - ThemeManager - - - default - default - - - SongMaintenanceForm - - - Delete Author - - - - - Ui_AmendThemeDialog - - - Display Location - - - - - Ui_PluginViewDialog - - - Version: - - - - - Ui_AlertEditDialog - - - Add - - - - - GeneralTab - - - General - - - - - Ui_AmendThemeDialog - - - Y Position: - - - - - ServiceManager - - - Move down order - - - - - BiblesTab - - - verse per slide - - - - - Ui_AmendThemeDialog - - - Show Shadow: - - - - - AlertsTab - - - Preview - - - - - alertsPlugin - - - <b>Alerts Plugin</b><br>This plugin controls the displaying of alerts on the presentations screen - + + + + + About + + + + + 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 + Christian "crichter" Richter + Maikel Stuivenberg + Carsten "catini" Tingaard + +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) + + + + + + Credits + + + + + Copyright © 2004-2010 Raoul Snyman +Portions copyright © 2004-2010 Tim Bentley, Jonathan Corwin, Michael Gorven, Scott Guerrieri, Christian Richter, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Carsten Tinggaard + +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 + + + + + Close + Close + + + + build %s + + + + + OpenLP.AdvancedTab + + + Advanced + - - - GeneralTab - - Show the splash screen - + + UI Settings + - - - Ui_MainWindow - - New Service - + + Number of recent files to display: + - - - SlideController - - Move to first - + + Remember active media manager tab on startup + - - - Ui_MainWindow - - &Online Help - + + Double-click to send items straight to live (requires restart) + - - - SlideController + + + OpenLP.AmendThemeForm - - Blank Screen - + + Theme Maintenance + Theme Maintenance - - - Ui_MainWindow - - Save Service - + + Theme &name: + - - Save &As... - + + &Visibility: + - - Toggle the visibility of the Media Manager - + + Opaque + Opaque - - - BibleMediaItem - - No Book Found - + + Transparent + Transparent - - - Ui_EditSongDialog - - Add - + + Type: + Type: - - - alertsPlugin - - &Alert - + + Solid Color + Solid Colour - - - BibleMediaItem - - Advanced - + + Gradient + - - - ImageMediaItem - - Image(s) - + + Image + - - - Ui_MainWindow - - F11 - + + Image: + - - F10 - + + Gradient: + - - F12 - + + Horizontal + Horizontal - - - Ui_BibleImportWizard - - Select the import format, and where to import from. - + + Vertical + Vertical - - - Ui_MainWindow - - Alt+F7 - + + Circular + Circular - - Add an application to the list of tools - + + &Background + - - - MediaPlugin - - <b>Media Plugin</b><br>This plugin allows the playing of audio and video media - + + Main Font + Main Font - - - BiblesTab - - Bible Theme: - + + Font: + - - - SongsPlugin - - Export songs in openlp.org 1.0 format - + + Color: + - - - Ui_MainWindow - - Theme Manager - + + Size: + - - - AlertsTab - - Alerts - + + pt + pt - - - Ui_customEditDialog - - Move slide down 1 - + + Wrap indentation: + - - - Ui_AmendThemeDialog - - Font: - + + Adjust line spacing: + - - - ServiceManager - - Load an existing service - + + Normal + Normal - - - Ui_MainWindow - - Toggle the visibility of the Theme Manager - + + Bold + Bold - - - PresentationTab - - Presentations - + + Italics + Italics - - - SplashScreen - - Starting - + + Bold/Italics + - - - ImageTab - - Slide Loop Delay: - + + Style: + - - - SlideController - - Verse - + + Display Location + - - - AlertsTab - - Alert timeout: - + + Use default location + - - - Ui_MainWindow - - &Preview Pane - + + X position: + - - - MediaManagerItem - - Add a new - + + Y position: + - - - ThemeManager - - Select Theme Import File - + + Width: + Width: - - New Theme - + + Height: + Height: - - - MediaMediaItem - - Media - + + px + px - - - Ui_AmendThemeDialog - - Preview - + + &Main Font + - - Outline Size: - + + Footer Font + Footer Font - - - Ui_OpenSongExportDialog - - Progress: - + + &Footer Font + - - - AmendThemeForm - - Second Color: - + + Outline + Outline - - - Ui_EditSongDialog - - Theme, Copyright Info && Comments - + + Outline size: + - - - Ui_AboutDialog - - Credits - + + Outline color: + - - - BibleMediaItem - - To: - + + Show outline: + - - - Ui_EditSongDialog - - Song Book - + + Shadow + Shadow - - - alertsPlugin - - F7 - + + Shadow size: + - - - Ui_OpenLPExportDialog - - Author - + + Shadow color: + - - - Ui_AmendThemeDialog - - Wrap Indentation - + + Show shadow: + - - - ThemeManager - - Import a theme - + + Alignment + Alignment - - + + + Horizontal align: + + + + + Left + + + + + Right + Right + + + + Center + Centre + + + + Vertical align: + + + + + Top + + + + + Middle + Middle + + + + Bottom + + + + + Slide Transition + Slide Transition + + + + Transition active + + + + + &Other Options + + + + + Preview + + + + + All Files + + + + + Select Image + + + + + First color: + + + + + Second color: + + + + + Slide height is %s rows. + + + + + OpenLP.GeneralTab + + + General + + + + + Monitors + + + + + Select monitor for output display: + Select monitor for output display: + + + + Display if a single screen + + + + + Application Startup + Application Startup + + + + Show blank screen warning + Show blank screen warning + + + + Automatically open the last service + Automatically open the last service + + + + Show the splash screen + + + + + Application Settings + Application Settings + + + + Prompt to save Service before starting New + Prompt to save the service before starting new + + + + Preview Next Song from Service Manager + Preview Next Song from Service Manager + + + + CCLI Details + CCLI Details + + + + CCLI number: + + + + + SongSelect username: + + + + + SongSelect password: + + + + + Display Position + + + + + X + + + + + Y + + + + + Height + + + + + Width + + + + + Override display position + + + + + Screen + + + + + primary + primary + + + + OpenLP.LanguageManager + + + Language + + + + + Please restart OpenLP to use your new language setting. + + + + + OpenLP.MainWindow + + + OpenLP 2.0 + + + + + English + English + + + + &File + &File + + + + &Import + &Import + + + + &Export + &Export + + + + &View + &View + + + + M&ode + + + + + &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 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 + + + + + &Configure OpenLP... + + + + + &Media Manager + + + + + Toggle Media Manager + + + + + Toggle the visibility of the media manager. + + + + + F8 + F8 + + + + &Theme Manager + + + + + Toggle Theme Manager + Toggle Theme Manager + + + + Toggle the visibility of the theme manager. + + + + + 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 + + + + + &Live Panel + + + + + Toggle Live Panel + + + + + Toggle the visibility of the live panel. + + + + + F12 + + + + + &Plugin List + + + + + List the Plugins + List the plugins + + + + Alt+F7 + Alt+F7 + + + + &User Guide + &User Guide + + + + &About + + + + + More information about OpenLP + + + + + Ctrl+F1 + 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 + &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 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 + + + + + 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 + + + + + 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 + + + + + &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. + + + + + OpenLP.PluginForm + + + Plugin List + + + + + Plugin Details + Plugin Details + + + + Version: + + + + + TextLabel + + + + + About: + + + + + Status: + Status: + + + + Active + Active + + + + Inactive + + + + + %s (Inactive) + + + + + %s (Active) + + + + + %s (Disabled) + + + + + OpenLP.ServiceItemEditForm + + + Reorder Service Item + + + + + Up + + + + + Delete + + + + + Down + + + + + OpenLP.ServiceManager + + + New Service + + + + + Create a new service + Create a new service + + + + Open Service + Open Service + + + + Load an existing service + + + + + Save Service + + + + + Save this service + Save this service + + + + Theme: + Theme: + + + + Select a theme for the service + Select a theme for the service. + + + + Move to &top + + + + + Move item to the top of the service. + + + + + Move &up + + + + + Move item up one position in the service. + + + + + Move &down + + + + + Move item down one position in the service. + + + + + Move to &bottom + + + + + Move item to the end of the service. + + + + + &Delete From Service + + + + + Delete the selected item from the service. + + + + + &Add New Item + + + + + &Add to Selected Item + + + + + &Edit Item + + + + + &Reorder Item + + + + + &Notes + + + + + &Preview Verse + + + + + &Live Verse + &Live Verse + + + + &Change Item Theme + &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 + + + + + OpenLP.ServiceNoteForm + + + Service Item Notes + Service Item Notes + + + + OpenLP.SettingsForm + + + Configure OpenLP + + + + + OpenLP.SlideController + + + Live + Live + + + + Preview + + + + + Move to first + + + + + Move to previous + Move to previous + + + + Move to next + Move to next slide. + + + + 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 + + + + + s + + + + + Delay between slides in seconds + Delay between slides in seconds. + + + + Start playing media + Start playing media + + + + Go to Verse + Go to Verse + + + + OpenLP.ThemeManager + + + New Theme + + + + + Create a new theme. + + + + + Edit Theme + Edit Theme + + + + Edit a theme. + + + + + Delete Theme + Delete Theme + + + + Delete a theme. + + + + + Import Theme + Import Theme + + + + Import a theme. + + + + + Export Theme + Export Theme + + + + Export a theme. + + + + + &Edit Theme + + + + + &Delete Theme + + + + + Set As &Global Default + + + + + E&xport Theme + + + + + %s (default) + + + + + You must select a theme to edit. + + + + + You must select a theme to delete. + + + + + Delete Confirmation + + + + + Delete theme? + + + + + Error + Error + + + + You are unable to delete the default theme. + + + + + Theme %s is use in %s plugin. + + + + + Theme %s is use by the service manager. + + + + + You have not selected a theme. + + + + + Save Theme - (%s) + Save Theme - (%s) + + + + Theme Exported + + + + + Your theme has been successfully exported. + + + + + Theme Export Failed + + + + + Your theme could not be exported due to an error. + + + + + Select Theme Import File + + + + + Theme (*.*) + + + + + 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? + + + + + OpenLP.ThemesTab + + + Themes + Themes + + + + Global Theme + + + + + Theme Level + + + + + S&ong Level + + + + + Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. + Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. + + + + &Service Level + + + + + Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. + Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. + + + + &Global Level + + + + + Use the global theme, overriding any themes associated with either the service or the songs. + Use the global theme, overriding any themes associated with either the service or the songs. + + + PresentationPlugin - - <b>Presentation Plugin</b> <br> Delivers 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. + - - - ImageMediaItem + + + PresentationPlugin.MediaItem - - Image - - - - - BibleMediaItem - - - Clear - - - - - Ui_MainWindow - - - Save Service As - - - - - Ui_AlertDialog - - - Cancel - - - - - Ui_OpenLPImportDialog - - - Import - - - - - Ui_EditVerseDialog - - - Chorus - - - - - Ui_EditSongDialog - - - Edit All - - - - - AuthorsForm - - - You need to type in the last name of the author. - - - - - SongsTab - - - Songs Mode - - - - - Ui_AmendThemeDialog - - - Left - - - - - RemotesPlugin - - - <b>Remote Plugin</b><br>This plugin provides the ability to send messages to a running version of openlp on a different computer.<br>The Primary use for this would be to send alerts from a creche - - - - - ImageTab - - - Images - - - - - BibleMediaItem - - - Verse: - - - - - Ui_OpenLPExportDialog - - - openlp.org Song Exporter - + + Presentation + Presentation - - Song Export List - - - - - ThemeManager - - - Export theme - - - - - Ui_SongMaintenanceDialog - - - Delete - - - - - Ui_AmendThemeDialog - - - Theme Name: - - - - - Ui_AboutDialog - - - About OpenLP - - - - - Ui_MainWindow - - - Toggle the visibility of the Service Manager - - - - - PresentationMediaItem - - - A presentation with that filename already exists. - - - - - AlertsTab - - - openlp.org - - - - - ImportWizardForm - - - Invalid Books File - - - - - Ui_OpenLPImportDialog - - - Song Title - - - - - MediaManagerItem - - - &Show Live - - - - - AlertsTab - - - Keep History: - - - - - Ui_AmendThemeDialog - - - Image: - - - - - Ui_customEditDialog - - - Set Theme for Slides - - - - - Ui_MainWindow - - - More information about OpenLP - - - - - AlertsTab - - - Background Color: - - - - - SongMaintenanceForm - - - No topic selected! - - - - - Ui_MainWindow - - - &Media Manager - + + Select Presentation(s) + - - &Tools - - - - - AmendThemeForm - - - Background Color: - - - - - Ui_EditSongDialog - - - A&dd to Song - + + Automatic + - - Title: - + + Present using: + Present using: - - - GeneralTab - - Screen - + + File Exists + - - - AlertsTab - - s - + + A presentation with that filename already exists. + - - - ImagePlugin - - <b>Image Plugin</b><br>Allows images of all types to be displayed. If a number of images are selected together and presented on the live controller it is possible to turn them into a timed loop.<br<br>From the plugin if the <i>Override background</i> is chosen and an image is selected any somgs which are rendered will use the selected image from the background instead of the one provied by the theme.<br> - + + Unsupported File + - - - Ui_AlertEditDialog - - Clear - + + This type of presentation is not supported + - - - Ui_BibleImportWizard - - Please wait while your Bible is imported. - + + You must select an item to delete. + - - - MediaManagerItem + + + PresentationPlugin.PresentationTab - - No items selected... - + + Presentations + - - - Ui_OpenLPImportDialog - - Select All - + + Available Controllers + Available Controllers - - - Ui_AmendThemeDialog - - Font Main - + + Advanced + - - - ImageMediaItem - - Images (*.jpg *jpeg *.gif *.png *.bmp) - + + Allow presentation application to be overriden + - - - Ui_OpenLPImportDialog + + + RemotePlugin - - Title - + + <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. + - - - Ui_OpenSongExportDialog + + + RemotePlugin.RemoteTab - - Select OpenSong song folder: - + + Remotes + Remotes - - - Ui_MainWindow - - Toggle Media Manager - + + Serve on IP address: + - - + + + Port number: + + + + + Server Settings + + + + SongUsagePlugin - - &Song Usage - + + &Song Usage Tracking + - - - GeneralTab - - Monitors - + + &Delete Tracking Data + - - - EditCustomForm - - You need to enter a slide - + + Delete song usage data up to a specified date. + - - - Ui_SongMaintenanceDialog - - Topics - + + &Extract Tracking Data + - - - ImportWizardForm - - You need to specify a file to import your Bible from! - + + Generate a report on song usage. + - - - Ui_EditVerseDialog - - Verse Type - + + Toggle Tracking + - - - OpenSongBible - - Importing - + + Toggle the tracking of song usage. + - - - Ui_EditSongDialog - - Comments - + + <strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services. + - - - AlertsTab + + + SongUsagePlugin.SongUsageDeleteForm - - Bottom - + + Delete Selected Song Usage Events? + - - - Ui_MainWindow - - Create a new Service - + + Are you sure you want to delete selected Song Usage data? + - - - AlertsTab - - Top - + + Delete Song Usage Data + - - - ServiceManager + + + SongUsagePlugin.SongUsageDetailForm - - &Preview Verse - + + Output File Location + Output File Location - - - Ui_PluginViewDialog - - TextLabel - + + Song Usage Extraction + - - - AlertsTab - - Font Size: - + + Select Date Range + - - - Ui_PluginViewDialog - - About: - + + to + - - Inactive - + + Report Location + Report Location - - - Ui_OpenSongExportDialog + + + SongsPlugin - - Ready to export - + + &Song + &Song - - Export - + + Import songs using the import wizard. + - - - Ui_PluginViewDialog - - Plugin List - + + Songs of Fellowship (temp menu item) + - - - Ui_AmendThemeDialog - - Transition Active: - + + Import songs from the VOLS1_2.RTF, sof3words.rtf and sof4words.rtf supplied with the music books + - - - Ui_BibleImportWizard - - Proxy Server (Optional) - + + Generic Document/Presentation Import (temp menu item) + - - - Ui_EditSongDialog - - &Manage Authors, Topics, Books - + + Import songs from Word/Writer/Powerpoint/Impress + - - - Ui_SongUsageDetailDialog - - Audit Detail Extraction - + + OpenSong (temp menu item) + - - - Ui_OpenLPExportDialog - - Ready to export - + + Import songs from OpenSong files(either raw text or ZIPfiles) + - - - EditCustomForm - - Save && Preview - + + OpenLP v2 Songs (temporary) + - - - Ui_OpenLPExportDialog - - Select All - + + Import an OpenLP v2 song database + - - - Ui_SongUsageDetailDialog - - to - + + Open Songs of Fellowship file + - - - Ui_AmendThemeDialog - - Size: - + + Import Error + - - - MainWindow - - OpenLP Main Display Blanked - + + Error importing Songs of Fellowship file. +OpenOffice.org must be installed and you must be using an unedited copy of the RTF included with the Songs of Fellowship Music Editions + - - - Ui_OpenLPImportDialog - - Remove Selected - + + Open OpenSong file + - - - Ui_EditSongDialog - - Delete - + + Error importing OpenSong file + - - - ImportWizardForm - - You need to specify an OpenSong Bible file to import! - + + Select OpenLP database(s) to import... + - - - PresentationMediaItem - - File exists - + + Database(s) imported + - - - Ui_OpenLPExportDialog - - Title - + + Your OpenLP v2 song databases have been successfully imported + - - - Ui_OpenSongImportDialog - - Ready to import - + + Error importing OpenLP v2 database(s) + - - - SlideController - - Stop continuous loop - + + Open documents or presentations + - - s - + + <strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs. + - - - SongMediaItem + + + SongsPlugin.AuthorsForm - - Song Maintenance - + + Author Maintenance + Author Maintenance - - - Ui_customEditDialog - - Edit - + + Display name: + - - - Ui_AmendThemeDialog - - Gradient : - + + First name: + First name: - - - ImportWizardForm - - Invalid Verse File - + + Last name: + Last name: - - - EditSongForm - - Error - + + Error + Error - - - Ui_customEditDialog - - Add New - + + You need to type in the first name of the author. + You need to type in the first name of the author. - - - Ui_AuthorsDialog - - Display name: - + + You need to type in the last name of the author. + - - - SongMaintenanceForm - - Are you sure you want to delete the selected topic? - + + You have not set a display name for the author, would you like me to combine the first and last names for you? + - - - Ui_AmendThemeDialog + + + SongsPlugin.EditSongForm - - Bold/Italics - + + Song Editor + Song Editor - - - Ui_SongMaintenanceDialog - - Song Maintenance - + + &Title: + - - - Ui_BibleImportWizard - - Welcome to the Bible Import Wizard - + + &Lyrics: + - - - SongsTab - - Songs - + + &Add + - - - Ui_BibleImportWizard - - Password: - + + &Edit + - - - Ui_MainWindow - - &Theme Manager - + + Ed&it All + - - - MediaManagerItem - - Preview the selected item - + + &Delete + - - - Ui_BibleImportWizard - - Version Name: - + + Title && Lyrics + Title && Lyrics - - - Ui_AboutDialog - - About - + + Authors + Authors - - - MediaMediaItem - - Select Media - + + &Add to Song + - - - Ui_AmendThemeDialog - - Horizontal Align: - + + &Remove + &Remove - - - ServiceManager - - &Edit Item - + + &Manage Authors, Topics, Song Books + - - - Ui_AmendThemeDialog - - Background Type: - + + Topic + Topic - - - Ui_MainWindow - - &Save - + + A&dd to Song + - - OpenLP 2.0 - + + R&emove + - - - ThemeManager - - A theme with this name already exists, would you like to overwrite it? - + + Song Book + - - - PresentationMediaItem - - Select Presentation(s) - + + Authors, Topics && Song Book + - - - ThemeManager - - Export a theme - + + Theme + Theme - - - AmendThemeForm - - Open file - + + New &Theme + - - - Ui_TopicsDialog - - Topic Maintenance - + + Copyright Information + Copyright Information - - - Ui_customEditDialog - - Clear edit area - + + © + - - - Ui_AmendThemeDialog - - Show Outline: - + + Comments + - - - SongBookForm - - You need to type in a book name! - + + Theme, Copyright Info && Comments + - - - ImportWizardForm - - Open OpenSong Bible - + + Save && Preview + - - - Ui_MainWindow - - Look && &Feel - + + Add Author + - - - Ui_BibleImportWizard - - Ready. - + + This author does not exist, do you want to add them? + - - - ThemeManager - - You have not selected a theme! - + + Error + Error - - - Ui_SongMaintenanceDialog - - Books/Hymnals - + + This author is already in the list. + - - - Ui_AboutDialog - - Contribute - + + No Author Selected + - - - Ui_AmendThemeDialog - - Gradient - + + 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. + - - - Ui_BibleImportWizard - - Books Location: - + + Add Topic + - - - Ui_OpenSongExportDialog - - Full Song List - + + This topic does not exist, do you want to add it? + - - - GeneralTab - - SongSelect Password: - + + This topic is already in the list. + - - -Delete Selected Song Usage Events?Couldn't save your book.AutomaticMove to &bottomThis author can't be deleted, they are currently assigned to at least one song.Couldn't save your topic.Move to &topYou need to specify a file to import your Bible from.Song Usage ExtractionAllow the background of live slide to be overriddenYou are unable to delete the default theme.Couldn't save your author.<b>Image Plugin</b><br>Allows images of all types to be displayed. If a number of images are selected together and presented on the live controller it is possible to turn them into a timed loop.<br<br>From the plugin if the <i>Override background</i> is chosen and an image is selected any songs which are rendered will use the selected image from the background instead of the one provied by the theme.<br>&Delete From ServiceImages (*.jpg *.jpeg *.gif *.png *.bmp);; All files (*)You need to specify a version name for your Bible.Couldn't add your topic.You need to specify a file of Bible verses to import.File is not a valid theme.This book can't be deleted, it is currently assigned to at least one song.<b>Custom Plugin</b><br>This plugin allows slides to be displayed on the screen in the same way songs are. This plugin provides greater freedom over the songs plugin.<br>Please save or clear selected itemOpenLP Service Files (*.osz)Couldn't add your author.This topic can't be deleted, it is currently assigned to at least one song.Move &downAre you sure you want to delete selected Song Usage data?Add &Tool...Song Usage DeleteMove &upYou need to specify a file with books of the Bible to use in the import.<b>Presentation Plugin</b> <br> Delivers 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.Couldn't add your book.You have not selected a theme.Select Date RangeYou need to specify an OpenSong Bible file to import. + + + 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: + + + + + SongsPlugin.EditVerseForm + + + Edit Verse + Edit Verse + + + + &Verse type: + + + + + &Insert + + + + + SongsPlugin.ImportWizardForm + + + No OpenLyrics Files Selected + + + + + You need to add at least one OpenLyrics song file to import from. + + + + + No OpenSong Files Selected + + + + + You need to add at least one OpenSong song file to import from. + + + + + No CCLI Files Selected + + + + + You need to add at least one CCLI file to import from. + + + + + No CSV File Selected + + + + + You need to specify a CSV 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. + + + + + Format: + Format: + + + + OpenLyrics + + + + + OpenSong + OpenSong + + + + CCLI + + + + + CSV + CSV + + + + Add Files... + + + + + Remove File(s) + + + + + Filename: + + + + + Browse... + + + + + Importing + + + + + Please wait while your songs are imported. + + + + + Ready. + + + + + %p% + + + + + 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 + + + + + Search + Search + + + + Titles + Titles + + + + Lyrics + Lyrics + + + + Authors + Authors + + + + You must select an item to edit. + + + + + 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)? + + + + + SongsPlugin.SongBookForm + + + Song Book Maintenance + + + + + &Name: + + + + + &Publisher: + + + + + Error + Error + + + + You need to type in a name for the book. + + + + + SongsPlugin.SongImport + + + copyright + + + + + © + + + + + SongsPlugin.SongMaintenanceForm + + + Song Maintenance + + + + + Authors + Authors + + + + Topics + + + + + Song Books + + + + + &Add + + + + + &Edit + + + + + &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! + + + + SongsPlugin.SongsTab + + + Songs + + + + + Songs Mode + + + + + Enable search as you type + + + + + Display verses on live tool bar + + + + + SongsPlugin.TopicsForm + + + Topic Maintenance + + + + + Topic name: + Topic name: + + + + Error + Error + + + + You need to type in a topic name! + You need to type in a topic name! + + + + SongsPlugin.VerseType + + + Verse + + + + + Chorus + + + + + Bridge + Bridge + + + + Pre-Chorus + Pre-Chorus + + + + Intro + Intro + + + + Ending + Ending + + + + Other + Other + + + diff --git a/resources/i18n/openlp_es.ts b/resources/i18n/openlp_es.ts index 0c3b7bf14..213fd8568 100644 --- a/resources/i18n/openlp_es.ts +++ b/resources/i18n/openlp_es.ts @@ -1,4253 +1,3893 @@ - - - - BibleMediaItem - - - Quick - Rápida - - - Ui_customEditDialog - - - Delete selected slide - Eliminar diap. seleccionada - - - BiblesTab - - - ( and ) - ( y ) - - - RemoteTab - - - Remotes - Remotas - - - ServiceManager - - - Save Service - Guardar Servicio - - - Ui_AmendThemeDialog - - - Shadow Size: - Tamaño: - - - Ui_OpenSongExportDialog - - - Close - Cerrar - - - ThemeManager - - - Import Theme - Importar Tema - - - Ui_AmendThemeDialog - - - Slide Transition - Transición de Diapositiva - - - ImportWizardForm - - - Bible Exists - Ya existe la Biblia - - - ThemesTab - - - Theme level - Nivel del Tema - - - BibleMediaItem - - - Bible - Biblia - - - ServiceManager - - - Save Changes to Service? - ¿Guardar cambios al Servicio? - - - SongUsagePlugin - - - &Delete recorded data - &Eliminar los datos guardados - - - Ui_OpenLPExportDialog - - - Song Title - Título de Canción - - - Ui_customEditDialog - - - Edit selected slide - Editar diap. seleccionada - - - SongMediaItem - - - CCLI Licence: - Licencia CCLI: - - - Ui_SongUsageDeleteDialog - - - Audit Delete - Eliminar Auditoría - - - BibleMediaItem - - - Clear - Limpiar - - - Ui_BibleImportWizard - - - Bible Import Wizard - Asistente de Importación de Biblias - - - Ui_customEditDialog - - - Edit All - Editar Todo - - - Ui_ServiceNoteEdit - - - Service Item Notes - Notas de Elemento de Servicio - - - SongMaintenanceForm - - - Couldn't save your author! - ¡No se puede guardar su autor! - - - Ui_customEditDialog - - - Clear - Limpiar - - - ThemesTab - - - Global theme - Tema Global - - - SongUsagePlugin - - - Start/Stop live song usage recording - Grabar los tiempos de la canción en vivo - - - MainWindow - - - The Main Display has been blanked out - La Pantalla Principal esta en negro - - - Ui_OpenSongExportDialog - - - Lyrics - Letra - - - Ui_AlertDialog - - - Display - Pantalla - - - Ui_customEditDialog - - - Delete - Eliminar - - - SongMaintenanceForm - - - This author can't be deleted, they are currently assigned to at least one song! - ¡Este autor no puede ser eliminado, está asignado a al menos una canción! - - - ThemeManager - - - Create a new theme - Crear un tema nuevo - - - Ui_MainWindow - - - Open an existing service - Abrir un servicio existente - - - SlideController - - - Move to previous - Regresar al anterior - - - Edit and re-preview Song - Editar y re-visualizar Canción - - - Ui_PluginViewDialog - - - Plugin Details - Detalles de Plugin - - - AlertsTab - - - pt - pt - - - Edit History: - Editar Historial: - - - SlideController - - - Delay between slides in seconds - Espera entre diapositivas en segundos - - - SongMaintenanceForm - - - Couldn't add your book! - ¡No se pudo agregar su libro! - - - BiblesTab - - - verse per line - versículo por línea - - - Ui_customEditDialog - - - Theme: - Tema: - - - SongMaintenanceForm - - - Error - Error - - - Ui_BibleImportWizard - - - Bible: - Biblia: - - - ImportWizardForm - - - You need to specify a file with books of the Bible to use in the import! - ¡Es necesario especificar un archivo con los libros de la Biblia para uso en la importación! - - - ThemeManager - - - Delete Theme - Eliminar Tema - - - SplashScreen - - - Splash Screen - Pantalla de Bienvenida - - - SongMediaItem - - - Song - Canción - - - SongUsageDeleteForm - - - Delete Selected Audit Events? - ¿Borrar la Selección de Eventos Auditados? - - - Ui_OpenSongExportDialog - - - Song Title - Título de Canción - - - BibleMediaItem - - - Search - Buscar - - - Ui_MainWindow - - - List the Plugins - Lista de PluginsUsar Complementos en ves de Plugins? - - - SongMaintenanceForm - - - No author selected! - ¡Ningún autor seleccionado! - - - SongUsagePlugin - - - <b>SongUsage Plugin</b><br>This plugin records the use of songs and when they have been used during a live service - <b>SongUsage Plugin</b><br>Este plugin registra el uso de canciones y cuando se han utilizado durante un servicio en vivo - - - Ui_customEditDialog - - - Move slide Up 1 - Mover hacia Arriba 1 - - - SongsPlugin - - - OpenSong - OpenSong - - - AlertsManager - - - Alert message created and delayed - Mensaje de alerta creado y pospuesto - - - Ui_EditSongDialog - - - Alternative Title: - Título alternativo: - - - ServiceManager - - - Open Service - Abrir Servicio - - - BiblesTab - - - Display Style: - Mostar Como: - - - Ui_AmendThemeDialog - - - Image - Imagen - - - EditSongForm - - - You need to enter a song title. - Usted necesita introducir el título de la canción. - - - ThemeManager - - - Error - Error - - - ImportWizardForm - - - Invalid Bible Location - Ubicación de Biblia no válida - - - ThemesTab - - - Global level - Nivel Global - - - ThemeManager - - - Make Global - Establecer como GlobalAcortar? Hacer Global - - - Ui_MainWindow - - - &Service Manager - Gestor de &Servicio - - - Ui_OpenLPImportDialog - - - Author - Autor - - - Ui_AmendThemeDialog - - - Height: - Altura: - - - Ui_BibleImportWizard - - - Books Location: - Ubicación de los Libros: - - - ThemeManager - - - Delete a theme - Eliminar un tema - - - Ui_BibleImportWizard - - - Crosswalk - Crosswalk - - - SongBookForm - - - Error - Error - - - Ui_AuthorsDialog - - - Last name: - Apellido: - - - Ui_customEditDialog - - - Title: - Título: - - - ImportWizardForm - - - You need to set a copyright for your Bible! Bibles in the Public Domain need to be marked as such. - ¡Tiene que establecer los derechos de autor de la Biblia! Biblias de Dominio Público deben ser marcados como tales. - - - SongMediaItem - - - Maintain the lists of authors, topics and books - Administrar la lista de autores, categorías y libros - - - Ui_AlertEditDialog - - - Save - Guardar - - - EditCustomForm - - - You have unsaved data - Tiene información sin guardar - - - BibleMediaItem - - - To: - Hasta: - - - Ui_AmendThemeDialog - - - Outline - Contorno - - - BibleMediaItem - - - Text Search - Búsqueda de texto - - - Ui_OpenLPExportDialog - - - openlp.org Song Exporter - Exportador de Canciones openlp.orgAcortar? - - - SongUsagePlugin - - - Delete song usage to specified date - Eliminar el historial de uso hasta la fecha especificada - - - Ui_SongUsageDetailDialog - - - Report Location - Ubicación de Reporte - - - Ui_BibleImportWizard - - - OpenSong - OpenSong - - - Ui_MainWindow - - - Open Service - Abrir Servicio - - - SongMediaItem - - - Titles - Títulos - - - ImageMediaItem - - - Select Image(s) - Seleccionar Imagen(es) - - - BibleMediaItem - - - Search Type: - Tipo de búsqueda:Acortar? - - - Ui_MainWindow - - - Media Manager - Gestor de Medios - - - ImageMediaItem - - - Images (*.jpg *jpeg *.gif *.png *.bmp);; All files (*) - Imágenes (*.jpg *jpeg *.gif *.png *.bmp);; Todos los archivos (*) - - - Ui_MainWindow - - - Alt+F4 - Alt+F4 - - - MediaManagerItem - - - &Preview - Vista &previa - - - GeneralTab - - - CCLI Details - Detalles de CCLI - - - SongSelect Password: - Contraseña SongSelect: - - - Ui_MainWindow - - - Toggle the visibility of the Preview Panel - Alternar la visibilidad del Panel de Vista Previa - - - SongMaintenanceForm - - - Are you sure you want to delete the selected book? - ¿Está seguro de que quiere eliminar el libro seleccionado? - - - Ui_MainWindow - - - &User Guide - Guía de &Usuario - - - SongUsageDeleteForm - - - Are you sure you want to delete selected Audit Data? - ¿Está seguro que desea eliminar la selección de Datos Auditados? - - - Ui_MainWindow - - - Set the interface language to English - Establecer el idioma de la interfaz a Inglés - - - Ui_AmendThemeDialog - - - Main Font - Tipo de Letra Principal - - - ImportWizardForm - - - Empty Copyright - Derechos de autor en blanco - - + + + + 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 + + + + + AlertsPlugin.AlertForm + + + Alert Message + Mensaje de Alerta + + + + Alert &text: + + + + + &Parameter(s): + + + + + &New + &Nuevo + + + + &Save + &Guardar + + + + &Delete + + + + + Displ&ay + + + + + Display && Cl&ose + + + + + &Close + + + + + New Alert + + + + + You haven't specified any text for your alert. Please type in some text before clicking New. + + + + + AlertsPlugin.AlertsManager + + + Alert message created and displayed. + + + + + AlertsPlugin.AlertsTab + + + Alerts + Alertas + + + + Font + Tipo de Letra + + + + Font name: + + + + + Font color: + + + + + Background color: + + + + + Font size: + + + + + pt + pt + + + + Alert timeout: + Espera: + + + + s + s + + + + Location: + Ubicación: + + + + Preview + Vista Previa + + + + OpenLP 2.0 + OpenLP 2.0 + + + + Top + + + + + Middle + Medio + + + + Bottom + + + + + BiblesPlugin + + + &Bible + &Biblia + + + + <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display bible verses from different sources during the service. + + + + + BiblesPlugin.BibleDB + + + Book not found + + + + + The book you requested could not be found in this bible. Please check your spelling and that this is a complete bible not just one testament. + + + + + BiblesPlugin.BiblesTab + + + Bibles + Biblias + + + + Verse Display + Visualización de versículos + + + + Only show new chapter numbers + Solo mostrar los números de capítulos nuevos + + + + Layout style: + + + + + Display style: + + + + + Bible theme: + + + + + Verse Per Slide + + + + + Verse Per Line + + + + + Continuous + + + + + No Brackets + + + + + ( And ) + + + + + { And } + + + + + [ And ] + + + + + Note: +Changes do not affect verses already in the service. + + + + + Display dual Bible verses + + + + + BiblesPlugin.ImportWizardForm + + + Bible Import Wizard + Asistente de Importación de Biblias + + + + Welcome to the Bible Import Wizard + Bienvenido al Asistente de Importación de Biblias + + + + This wizard will help you to import Bibles from a variety of formats. Click the next button below to start the process by selecting a format to import from. + Este asistente le ayudará a importar Biblias en una variedad de formatos. Haga clic en el botón siguiente para empezar el proceso seleccionando un formato a importar. + + + + 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: + + + + OSIS + OSIS + + + + CSV + CSV + + + + OpenSong + OpenSong + + + + Web Download + Descarga Web + + + + File location: + + + + + Books location: + + + + + Verse location: + + + + + Bible filename: + + + + + Location: + Ubicación: + + + + Crosswalk + Crosswalk + + + + BibleGateway + BibleGateway + + + + Bible: + Biblia: + + + + Download Options + Opciones de Descarga + + + + Server: + Servidor: + + + + Username: + Usuario: + + + + Password: + Contraseña: + + + + Proxy Server (Optional) + Servidor Proxy (Opcional) + + + + License Details + Detalles de Licencia + + + + Set up the Bible's license details. + Establezca los detalles de licencia de la Biblia. + + + + Version name: + + + + + Copyright: + Derechos de autor: + + + + Permission: + Permisos: + + + + Importing + Importando + + + + Please wait while your Bible is imported. + Por favor, espere mientras que la Biblia es importada. + + + + Ready. + Listo. + + + + Invalid Bible Location + Ubicación de Biblia no válida + + + + You need to specify a file to import your Bible from. + + + + + Invalid Books File + Archivo de Libros No Válido + + + + You need to specify a file with books of the Bible to use in the import. + + + + + Invalid Verse File + Archivo de Versículo No Válido + + + + You need to specify a file of Bible verses to import. + + + + + Invalid OpenSong Bible + Biblia OpenSong No Válida + + + + You need to specify an OpenSong Bible file to import. + + + + + Empty Version Name + Nombre de Versión Vacío + + + + You need to specify a version name for your Bible. + + + + + Empty Copyright + Derechos de autor en blanco + + + + You need to set a copyright for your Bible! Bibles in the Public Domain need to be marked as such. + ¡Tiene que establecer los derechos de autor de la Biblia! Biblias de Dominio Público deben ser marcados como tales. + + + + Bible Exists + Ya existe la Biblia + + + + This Bible already exists! Please import a different Bible or first delete the existing one. + ¡La Biblia ya existe! Por favor, importe una diferente o borre la anterior. + + + + Open OSIS File + + + + + Open Books CSV File + + + + + Open Verses CSV File + + + + + Open OpenSong Bible + Abrir Biblia OpenSong + + + + Starting import... + Iniciando importación... + + + + Finished import. + Importación finalizada. + + + + Your Bible import failed. + La importación de su Biblia falló. + + + + 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. + + + + + BiblesPlugin.Opensong + + + Importing + Importando + + + CustomPlugin - - <b>Custom Plugin</b><br>This plugin allows slides to be displayed on the screen in the same way songs are. This plugin provides greater freedom over the songs plugin.<br> - <b>Custom Plugin</b><br>Este plugin permite que las diapositivas se muestren en la pantalla de la misma manera que las canciones. Este plugin proporciona una mayor libertad que el plugin de canciones.<br> - - - AuthorsForm - - - You need to type in the first name of the author. - Tiene que escribir el nombre del autor. - - - SongsTab - - - Display Verses on Live Tool bar: - Mostrar Versos en Barra En Vivo:Verses = Versículos? - - - ServiceManager - - - Move to top - Mover al principio - - - ImageMediaItem - - - Override background - Sustituir el fondo - - - Ui_SongMaintenanceDialog - - - Edit - Editar - - - Ui_OpenSongExportDialog - - - Select All - Seleccionar Todo - - - ThemesTab - - - 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. - Utilice el tema de cada canción en la base de datos. Si una canción no tiene un tema asociado, utilizar el tema del servicio. Si el servicio no tiene un tema, utilizar el tema global. - - - PresentationMediaItem - - - Presentation - Presentación - - - Ui_AmendThemeDialog - - - Solid Color - Color Sólido - - - CustomTab - - - Custom - Personalizado - - - Ui_OpenLPImportDialog - - - Ready to import - Listo para importar - - - MainWindow - - - OpenLP version %s has been updated to version %s - -You can obtain the latest version from http://openlp.org - OpenLP versión %s se ha actualizado a la versión %s - -Puede obtener la última versión desde http://openlp.org - - - Ui_BibleImportWizard - - - File Location: - Archivo: - - - SlideController - - - Go to Verse - Ir al Verso - - - Ui_MainWindow - - - &Import - &Importar - - - Quit OpenLP - Salir de OpenLP - - - Ui_BibleImportWizard - - - This wizard will help you to import Bibles from a variety of formats. Click the next button below to start the process by selecting a format to import from. - Este asistente le ayudará a importar Biblias en una variedad de formatos. Haga clic en el botón siguiente para empezar el proceso seleccionando un formato a importar. - - - Ui_OpenLPExportDialog - - - Title - Título - - - ImportWizardForm - - - Empty Version Name - Nombre de Versión Vacío - - - Ui_MainWindow - - - &Preview Panel - &Panel de Vista Previa - - - SlideController - - - Start continuous loop - Iniciar bucle continuo - - - Ui_AboutDialog - - - License - Licencia - - - GeneralTab - - - primary - primario - - - Ui_EditSongDialog - - - Add a Theme - Añadir un Tema - - - Ui_MainWindow - - - &New - &Nuevo - - - Ui_customEditDialog - - - Credits: - Créditos: - - - SlideController - - - Live - En vivo - - - ImportWizardForm - - - You need to specify a file of Bible verses to import! - ¡Es necesario especificar un archivo de versículos de la Biblia para importar! - - - BiblesTab - - - continuous - continuo - - - Ui_EditVerseDialog - - - Number - Número - - - GeneralTab - - - Application Startup - Inicio de la Aplicación - - - Ui_AmendThemeDialog - - - Use Default Location: - Usar Ubicación por Defecto: - - - Ui_OpenSongImportDialog - - - Import - Importar - - - Ui_MainWindow - - - Ctrl+N - Ctrl+N - - - Ui_EditSongDialog - - - Verse Order: - Orden de Versos: - - - Ui_SongUsageDetailDialog - - - ASelect Date Range - Seleccione el Rango de Fechas - - - Ui_MainWindow - - - Default Theme: - Tema por defecto: - - - Toggle Preview Panel - Alternar Panel de Vista Previa - - - SongMediaItem - - - Lyrics - Letra - - - Ui_OpenLPImportDialog - - - Progress: - Progreso: - - - Ui_AmendThemeDialog - - - Shadow - Sombra - - - GeneralTab - - - Select monitor for output display: - Seleccionar monitor para visualizar la salida: - - - Ui_AmendThemeDialog - - - Italics - Cursiva - - - ServiceManager - - - Create a new service - Crear un servicio nuevo - - - Ui_AmendThemeDialog - - - Background: - Fondo: - - - Ui_OpenLPImportDialog - - - openlp.org Song Importer - Importador de Canciones openlp.orgAcortar? - - - Ui_BibleImportWizard - - - Copyright: - Derechos de autor: - - - ThemesTab - - - Service level - Según Servicio - - - BiblesTab - - - [ and ] - [ y ] - - - Ui_customEditDialog - - - Save - Guardar - - - MediaManagerItem - - - You must select one or more items - Usted debe seleccionar uno o más elementos - - - GeneralTab - - - Application Settings - Configuración del Programa - - - ServiceManager - - - Save this service - Guardar este servicio - - - ImportWizardForm - - - Open Books CSV file - Abrir archivo de Libros CSV - - - GeneralTab - - - SongSelect Username: - Usuario SongSelect: - - - Ui_AmendThemeDialog - - - X Position: - Posición X: - - - BibleMediaItem - - - No matching book could be found in this Bible. - No se encuentra un libro que concuerde, en esta Biblia. - - - Ui_BibleImportWizard - - - Server: - Servidor: - - - Download Options - Opciones de Descarga - - - ImportWizardForm - - - Invalid OpenSong Bible - Biblia OpenSong No Válida - - - GeneralTab - - - CCLI Number: - Número CCLI: - - - Ui_AmendThemeDialog - - - Center - Centro - - - ServiceManager - - - Theme: - Tema: - - - Ui_MainWindow - - - &Live - En &vivo - - - SongMaintenanceForm - - - Delete Topic - Borrar CategoríaTraducir "Topic" como "Tema" puede confundirse con la traducción de "Theme" - - - Ui_MainWindow - - - English - Ingles - - - ImageMediaItem - - - You must select one or more items - Usted debe seleccionar uno o más elementos - - - Ui_AuthorsDialog - - - First name: - Nombre: - - - Ui_BibleImportWizard - - - Permission: - Permiso: - - - Ui_OpenSongImportDialog - - - Close - Cerrar - - - Ui_AmendThemeDialog - - - Opaque - Opaco - - - SongMaintenanceForm - - - This book can't be deleted, it is currently assigned to at least one song! - ¡Este libro no puede ser eliminado, está actualmente asignado a al menos una canción! - - - ImportWizardForm - - - Your Bible import failed. - La importación de su Biblia falló. - - - SlideController - - - Start playing media - Iniciar la reproducción de medios - - - SongMediaItem - - - Type: - Tipo: - - - Ui_AboutDialog - - - Close - Cerrar - - - TopicsForm - - - You need to type in a topic name! - ¡Usted tiene que escribir un nombre para la categoría! - - - Ui_OpenSongExportDialog - - - Song Export List - Lista de Exportación de CancionesAcortar? - - - BibleMediaItem - - - Dual: - Paralela:O Dual:? O Doble:? - - - ImageTab - - - sec - seg - - - ServiceManager - - - Delete From Service - Eliminar Del Servicio - - - GeneralTab - - - Automatically open the last service - Abrir automáticamente el último servicio - - - Ui_OpenLPImportDialog - - - Song Import List - Lista de Importación de Canciones - - - Ui_OpenSongExportDialog - - - Author - Autor - - - Ui_AmendThemeDialog - - - Outline Color: - Color: - - - Ui_BibleImportWizard - - - Select Import Source - Seleccione Origen de Importación - - - Ui_MainWindow - - - F9 - F9 - - - F8 - F8 - - - ServiceManager - - - &Change Item Theme - &Cambiar Tema de Ítem - - - Ui_SongMaintenanceDialog - - - Topics - Categoría - - - Ui_OpenLPImportDialog - - - Import File Song List - Importar Archivo de Lista de CancionesAcortar? - - - Ui_customEditDialog - - - Edit Custom Slides - Editar Diapositivas PersonalizadasAcortar? - - - Ui_EditSongDialog - - - &Remove - &Quitar - - - Ui_BibleImportWizard - - - Set up the Bible's license details. - Establezca los detalles de licencia de la Biblia. - - - Ui_AmendThemeDialog - - - Alignment - Alineación - - - SongMaintenanceForm - - - Delete Book - Eliminar Libro - - - ThemeManager - - - Edit a theme - Editar un tema - - - Ui_BibleImportWizard - - - BibleGateway - BibleGateway - - - GeneralTab - - - Preview Next Song from Service Manager - Vista Previa de la Siguiente Canción del ServicioSiguiente Canción en Cola? - - - Ui_EditSongDialog - - - Title && Lyrics - Título && Letra - - - SongMaintenanceForm - - - No book selected! - ¡Ningún libro seleccionado! - - - SlideController - - - Move to live - Proyectar en vivo - - - Ui_EditVerseDialog - - - Other - Otro - - - Ui_EditSongDialog - - - Theme - Tema - - - Ui_EditVerseDialog - - - Verse - Verso - - - Ui_MainWindow - - - Save the current service to disk - Guardar el servicio actual al disco - - - BibleMediaItem - - - Chapter: - Capítulo: - - - Ui_AmendThemeDialog - - - Bottom - Inferior - - - PresentationTab - - - Available Controllers - Controladores DisponiblesControles? - - - ImportWizardForm - - - Open Verses CSV file - Abrir archivo de Versículos CSV - - - TopicsForm - - - Error - Error - - - RemoteTab - - - Remotes Receiver Port - Puerto de Recepción - - - Ui_MainWindow - - - &View - &Ver - - - Ui_AmendThemeDialog - - - Normal - Normal - - - Ui_OpenLPExportDialog - - - Close - Cerrar - - - Ui_BibleImportWizard - - - Username: - Usuario: - - - ThemeManager - - - Edit Theme - Editar Tema - - - ServiceManager - - - &Preview Verse - &Previzualizar Verso - - - Ui_AlertDialog - - - Alert Message - Mensaje de Alerta - - - ImportWizardForm - - - Finished import. - Importación finalizada. - - - GeneralTab - - - Show blank screen warning - Mostrar advertencia de pantalla en blanco - - - AlertsTab - - - Location: - Ubicación: - - - Ui_EditSongDialog - - - Authors, Topics && Book - Autores, Categorías && Libros - - - EditSongForm - - - You need to enter some verses. - Debe ingresar algunos versículos. - - - BibleMediaItem - - - Bible not fully loaded - Biblia incompleta - - - CustomTab - - - Display Footer: - Mostrar Pie de Página:Acortar? Mostrar Pie: - - - BiblePlugin - - - <strong>Bible Plugin</strong><br />This plugin allows bible verses from different sources to be displayed on the screen during the service. - <strong>Bible Plugin</strong><br />Este plugin permite visualizar versículos de la Biblia en la pantalla desde distintas fuentes durante el servicio. - - - Ui_EditSongDialog - - - Copyright Information - Información de Derechos de AutorAcortar? - - - Ui_MainWindow - - - &Export - &Exportar - - - Ui_AmendThemeDialog - - - Bold - Negrita - - - SongsPlugin - - - Export songs in OpenLP 2.0 format - Exportar canciones en formato OpenLP 2.0 - - - MediaManagerItem - - - Load a new - Cargar nuevo(a) - - - AlertEditForm - - - Missing data - Datos faltantes - - - SongsPlugin - - - <b>Song Plugin</b> <br>This plugin allows Songs to be managed and displayed.<br> - <b>Song Plugin</b> <br>Este plugin permite gestionar y mostrar las canciones.<br> - - - Ui_AmendThemeDialog - - - Footer Font - Fuente de Pie de Página - - - EditSongForm - - - Invalid verse entry - vX - Verso no válido - vX - - - BibleMediaItem - - - No Book Found - No se encontró el libro - - - Ui_OpenLPExportDialog - - - Export - Exportar - - - Ui_BibleImportWizard - - - Location: - Ubicación: - - - BibleMediaItem - - - Keep - Conservar - - - SongUsagePlugin - - - Generate report on Song Usage - Crear un reporte del Uso de las Canciones - - - Ui_EditSongDialog - - - Topic - Categoría - - - Ui_MainWindow - - - &Open - &Abrir - - - PresentationMediaItem - - - Present using: - Mostrar usando:Presentar? - - - ServiceManager - - - &Live Verse - Verso En &Vivo - - - Ui_EditVerseDialog - - - Pre-Chorus - Pre-Coro - - - Ui_EditSongDialog - - - Lyrics: - Letra: - - - Ui_AboutDialog - - - Project Lead - Raoul "superfly" Snyman - -Developers - Tim "TRB143" Bentley - Jonathan "gushie" Corwin - Michael "cocooncrash" Gorven - Scott "sguerrieri" Guerrieri - Raoul "superfly" Snyman - Maikel Stuivenberg - Martin "mijiti" Thompson - Jon "Meths" Tibble - Carsten "catini" Tingaard - -Testers - Wesley "wrst" Stout - Director del Proyecto -Raoul "superfly" Snyman - -Desarroladores -Tim "TRB143" Bentley -Jonathan "gushie" Corwin -Michael "cocooncrash" Gorven -Scott "sguerrieri" Guerrieri -Raoul "superfly" Snyman -Maikel Stuivenberg -Martin "mijiti" Thompson -Jon "Meths" Tibble -Carsten "catini" Tingaard - -Pruebas -Wesley "wrst" Stout - - - Ui_OpenLPExportDialog - - - Lyrics - Letra - - - AuthorsForm - - - You haven't set a display name for the author, would you like me to combine the first and last names for you? - No se ha puesto un nombre para el autor, ¿le gustaría que el nombre y los apellidos se combinen por usted? - - - SongMediaItem - - - Clear - Limpiar - - - AmendThemeForm - - - Slide Height is %s rows - Altura de Diapositiva es %s filas - - - Ui_OpenSongImportDialog - - - Progress: - Progreso: - - - Ui_MainWindow - - - Toggle Theme Manager - Alternar Gestor de Temas - - - Ui_AlertDialog - - - Alert Text: - Texto de Alerta: - - - Ui_EditSongDialog - - - Edit - Editar - - - AlertsTab - - - Font Color: - Color: - - - Ui_AmendThemeDialog - - - Theme Maintenance - Mantenimiento de Temas - - - CustomTab - - - Custom Display - Presentación Personalizada - - - Ui_OpenSongExportDialog - - - Title - Título - - - Ui_AmendThemeDialog - - - <Color1> - <Color1> - - - Ui_EditSongDialog - - - Authors - Autores - - - ThemeManager - - - Export Theme - Exportar Tema - - - ImageMediaItem - - - No items selected... - No hay ítems seleccionados... - - - Ui_SongBookDialog - - - Name: - Nombre: - - - Ui_AuthorsDialog - - - Author Maintenance - Mantenimiento de Autores - - - Ui_AmendThemeDialog - - - Font Footer - Pie de Página - - - Ui_MainWindow - - - &Settings - &Preferencias - - - &Options - &Opciones - - - BibleMediaItem - - - Results: - Resultados: - - - Ui_OpenLPExportDialog - - - Full Song List - Lista Completa de CancionesAcortar? - - - Ui_OpenSongImportDialog - - - OpenSong Folder: - Carpeta de OpenSong: - - - SlideController - - - Move to last - Mover al final - - - Ui_OpenLPExportDialog - - - Progress: - Progreso: - - - Ui_SongMaintenanceDialog - - - Add - Agregar - - - SongMaintenanceForm - - - Are you sure you want to delete the selected author? - ¿Está seguro que desea eliminar el autor seleccionado? - - - SongUsagePlugin - - - Song Usage Status - Estado de Uso de las Canciones - - - BibleMediaItem - - - Verse Search - Búsqueda de versículo - - - Ui_SongBookDialog - - - Edit Book - Editar Himnario - - - EditSongForm - - - Save && Preview - Guardar && Vista Previa - - - Ui_SongBookDialog - - - Publisher: - Editor:Publicador:? - - - Ui_AmendThemeDialog - - - Font Weight: - Tipo de Letra: - - - Ui_BibleImportWizard - - - Bible Filename: - Nombre de Biblia: - - - Ui_AmendThemeDialog - - - Transparent - Transparente - - - SongMediaItem - - - Search - Buscar - - - Ui_BibleImportWizard - - - Format: - Formato: - - - Ui_AmendThemeDialog - - - Background - Fondo - - - Ui_BibleImportWizard - - - Importing - Importando - - - Ui_customEditDialog - - - Edit all slides - Editar todas las diapositivasAcortar? - - - MediaMediaItem - - - Select Media - Seleccionar Medios - - - PresentationMediaItem - - - Select Presentation(s) - Seleccionar Presentación(es) - - - SongMediaItem - - - Authors - Autores - - - Ui_PluginViewDialog - - - Active - Activo - - - Ui_MainWindow - - - Save the current service under a new name - Guardar el servicio actual con un nuevo nombre - - - Ctrl+O - Ctrl+O - - - Ui_AmendThemeDialog - - - Other Options - Otras Opciones - - - SongMaintenanceForm - - - Couldn't add your author! - ¡No se pudo agregar su autor! - - - Ui_AlertEditDialog - - - Edit - Editar - - - Ui_EditSongDialog - - - Song Editor - Editor de Canción - - - AlertsTab - - - Font - Tipo de Letra - - - SongsPlugin - - - &Song - &Canción& where? - - - Ui_MainWindow - - - &File - &Archivo - - - MediaManagerItem - - - &Edit - &Editar - - - Ui_AmendThemeDialog - - - Vertical - Vertical - - - Width: - Ancho: - - - ThemeManager - - - You are unable to delete the default theme! - ¡Usted no puede eliminar el tema por defecto! - - - ThemesTab - - - Use the global theme, overriding any themes associated with either the service or the songs. - Utilice el tema global, ignorado los temas asociados con el servicio o con las canciones. - - - BibleMediaItem - - - Version: - Versión: - - - Ui_AboutDialog - - - OpenLP <version> build <revision> - Open Source Lyrics Projection + + <strong>Custom Plugin</strong><br />The custom plugin provides the ability to set up custom text slides that can be displayed on the screen the same way songs are. This plugin provides greater freedom over the songs plugin. + + + + + CustomPlugin.CustomTab + + + Custom + + + + + Custom Display + Presentación Personalizada + + + + Display footer + + + + + CustomPlugin.EditCustomForm + + + Edit Custom Slides + Editar Diapositivas Personalizadas + + + + Move slide up once 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: + + + + + Save && Preview + Guardar && Vista Previa + + + + Error + Error + + + + You need to type in a title. + + + + + You need to add at least one slide + + + + + You have one or more unsaved slides, please either save your slide(s) or clear your changes. + + + + + CustomPlugin.MediaItem + + + Custom + + + + + You haven't selected an item to edit. + + + + + You haven't selected an item to delete. + + + + + ImagePlugin + + + <strong>Image Plugin</strong><br />The image plugin provides displaying of images.<br />One of the distinguishing features of this plugin is the ability to group a number of images together in the service manager, making the displaying of multiple images easier. This plugin can also make use of OpenLP's "timed looping" feature to create a slide show that runs automatically. In addition to this, images from the plugin can be used to override the current theme's background, which renders text-based items like songs with the selected image as a background instead of the background provided by the theme. + + + + + ImagePlugin.ImageTab + + + Images + Imágenes + + + + Image Settings + Preferencias de Imagen + + + + Slide loop delay: + + + + + sec + seg + + + + ImagePlugin.MediaItem + + + Image + Imagen + + + + Select Image(s) + Seleccionar Imagen(es) + + + + All Files + + + + + Replace Live Background + + + + + Replace 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. + + + + + MediaPlugin + + + <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. + + + + + MediaPlugin.MediaItem + + + Media + Medios + + + + Select Media + Seleccionar Medios + + + + Replace Live Background + + + + + Replace Background + + + + + You must select a media file to delete. + + + + + OpenLP + + + Image Files + + + + + OpenLP.AboutForm + + + About OpenLP + Acerca de OpenLP + + + + OpenLP <version><revision> - Open Source Lyrics Projection OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if OpenOffice.org, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. Find out more about OpenLP: http://openlp.org/ OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider contributing by using the button below. - OpenLP <version> build <revision> - Open Source Lyrics Projection + + + + + About + Acerca De + + + + Project Lead + Raoul "superfly" Snyman -OpenLP es un programa gratuito de presentación para iglesias, o un programa de presentación de letras, usted to display slides of songs, Versículos, videos, imágenes, e incluso presentaciones (si OpenOffice.org, PowerPoint o PowerPoint Viewer esta instalado) para la alabanza, usando una computadora y un proyector de datos. +Developers + Tim "TRB143" Bentley + Jonathan "gushie" Corwin + Michael "cocooncrash" Gorven + Scott "sguerrieri" Guerrieri + Raoul "superfly" Snyman + Martin "mijiti" Thompson + Jon "Meths" Tibble -Más información en: http://openlp.org/ +Contributors + Meinert "m2j" Jordan + Christian "crichter" Richter + Maikel Stuivenberg + Carsten "catini" Tingaard -OpenLP es desarrollado y mantenido por voluntarios. If you would like to see more free Christian software being written, please consider contributing by using the button below. - - - SongsPlugin - - - OpenLP 2.0 - OpenLP 2.0 - - - ServiceManager - - - New Service - Servicio Nuevo - - - Ui_TopicsDialog - - - Topic name: - Categoría:Nombre:? o Categoría:? - - - ThemeManager - - - File is not a valid theme! - ¡El archivo no es un tema válido! - - - Ui_BibleImportWizard - - - License Details - Detalles de Licencia - - - ServiceManager - - - Move down - Hacia abajo - - - Ui_EditSongDialog - - - R&emove - &Quitar - - - Ui_AmendThemeDialog - - - Middle - Medio - - - Ui_BibleImportWizard - - - Verse Location: - Versículos:Ubicación de Versículos: - - - AlertEditForm - - - Item selected to Edit - Tema seleccionado para Editar - - - BibleMediaItem - - - From: - Desde: - - - Ui_AmendThemeDialog - - - Shadow Color: - Color: - - - ServiceManager - - - &Notes - &Notas - - - Ui_MainWindow - - - E&xit - &Salir - - - Ui_OpenLPImportDialog - - - Close - Cerrar - - - MainWindow - - - OpenLP Version Updated - Versión de OpenLP Actualizada - - - Ui_customEditDialog - - - Replace edited slide - Reemplazar diapositiva editadaAcortar? - - - Add new slide at bottom - Agregar nueva diapositiva al finalAcortar? - - - EditCustomForm - - - You need to enter a title - Usted debe ingresar un título - - - ThemeManager - - - Theme Exists - Ya existe el Tema - - - Ui_MainWindow - - - &Help - &Ayuda - - - Ui_OpenSongExportDialog - - - OpenSong Song Exporter - Exportador de Canciones OpenSongAcortar? - - - Ui_AmendThemeDialog - - - Vertical Align: - Vertical: - - - TestMediaManager - - - Item2 - Ítem2 - - - Item1 - Ítem1 - - - Ui_AmendThemeDialog - - - Top - Superior - - - BiblesTab - - - Display Dual Bible Verses - Mostrar Versículos Paralelos - - - Ui_MainWindow - - - Toggle Service Manager - Alternar Gestor de Servicio - - - MediaManagerItem - - - &Add to Service - &Agregar al Servicio - - - AmendThemeForm - - - First Color: - Primer Color: - - - ThemesTab - - - Song level - Según Canción - - - alertsPlugin - - - Show an alert message - Mostrar un mensaje de alerta - - - Ui_MainWindow - - - Ctrl+F1 - Ctrl+F1 - - - SongMaintenanceForm - - - Couldn't save your topic! - ¡No se pudo guardar la categoría! - - - Ui_OpenLPExportDialog - - - Remove Selected - Quitar lo Seleccionado - - - ThemeManager - - - Delete theme - Eliminar tema - - - ImageTab - - - Image Settings - Preferencias de Imagen - - - Ui_OpenSongImportDialog - - - OpenSong Song Importer - Importador de canciones OpenSong - - - BiblesTab - - - Bibles - Biblias - - - SongUsagePlugin - - - &Extract recorded data - &Extraer los datos guardados - - - AlertsTab - - - Font Name: - Fuente: - - - Ui_MainWindow - - - &Web Site - Sitio &Web - - - MediaManagerItem - - - Send the selected item live - Enviar en vivo el ítem seleccionado - - - Ui_MainWindow - - - M&ode - M&odo - - - Translate the interface to your language - Traducir la interfaz a su idioma - - - Service Manager - Gestor de Servicio - - - CustomMediaItem - - - Custom - Personalizada - - - Ui_BibleImportWizard - - - OSIS - OSIS - - - SongsPlugin - - - openlp.org 1.0 - openlp.org 1.0 - - - Ui_MainWindow - - - &Theme - &Tema - - - Ui_EditVerseDialog - - - Edit Verse - Editar Verso - - - Ui_MainWindow - - - &Language - &Idioma - - - SlideController - - - Verse - VersoVersículo? - - - ImportWizardForm - - - You need to specify an OpenSong Bible file to import! - ¡Debe especificar una Biblia OpenSong para importar! - - - ServiceManager - - - Your service is unsaved, do you want to save those changes before creating a new one ? - Su servicio no se ha salvado, ¿quiere guardar los cambios antes de crear uno nuevo? - - - Ui_OpenSongExportDialog - - - Remove Selected - Quitar lo Seleccionado - - - SongMediaItem - - - Search: - Buscar: - - - MainWindow - - - Save Changes to Service? - ¿Guardar los Cambios al Servicio? - - - Your service has changed, do you want to save those changes? - ¿Su servicio cambió, quiere guardar esos cambios? - - - EditSongForm - - - Invalid verse entry - values must be Numeric, I,B,C,T,P,E,O - Entrada no válida - los valores deben ser Numéricos, I,B,C,T,P,E,OIntro,Puente,Coro,T ,Pre-coro, Final,Otro. - - - Ui_EditSongDialog - - - &Add to Song - &Agregar a Canción - - - Ui_MainWindow - - - &About - &Acerca De - - - BiblesTab - - - Only show new chapter numbers - Solo mostrar los números de capítulos nuevos - - - ImportWizardForm - - - You need to specify a version name for your Bible! - ¡Debe especificar un nombre para la versión de la Biblia! - - - Ui_AlertEditDialog - - - Delete - Eliminar - - - EditCustomForm - - - Error - Error - - - RemotesPlugin - - - <b>Remote Plugin</b><br>This plugin provides the ability to send messages to a running version of openlp on a different computer.<br>The Primary use for this would be to send alerts from a creche - <b>Remote Plugin</b><br>Este plugin ofrece la posibilidad de enviar mensajes a alguna versión de openlp en un equipo diferente.<br>El uso principal para esto sería enviar alertas desde una guardería - - - SongMaintenanceForm - - - This topic can't be deleted, it is currently assigned to at least one song! - ¡Esta categoría no se puede borrar, esta asignada a al menos una canción! - - - BibleMediaItem - - - Find: - Encontrar: - - - AlertEditForm - - - Item selected to Add - Ítem seleccionado para AgregarAcortar? - - - Ui_AmendThemeDialog - - - Right - Derecha - - - ThemeManager - - - Save Theme - (%s) - Guardar Tema - (%s) - - - ImageMediaItem - - - Allow background of live slide to be overridden - Permitir que el fondo de la diapositiva sea sustituido - - - MediaManagerItem - - - Add the selected item(s) to the service - Agregar el elemento(s) seleccionado(s) al el servicio - - - AuthorsForm - - - Error - Error - - - BibleMediaItem - - - Book: - Libro: - - - Ui_AmendThemeDialog - - - Font Color: - Color de Fuente: - - - Ui_OpenLPExportDialog - - - Select openlp.org export filename: - Seleccione el nombre de archivo openlp.org a exportar:Acortar? - - - Ui_SettingsDialog - - - Settings - Preferencias - - - BiblesTab - - - Verse Display - Visualización de versículos - - - MediaManagerItem - - - Edit the selected - Editar - - - SlideController - - - Move to next - Ir al siguiente - - - Ui_MainWindow - - - &Plugin List - Lista de &Plugins - - - BiblePlugin - - - &Bible - &Biblia - - - Ui_BibleImportWizard - - - Web Download - Descarga Web - - - Ui_AmendThemeDialog - - - Horizontal - Horizontal - - - ImportWizardForm - - - Open OSIS file - Abrir archivo OSIS - - - SongMaintenanceForm - - - Couldn't save your book! - ¡No se pudo guardar su libro! - - - Couldn't add your topic! - ¡No se pudo agregar la categoría! - - - Ui_AmendThemeDialog - - - pt - pt - - - Ui_MainWindow - - - &Add Tool... - &Agregar Herramienta... - - - Ui_AmendThemeDialog - - - <Color2> - <Color2> - - - ServiceManager - - - Move up - Hacia arriba - - - Ui_OpenLPImportDialog - - - Lyrics - Letra - - - BiblesTab - - - No brackets - Sin corchetes - - - Ui_AlertEditDialog - - - Maintain Alerts - Mantenimiento de Alertas - - - Ui_AmendThemeDialog - - - px - px - - - ServiceManager - - - Select a theme for the service - Seleccione un tema para el servicio - - - ThemesTab - - - Themes - Temas - - - ServiceManager - - - Move to bottom - Mover al Final - - - Ui_PluginViewDialog - - - Status: - Estado: - - - Ui_EditSongDialog - - - CCLI Number: - Número en CCLI: - - - ImportWizardForm - - - This Bible already exists! Please import a different Bible or first delete the existing one. - ¡La Biblia ya existe! Por favor, importe una diferente o borre la anterior. - - - Ui_MainWindow - - - &Translate - &Traducir - - - AlertEditForm - - - Please Save or Clear seletced item - Por favor, Guarde o Limpie el ítem seleccionadoO Borre? - - - Ui_MainWindow - - - Save Service As - Guardar Servicio Como - - - Ui_SongMaintenanceDialog - - - Authors - Autores - - - SongUsageDetailForm - - - Output File Location - Archivo de Salida - - - BiblesTab - - - { and } - { y } - - - GeneralTab - - - Prompt to save Service before starting New - Pedir salvar el Servicio al crear uno Nuevo - - - ImportWizardForm - - - Starting import... - Iniciando importación... - - - BiblesTab - - - Note: -Changes don't affect verses already in the service - Nota: -Los cambios no afectan a los versículo ya en el servicio - - - Ui_EditVerseDialog - - - Intro - Intro - - - ServiceManager - - - Move up order - Mover hacia arriba - - - PresentationTab - - - available - disponible - - - ThemeManager - - - default - por defectopredeterminado? - - - SongMaintenanceForm - - - Delete Author - Borrar Autor - - - Ui_AmendThemeDialog - - - Display Location - Ubicación en la pantalla - - - Ui_PluginViewDialog - - - Version: - Versión: - - - Ui_AlertEditDialog - - - Add - Agregar - - - GeneralTab - - - General - General - - - Ui_AmendThemeDialog - - - Y Position: - Posición Y: - - - ServiceManager - - - Move down order - Mover hacia abajo - - - BiblesTab - - - verse per slide - versículo por diapositiva - - - Ui_BibleImportWizard - - - Welcome to the Bible Import Wizard - Bienvenido al Asistente de Importación de Biblias - - - Ui_AmendThemeDialog - - - Show Shadow: - Mostrar: - - - AlertsTab - - - Preview - Vista Previa - - - alertsPlugin - - - <b>Alerts Plugin</b><br>This plugin controls the displaying of alerts on the presentations screen - <b>Alerts Plugin</b><br>Este plugin controla la visualización de alertas en la pantalla de presentaciones - - - GeneralTab - - - Show the splash screen - Mostrar pantalla de bienvenida - - - Ui_MainWindow - - - New Service - Servicio Nuevo - - - SlideController - - - Move to first - Ir al principio - - - Ui_MainWindow - - - &Online Help - &Ayuda En Línea - - - SlideController - - - Blank Screen - Pantalla en Blanco - - - Ui_MainWindow - - - Save Service - Guardar Servicio - - - Save &As... - Guardar &Como... - - - Toggle the visibility of the Media Manager - Alternar visibilidad del Gestor de Medios - - - MediaManagerItem - - - Delete the selected item - Borrar el ítem seleccionado - - - Ui_EditSongDialog - - - Add - Agregar - - - alertsPlugin - - - &Alert - &Alerta - - - BibleMediaItem - - - Advanced - Avanzado - - - ImageMediaItem - - - Image(s) - Imagen(es) - - - Ui_MainWindow - - - F11 - F11 - - - F10 - F10 - - - F12 - F12 - - - Ui_BibleImportWizard - - - Select the import format, and where to import from. - Seleccione el formato y el lugar del cual importar. - - - Ui_MainWindow - - - Alt+F7 - Alt+F7 - - - Add an application to the list of tools - Agregar una aplicación a la lista de herramientas - - - MediaPlugin - - - <b>Media Plugin</b><br>This plugin allows the playing of audio and video media - <b>Media Plugin</b><br>Este plugin permite la reproducción de medios de audio y video - - - BiblesTab - - - Bible Theme: - Tema de Biblia: - - - SongsPlugin - - - Export songs in openlp.org 1.0 format - Exportar canciones en formato openlp.org 1.0 - - - Ui_MainWindow - - - Theme Manager - Gestor de Temas - - - AlertsTab - - - Alerts - Alertas - - - Ui_customEditDialog - - - Move slide down 1 - Mover hacia abajo 1 - - - Ui_AmendThemeDialog - - - Font: - Fuente: - - - ServiceManager - - - Load an existing service - Abrir un servicio existente - - - Ui_MainWindow - - - Toggle the visibility of the Theme Manager - Alternar visibilidad del Gestor de Temas - - - PresentationTab - - - Presentations - Presentaciones - - - SplashScreen - - - Starting - Iniciando - - - ImageTab - - - Slide Loop Delay: - Retraso del Bucle: - - - ServiceManager - - - Move to end - Mover al final - - - AlertsTab - - - Alert timeout: - Espera:Timeout?? - - - Ui_MainWindow - - - &Preview Pane - Panel de Vista &Previa - - - MediaManagerItem - - - Add a new - Agregar uno nuevo - - - ThemeManager - - - Select Theme Import File - Seleccione el Archivo de Tema a Importar - - - New Theme - Tema Nuevo - - - MediaMediaItem - - - Media - Medios - - - Ui_BibleImportWizard - - - Password: - Contraseña: - - - Ui_AmendThemeDialog - - - Outline Size: - Tamaño: - - - Ui_OpenSongExportDialog - - - Progress: - Progreso: - - - AmendThemeForm - - - Second Color: - Segundo Color: - - - Ui_EditSongDialog - - - Theme, Copyright Info && Comments - Tema, Derechos de Autor && Comentarios - - - Ui_MainWindow - - - &Theme Manager - Gestor de &Temas - - - Ui_OpenLPImportDialog - - - Select openlp.org songfile to import: - Seleccionar al archivo de canciones openlp.org a importar: - - - Ui_EditSongDialog - - - Song Book - Himnario - - - alertsPlugin - - - F7 - F7 - - - Ui_OpenLPExportDialog - - - Author - Autor - - - Ui_AmendThemeDialog - - - Wrap Indentation - Sangría de Retorno - - - ThemeManager - - - Import a theme - Importar un tema - - +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) + + + + + + Credits + Créditos + + + + 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 + Licencia + + + + Contribute + Contribuir + + + + Close + Cerrar + + + + build %s + + + + + OpenLP.AdvancedTab + + + Advanced + Avanzado + + + + UI Settings + + + + + Number of recent files to display: + + + + + Remember active media manager tab on startup + + + + + Double-click to send items straight to live (requires restart) + + + + + 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. + + + + + OpenLP.GeneralTab + + + General + General + + + + Monitors + Monitores + + + + Select monitor for output display: + Seleccionar monitor para visualizar la salida: + + + + Display if a single screen + + + + + Application Startup + Inicio de la Aplicación + + + + Show blank screen warning + Mostrar advertencia de pantalla en blanco + + + + Automatically open the last service + Abrir automáticamente el último servicio + + + + Show the splash screen + Mostrar pantalla de bienvenida + + + + Application Settings + Configuración del Programa + + + + Prompt to save Service before starting New + Pedir salvar el Servicio al crear uno Nuevo + + + + Preview Next Song from Service Manager + Vista Previa de la Siguiente Canción en el Servicio + + + + CCLI Details + Detalles de CCLI + + + + CCLI number: + + + + + SongSelect username: + + + + + SongSelect password: + + + + + Display Position + + + + + X + + + + + Y + + + + + Height + + + + + Width + + + + + Override display position + + + + + Screen + Pantalla + + + + primary + primario + + + + OpenLP.LanguageManager + + + Language + + + + + Please restart OpenLP to use your new language setting. + + + + + OpenLP.MainWindow + + + OpenLP 2.0 + OpenLP 2.0 + + + + English + 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>. + + + + + 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 + + + + + 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. + + + + + OpenLP.PluginForm + + + Plugin List + Lista de Plugins + + + + Plugin Details + Detalles de Plugin + + + + Version: + Versión: + + + + TextLabel + TextLabel + + + + About: + Acerca de: + + + + Status: + Estado: + + + + Active + Activo + + + + Inactive + Inactivo + + + + %s (Inactive) + + + + + %s (Active) + + + + + %s (Disabled) + + + + + OpenLP.ServiceItemEditForm + + + Reorder Service Item + + + + + Up + + + + + Delete + Eliminar + + + + Down + + + + + OpenLP.ServiceManager + + + New Service + Servicio Nuevo + + + + Create a new service + Crear un servicio nuevo + + + + Open Service + Abrir Servicio + + + + Load an existing service + Abrir un servicio existente + + + + Save Service + Guardar Servicio + + + + Save this service + Guardar este servicio + + + + Theme: + Tema: + + + + Select a theme for the service + Seleccione un tema para el servicio + + + + Move to &top + + + + + Move item to the top of the service. + + + + + Move &up + + + + + Move item up one position in the service. + + + + + Move &down + + + + + Move item down one position in the service. + + + + + Move to &bottom + + + + + Move item to the end of the service. + + + + + &Delete From Service + + + + + Delete the selected item from the service. + + + + + &Add New Item + + + + + &Add to Selected Item + + + + + &Edit Item + &Editar Ítem + + + + &Reorder Item + + + + + &Notes + &Notas + + + + &Preview Verse + &Previzualizar Verso + + + + &Live Verse + Verso En &Vivo + + + + &Change Item Theme + &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 + + + + + OpenLP.ServiceNoteForm + + + Service Item Notes + Notas de Elemento de Servicio + + + + OpenLP.SettingsForm + + + Configure OpenLP + + + + + 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 + + + + Go to Verse + Ir al Verso + + + + OpenLP.ThemeManager + + + New Theme + Tema Nuevo + + + + Create a new theme. + + + + + Edit Theme + Editar Tema + + + + Edit a theme. + + + + + Delete Theme + Eliminar Tema + + + + Delete a theme. + + + + + Import Theme + Importar Tema + + + + Import a theme. + + + + + Export Theme + Exportar Tema + + + + Export a theme. + + + + + &Edit Theme + + + + + &Delete Theme + + + + + Set As &Global Default + + + + + E&xport Theme + + + + + %s (default) + + + + + You must select a theme to edit. + + + + + You must select a theme to delete. + + + + + Delete Confirmation + + + + + Delete theme? + + + + + Error + Error + + + + You are unable to delete the default theme. + + + + + Theme %s is use in %s plugin. + + + + + Theme %s is use by the service manager. + + + + + You have not selected a theme. + + + + + Save Theme - (%s) + Guardar Tema - (%s) + + + + Theme Exported + + + + + Your theme has been successfully exported. + + + + + Theme Export Failed + + + + + Your theme could not be exported due to an error. + + + + + Select Theme Import File + Seleccione el Archivo de Tema a Importar + + + + Theme (*.*) + + + + + 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? + + + + + OpenLP.ThemesTab + + + Themes + Temas + + + + Global Theme + + + + + Theme Level + + + + + S&ong Level + + + + + Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. + Utilice el tema de cada canción en la base de datos. Si una canción no tiene un tema asociado, utilizar el tema del servicio. Si el servicio no tiene un tema, utilizar el tema global. + + + + &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. + Utilizar el tema del servicio, ignorando el tema de las canciones individuales. Si el servicio no tiene un tema, utilizar el tema global. + + + + &Global Level + + + + + Use the global theme, overriding any themes associated with either the service or the songs. + Utilice el tema global, ignorado los temas asociados con el servicio o con las canciones. + + + PresentationPlugin - - <b>Presentation Plugin</b> <br> Delivers 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. - <b>Presentation Plugin</b> <br> Ofrece la capacidad de mostrar presentaciones usando un número de programas diferentes. La selección de programas disponibles se encuentra en un cuadro desplegable. - - - ImageMediaItem + + <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. + + + + + PresentationPlugin.MediaItem - - Image - Imagen - - - SongsTab + + Presentation + Presentación + - - Enable search as you type: - Habilitar búsqueda-al-escribir: - - - Ui_AlertDialog + + Select Presentation(s) + Seleccionar Presentación(es) + - - Cancel - Cancelar - - - Ui_OpenLPImportDialog + + Automatic + + - - Import - Importar - - - Ui_EditVerseDialog + + Present using: + Mostrar usando: + - - Chorus - Coro - - - Ui_EditSongDialog + + File Exists + + - - Edit All - Editar Todo - - - AuthorsForm + + A presentation with that filename already exists. + Ya existe una presentación con ese nombre. + - - You need to type in the last name of the author. - Debe ingresar el apellido del autor. - - - SongsTab + + Unsupported File + + - - Songs Mode - Modo de canciones - - - Ui_AmendThemeDialog + + This type of presentation is not supported + + - - Left - Izquierda - - - ThemesTab + + You must select an item to delete. + + + + + PresentationPlugin.PresentationTab - - 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. - Utilizar el tema del servicio, ignorando el tema de las canciones individuales. Si el servicio no tiene un tema, utilizar el tema global. - - - ImageTab + + Presentations + Presentaciones + - - Images - Imágenes - - - BibleMediaItem + + Available Controllers + Controladores Disponibles + - - Verse: - Versículo:Verso:? - - - Ui_BibleImportWizard + + Advanced + + - - CSV - CSV - - - Ui_OpenLPExportDialog + + Allow presentation application to be overriden + + + + + RemotePlugin - - Song Export List - Lista de Canciones a ExportarAcortar? - - - ThemeManager + + <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. + + + + + RemotePlugin.RemoteTab - - Export theme - Exportar tema - - - Ui_SongMaintenanceDialog + + Remotes + Remotas + - - Delete - Eliminar - - - Ui_AmendThemeDialog + + Serve on IP address: + + - - Theme Name: - Nombrar como: - - - Ui_AboutDialog + + Port number: + + - - About OpenLP - Acerca de OpenLP - - - Ui_MainWindow - - - Toggle the visibility of the Service Manager - Alternar visibilidad del Gestor de Servicio - - - PresentationMediaItem - - - A presentation with that filename already exists. - Ya existe una presentación con ese nombre. - - - AlertsTab - - - openlp.org - openlp.org - - - ImportWizardForm - - - Invalid Books File - Archivo de Libros No Válido - - - Ui_OpenLPImportDialog - - - Song Title - Titulo de Canción - - - MediaManagerItem - - - &Show Live - Mo&star En Vivo& Where - - - AlertsTab - - - Keep History: - Guardar Historial:Acortar? - - - Ui_AmendThemeDialog - - - Image: - Imagen: - - - Ui_customEditDialog - - - Set Theme for Slides - Establezca el Tema para las Diapositivas - - - Ui_MainWindow - - - More information about OpenLP - Más información acerca de OpenLP - - - AlertsTab - - - Background Color: - Color de Fondo: - - - SongMaintenanceForm - - - No topic selected! - ¡No seleccionó la categoría! - - - Ui_MainWindow - - - &Media Manager - Gestor de &Medios - - - &Tools - &Herramientas - - - AmendThemeForm - - - Background Color: - Color de Fondo: - - - Ui_EditSongDialog - - - A&dd to Song - A&gregar a Canción - - - Title: - Título: - - - GeneralTab - - - Screen - Pantalla - - - AlertsTab - - - s - s - - - ImagePlugin - - - <b>Image Plugin</b><br>Allows images of all types to be displayed. If a number of images are selected together and presented on the live controller it is possible to turn them into a timed loop.<br<br>From the plugin if the <i>Override background</i> is chosen and an image is selected any somgs which are rendered will use the selected image from the background instead of the one provied by the theme.<br> - <b>Image Plugin</b><br>Permite mostrar imágenes de todo tipo. Si se seleccionan varias imágenes juntas y se presentan en vivo, es posible convertirlas en un bucle temporalizado.<br<br>Desde el plugin, si se seleciona la opción de <i>Sustituir el fondo</i>, cualquier canción que se muestre, usará la imagen seleccionada como fondo, en vez de la imagen del tema.<br> - - - Ui_AlertEditDialog - - - Clear - Limpiar - - - Ui_BibleImportWizard - - - Please wait while your Bible is imported. - Por favor, espere mientras que la Biblia es importada. - - - MediaManagerItem - - - No items selected... - Ningún ítem seleccionado... - - - Ui_OpenLPImportDialog - - - Select All - Seleccionar Todo - - - Ui_AmendThemeDialog - - - Font Main - Fuente Principal - - - Ui_OpenLPImportDialog - - - Title - Título - - - Ui_OpenSongExportDialog - - - Select OpenSong song folder: - Seleccione la carpeta OpenSong de canciones:Acortar? - - - Ui_MainWindow - - - Toggle Media Manager - Alternar Gestor de Medios - - + + Server Settings + + + + SongUsagePlugin - - &Song Usage - &Uso de las Canciones - - - GeneralTab - - - Monitors - Monitores - - - EditCustomForm - - - You need to enter a slide - Debe insertar una diapositiva - - - ImportWizardForm - - - You need to specify a file to import your Bible from! - ¡Debe especificar un archivo desde el cual importar su Biblia! - - - Ui_EditVerseDialog - - - Verse Type - Tipo de Verso - - - ThemeManager - - - You have not selected a theme! - ¡No ha seleccionado un tema! - - - Ui_EditSongDialog - - - Comments - Comentarios - - - AlertsTab - - - Bottom - AbajoInferior? - - - Ui_MainWindow - - - Create a new Service - Crear un Servicio nuevo - - - AlertsTab - - - Top - ArribaSuperior? - - - SlideController - - - Preview - Vista Previa - - - Ui_PluginViewDialog - - - TextLabel - TextLabelEnglish? - - - About: - Acerca de: - - - Inactive - Inactivo - - - Ui_OpenSongExportDialog - - - Ready to export - Listo para exportar - - - Export - Exportar - - - Ui_PluginViewDialog - - - Plugin List - Lista de Plugins - - - Ui_AmendThemeDialog - - - Transition Active: - Activar Transición: - - - Ui_BibleImportWizard - - - Proxy Server (Optional) - Servidor Proxy (Opcional) - - - Ui_EditSongDialog - - - &Manage Authors, Topics, Books - Ad&ministrar Autores, Categorías, Libros - - - Ui_SongUsageDetailDialog - - - Audit Detail Extraction - Extracción de Detalles de Auditoria - - - Ui_OpenLPExportDialog - - - Ready to export - Listo para exportar - - - EditCustomForm - - - Save && Preview - Guardar && Vista Previa - - - Ui_OpenLPExportDialog - - - Select All - Seleccionar Todo - - - Ui_SongUsageDetailDialog - - - to - hasta - - - Ui_AmendThemeDialog - - - Size: - Tamaño: - - - MainWindow - - - OpenLP Main Display Blanked - Pantalla Principal de OpenLP en Blanco - - - Ui_OpenLPImportDialog - - - Remove Selected - Quitar lo Seleccionado - - - OpenSongBible - - - Importing - Importando - - - Ui_EditSongDialog - - - Delete - Eliminar - - - Ui_MainWindow - - - Ctrl+S - Crtl+G - - - PresentationMediaItem - - - File exists - Ya existe el Archivo - - - Ui_OpenSongImportDialog - - - Ready to import - Listo para importar - - - SlideController - - - Stop continuous loop - Detener el bucleBucle, sinónimos? - - - s - s - - - SongMediaItem - - - Song Maintenance - Mantenimiento de Canción - - - Ui_customEditDialog - - - Edit - Editar - - - Ui_AmendThemeDialog - - - Gradient : - Gradiente: - - - BiblesTab - - - Layout Style: - Disposición: - - - ImportWizardForm - - - Invalid Verse File - Archivo de Versículo No Válido - - - EditSongForm - - - Error - Error - - - Ui_customEditDialog - - - Add New - Agregar Nueva - - - Ui_AuthorsDialog - - - Display name: - Mostrar: - - - SongMaintenanceForm - - - Are you sure you want to delete the selected topic? - ¿Está seguro que desea eliminar la categoría seleccionada? - - - Ui_AmendThemeDialog - - - Bold/Italics - Negrita/Cursiva - - - Ui_SongMaintenanceDialog - - - Song Maintenance - Mantenimiento de Canciones - - - Ui_EditVerseDialog - - - Bridge - Puente - - - SongsTab - - - Songs - Canciones - - - Ui_AmendThemeDialog - - - Preview - Vista Previa - - - Ui_AboutDialog - - - Credits - Créditos - - - MediaManagerItem - - - Preview the selected item - Vista Previa del ítem seleccionado - - - Ui_BibleImportWizard - - - Version Name: - Nombre de Versión: - - - Ui_AboutDialog - - - About - Acerca De - - - Ui_EditVerseDialog - - - Ending - Final - - - Ui_AmendThemeDialog - - - Horizontal Align: - Horizontal: - - - ServiceManager - - - &Edit Item - &Editar Ítem - - - Ui_AmendThemeDialog - - - Background Type: - Tipo de Fondo: - - - Ui_MainWindow - - - &Save - &Guardar - - - OpenLP 2.0 - OpenLP 2.0 - - - ThemeManager - - - A theme with this name already exists, would you like to overwrite it? - Ya existe un tema con este nombre, ¿quiere reemplazarlo? - - - Export a theme - Exportar un tema - - - AmendThemeForm - - - Open file - Abrir archivo - - - Ui_TopicsDialog - - - Topic Maintenance - Mantenimiento de Categorías - - - Ui_customEditDialog - - - Clear edit area - Limpiar el área de edición - - - Ui_AmendThemeDialog - - - Show Outline: - Mostrar: - - - SongBookForm - - - You need to type in a book name! - ¡Debe ingresar el nombre del himnario! - - - ImportWizardForm - - - Open OpenSong Bible - Abrir Biblia OpenSong - - - Ui_MainWindow - - - Look && &Feel - A&pariencia& en que letra? - - - Ui_BibleImportWizard - - - Ready. - Listo. - - - Ui_SongMaintenanceDialog - - - Books/Hymnals - Libros/Himnarios - - - Ui_AboutDialog - - - Contribute - Contribuir - - - Ui_AmendThemeDialog - - - Gradient - Gradiente - - - AlertsTab - - - Font Size: - Tamaño: - - - Ui_OpenSongExportDialog - - - Full Song List - Lista Completa de Canciones - - - Ui_AmendThemeDialog - - - Circular - Circular - - + + &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. + + + + + SongUsagePlugin.SongUsageDeleteForm + + + Delete Selected Song Usage Events? + + + + + Are you sure you want to delete selected Song Usage data? + + + + + Delete Song Usage Data + + + + + SongUsagePlugin.SongUsageDetailForm + + + Output File Location + Archivo de Salida + + + + Song Usage Extraction + + + + + Select Date Range + + + + + to + hasta + + + + Report Location + Ubicación de Reporte + + + + SongsPlugin + + + &Song + &Canción + + + + Import songs using the import wizard. + + + + + Songs of Fellowship (temp menu item) + + + + + Import songs from the VOLS1_2.RTF, sof3words.rtf and sof4words.rtf supplied with the music books + + + + + Generic Document/Presentation Import (temp menu item) + + + + + Import songs from Word/Writer/Powerpoint/Impress + + + + + OpenSong (temp menu item) + + + + + Import songs from OpenSong files(either raw text or ZIPfiles) + + + + + OpenLP v2 Songs (temporary) + + + + + Import an OpenLP v2 song database + + + + + Open Songs of Fellowship file + + + + + Import Error + + + + + Error importing Songs of Fellowship file. +OpenOffice.org must be installed and you must be using an unedited copy of the RTF included with the Songs of Fellowship Music Editions + + + + + Open OpenSong file + + + + + Error importing OpenSong file + + + + + Select OpenLP database(s) to import... + + + + + Database(s) imported + + + + + Your OpenLP v2 song databases have been successfully imported + + + + + Error importing OpenLP v2 database(s) + + + + + Open documents or presentations + + + + + <strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs. + + + + + SongsPlugin.AuthorsForm + + + Author Maintenance + Mantenimiento de Autores + + + + Display name: + Mostrar: + + + + First name: + Nombre: + + + + Last name: + Apellido: + + + + Error + Error + + + + You need to type in the first name of the author. + Tiene que escribir el nombre del autor. + + + + You need to type in the last name of the author. + Debe ingresar el apellido del autor. + + + + 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 + Editor de Canción + + + + &Title: + + + + + &Lyrics: + + + + + &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 + + + + + Copyright Information + Información de Derechos de Autor + + + + © + + + + + 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? + + + + + Alt&ernate title: + + + + + &Verse order: + + + + + CCLI number: + + + + + SongsPlugin.EditVerseForm + + + Edit Verse + Editar Verso + + + + &Verse type: + + + + + &Insert + + + + + SongsPlugin.ImportWizardForm + + + No OpenLyrics Files Selected + + + + + You need to add at least one OpenLyrics song file to import from. + + + + + No OpenSong Files Selected + + + + + You need to add at least one OpenSong song file to import from. + + + + + No CCLI Files Selected + + + + + You need to add at least one CCLI file to import from. + + + + + No CSV File Selected + + + + + You need to specify a CSV file to import from. + + + + + 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: + + + + OpenLyrics + + + + + OpenSong + OpenSong + + + + CCLI + + + + + CSV + CSV + + + + Add Files... + + + + + Remove File(s) + + + + + Filename: + + + + + Browse... + + + + + Importing + Importando + + + + Please wait while your songs are imported. + + + + + Ready. + Listo. + + + + %p% + + + + + 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. + + + + + CCLI Licence: + Licencia CCLI: + + + + Are you sure you want to delete the selected song? + + + + + Are you sure you want to delete the %d selected songs? + + + + + Delete Song(s)? + + + + + SongsPlugin.SongBookForm + + + Song Book Maintenance + + + + + &Name: + + + + + &Publisher: + + + + + Error + Error + + + + You need to type in a name for the book. + + + + + SongsPlugin.SongImport + + + copyright + + + + + © + + + + + SongsPlugin.SongMaintenanceForm + + + Song Maintenance + + + + + Authors + Autores + + + + Topics + Categoría + + + + Song Books + + + + + &Add + + + + + &Edit + &Editar + + + + &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 + 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! + + + + SongsPlugin.SongsTab + + + Songs + Canciones + + + + Songs Mode + Modo de canciones + + + + Enable search as you type + + + + + Display verses on live tool bar + + + + + SongsPlugin.TopicsForm + + + Topic Maintenance + Mantenimiento de Categorías + + + + Topic name: + Categoría: + + + + Error + Error + + + + You need to type in a topic name! + ¡Usted tiene que escribir un nombre para la categoría! + + + + SongsPlugin.VerseType + + + Verse + Verso + + + + Chorus + Coro + + + + Bridge + Puente + + + + Pre-Chorus + Pre-Coro + + + + Intro + Intro + + + + Ending + Final + + + + Other + Otro + + diff --git a/resources/i18n/openlp_et.ts b/resources/i18n/openlp_et.ts index 5af0470e8..8a0658d97 100644 --- a/resources/i18n/openlp_et.ts +++ b/resources/i18n/openlp_et.ts @@ -1,14 +1,960 @@ - AboutForm + AlertsPlugin - - About OpenLP - OpenLP-st lähemalt + + &Alert + - + + Show an alert message. + + + + + <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of nursery alerts on the display screen + + + + + AlertsPlugin.AlertForm + + + Alert Message + + + + + Alert &text: + + + + + &Parameter(s): + + + + + &New + &Uus + + + + &Save + &Salvesta + + + + &Delete + + + + + Displ&ay + + + + + Display && Cl&ose + + + + + &Close + + + + + New Alert + + + + + You haven't specified any text for your alert. Please type in some text before clicking New. + + + + + AlertsPlugin.AlertsManager + + + Alert message created and displayed. + + + + + AlertsPlugin.AlertsTab + + + Alerts + + + + + Font + + + + + pt + pt + + + + Alert timeout: + + + + + s + s + + + + Location: + + + + + Preview + Eelvaade + + + + Top + Üleval + + + + Bottom + All + + + + Middle + Keskel + + + + Font name: + + + + + Font color: + + + + + Background color: + + + + + Font size: + + + + + OpenLP 2.0 + OpenLP 2.0 + + + + BiblesPlugin + + + &Bible + + + + + <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display bible verses from different sources during the service. + + + + + BiblesPlugin.BibleDB + + + Book not found + + + + + The book you requested could not be found in this bible. Please check your spelling and that this is a complete bible not just one testament. + + + + + BiblesPlugin.BiblesTab + + + Verse Display + + + + + Only show new chapter numbers + + + + + Layout style: + + + + + Display style: + + + + + Bible theme: + + + + + Verse Per Slide + + + + + Verse Per Line + + + + + Continuous + + + + + No Brackets + + + + + ( And ) + + + + + { And } + + + + + [ And ] + + + + + Note: +Changes do not affect verses already in the service. + + + + + Display dual Bible verses + + + + + Bibles + + + + + BiblesPlugin.ImportWizardForm + + + Bible Import Wizard + + + + + Format: + + + + + OSIS + + + + + CSV + + + + + OpenSong + + + + + Web Download + + + + + Location: + + + + + Crosswalk + + + + + BibleGateway + + + + + Bible: + + + + + Download Options + + + + + Server: + + + + + Username: + + + + + Password: + + + + + License Details + + + + + Copyright: + + + + + Permission: + + + + + Importing + + + + + Ready. + + + + + Open OSIS File + + + + + Open Books CSV File + + + + + Open OpenSong Bible + + + + + Starting import... + + + + + Welcome to the Bible Import Wizard + + + + + This wizard will help you to import Bibles from a variety of formats. Click the next button below to start the process by selecting a format to import from. + + + + + Select Import Source + + + + + Select the import format, and where to import from. + + + + + Proxy Server (Optional) + + + + + Set up the Bible's license details. + + + + + Please wait while your Bible is imported. + + + + + Invalid Bible Location + + + + + You need to specify a file to import your Bible from. + + + + + Invalid Books File + + + + + You need to specify a file with books of the Bible to use in the import. + + + + + Invalid Verse File + + + + + You need to specify a file of Bible verses to import. + + + + + Invalid OpenSong Bible + + + + + You need to specify an OpenSong Bible file to import. + + + + + Empty Version Name + + + + + You need to specify a version name for your Bible. + + + + + Empty Copyright + + + + + You need to set a copyright for your Bible! Bibles in the Public Domain need to be marked as such. + + + + + Bible Exists + + + + + This Bible already exists! Please import a different Bible or first delete the existing one. + + + + + Open Verses CSV File + + + + + Finished import. + + + + + Your Bible import failed. + + + + + File location: + + + + + Books location: + + + + + Verse location: + + + + + Bible filename: + + + + + Version name: + + + + + 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. + + + + + BiblesPlugin.Opensong + + + Importing + + + + + CustomPlugin + + + <strong>Custom Plugin</strong><br />The custom plugin provides the ability to set up custom text slides that can be displayed on the screen the same way songs are. This plugin provides greater freedom over the songs plugin. + + + + + CustomPlugin.CustomTab + + + Custom + + + + + Custom Display + + + + + Display footer + + + + + 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 + + + + Save && Preview + Salvesta && eelvaatle + + + + Error + Viga + + + + Move slide up once position. + + + + + 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: + + + + + You need to type in a title. + + + + + You need to add at least one slide + + + + + You have one or more unsaved slides, please either save your slide(s) or clear your changes. + + + + + CustomPlugin.MediaItem + + + Custom + + + + + You haven't selected an item to edit. + + + + + You haven't selected an item to delete. + + + + + ImagePlugin + + + <strong>Image Plugin</strong><br />The image plugin provides displaying of images.<br />One of the distinguishing features of this plugin is the ability to group a number of images together in the service manager, making the displaying of multiple images easier. This plugin can also make use of OpenLP's "timed looping" feature to create a slide show that runs automatically. In addition to this, images from the plugin can be used to override the current theme's background, which renders text-based items like songs with the selected image as a background instead of the background provided by the theme. + + + + + ImagePlugin.ImageTab + + + Images + Pildid + + + + Image Settings + Pildi sätted + + + + sec + s + + + + Slide loop delay: + + + + + 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. + + + + + MediaPlugin + + + <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. + + + + + MediaPlugin.MediaItem + + + Media + Meedia + + + + Select Media + Meedia valimine + + + + Replace Live Background + + + + + Replace Background + + + + + You must select a media file to delete. + + + + + OpenLP + + + Image Files + + + + + OpenLP.AboutForm + + + About OpenLP + OpenLP-st lähemalt + + + OpenLP <version><revision> - Open Source Lyrics Projection OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if OpenOffice.org, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. @@ -16,7 +962,7 @@ OpenLP is free church presentation software, or lyrics projection software, used Find out more about OpenLP: http://openlp.org/ OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider contributing by using the button below. - OpenLP <version><revision> - avatud lähtekoodiga laulusõnade kuvaja + OpenLP <version><revision> - avatud lähtekoodiga laulusõnade kuvaja OpenLP on vaba esitlustarkvara kirikusse võib öelda ka laulusõnade projitseerimise tarkvara, mida kasutatakse lauluslaidide, piiblisalmide, videote, piltide ja isegi esitluste (kui OpenOffice.org, PowerPoint või PowerPoint Viewer on paigaldatud) kirikus installed) kuvamiseks dataprojektori kaudu kirikus. @@ -25,12 +971,12 @@ OpenLP kohta võid lähemalt uurida aadressil: http://openlp.org/ OpenLP on kirjutatud vabatahtlike poolt. Kui sulle meeldiks näha rohkem kristlikku tarkvara, siis võid kaaluda annetamist, selleks klõpsa alumisele nupule. - + About - Programmist + Programmist - + Project Lead Raoul "superfly" Snyman @@ -60,7 +1006,7 @@ Packagers Matthias "matthub" Hub (Mac OS X) Raoul "superfly" Snyman (Windows) - Projekti juht + Projekti juht Raoul "superfly" Snyman Arendajad @@ -90,12 +1036,12 @@ Pakendajad Raoul "superfly" Snyman (Windows) - + Credits - Autorid + Autorid - + 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 @@ -230,19 +1176,19 @@ This General Public License does not permit incorporating your program into prop - + License - Litsents + Litsents - + Contribute - Aita kaasa + Aita kaasa - + Close - Sulge + Sulge @@ -251,1817 +1197,899 @@ This General Public License does not permit incorporating your program into prop - AlertsPlugin + OpenLP.AdvancedTab - - &Alert + + Advanced - - Show an alert message + + UI Settings - - <b>Alerts Plugin</b><br>This plugin controls the displaying of alerts on the presentations screen + + Number of recent files to display: + + + + + Double-click to send items straight to live (requires restart) + + + + + Remember active media manager tab on startup - AlertsPlugin.AlertForm + OpenLP.AmendThemeForm - - Alert Message - - - - - Alert &text: - - - - - &Parameter(s): - - - - - &New - &Uus - - - - &Save - &Salvesta - - - - &Delete - - - - - Displ&ay - - - - - Display && Cl&ose - - - - - &Close - - - - - Item selected to Add - - - - - Missing data - - - - - AlertsPlugin.AlertsManager - - - Alert message created and delayed - - - - - AlertsPlugin.AlertsTab - - - Alerts - - - - - Font - - - - - Font Name: - - - - - Font Color: - - - - - Background Color: - - - - - Font Size: - - - - - pt - pt - - - - Alert timeout: - - - - - s - s - - - - Location: - - - - - Preview - Eelvaade - - - - openlp.org - - - - - Top - Üleval - - - - Bottom - All - - - - AmendThemeForm - - + Theme Maintenance - Kujunduste haldus + Kujunduste haldus - - Theme Name: - Kujunduse nimi: - - - - Opaque - Läbipaistmatu - - - - Transparent - Läbipaistev - - - - Solid Color - Ühtlane värv - - - - Gradient - Üleminek - - - - Image - Pilt - - - - Image: - Pilt: - - - - Horizontal - Horisontaalne - - - - Vertical - Vertikaalne - - - - Circular - Ümmargune - - - - Main Font - Peamine kirjastiil - - - - Font: - Kirjastiil: - - - - Size: - Suurus: - - - - pt - pt - - - - Normal - Tavaline - - - - Bold - Rasvane - - - - Italics - Kursiiv - - - - Bold/Italics - Rasvane/kaldkiri - - - - Display Location - Kuva asukoht - - - - Width: - Laius: - - - - Height: - Kõrgus: - - - - px - px - - - - Footer Font - Jaluse kirjatüüp - - - - Outline - Välisjoon - - - - Shadow - Vari - - - - Alignment - Joondus - - - - Left - Vasakul - - - - Right - Paremal - - - - Center - Keskel - - - - Top - Üleval - - - - Middle - Keskel - - - - Bottom - All - - - - Slide Transition - Slaidide üleminek - - - - Preview - Eelvaade - - - - Visibility: + + 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: - - Use default location: + + 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: - - Transition active: + + 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. - BibleDB + OpenLP.GeneralTab - - Book not found - - - - - BiblePlugin - - - &Bible - - - - - <strong>Bible Plugin</strong><br />This plugin allows bible verses from different sources to be displayed on the screen during the service. - - - - - BiblesPlugin,BiblesTab - - - Bibles - - - - - Verse Display - - - - - Layout Style: - - - - - Display Style: - - - - - Bible Theme: - - - - - verse per slide - - - - - verse per line - - - - - continuous - - - - - No brackets - - - - - ( and ) - - - - - { and } - - - - - [ and ] - - - - - Display Dual Bible Verses - - - - - Only show new chapter numbers - - - - - BiblesPlugin.BiblesTab - - - Note: -Changes don't affect verses already in the service - - - - - BiblesPlugin.ImportWizardForm - - - Bible Import Wizard - - - - - Format: - - - - - OSIS - - - - - CSV - - - - - OpenSong - - - - - Web Download - - - - - File Location: - - - - - Books Location: - - - - - Verse Location: - - - - - Bible Filename: - - - - - Location: - - - - - Crosswalk - - - - - BibleGateway - - - - - Bible: - - - - - Download Options - - - - - Server: - - - - - Username: - - - - - Password: - - - - - License Details - - - - - Version Name: - - - - - Copyright: - - - - - Permission: - - - - - Importing - - - - - Ready. - - - - - Open OSIS File - - - - - Open Books CSV File - - - - - Open OpenSong Bible - - - - - Starting import... - - - - - Welcome to the Bible Import Wizard - - - - - This wizard will help you to import Bibles from a variety of formats. Click the next button below to start the process by selecting a format to import from. - - - - - Select Import Source - - - - - Select the import format, and where to import from. - - - - - Proxy Server (Optional) - - - - - Set up the Bible's license details. - - - - - Please wait while your Bible is imported. - - - - - Invalid Bible Location - - - - - You need to specify a file to import your Bible from. - - - - - Invalid Books File - - - - - You need to specify a file with books of the Bible to use in the import. - - - - - Invalid Verse File - - - - - You need to specify a file of Bible verses to import. - - - - - Invalid OpenSong Bible - - - - - You need to specify an OpenSong Bible file to import. - - - - - Empty Version Name - - - - - You need to specify a version name for your Bible. - - - - - Empty Copyright - - - - - You need to set a copyright for your Bible! Bibles in the Public Domain need to be marked as such. - - - - - Bible Exists - - - - - This Bible already exists! Please import a different Bible or first delete the existing one. - - - - - Open Verses CSV File - - - - - Finished import. - - - - - Your Bible import failed. - - - - - BiblesPlugin.MediaItem - - - Bible - - - - - Quick - - - - - Advanced - - - - - Version: - Versioon: - - - - Dual: - - - - - Search Type: - - - - - Find: - - - - - Search - - - - - Results: - - - - - Book: - - - - - Chapter: - - - - - Verse: - - - - - From: - - - - - To: - - - - - Verse Search - + + Select monitor for output display: + Vali väljundkuva monitor: - - Text Search - - - - - Clear - - - - - Keep - - - - - No Book Found - - - - - etc - - - - - Bible not fully loaded - - - - - No matching book could be found in this Bible. - - - - - BiblesPlugin.Opensong - - - Importing - - - - - CustomPlugin - - - <b>Custom Plugin</b><br>This plugin allows slides to be displayed on the screen in the same way songs are. This plugin provides greater freedom over the songs plugin.<br> - - - - - CustomPlugin.CustomTab - - - Custom - - - - - Display Footer - - - - - Custom Display - - - - - CustomPlugin.EditCustomForm - - - Edit Custom Slides - Kohandatud slaidide muutmine - - - - Move slide Up 1 - Slaidi liigutamine 1 võrra üles - - - - Move slide down 1 - Slaidi liigutamine 1 võrra alla - - - - Title: - Pealkiri: + + Display if a single screen + Kuvatakse, kui on ainult üks ekraan - - Add New - Uue lisamine + + Application Startup + Rakenduse käivitumine - - Add new slide at bottom - Uue slaidi lisamine lõppu + + Show blank screen warning + Kuvatakse tühja ekraani hoiatust - - Edit - Muuda + + Automatically open the last service + Automaatselt avatakse viimane teenistus - - Edit selected slide - Valitud slaidi muutmine + + Show the splash screen + Käivitumisel kuvatakse logo - - Edit All - Kõigi muutmine + + Application Settings + Rakenduse sätted - - Edit all slides - Kõigi slaidide muutmine + + Prompt to save Service before starting New + Uue teenistuse loomise pakutakse vana salvestamist - - Save - Salvesta - - - - Replace edited slide - Muudetud slaidi asendamine - - - - Delete - Kustuta - - - - Delete selected slide - Valitud slaidi kustutamine - - - - Clear - Puhasta - - - - Clear edit area - Muutmise ala puhastamine - - - - Split Slide - Tükelda slaid - - - - Add slide split - Lisa slaidide tükeldus - - - - Theme: - Kujundus: - - - - Credits: - Autorid: - - - - Save && Preview - Salvesta && eelvaatle - - - - Error - Viga - - - - You need to enter a title - Pead sisestama pealkirja - - - - You need to enter a slide - Pead sisenema slaidile - - - - CustomPlugin.MediaItem - - - Custom - - - - - You must select an item to edit. - - - - - You must select an item to delete. - - - - - CustomPlugin.editCustomForm - - - You have unsaved data, please save or clear - Sul on salvestamata andmeid, palun salvesta või tühjenda - - - - DisplayTab - - - Displays - Kuva - - - - Amend Display Settings - + + Preview Next Song from Service Manager + Teenistuse haldurist kuvatakse järgmise laulu eelvaade - - Default Settings + + Display Position - + X - + Y - + Height - + Width - - Amend Settings + + Override display position - - Override Output Display - - - - - GeneralTab - - - CCLI Details - CCLI andmed - - - - SongSelect Password: - SongSelecti parool: - - - - primary - peamine - - - - Application Startup - Rakenduse käivitumine - - - - Select monitor for output display: - Vali väljundkuva monitor: - - - - Application Settings - Rakenduse sätted - - - - SongSelect Username: - SongSelecti kasutajanimi: - - - - CCLI Number: - CCLI number: - - - - Automatically open the last service - Automaatselt avatakse viimane teenistus - - - - Preview Next Song from Service Manager - Teenistuse haldurist kuvatakse järgmise laulu eelvaade - - - - Show blank screen warning - Kuvatakse tühja ekraani hoiatust - - - - Prompt to save Service before starting New - Uue teenistuse loomise pakutakse vana salvestamist - - - + General - Üldine + Üldine - - Show the splash screen - Käivitumisel kuvatakse logo - - - - Screen - Ekraan - - - + Monitors - Monitorid + Monitorid - - Display if a single screen - Kuvatakse, kui on ainult üks ekraan + + Screen + Ekraan - - - ImagePlugin - - <b>Image Plugin</b><br>Allows images of all types to be displayed. If a number of images are selected together and presented on the live controller it is possible to turn them into a timed loop.<br<br>From the plugin if the <i>Override background</i> is chosen and an image is selected any songs which are rendered will use the selected image from the background instead of the one provied by the theme.<br> + + primary + peamine + + + + CCLI Details + CCLI andmed + + + + CCLI number: + + + + + SongSelect username: + + + + + SongSelect password: - ImagePlugin.ImageTab + OpenLP.LanguageManager - - Images - Pildid - - - - Image Settings - Pildi sätted - - - - Slide Loop Delay: - Slaidide vahetuse viivitus: - - - - sec - s - - - - ImagePlugin.MediaItem - - - Image - Pilt - - - - Select Image(s) - Pildi (piltide) valimine - - - - All Files - - - - - Replace Live Background - Ekraani tausta asendamine - - - - You must select an item to delete. - - - - - Image(s) - Pilt(pildid) - - - - No item selected - Ühtegi kirjet pole valitud - - - - You must select one item - Pead valima ühe kirje - - - - LanguageManager - - + Language - Keel + Keel - - After restart new Language settings will be used. - Keele sätteid kasutatakse pärast taaskäivitust. + + Please restart OpenLP to use your new language setting. + - MainWindow + OpenLP.MainWindow - - The Main Display has been blanked out - Peakuva on tühi - - - - OpenLP Version Updated - OpenLP uuendus - - - - Save Changes to Service? - Kas salvestada teenistusse tehtud muudatused? - - - - OpenLP Main Display Blanked - OpenLP peakuva on tühi - - - - Open an existing service - Olemasoleva teenistuse valimine - - - - List the Plugins - Pluginate loend - - - - &Service Manager - &Teenistuse haldur - - - - Open Service - Teenistuse avamine - - - - Media Manager - Meediahaldur - - - - Alt+F4 - Alt+F4 - - - - Toggle the visibility of the Preview Panel - Eelvaatluspaneeli nähtavuse muutmine - - - - &User Guide - &Kasutajajuhend - - - - &Import - &Impordi - - - - Quit OpenLP - Lahku OpenLPst - - - - &Preview Panel - &Eelvaatluspaneel - - - - &New - &Uus - - - - Ctrl+N - Ctrl+N - - - - Toggle Preview Panel - Eelvaatluspaneeli lüliti - - - - &Live - &Otse - - - - F9 - F9 - - - - F8 - F8 + + English + Eesti - Save the current service to disk - Selle teenistuse salvestamine kettale - - - - Add &Tool... - Lisa &tööriist... - - - - Create a new Service - Uue teenistuse loomine - - - - &View - &Vaade - - - - &Export - &Ekspordi - - - - &Open - &Ava - - - - Toggle Theme Manager - Kujunduse halduri lüliti - - - - &Settings - &Sätted - - - - &Options - &Valikud - - - - Ctrl+S - Ctrl+S - - - - Ctrl+O - Ctrl+O - - - - &File - &Fail - - - - E&xit - &Välju - - - - &Help - A&bi - - - - Toggle Service Manager - Teenistuse halduri lüliti - - - - Ctrl+F1 - Ctrl+F1 - - - - Save the current service under a new name - Salvesta see teenistus uue nimega - - - - &Web Site - &Veebileht - - - - M&ode - &Režiim - - - - Service Manager - Teenistuse haldur - - - - &Theme - &Kujundus - - - - &Language - &Keel - - - - &About - &Lähemalt - - - - &Plugin List - &Pluginate loend - - - - English - Eesti - - - - Save Service As - Salvesta teenistus kui - - - - New Service - Uus teenistus - - - - &Online Help - &Abi veebis - - - - Save Service - Salvesta teenistus + OpenLP 2.0 + OpenLP 2.0 - Save &As... - Salvesta &kui... + &File + &Fail - - Toggle the visibility of the Media Manager - Meediahalduri nähtavuse lüliti + + &Import + &Impordi - - F11 - F11 + + &Export + &Ekspordi - - F10 - F10 + + &View + &Vaade + + + + M&ode + &Režiim - F12 - F12 - - - - Alt+F7 - Alt+F7 - - - - Add an application to the list of tools - Rakenduse lisamine tööriistade loendisse - - - - Theme Manager - Kujunduse haldur - - - - Toggle the visibility of the Theme Manager - Kujunduse halduri nähtavuse lüliti - - - - &Preview Pane - &Eelvaatluspaan - - - - &Theme Manager - &Kujunduse haldur - - - - Toggle the visibility of the Service Manager - Teenistuse halduri nähtavuse lüliti - - - - More information about OpenLP - Lähem teave OpenLP kohta - - - - &Media Manager - &Meediahaldur - - - &Tools - &Tööriistad + &Tööriistad + + + + &Settings + &Sätted + + + + &Language + &Keel + + + + &Help + A&bi + + + + Media Manager + Meediahaldur + + + + Service Manager + Teenistuse haldur + + + + Theme Manager + Kujunduse haldur + + + + &New + &Uus - Toggle Media Manager - Meediahalduri lüliti + 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 + &Salvesta - - OpenLP 2.0 - OpenLP 2.0 + + Save Service + Salvesta teenistus - - Look && &Feel - Välimus && &tunnetus + + Save the current service to disk. + - - &Auto Detect - &Isetuvastus + + 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... + - Choose System language, if available - Võimalusel kasutatakse süsteemi keelt + &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 - - 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 + + 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 - MediaManagerItem - - - Invalid Service Item - Vigane teenistuse element - - - - No Items Selected - Ühtegi elementi pole valitud - - - - You must select one or more items - Pead valima vähemalt ühe elemendi - - - - &Add to selected Service Item - &Lisa valitud teenistuse elemendile - - - - No items selected - Ühtegi elementi pole valitud - - - - &Add to Service - &Lisa teenistusele - - - - Send the selected item live - Valitud kirje saatmine ekraanile - - - - Add the selected item(s) to the service - Valitud kirje(te) lisamine teenistusse - - - - Delete the selected item - Valitud elemendi kustutamine - - - - No Service Item Selected - Ühtegi teenistuse elementi pole valitud - - - - &Show Live - &Kuva ekraanil - - - - Preview the selected item - Valitud kirje eelvaatlus - - - - You must select one or more items. - Pead valima vähemalt ühe elemendi. - - - - You must select an existing service item to add to. - Pead valima olemasoleva teenistuse, millele lisada. - + OpenLP.MediaManagerItem Import %s @@ -2107,208 +2135,782 @@ You can download the latest version from http://openlp.org 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. - MediaPlugin - - - <b>Media Plugin</b><br>This plugin allows the playing of audio and video media - <b>Meedia plugin</b><br>See plugin võimaldab audio ja video esitamise - - - - MediaPlugin.MediaItem - - - Media - Meedia - - - - Select Media - Meedia valimine - - - - You must select an item to delete. - - - - - OpenLP - - - Image Files - - - - - PluginForm + OpenLP.PluginForm Plugin List - Pluginate loend + Pluginate loend Plugin Details - Plugina andmed + Plugina andmed Version: - Versioon: + Versioon: TextLabel - TekstiPealdis - - - - About: - Kirjeldus: + TekstiPealdis - Status: - Olek: - - - - Active - Aktiivne + About: + Kirjeldus: - Inactive - Pole aktiivne + Status: + Olek: - + + Active + Aktiivne + + + + Inactive + Pole aktiivne + + + %s (Inactive) - + %s (Active) - + %s (Disabled) + + OpenLP.ServiceItemEditForm + + + Reorder Service Item + + + + + Up + Üles + + + + Delete + Kustuta + + + + Down + Alla + + + + OpenLP.ServiceManager + + + New Service + Uus teenistus + + + + Create a new service + Uue teenistuse loomine + + + + Open Service + Teenistuse avamine + + + + Load an existing service + Välise teenistuse laadimine + + + + Save Service + Salvesta teenistus + + + + Save this service + Selle teenistuse salvestamine + + + + Theme: + Kujundus: + + + + Select a theme for the service + + + + + Move to &top + Liiguta ü&lemiseks + + + + Move &up + Liiguta &üles + + + + Move &down + Liiguta &alla + + + + Move to &bottom + Liiguta &alumiseks + + + + &Delete From Service + &Kustuta teenistusest + + + + &Add New Item + &Lisa uus element + + + + &Add to Selected Item + &Lisa valitud elemendile + + + + &Edit Item + &Muuda kirjet + + + + &Reorder Item + + + + + &Notes + &Märkmed + + + + &Preview Verse + &Salmi eelvaatlus + + + + &Live Verse + &Otsesalm + + + + &Change Item Theme + + + + + 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 + + + + Move item to the top of the service. + + + + + Move item up one position in the service. + + + + + Move item down one position in the service. + + + + + Move item to the end of the service. + + + + + Delete the selected item from the service. + + + + + OpenLP.ServiceNoteForm + + + Service Item Notes + Teenistuse elemendi märkmed + + + + OpenLP.SettingsForm + + + Configure OpenLP + + + + + 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 + + + + Go to Verse + Liikumine salmile + + + + OpenLP.ThemeManager + + + New Theme + Uus kujundus + + + + Create a new theme. + + + + + Edit Theme + Kujunduse muutmine + + + + Edit a theme. + + + + + Delete Theme + Teema kustutamine + + + + Delete a theme. + + + + + Import Theme + Teema importimine + + + + Import a theme. + + + + + Export Theme + Kujunduse eksportimine + + + + Export a theme. + + + + + &Edit Theme + + + + + &Delete Theme + + + + + Set As &Global Default + + + + + E&xport Theme + + + + + %s (default) + + + + + You must select a theme to edit. + + + + + You must select a theme to delete. + + + + + Delete Confirmation + + + + + Delete theme? + + + + + Error + Viga + + + + You are unable to delete the default theme. + Vaikimisi kujundust pole võimalik kustutada. + + + + Theme %s is use in %s plugin. + + + + + Theme %s is use by the service manager. + + + + + You have not selected a theme. + Sa ei ole teemat valinud. + + + + Save Theme - (%s) + Salvesta kujundus - (%s) + + + + Theme Exported + + + + + Your theme has been successfully exported. + + + + + Theme Export Failed + + + + + Your theme could not be exported due to an error. + + + + + Select Theme Import File + Importimiseks kujunduse faili valimine + + + + Theme (*.*) + + + + + 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? + + + + + OpenLP.ThemesTab + + + Themes + Kujundused + + + + Global Theme + + + + + Theme Level + + + + + S&ong Level + + + + + Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. + Iga laulu jaoks kasutatakse andmebaasis sellele määratud kujundust. Kui laulul kujundus puudub, kasutatakse teenistuse teemat. Kui teenistusel kujundus puudub, siis kasutatakse üleüldist teemat. + + + + &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. + Kasutatakse teenistuse kujundust, eirates laulude kujundusi. Kui teenistusel kujundust pole, kasutatakse globaalset. + + + + &Global Level + + + + + Use the global theme, overriding any themes associated with either the service or the songs. + Kasutatakse globaalset kujundust, eirates nii teenistuse kui laulu kujundust. + + PresentationPlugin - - <b>Presentation Plugin</b> <br> Delivers 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. PresentationPlugin.MediaItem - + Present using: - + Presentation - + Select Presentation(s) - + Automatic - - File exists - - - - + 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 + + PresentationPlugin.PresentationTab - - available - - - - + Presentations - + Available Controllers + + + Advanced + + + + + Allow presentation application to be overriden + + RemotePlugin - - <b>Remote Plugin</b><br>This plugin provides the ability to send messages to a running version of openlp on a different computer via a web browser or other app<br>The Primary use for this would be to send alerts from a creche + + <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. @@ -2319,432 +2921,97 @@ You can download the latest version from http://openlp.org Remotes + + + Serve on IP address: + + - Remotes Receiver Port - - - - - ServiceItemEditForm - - - Service Item Maintenance - Teenistuse elementide haldus - - - - Up - Üles - - - - Delete - Kustuta - - - - Down - Alla - - - - ServiceManager - - - Save Changes to Service? - Kas salvestada teenistusse tehtud muudatused? - - - - Open Service - Teenistuse avamine - - - - Move to top - Tõsta üles - - - - Save Service - Salvesta teenistus - - - - Create a new service - Uue teenistuse loomine - - - - Save this service - Selle teenistuse salvestamine - - - - Theme: - Kujundus: - - - - Delete From Service - Teenistusest kustutamine - - - - &Preview Verse - &Salmi eelvaatlus - - - - &Live Verse - &Otsesalm - - - - Move to &top - Liiguta ü&lemiseks - - - - New Service - Uus teenistus - - - - &Notes - &Märkmed - - - - &Delete From Service - &Kustuta teenistusest - - - - Move up order - Järjekorras üles liigutamine - - - - Move down order - Järjekorras alla liigutamine - - - - Move &down - Liiguta &alla - - - - Load an existing service - Välise teenistuse laadimine - - - - Move to end - Viimaseks tõstmine - - - - &Maintain Item - &Halda elementi - - - - Move &up - Liiguta &üles - - - - &Edit Item - &Muuda kirjet - - - - Move to &bottom - Liiguta &alumiseks - - - - &Add New Item - &Lisa uus element - - - - &Add to Selected Item - &Lisa valitud elemendile - - - - 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? - - - - 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? - - - - Missing Display Handler + Port number: - - 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 - - - - Select a theme for the service + + Server Settings - - - &Change Item Theme - - - - - OpenLP Service Files (*.osz) - - - - - Error - Viga - - - - File is not a valid service. -The content encoding is not UTF-8. - - - - - File is not a valid service. - - - - - ServiceNoteForm - - - Service Item Notes - Teenistuse elemendi märkmed - - - - SettingsForm - - - Settings - Sätted - - - - SlideController - - - Move to previous - Eelmisele liikumine - - - - Theme Screen - Kujunduse ekraan - - - - Go to Verse - Liikumine salmile - - - - Start continuous loop - Katkematu korduse alustamine - - - - Live - Ekraan - - - - Start playing media - Meediaesituse alustamine - - - - Move to live - Tõsta ekraanile - - - - Hide Screen - Peida ekraan - - - - Move to last - Liikumine viimasele - - - - Move to next - Liikumine järgmisele - - - - Move to first - Liikumine esimesele - - - - Blank Screen - Tühi ekraan - - - - Delay between slides in seconds - Viivitus slaidide vahel sekundites - - - - Preview - Eelvaade - - - - Stop continuous loop - Katkematu korduse lõpetamine - - - - s - s - - - - Edit and re-preview Song - Muuda ja kuva laulu eelvaade uuesti - SongUsagePlugin - &Song Usage + &Song Usage Tracking - &Delete recorded data + &Delete Tracking Data - Delete song usage to specified date + Delete song usage data up to a specified date. - &Extract recorded data + &Extract Tracking Data - Generate report on Song Usage + Generate a report on song usage. - - Song Usage Status + + Toggle Tracking - - Start/Stop live song usage recording + + Toggle the tracking of song usage. - - <b>SongUsage Plugin</b><br>This plugin records the use of songs and when they have been used during a live service + + <strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services. - SongsPlugin + SongUsagePlugin.SongUsageDeleteForm - - &Song + + Delete Selected Song Usage Events? - - Import songs using the import wizard. + + Are you sure you want to delete selected Song Usage data? - - - Songs of Fellowship (temp menu item) - - - - - Import songs from the VOLS1_2.RTF, sof3words.rtf and sof4words.rtf supplied with the music books - - - - - Generic Document/Presentation Import (temp menu item) - - - - - Import songs from Word/Writer/Powerpoint/Impress - - - - - Open Songs of Fellowship file - - - - - Import Error - - - - - Error importing Songs of Fellowship file. -OpenOffice.org must be installed and you must be using an unedited copy of the RTF included with the Songs of Fellowship Music Editions - - - - - Open documents or presentations - - - - - <strong>Song Plugin</strong><br />This plugin allows songs to be managed and displayed. - - - - - SongsPlugin.AuditDeleteDialog - Song Usage Delete + Delete Song Usage Data - SongsPlugin.AuditDetailDialog + SongUsagePlugin.SongUsageDetailForm - + + Output File Location + + + + + Song Usage Extraction + + + + Select Date Range @@ -2758,239 +3025,318 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R Report Location + + + SongsPlugin - - Song Usage Extraction + + &Song + + + + + Import songs using the import wizard. + + + + + Songs of Fellowship (temp menu item) + + + + + Import songs from the VOLS1_2.RTF, sof3words.rtf and sof4words.rtf supplied with the music books + + + + + Generic Document/Presentation Import (temp menu item) + + + + + Import songs from Word/Writer/Powerpoint/Impress + + + + + Open Songs of Fellowship file + + + + + Import Error + + + + + Error importing Songs of Fellowship file. +OpenOffice.org must be installed and you must be using an unedited copy of the RTF included with the Songs of Fellowship Music Editions + + + + + Open documents or presentations + + + + + OpenSong (temp menu item) + + + + + Import songs from OpenSong files(either raw text or ZIPfiles) + + + + + Open OpenSong file + + + + + Error importing OpenSong file + + + + + OpenLP v2 Songs (temporary) + + + + + Import an OpenLP v2 song database + + + + + Select OpenLP database(s) to import... + + + + + Database(s) imported + + + + + Your OpenLP v2 song databases have been successfully imported + + + + + Error importing OpenLP v2 database(s) + + + + + <strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs. SongsPlugin.AuthorsForm - + Author Maintenance Autorite haldus - + Display name: Kuvatav nimi: - + First name: Eesnimi: - + Last name: Perekonnanimi: - + Error Viga - + You need to type in the first name of the author. Pead sisestama autori eesnime. - + You need to type in the last name of the author. Pead sisestama autori perekonnanime. - - You haven't set a display name for the author, would you like me to combine the first and last names for you? - Sa pole sisestanud autori kuvatavat nime. Kas see tuleks kombineerida ees- ja perekonnanimest? + + 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 Lauluredaktor - + &Title: - + &Lyrics: - - &Verse Order: - - - - + &Add - + &Edit &Muuda - + Ed&it All - + &Delete &Kustuta - + Title && Lyrics Pealkiri && laulusõnad - + Authors Autorid - + &Add to Song &Lisa laulule - + &Remove &Eemalda - - &Manage Authors, Topics, Books - &Autorite, teemade, raamatute haldamine - - - + Topic Teema - + A&dd to Song L&isa laulule - + R&emove &Eemalda - + Song Book Laulik - - Authors, Topics && Book - Autorid, teemad && laulik - - - + Theme Kujundus - + Copyright Information Autoriõiguse andmed - - CCLI Number: - CCLI number: - - - + 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. - - Alt&ernate Title: - - - - + New &Theme - + © @@ -3000,50 +3346,85 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - + 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: + + SongsPlugin.EditVerseForm - + Edit Verse - + &Verse type: - + &Insert @@ -3091,97 +3472,97 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - + 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 - + CCLI - + CSV - + Add Files... - + Remove File(s) - + Filename: - + Browse... - + Importing - + Please wait while your songs are imported. - + Ready. - + %p% - + Starting import... @@ -3189,7 +3570,7 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R SongsPlugin.MediaItem - + Song @@ -3206,7 +3587,7 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R Type: - + Liik: @@ -3234,17 +3615,7 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - - %s (%s) - - - - - Delete Confirmation - - - - + CCLI Licence: @@ -3254,53 +3625,71 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - + You must select an item to edit. - + You must select an item to delete. - - Delete song? + + Are you sure you want to delete the selected song? - - Delete %d songs? + + Are you sure you want to delete the %d selected songs? + + + + + Delete Song(s)? SongsPlugin.SongBookForm - - Edit Book - - - - + &Name: - + &Publisher: - + Error Viga - + You need to type in a name for the book. + + + Song Book Maintenance + + + + + SongsPlugin.SongImport + + + copyright + + + + + © + + SongsPlugin.SongMaintenanceForm @@ -3319,11 +3708,6 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R Topics Teemad - - - Books/Hymnals - Laulikud - &Add @@ -3340,119 +3724,118 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R &Kustuta - + Delete Author - + Delete Topic - + Delete Book - - No book selected! - - - - + Error Viga - - Couldn't add your author. - - - - - Couldn't add your topic. - - - - - Couldn't add your book. - - - - - Couldn't save your author. - - - - - Couldn't save your topic. - - - - - Couldn't save your book. - - - - + Are you sure you want to delete the selected author? - - This author can't be deleted, they are currently assigned to at least one song. - - - - + No author selected! - + Are you sure you want to delete the selected topic? - - This topic can't be deleted, it is currently assigned to at least one song. - - - - + No topic selected! - + Are you sure you want to delete the selected book? - - This book can't be deleted, it is currently assigned to at least one song. - - - - - SongsPlugin.SongUsageDeleteForm - - - Delete Selected Song Usage Events? + + Song Books - - Are you sure you want to delete selected Song Usage data? + + Could not add your author. - - - SongsPlugin.SongUsageDetailForm - - Output File Location + + 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! @@ -3475,287 +3858,67 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - Display Verses on Live Tool bar + Display verses on live tool bar SongsPlugin.TopicsForm - + Topic Maintenance - + Topic name: - + Error Viga - + You need to type in a topic name! - Splashscreen + SongsPlugin.VerseType - - Starting - Käivitumine - - - - Splash Screen - Käivitusekraan - - - - ThemeManager - - - Import Theme - Teema importimine - - - - Delete Theme - Teema kustutamine - - - - Error - Viga - - - - Edit Theme - Kujunduse muutmine - - - - Export Theme - Kujunduse eksportimine - - - - You are unable to delete the default theme. - Vaikimisi kujundust pole võimalik kustutada. - - - - File is not a valid theme. - See fail ei ole sobilik kujundus. - - - - Theme Exists - Kujundus on juba olemas - - - - Save Theme - (%s) - Salvesta kujundus - (%s) - - - - Select Theme Import File - Importimiseks kujunduse faili valimine - - - - New Theme - Uus kujundus - - - - You have not selected a theme. - Sa ei ole teemat valinud. - - - - Create a new theme. - - - - - Edit a theme. - - - - - Delete a theme. - - - - - Import a theme. - - - - - Export a theme. - - - - - &Edit Theme - - - - - &Delete Theme - - - - - Set As &Global Default - - - - - E&xport Theme - - - - - %s (default) - - - - - Theme %s is use in %s plugin. - - - - - Theme %s is use by the service manager. - - - - - Theme Exported - - - - - Your theme has been successfully exported. - - - - - Theme Export Failed - - - - - Your theme could not be exported due to an error. - - - - - Theme (*.*) - - - - - File is not a valid theme. -The content encoding is not UTF-8. - - - - - A theme with this name already exists. Would you like to overwrite it? - - - - - ThemesTab - - - Use the global theme, overriding any themes associated with either the service or the songs. - Kasutatakse globaalset kujundust, eirates nii teenistuse kui laulu kujundust. - - - - Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. - Iga laulu jaoks kasutatakse andmebaasis sellele määratud kujundust. Kui laulul kujundus puudub, kasutatakse teenistuse teemat. Kui teenistusel kujundus puudub, siis kasutatakse üleüldist teemat. - - - - Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. - Kasutatakse teenistuse kujundust, eirates laulude kujundusi. Kui teenistusel kujundust pole, kasutatakse globaalset. - - - - Themes - Kujundused - - - - Global Theme - - - - - Theme Level - - - - - S&ong Level - - - - - &Service Level - - - - - &Global Level - - - - - VerseType - - + Verse - + Chorus - + Bridge - + Pre-Chorus - + Intro - + Ending - + Other diff --git a/resources/i18n/openlp_hu.ts b/resources/i18n/openlp_hu.ts index 4fdcd3f2f..1ed312f74 100644 --- a/resources/i18n/openlp_hu.ts +++ b/resources/i18n/openlp_hu.ts @@ -1,15 +1,960 @@ - - + - AboutForm + AlertsPlugin - - About OpenLP - Az OpenLP névjegye + + &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 + + + + + AlertsPlugin.AlertForm + + + Alert Message + Figyelmeztetés + + + + Alert &text: + Figyelmeztető &szöveg: + + + + &Parameter(s): + &Paraméterek: + + + + &New + &Új + + + + &Save + + + + + &Delete + &Törlés + + + + Displ&ay + &Megjelenítés + + + + Display && Cl&ose + M&egjelenítés és bezárás + + + + &Close + &Bezárás + + + + New Alert + + + + + You haven't specified any text for your alert. Please type in some text before clicking New. + + + + + AlertsPlugin.AlertsManager + + + Alert message created and displayed. + + + + + AlertsPlugin.AlertsTab + + + Alerts + Figyelmeztetések + + + + Font + Betűkészlet + + + + Font name: + + + + + Font color: + + + + + Background color: + + + + + Font size: + + + + + pt + + + + + Alert timeout: + Figyelmeztetés késleltetése: + + + + s + mp + + + + Location: + Hely: + + + + Preview + Előnézet + + + + OpenLP 2.0 + + + + + Top + + + + + Middle + Középre + + + + Bottom + + + + + BiblesPlugin + + + &Bible + &Biblia + + + + <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display bible verses from different sources during the service. + + + + + BiblesPlugin.BibleDB + + + Book not found + + + + + The book you requested could not be found in this bible. Please check your spelling and that this is a complete bible not just one testament. + + + + + BiblesPlugin.BiblesTab + + + Bibles + Bibliák + + + + Verse Display + Vers megjelenítés + + + + Only show new chapter numbers + Csak az új fejezetszámok megjelenítése + + + + Layout style: + + + + + Display style: + + + + + Bible theme: + + + + + Verse Per Slide + + + + + Verse Per Line + + + + + Continuous + + + + + No Brackets + + + + + ( And ) + + + + + { And } + + + + + [ And ] + + + + + Note: +Changes do not affect verses already in the service. + + + + + Display dual Bible verses + + + + + BiblesPlugin.ImportWizardForm + + + Bible Import Wizard + Bibliaimportáló tündér + + + + Welcome to the Bible Import Wizard + Üdvözlet a Bibliaimportáló tündérben + + + + This wizard will help you to import Bibles from a variety of formats. Click the next button below to start the process by selecting a format to import from. + A tündérrel különféle formátumú Bibliákat lehet importálni. Az alább található Tovább gombra való kattintással indítható a folyamat első lépése a formátum kiválasztásával. + + + + 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: + + + + OSIS + OSIS + + + + CSV + + + + + OpenSong + + + + + Web Download + Web letöltés + + + + File location: + + + + + Books location: + + + + + Verse location: + + + + + Bible filename: + + + + + Location: + Hely: + + + + Crosswalk + + + + + BibleGateway + + + + + Bible: + Biblia: + + + + Download Options + Letöltési beállítások + + + + Server: + Szerver: + + + + Username: + Felhasználói név: + + + + Password: + Jelszó: + + + + Proxy Server (Optional) + Proxy szerver (választható) + + + + License Details + Licenc részletek + + + + Set up the Bible's license details. + Állítsa be a Biblia licenc részleteit. + + + + Version name: + + + + + Copyright: + Copyright: + + + + Permission: + Engedély: + + + + Importing + Importálás + + + + Please wait while your Bible is imported. + Kérem, várjon, míg a Biblia importálás alatt áll. + + + + Ready. + Kész. + + + + Invalid Bible Location + Érvénytelen a Biblia elérési útvonala + + + + You need to specify a file to import your Bible from. + Meg kell adni egy fájlt, amelyből a Bibliát importálni lehet. + + + + Invalid Books File + Érvénytelen könyv fájl + + + + You need to specify a file with books of the Bible to use in the import. + Meg kell adni egy fájlt a bibliai könyvekről az importáláshoz. + + + + Invalid Verse File + Érvénytelen versszak fájl + + + + You need to specify a file of Bible verses to import. + Meg kell adni egy fájlt a bibliai versekről az importáláshoz. + + + + Invalid OpenSong Bible + Érvénytelen OpenSong Biblia + + + + You need to specify an OpenSong Bible file to import. + Meg kell adni egy OpenSong Biblia fájlt az importáláshoz. + + + + Empty Version Name + Üres verziónév + + + + You need to specify a version name for your Bible. + Meg kell adni a Biblia verziószámát. + + + + Empty Copyright + Üres a szerzői jog + + + + You need to set a copyright for your Bible! Bibles in the Public Domain need to be marked as such. + Meg kell adni a szerzői jogokat! A közkincs Bibliákat meg kell jelölni ilyennek. + + + + Bible Exists + Biblia létezik + + + + This Bible already exists! Please import a different Bible or first delete the existing one. + Ez a Biblia már létezik! Kérem, importáljon egy másik Bibliát vagy előbb törölje a meglévőt. + + + + Open OSIS File + OSIS fájl megnyitása + + + + Open Books CSV File + Könyv CSV fájl megnyitása + + + + Open Verses CSV File + Versszak CSV fájl megnyitása + + + + Open OpenSong Bible + OpenSong Biblia megnyitása + + + + Starting import... + Importálás indítása... + + + + Finished import. + Az importálás befejeződött. + + + + Your Bible import failed. + A Biblia importálása nem sikerült. + + + + 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. + + + + + BiblesPlugin.Opensong + + + Importing + Importálás + + + + CustomPlugin + + + <strong>Custom Plugin</strong><br />The custom plugin provides the ability to set up custom text slides that can be displayed on the screen the same way songs are. This plugin provides greater freedom over the songs plugin. + + + + + CustomPlugin.CustomTab + + + Custom + Egyedi + + + + Custom Display + Egyedi megjelenés + + + + Display footer + + + + + CustomPlugin.EditCustomForm + + + Edit Custom Slides + Egyedi diák szerkesztése + + + + Move slide up once 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: + + + + + Save && Preview + Mentés és előnézet + + + + Error + Hiba + + + + You need to type in a title. + + + + + You need to add at least one slide + + + + + You have one or more unsaved slides, please either save your slide(s) or clear your changes. + + + + + CustomPlugin.MediaItem + + + Custom + Egyedi + + + + You haven't selected an item to edit. + + + + + You haven't selected an item to delete. + + + + + ImagePlugin + + + <strong>Image Plugin</strong><br />The image plugin provides displaying of images.<br />One of the distinguishing features of this plugin is the ability to group a number of images together in the service manager, making the displaying of multiple images easier. This plugin can also make use of OpenLP's "timed looping" feature to create a slide show that runs automatically. In addition to this, images from the plugin can be used to override the current theme's background, which renders text-based items like songs with the selected image as a background instead of the background provided by the theme. + + + + + ImagePlugin.ImageTab + + + Images + Képek + + + + Image Settings + Kép beállítások + + + + Slide loop delay: + + + + + sec + mp + + + + ImagePlugin.MediaItem + + + Image + Kép + + + + Select Image(s) + Kép(ek) kiválasztása + + + + All Files + + + + + Replace Live Background + + + + + Replace 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. + + + + + MediaPlugin + + + <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. + + + + + MediaPlugin.MediaItem + + + Media + Média + + + + Select Media + Média kiválasztása + + + + Replace Live Background + + + + + Replace Background + + + + + You must select a media file to delete. + + + + + OpenLP + + + Image Files + + + + + OpenLP.AboutForm + + + About OpenLP + Az OpenLP névjegye + + + OpenLP <version><revision> - Open Source Lyrics Projection OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if OpenOffice.org, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. @@ -17,7 +962,7 @@ OpenLP is free church presentation software, or lyrics projection software, used Find out more about OpenLP: http://openlp.org/ OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider contributing by using the button below. - OpenLP <version> összeállítás <revision> – Nyílt forrású dalszöveg vetítő + OpenLP <version> összeállítás <revision> – Nyílt forrású dalszöveg vetítő Az OpenLP egy templomi/gyülekezeti, ill. dalszöveg vetítő szabad szoftver, mely használható daldiák, bibliai versek, videók, képek és bemutatók (ha az OpenOffice.org, PowerPoint vagy a PowerPoint Viewer telepítve van) vetítésére a gyülekezeti dicsőítés alatt egy számítógép és egy projektor segítségével. @@ -26,12 +971,12 @@ Többet az OpenLP-ről: http://openlp.org/ Az OpenLP-t önkéntesek készítették és tartják karban. Ha szeretne több keresztény számítógépes programot, fontolja meg a részvételt az alábbi gombbal. - + About - Névjegy + Névjegy - + Project Lead Raoul "superfly" Snyman @@ -61,7 +1006,7 @@ Packagers Matthias "matthub" Hub (Mac OS X) Raoul "superfly" Snyman (Windows) - Projektvezetés + Projektvezetés Raoul „superfly” Snyman Fejlesztők @@ -91,14 +1036,14 @@ Csomagolók Raoul „superfly” Snyman (Windows) - + Credits - Közreműködők + Közreműködők - - Copyright © 2004-2010 Raoul Snyman -Portions copyright © 2004-2010 Tim Bentley, Jonathan Corwin, Michael Gorven, Scott Guerrieri, Christian Richter, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Carsten Tinggaard + + Copyright © 2004-2010 Raoul Snyman +Portions copyright © 2004-2010 Tim Bentley, Jonathan Corwin, Michael Gorven, Scott Guerrieri, Christian Richter, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Carsten Tinggaard This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. @@ -228,7 +1173,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 + Copyright © 2004-2010 Raoul Snyman Részleges copyright © 2004-2010 Tim Bentley, Jonathan Corwin, Michael Gorven, Scott Guerrieri, Christian Richter, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Carsten Tinggaard Ez a program szabad szoftver; terjeszthető illetve módosítható a Free Software Foundation által kiadott GNU General Public License dokumentumában leírtak; akár a licenc 2-es, akár (tetszőleges) későbbi változata szerint. @@ -358,3547 +1303,2751 @@ Aláírás: Tira Mihály, 1989. április 1. Tira Mihály ügyvezető A GNU General Public License nem engedi meg, hogy a program része legyen szellemi tulajdont képező programoknak. Ha a program egy szubrutinkönyvtár, akkor megfontolhatja, hogy nem célszerűbb-e megengedni, hogy szellemi tulajdont képező alkalmazásokkal is összefűzhető legyen a programkönyvtár. Ha ezt szeretné, akkor a GPL helyett a GNU LGPL-t kell használni. - + License - Licenc + Licenc - + Contribute - Részvétel + Részvétel - + Close - Bezárás + Bezárás - - build - + + build %s + - AlertForm + OpenLP.AdvancedTab - - Alert Message - Figyelmeztetés + + Advanced + Haladó - - Alert &text: - Figyelmeztető &szöveg: + + UI Settings + - - &Parameter(s): - &Paraméterek: + + Number of recent files to display: + - - &New - &Új + + Remember active media manager tab on startup + - - &Save - &Mentés - - - - &Delete - &Törlés - - - - Displ&ay - &Megjelenítés - - - - Display && Cl&ose - M&egjelenítés és bezárás - - - - &Close - &Bezárás - - - - Item selected to Add - Hozzáadásra kiválasztott elem - - - - Missing data - Hiányos adatok + + Double-click to send items straight to live (requires restart) + - AlertsTab - - - pt - pt - - - - Location: - Hely: - - - - Font Color: - Betűszín: - - - - Font - Betűkészlet - - - - Font Name: - Betűkészlet neve: - - - - Preview - Előnézet - - - - Alerts - Figyelmeztetések - - - - Alert timeout: - Figyelmeztetés késleltetése: - - - - openlp.org - openlp.org - - - - Background Color: - Háttérszín: - - - - s - mp - - - - Bottom - Alul - - - - Top - Felül - - - - Font Size: - Betűméret: - - - - AmendThemeForm - - - Slide Height is %s rows - A dia magassága %s sor - - - - First Color: - Első szín: - - - - Second Color: - Második szín: - - - - Background Color: - Háttérszín: - - - - Theme Maintenance - Témák kezelése - - - - Theme Name: - Téma neve: - - - - Background: - Háttér: - - - - Opaque - Átlátszatlan - - - - Transparent - Átlátszó - - - - Background Type: - Háttér típusa: - - - - Solid Color - Homogén szín - - - - Gradient - Színátmenet - - - - Image - Kép - - - - <Color1> - - - - - <Color2> - - - - - Image: - Kép: - - - - Gradient : - Színátmenet: - - - - Horizontal - Vízszintes - - - - Vertical - Függőleges - - - - Circular - Körkörös - - - - Background - Háttér - - - - Main Font - Alap betűkészlet - - - - Font: - Betűkészlet: - - - - Font Color: - Betűszín: - - - - Size: - Méret: - - - - pt - - - - - Wrap Indentation - Sortörési behúzás - - - - Adjust Line Spacing - Sorköz igazítása - - - - Normal - Normál - - - - Bold - Félkövér - - - - Italics - Dőlt - - - - Bold/Italics - Félkövér dőlt - + OpenLP.AmendThemeForm - Font Weight: - Betűvastagság: - - - - Display Location - Hely megjelenítése + Theme Maintenance + Témák kezelése - Use Default Location: - Alapértelmezett hely alkalmazása: - - - - X Position: - X pozíció: + Theme &name: + - Y Position: - Y pozíció: - - - - Width: - Szélesség: + &Visibility: + - Height: - Magasság: + Opaque + Átlátszatlan - - px - + + Transparent + Átlátszó - - Font Main - Alap betűkészlet + + Type: + Típus: - - Footer Font - Lábjegyzet betűkészlete - - - - Font Footer - Lábjegyzet betűkészlet + + Solid Color + Homogén szín - Outline - Körvonal + Gradient + Színátmenet - - Outline Size: - Körvonal mérete: - - - - Outline Color: - Körvonal színe: - - - - Show Outline: - Körvonal megjelenítése: - - - - Shadow - Árnyék + + Image + Kép - Shadow Size: - Árnyék mérete: + Image: + Kép: - Shadow Color: - Árnyék színe: - - - - Show Shadow: - Árnyék megjelenítése: + Gradient: + - Alignment - Igazítás - - - - Horizontal Align: - Vízszintes igazítás: + Horizontal + Vízszintes - Left - Balra zárt - - - - Right - Jobbra zárt + Vertical + Függőleges - Center - Középre igazított - - - - Vertical Align: - Függőleges igazítás: + Circular + Körkörös - Top - Felülre - - - - Middle - Középre - - - - Bottom - Alulra + &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 + Diaátmenet - - Transition Active: - Aktív átmenet: + + Transition active + - - Other Options - További beállítások + + &Other Options + - + Preview - Előnézet + Előnézet + + + + All Files + + + + + Select Image + + + + + First color: + + + + + Second color: + + + + + Slide height is %s rows. + - AuditDeleteDialog + OpenLP.GeneralTab - - Song Usage Delete - Dalstatisztika törlése - - - - AuditDetailDialog - - - Song Usage Extraction - Dalstatisztika kicsomagolása - - - - Select Date Range - Időintervallum megadása - - - - to - - - - - Report Location - Helyszín jelentése - - - - AuthorsForm - - - You need to type in the first name of the author. - Meg kell adni a szerző vezetéknevét. - - - - You haven't set a display name for the author, would you like me to combine the first and last names for you? - Nem állította be a megjelenített nevet. Szeretné a vezetéknevet és a keresztnevet összeilleszteni? - - - - Error - Hiba - - - - You need to type in the last name of the author. - Meg kell adni a szerző keresztnevét. - - - - Author Maintenance - Szerzők kezelése - - - - Display name: - Megjelenített név: - - - - First name: - Keresztnév: - - - - Last name: - Vezetéknév: - - - - BibleMediaItem - - - Quick - Gyors - - - - Bible - Biblia - - - - Text Search - Szöveg keresése - - - - Find: - Keresés: - - - - Search Type: - Keresés típusa: - - - - Bible not fully loaded - A Biblia nem töltődött be teljesen - - - - No matching book could be found in this Bible. - Nem található ilyen könyv ebben a Bibliában. - - - - Dual: - Második: - - - - Chapter: - Fejezet: - - - - Search - Keresés - - - - Keep - Megtartása - - - - Results: - Eredmények: - - - - Verse Search - Vers keresése - - - - Version: - Verzió: - - - - From: - Innentől: - - - - Book: - Könyv: - - - - No Book Found - Nincs ilyen könyv - - - - Advanced - Haladó - - - - To: - Idáig: - - - - Clear - Törlése - - - - Verse: - Vers: - - - - BiblePlugin - - - <strong>Bible Plugin</strong><br />This plugin allows bible verses from different sources to be displayed on the screen during the service. - <strong>Biblia bővítmény</strong><br />Ez a bővítmény különféle igehelyek vetítését teszi lehetővé a szolgálat alatt. - - - - BiblesTab - - - ( and ) - ( és ) - - - - verse per line - egy vers soronként - - - - Display Style: - Megjelenítési stílus: - - - - continuous - folytonos - - - - [ and ] - [ és ] - - - - Verse Display - Vers megjelenítés - - - - Display Dual Bible Verses - Kettőzött bibliaversek megjelenítése - - - - Only show new chapter numbers - Csak az új fejezetszámok megjelenítése - - - - Layout Style: - Elrendezési stílus: - - - - No brackets - Nincsenek zárójelek - - - - Bibles - Bibliák - - - - { and } - { és } - - - - Note: -Changes don't affect verses already in the service - Megjegyzés: -A változások nem érintik a már a szolgálatban lévő igeverseket - - - - verse per slide - egy vers diánként - - - - Bible Theme: - Biblia téma: - - - - CustomMediaItem - - - Custom - Egyedi - - - - CustomPlugin - - - <b>Custom Plugin</b><br>This plugin allows slides to be displayed on the screen in the same way songs are. This plugin provides greater freedom over the songs plugin.<br> - <b>Egyedi bővítmény</b><br/>Ez a bővítmény dalokhoz hasonló diák vetítését teszi lehetővé. Ugyanakkor több szabadságot enged meg, mint a dalok bővítmény - - - - CustomTab - - - Custom - Egyedi - - - - Custom Display - Egyedi megjelenés - - - - Display Footer - Lábjegyzet megjelenítése - - - - DisplayTab - - - Displays - Megjelenítők - - - - EditCustomForm - - - You need to enter a title - Meg kell adni egy címet - - - - Error - Hiba - - - - You need to enter a slide - Meg kell adni egy diát - - - - Save && Preview - Mentés és előnézet - - - - Edit Custom Slides - Egyedi diák szerkesztése - - - - Move slide Up 1 - Dia mozgatása felfelé - - - - Move slide down 1 - Dia mozgatása lefelé - - - - Title: - Cím: - - - - Add New - Új hozzáadása - - - - Add new slide at bottom - Új dia hozzáadása alulra - - - - Edit - Szerkesztés - - - - Edit selected slide - Kiválasztott dia szerkesztése - - - - Edit All - Összes szerkesztése - - - - Edit all slides - Összes dia szerkesztése - - - - Save - Mentés - - - - Replace edited slide - Szerkesztett dia cserélése - - - - Delete - Törlés - - - - Delete selected slide - Kiválasztott dia törlése - - - - Clear - Szöveg törlése - - - - Clear edit area - Szerkesztő terület törlése - - - - Split Slide - Dia kettéválasztása - - - - Add slide split - Elválasztás hozzáadása - - - - Theme: - Téma: - - - - Credits: - Közreműködők: - - - - You have unsaved data, please save or clear - Nincs minden adat elmentve, mentse el vagy törölje - - - - EditSongForm - - - You need to enter a song title. - Meg kell adni egy dalcímet. - - - - You need to enter some verses. - Meg kell adni néhány versszakot. - - - - Save && Preview - Mentés és előnézet - - - - Error - Hiba - - - - Song Editor - Dalszerkesztő - - - - Title: - Cím: - - - - Alternative Title: - Alternatív cím: - - - - Lyrics: - Dalszöveg: - - - - Verse Order: - Versszak sorrend: - - - - Add - Hozzáadás - - - - Edit - Szerkesztés - - - - Edit All - Összes szerkesztése - - - - 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, Books - &Szerzők, témakörök, könyvek kezelése - - - - Topic - Témakör - - - - A&dd to Song - &Hozzáadás dalhoz - - - - R&emove - &Eltávolítás - - - - Song Book - Daloskönyv - - - - Authors, Topics && Book - Szerzők, témakörök és könyv - - - - Theme - Téma - - - - Add a Theme - Téma hozzáadása - - - - Copyright Information - Szerzői jogi információ - - - - CCLI Number: - CCLI szám: - - - - Comments - Megjegyzések - - - - Theme, Copyright Info && Comments - Téma, szerzői jogi infók és megjegyzések - - - - bitped - - - - - v - - - - - c - - - - - Invalid verse entry - Vx or Cx - Érvénytelen versszak bejegyzés – Vx vagy Cx - - - - Invalid verse entry, values must be I,B,T,P,E,O,Vx,Cx - Érvénytelen versszak bejegyzés – az érvényes értékek: I,B,T,P,E,O,Vx,Cx - - - - EditVerseForm - - - Edit Verse - Versszak szerkesztése - - - - Verse Type: - Versszak típusa: - - - - Verse - Versszak - - - - Chorus - Refrén - - - - Bridge - Mellékdal - - - - Pre-Chorus - Elő-refrén - - - - Intro - Bevezetés - - - - Ending - Befejezés - - - - Other - Egyéb - - - - Insert - Beszúrás - - - - GeneralTab - - - CCLI Details - CCLI részletek - - - - primary - elsődleges - - - - Show blank screen warning - Figyelmeztetés megjelenítése a fekete képernyőről - - - - Application Startup - Alkalmazás indítása - - - - Select monitor for output display: - Válassza ki a vetítési képernyőt: - - - - Application Settings - Alkalmazás beállítások - - - - SongSelect Username: - SongSelect felhasználói név: - - - - CCLI Number: - CCLI szám: - - - - Automatically open the last service - Utolsó szolgálat automatikus megnyitása - - - - Preview Next Song from Service Manager - Következő dal előnézete a szolgálatkezelőből - - - - Prompt to save Service before starting New - Rákérdezés a szolgálat mentésére új kezdése előtt - - - + General - Általános + Általános - - Show the splash screen - Indító képernyő megjelenítése - - - - Screen - Képernyő - - - + Monitors - Monitorok + Monitorok - - SongSelect Password: - SongSelect jelszó: + + Select monitor for output display: + Válassza ki a vetítési képernyőt: - + Display if a single screen - Megjelenítés egy képernyő esetén + Megjelenítés egy képernyő esetén + + + + Application Startup + Alkalmazás indítása + + + + Show blank screen warning + Figyelmeztetés megjelenítése a fekete képernyőről + + + + Automatically open the last service + Utolsó szolgálat automatikus megnyitása + + + + Show the splash screen + Indító képernyő megjelenítése + + + + Application Settings + Alkalmazás beállítások + + + + Prompt to save Service before starting New + Rákérdezés a szolgálat mentésére új kezdése előtt + + + + Preview Next Song from Service Manager + Következő dal előnézete a szolgálatkezelőből + + + + CCLI Details + CCLI részletek + + + + CCLI number: + + + + + SongSelect username: + + + + + SongSelect password: + + + + + Display Position + + + + + X + + + + + Y + + + + + Height + + + + + Width + + + + + Override display position + + + + + Screen + Képernyő + + + + primary + elsődleges - ImageMediaItem + OpenLP.LanguageManager - - Select Image(s) - Kép(ek) kiválasztása - - - - Image(s) - Kép(ek) - - - - Image - Kép - - - - Images (*.jpg *.jpeg *.gif *.png *.bmp);; All files (*) - Képek (*.jpg *.jpeg *.gif *.png *.bmp);; Minden fájl (*) - - - - Replace Live Background - Egyenes adás háttérének cseréje - - - - No item selected - Nincs kiválasztott elem - - - - You must select one item - Ki kell választani egy elemet - - - - ImagePlugin - - - <b>Image Plugin</b><br>Allows images of all types to be displayed. If a number of images are selected together and presented on the live controller it is possible to turn them into a timed loop.<br<br>From the plugin if the <i>Override background</i> is chosen and an image is selected any songs which are rendered will use the selected image from the background instead of the one provied by the theme.<br> - <b>Kép bővítmény</b><br />Ez a bővítmény mindenféle kép vetítését teszi lehetővé. Ha több kép együtt van kiválasztva és vetítve, az egyenes adás vezérlőn lehetőség van időzített körkörös lejátszásra.<br/>Ha a bővítményben a <i>Háttér felülírása</i> be van kapcsolva és egy kép ki van jelölve, minden megjelenített dalnak a kiválasztott kép lesz a háttérképe a témában megadott helyett.<br /> - - - - ImageTab - - - sec - mp - - - - Image Settings - Kép beállítások - - - - Slide Loop Delay: - Időzített diák késleltetése: - - - - Images - Képek - - - - ImportWizardForm - - - Invalid Bible Location - Érvénytelen a Biblia elérési útvonala - - - - You need to set a copyright for your Bible! Bibles in the Public Domain need to be marked as such. - Meg kell adni a szerzői jogokat! A közkincs Bibliákat meg kell jelölni ilyennek. - - - - Bible Exists - Biblia létezik - - - - Empty Copyright - Üres a szerzői jog - - - - Empty Version Name - Üres verziónév - - - - Invalid OpenSong Bible - Érvénytelen OpenSong Biblia - - - - Your Bible import failed. - A Biblia importálása nem sikerült. - - - - Finished import. - Az importálás befejeződött. - - - - This Bible already exists! Please import a different Bible or first delete the existing one. - Ez a Biblia már létezik! Kérem, importáljon egy másik Bibliát vagy előbb törölje a meglévőt. - - - - Starting import... - Importálás indítása... - - - - Invalid Books File - Érvénytelen könyv fájl - - - - Invalid Verse File - Érvénytelen versszak fájl - - - - Open OpenSong Bible - OpenSong Biblia megnyitása - - - - Bible Import Wizard - Bibliaimportáló tündér - - - - Welcome to the Bible Import Wizard - Üdvözlet a Bibliaimportáló tündérben - - - - This wizard will help you to import Bibles from a variety of formats. Click the next button below to start the process by selecting a format to import from. - A tündérrel különféle formátumú Bibliákat lehet importálni. Az alább található Tovább gombra való kattintással indítható a folyamat első lépése a formátum kiválasztásával. - - - - 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: - - - - OSIS - OSIS - - - - CSV - CSV - - - - OpenSong - OpenSong - - - - Web Download - Web letöltés - - - - File Location: - Fájl helye: - - - - Books Location: - Könyvek helye: - - - - Verse Location: - Vers helye: - - - - Bible Filename: - Biblia fájl: - - - - Location: - Hely: - - - - Crosswalk - - - - - BibleGateway - - - - - Bible: - Biblia: - - - - Download Options - Letöltési beállítások - - - - Server: - Szerver: - - - - Username: - Felhasználói név: - - - - Password: - Jelszó: - - - - Proxy Server (Optional) - Proxy szerver (választható) - - - - License Details - Licenc részletek - - - - Set up the Bible's license details. - Állítsa be a Biblia licenc részleteit. - - - - Version Name: - Verzió neve: - - - - Copyright: - Copyright: - - - - Permission: - Engedély: - - - - Importing - Importálás - - - - Please wait while your Bible is imported. - Kérem, várjon, míg a Biblia importálás alatt áll. - - - - Ready. - Kész. - - - - You need to specify a file to import your Bible from. - Meg kell adni egy fájlt, amelyből a Bibliát importálni lehet. - - - - You need to specify a file with books of the Bible to use in the import. - Meg kell adni egy fájlt a bibliai könyvekről az importáláshoz. - - - - You need to specify a file of Bible verses to import. - Meg kell adni egy fájlt a bibliai versekről az importáláshoz. - - - - You need to specify an OpenSong Bible file to import. - Meg kell adni egy OpenSong Biblia fájlt az importáláshoz. - - - - You need to specify a version name for your Bible. - Meg kell adni a Biblia verziószámát. - - - - Open OSIS File - OSIS fájl megnyitása - - - - Open Books CSV File - Könyv CSV fájl megnyitása - - - - Open Verses CSV File - Versszak CSV fájl megnyitása - - - - 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 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 CSV File Selected - Nincsenek kijelölt CSV fájlok - - - - You need to specify a CSV file to import from. - Meg kell adni legalább egy CSV fájlt az importáláshoz. - - - - LanguageManager - - + Language - Nyelv + Nyelv - - After restart new Language settings will be used. - Újraindítás után lépnek érvénybe a nyelvi beállítások. + + Please restart OpenLP to use your new language setting. + - MainWindow - - - The Main Display has been blanked out - A fő képernyő el lett sötétítve - - - - OpenLP Version Updated - OpenLP verziófrissítés - - - - Save Changes to Service? - Mentsük a változásokat a szolgálatban? - - - - OpenLP Main Display Blanked - Sötét OpenLP fő képernyő - - - - OpenLP 2.0 - - - - - English - Magyar - - - - Default Theme: - Alapértelmezett téma: - - - - &File - &Fájl - - - - &Import - &Importálás - - - - &Export - &Exportálás - - - - &Options - &Beállítások - - - - &View - &Nézet - - - - M&ode - &Mód - - - - &Tools - &Eszközök - - - - &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 - Új szolgálat létrehozása - - - - Ctrl+N - - - - - &Open - &Megnyitás - - - - Open Service - Szolgálat megnyitása - - - - Open an existing service - Meglévő szolgálat megnyitása - - - - Ctrl+O - - - - - &Save - M&entés - - - - Save Service - Szolgálat mentése - + OpenLP.MainWindow - Save the current service to disk - Aktuális szolgálat mentése + OpenLP 2.0 + - - Ctrl+S - + + English + Magyar - Save &As... - Mentés má&sként... + &File + &Fájl - Save Service As - Szolgálat mentése másként + &Import + &Importálás + + + + &Export + &Exportálás - Save the current service under a new name - Az aktuális szolgálat más néven való mentése + &View + &Nézet + + + + M&ode + &Mód - F12 - + &Tools + &Eszközök - E&xit - &Kilépés - - - - Quit OpenLP - OpenLP bezárása - - - - Alt+F4 - - - - - &Theme - &Téma - - - - &Language - &Nyelv - - - - Look && &Feel - &Kinézet - - - &Settings - &Beállítások - - - - &Media Manager - &Médiakezelő - - - - Toggle Media Manager - Médiakezelő átváltása - - - - Toggle the visibility of the Media Manager - A médiakezelő láthatóságának átváltása - - - - F8 - - - - - &Theme Manager - &Témakezelő - - - - Toggle Theme Manager - Témakezelő átváltása - - - - Toggle the visibility of the Theme Manager - A témakezelő láthatóságának átváltása - - - - F10 - - - - - &Service Manager - &Szolgálatkezelő - - - - Toggle Service Manager - Szolgálatkezelő átváltása - - - - Toggle the visibility of the Service Manager - A szolgálatkezelő láthatóságának átváltása - - - - F9 - - - - - &Preview Panel - &Előnézet panel - - - - Toggle Preview Panel - Előnézet panel átváltása - - - - Toggle the visibility of the Preview Panel - Az előnézet panel láthatóságának átváltása - - - - F11 - - - - - &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ó + &Beállítások - &Web Site - &Weboldal + &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 - &Auto Detect - &Automatikus felismerés + &Configure OpenLP... + - - Choose System language, if available - Ha elérhető, a rendszernyelv választása + + &Media Manager + &Médiakezelő - - Set the interface language to %1 - A felhasználói felület nyelvének átváltása erre: %1 + + Toggle Media Manager + Médiakezelő átváltása - - Add &Tool... - &Eszköz hozzáadása... + + Toggle the visibility of the media manager. + - Add an application to the list of tools - Egy alkalmazás hozzáadása az eszközök listához + F8 + - &Preview Pane - &Előnézet panel + &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 + &Egyenes adá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 - Már letölthető az OpenLP %s verziója (jelenleg a %s verzió fut). - -A legfrissebb verzió a http://openlp.org oldalról szerezhető be + + Set the view mode to Live. + - - Your service has changed. Do you want to save those changes? - A szolgálat módosult. Szeretné elmenteni? + + 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 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 + - MediaManagerItem + OpenLP.MediaManagerItem - - &Preview - &Előnézet + + No Items Selected + Nincs kiválasztott elem - - You must select one or more items - Ki kell választani egy vagy több elemet + + Import %s + + + + + Import a %s + - Load a new - Új betöltése + 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 + Kiválasztott elem törlése - - &Edit - &Szerkesztés + + Preview %s + - - &Add to Service - &Hozzáadás a szolgálathoz - - - - Send the selected item live - A kiválasztott elem egyenes adásba küldése - - - - Add the selected item(s) to the service - A kiválasztott elem(ek) hozzáadása a szolgálathoz - - - - Edit the selected - Kiválasztott elem szerkesztése - - - - Add a new - Új hozzáadása - - - - &Show Live - Egyenes &adásba - - - + Preview the selected item - A kiválasztott elem előnézete + A kiválasztott elem előnézete - - Import a - Hát ez mi? - Importálás + + Send the selected item live + A kiválasztott elem egyenes adásba küldése - - &Delete - &Törlés + + 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 + &Hozzáadás a kiválasztott szolgálat elemhez - - No Items Selected - Nincs kiválasztott elem + + 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. + Ki kell választani egy vagy több elemet. - + No items selected - Nincs kiválasztott elem + Nincs kiválasztott elem - + + You must select one or more items + Ki kell választani egy vagy több elemet + + + No Service Item Selected - Nincs kiválasztott szolgálat elem + Nincs kiválasztott szolgálat elem - + You must select an existing service item to add to. - Ki kell választani egy szolgálati elemet, amihez hozzá szeretné adni. + Ki kell választani egy szolgálati elemet, amihez hozzá szeretné adni. - + Invalid Service Item - Érvénytelen szolgálat elem + Érvénytelen szolgálat elem + + + + You must select a %s service item. + - MediaMediaItem - - - Media - Média - - - - Select Media - Média kiválasztása - - - - Videos (%s);;Audio (%s);;All files (*) - Videók (%s);;Hangfájlok (%s);;Minden fájl (*) - - - - Replace Live Background - Egyenes adás hátterének cseréje - - - - No item selected - Nincs kiválasztott elem - - - - You must select one item - Ki kell választani egy elemet - - - - MediaPlugin - - - <b>Media Plugin</b><br>This plugin allows the playing of audio and video media - <b>Média bővítmény</b><br />Ez a bővítmény hangok és videók lejátszását teszi lehetővé - - - - OpenLPExportForm - - - openlp.org Song Exporter - openlp.org dalexportáló - - - - Select openlp.org export filename: - Válassza ki az openlp.org exportálási fájlnevet: - - - - Full Song List - Teljes dallista - - - - Song Title - Dal címe - - - - Author - Szerző - - - - Select All - Összes kiválasztása - - - - Lyrics - Dalszöveg - - - - Title - Cím - - - - Song Export List - Dal exportálási lista - - - - Remove Selected - Kiválasztottak eltávolítása - - - - Progress: - Folyamat: - - - - Ready to export - Készen áll az exportálásra - - - - Export - Exportálás - - - - Close - Bezárás - - - - OpenLPImportForm - - - openlp.org Song Importer - openlp.org dalimportáló - - - - Select openlp.org songfile to import: - Válassza ki az openlp.org importálandó fájlt: - - - - Import File Song List - Dallista fájl importálása - - - - Song Title - Dal címe - - - - Author - Szerző - - - - Select All - Összes kiválasztása - - - - Lyrics - Dalszöveg - - - - Title - Cím - - - - Song Import List - Dal importálási lista - - - - Remove Selected - Kiválasztottak eltávolítása - - - - Progress: - Folyamat: - - - - Ready to import - Készen áll az importálásra - - - - Import - Importálás - - - - Close - Bezárás - - - - OpenSongBible - - - Importing - Importálás - - - - OpenSongExportForm - - - OpenSong Song Exporter - OpenSong dalexportáló - - - - Select OpenSong song folder: - Válassza ki az OpenSong dalok mappáját: - - - - Full Song List - Teljes dallista - - - - Song Title - Dal címe - - - - Author - Szerző - - - - Select All - Összes kiválasztása - - - - Lyrics - Dalszöveg - - - - Title - Cím - - - - Song Export List - Dal exportálási lista - - - - Remove Selected - Kiválasztottak eltávolítása - - - - Progress: - Folyamat: - - - - Ready to export - Készen áll az exportálásra - - - - Export - Exportálás - - - - Close - Bezárás - - - - OpenSongImportForm - - - OpenSong Song Importer - OpenSong dalimportáló - - - - OpenSong Folder: - OpenSong mappa: - - - - Progress: - Folyamat: - - - - Ready to import - Készen áll az importálásra - - - - Import - Importálás - - - - Close - Bezárás - - - - PluginForm + OpenLP.PluginForm Plugin List - Bővítménylista - - - - Plugin Details - Bővítmény részletei + Bővítménylista - Version: - Verzió: - - - - TextLabel - Szövegcímke + Plugin Details + Bővítmény részletei - About: - Névjegy: - - - - Status: - Állapot: + Version: + Verzió: + TextLabel + Szövegcímke + + + + About: + Névjegy: + + + + Status: + Állapot: + + + Active - Aktív + Aktív - + Inactive - Inaktív + Inaktív + + + + %s (Inactive) + + + + + %s (Active) + + + + + %s (Disabled) + - PresentationMediaItem - - - Presentation - Bemutató - - - - Present using: - Bemutató ezzel: - - - - A presentation with that filename already exists. - Ilyen fájlnéven már létezik egy bemutató. - - - - File exists - A fájl létezik - - - - Select Presentation(s) - Bemutató(k) kiválasztása - - - - Automatic - Automatikus - - - - Presentations (%s) - Bemutatók (%s) - - - - PresentationPlugin - - - <b>Presentation Plugin</b> <br> Delivers 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. - <b>Bemutató bővítmény</b><br />Különböző külső programok segítségével bemutatók megjelenítését teszi lehetővé. A prezentációs programok egy listából választhatók ki. - - - - PresentationTab - - - Available Controllers - Elérhető vezérlők - - - - available - elérhető - - - - Presentations - Bemutatók - - - - RemoteTab - - - Remotes - Távvezérlés - - - - Remotes Receiver Port - Távvezérlést fogadó port - - - - RemotesPlugin - - - <b>Remote Plugin</b><br>This plugin provides the ability to send messages to a running version of openlp on a different computer via a web browser or other app<br>The Primary use for this would be to send alerts from a creche - <b>Távvezérlő bővítmény</b><br/>Ez a bővítmény egy böngésző vagy más alkalmazás segítségével lehetővé teszi egy másik számítógépen futó OpenLP irányítását.<br/>Az elsődleges felhasználási terület egy programösszeomlás jelentése - - - - ServiceItemEditForm + OpenLP.ServiceItemEditForm - Service Item Maintenance - Szolgálati elem kezelése - - - - Up - Fel + Reorder Service Item + - Delete - Törlés + Up + Fel + Delete + Törlés + + + Down - Le + Le - ServiceManager + OpenLP.ServiceManager - - Save Changes to Service? - Változások mentése a szolgálatban? - - - - Open Service - Szolgálat megnyitása - - - - Move to top - Mozgatás felülre - - - - Create a new service - Új szolgálat létrehozása - - - - Save this service - Aktuális szolgálat mentése - - - - Theme: - Téma: - - - - Delete From Service - Törlés a szolgálatból - - - - Save Service - Szolgálat mentése - - - - &Live Verse - &Adásban lévő versszak - - - + New Service - Új szolgálat - - - - &Notes - &Jegyzetek - - - - Move to end - Mozgatás a végére - - - - Move up order - Mozgatás feljebb a sorban - - - - Move down order - Mozgatás lejjebb a sorban + Új szolgálat + Create a new service + Új szolgálat létrehozása + + + + Open Service + Szolgálat megnyitása + + + Load an existing service - Egy meglévő szolgálat betöltése + Egy meglévő szolgálat betöltése - - &Preview Verse - Versszak &előnézete + + Save Service + Szolgálat mentése - - &Edit Item - &Elem szerkesztése + + Save this service + Aktuális szolgálat mentése - - Move to &top - Mozgatás &felülre + + Theme: + Téma: - - Move &up - Mozgatás f&eljebb - - - - Move &down - Mozgatás &lejjebb + + Select a theme for the service + + Move to &top + Mozgatás &felülre + + + + Move item to the top of the service. + + + + + Move &up + Mozgatás f&eljebb + + + + Move item up one position in the service. + + + + + Move &down + Mozgatás &lejjebb + + + + Move item down one position in the service. + + + + Move to &bottom - Mozgatás &alulra + Mozgatás &alulra - + + Move item to the end of the service. + + + + &Delete From Service - &Törlés a szolgálatból + &Törlés a szolgálatból - + + Delete the selected item from the service. + + + + &Add New Item - Új elem &hozzáadása + Új elem &hozzáadása - + &Add to Selected Item - &Hozzáadás a kiválasztott elemhez + &Hozzáadás a kiválasztott elemhez - - &Maintain Item - Elem &karbantartása + + &Edit Item + &Elem szerkesztése - + + &Reorder Item + + + + + &Notes + &Jegyzetek + + + + &Preview Verse + Versszak &előnézete + + + + &Live Verse + &Adásban lévő versszak + + + + &Change Item Theme + + + + + 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á? + 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á? + 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é - ServiceNoteForm + OpenLP.ServiceNoteForm - + Service Item Notes - Szolgálat elem jegyzetek + Szolgálat elem jegyzetek - SettingsForm + OpenLP.SettingsForm - - Settings - Beállítások + + Configure OpenLP + - SlideController + OpenLP.SlideController - - Move to previous - Mozgatás az előzőre - - - - Go to Verse - Ugrás versszakra - - - - Start continuous loop - Folyamatos vetítés indítása - - - + Live - Egyenes adás + Egyenes adás - - Start playing media - Médialejátszás indítása - - - - Move to live - Mozgatás az egyenes adásban lévőre - - - + Preview - Előnézet + 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 + Mozgatás az utolsóra - - Edit and re-preview Song - Dal szerkesztése, majd újra az előnézet megnyitása + + Hide + - Delay between slides in seconds - Diák közötti késleltetés másodpercben + Move to live + Mozgatás az egyenes adásban lévőre - - Move to next - Mozgatás a következőre + + Edit and re-preview Song + Dal szerkesztése, majd újra az előnézet megnyitása - - Move to first - Mozgatás az elsőre + + Start continuous loop + Folyamatos vetítés indítása - - Blank Screen - Elsötétített képernyő - - - - Verse - Versszak - - - + Stop continuous loop - Folyamatos vetítés leállítása + Folyamatos vetítés leállítása - + s - mp + mp - - Theme Screen - Téma képernyő + + Delay between slides in seconds + Diák közötti késleltetés másodpercben - - Hide Screen - Képernyő rejtése + + Start playing media + Médialejátszás indítása - - Chorus - Refrén + + Go to Verse + Ugrás versszakra - SongBookForm + OpenLP.ThemeManager - - Error - Hiba + + New Theme + Új téma - - You need to type in a book name! - Meg kell adnia egy könyv nevét! + + Create a new theme. + - - Edit Book - Könyv szerkesztése + + Edit Theme + Téma szerkesztése - - Name: - Név: + + Edit a theme. + - - Publisher: - Kiadó: - - - - SongMaintenanceForm - - - Are you sure you want to delete the selected book? - A kiválasztott könyv biztosan törölhető? + + Delete Theme + Téma törlése - - Error - Hiba + + Delete a theme. + - - No author selected! - Nincs kiválasztott szerző! + + Import Theme + Téma importálása - - Delete Book - Könyv törlése + + Import a theme. + - - No book selected! - Nincs kiválasztott könyv! + + Export Theme + Téma exportálása - - Are you sure you want to delete the selected author? - A kiválasztott szerző biztosan törölhető? + + Export a theme. + - - Delete Topic - Témakör törlése + + &Edit Theme + - - Delete Author - Szerző törlése + + &Delete Theme + - - No topic selected! - Nincs kiválasztott témakör! + + Set As &Global Default + - - Are you sure you want to delete the selected topic? - A kiválasztott témakör biztosan törölhető? + + E&xport Theme + - - Song Maintenance - Dalok kezelése + + %s (default) + - - Authors - Szerzők + + You must select a theme to edit. + - - Topics - Témakörök + + You must select a theme to delete. + - - Books/Hymnals - Énekeskönyvek - - - - Add - Hozzáadás - - - - Edit - Szerkesztés - - - - Delete - Törlés - - - - Couldn't add your author. - A szerzőt nem lehet hozzáadni. - - - - Couldn't add your topic. - A témakört nem lehet hozzáadni. - - - - Couldn't add your book. - A könyvet nem lehet hozzáadni. - - - - Couldn't save your author. - A szerzőt nem lehet menteni. - - - - Couldn't save your topic. - A témakört nem lehet menteni. - - - - Couldn't save your book. - A könyvet nem lehet menteni. - - - - This author can't be deleted, they are currently assigned to at least one song. - Ez a szerző nem törölhető, mivel hozzá van rendelve legalább egy dalhoz. - - - - This topic can't be deleted, it is currently assigned to at least one song. - Ez a témakör nem törölhető, mivel hozzá van rendelve legalább egy dalhoz. - - - - This book can't be deleted, it is currently assigned to at least one song. - Ez a könyv nem törölhető, mivel hozzá van rendelve legalább egy dalhoz. - - - - SongMediaItem - - - CCLI Licence: - CCLI licenc: - - - - Song - Dal - - - - Maintain the lists of authors, topics and books - A szerzők, témakörök, könyvek listájának kezelése - - - - Lyrics - Dalszöveg - - - - Type: - Típus: - - - - Titles - Címek - - - - Clear - Törlés - - - - Search - Keresés - - - - Authors - Szerzők - - - - Search: - Keresés: - - - - Song Maintenance - Dalok kezelése - - - - %s (%s) - - - - - Delete song? - Valóban törölhető a dal? - - - - Delete %d songs? - Valóban törölhetők a dalok: %d? - - - + Delete Confirmation - Törlés megerősítése + Törlés megerősítése + + + + Delete theme? + + + + + Error + Hiba + + + + You are unable to delete the default theme. + Az alapértelmezett témát nem lehet törölni. + + + + Theme %s is use in %s plugin. + + + + + Theme %s is use by the service manager. + + + + + You have not selected a theme. + Nincs kiválasztva egy téma sem. + + + + Save Theme - (%s) + Téma mentése – (%s) + + + + Theme Exported + + + + + Your theme has been successfully exported. + + + + + Theme Export Failed + + + + + Your theme could not be exported due to an error. + + + + + Select Theme Import File + Importálandó téma fájl kiválasztása + + + + Theme (*.*) + + + + + 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? + - SongUsageDeleteForm + OpenLP.ThemesTab - - Delete Selected Song Usage Events? - Valóban törölhetők a kiválasztott dalstatisztika események? + + Themes + Témák - - Are you sure you want to delete selected Song Usage data? - Valóban törölhetők a kiválasztott dalstatisztika adatok? + + Global Theme + + + + + Theme Level + + + + + S&ong Level + + + + + Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. + Minden dalra az adatbázisban tárolt téma alkalmazása. Ha egy dalhoz nincs saját téma beállítva, akkor a szolgálathoz beállított használata. Ha a szolgálathoz sincs téma beállítva, akkor a globális téma alkalmazása. + + + + &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. + A szolgálathoz beállított téma alkalmazása, vagyis az egyes dalokhoz megadott témák felülírása. Ha a szolgálathoz nincs téma beállítva, akkor a globális téma alkalmazása. + + + + &Global Level + + + + + Use the global theme, overriding any themes associated with either the service or the songs. + A globális téma alkalmazása, vagyis a szolgálathoz, ill. a dalokhoz beállított témák felülírása. - SongUsageDetailForm + PresentationPlugin - - Output File Location - Kimeneti fájl elérési útvonala + + <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. + + + + + PresentationPlugin.MediaItem + + + Presentation + 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. + + + + + PresentationPlugin.PresentationTab + + + Presentations + Bemutatók + + + + Available Controllers + Elérhető vezérlők + + + + Advanced + + + + + 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. + + + + + RemotePlugin.RemoteTab + + + Remotes + Távvezérlés + + + + Serve on IP address: + + + + + Port number: + + + + + Server Settings + SongUsagePlugin - - <b>SongUsage Plugin</b><br>This plugin records the use of songs and when they have been used during a live service - <b>Dalstatisztika bővítmény</b><br />Ez a bővítmény rögzíti, hogy a dalok mikor lettek vetítve egy élő szolgálat során + + &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. + + + + + SongUsagePlugin.SongUsageDeleteForm + + + Delete Selected Song Usage Events? + Valóban törölhetők a kiválasztott dalstatisztika események? + + + + Are you sure you want to delete selected Song Usage data? + Valóban törölhetők a kiválasztott dalstatisztika adatok? + + + + Delete Song Usage Data + + + + + SongUsagePlugin.SongUsageDetailForm + + + Output File Location + Kimeneti fájl elérési útvonala + + + + Song Usage Extraction + Dalstatisztika kicsomagolása + + + + Select Date Range + Időintervallum megadása + + + + to + + + + + Report Location + Helyszín jelentése SongsPlugin - + Open Songs of Fellowship file Songs of Fellowship fájl megnyitása - + Open documents or presentations Dokumentum vagy bemutató megnyitása - - <strong>Song Plugin</strong><br />This plugin allows songs to be managed and displayed. - <strong>Dal bővítmény</strong> <br />Ez a a bővítmény dalok kezelését és vetítését teszi lehetővé. - - - - SongsTab - - - Songs Mode - Dalmód - - - - Songs - Dalok - - - - Enable search as you type - Gépelés közbeni keresés engedélyezése - - - - Display Verses on Live Tool bar - Versszakok megjelenítése az egyenes adás eszközön - - - - ThemeManager - - - Import Theme - Téma importálása - - - - Create a new theme - Új téma létrehozása - - - - Delete Theme - Téma törlése - - - - Error - Hiba - - - - Make Global - Legyen globális - - - - Delete a theme - Egy téma törlése - - - - Edit a theme - Egy téma szerkesztése - - - - Edit Theme - Téma szerkesztése - - - - Export Theme - Téma exportálása - - - - Theme Exists - A téma már létezik - - - - Delete theme - Téma törlése - - - - Save Theme - (%s) - Téma mentése – (%s) - - - - default - alapértelmezett - - - - Select Theme Import File - Importálandó téma fájl kiválasztása - - - - New Theme - Új téma - - - - Import a theme - Egy téma importálása - - - - Export theme - Téma exportálása - - - - A theme with this name already exists, would you like to overwrite it? - Ilyen néven már létezik egy téma, szeretné felülírni? - - - - Export a theme - Egy téma exportálása - - - - You are unable to delete the default theme. - Az alapértelmezett témát nem lehet törölni. - - - - Theme %s is use in %s plugin - A %s beépülő használja ezt a témát: %s - - - - Theme %s is use by Service Manager - A szolgálatkezelő használja ezt a témát: %s - - - - You have not selected a theme. - Nincs kiválasztva egy téma sem. - - - - File is not a valid theme. - Nem érvényes témafájl. - - - - ThemesTab - - - Theme level - Téma szint - - - - Global theme - Globális téma - - - - Global level - Globális szint - - - - Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. - Minden dalra az adatbázisban tárolt téma alkalmazása. Ha egy dalhoz nincs saját téma beállítva, akkor a szolgálathoz beállított használata. Ha a szolgálathoz sincs téma beállítva, akkor a globális téma alkalmazása. - - - - Service level - Szolgálati szint - - - - Use the global theme, overriding any themes associated with either the service or the songs. - A globális téma alkalmazása, vagyis a szolgálathoz, ill. a dalokhoz beállított témák felülírása. - - - - Song level - Dal szint - - - - Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. - A szolgálathoz beállított téma alkalmazása, vagyis az egyes dalokhoz megadott témák felülírása. Ha a szolgálathoz nincs téma beállítva, akkor a globális téma alkalmazása. - - - - Themes - Témák - - - - TopicsForm - - - You need to type in a topic name! - Meg kell adni egy témakör nevet! - - - - Error - Hiba - - - - Topic Maintenance - Témakörök kezelése - - - - Topic name: - Témakör neve: - - - - Ui_SongImportWizard - - - 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: - - - - OpenLyrics - - - - - OpenSong - - - - - CCLI - - - - - CSV - - - - - Add Files... - Fájlok hozzáadása... - - - - Remove File(s) - Fájlok törlése - - - - Filename: - Fájlnév: - - - - Browse... - Tallózás... - - - - 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% - - - - - alertsPlugin - - - Show an alert message - Figyelmeztetést jelenít meg - - - - <b>Alerts Plugin</b><br>This plugin controls the displaying of alerts on the presentations screen - <b>Figyelmeztető bővítmény</b><br/>Ez a bővítmény kezeli a vetítőn megjelenő figyelmeztetéseket - - - - &Alert - &Figyelmeztetés - - - - export_menu - - - &Bible - &Biblia - - - - import_menu - - - &Bible - &Biblia - - - + &Song - &Dal + &Dal Import songs using the import wizard. - Dalok importálása az importálás tündérrel. + Dalok importálása az importálás tündérrel. - + Songs of Fellowship (temp menu item) - + Import songs from the VOLS1_2.RTF, sof3words.rtf and sof4words.rtf supplied with the music books - + Generic Document/Presentation Import (temp menu item) - + Import songs from Word/Writer/Powerpoint/Impress - - - self.ImportSongMenu - - Import Error - Importálás hiba + + OpenSong (temp menu item) + - + + Import songs from OpenSong files(either raw text or ZIPfiles) + + + + + OpenLP v2 Songs (temporary) + + + + + Import an OpenLP v2 song database + + + + + Import Error + Importálás hiba + + + Error importing Songs of Fellowship file. OpenOffice.org must be installed and you must be using an unedited copy of the RTF included with the Songs of Fellowship Music Editions - - - self.splash_screen - - Starting - Indítás + + Open OpenSong file + - - Splash Screen - Indítóképernyő + + Error importing OpenSong file + + + + + Select OpenLP database(s) to import... + + + + + Database(s) imported + + + + + Your OpenLP v2 song databases have been successfully imported + + + + + Error importing OpenLP v2 database(s) + + + + + <strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs. + - tools_menu + SongsPlugin.AuthorsForm - - &Song Usage - Dal&statisztika + + Author Maintenance + Szerzők kezelése - - &Delete recorded data - Mentett adatok &törlése + + Display name: + Megjelenített név: - - Delete song usage to specified date - Dalstatisztika törlése a megadott dátumig + + First name: + Keresztnév: - - &Extract recorded data - Mentett adatok &kibontása + + Last name: + Vezetéknév: - - Generate report on Song Usage - Jelentés készítése a dalstatisztikából + + Error + Hiba - - Song Usage Status - Dalstatisztika állapota + + You need to type in the first name of the author. + Meg kell adni a szerző vezetéknevét. - - Start/Stop live song usage recording - Élő dalstatisztika rögzítésének indítása/leállítása + + You need to type in the last name of the author. + Meg kell adni a szerző keresztnevét. + + + + You have not set a display name for the author, would you like me to combine the first and last names for you? + + + + + SongsPlugin.EditSongForm + + + Song Editor + Dalszerkesztő + + + + &Title: + + + + + &Lyrics: + + + + + &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 + + + + + Copyright Information + Szerzői jogi információ + + + + © + + + + + 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? + + + + + Alt&ernate title: + + + + + &Verse order: + + + + + CCLI number: + + + + + SongsPlugin.EditVerseForm + + + Edit Verse + Versszak szerkesztése + + + + &Verse type: + + + + + &Insert + + + + + SongsPlugin.ImportWizardForm + + + 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 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 CSV File Selected + Nincsenek kijelölt CSV fájlok + + + + You need to specify a CSV file to import from. + Meg kell adni legalább egy CSV fájlt az importáláshoz. + + + + 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: + + + + OpenLyrics + + + + + OpenSong + + + + + CCLI + + + + + CSV + + + + + Add Files... + Fájlok hozzáadása... + + + + Remove File(s) + Fájlok törlése + + + + Filename: + Fájlnév: + + + + Browse... + Tallózás... + + + + 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% + + + + + 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. + + + + + CCLI Licence: + CCLI licenc: + + + + Are you sure you want to delete the selected song? + + + + + Are you sure you want to delete the %d selected songs? + + + + + Delete Song(s)? + + + + + SongsPlugin.SongBookForm + + + Song Book Maintenance + + + + + &Name: + + + + + &Publisher: + + + + + Error + Hiba + + + + You need to type in a name for the book. + + + + + SongsPlugin.SongImport + + + copyright + + + + + © + + + + + SongsPlugin.SongMaintenanceForm + + + Song Maintenance + Dalok kezelése + + + + Authors + Szerzők + + + + Topics + Témakörök + + + + Song Books + + + + + &Add + + + + + &Edit + &Szerkesztés + + + + &Delete + &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! + + + + SongsPlugin.SongsTab + + + Songs + Dalok + + + + Songs Mode + Dalmód + + + + Enable search as you type + Gépelés közbeni keresés engedélyezése + + + + Display verses on live tool bar + + + + + SongsPlugin.TopicsForm + + + Topic Maintenance + Témakörök kezelése + + + + Topic name: + Témakör neve: + + + + Error + Hiba + + + + You need to type in a topic name! + Meg kell adni egy témakör nevet! + + + + SongsPlugin.VerseType + + + Verse + Versszak + + + + Chorus + Refrén + + + + Bridge + Mellékdal + + + + Pre-Chorus + Elő-refrén + + + + Intro + Bevezetés + + + + Ending + Befejezés + + + + Other + Egyéb diff --git a/resources/i18n/openlp_ko.ts b/resources/i18n/openlp_ko.ts index 34761a603..31143d07a 100644 --- a/resources/i18n/openlp_ko.ts +++ b/resources/i18n/openlp_ko.ts @@ -1,4960 +1,3893 @@ - - - - BibleMediaItem - - - Quick - 즉시 - - - Ui_customEditDialog - - - Delete selected slide - 선택된 슬라이드 삭제 - - - BiblesTab - - - ( and ) - - - - - RemoteTab - - - Remotes - - - - - Ui_EditSongDialog - - - &Remove - - - - - Ui_AmendThemeDialog - - - Shadow Size: - - - - - Ui_OpenSongExportDialog - - - Close - - - - - ThemeManager - - - Import Theme - - - - - Ui_AmendThemeDialog - - - Slide Transition - - - - - SongMaintenanceForm - - - Are you sure you want to delete the selected book? - - - - - ThemesTab - - - Theme level - - - - - BibleMediaItem - - - Bible - 성경 - - - ServiceManager - - - Save Changes to Service? - - - - - SongUsagePlugin - - - &Delete recorded data - - - - - Ui_OpenLPExportDialog - - - Song Title - - - - - Ui_customEditDialog - - - Edit selected slide - - - - - SongMediaItem - - - CCLI Licence: - - - - - Ui_BibleImportWizard - - - Bible Import Wizard - - - - - Ui_customEditDialog - - - Edit All - - - - - SongMaintenanceForm - - - Couldn't save your author. - - - - - Ui_ServiceNoteEdit - - - Service Item Notes - - - - - Ui_customEditDialog - - - Add new slide at bottom - - - - - Clear - - - - - ThemesTab - - - Global theme - - - - - PresentationPlugin - - - <b>Presentation Plugin</b> <br> Delivers 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. - - - - - SongUsagePlugin - - - Start/Stop live song usage recording - - - - - MainWindow - - - The Main Display has been blanked out - - - - - Ui_OpenSongExportDialog - - - Lyrics - - - - - Ui_AlertDialog - - - Display - - - - - SongMaintenanceForm - - - This author can't be deleted, they are currently assigned to at least one song. - - - - - Ui_customEditDialog - - - Delete - - - - - Ui_EditVerseDialog - - - Verse - - - - - Ui_OpenSongImportDialog - - - OpenSong Folder: - - - - - ThemeManager - - - Create a new theme - - - - - Ui_MainWindow - - - Open an existing service - - - - - SlideController - - - Move to previous - - - - - SongsPlugin - - - &Song - - - - - Ui_PluginViewDialog - - - Plugin Details - - - - - ImportWizardForm - - - You need to specify a file with books of the Bible to use in the import. - - - - - AlertsTab - - - Edit History: - - - - - Ui_MainWindow - - - &File - - - - - BiblesTab - - - verse per line - - - - - Ui_customEditDialog - - - Theme: - - - - - SongMaintenanceForm - - - Couldn't add your book. - - - - - Error - - - - - Ui_BibleImportWizard - - - Bible: - - - - - ThemeManager - - - Delete Theme - - - - - SplashScreen - - - Splash Screen - - - - - SongMediaItem - - - Song - - - - - Ui_OpenSongExportDialog - - - Song Title - - - - - Ui_AmendThemeDialog - - - Bottom - - - - - Ui_MainWindow - - - List the Plugins - - - - - SongMaintenanceForm - - - No author selected! - - - - - SongUsageDeleteForm - - - Delete Selected Song Usage Events? - - - - - SongUsagePlugin - - - <b>SongUsage Plugin</b><br>This plugin records the use of songs and when they have been used during a live service - - - - - Ui_customEditDialog - - - Move slide Up 1 - - - - - SongsPlugin - - - OpenSong - - - - - AlertsManager - - - Alert message created and delayed - - - - - Ui_EditSongDialog - - - Alternative Title: - - - - - ServiceManager - - - Open Service - - - - - BiblesTab - - - Display Style: - - - - - Ui_AmendThemeDialog - - - Image - - - - - EditSongForm - - - You need to enter a song title. - - - - - ThemeManager - - - Error - - - - - Ui_SongUsageDeleteDialog - - - Song Usage Delete - - - - - ImportWizardForm - - - Invalid Bible Location - - - - - BibleMediaItem - - - Book: - - - - - ThemeManager - - - Make Global - - - - - Ui_MainWindow - - - &Service Manager - - - - - Ui_OpenLPImportDialog - - - Author - - - - - Ui_AmendThemeDialog - - - Height: - - - - - ThemeManager - - - Delete a theme - - - - - Ui_BibleImportWizard - - - Crosswalk - - - - - SongBookForm - - - Error - - - - - Ui_AuthorsDialog - - - Last name: - - - - - ThemesTab - - - Use the global theme, overriding any themes associated with either the service or the songs. - - - - - Ui_customEditDialog - - - Title: - - - - - ImportWizardForm - - - You need to set a copyright for your Bible! Bibles in the Public Domain need to be marked as such. - - - - - SongMediaItem - - - Maintain the lists of authors, topics and books - - - - - Ui_AlertEditDialog - - - Save - - - - - EditCustomForm - - - You have unsaved data - - - - - Ui_AmendThemeDialog - - - Outline - - - - - BibleMediaItem - - - Text Search - - - - - Ui_BibleImportWizard - - - CSV - - - - - SongUsagePlugin - - - Delete song usage to specified date - - - - - Ui_SongUsageDetailDialog - - - Report Location - - - - - Ui_BibleImportWizard - - - OpenSong - - - - - Ui_MainWindow - - - Open Service - - - - - BibleMediaItem - - - Find: - - - - - ImageMediaItem - - - Select Image(s) - - - - - BibleMediaItem - - - Search Type: - - - - - Ui_MainWindow - - - Media Manager - - - - - Alt+F4 - - - - - MediaManagerItem - - - &Preview - - - - - GeneralTab - - - CCLI Details - - - - - BibleMediaItem - - - Bible not fully loaded - - - - - Ui_MainWindow - - - Toggle the visibility of the Preview Panel - - - - - ImportWizardForm - - - Bible Exists - - - - - Ui_MainWindow - - - &User Guide - - - - - AlertsTab - - - pt - - - - - Ui_AboutDialog - - - OpenLP <version><revision> - Open Source Lyrics Projection - -OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if OpenOffice.org, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. - -Find out more about OpenLP: http://openlp.org/ - -OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider contributing by using the button below. - - - - - Ui_MainWindow - - - Set the interface language to English - - - - - Ui_AmendThemeDialog - - - Main Font - - - - - ImportWizardForm - - - Empty Copyright - - - - - AuthorsForm - - - You need to type in the first name of the author. - - - - - SongsTab - - - Display Verses on Live Tool bar: - - - - - ServiceManager - - - Move to top - - - - - ImageMediaItem - - - Override background - - - - - Ui_SongMaintenanceDialog - - - Edit - - - - - Ui_OpenSongExportDialog - - - Select All - - - - - ThemesTab - - - 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. - - - - - PresentationMediaItem - - - Presentation - - - - - Ui_AmendThemeDialog - - - Solid Color - - - - - CustomTab - - - Custom - - - - - Ui_OpenLPImportDialog - - - Ready to import - - - - - MainWindow - - - OpenLP version %s has been updated to version %s - -You can obtain the latest version from http://openlp.org - - - - - Ui_BibleImportWizard - - - File Location: - - - - - SlideController - - - Go to Verse - - - - - SongMaintenanceForm - - - Couldn't add your topic. - - - - - Ui_MainWindow - - - &Import - - - - - Quit OpenLP - - - - - Ui_BibleImportWizard - - - This wizard will help you to import Bibles from a variety of formats. Click the next button below to start the process by selecting a format to import from. - - - - - Ui_OpenLPExportDialog - - - Title - - - - - ImportWizardForm - - - Empty Version Name - - - - - Ui_MainWindow - - - &Preview Panel - - - - - SlideController - - - Start continuous loop - - - - - GeneralTab - - - primary - - - - - Ui_EditSongDialog - - - Add a Theme - - - - - Ui_MainWindow - - - &New - - - - - Ui_customEditDialog - - - Credits: - - - - - Ui_EditSongDialog - - - R&emove - - - - - SlideController - - - Live - - - - - Ui_AmendThemeDialog - - - Font Main - - - - - BiblesTab - - - continuous - - - - - ThemeManager - - - File is not a valid theme. - - - - - GeneralTab - - - Application Startup - - - - - Ui_AmendThemeDialog - - - Use Default Location: - - - - - Ui_OpenSongImportDialog - - - Import - - - - - Ui_AmendThemeDialog - - - Other Options - - - - - Ui_EditSongDialog - - - Verse Order: - - - - - Ui_MainWindow - - - Default Theme: - - - - - Toggle Preview Panel - - - - - SongMediaItem - - - Lyrics - - - - - Ui_OpenLPImportDialog - - - Progress: - - - - - Ui_AmendThemeDialog - - - Shadow - - - - - GeneralTab - - - Select monitor for output display: - - - - - Ui_MainWindow - - - &Settings - - - - - EditSongForm - - - Invalid verse entry - values must be Numeric, I,B,C,T,P,E,O - - - - - Ui_AmendThemeDialog - - - Italics - - - - - ServiceManager - - - Create a new service - - - - - Ui_AmendThemeDialog - - - Background: - - - - - MediaManagerItem - - - No Items Selected - - - - - Ui_OpenLPImportDialog - - - openlp.org Song Importer - - - - - Ui_BibleImportWizard - - - Copyright: - - - - - ThemesTab - - - Service level - - - - - BiblesTab - - - [ and ] - - - - - Ui_BibleImportWizard - - - Verse Location: - - - - - AlertEditForm - - - Item selected to Edit - - - - - GeneralTab - - - Application Settings - - - - - ServiceManager - - - Save this service - - - - - ImportWizardForm - - - Open Books CSV file - - - - - GeneralTab - - - SongSelect Username: - - - - - Ui_AmendThemeDialog - - - X Position: - - - - - BibleMediaItem - - - No matching book could be found in this Bible. - - - - - Ui_BibleImportWizard - - - Server: - - - - - Ui_EditVerseDialog - - - Ending - - - - - CustomTab - - - Display Footer: - - - - - ImportWizardForm - - - Invalid OpenSong Bible - - - - - GeneralTab - - - CCLI Number: - - - - - Ui_AmendThemeDialog - - - Center - - - - - ServiceManager - - - Theme: - - - - - AlertEditForm - - - Please save or clear selected item - - - - - Ui_MainWindow - - - &Live - - - - - Ui_AmendThemeDialog - - - <Color2> - - - - - Ui_MainWindow - - - English - - - - - ImageMediaItem - - - You must select one or more items - - - - - Ui_AuthorsDialog - - - First name: - - - - - Ui_OpenLPExportDialog - - - Select openlp.org export filename: - - - - - Ui_BibleImportWizard - - - Permission: - - - - - Ui_OpenSongImportDialog - - - Close - - - - - Ui_SongUsageDetailDialog - - - Song Usage Extraction - - - - - Ui_AmendThemeDialog - - - Opaque - - - - - ImportWizardForm - - - Your Bible import failed. - - - - - SlideController - - - Start playing media - - - - - MediaManagerItem - - - Import a - - - - - Ui_AboutDialog - - - 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 - Christian "crichter" Richter - Maikel Stuivenberg - Carsten "catini" Tingaard - -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) - - - - - - SongMaintenanceForm - - - This book can't be deleted, it is currently assigned to at least one song. - - - - - Ui_AboutDialog - - - Close - - - - - TopicsForm - - - You need to type in a topic name! - - - - - Ui_OpenSongExportDialog - - - Song Export List - - - - - BibleMediaItem - - - Dual: - - - - - ImageTab - - - sec - - - - - ServiceManager - - - Delete From Service - - - - - GeneralTab - - - Automatically open the last service - - - - - Ui_OpenLPImportDialog - - - Song Import List - - - - - Ui_OpenSongExportDialog - - - Author - - - - - Ui_AmendThemeDialog - - - Outline Color: - - - - - Ui_BibleImportWizard - - - Select Import Source - - - - - Ui_MainWindow - - - F9 - - - - - F8 - - - - - ServiceManager - - - &Change Item Theme - - - - - Ui_SongMaintenanceDialog - - - Topics - - - - - Ui_OpenLPImportDialog - - - Import File Song List - - - - - Ui_customEditDialog - - - Edit Custom Slides - - - - - Ui_BibleImportWizard - - - Set up the Bible's license details. - - - - - Ui_EditVerseDialog - - - Number - - - - - Ui_AmendThemeDialog - - - Alignment - - - - - SongMaintenanceForm - - - Delete Book - - - - - ThemeManager - - - Edit a theme - - - - - Ui_BibleImportWizard - - - BibleGateway - - - - - GeneralTab - - - Preview Next Song from Service Manager - - - - - Ui_EditSongDialog - - - Title && Lyrics - - - - - SongMaintenanceForm - - - No book selected! - - - - - SlideController - - - Move to live - - - - - Ui_EditVerseDialog - - - Other - - - - - Ui_EditSongDialog - - - Theme - - - - - ServiceManager - - - Save Service - - - - - Ui_SongUsageDetailDialog - - - Select Date Range - - - - - Ui_MainWindow - - - Save the current service to disk - - - - - BibleMediaItem - - - Chapter: - - - - - Search - - - - - PresentationTab - - - Available Controllers - - - - - Ui_MainWindow - - - Add &Tool... - - - - - TopicsForm - - - Error - - - - - RemoteTab - - - Remotes Receiver Port - - - - - Ui_MainWindow - - - &View - - - - - Ui_AmendThemeDialog - - - Normal - - - - - Ui_OpenLPExportDialog - - - Close - - - - - Ui_BibleImportWizard - - - Username: - - - - - ThemeManager - - - Edit Theme - - - - - SlideController - - - Preview - - - - - Ui_AlertDialog - - - Alert Message - - - - - ImportWizardForm - - - Finished import. - - - - - GeneralTab - - - Show blank screen warning - - - - - ImportWizardForm - - - You need to specify a file of Bible verses to import. - - - - - AlertsTab - - - Location: - - - - - Ui_EditSongDialog - - - Authors, Topics && Book - - - - - EditSongForm - - - You need to enter some verses. - - - - - Ui_BibleImportWizard - - - Download Options - - - - - BiblePlugin - - - <strong>Bible Plugin</strong><br />This plugin allows bible verses from different sources to be displayed on the screen during the service. - - - - - Ui_EditSongDialog - - - Copyright Information - - - - - Ui_MainWindow - - - &Export - - - - - Ui_AmendThemeDialog - - - Bold - - - - - SongsPlugin - - - Export songs in OpenLP 2.0 format - - - - - MediaManagerItem - - - Load a new - - - - - AlertEditForm - - - Missing data - - - - - SongsPlugin - - - <b>Song Plugin</b> <br>This plugin allows Songs to be managed and displayed.<br> - - - - - Ui_AmendThemeDialog - - - Footer Font - - - - - EditSongForm - - - Invalid verse entry - vX - - - - - ServiceManager - - - OpenLP Service Files (*.osz) - - - - - MediaManagerItem - - - Delete the selected item - - - - - Ui_OpenLPExportDialog - - - Export - - - - - Ui_BibleImportWizard - - - Location: - - - - - BibleMediaItem - - - Keep - - - - - SongUsagePlugin - - - Generate report on Song Usage - - - - - Ui_EditSongDialog - - - Topic - - - - - Ui_MainWindow - - - &Open - - - - - AuthorsForm - - - You haven't set a display name for the author, would you like me to combine the first and last names for you? - - - - - AmendThemeForm - - - Slide Height is %s rows - - - - - Ui_EditSongDialog - - - Lyrics: - - - - - Ui_AboutDialog - - - Project Lead - Raoul "superfly" Snyman - -Developers - Tim "TRB143" Bentley - Jonathan "gushie" Corwin - Michael "cocooncrash" Gorven - Scott "sguerrieri" Guerrieri - Raoul "superfly" Snyman - Maikel Stuivenberg - Martin "mijiti" Thompson - Jon "Meths" Tibble - Carsten "catini" Tingaard - -Testers - Wesley "wrst" Stout - - - - - SongMediaItem - - - Titles - - - - - Ui_OpenLPExportDialog - - - Lyrics - - - - - PresentationMediaItem - - - Present using: - - - - - SongMediaItem - - - Clear - - - - - ServiceManager - - - &Live Verse - - - - - Ui_OpenSongImportDialog - - - Progress: - - - - - Ui_MainWindow - - - Toggle Theme Manager - - - - - Ui_AlertDialog - - - Alert Text: - - - - - Ui_EditSongDialog - - - Edit - - - - - AlertsTab - - - Font Color: - - - - - BiblesTab - - - Display Dual Bible Verses - - - - - CustomTab - - - Custom Display - - - - - Ui_OpenSongExportDialog - - - Title - - - - - Ui_AmendThemeDialog - - - <Color1> - - - - - Ui_EditSongDialog - - - Authors - - - - - ThemeManager - - - Export Theme - - - - - ImageMediaItem - - - No items selected... - - - - - Ui_SongBookDialog - - - Name: - - - - - Ui_AuthorsDialog - - - Author Maintenance - - - - - Ui_AmendThemeDialog - - - Font Footer - - - - - BiblesTab - - - Verse Display - - - - - Ui_MainWindow - - - &Options - - - - - BibleMediaItem - - - Results: - - - - - Ui_OpenLPExportDialog - - - Full Song List - - - - - ServiceManager - - - Move to &top - - - - - SlideController - - - Move to last - - - - - Ui_OpenLPExportDialog - - - Progress: - - - - - Ui_SongMaintenanceDialog - - - Add - - - - - SongMaintenanceForm - - - Are you sure you want to delete the selected author? - - - - - SongUsagePlugin - - - Song Usage Status - - - - - BibleMediaItem - - - Verse Search - - - - - AboutForm - - - build - - - - - Ui_SongBookDialog - - - Edit Book - - - - - EditSongForm - - - Save && Preview - - - - - Ui_SongBookDialog - - - Publisher: - - - - - Ui_AmendThemeDialog - - - Font Weight: - - - - - Ui_BibleImportWizard - - - Bible Filename: - - - - - Ui_AmendThemeDialog - - - Transparent - - - - - SongMediaItem - - - Search - - - - - Ui_BibleImportWizard - - - Format: - - - - - Ui_AmendThemeDialog - - - Background - - - - - Ui_BibleImportWizard - - - Importing - - - - - Ui_customEditDialog - - - Edit all slides - - - - - SongsTab - - - Enable search as you type: - - - - - Ui_MainWindow - - - Ctrl+S - - - - - SongMediaItem - - - Authors - - - - - Ui_PluginViewDialog - - - Active - - - - - SongMaintenanceForm - - - Couldn't add your author. - - - - - Ui_MainWindow - - - Ctrl+O - - - - - Ctrl+N - - - - - Ui_AlertEditDialog - - - Edit - - - - - Ui_EditSongDialog - - - Song Editor - - - - - AlertsTab - - - Font - - - - - SlideController - - - Edit and re-preview Song - - - - - Delay between slides in seconds - - - - - MediaManagerItem - - - &Edit - - - - - Ui_AmendThemeDialog - - - Vertical - - - - - Width: - - - - - ThemesTab - - - Global level - - - - - ThemeManager - - - You are unable to delete the default theme. - - - - - BibleMediaItem - - - Version: - - - - - Ui_AboutDialog - - - OpenLP <version> build <revision> - Open Source Lyrics Projection - -OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if OpenOffice.org, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. - -Find out more about OpenLP: http://openlp.org/ - -OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider contributing by using the button below. - - - - - SongsPlugin - - - OpenLP 2.0 - - - - - ServiceManager - - - New Service - - - - - Ui_TopicsDialog - - - Topic name: - - - - - Ui_BibleImportWizard - - - License Details - - - - - Ui_AboutDialog - - - License - - - - - OpenSongBible - - - Importing - - - - - Ui_AmendThemeDialog - - - Middle - - - - - Ui_customEditDialog - - - Save - - - - - BibleMediaItem - - - From: - - - - - MediaManagerItem - - - You must select one or more items - - - - - Ui_AmendThemeDialog - - - Shadow Color: - - - - - ServiceManager - - - &Notes - - - - - Ui_MainWindow + + + + AlertsPlugin - - E&xit - + + &Alert + - - - Ui_OpenLPImportDialog - - Close - + + Show an alert message. + - - - MainWindow - - OpenLP Version Updated - + + <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of nursery alerts on the display screen + - - - Ui_customEditDialog + + + AlertsPlugin.AlertForm - - Replace edited slide - + + Alert Message + - - - EditCustomForm - - You need to enter a title - + + Alert &text: + - - - ThemeManager - - Theme Exists - + + &Parameter(s): + - - - Ui_MainWindow - - &Help - + + &New + - - - Ui_EditVerseDialog - - Bridge - + + &Save + - - - Ui_OpenSongExportDialog - - OpenSong Song Exporter - + + &Delete + - - - Ui_AmendThemeDialog - - Vertical Align: - + + Displ&ay + - - - Ui_EditVerseDialog - - Pre-Chorus - + + Display && Cl&ose + - - - Ui_AmendThemeDialog - - Top - + + &Close + - - Theme Maintenance - + + New Alert + - - - MainWindow - - 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 - + + You haven't specified any text for your alert. Please type in some text before clicking New. + - - - Ui_MainWindow + + + AlertsPlugin.AlertsManager - - Toggle Service Manager - + + Alert message created and displayed. + - - - Ui_EditSongDialog + + + AlertsPlugin.AlertsTab - - Delete - + + Alerts + - - - MediaManagerItem - - &Add to Service - + + Font + - - - AmendThemeForm - - First Color: - + + Font name: + - - - ThemesTab - - Song level - + + Font color: + - - - alertsPlugin - - Show an alert message - + + Background color: + - - - Ui_MainWindow - - Ctrl+F1 - + + Font size: + - - - SongMaintenanceForm - - Couldn't save your topic. - + + pt + - - - Ui_MainWindow - - Save the current service under a new name - + + Alert timeout: + - - - Ui_OpenLPExportDialog - - Remove Selected - + + s + - - - ThemeManager - - Delete theme - + + Location: + - - - ImageTab - - Image Settings - + + Preview + - - - Ui_OpenSongImportDialog - - OpenSong Song Importer - + + OpenLP 2.0 + - - - SongUsagePlugin - - &Extract recorded data - + + Top + - - - ImportWizardForm - - Open Books CSV File - + + Middle + - - - AlertsTab - - Font Name: - + + Bottom + - - - Ui_MainWindow + + + BiblesPlugin - - &Web Site - + + &Bible + - - - MediaManagerItem - - Send the selected item live - + + <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display bible verses from different sources during the service. + - - - Ui_MainWindow + + + BiblesPlugin.BibleDB - - M&ode - + + Book not found + - - Translate the interface to your language - + + 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. + + + + BiblesPlugin.BiblesTab - - Service Manager - + + Bibles + - - - CustomMediaItem - - Custom - + + Verse Display + - - - Ui_BibleImportWizard - - OSIS - + + Only show new chapter numbers + - - - SongsPlugin - - openlp.org 1.0 - + + Layout style: + - - - Ui_MainWindow - - &Theme - + + Display style: + - - - Ui_EditVerseDialog - - Edit Verse - + + Bible theme: + - - - Ui_MainWindow - - &Language - + + Verse Per Slide + - - - ServiceManager - - Move to end - + + Verse Per Line + - - Your service is unsaved, do you want to save those changes before creating a new one ? - + + Continuous + - - - Ui_OpenSongExportDialog - - Remove Selected - + + No Brackets + - - - SongMediaItem - - Search: - + + ( And ) + - - - MainWindow - - Save Changes to Service? - + + { And } + - - Your service has changed, do you want to save those changes? - + + [ And ] + - - - ServiceManager - - &Delete From Service - + + Note: +Changes do not affect verses already in the service. + - - - Ui_EditSongDialog - - &Add to Song - + + Display dual Bible verses + - - - Ui_MainWindow + + + BiblesPlugin.ImportWizardForm - - &About - + + Bible Import Wizard + - - - ImportWizardForm - - You need to specify a version name for your Bible. - + + Welcome to the Bible Import Wizard + - - - BiblesTab - - Only show new chapter numbers - + + This wizard will help you to import Bibles from a variety of formats. Click the next button below to start the process by selecting a format to import from. + - - - Ui_AlertEditDialog - - Delete - + + Select Import Source + - - - EditCustomForm - - Error - + + Select the import format, and where to import from. + - - - ThemesTab - - 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. - + + Format: + - - - AlertEditForm - - Item selected to Add - + + OSIS + - - - Ui_AmendThemeDialog - - Right - + + CSV + - - - ThemeManager - - Save Theme - (%s) - + + OpenSong + - - - MediaManagerItem - - Add the selected item(s) to the service - + + Web Download + - - - AuthorsForm - - Error - + + File location: + - - - Ui_AmendThemeDialog - - Font Color: - + + Books location: + - - - Ui_OpenLPImportDialog - - Select openlp.org songfile to import: - + + Verse location: + - - - Ui_SettingsDialog - - Settings - + + Bible filename: + - - - BiblesTab - - Layout Style: - + + Location: + - - - MediaManagerItem - - Edit the selected - + + Crosswalk + - - - SlideController - - Move to next - + + BibleGateway + - - - Ui_MainWindow - - &Plugin List - + + Bible: + - - - BiblePlugin - - &Bible - + + Download Options + - - - Ui_BibleImportWizard - - Web Download - + + Server: + - - - Ui_AmendThemeDialog - - Horizontal - + + Username: + - - - ImportWizardForm - - Open OSIS file - + + Password: + - - - Ui_AmendThemeDialog - - Circular - + + Proxy Server (Optional) + - - - PresentationMediaItem - - Automatic - + + License Details + - - - SongMaintenanceForm - - Couldn't save your book. - + + Set up the Bible's license details. + - - - Ui_AmendThemeDialog - - pt - + + Version name: + - - - SongMaintenanceForm - - Delete Topic - + + Copyright: + - - - Ui_OpenLPImportDialog - - Lyrics - + + Permission: + - - - BiblesTab - - No brackets - + + Importing + - - - Ui_AlertEditDialog - - Maintain Alerts - + + Please wait while your Bible is imported. + - - - Ui_AmendThemeDialog - - px - + + Ready. + - - - ServiceManager - - Select a theme for the service - + + Invalid Bible Location + - - - ThemesTab - - Themes - + + You need to specify a file to import your Bible from. + - - - Ui_PluginViewDialog - - Status: - + + Invalid Books File + - - - Ui_EditSongDialog - - CCLI Number: - + + You need to specify a file with books of the Bible to use in the import. + - - - ImportWizardForm - - This Bible already exists! Please import a different Bible or first delete the existing one. - + + Invalid Verse File + - - - Ui_MainWindow - - &Translate - + + You need to specify a file of Bible verses to import. + - - - BiblesTab - - Bibles - + + Invalid OpenSong Bible + - - - Ui_SongMaintenanceDialog - - Authors - + + You need to specify an OpenSong Bible file to import. + - - - SongUsageDetailForm - - Output File Location - + + Empty Version Name + - - - BiblesTab - - { and } - + + You need to specify a version name for your Bible. + - - - GeneralTab - - Prompt to save Service before starting New - + + Empty Copyright + - - - ImportWizardForm - - Starting import... - + + You need to set a copyright for your Bible! Bibles in the Public Domain need to be marked as such. + - - - BiblesTab - - Note: -Changes don't affect verses already in the service - + + Bible Exists + - - - Ui_EditVerseDialog - - Intro - + + This Bible already exists! Please import a different Bible or first delete the existing one. + - - - ServiceManager - - Move up order - + + Open OSIS File + - - - PresentationTab - - available - + + Open Books CSV File + - - - ThemeManager - - default - + + Open Verses CSV File + - - - SongMaintenanceForm - - Delete Author - + + Open OpenSong Bible + - - - Ui_AmendThemeDialog - - Display Location - + + Starting import... + - - - Ui_PluginViewDialog - - Version: - + + Finished import. + - - - Ui_AlertEditDialog - - Add - + + Your Bible import failed. + - - - GeneralTab + + + BiblesPlugin.MediaItem - - General - + + Bible + 성경 - - - Ui_AmendThemeDialog - - Y Position: - + + Quick + 즉시 - - - ServiceManager - - Move down order - + + Advanced + - - - BiblesTab - - verse per slide - + + Version: + - - - Ui_AmendThemeDialog - - Show Shadow: - + + Dual: + - - - AlertsTab - - Preview - + + Search type: + - - - alertsPlugin - - <b>Alerts Plugin</b><br>This plugin controls the displaying of alerts on the presentations screen - + + Find: + - - - GeneralTab - - Show the splash screen - + + Search + - - - Ui_MainWindow - - New Service - + + Results: + - - - SlideController - - Move to first - + + Book: + - - - Ui_MainWindow - - &Online Help - + + Chapter: + - - - SlideController - - Blank Screen - + + Verse: + - - - Ui_MainWindow - - Save Service - + + From: + - - Save &As... - + + To: + - - Toggle the visibility of the Media Manager - + + Verse Search + - - - BibleMediaItem - - No Book Found - + + Text Search + - - - Ui_EditSongDialog - - Add - + + Clear + - - - alertsPlugin - - &Alert - + + Keep + - - - BibleMediaItem - - Advanced - + + No Book Found + - - - ImageMediaItem - - Image(s) - + + No matching book could be found in this Bible. + - - - Ui_MainWindow - - F11 - + + etc + - - F10 - + + Bible not fully loaded. + + + + BiblesPlugin.Opensong - - F12 - + + Importing + - - + + CustomPlugin - - <b>Custom Plugin</b><br>This plugin allows slides to be displayed on the screen in the same way songs are. This plugin provides greater freedom over the songs plugin.<br> - + + <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. + - - - Ui_MainWindow + + + CustomPlugin.CustomTab - - Alt+F7 - + + Custom + - - Add an application to the list of tools - + + Custom Display + - - - MediaPlugin - - <b>Media Plugin</b><br>This plugin allows the playing of audio and video media - + + Display footer + - - - ServiceManager + + + CustomPlugin.EditCustomForm - - Move &down - + + Edit Custom Slides + - - - BiblesTab - - Bible Theme: - + + Move slide up once position. + - - - SongMediaItem - - Type: - + + Move slide down one position. + - - - SongsPlugin - - Export songs in openlp.org 1.0 format - + + &Title: + - - - Ui_MainWindow - - Theme Manager - + + Add New + - - - AlertsTab - - Alerts - + + Add a new slide at bottom. + - - - Ui_customEditDialog - - Move slide down 1 - + + Edit + - - - Ui_AmendThemeDialog - - Font: - + + Edit the selected slide. + - - - ServiceManager - - Load an existing service - + + Edit All + - - - Ui_MainWindow - - Toggle the visibility of the Theme Manager - + + Edit all the slides at once. + - - - PresentationTab - - Presentations - + + Save + - - - SplashScreen - - Starting - + + Save the slide currently being edited. + - - - ImageTab - - Slide Loop Delay: - + + Delete + - - - SlideController - - Verse - + + Delete the selected slide. + - - - AlertsTab - - Alert timeout: - + + Clear + - - - Ui_MainWindow - - &Preview Pane - + + Clear edit area + - - - MediaManagerItem - - Add a new - + + Split Slide + - - - ThemeManager - - Select Theme Import File - + + Split a slide into two by inserting a slide splitter. + - - New Theme - + + The&me: + - - - MediaMediaItem - - Media - + + &Credits: + - - - Ui_AmendThemeDialog - - Preview - + + Save && Preview + - - Outline Size: - + + Error + - - - Ui_OpenSongExportDialog - - Progress: - + + You need to type in a title. + - - - AmendThemeForm - - Second Color: - + + You need to add at least one slide + - - - Ui_EditSongDialog - - Theme, Copyright Info && Comments - + + You have one or more unsaved slides, please either save your slide(s) or clear your changes. + - - - Ui_AboutDialog + + + CustomPlugin.MediaItem - - Credits - + + Custom + - - - BibleMediaItem - - To: - + + You haven't selected an item to edit. + - - - Ui_EditSongDialog - - Song Book - + + You haven't selected an item to delete. + - - - Ui_OpenLPExportDialog - - - Author - - - - - Ui_AmendThemeDialog - - - Wrap Indentation - - - - - ThemeManager - - - Import a theme - - - - - ImageMediaItem - - - Image - - - - - BibleMediaItem - - - Clear - - - - - Ui_MainWindow - - - Save Service As - - - - - Ui_AlertDialog - - - Cancel - - - - - Ui_OpenLPImportDialog - - - Import - - - - - Ui_EditVerseDialog - - - Chorus - - - - - Ui_EditSongDialog - - - Edit All - - - - - AuthorsForm - - - You need to type in the last name of the author. - - - - - SongsTab - - - Songs Mode - - - - - Ui_AmendThemeDialog - - - Left - - - - - RemotesPlugin - - - <b>Remote Plugin</b><br>This plugin provides the ability to send messages to a running version of openlp on a different computer.<br>The Primary use for this would be to send alerts from a creche - - - - - ImageTab - - - Images - - - - - BibleMediaItem - - - Verse: - - - - - Ui_OpenLPExportDialog - - - openlp.org Song Exporter - - - - - Song Export List - - - - - ThemeManager - - - Export theme - - - - - Ui_SongMaintenanceDialog - - - Delete - - - - - Ui_AmendThemeDialog - - - Theme Name: - - - - - Ui_AboutDialog - - - About OpenLP - - - - - Ui_MainWindow - - - Toggle the visibility of the Service Manager - - - - - PresentationMediaItem - - - A presentation with that filename already exists. - - - - - ImageMediaItem - - - Allow the background of live slide to be overridden - - - - - SongUsageDeleteForm - - - Are you sure you want to delete selected Song Usage data? - - - - - AlertsTab - - - openlp.org - - - - - ImportWizardForm - - - Invalid Books File - - - - - Ui_OpenLPImportDialog - - - Song Title - - - - - MediaManagerItem - - - &Show Live - - - - - AlertsTab - - - Keep History: - - - - - Ui_AmendThemeDialog - - - Image: - - - - - ImportWizardForm - - - Open Verses CSV file - - - - - Ui_customEditDialog - - - Set Theme for Slides - - - - - Ui_MainWindow - - - More information about OpenLP - - - - - AlertsTab - - - Background Color: - - - - - SongMaintenanceForm - - - No topic selected! - - - - - Ui_MainWindow - - - &Media Manager - - - - - &Tools - - - - - AmendThemeForm - - - Background Color: - - - - - Ui_EditSongDialog - - - A&dd to Song - - - - - Title: - - - - - GeneralTab - - - Screen - - - - - SongMaintenanceForm - - - This topic can't be deleted, it is currently assigned to at least one song. - - - - - AlertsTab - - - s - - - - - Ui_AlertEditDialog - - - Clear - - - - - Ui_BibleImportWizard - - - Please wait while your Bible is imported. - - - - - MediaManagerItem - - - No items selected... - - - - - Ui_OpenLPImportDialog - - - Select All - - - - - Ui_BibleImportWizard - - - Select the import format, and where to import from. - - - - - Ui_OpenLPImportDialog - - - Title - - - - - Ui_OpenSongExportDialog - - - Select OpenSong song folder: - - - - - Ui_MainWindow - - - Toggle Media Manager - - - - - SongUsagePlugin - - - &Song Usage - - - - - GeneralTab - - - Monitors - - - - - EditCustomForm - - - You need to enter a slide - - - - - ThemeManager - - - You have not selected a theme. - - - - - Ui_EditVerseDialog - - - Verse Type - - - - - ImportWizardForm - - - You need to specify a file to import your Bible from. - - - - - Ui_EditSongDialog - - - Comments - - - - - AlertsTab - - - Bottom - - - - - Ui_MainWindow - - - Create a new Service - - - - - AlertsTab - - - Top - - - - - ServiceManager - - - &Preview Verse - - - - - Ui_PluginViewDialog - - - TextLabel - - - - - AlertsTab - - - Font Size: - - - - - Ui_PluginViewDialog - - - About: - - - - - Inactive - - - - - Ui_OpenSongExportDialog - - - Ready to export - - - - - Export - - - - - Ui_PluginViewDialog - - - Plugin List - - - - - Ui_AmendThemeDialog - - - Transition Active: - - - - - Ui_BibleImportWizard - - - Proxy Server (Optional) - - - - - Ui_EditSongDialog - - - &Manage Authors, Topics, Books - - - - - Ui_OpenLPExportDialog - - - Ready to export - - - - - ImageMediaItem - - - Images (*.jpg *.jpeg *.gif *.png *.bmp);; All files (*) - - - - - EditCustomForm - - - Save && Preview - - - - - Ui_OpenLPExportDialog - - - Select All - - - - - Ui_SongUsageDetailDialog - - - to - - - - - Ui_AmendThemeDialog - - - Size: - - - - - MainWindow - - - OpenLP Main Display Blanked - - - - - Ui_OpenLPImportDialog - - - Remove Selected - - - - - ServiceManager - - - Move &up - - - - - ImportWizardForm - - - You need to specify an OpenSong Bible file to import. - - - - - Ui_BibleImportWizard - - - Ready. - - - - - PresentationMediaItem - - - File exists - - - - - Ui_OpenSongImportDialog - - - Ready to import - - - - - SlideController - - - Stop continuous loop - - - - - s - - - - + + ImagePlugin - - <b>Image Plugin</b><br>Allows images of all types to be displayed. If a number of images are selected together and presented on the live controller it is possible to turn them into a timed loop.<br<br>From the plugin if the <i>Override background</i> is chosen and an image is selected any songs which are rendered will use the selected image from the background instead of the one provied by the theme.<br> - + + <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. + - - - SongMediaItem + + + ImagePlugin.ImageTab - - Song Maintenance - - - - - Ui_customEditDialog - - - Edit - - - - - Ui_AmendThemeDialog - - - Gradient : - - - - - ImportWizardForm - - - Invalid Verse File - - - - - EditSongForm - - - Error - - - - - Ui_customEditDialog - - - Add New - - - - - Ui_AuthorsDialog - - - Display name: - - - - - SongMaintenanceForm - - - Are you sure you want to delete the selected topic? - - - - - Ui_AmendThemeDialog - - - Bold/Italics - - - - - Ui_SongMaintenanceDialog - - - Song Maintenance - - - - - ImportWizardForm - - - Open Verses CSV File - + + Images + - - Open OSIS File - - - - - Ui_BibleImportWizard - - - Welcome to the Bible Import Wizard - - - - - SongsTab - - - Songs - - - - - Ui_BibleImportWizard - - - Password: - - - - - Ui_MainWindow - - - &Theme Manager - - - - - MediaManagerItem - - - Preview the selected item - - - - - Ui_BibleImportWizard - - - Version Name: - - - - - Ui_AboutDialog - - - About - - - - - MediaMediaItem - - - Select Media - - - - - Ui_AmendThemeDialog - - - Horizontal Align: - - - - - ServiceManager - - - &Edit Item - - - - - Ui_AmendThemeDialog - - - Background Type: - - - - - Ui_MainWindow - - - &Save - + + Image Settings + - - OpenLP 2.0 - - - - - ThemeManager - - - A theme with this name already exists, would you like to overwrite it? - - - - - PresentationMediaItem - - - Select Presentation(s) - - - - - ThemeManager - - - Export a theme - - - - - AmendThemeForm - - - Open file - - - - - Ui_TopicsDialog - - - Topic Maintenance - - - - - Ui_customEditDialog - - - Clear edit area - - - - - Ui_AmendThemeDialog - - - Show Outline: - + + Slide loop delay: + - - Gradient - + + sec + - - - SongBookForm + + + ImagePlugin.MediaItem - - You need to type in a book name! - + + Image + - - - ImportWizardForm - - Open OpenSong Bible - + + Select Image(s) + - - - Ui_MainWindow - - Look && &Feel - + + All Files + - - - MediaManagerItem - - You must select one or more items. - + + Replace Live Background + - - - Ui_SongMaintenanceDialog - - Books/Hymnals - + + Replace Background + - - - Ui_AboutDialog - - Contribute - + + You must select an image to delete. + - - - ServiceManager - - Move to &bottom - + + Image(s) + - - - Ui_BibleImportWizard - - Books Location: - + + You must select an image to replace the background with. + - - - Ui_OpenSongExportDialog - - Full Song List - + + You must select a media file to replace the background with. + - - - GeneralTab + + + MediaPlugin - - SongSelect Password: - + + <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. + - + + + MediaPlugin.MediaItem + + + Media + + + + + Select Media + + + + + Replace Live Background + + + + + Replace Background + + + + + You must select a media file to delete. + + + + + OpenLP + + + Image Files + + + + + OpenLP.AboutForm + + + About OpenLP + + + + + OpenLP <version><revision> - Open Source Lyrics Projection +OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if OpenOffice.org, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. + +Find out more about OpenLP: http://openlp.org/ + +OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider contributing by using the button below. + + + + + About + + + + + 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 + Christian "crichter" Richter + Maikel Stuivenberg + Carsten "catini" Tingaard + +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) + + + + + + Credits + + + + + Copyright © 2004-2010 Raoul Snyman +Portions copyright © 2004-2010 Tim Bentley, Jonathan Corwin, Michael Gorven, Scott Guerrieri, Christian Richter, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Carsten Tinggaard + +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 + + + + + Contribute + + + + + Close + + + + + build %s + + + + + OpenLP.AdvancedTab + + + Advanced + + + + + UI Settings + + + + + Number of recent files to display: + + + + + Remember active media manager tab on startup + + + + + Double-click to send items straight to live (requires restart) + + + + + 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. + + + + + OpenLP.GeneralTab + + + General + + + + + Monitors + + + + + Select monitor for output display: + + + + + Display if a single screen + + + + + Application Startup + + + + + Show blank screen warning + + + + + Automatically open the last service + + + + + Show the splash screen + + + + + Application Settings + + + + + Prompt to save Service before starting New + + + + + Preview Next Song from Service Manager + + + + + CCLI Details + + + + + CCLI number: + + + + + SongSelect username: + + + + + SongSelect password: + + + + + Display Position + + + + + X + + + + + Y + + + + + Height + + + + + Width + + + + + Override display position + + + + + Screen + + + + + primary + + + + + OpenLP.LanguageManager + + + Language + + + + + Please restart OpenLP to use your new language setting. + + + + + OpenLP.MainWindow + + + OpenLP 2.0 + + + + + English + + + + + &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>. + + + + + 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 + + + + + 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. + + + + + OpenLP.PluginForm + + + Plugin List + + + + + Plugin Details + + + + + Version: + + + + + TextLabel + + + + + About: + + + + + Status: + + + + + Active + + + + + Inactive + + + + + %s (Inactive) + + + + + %s (Active) + + + + + %s (Disabled) + + + + + OpenLP.ServiceItemEditForm + + + Reorder Service Item + + + + + Up + + + + + Delete + + + + + Down + + + + + OpenLP.ServiceManager + + + New Service + + + + + Create a new service + + + + + Open Service + + + + + Load an existing service + + + + + Save Service + + + + + Save this service + + + + + Theme: + + + + + Select a theme for the service + + + + + Move to &top + + + + + Move item to the top of the service. + + + + + Move &up + + + + + Move item up one position in the service. + + + + + Move &down + + + + + Move item down one position in the service. + + + + + Move to &bottom + + + + + Move item to the end of the service. + + + + + &Delete From Service + + + + + Delete the selected item from the service. + + + + + &Add New Item + + + + + &Add to Selected Item + + + + + &Edit Item + + + + + &Reorder Item + + + + + &Notes + + + + + &Preview Verse + + + + + &Live Verse + + + + + &Change Item Theme + + + + + 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 + + + + + OpenLP.ServiceNoteForm + + + Service Item Notes + + + + + OpenLP.SettingsForm + + + Configure OpenLP + + + + + 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 + + + + + Go to Verse + + + + + OpenLP.ThemeManager + + + New Theme + + + + + Create a new theme. + + + + + Edit Theme + + + + + Edit a theme. + + + + + Delete Theme + + + + + Delete a theme. + + + + + Import Theme + + + + + Import a theme. + + + + + Export Theme + + + + + Export a theme. + + + + + &Edit Theme + + + + + &Delete Theme + + + + + Set As &Global Default + + + + + E&xport Theme + + + + + %s (default) + + + + + You must select a theme to edit. + + + + + You must select a theme to delete. + + + + + Delete Confirmation + + + + + Delete theme? + + + + + Error + + + + + You are unable to delete the default theme. + + + + + Theme %s is use in %s plugin. + + + + + Theme %s is use by the service manager. + + + + + You have not selected a theme. + + + + + Save Theme - (%s) + + + + + Theme Exported + + + + + Your theme has been successfully exported. + + + + + Theme Export Failed + + + + + Your theme could not be exported due to an error. + + + + + Select Theme Import File + + + + + Theme (*.*) + + + + + 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? + + + + + OpenLP.ThemesTab + + + Themes + + + + + Global Theme + + + + + Theme Level + + + + + S&ong Level + + + + + Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. + + + + + &Service Level + + + + + Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. + + + + + &Global Level + + + + + Use the global theme, overriding any themes associated with either the service or the songs. + + + + + 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. + + + + + 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. + + + + + PresentationPlugin.PresentationTab + + + Presentations + + + + + Available Controllers + + + + + Advanced + + + + + 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. + + + + + RemotePlugin.RemoteTab + + + Remotes + + + + + Serve on IP address: + + + + + Port number: + + + + + Server Settings + + + + + SongUsagePlugin + + + &Song Usage Tracking + + + + + &Delete Tracking Data + + + + + Delete song usage data up to a specified date. + + + + + &Extract Tracking Data + + + + + Generate a report on song usage. + + + + + Toggle Tracking + + + + + Toggle the tracking of song usage. + + + + + <strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services. + + + + + SongUsagePlugin.SongUsageDeleteForm + + + Delete Selected Song Usage Events? + + + + + Are you sure you want to delete selected Song Usage data? + + + + + Delete Song Usage Data + + + + + SongUsagePlugin.SongUsageDetailForm + + + Output File Location + + + + + Song Usage Extraction + + + + + Select Date Range + + + + + to + + + + + Report Location + + + + + SongsPlugin + + + &Song + + + + + Import songs using the import wizard. + + + + + Songs of Fellowship (temp menu item) + + + + + Import songs from the VOLS1_2.RTF, sof3words.rtf and sof4words.rtf supplied with the music books + + + + + Generic Document/Presentation Import (temp menu item) + + + + + Import songs from Word/Writer/Powerpoint/Impress + + + + + OpenSong (temp menu item) + + + + + Import songs from OpenSong files(either raw text or ZIPfiles) + + + + + OpenLP v2 Songs (temporary) + + + + + Import an OpenLP v2 song database + + + + + Open Songs of Fellowship file + + + + + Import Error + + + + + Error importing Songs of Fellowship file. +OpenOffice.org must be installed and you must be using an unedited copy of the RTF included with the Songs of Fellowship Music Editions + + + + + Open OpenSong file + + + + + Error importing OpenSong file + + + + + Select OpenLP database(s) to import... + + + + + Database(s) imported + + + + + Your OpenLP v2 song databases have been successfully imported + + + + + Error importing OpenLP v2 database(s) + + + + + Open documents or presentations + + + + + <strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs. + + + + + SongsPlugin.AuthorsForm + + + Author Maintenance + + + + + Display name: + + + + + First name: + + + + + Last name: + + + + + Error + + + + + You need to type in the first name of the author. + + + + + You need to type in the last name of the author. + + + + + You have not set a display name for the author, would you like me to combine the first and last names for you? + + + + + SongsPlugin.EditSongForm + + + Song Editor + + + + + &Title: + + + + + &Lyrics: + + + + + &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 + + + + + Copyright Information + + + + + © + + + + + 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? + + + + + Alt&ernate title: + + + + + &Verse order: + + + + + CCLI number: + + + + + SongsPlugin.EditVerseForm + + + Edit Verse + + + + + &Verse type: + + + + + &Insert + + + + + SongsPlugin.ImportWizardForm + + + No OpenLyrics Files Selected + + + + + You need to add at least one OpenLyrics song file to import from. + + + + + No OpenSong Files Selected + + + + + You need to add at least one OpenSong song file to import from. + + + + + No CCLI Files Selected + + + + + You need to add at least one CCLI file to import from. + + + + + No CSV File Selected + + + + + You need to specify a CSV file to import from. + + + + + 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: + + + + + OpenLyrics + + + + + OpenSong + + + + + CCLI + + + + + CSV + + + + + Add Files... + + + + + Remove File(s) + + + + + Filename: + + + + + Browse... + + + + + Importing + + + + + Please wait while your songs are imported. + + + + + Ready. + + + + + %p% + + + + + 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. + + + + + CCLI Licence: + + + + + Are you sure you want to delete the selected song? + + + + + Are you sure you want to delete the %d selected songs? + + + + + Delete Song(s)? + + + + + SongsPlugin.SongBookForm + + + Song Book Maintenance + + + + + &Name: + + + + + &Publisher: + + + + + Error + + + + + You need to type in a name for the book. + + + + + SongsPlugin.SongImport + + + copyright + + + + + © + + + + + SongsPlugin.SongMaintenanceForm + + + Song Maintenance + + + + + Authors + + + + + Topics + + + + + Song Books + + + + + &Add + + + + + &Edit + + + + + &Delete + + + + + 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! + + + + + SongsPlugin.SongsTab + + + Songs + + + + + Songs Mode + + + + + Enable search as you type + + + + + Display verses on live tool bar + + + + + SongsPlugin.TopicsForm + + + Topic Maintenance + + + + + Topic name: + + + + + Error + + + + + You need to type in a topic name! + + + + + SongsPlugin.VerseType + + + Verse + + + + + Chorus + + + + + Bridge + + + + + Pre-Chorus + + + + + Intro + + + + + Ending + + + + + Other + + + diff --git a/resources/i18n/openlp_nb.ts b/resources/i18n/openlp_nb.ts index bbf2ecaef..d3f213fab 100644 --- a/resources/i18n/openlp_nb.ts +++ b/resources/i18n/openlp_nb.ts @@ -1,4491 +1,3893 @@ - - - - BibleMediaItem + + + + AlertsPlugin - - Quick - Rask - - - Ui_customEditDialog - - - Delete selected slide - Slett valgt slide - - - BiblesTab - - - ( and ) - ( og ) - - - RemoteTab - - - Remotes - Fjernmeldinger - - - ServiceManager - - - Save Service - Lagre møte - - - Ui_AmendThemeDialog - - - Shadow Size: - Skyggestørrelse: - - - Ui_OpenSongExportDialog - - - Close - Lukk - - - ThemeManager - - - Import Theme - Importer tema - - - Ui_AmendThemeDialog - - - Slide Transition - Lysbildeovergang - - - ImportWizardForm - - - Bible Exists - Bibelen eksisterer - - - ThemesTab - - - Theme level - Temanivå - - - BibleMediaItem - - - Bible - Bibel - - - ServiceManager - - - Save Changes to Service? - Lagre endringer til møteplanen? - - - SongUsagePlugin - - - &Delete recorded data - &Slett lagret data - - - Ui_OpenLPExportDialog - - - Song Title - Sangtittel - - - Ui_customEditDialog - - - Edit selected slide - Rediger merket lysbilde - - - SongMediaItem - - - CCLI Licence: - CCLI lisens: - - - BibleMediaItem - - - Clear - Slett - - - Ui_BibleImportWizard - - - Bible Import Wizard - Bibelimporteringsverktøy - - - Ui_customEditDialog - - - Edit All - Rediger alle - - - SongMaintenanceForm - - - Couldn't save your author. - Kunne ikke lagre forfatteren - - - Ui_ServiceNoteEdit - - - Service Item Notes - + + &Alert + - - - Ui_customEditDialog - - Add new slide at bottom - Legg til nytt lysbilde på bunnen - - - Clear - Slett - - - ThemesTab - - - Global theme - + + Show an alert message. + - - - PresentationPlugin - - <b>Presentation Plugin</b> <br> Delivers 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. - <b>Presentasjonstillegg</b> <br> Gir deg mulighet til å vise presentasjoner ved hjelp av en rekke ulike programmer. Programmene som er tilgjengelige finner du i rullemenyen. - - - SongUsagePlugin - - - Start/Stop live song usage recording - + + <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of nursery alerts on the display screen + - - - MainWindow + + + AlertsPlugin.AlertForm - - The Main Display has been blanked out - + + Alert Message + Varsel-melding - - - Ui_OpenSongExportDialog - - Lyrics - Sangtekst - - - Ui_AlertDialog - - - Display - Vis - - - SongMaintenanceForm - - - This author can't be deleted, they are currently assigned to at least one song. - Denne forfatteren kan ikke slettes, den er knyttet til minst én sang. - - - Ui_customEditDialog - - - Delete - Slett - - - Ui_OpenSongImportDialog - - - OpenSong Folder: - OpenSong-mappe: - - - ThemeManager - - - Create a new theme - Opprett nytt tema - - - Ui_MainWindow - - - Open an existing service - Åpne eksisterende møteplan - - - SlideController - - - Move to previous - Flytt til forrige - - - Edit and re-preview Song - Endre og forhåndsvis sang - - - Ui_PluginViewDialog - - - Plugin Details - + + Alert &text: + - - - AlertsTab - - pt - p.t.Impossible to translate without a context. Point? pro tempore (currently)? - - - Edit History: - Endre historikk: - - - SlideController - - - Delay between slides in seconds - Forsinkelse mellom lysbilder i sekund - - - BiblesTab - - - verse per line - vers per linje - - - Ui_customEditDialog - - - Theme: - Tema: - - - SongMaintenanceForm - - - Couldn't add your book. - Kunne ikke legge til boken. - - - Error - Feil - - - Ui_BibleImportWizard - - - Bible: - Bibel: - - - ThemeManager - - - Delete Theme - Slett tema - - - SplashScreen - - - Splash Screen - + + &Parameter(s): + - - - SongMediaItem - - Song - Sang - - - Ui_OpenSongExportDialog - - - Song Title - Sangtittel - - - BibleMediaItem - - - Search - Søk - - - Ui_MainWindow - - - List the Plugins - Hent liste over tillegg - - - SongMaintenanceForm - - - No author selected! - Ingen forfatter er valgt! - - - SongUsageDeleteForm - - - Delete Selected Song Usage Events? - + + &New + &Ny - - - SongUsagePlugin - - <b>SongUsage Plugin</b><br>This plugin records the use of songs and when they have been used during a live service - + + &Save + &Lagre - - - Ui_customEditDialog - - Move slide Up 1 - Flytt lysbildet én opp - - - SongsPlugin - - - OpenSong - OpenSong - - - AlertsManager - - - Alert message created and delayed - + + &Delete + - - - Ui_EditSongDialog - - Alternative Title: - Alternativ tittel: - - - ServiceManager - - - Open Service - Åpne møteplan - - - BiblesTab - - - Display Style: - Visningsstil: - - - Ui_AmendThemeDialog - - - Image - Bilde - - - EditSongForm - - - You need to enter a song title. - Du må skrive inn en sangtittel. - - - ThemeManager - - - Error - Feil - - - Ui_SongUsageDeleteDialog - - - Song Usage Delete - Slett registrert sangbruk - - - ImportWizardForm - - - Invalid Bible Location - Ugyldig Bibelplassering - - - BibleMediaItem - - - Book: - Bok: - - - ThemeManager - - - Make Global - + + Displ&ay + - - - Ui_MainWindow - - &Service Manager - + + Display && Cl&ose + - - - ImportWizardForm - - You need to specify a file with books of the Bible to use in the import. - Du må angi en fil som inneholder bøkene i Bibelen. - - - Ui_OpenLPImportDialog - - - Author - Forfatter - - - Ui_AmendThemeDialog - - - Height: - Høyde: - - - Ui_BibleImportWizard - - - Books Location: - Plassering av fil som inneholder bøkene: - - - ThemeManager - - - Delete a theme - Slett et tema - - - Ui_BibleImportWizard - - - Crosswalk - + + &Close + - - - SongBookForm - - Error - Error - - - Ui_AuthorsDialog - - - Last name: - Etternavn: - - - ThemesTab - - - Use the global theme, overriding any themes associated with either the service or the songs. - Bruk det globale temaet, og la det overstyre eventuelle tema som er tilknyttet møteplaner eller sanger. - - - Ui_customEditDialog - - - Title: - Tittel: - - - ImportWizardForm - - - You need to set a copyright for your Bible! Bibles in the Public Domain need to be marked as such. - Du må angi hvem som har opphavsrett til denne bibelutgaven! Bibler som ikke er tilknyttet noen opphavsrett må bli merket med dette. - - - SongMediaItem - - - Maintain the lists of authors, topics and books - Rediger liste over forfattere, emner og bøker. - - - Ui_AlertEditDialog - - - Save - Lagre - - - EditCustomForm - - - You have unsaved data - Du har data som ikke er lagret - - - BibleMediaItem - - - To: - Til: - - - Ui_AmendThemeDialog - - - Outline - Omriss - - - BibleMediaItem - - - Text Search - Tekstsøk - - - Ui_OpenLPExportDialog - - - openlp.org Song Exporter - openlp.org sangeksportør - - - SongUsagePlugin - - - Delete song usage to specified date - Slett data angående sangbruk frem til angitt dato - - - Ui_SongUsageDetailDialog - - - Report Location - - Is "report" verb or noun here? - - - Ui_BibleImportWizard - - - OpenSong - OpenSong - - - Ui_MainWindow - - - Open Service - Åpne møteplan - - - SongMediaItem - - - Titles - Titler - - - ImageMediaItem - - - Select Image(s) - Velg bilde(r) - - - BibleMediaItem - - - Search Type: - Søk i: - - - Ui_MainWindow - - - Media Manager - Innholdselementer - - - Alt+F4 - Alt+F4 - - - MediaManagerItem - - - &Preview - &Forhåndsvisning - - - GeneralTab - - - CCLI Details - CCLI-detaljer - - - SongSelect Password: - SongSelect-passord: - - - Ui_MainWindow - - - Toggle the visibility of the Preview Panel - Vis/skjul forhåndsvisningsvinduet - - - SongMaintenanceForm - - - Are you sure you want to delete the selected book? - Er du sikker på at du vil slette den merkede boken? - - - Ui_MainWindow - - - &User Guide - &Brukerveiledning - - - Set the interface language to English - Skift språk til engelsk - - - Ui_AmendThemeDialog - - - Main Font - Hovedskrifttype - - - ImportWizardForm - - - Empty Copyright - Tom copyright - - - AuthorsForm - - - You need to type in the first name of the author. - Du må skrive inn forfatterens fornavn. - - - SongsTab - - - Display Verses on Live Tool bar: - Vis versene på Live-verktøylinjen - - - ServiceManager - - - Move to top - Flytt til toppen - - - ImageMediaItem - - - Override background - Overstyr bakgrunn - - - Ui_SongMaintenanceDialog - - - Edit - Rediger - - - Ui_OpenSongExportDialog - - - Select All - Velg alle - - - ThemesTab - - - 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. - Bruk temaet fra hver sang i databasen. Hvis en sang ikke er tilknyttet et tema, bruk temaet til møteplanen. Hvis møteplanen ikke har et tema, bruk det globale temaet. - - - PresentationMediaItem - - - Presentation - Presentasjon - - - Ui_AmendThemeDialog - - - Solid Color - Ensfarget - - - CustomTab - - - Custom - Egendefinert - - - Ui_OpenLPImportDialog - - - Ready to import - Klar til å importere - - - MainWindow - - - OpenLP version %s has been updated to version %s - -You can obtain the latest version from http://openlp.org - OpenLP versjon %s har blitt oppgradert til versjon %s - -Du kan få tak i den siste versjonen hos http://openlp.org - - - Ui_BibleImportWizard - - - File Location: - Filplassering: - - - SlideController - - - Go to Verse - Gå til vers - - - SongMaintenanceForm - - - Couldn't add your topic. - Kunne ikke legge til emnet. - - - Ui_MainWindow - - - &Import - &Import - - - Quit OpenLP - Avslutt OpenLP - - - Ui_BibleImportWizard - - - This wizard will help you to import Bibles from a variety of formats. Click the next button below to start the process by selecting a format to import from. - Denne veiviseren vil hjelpe deg å importere Bibler fra en rekke ulike formater. Klikk på neste-knappen under for å starte prosessen ved å velge et format å importere fra. - - - Ui_OpenLPExportDialog - - - Title - Tittel - - - ImportWizardForm - - - Empty Version Name - Tomt versjonnavn - - - Ui_MainWindow - - - &Preview Panel - &Forhåndsvisningspanel - - - SlideController - - - Start continuous loop - Start kontinuerlig løkke - - - GeneralTab - - - primary - primær - - - Ui_EditSongDialog - - - Add a Theme - Legg til tema - - - Ui_MainWindow - - - &New - &Ny - - - Ui_customEditDialog - - - Credits: - + + New Alert + - - - SlideController - - Live - Direkte - - - Ui_BibleImportWizard - - - Select Import Source - Velg importeringskilde - - - BiblesTab - - - continuous - kontinuerlig - - - Ui_AmendThemeDialog - - - Middle - Midtstilt - - - GeneralTab - - - Application Startup - Programoppstart - - - Ui_AmendThemeDialog - - - Use Default Location: - Bruk standardplassering - - - Ui_OpenSongImportDialog - - - Import - Importer - - - Ui_MainWindow - - - Ctrl+N - Ctrl+N - - - Ui_EditSongDialog - - - Verse Order: - Rekkefølge av versene - - - Ui_MainWindow - - - Default Theme: - Standardtema: - - - Toggle Preview Panel - Vis forhåndsvisningspanel - - - SongMediaItem - - - Lyrics - Sangtekst - - - Ui_OpenLPImportDialog - - - Progress: - Fremgang: - - - Ui_AmendThemeDialog - - - Shadow - Skygge - - - GeneralTab - - - Select monitor for output display: - Velg hvilken skjerm som skal brukes til fremvisning: - - - Ui_AmendThemeDialog - - - Italics - Kursiv - - - ServiceManager - - - Create a new service - Opprett ny møteplan - - - Ui_AmendThemeDialog - - - Background: - Bakgrunn: - - - Ui_OpenLPImportDialog - - - openlp.org Song Importer - openlp.org sangimportør - - - Ui_BibleImportWizard - - - Copyright: - Copyright: - - - ThemesTab - - - Service level - + + You haven't specified any text for your alert. Please type in some text before clicking New. + - - - BiblesTab + + + AlertsPlugin.AlertsManager - - [ and ] - [ og ] - - - Ui_customEditDialog - - - Save - Lagre - - - MediaManagerItem - - - You must select one or more items - Du må velge ett eller flere elementer - - - GeneralTab - - - Application Settings - Programinnstillinger - - - ServiceManager - - - Save this service - Lagre møteplan - - - ImportWizardForm - - - Open Books CSV file - Åpne CSV-fil som inneholder bøkene i Bibelen - - - GeneralTab - - - SongSelect Username: - SongSelect-brukernavn: - - - Ui_AmendThemeDialog - - - X Position: - X-posisjon - - - BibleMediaItem - - - No matching book could be found in this Bible. - Finner ingen matchende bøker i denne Bibelen. - - - Ui_BibleImportWizard - - - Server: - Server: - - - Download Options - Nedlastingsalternativer - - - ImportWizardForm - - - Invalid OpenSong Bible - Ugyldig OpenSong Bibel - - - GeneralTab - - - CCLI Number: - CCLI-nummer: - - - Ui_AmendThemeDialog - - - Center - Sentrert - - - ServiceManager - - - Theme: - Tema: - - - AlertEditForm - - - Please save or clear selected item - Vennligst lagre eller slett valgt element - - - Ui_MainWindow - - - &Live - &Direkte - - - SongMaintenanceForm - - - Delete Topic - Slett emne - - - Ui_MainWindow - - - English - Norsk - - - ImageMediaItem - - - You must select one or more items - Du må velge ett eller flere element - - - Ui_AuthorsDialog - - - First name: - Fornavn: - - - Ui_BibleImportWizard - - - Permission: - Tillatelse: - - - Ui_OpenSongImportDialog - - - Close - Lukk - - - Ui_SongUsageDetailDialog - - - Song Usage Extraction - + + Alert message created and displayed. + - - - Ui_AmendThemeDialog + + + AlertsPlugin.AlertsTab - - Opaque - Gjennomsiktighet - - - ImportWizardForm - - - Your Bible import failed. - Bibelimporteringen mislyktes. - - - SlideController - - - Start playing media - Start avspilling av media - - - SongMediaItem - - - Type: - Type: - - - SongMaintenanceForm - - - This book can't be deleted, it is currently assigned to at least one song. - Denne boken kan ikke slettes, den er tilknyttet minst én sang. - - - Ui_AboutDialog - - - Close - Lukk - - - TopicsForm - - - You need to type in a topic name! - Skriv inn et emnenavn! - - - Ui_OpenSongExportDialog - - - Song Export List - Sangeksporteringsliste - - - BibleMediaItem - - - Dual: - Dobbel: - - - ImageTab - - - sec - sek - - - ServiceManager - - - Delete From Service - Slett fra møteplan - - - GeneralTab - - - Automatically open the last service - Åpne forrige møteplan automatisk - - - Ui_OpenLPImportDialog - - - Song Import List - Sangimporteringsliste - - - Ui_OpenSongExportDialog - - - Author - Forfatter - - - Ui_AmendThemeDialog - - - Outline Color: - Omrissfarge: - - - Ui_MainWindow - - - F9 - F9 - - - F8 - F8 - - - ServiceManager - - - &Change Item Theme - &Bytt objekttema - - - Ui_SongMaintenanceDialog - - - Topics - Emne - - - Ui_OpenLPImportDialog - - - Import File Song List - Importer fil med sangliste - - - Ui_customEditDialog - - - Edit Custom Slides - Rediger egendefinerte lysbilder - - - Ui_EditSongDialog - - - &Remove - &Fjern - - - Ui_BibleImportWizard - - - Set up the Bible's license details. - Skriv inn Bibelens lisensdetaljer. - - - Ui_EditVerseDialog - - - Number - Nummer - - - Ui_AmendThemeDialog - - - Alignment - Justering - - - SongMaintenanceForm - - - Delete Book - Slett bok - - - ThemeManager - - - Edit a theme - Rediger et tema - - - Ui_BibleImportWizard - - - BibleGateway - BibleGateway - - - GeneralTab - - - Preview Next Song from Service Manager - Forhåndsvis neste sang i møteplanen - - - Ui_EditSongDialog - - - Title && Lyrics - Tittel && Sangtekst - - - SongMaintenanceForm - - - No book selected! - Ingen bok er valgt! - - - SlideController - - - Move to live - + + Alerts + - - - Ui_EditVerseDialog - - Other - Annet - - - Ui_EditSongDialog - - - Theme - Tema - - - Ui_EditVerseDialog - - - Verse - Vers - - - Ui_SongUsageDetailDialog - - - Select Date Range - Velg dato-område - - - Ui_MainWindow - - - Save the current service to disk - Lagre gjeldende møteplan - - - BibleMediaItem - - - Chapter: - Kapittel - - - Ui_AmendThemeDialog - - - Bottom - Bunn - - - PresentationTab - - - Available Controllers - + + Font + Skrifttype - - - Ui_MainWindow - - Add &Tool... - Legg til & Verktøy... - - - TopicsForm - - - Error - Feil - - - RemoteTab - - - Remotes Receiver Port - + + Font name: + - - - Ui_MainWindow - - &View - &Vis - - - Ui_AmendThemeDialog - - - Normal - Normal - - - Ui_OpenLPExportDialog - - - Close - Lukk - - - Ui_BibleImportWizard - - - Username: - Brukernavn: - - - ThemeManager - - - Edit Theme - Endre tema - - - ServiceManager - - - &Preview Verse - &Forhåndsvis vers - - - Ui_AlertDialog - - - Alert Message - Varsel-melding - - - ImportWizardForm - - - Finished import. - Import fullført. - - - GeneralTab - - - Show blank screen warning - + + Font color: + - - - ImportWizardForm - - You need to specify a file of Bible verses to import. - Du må angi en fil med bibelvers som skal importeres. - - - AlertsTab - - - Location: - Plassering: - - - Ui_EditSongDialog - - - Authors, Topics && Book - Forfatter, Emne && Bok - - - EditSongForm - - - You need to enter some verses. - Du må skrive inn noen vers. - - - CustomTab - - - Display Footer: - Vis bunntekst: - - - BiblePlugin - - - <strong>Bible Plugin</strong><br />This plugin allows bible verses from different sources to be displayed on the screen during the service. - <strong>Bibel-tillegg</strong><br /> Dette tillegget gjør det mulig at bibelvers fra ulike kilder vises på skjermen under møtet. - - - Ui_EditSongDialog - - - Copyright Information - Copyright-informasjon - - - Ui_MainWindow - - - &Export - &Eksporter - - - Ui_AmendThemeDialog - - - Bold - Fet - - - SongsPlugin - - - Export songs in OpenLP 2.0 format - Eksporter sanger i OpenLP 2.0-format - - - MediaManagerItem - - - Load a new - Last inn en ny - - - AlertEditForm - - - Missing data - Data savnes - - - SongsPlugin - - - <b>Song Plugin</b> <br>This plugin allows Songs to be managed and displayed.<br> - <b>Sang-tillegg</b><br>Dette tillegget viser og håndterer sanger.<br> - - - Ui_AmendThemeDialog - - - Footer Font - Skrifttype bunntekst - - - EditSongForm - - - Invalid verse entry - vX - Ugyldig vers - vX - - - ServiceManager - - - OpenLP Service Files (*.osz) - OpenLP møteplan (*.osz) - - - BibleMediaItem - - - No Book Found - Ingen bøker funnet - - - Ui_OpenLPExportDialog - - - Export - Eksporter - - - Ui_BibleImportWizard - - - Location: - Plassering: - - - BibleMediaItem - - - Keep - Behold - - - SongUsagePlugin - - - Generate report on Song Usage - Lag rapport angående bruk av sanger - - - Ui_EditSongDialog - - - Topic - Emne - - - Ui_MainWindow - - - &Open - &Åpne - - - PresentationMediaItem - - - Present using: - Presenter ved hjelp av: - - - ServiceManager - - - &Live Verse - &Direktevers - - - Ui_EditSongDialog - - - Lyrics: - Sangtekst: - - - Ui_AboutDialog - - - Project Lead - Raoul "superfly" Snyman - -Developers - Tim "TRB143" Bentley - Jonathan "gushie" Corwin - Michael "cocooncrash" Gorven - Scott "sguerrieri" Guerrieri - Raoul "superfly" Snyman - Maikel Stuivenberg - Martin "mijiti" Thompson - Jon "Meths" Tibble - Carsten "catini" Tingaard - -Testers - Wesley "wrst" Stout - Prosjektleder -Raoul "superfly" Snyman - -Utviklere -Tim "TRB143" Bentley -Jonathan "gushie" Corwin -Michael "cocooncrash" Gorven -Scott "sguerrieri" Guerrieri -Raoul "superfly" Snyman -Maikel Stuivenberg -Martin "mijiti" Thompson -Jon "Meths" Tibble -Carsten "catini" Tingaard - -Testere -Wesley "wrst" Stout - - - Ui_OpenLPExportDialog - - - Lyrics - Sangtekst - - - AuthorsForm - - - You haven't set a display name for the author, would you like me to combine the first and last names for you? - Du har ikke angitt et visningsnavn for forfatteren, vil du bruke forfatterens fulle navn som visningsnavn? - - - SongMediaItem - - - Clear - Slett - - - AmendThemeForm - - - Slide Height is %s rows - + + Background color: + - - - Ui_OpenSongImportDialog - - Progress: - Fremgang: - - - Ui_MainWindow - - - Toggle Theme Manager - Åpne tema-behandler - - - Ui_AlertDialog - - - Alert Text: - Varsel-tekst: - - - Ui_EditSongDialog - - - Edit - Rediger - - - AlertsTab - - - Font Color: - Skriftfarge: - - - Ui_AmendThemeDialog - - - Theme Maintenance - Vedlikehold av tema - - - CustomTab - - - Custom Display - Tilpasset visning - - - Ui_OpenSongExportDialog - - - Title - Tittel - - - Ui_AmendThemeDialog - - - <Color1> - <Farge1> - - - Ui_EditSongDialog - - - Authors - Forfattere - - - ThemeManager - - - Export Theme - Eksporter tema - - - ImageMediaItem - - - No items selected... - Ingen elementer valgt - - - Ui_SongBookDialog - - - Name: - Navn: - - - Ui_AuthorsDialog - - - Author Maintenance - Behandle forfatterdata - - - Ui_AmendThemeDialog - - - Font Footer - Skrifttype bunntekst - - - Ui_MainWindow - - - &Settings - &Innstillinger - - - &Options - &Alternativer - - - BibleMediaItem - - - Results: - Resultat: - - - Ui_OpenLPExportDialog - - - Full Song List - Komplett sangliste - - - ServiceManager - - - Move to &top - Flytt til &toppen - - - SlideController - - - Move to last - Flytt til sist - - - Ui_OpenLPExportDialog - - - Progress: - Fremgang: - - - Ui_SongMaintenanceDialog - - - Add - Legg til - - - SongMaintenanceForm - - - Are you sure you want to delete the selected author? - Er du sikker på at du vil slette den valgte forfatteren? - - - SongUsagePlugin - - - Song Usage Status - + + Font size: + - - - BibleMediaItem - - Verse Search - Søk i vers - - - Ui_SongBookDialog + + pt + + - - Edit Book - Rediger bok - - - EditSongForm + + Alert timeout: + + - - Save && Preview - Lagre && Forhåndsvis - - - Ui_SongBookDialog + + s + + - - Publisher: - Utgiver: - - - Ui_AmendThemeDialog + + Location: + + - - Font Weight: - Skrifttykkelse - - - Ui_BibleImportWizard + + Preview + + - - Bible Filename: - Bibel-filnavn: - - - Ui_AmendThemeDialog + + OpenLP 2.0 + OpenLP 2.0 + - - Transparent - Gjennomsiktig - - - SongMediaItem + + Top + Topp + - - Search - Søk - - - Ui_BibleImportWizard + + Middle + Midtstilt + - - Format: - Format: - - - Ui_AmendThemeDialog + + Bottom + + + + + BiblesPlugin - - Background - Bakgrunn - - - Ui_BibleImportWizard + + &Bible + + - - Importing - Importerer - - - Ui_customEditDialog + + <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display bible verses from different sources during the service. + + + + + BiblesPlugin.BibleDB - - Edit all slides - Rediger alle lysbilder - - - MediaMediaItem + + Book not found + + - - Select Media - Velg media - - - PresentationMediaItem + + 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. + + + + + BiblesPlugin.BiblesTab - - Select Presentation(s) - Velg presentasjon(er) - - - SongMediaItem + + Bibles + Bibler + - - Authors - Forfattere - - - Ui_PluginViewDialog + + Verse Display + + - - Active - Aktiv - - - SongMaintenanceForm + + Only show new chapter numbers + + - - Couldn't add your author. - Kunne ikke legge til forfatteren. - - - Ui_MainWindow + + Layout style: + + - - Ctrl+O - Ctrl+O - - - Ui_AmendThemeDialog + + Display style: + + - - Other Options - Andre alternativer - - - Ui_AlertEditDialog + + Bible theme: + + - - Edit - Rediger - - - Ui_EditSongDialog + + Verse Per Slide + + - - Song Editor - Sangredigeringsverktøy - - + + Verse Per Line + + + + + Continuous + + + + + No Brackets + + + + + ( And ) + + + + + { And } + + + + + [ And ] + + + + + Note: +Changes do not affect verses already in the service. + + + + + Display dual Bible verses + + + + + BiblesPlugin.ImportWizardForm + + + Bible Import Wizard + Bibelimporteringsverktøy + + + + Welcome to the Bible Import Wizard + + + + + This wizard will help you to import Bibles from a variety of formats. Click the next button below to start the process by selecting a format to import from. + Denne veiviseren vil hjelpe deg å importere Bibler fra en rekke ulike formater. Klikk på neste-knappen under for å starte prosessen ved å velge et format å importere fra. + + + + Select Import Source + Velg importeringskilde + + + + Select the import format, and where to import from. + + + + + Format: + Format: + + + + OSIS + + + + + CSV + + + + + OpenSong + OpenSong + + + + Web Download + + + + + File location: + + + + + Books location: + + + + + Verse location: + + + + + Bible filename: + + + + + Location: + + + + + Crosswalk + + + + + BibleGateway + BibleGateway + + + + Bible: + Bibel: + + + + Download Options + Nedlastingsalternativer + + + + Server: + Server: + + + + Username: + Brukernavn: + + + + Password: + + + + + Proxy Server (Optional) + + + + + License Details + Lisensdetaljer + + + + Set up the Bible's license details. + Skriv inn Bibelens lisensdetaljer. + + + + Version name: + + + + + Copyright: + Copyright: + + + + Permission: + Tillatelse: + + + + Importing + + + + + Please wait while your Bible is imported. + + + + + Ready. + Klar. + + + + Invalid Bible Location + Ugyldig Bibelplassering + + + + You need to specify a file to import your Bible from. + + + + + Invalid Books File + + + + + You need to specify a file with books of the Bible to use in the import. + Du må angi en fil som inneholder bøkene i Bibelen. + + + + Invalid Verse File + + + + + You need to specify a file of Bible verses to import. + Du må angi en fil med bibelvers som skal importeres. + + + + Invalid OpenSong Bible + Ugyldig OpenSong Bibel + + + + You need to specify an OpenSong Bible file to import. + + + + + Empty Version Name + Tomt versjonnavn + + + + You need to specify a version name for your Bible. + + + + + Empty Copyright + Tom copyright + + + + You need to set a copyright for your Bible! Bibles in the Public Domain need to be marked as such. + Du må angi hvem som har opphavsrett til denne bibelutgaven! Bibler som ikke er tilknyttet noen opphavsrett må bli merket med dette. + + + + Bible Exists + Bibelen eksisterer + + + + This Bible already exists! Please import a different Bible or first delete the existing one. + + + + + Open OSIS File + + + + + Open Books CSV File + + + + + Open Verses CSV File + + + + + Open OpenSong Bible + + + + + Starting import... + + + + + Finished import. + Import fullført. + + + + Your Bible import failed. + Bibelimporteringen mislyktes. + + + + 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. + + + + + BiblesPlugin.Opensong + + + Importing + + + + + CustomPlugin + + + <strong>Custom Plugin</strong><br />The custom plugin provides the ability to set up custom text slides that can be displayed on the screen the same way songs are. This plugin provides greater freedom over the songs plugin. + + + + + CustomPlugin.CustomTab + + + Custom + + + + + Custom Display + Tilpasset visning + + + + Display footer + + + + + CustomPlugin.EditCustomForm + + + Edit Custom Slides + Rediger egendefinerte lysbilder + + + + Move slide up once 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: + + + + + Save && Preview + + + + + Error + Feil + + + + You need to type in a title. + + + + + You need to add at least one slide + + + + + You have one or more unsaved slides, please either save your slide(s) or clear your changes. + + + + + CustomPlugin.MediaItem + + + Custom + + + + + You haven't selected an item to edit. + + + + + You haven't selected an item to delete. + + + + + ImagePlugin + + + <strong>Image Plugin</strong><br />The image plugin provides displaying of images.<br />One of the distinguishing features of this plugin is the ability to group a number of images together in the service manager, making the displaying of multiple images easier. This plugin can also make use of OpenLP's "timed looping" feature to create a slide show that runs automatically. In addition to this, images from the plugin can be used to override the current theme's background, which renders text-based items like songs with the selected image as a background instead of the background provided by the theme. + + + + + ImagePlugin.ImageTab + + + Images + + + + + Image Settings + Bildeinnstillinger + + + + Slide loop delay: + + + + + sec + sek + + + + ImagePlugin.MediaItem + + + Image + + + + + Select Image(s) + Velg bilde(r) + + + + All Files + + + + + Replace Live Background + + + + + Replace 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. + + + + MediaPlugin - - <b>Media Plugin</b><br>This plugin allows the playing of audio and video media - <b>Media-tillegg</b><br> Dette tillegget spiller av lyd og video. - - - AlertsTab - - - Font - Skrifttype - - - SongsPlugin - - - &Song - &Sang - - - Ui_MainWindow - - - &File - &Fil - - - MediaManagerItem - - - &Edit - &Rediger - - - Ui_AmendThemeDialog - - - Vertical - Vertikal - - - Width: - Bredde: - - - ThemesTab - - - Global level - + + <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. + - - - ThemeManager + + + MediaPlugin.MediaItem - - You are unable to delete the default theme. - Du kan ikke slette det globale temaet - - - BibleMediaItem + + Media + + - - Version: - Versjon: - - - Ui_AboutDialog + + Select Media + Velg media + - - OpenLP <version> build <revision> - Open Source Lyrics Projection + + Replace Live Background + + + + + Replace Background + + + + + You must select a media file to delete. + + + + + OpenLP + + + Image Files + + + + + OpenLP.AboutForm + + + About OpenLP + + + + + OpenLP <version><revision> - Open Source Lyrics Projection OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if OpenOffice.org, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. Find out more about OpenLP: http://openlp.org/ OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider contributing by using the button below. - OpenLP <version> build <revision> - Open Source Lyrics Projection - -OpenLP er et gratis presentasjonsverktøy tilegnet kirker, som kan brukes til å vise sanger, bibelvers, videoer, bilder og presentasjoner (hvis OpenOffice.org, PowerPoint eller PowerPoint Viewer er installert) ved hjelp av en data og en projektor. - -Finn ut mer om OpenLP: http://openlp.org/ - - OpenLP er skrevet og vedlikeholdt av frivillige. Hvis ønsker å se flere gratis, kristne program i fremtiden, bør du vurdere å bidra ved å trykke på knappen under. - - - SongsPlugin - - - OpenLP 2.0 - OpenLP 2.0 - - - ServiceManager - - - New Service - Ny møteplan - - - Ui_TopicsDialog - - - Topic name: - Emnenavn: - - - Ui_BibleImportWizard - - - License Details - Lisensdetaljer - - - Ui_AboutDialog - - - License - Lisens - - - Ui_EditSongDialog - - - R&emove - &Fjern - - - ThemeManager - - - File is not a valid theme. - Filen er ikke et gyldig tema. - - - Ui_BibleImportWizard - - - Verse Location: - Plassering av vers: - - - AlertEditForm - - - Item selected to Edit - Element som skal redigeres - - - BibleMediaItem - - - From: - Fra: - - - Ui_AmendThemeDialog - - - Shadow Color: - Skyggefarge: - - - ServiceManager - - - &Notes - &Notis - - - Ui_MainWindow - - - E&xit - &Avslutt - - - Ui_OpenLPImportDialog - - - Close - Lukk - - - MainWindow - - - OpenLP Version Updated - OpenLP versjonen har blitt oppdatert - - - Ui_customEditDialog - - - Replace edited slide - Erstatt redigert lysbilde - - - EditCustomForm - - - You need to enter a title - Du må angi en tittel - - - ThemeManager - - - Theme Exists - Temaet eksisterer - - - Ui_MainWindow - - - &Help - &Hjelp - - - Ui_OpenSongExportDialog - - - OpenSong Song Exporter - OpenSong sangeksportør - - - Ui_AmendThemeDialog - - - Vertical Align: - Vertikal justering: - - - Ui_EditVerseDialog - - - Pre-Chorus - Pre-Chorus - - - Ui_AmendThemeDialog - - - Top - Topp - - - BiblesTab - - - Display Dual Bible Verses - Vis doble bibelvers - - - Ui_MainWindow - - - Toggle Service Manager - Vis møteplanlegger - - - Ui_EditSongDialog - - - Delete - Slett - - - MediaManagerItem - - - &Add to Service - &Legg til i møteplan - - - AmendThemeForm - - - First Color: - Første farge: - - - ThemesTab - - - Song level - Sangnivå - - - alertsPlugin - - - Show an alert message - Vis varsel - - - Ui_MainWindow - - - Ctrl+F1 - Ctrl+F1 - - - SongMaintenanceForm - - - Couldn't save your topic. - Kunne ikke lagre emnet. - - - Ui_MainWindow - - - Save the current service under a new name - Lagre gjeldende møteplan under et nytt navn - - - Ui_OpenLPExportDialog - - - Remove Selected - Fjern merket - - - ThemeManager - - - Delete theme - Slett tema - - - ImageTab - - - Image Settings - Bildeinnstillinger - - - Ui_OpenSongImportDialog - - - OpenSong Song Importer - + - - - BiblesTab - - Bibles - Bibler - - + + About + Om + + + + 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 + Christian "crichter" Richter + Maikel Stuivenberg + Carsten "catini" Tingaard + +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) + + + + + + Credits + + + + + Copyright © 2004-2010 Raoul Snyman +Portions copyright © 2004-2010 Tim Bentley, Jonathan Corwin, Michael Gorven, Scott Guerrieri, Christian Richter, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Carsten Tinggaard + +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 + Lisens + + + + Contribute + + + + + Close + Lukk + + + + build %s + + + + + OpenLP.AdvancedTab + + + Advanced + Avansert + + + + UI Settings + + + + + Number of recent files to display: + + + + + Remember active media manager tab on startup + + + + + Double-click to send items straight to live (requires restart) + + + + + 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. + + + + + OpenLP.GeneralTab + + + General + + + + + Monitors + + + + + Select monitor for output display: + Velg hvilken skjerm som skal brukes til fremvisning: + + + + Display if a single screen + + + + + Application Startup + Programoppstart + + + + Show blank screen warning + + + + + Automatically open the last service + Åpne forrige møteplan automatisk + + + + Show the splash screen + + + + + Application Settings + Programinnstillinger + + + + Prompt to save Service before starting New + + + + + Preview Next Song from Service Manager + Forhåndsvis neste sang i møteplanen + + + + CCLI Details + CCLI-detaljer + + + + CCLI number: + + + + + SongSelect username: + + + + + SongSelect password: + + + + + Display Position + + + + + X + + + + + Y + + + + + Height + + + + + Width + + + + + Override display position + + + + + Screen + + + + + primary + primær + + + + OpenLP.LanguageManager + + + Language + + + + + Please restart OpenLP to use your new language setting. + + + + + OpenLP.MainWindow + + + OpenLP 2.0 + OpenLP 2.0 + + + + English + 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>. + + + + + 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 + + + + + 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. + + + + + OpenLP.PluginForm + + + Plugin List + + + + + Plugin Details + + + + + Version: + + + + + TextLabel + + + + + About: + Om: + + + + Status: + Status: + + + + Active + Aktiv + + + + Inactive + + + + + %s (Inactive) + + + + + %s (Active) + + + + + %s (Disabled) + + + + + OpenLP.ServiceItemEditForm + + + Reorder Service Item + + + + + Up + + + + + Delete + + + + + Down + + + + + OpenLP.ServiceManager + + + New Service + + + + + Create a new service + Opprett ny møteplan + + + + Open Service + Åpne møteplan + + + + Load an existing service + + + + + Save Service + + + + + Save this service + Lagre møteplan + + + + Theme: + Tema: + + + + Select a theme for the service + + + + + Move to &top + Flytt til &toppen + + + + Move item to the top of the service. + + + + + Move &up + + + + + Move item up one position in the service. + + + + + Move &down + + + + + Move item down one position in the service. + + + + + Move to &bottom + + + + + Move item to the end of the service. + + + + + &Delete From Service + + + + + Delete the selected item from the service. + + + + + &Add New Item + + + + + &Add to Selected Item + + + + + &Edit Item + + + + + &Reorder Item + + + + + &Notes + &Notis + + + + &Preview Verse + &Forhåndsvis vers + + + + &Live Verse + &Direktevers + + + + &Change Item Theme + &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 + Feil + + + + 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 + + + + + OpenLP.ServiceNoteForm + + + Service Item Notes + + + + + OpenLP.SettingsForm + + + Configure OpenLP + + + + + 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 + + + + Go to Verse + Gå til vers + + + + OpenLP.ThemeManager + + + New Theme + + + + + Create a new theme. + + + + + Edit Theme + Endre tema + + + + Edit a theme. + + + + + Delete Theme + Slett tema + + + + Delete a theme. + + + + + Import Theme + Importer tema + + + + Import a theme. + + + + + Export Theme + Eksporter tema + + + + Export a theme. + + + + + &Edit Theme + + + + + &Delete Theme + + + + + Set As &Global Default + + + + + E&xport Theme + + + + + %s (default) + + + + + You must select a theme to edit. + + + + + You must select a theme to delete. + + + + + Delete Confirmation + + + + + Delete theme? + + + + + Error + Feil + + + + You are unable to delete the default theme. + Du kan ikke slette det globale temaet + + + + Theme %s is use in %s plugin. + + + + + Theme %s is use by the service manager. + + + + + You have not selected a theme. + + + + + Save Theme - (%s) + + + + + Theme Exported + + + + + Your theme has been successfully exported. + + + + + Theme Export Failed + + + + + Your theme could not be exported due to an error. + + + + + Select Theme Import File + + + + + Theme (*.*) + + + + + 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? + + + + + OpenLP.ThemesTab + + + Themes + Tema + + + + Global Theme + + + + + Theme Level + + + + + S&ong Level + + + + + Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. + Bruk temaet fra hver sang i databasen. Hvis en sang ikke er tilknyttet et tema, bruk temaet til møteplanen. Hvis møteplanen ikke har et tema, bruk det globale temaet. + + + + &Service Level + + + + + Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. + + + + + &Global Level + + + + + Use the global theme, overriding any themes associated with either the service or the songs. + Bruk det globale temaet, og la det overstyre eventuelle tema som er tilknyttet møteplaner eller sanger. + + + + 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. + + + + + 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. + + + + + PresentationPlugin.PresentationTab + + + Presentations + + + + + Available Controllers + + + + + Advanced + + + + + 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. + + + + + RemotePlugin.RemoteTab + + + Remotes + Fjernmeldinger + + + + Serve on IP address: + + + + + Port number: + + + + + Server Settings + + + + SongUsagePlugin - - &Extract recorded data - - - - - AlertsTab - - - Font Name: - - - - - Ui_MainWindow - - - &Web Site - &Internett side - - - MediaManagerItem - - - Send the selected item live - - - - - Ui_MainWindow - - - M&ode - + + &Song Usage Tracking + - - Translate the interface to your language - + + &Delete Tracking Data + - - Service Manager - + + Delete song usage data up to a specified date. + - - - CustomMediaItem - - Custom - Egendefinert - - - Ui_BibleImportWizard - - - OSIS - + + &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. + + + + + SongUsagePlugin.SongUsageDeleteForm + + + Delete Selected Song Usage Events? + + + + + Are you sure you want to delete selected Song Usage data? + + + + + Delete Song Usage Data + + + + + SongUsagePlugin.SongUsageDetailForm + + + Output File Location + + + + + Song Usage Extraction + + + + + Select Date Range + Velg dato-område + + + + to + til + + + + Report Location + + + + SongsPlugin - - openlp.org 1.0 - openlp.org 1.0 - - - Ui_MainWindow - - - &Theme - &Tema - - - Ui_EditVerseDialog - - - Edit Verse - Rediger Vers - - - Ui_MainWindow - - - &Language - &Språk - - - SlideController - - - Verse - Vers - - - ServiceManager - - - Your service is unsaved, do you want to save those changes before creating a new one ? - - - - - Ui_OpenSongExportDialog - - - Remove Selected - - - - - SongMediaItem - - - Search: - Søk: - - - MainWindow - - - Save Changes to Service? - - - - - Your service has changed, do you want to save those changes? - - - - - ServiceManager - - - &Delete From Service - - - - - Ui_EditSongDialog - - - &Add to Song - - - - - Ui_MainWindow - - - &About - &Om - - - ImportWizardForm - - - You need to specify a version name for your Bible. - - - - - BiblesTab - - - Only show new chapter numbers - - - - - Ui_AlertEditDialog - - - Delete - Slett - - - EditCustomForm - - - Error - Feil - - - RemotesPlugin - - - <b>Remote Plugin</b><br>This plugin provides the ability to send messages to a running version of openlp on a different computer.<br>The Primary use for this would be to send alerts from a creche - - - - - BibleMediaItem - - - Find: - Finn: - - - AlertEditForm - - - Item selected to Add - - - - - Ui_AmendThemeDialog - - - Right - - - - - ThemeManager - - - Save Theme - (%s) - - - - - MediaManagerItem - - - Add the selected item(s) to the service - - - - - AuthorsForm - - - Error - Feil - - - Ui_AmendThemeDialog - - - Font Color: - - - - - Ui_OpenLPExportDialog - - - Select openlp.org export filename: - - - - - Ui_SettingsDialog - - - Settings - Innstillinger - - - BiblesTab - - - Verse Display - - - - - MediaManagerItem - - - Edit the selected - - - - - SlideController - - - Move to next - - - - - Ui_MainWindow - - - &Plugin List - &Tillegsliste - - - BiblePlugin - - - &Bible - - - - - Ui_BibleImportWizard - - - Web Download - - - - - Ui_AmendThemeDialog - - - Horizontal - - - - - ImportWizardForm - - - Open OSIS file - - - - - Ui_AmendThemeDialog - - - Circular - - - - - PresentationMediaItem - - - Automatic - Automatisk - - - SongMaintenanceForm - - - Couldn't save your book. - - - - - Ui_AmendThemeDialog - - - pt - - - - - <Color2> - <Farge2> - - - Ui_OpenLPImportDialog - - - Lyrics - - - - - BiblesTab - - - No brackets - - - - - Ui_AlertEditDialog - - - Maintain Alerts - - - - - Ui_AmendThemeDialog - - - px - - - - - ServiceManager - - - Select a theme for the service - - - - - ThemesTab - - - Themes - Tema - - - Ui_PluginViewDialog - - - Status: - Status: - - - Ui_EditSongDialog - - - CCLI Number: - - - - - ImportWizardForm - - - This Bible already exists! Please import a different Bible or first delete the existing one. - - - - - Ui_MainWindow - - - &Translate - - - - - Save Service As - - - - - Ui_SongMaintenanceDialog - - - Authors - - - - - SongUsageDetailForm - - - Output File Location - - - - - BiblesTab - - - { and } - - - - - GeneralTab - - - Prompt to save Service before starting New - - - - - ImportWizardForm - - - Starting import... - - - - - BiblesTab - - - Note: -Changes don't affect verses already in the service - - - - - Ui_EditVerseDialog - - - Intro - - - - - ServiceManager - - - Move up order - - - - - PresentationTab - - - available - + + &Song + &Sang - - - ThemeManager - - default - + + Import songs using the import wizard. + - - - SongMaintenanceForm - - Delete Author - + + Songs of Fellowship (temp menu item) + - - - Ui_AmendThemeDialog - - Display Location - - - - - Ui_PluginViewDialog - - - Version: - - - - - Ui_AlertEditDialog - - - Add - Legg til - - - GeneralTab + + Import songs from the VOLS1_2.RTF, sof3words.rtf and sof4words.rtf supplied with the music books + + + + + Generic Document/Presentation Import (temp menu item) + + + + + Import songs from Word/Writer/Powerpoint/Impress + + + + + OpenSong (temp menu item) + + + + + Import songs from OpenSong files(either raw text or ZIPfiles) + + + + + OpenLP v2 Songs (temporary) + + + + + Import an OpenLP v2 song database + + + + + Open Songs of Fellowship file + + + + + Import Error + + + + + Error importing Songs of Fellowship file. +OpenOffice.org must be installed and you must be using an unedited copy of the RTF included with the Songs of Fellowship Music Editions + + + + + Open OpenSong file + + + + + Error importing OpenSong file + + + + + Select OpenLP database(s) to import... + + + + + Database(s) imported + + + + + Your OpenLP v2 song databases have been successfully imported + + + + + Error importing OpenLP v2 database(s) + + + + + Open documents or presentations + + + + + <strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs. + + + + + SongsPlugin.AuthorsForm + + + Author Maintenance + Behandle forfatterdata + + + + Display name: + + + + + First name: + Fornavn: + + + + Last name: + Etternavn: + + + + Error + Feil + + + + You need to type in the first name of the author. + Du må skrive inn forfatterens fornavn. + + + + 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? + + + + + SongsPlugin.EditSongForm + + + Song Editor + Sangredigeringsverktøy + + + + &Title: + + + + + &Lyrics: + + + + + &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 + + + + + Copyright Information + Copyright-informasjon + + + + © + + + + + Comments + + + + + Theme, Copyright Info && Comments + + + + + Save && Preview + + + + + Add Author + + + + + This author does not exist, do you want to add them? + + + + + Error + Feil + + + + 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: + + + + + SongsPlugin.EditVerseForm + + + Edit Verse + Rediger Vers + + + + &Verse type: + + + + + &Insert + + + + + SongsPlugin.ImportWizardForm + + + No OpenLyrics Files Selected + + + + + You need to add at least one OpenLyrics song file to import from. + + + + + No OpenSong Files Selected + + + + + You need to add at least one OpenSong song file to import from. + + + + + No CCLI Files Selected + + + + + You need to add at least one CCLI file to import from. + + - - General - + + No CSV File Selected + - - - Ui_AmendThemeDialog - - Y Position: - + + You need to specify a CSV file to import from. + - - - ServiceManager - - Move down order - + + Starting import... + - - - BiblesTab - - verse per slide - + + Song Import Wizard + - - - Ui_BibleImportWizard - - Welcome to the Bible Import Wizard - + + Welcome to the Song Import Wizard + - - - Ui_AmendThemeDialog - - Show Shadow: - + + 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. + - - - AlertsTab - - Preview - + + Select Import Source + Velg importeringskilde - - - alertsPlugin - - - <b>Alerts Plugin</b><br>This plugin controls the displaying of alerts on the presentations screen - - - - - GeneralTab - - - Show the splash screen - - - - - Ui_MainWindow - - - New Service - - - - - SlideController - - - Move to first - - - - - Ui_MainWindow - - - &Online Help - - - - - SlideController - - - Blank Screen - - - - - Ui_MainWindow - - - Save Service - - - - - Save &As... - - - - - Toggle the visibility of the Media Manager - - - - - MediaManagerItem - - - Delete the selected item - - - - - Ui_EditSongDialog - - - Add - Legg til - - - alertsPlugin - - - &Alert - - - - - BibleMediaItem - - - Advanced - Avansert - - - ImageMediaItem - - - Image(s) - Bilde(r) - - - Ui_MainWindow - - - F11 - F11 - - - F10 - F10 - - - F12 - F12 - - - Ui_BibleImportWizard - - - Select the import format, and where to import from. - - - - - CustomPlugin - - - <b>Custom Plugin</b><br>This plugin allows slides to be displayed on the screen in the same way songs are. This plugin provides greater freedom over the songs plugin.<br> - - - - - Ui_MainWindow - - - Alt+F7 - ALT+F7 - - - Add an application to the list of tools - - - - - EditSongForm - - - Invalid verse entry - values must be Numeric, I,B,C,T,P,E,O - - - - - ServiceManager - - - Move &down - - - - - BiblesTab - - - Bible Theme: - - - - - SongsPlugin - - - Export songs in openlp.org 1.0 format - - - - - Ui_MainWindow - - - Theme Manager - - - - - AlertsTab - - - Alerts - - - - - Ui_customEditDialog - - - Move slide down 1 - - - - - Ui_AmendThemeDialog - - Font: - + + Select the import format, and where to import from. + - - - ServiceManager - - Load an existing service - + + Format: + Format: - - - Ui_MainWindow - - Toggle the visibility of the Theme Manager - + + OpenLyrics + - - - PresentationTab - - Presentations - + + OpenSong + OpenSong - - - SplashScreen - - Starting - + + CCLI + - - - ImageTab - - Slide Loop Delay: - + + CSV + - - - ServiceManager - - Move to end - + + Add Files... + - - - AlertsTab - - Alert timeout: - + + Remove File(s) + - - - Ui_MainWindow - - &Preview Pane - + + Filename: + - - - MediaManagerItem - - Add a new - + + Browse... + - - - ThemeManager - - Select Theme Import File - + + Importing + - - New Theme - + + Please wait while your songs are imported. + - - - MediaMediaItem - - Media - + + Ready. + Klar. - - - Ui_BibleImportWizard - - Password: - + + %p% + - - - Ui_AmendThemeDialog + + + SongsPlugin.MediaItem - - Outline Size: - + + Song + Sang - - - Ui_OpenSongExportDialog - - Progress: - + + Song Maintenance + - - - AmendThemeForm - - Second Color: - + + Maintain the lists of authors, topics and books + Rediger liste over forfattere, emner og bøker. - - - Ui_EditSongDialog - - Theme, Copyright Info && Comments - + + Search: + Søk: - - - Ui_MainWindow - - &Theme Manager - + + Type: + Type: - - - Ui_OpenLPImportDialog - - Select openlp.org songfile to import: - + + Clear + - - - Ui_EditSongDialog - - Song Book - + + Search + Søk - - - Ui_OpenLPExportDialog - - Author - + + Titles + Titler - - - Ui_AmendThemeDialog - - Wrap Indentation - + + Lyrics + - - - ThemeManager - - Import a theme - + + Authors + - - - ImageMediaItem - - Image - + + You must select an item to edit. + - - - SongsTab - - Enable search as you type: - + + You must select an item to delete. + - - - Ui_AlertDialog - - Cancel - + + CCLI Licence: + CCLI lisens: - - - Ui_OpenLPImportDialog - - Import - + + Are you sure you want to delete the selected song? + - - - Ui_EditVerseDialog - - Chorus - + + Are you sure you want to delete the %d selected songs? + - - - Ui_EditSongDialog - - Edit All - + + Delete Song(s)? + - - - AuthorsForm + + + SongsPlugin.SongBookForm - - You need to type in the last name of the author. - + + Song Book Maintenance + - - - SongsTab - - Songs Mode - + + &Name: + - - - Ui_AmendThemeDialog - - Left - + + &Publisher: + - - - ThemesTab - - 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. - + + Error + Feil - - - ImageTab - - Images - + + You need to type in a name for the book. + - - - BibleMediaItem + + + SongsPlugin.SongImport - - Verse: - + + copyright + - - - Ui_BibleImportWizard - - CSV - + + © + - - - Ui_OpenLPExportDialog + + + SongsPlugin.SongMaintenanceForm - - Song Export List - + + Song Maintenance + - - - ThemeManager - - Export theme - + + Authors + - - - Ui_SongMaintenanceDialog - - Delete - + + Topics + Emne - - - Ui_AmendThemeDialog - - Theme Name: - + + Song Books + - - - Ui_AboutDialog - - About OpenLP - + + &Add + - - - Ui_MainWindow - - Toggle the visibility of the Service Manager - + + &Edit + &Rediger - - - PresentationMediaItem - - A presentation with that filename already exists. - + + &Delete + - - - ImageMediaItem - - Allow the background of live slide to be overridden - + + Error + Feil - - - SongUsageDeleteForm - - Are you sure you want to delete selected Song Usage data? - + + Could not add your author. + - - - AlertsTab - - openlp.org - + + This author already exists. + - - - ImportWizardForm - - Invalid Books File - + + Could not add your topic. + - - - Ui_OpenLPImportDialog - - Song Title - + + This topic already exists. + - - - MediaManagerItem - - &Show Live - + + Could not add your book. + - - - AlertsTab - - Keep History: - + + This book already exists. + - - - Ui_AmendThemeDialog - - Image: - + + Could not save your changes. + - - - ImportWizardForm - - Open Verses CSV file - + + Could not save your modified author, because he already exists. + - - - Ui_customEditDialog - - Set Theme for Slides - + + Could not save your modified topic, because it already exists. + - - - Ui_MainWindow - - More information about OpenLP - + + Delete Author + - - - AlertsTab - - Background Color: - + + Are you sure you want to delete the selected author? + Er du sikker på at du vil slette den valgte forfatteren? - - - SongMaintenanceForm - - No topic selected! - + + This author cannot be deleted, they are currently assigned to at least one song. + - - - Ui_MainWindow - - &Media Manager - + + No author selected! + Ingen forfatter er valgt! - - &Tools - + + Delete Topic + Slett emne - - - AmendThemeForm - - Background Color: - + + Are you sure you want to delete the selected topic? + - - - Ui_EditSongDialog - - A&dd to Song - + + This topic cannot be deleted, it is currently assigned to at least one song. + - - Title: - + + No topic selected! + - - - GeneralTab - - Screen - + + Delete Book + Slett bok - - - SongMaintenanceForm - - This topic can't be deleted, it is currently assigned to at least one song. - + + Are you sure you want to delete the selected book? + Er du sikker på at du vil slette den merkede boken? - - - AlertsTab - - s - + + This book cannot be deleted, it is currently assigned to at least one song. + - - - Ui_AlertEditDialog - - Clear - + + No book selected! + Ingen bok er valgt! - - - Ui_BibleImportWizard + + + SongsPlugin.SongsTab - - Please wait while your Bible is imported. - + + Songs + Sanger - - - MediaManagerItem - - No items selected... - + + Songs Mode + - - - Ui_OpenLPImportDialog - - Select All - + + Enable search as you type + - - - Ui_AmendThemeDialog - - Font Main - + + Display verses on live tool bar + - - - Ui_OpenLPImportDialog + + + SongsPlugin.TopicsForm - - Title - + + Topic Maintenance + - - - Ui_OpenSongExportDialog - - Select OpenSong song folder: - + + Topic name: + Emnenavn: - - - Ui_MainWindow - - Toggle Media Manager - + + Error + Feil - - - SongUsagePlugin - - &Song Usage - + + You need to type in a topic name! + Skriv inn et emnenavn! - - - GeneralTab + + + SongsPlugin.VerseType - - Monitors - + + Verse + Vers - - - EditCustomForm - - You need to enter a slide - + + Chorus + - - - ThemeManager - - You have not selected a theme. - + + Bridge + - - - Ui_EditVerseDialog - - Verse Type - + + Pre-Chorus + Pre-Chorus - - - ImportWizardForm - - You need to specify a file to import your Bible from. - + + Intro + - - - Ui_EditSongDialog - - Comments - - - - - AlertsTab - - - Bottom - - - - - Ui_MainWindow - - - Create a new Service - - - - - AlertsTab - - - Top - Topp - - - SlideController - - - Preview - - - - - Ui_PluginViewDialog - - - TextLabel - - - - - About: - Om: - - - Inactive - - - - - Ui_OpenSongExportDialog - - - Ready to export - Klar til eksportering - - - Export - Eksporter - - - Ui_PluginViewDialog - - - Plugin List - - - - - Ui_AmendThemeDialog - - - Transition Active: - - - - - Ui_BibleImportWizard - - - Proxy Server (Optional) - - - - - Ui_EditSongDialog - - - &Manage Authors, Topics, Books - - - - - Ui_OpenLPExportDialog - - - Ready to export - Klar for eksportering - - - ImageMediaItem - - - Images (*.jpg *.jpeg *.gif *.png *.bmp);; All files (*) - - - - - EditCustomForm - - - Save && Preview - - - - - Ui_OpenLPExportDialog - - - Select All - Merk alt - - - Ui_SongUsageDetailDialog - - - to - til - - - Ui_AmendThemeDialog - - - Size: - Størrelse: - - - MainWindow - - - OpenLP Main Display Blanked - - - - - Ui_OpenLPImportDialog - - - Remove Selected - - - - - OpenSongBible - - - Importing - - - - - ServiceManager - - - Move &up - - - - - ImportWizardForm - - - You need to specify an OpenSong Bible file to import. - - - - - Ui_MainWindow - - - Ctrl+S - Ctrl+S - - - PresentationMediaItem - - - File exists - Filen eksisterer - - - Ui_OpenSongImportDialog - - - Ready to import - - - - - SlideController - - - Stop continuous loop - - - - - s - - - - - ImagePlugin - - - <b>Image Plugin</b><br>Allows images of all types to be displayed. If a number of images are selected together and presented on the live controller it is possible to turn them into a timed loop.<br<br>From the plugin if the <i>Override background</i> is chosen and an image is selected any songs which are rendered will use the selected image from the background instead of the one provied by the theme.<br> - - - - - SongMediaItem - - - Song Maintenance - - - - - Ui_customEditDialog - - - Edit - - - - - Ui_AmendThemeDialog - - - Gradient : - - - - - BiblesTab - - - Layout Style: - - - - - ImportWizardForm - - - Invalid Verse File - - - - - EditSongForm - - - Error - - - - - Ui_customEditDialog - - - Add New - Legg til Ny - - - Ui_AuthorsDialog - - - Display name: - - - - - SongMaintenanceForm - - - Are you sure you want to delete the selected topic? - - - - - Ui_AmendThemeDialog - - - Bold/Italics - - - - - Ui_SongMaintenanceDialog - - - Song Maintenance - - - - - Ui_EditVerseDialog - - - Bridge - - - - - SongsTab - - - Songs - Sanger - - - Ui_AmendThemeDialog - - - Preview - - - - - Ui_AboutDialog - - - Credits - - - - - MediaManagerItem - - - Preview the selected item - - - - - Ui_BibleImportWizard - - - Version Name: - Versjons Navn: - - - Ui_AboutDialog - - - About - Om - - - Ui_EditVerseDialog - - - Ending - - - - - Ui_AmendThemeDialog - - - Horizontal Align: - - - - - ServiceManager - - - &Edit Item - - - - - Ui_AmendThemeDialog - - - Background Type: - - - - - Ui_MainWindow - - - &Save - &Lagre - - - OpenLP 2.0 - OpenLP 2.0 - - - ThemeManager - - - A theme with this name already exists, would you like to overwrite it? - - - - - Export a theme - Eksporter tema - - - AmendThemeForm - - - Open file - Åpne fil - - - Ui_TopicsDialog - - - Topic Maintenance - - - - - Ui_customEditDialog - - - Clear edit area - - - - - Ui_AmendThemeDialog - - - Show Outline: - - - - - ServiceManager - - - Move to &bottom - - - - - SongBookForm - - - You need to type in a book name! - - - - - ImportWizardForm - - - Open OpenSong Bible - - - - - Ui_MainWindow - - - Look && &Feel - - - - - Ui_BibleImportWizard - - - Ready. - Klar. - - - Ui_SongMaintenanceDialog - - - Books/Hymnals - - - - - Ui_AboutDialog - - - Contribute - - - - - Ui_AmendThemeDialog - - - Gradient - - - - - AlertsTab - - - Font Size: - - - - - Ui_OpenSongExportDialog - - - Full Song List - + + Ending + - - - BibleMediaItem - - Bible not fully loaded - + + Other + Annet - - + diff --git a/resources/i18n/openlp_pt_BR.ts b/resources/i18n/openlp_pt_BR.ts index 991c027d0..3d77dc6e8 100644 --- a/resources/i18n/openlp_pt_BR.ts +++ b/resources/i18n/openlp_pt_BR.ts @@ -1,4254 +1,3893 @@ - - - - BibleMediaItem - - - Quick - Rápido - - - Ui_customEditDialog - - - Delete selected slide - Deletar slide selecionado - - - BiblesTab - - - ( and ) - ( e ) - - - RemoteTab - - - Remotes - Remoto - - - Ui_EditSongDialog - - - &Remove - &Remover - - - Ui_AmendThemeDialog - - - Shadow Size: - Tamanho da sombra: - - - Ui_OpenSongExportDialog - - - Close - Fechar - - - ThemeManager - - - Import Theme - Importar Tema - - - Ui_AmendThemeDialog - - - Slide Transition - Transição do Slide - - - SongMaintenanceForm - - - Are you sure you want to delete the selected book? - Você tem certeza que deseja deletar o livro selecionado? - - - ThemesTab - - - Theme level - Nível do Tema - - - BibleMediaItem - - - Bible - Bíblia - - - ServiceManager - - - Save Changes to Service? - Salvar Mudanças no Culto? - - - SongUsagePlugin - - - &Delete recorded data - &Deletar dados armazenados - - - Ui_OpenLPExportDialog - - - Song Title - Título da Música - - - Ui_customEditDialog - - - Edit selected slide - Editar slide selecionado - - - SongMediaItem - - - CCLI Licence: - Licença CCLI: - - - Ui_SongUsageDeleteDialog - - - Audit Delete - Deletar Auditoria - - - Ui_BibleImportWizard - - - Bible Import Wizard - Assistente de Importação da Bíblia - - - Ui_customEditDialog - - - Edit All - Editar Todos - - - Ui_ServiceNoteEdit - - - Service Item Notes - Item de Notas de Culto - - - SongMaintenanceForm - - - Couldn't save your author! - Não foi possível salvar seu autor! - - - Ui_customEditDialog - - - Clear - Limpar - - - ThemesTab - - - Global theme - Tema global - - - SongUsagePlugin - - - Start/Stop live song usage recording - Iniciar/Parar registro do uso de músicas - - - MainWindow - - - The Main Display has been blanked out - A Tela Principal foi apagada - - - Ui_OpenSongExportDialog - - - Lyrics - Letras - - - Ui_AlertDialog - - - Display - Tela - - - Ui_customEditDialog - - - Delete - Deletar - - - Ui_EditVerseDialog - - - Verse - Versículo - - - SongMaintenanceForm - - - This author can't be deleted, they are currently assigned to at least one song! - Este autor não pode ser deletado. Ele está atualmente cadastrado em pelo menos uma música! - - - ThemeManager - - - Create a new theme - Criar um novo tema - - - Ui_MainWindow - - - Open an existing service - Abrir um culto existente - - - SlideController - - - Move to previous - Mover para o anterior - - - SongsPlugin - - - &Song - &Música - - - Ui_PluginViewDialog - - - Plugin Details - Detalhes do Plugin - - - AlertsTab - - - pt - pt - - - Edit History: - Editar Histórico: - - - Ui_MainWindow - - - &File - &Arquivo - - - SongMaintenanceForm - - - Couldn't add your book! - Não foi possível adicionar o seu livro! - - - BiblesTab - - - verse per line - versículo por linhaVerificar se é necessário colocar versículo no plural - - - Ui_customEditDialog - - - Theme: - Tema: - - - SongMaintenanceForm - - - Error - Erro - - - Ui_BibleImportWizard - - - Bible: - Bíblia: - - - ImportWizardForm - - - You need to specify a file with books of the Bible to use in the import! - Você precisa especificar um arquivo com os livros da Bíblia para usar a importação! - - - ThemeManager - - - Delete Theme - Deletar Tema - - - SplashScreen - - - Splash Screen - Tela InicialVerificar se é a melhor tradução. - - - SongMediaItem - - - Song - Música - - - SongUsageDeleteForm - - - Delete Selected Audit Events? - Deletar Eventos de Auditoria Selecionados? - - - Ui_OpenSongExportDialog - - - Song Title - Título da Música - - - Ui_AmendThemeDialog - - - Bottom - Rodapé - - - Ui_MainWindow - - - List the Plugins - Listar os Plugins - - - SongMaintenanceForm - - - No author selected! - Nenhum autor selecionado! - - - SongUsagePlugin - - - <b>SongUsage Plugin</b><br>This plugin records the use of songs and when they have been used during a live service - <b>Plugin de Uso das Músicas</b><br>Este plugin registra o uso das músicas e quando elas foram usadas durante um culto - - - Ui_customEditDialog - - - Move slide Up 1 - Mover slide para cima 1Verificar o uso do 1 - - - SongsPlugin - - - OpenSong - OpenSong - - - AlertsManager - - - Alert message created and delayed - Mensagem de alerta criada e atrasada - - - Ui_EditSongDialog - - - Alternative Title: - Título Alternativo: - - - ServiceManager - - - Open Service - Abrir Culto - - - BiblesTab - - - Display Style: - Estilo de Exibição: - - - Ui_AmendThemeDialog - - - Image - Imagem - - - EditSongForm - - - You need to enter a song title. - Você precisa digitar um título para a música. - - - ThemeManager - - - Error - Erro - - - ImportWizardForm - - - Invalid Bible Location - Localização da Bíblia Inválida - - - ThemesTab - - - Global level - Nível Global - - - ThemeManager - - - Make Global - Tornar Global - - - Ui_MainWindow - - - &Service Manager - &Gerenciador de Culto - - - Ui_OpenLPImportDialog - - - Author - Autor - - - Ui_AmendThemeDialog - - - Height: - Altura: - - - ThemeManager - - - Delete a theme - Deletar um tema - - - Ui_BibleImportWizard - - - Crosswalk - Crosswalk - - - SongBookForm - - - Error - Erro - - - Ui_AuthorsDialog - - - Last name: - Sobrenome: - - - Ui_customEditDialog - - - Title: - Título: - - - ImportWizardForm - - - You need to set a copyright for your Bible! Bibles in the Public Domain need to be marked as such. - Você precisa definir um direito autoral para a sua Bíblia! Bíblias em Domínio Público necessitam ser marcadas como tal. - - - SongMediaItem - - - Maintain the lists of authors, topics and books - Gerenciar as listas de autores, tópicos e livros - - - Ui_AlertEditDialog - - - Save - Salvar - - - EditCustomForm - - - You have unsaved data - Você possui dados não gravados - - - Ui_AmendThemeDialog - - - Outline - Esboço - - - BibleMediaItem - - - Text Search - Busca de Texto - - - Ui_BibleImportWizard - - - CSV - CSV - - - SongUsagePlugin - - - Delete song usage to specified date - Deletar uso da música para a data especificada - - - Ui_SongUsageDetailDialog - - - Report Location - Localização do Relatório - - - Ui_BibleImportWizard - - - OpenSong - OpenSong - - - Ui_MainWindow - - - Open Service - Culto Aberto - - - BibleMediaItem - - - Find: - Buscar: - - - ImageMediaItem - - - Select Image(s) - Selecionar Imagem(s)verificar o uso do (s) - - - BibleMediaItem - - - Search Type: - Tipo de Busca: - - - Ui_MainWindow - - - Media Manager - Gerenciador de Mídia - - - Alt+F4 - Alt+F4 - - - MediaManagerItem - - - &Preview - &Pré-Visualização - - - GeneralTab - - - CCLI Details - Detalhes de CCLI - - - BibleMediaItem - - - Bible not fully loaded - Bíblia não carregada completamente - - - Ui_MainWindow - - - Toggle the visibility of the Preview Panel - Alternar a visibilidade do Painel de Pré-Visualização - - - ImportWizardForm - - - Bible Exists - Bíblia Existe - - - Ui_MainWindow - - - &User Guide - &Guia do Usuário - - - SongUsageDeleteForm - - - Are you sure you want to delete selected Audit Data? - Você tem certeza que deseja deletar o Registro de Auditoria selecionado? - - - Ui_MainWindow - - - Set the interface language to English - Definir a linguagem da interface para Inglês - - - Ui_AmendThemeDialog - - - Main Font - Fonte Principal - - - ImportWizardForm - - - Empty Copyright - Limpar Direito Autoral - - + + + + 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 + + + + + AlertsPlugin.AlertForm + + + Alert Message + Mensagem de Alerta + + + + Alert &text: + + + + + &Parameter(s): + + + + + &New + &Novo + + + + &Save + &Salvar + + + + &Delete + + + + + Displ&ay + + + + + Display && Cl&ose + + + + + &Close + + + + + New Alert + + + + + You haven't specified any text for your alert. Please type in some text before clicking New. + + + + + AlertsPlugin.AlertsManager + + + Alert message created and displayed. + + + + + AlertsPlugin.AlertsTab + + + Alerts + Alertas + + + + Font + Fonte + + + + Font name: + + + + + Font color: + + + + + Background color: + + + + + Font size: + + + + + pt + pt + + + + Alert timeout: + Tempo Limite para o Alerta: + + + + s + s + + + + Location: + Localização: + + + + Preview + + + + + OpenLP 2.0 + OpenLP 2.0 + + + + Top + Topo + + + + Middle + Meio + + + + Bottom + + + + + 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. + + + + + BiblesPlugin.BibleDB + + + Book not found + + + + + The book you requested could not be found in this bible. Please check your spelling and that this is a complete bible not just one testament. + + + + + BiblesPlugin.BiblesTab + + + Bibles + Bíblias + + + + Verse Display + Exibição do Versículo + + + + Only show new chapter numbers + Somente mostre números de capítulos novos + + + + Layout style: + + + + + Display style: + + + + + Bible theme: + + + + + Verse Per Slide + + + + + Verse Per Line + + + + + Continuous + + + + + No Brackets + + + + + ( And ) + + + + + { And } + + + + + [ And ] + + + + + Note: +Changes do not affect verses already in the service. + + + + + Display dual Bible verses + + + + + BiblesPlugin.ImportWizardForm + + + Bible Import Wizard + Assistente de Importação da Bíblia + + + + Welcome to the Bible Import Wizard + Bem Vindo ao assistente de Importação de Bíblias + + + + This wizard will help you to import Bibles from a variety of formats. Click the next button below to start the process by selecting a format to import from. + Este assistente irá ajudá-lo a importar Bíblias de uma variedade de formatos. Clique no botão próximo abaixo para comecar o processo selecionando o formato a ser importado. + + + + 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: + + + + OSIS + OSIS + + + + CSV + CSV + + + + OpenSong + OpenSong + + + + Web Download + Download da Internet + + + + File location: + + + + + Books location: + + + + + Verse location: + + + + + Bible filename: + + + + + Location: + Localização: + + + + Crosswalk + Crosswalk + + + + BibleGateway + BibleGateway + + + + Bible: + Bíblia: + + + + Download Options + Opções de Download + + + + Server: + Servidor: + + + + Username: + Nome de Usuário: + + + + Password: + Senha: + + + + Proxy Server (Optional) + Servidor Proxy (Opcional) + + + + License Details + Detalhes da Licença + + + + Set up the Bible's license details. + Configurar detalhes de licença da Bíblia. + + + + Version name: + + + + + Copyright: + Direito Autoral: + + + + Permission: + Permissão: + + + + Importing + Importando + + + + Please wait while your Bible is imported. + Por favor aguarde enquanto a sua Bíblia é importada. + + + + Ready. + Pronto. + + + + Invalid Bible Location + Localização da Bíblia Inválida + + + + You need to specify a file to import your Bible from. + + + + + Invalid Books File + Arquivo de Livros Inválido + + + + You need to specify a file with books of the Bible to use in the import. + + + + + Invalid Verse File + Arquivo de Versículo Inválido + + + + You need to specify a file of Bible verses to import. + + + + + Invalid OpenSong Bible + Bíblia do OpenSong Inválida + + + + You need to specify an OpenSong Bible file to import. + + + + + Empty Version Name + Nome da Versão Vazio + + + + You need to specify a version name for your Bible. + + + + + Empty Copyright + Limpar Direito Autoral + + + + You need to set a copyright for your Bible! Bibles in the Public Domain need to be marked as such. + Você precisa definir um direito autoral para a sua Bíblia! Bíblias em Domínio Público necessitam ser marcadas como tal. + + + + Bible Exists + Bíblia Existe + + + + This Bible already exists! Please import a different Bible or first delete the existing one. + A Bíblia já existe! Por favor importe uma Bíblia diferente ou primeiro delete a existente. + + + + Open OSIS File + + + + + Open Books CSV File + + + + + Open Verses CSV File + + + + + Open OpenSong Bible + Abrir Biblia do OpenSong + + + + Starting import... + Iniciando importação... + + + + Finished import. + Importação Finalizada. + + + + Your Bible import failed. + A sua Importação da Bíblia falhou. + + + + BiblesPlugin.MediaItem + + + Bible + Bíblia + + + + Quick + Rápido + + + + Advanced + Avançado + + + + Version: + Versão: + + + + Dual: + Duplo: + + + + Search type: + + + + + 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. + + + + + BiblesPlugin.Opensong + + + Importing + Importando + + + CustomPlugin - - <b>Custom Plugin</b><br>This plugin allows slides to be displayed on the screen in the same way songs are. This plugin provides greater freedom over the songs plugin.<br> - <b>Plugin Customizado</b><br>Este plugin permite que slides sejam exibidos na tela da mesma maneira que as músicas. Este plugin fornece uma grande liberdade sobre o plugin de músicas.<br> - - - AuthorsForm - - - You need to type in the first name of the author. - Você precisa digitar o primeiro nome do autor. - - - SongsTab - - - Display Verses on Live Tool bar: - Exibir Versículos na Barra Ao Vivo:Verificar contexto. - - - ServiceManager - - - Move to top - Mover para o topo - - - ImageMediaItem - - - Override background - Sobrescrever fundo de tela - - - Ui_SongMaintenanceDialog - - - Edit - Editar - - - Ui_OpenSongExportDialog - - - Select All - Selecionar Tudo - - - ThemesTab - - - Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. - Use o tema de cada música na base de dados. Se uma música não tiver um tema associado com ela, então use o tema do culto. Se o culto não tiver um tema, então use o tema global. - - - PresentationMediaItem - - - Presentation - Apresentação - - - Ui_AmendThemeDialog - - - Solid Color - Cor Sólida - - - CustomTab - - - Custom - Customizado - - - Ui_OpenLPImportDialog - - - Ready to import - Pronto para a importação - - - MainWindow - - - OpenLP version %s has been updated to version %s - -You can obtain the latest version from http://openlp.org - A versão do OpenLP %s foi atualizada para a versão %s - -Você pode obter a última versão no site http://openlp.org - - - Ui_BibleImportWizard - - - File Location: - Localização do Arquivo: - - - SlideController - - - Go to Verse - Ir ao Versículo - - - Ui_MainWindow - - - &Import - &Importar - - - Quit OpenLP - Fechar o OpenLP - - - Ui_BibleImportWizard - - - This wizard will help you to import Bibles from a variety of formats. Click the next button below to start the process by selecting a format to import from. - Este assistente irá ajudá-lo a importar Bíblias de uma variedade de formatos. Clique no botão próximo abaixo para comecar o processo selecionando o formato a ser importado. - - - SongMaintenanceForm - - - Couldn't add your topic! - Não foi possível adicionar o seu tópico! - - - ImportWizardForm - - - Empty Version Name - Nome da Versão Vazio - - - Ui_MainWindow - - - &Preview Panel - &Painel de Pré-Visualização - - - SlideController - - - Start continuous loop - Iniciar repetição contínua - - - ServiceManager - - - Move down - Mover para baixo - - - GeneralTab - - - primary - principal - - - Ui_EditSongDialog - - - Add a Theme - Adicionar um Tema - - - Ui_MainWindow - - - &New - &Novo - - - Ui_customEditDialog - - - Credits: - Créditos: - - - SlideController - - - Live - Ao Vivo - - - GeneralTab - - - Show blank screen warning - Exibir alerta de tela em branco - - - BiblesTab - - - continuous - continuamente - - - Ui_EditVerseDialog - - - Number - Número - - - GeneralTab - - - Application Startup - Inicialização da Aplicação - - - Ui_AmendThemeDialog - - - Use Default Location: - Usar Localização Padrão: - - - Ui_OpenSongImportDialog - - - Import - Importar - - - Ui_AmendThemeDialog - - - Other Options - Outras Opções - - - Ui_EditSongDialog - - - Verse Order: - Ordem dos Versículos: - - - Ui_SongUsageDetailDialog - - - ASelect Date Range - Selecione o Intervalo de Data - - - Ui_MainWindow - - - Default Theme: - Tema Padrão: - - - Toggle Preview Panel - Alternar para Painel de Pré-Visualização - - - SongMediaItem - - - Lyrics - Letras - - - Ui_OpenLPImportDialog - - - Progress: - Progresso: - - - Ui_AmendThemeDialog - - - Shadow - Sombra - - - GeneralTab - - - Select monitor for output display: - Selecione um monitor para exibição: - - - Ui_MainWindow - - - &Settings - &Configurações - - - Ui_AmendThemeDialog - - - Italics - Itálico - - - ServiceManager - - - Create a new service - Criar um novo culto - - - Ui_AmendThemeDialog - - - Background: - Tela de Fundo: - - - Ui_OpenLPImportDialog - - - openlp.org Song Importer - Importador de Músicas openlp.org - - - Ui_BibleImportWizard - - - Copyright: - Direito Autoral: - - - ThemesTab - - - Service level - Nível do Serviço - - - BiblesTab - - - [ and ] - [ e ] - - - Ui_BibleImportWizard - - - Verse Location: - Localização do Versículo: - - - MediaManagerItem - - - You must select one or more items - Você precisa selecionar um ou mais itens - - - GeneralTab - - - Application Settings - Configurações da Aplicação - - - ServiceManager - - - Save this service - Salvar este culto - - - ImportWizardForm - - - Open Books CSV file - Abrir arquivo CSV de Livros - - - GeneralTab - - - SongSelect Username: - Usuário do SongSelect: - - - Ui_AmendThemeDialog - - - X Position: - Posição X: - - - BibleMediaItem - - - No matching book could be found in this Bible. - Nenhum livro foi encontrado nesta Bíblia - - - Ui_BibleImportWizard - - - Server: - Servidor: - - - SongMaintenanceForm - - - Couldn't save your book! - Não foi possível salver o seu livro! - - - Ui_EditVerseDialog - - - Ending - Terminando - - - CustomTab - - - Display Footer: - Exibir Rodapé: - - - ImportWizardForm - - - Invalid OpenSong Bible - Bíblia do OpenSong Inválida - - - GeneralTab - - - CCLI Number: - Número CCLI: - - - Ui_AmendThemeDialog - - - Center - Centralizar - - - ServiceManager - - - Theme: - Tema: - - - Ui_MainWindow - - - &Live - &Ao Vivo - - - Ui_AmendThemeDialog - - - <Color2> - <Color2> - - - Ui_MainWindow - - - English - Inglês - - - ImageMediaItem - - - You must select one or more items - Você precisa selecionar um ou mais itens - - - Ui_AuthorsDialog - - - First name: - Primeiro Nome: - - - Ui_OpenLPExportDialog - - - Select openlp.org export filename: - Selecione um nome de arquivo do tipo openlp.org para exportação: - - - Ui_BibleImportWizard - - - Permission: - Permissão: - - - Ui_OpenSongImportDialog - - - Close - Fechar - - - Ui_AmendThemeDialog - - - Opaque - Opaco - - - SongMaintenanceForm - - - This book can't be deleted, it is currently assigned to at least one song! - Este livro não pode ser deletado pois está atribuída para pelo meno uma música! - - - ImportWizardForm - - - Your Bible import failed. - A sua Importação da Bíblia falhou. - - - SlideController - - - Start playing media - Iniciar a reprodução de mídia - - - SongMediaItem - - - Type: - Tipo: - - - Ui_AboutDialog - - - Close - Fechar - - - TopicsForm - - - You need to type in a topic name! - Você precisa digitar um nome para o tópico! - - - Ui_OpenSongExportDialog - - - Song Export List - Lista de Exportação de Músicas - - - BibleMediaItem - - - Dual: - Duplo: - - - ImageTab - - - sec - seg - - - ServiceManager - - - Delete From Service - Deletar do Culto - - - GeneralTab - - - Automatically open the last service - Abrir o último culto automaticamente - - - Ui_OpenLPImportDialog - - - Song Import List - Lista de Importação de Músicas - - - Ui_OpenSongExportDialog - - - Author - Autor - - - Ui_AmendThemeDialog - - - Outline Color: - Cor do Esboço: - - - Ui_BibleImportWizard - - - Select Import Source - Selecionar Origem da Importação - - - Ui_MainWindow - - - F9 - F9 - - - F8 - F8 - - - ServiceManager - - - &Change Item Theme - &Alterar Tema do Item - - - Ui_OpenSongImportDialog - - - OpenSong Folder: - Diretório do OpenSong: - - - Ui_OpenLPImportDialog - - - Import File Song List - Importar Arquivo com Lista de Músicas - - - Ui_customEditDialog - - - Edit Custom Slides - Editar Slides Customizados - - - Ui_BibleImportWizard - - - Set up the Bible's license details. - Configurar detalhes de licença da Bíblia. - - - Ui_AmendThemeDialog - - - Alignment - Alinhamento - - - SongMaintenanceForm - - - Delete Book - Deletar Livro - - - ThemeManager - - - Edit a theme - Editar um tema - - - Ui_BibleImportWizard - - - BibleGateway - BibleGateway - - - GeneralTab - - - Preview Next Song from Service Manager - Pré-Visualizar Próxima Música do Gerenciamento de Culto - - - Ui_EditSongDialog - - - Title && Lyrics - Título && Letras - - - SongMaintenanceForm - - - No book selected! - Nenhum livro selecionado! - - - SlideController - - - Move to live - Mover para ao vivo - - - Ui_EditVerseDialog - - - Other - Outro - - - Ui_EditSongDialog - - - Theme - Tema - - - ServiceManager - - - Save Service - Salvar Culto - - - Ui_MainWindow - - - Save the current service to disk - Salvar o culto atual no disco - - - BibleMediaItem - - - Chapter: - Capítulo: - - - Search - Buscar - - - PresentationTab - - - Available Controllers - Controladores Disponíveis - - - ImportWizardForm - - - Open Verses CSV file - Abrir arquivo CSV de Versículos - - - TopicsForm - - - Error - Erro - - - RemoteTab - - - Remotes Receiver Port - Porta Recebedora Remota - - - Ui_MainWindow - - - &View - &Visualizar - - - Ui_AmendThemeDialog - - - Normal - Normal - - - Ui_OpenLPExportDialog - - - Close - Fechar - - - Ui_BibleImportWizard - - - Username: - Nome de Usuário: - - - ThemeManager - - - Edit Theme - Editar Tema - - - SlideController - - - Preview - Pré-Visualizar - - - Ui_AlertDialog - - - Alert Message - Mensagem de Alerta - - - ImportWizardForm - - - Finished import. - Importação Finalizada. - - - You need to specify a file of Bible verses to import! - Você precisa especificar um arquivo de versículos da Bíblia para importar! - - - AlertsTab - - - Location: - Localização: - - - Ui_EditSongDialog - - - Authors, Topics && Book - Autores, Tópicos && Livro - - - EditSongForm - - - You need to enter some verses. - Você precisa inserir alguns versículos. - - - Ui_BibleImportWizard - - - Download Options - Opções de Download - - - BiblePlugin - - - <strong>Bible Plugin</strong><br />This plugin allows bible verses from different sources to be displayed on the screen during the service. - <strong>Plugin da Bíblia</strong>Este plugin permite exibir na tela versículos bíblicos de diferentes versões durante o culto. - - - Ui_EditSongDialog - - - Copyright Information - Informação de Direitos Autorais - - - Ui_MainWindow - - - &Export - &Exportar - - - Ui_AmendThemeDialog - - - Bold - Negrito - - - SongsPlugin - - - Export songs in OpenLP 2.0 format - Exportar músicas no formato OpenLP 2.0 - - - MediaManagerItem - - - Load a new - Carregar um novo - - - AlertEditForm - - - Missing data - Dados Faltando - - - SongsPlugin - - - <b>Song Plugin</b> <br>This plugin allows Songs to be managed and displayed.<br> - <b>Plugin de Músicas</b> <br>Este plugin permite que Músicas sejam gerenciadas e exibidas.<br> - - - Ui_AmendThemeDialog - - - Footer Font - Fonte do Rodapé - - - EditSongForm - - - Invalid verse entry - vX - Entrada de versículo inválida - vX - - - MediaManagerItem - - - Delete the selected item - Deletar o item selecionado - - - Ui_OpenLPExportDialog - - - Export - Exportar - - - Ui_BibleImportWizard - - - Location: - Localização: - - - BibleMediaItem - - - Keep - Manter - - - SongUsagePlugin - - - Generate report on Song Usage - Gerar relatório de Uso das Músicas - - - Ui_EditSongDialog - - - Topic - Tópico - - - Ui_MainWindow - - - &Open - &Abrir - - - AuthorsForm - - - You haven't set a display name for the author, would you like me to combine the first and last names for you? - Você não configurou um nome de exibição para o autor. Você quer que eu combine o primeiro e ultimo nomes para você? - - - AmendThemeForm - - - Slide Height is %s rows - A Altura do Slide é de %s linhas - - - Ui_EditVerseDialog - - - Pre-Chorus - Pré-Refrão - - - Ui_EditSongDialog - - - Lyrics: - Letras: - - - Ui_AboutDialog - - - Project Lead - Raoul "superfly" Snyman - -Developers - Tim "TRB143" Bentley - Jonathan "gushie" Corwin - Michael "cocooncrash" Gorven - Scott "sguerrieri" Guerrieri - Raoul "superfly" Snyman - Maikel Stuivenberg - Martin "mijiti" Thompson - Jon "Meths" Tibble - Carsten "catini" Tingaard - -Testers - Wesley "wrst" Stout - Líder do Projeto - Raoul "superfly" Snyman - -Desenvolvedores - Tim "TRB143" Bentley - Jonathan "gushie" Corwin - Michael "cocooncrash" Gorven - Scott "sguerrieri" Guerrieri - Raoul "superfly" Snyman - Maikel Stuivenberg - Martin "mijiti" Thompson - Jon "Meths" Tibble - Carsten "catini" Tingaard - -Testadores - Wesley "wrst" Stout - - - SongMediaItem - - - Titles - Títulos - - - Ui_OpenLPExportDialog - - - Lyrics - Letras - - - PresentationMediaItem - - - Present using: - Apresentar usando: - - - SongMediaItem - - - Clear - Limpar - - - ServiceManager - - - &Live Verse - &Versículo Ao Vivo - - - Ui_OpenSongImportDialog - - - Progress: - Progresso: - - - Ui_MainWindow - - - Toggle Theme Manager - Alternar para Gerenciamento de Temas - - - Ui_AlertDialog - - - Alert Text: - Texto de Alerta: - - - Ui_EditSongDialog - - - Edit - Editar - - - AlertsTab - - - Font Color: - Cor da Fonte: - - - Ui_AmendThemeDialog - - - Theme Maintenance - Manutenção do Tema - - - CustomTab - - - Custom Display - Exibição Customizada - - - Ui_OpenSongExportDialog - - - Title - Título - - - Ui_AmendThemeDialog - - - <Color1> - <Color1> - - - Ui_EditSongDialog - - - Authors - Autores - - - ThemeManager - - - Export Theme - Exportar Tema - - - ServiceManager - - - (N) - (N) - - - Ui_SongBookDialog - - - Name: - Nome: - - - Ui_AuthorsDialog - - - Author Maintenance - Manutenção de Autores - - - Ui_AmendThemeDialog - - - Font Footer - Fonte do Rodapé - - - BiblesTab - - - Verse Display - Exibição do Versículo - - - Ui_MainWindow - - - &Options - &Opções - - - BibleMediaItem - - - Results: - Resultados: - - - Ui_OpenLPExportDialog - - - Full Song List - Lista de Músicas Completa - - - SlideController - - - Move to last - Mover para o último - - - Ui_OpenLPExportDialog - - - Progress: - Progresso: - - - Ui_SongMaintenanceDialog - - - Add - Adicionar - - - SongMaintenanceForm - - - Are you sure you want to delete the selected author? - Você tem certeza que deseja deletar o autor selecionado? - - - SongUsagePlugin - - - Song Usage Status - Status de Uso das Músicas - - - BibleMediaItem - - - Verse Search - Busca de Versículos - - - Ui_SongBookDialog - - - Edit Book - Editar Livro - - - EditSongForm - - - Save && Preview - Salvar && Pré-Visualizar - - - Ui_SongBookDialog - - - Publisher: - Editor: - - - Ui_AmendThemeDialog - - - Font Weight: - Tamanho da Fonte: - - - Ui_BibleImportWizard - - - Bible Filename: - Nome de Arquivo da Bíblia: - - - Ui_AmendThemeDialog - - - Transparent - Transparente - - - SongMediaItem - - - Search - Buscar - - - Ui_BibleImportWizard - - - Format: - Formato: - - - Ui_AmendThemeDialog - - - Background - Plano de Fundo - - - Ui_BibleImportWizard - - - Importing - Importando - - - Ui_customEditDialog - - - Edit all slides - Editar todos os slides - - - SongsTab - - - Enable search as you type: - Habilitar busca ao digitar: - - - Ui_MainWindow - - - Ctrl+S - Ctrl+S - - - SongMediaItem - - - Authors - Autores - - - Ui_PluginViewDialog - - - Active - Ativo - - - SongMaintenanceForm - - - Couldn't save your topic! - Não foi possível salvar o seu tópico! - - - Ui_MainWindow - - - Ctrl+O - Ctrl+O - - - Ctrl+N - Ctrl+N - - - SongMaintenanceForm - - - Couldn't add your author! - Não foi possível adicionar o seu autor! - - - Ui_AlertEditDialog - - - Edit - Editar - - - Ui_EditSongDialog - - - Song Editor - Editor de Músicas - - - AlertsTab - - - Font - Fonte - - - SlideController - - - Edit and re-preview Song - Editar e pré-visualizar Música novamente - - - Delay between slides in seconds - Intervalo entre slides em segundos - - - MediaManagerItem - - - &Edit - &Editar - - - Ui_AmendThemeDialog - - - Vertical - Vertical - - - Width: - Largura: - - - ThemeManager - - - You are unable to delete the default theme! - Você não pode deletar o tema padrão! - - - ThemesTab - - - Use the global theme, overriding any themes associated with either the service or the songs. - Usar o tema global, sobrescrevendo qualquer tema associado com cultos ou músicas. - - - BibleMediaItem - - - Version: - Versão: - - - Ui_AboutDialog - - - OpenLP <version> build <revision> - Open Source Lyrics Projection + + <strong>Custom Plugin</strong><br />The custom plugin provides the ability to set up custom text slides that can be displayed on the screen the same way songs are. This plugin provides greater freedom over the songs plugin. + + + + + CustomPlugin.CustomTab + + + Custom + Customizado + + + + Custom Display + Exibição Customizada + + + + Display footer + + + + + CustomPlugin.EditCustomForm + + + Edit Custom Slides + Editar Slides Customizados + + + + Move slide up once position. + + + + + Move slide down one position. + + + + + &Title: + + + + + Add New + Adicionar Novo + + + + Add a new slide at bottom. + + + + + Edit + Editar + + + + Edit the selected slide. + + + + + 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. + + + + + The&me: + + + + + &Credits: + + + + + Save && Preview + Salvar && Pré-Visualizar + + + + Error + Erro + + + + You need to type in a title. + + + + + You need to add at least one slide + + + + + You have one or more unsaved slides, please either save your slide(s) or clear your changes. + + + + + CustomPlugin.MediaItem + + + Custom + Customizado + + + + You haven't selected an item to edit. + + + + + You haven't selected an item to delete. + + + + + ImagePlugin + + + <strong>Image Plugin</strong><br />The image plugin provides displaying of images.<br />One of the distinguishing features of this plugin is the ability to group a number of images together in the service manager, making the displaying of multiple images easier. This plugin can also make use of OpenLP's "timed looping" feature to create a slide show that runs automatically. In addition to this, images from the plugin can be used to override the current theme's background, which renders text-based items like songs with the selected image as a background instead of the background provided by the theme. + + + + + ImagePlugin.ImageTab + + + Images + Imagens + + + + Image Settings + Configurações de Imagem + + + + Slide loop delay: + + + + + sec + seg + + + + ImagePlugin.MediaItem + + + Image + Imagem + + + + Select Image(s) + Selecionar Imagem(s) + + + + All Files + + + + + Replace Live Background + + + + + Replace 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. + + + + + MediaPlugin + + + <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. + + + + + MediaPlugin.MediaItem + + + Media + Mídia + + + + Select Media + Selecionar Mídia + + + + Replace Live Background + + + + + Replace Background + + + + + You must select a media file to delete. + + + + + OpenLP + + + Image Files + + + + + OpenLP.AboutForm + + + About OpenLP + Sobre o OpenLP + + + + OpenLP <version><revision> - Open Source Lyrics Projection OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if OpenOffice.org, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. Find out more about OpenLP: http://openlp.org/ OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider contributing by using the button below. - OpenLP <version> build <revision> - Projeção de Letras em Código Aberto + + + + + About + Sobre + + + + Project Lead + Raoul "superfly" Snyman -OpenLP é um software livre de apresentação para igrejas (software de projeção de letras de música) usado para exibir slides de músicas, versículos da Bíblia, vídeos, imagens e até apresentações (se o OpenOffice.org, PowerPoint ou PowerPoint Viewer estiver instalado) para o culto da igreja utilizando um computador e um projetor. +Developers + Tim "TRB143" Bentley + Jonathan "gushie" Corwin + Michael "cocooncrash" Gorven + Scott "sguerrieri" Guerrieri + Raoul "superfly" Snyman + Martin "mijiti" Thompson + Jon "Meths" Tibble -Encontre mais sobre o OpenLP: http://openlp.org/ +Contributors + Meinert "m2j" Jordan + Christian "crichter" Richter + Maikel Stuivenberg + Carsten "catini" Tingaard -OpenLP é escrito e mantido por voluntários. Se você quiser ver mais softwares livres sendo escritos, por favor considere contribuir utilizando o botão abaixo. - - - SongsPlugin - - - OpenLP 2.0 - OpenLP 2.0 - - - ServiceManager - - - New Service - Novo Culto - - - Ui_TopicsDialog - - - Topic name: - Nome do tópico: - - - ThemeManager - - - File is not a valid theme! - O arquivo não é um tema válido! - - - Ui_BibleImportWizard - - - License Details - Detalhes da Licença - - - Ui_AboutDialog - - - License - Licença - - - Ui_EditSongDialog - - - R&emove - R&emover - - - Ui_AmendThemeDialog - - - Middle - Meio - - - Ui_customEditDialog - - - Save - Salvar - - - AlertEditForm - - - Item selected to Edit - Item selecionado para Edição - - - BibleMediaItem - - - From: - De: - - - Ui_AmendThemeDialog - - - Shadow Color: - Cor da Sombra: - - - ServiceManager - - - &Notes - &Notas - - - Ui_MainWindow - - - E&xit - S&air - - - Ui_OpenLPImportDialog - - - Close - Fechar - - - MainWindow - - - OpenLP Version Updated - Versão do OpenLP Atualizada - - - Ui_customEditDialog - - - Replace edited slide - Substituir slide editado - - - Add new slide at bottom - Adicionar um novo slide no final - - - EditCustomForm - - - You need to enter a title - Você precisa digitar um título - - - ThemeManager - - - Theme Exists - Tema Existe - - - Ui_MainWindow - - - &Help - &Ajuda - - - Ui_EditVerseDialog - - - Bridge - Ligação - - - Ui_OpenSongExportDialog - - - OpenSong Song Exporter - Exportador de Músicas para o OpenSong - - - Ui_AmendThemeDialog - - - Vertical Align: - Alinhamento Vertical: - - - TestMediaManager - - - Item2 - Item2 - - - Item1 - Item1 - - - Ui_AmendThemeDialog - - - Top - Topo - - - BiblesTab - - - Display Dual Bible Verses - Exibir Versículos Bíblicos Duplos - - - Ui_MainWindow - - - Toggle Service Manager - Alternar para o Gerenciador de Cultos - - - MediaManagerItem - - - &Add to Service - &Adicionar ao Culto - - - AmendThemeForm - - - First Color: - Primeira Cor: - - - ThemesTab - - - Song level - Nível de música - - - alertsPlugin - - - Show an alert message - Exibir uma mensagem de alerta - - - Ui_MainWindow - - - Ctrl+F1 - Ctrl+F1 - - - Save the current service under a new name - Salvar o culto atual com um novo nome - - - Ui_OpenLPExportDialog - - - Remove Selected - Remover Selecionado - - - ThemeManager - - - Delete theme - Deletar tema - - - ImageTab - - - Image Settings - Configurações de Imagem - - - Ui_OpenSongImportDialog - - - OpenSong Song Importer - Importador de Músicas do OpenSong - - - SongUsagePlugin - - - &Extract recorded data - &Extrair dados armazenados - - - AlertsTab - - - Font Name: - Nome da Fonte: - - - Ui_MainWindow - - - &Web Site - &Web Site - - - MediaManagerItem - - - Send the selected item live - Enviar o item selecionado para o ao vivo - - - Ui_MainWindow - - - M&ode - M&odo - - - Translate the interface to your language - Traduzir a interface para o seu idioma - - - Service Manager - Gerenciador de Culto - - - CustomMediaItem - - - Custom - Customizado - - - ImageMediaItem - - - No items selected... - Nenhum item selecionado... - - - Ui_BibleImportWizard - - - OSIS - OSIS - - - SongsPlugin - - - openlp.org 1.0 - openlp.org 1.0 - - - Ui_MainWindow - - - &Theme - &Tema - - - Ui_EditVerseDialog - - - Edit Verse - Editar Versículo - - - Ui_MainWindow - - - &Language - &Idioma - - - ServiceManager - - - Move to end - Mover para o fim - - - Your service is unsaved, do you want to save those changes before creating a new one ? - O seu culto não está salvo. Você deseja salvar estas mudanças antes de criar um novo? - - - Ui_OpenSongExportDialog - - - Remove Selected - Remover Selecionado - - - SongMediaItem - - - Search: - Buscar: - - - MainWindow - - - Save Changes to Service? - Salvar Mudanças no Culto? - - - Your service has changed, do you want to save those changes? - O seu culto foi alterado. Você deseja salvar estas mudanças? - - - EditSongForm - - - Invalid verse entry - values must be Numeric, I,B,C,T,P,E,O - Registro de Verículo inválido - os valores devem ser numéricos, I,B,C,T,P,E,O - - - Ui_EditSongDialog - - - &Add to Song - &Adicionar à Música - - - Ui_MainWindow - - - &About - &Sobre - - - BiblesTab - - - Only show new chapter numbers - Somente mostre números de capítulos novos - - - ImportWizardForm - - - You need to specify a version name for your Bible! - Você precisa especificar um nome de versão para a sua Bíblia! - - - Ui_AlertEditDialog - - - Delete - Deletar - - - EditCustomForm - - - Error - Erro - - - ThemesTab - - - Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. - Usar o tema do culto, sobrescrevendo qualquer um dos temas individuais das músicas. Se o culto não tiver um tema, então use o tema global. - - - SongMaintenanceForm - - - This topic can't be deleted, it is currently assigned to at least one song! - Este tópico não pode ser deletado pois está atualmente atribuído para pelo menos uma música! - - - AlertEditForm - - - Item selected to Add - Item selecionado para Adicionar - - - Ui_AmendThemeDialog - - - Right - Direita - - - ThemeManager - - - Save Theme - (%s) - Salvar Tema - (%s) - - - ImageMediaItem - - - Allow background of live slide to be overridden - Permitir que o plano de fundo do slide ao vivo seja sobrescrito - - - MediaManagerItem - - - Add the selected item(s) to the service - Adicionar o item selecionado ao culto - - - AuthorsForm - - - Error - Erro - - - BibleMediaItem - - - Book: - Livro: - - - Ui_AmendThemeDialog - - - Font Color: - Cor da Fonte: - - - Ui_OpenLPImportDialog - - - Select openlp.org songfile to import: - Selecione um arquivo do openlp.org para importar: - - - Ui_SettingsDialog - - - Settings - Configurações - - - BiblesTab - - - Layout Style: - Estilo do Layout: - - - MediaManagerItem - - - Edit the selected - Editar o selecionado - - - SlideController - - - Move to next - Mover para o próximo - - - Ui_MainWindow - - - &Plugin List - &Lista de Plugin - - - BiblePlugin - - - &Bible - &Bíblia - - - Ui_BibleImportWizard - - - Web Download - Download da Internet - - - Ui_AmendThemeDialog - - - Horizontal - Horizontal - - - ImportWizardForm - - - Open OSIS file - Abrir arquivo OSIS - - - Ui_AmendThemeDialog - - - Circular - Circular - - - pt - pt - - - Ui_MainWindow - - - &Add Tool... - &Adicionar Ferramenta... - - - SongMaintenanceForm - - - Delete Topic - Deletar Tópico - - - ServiceManager - - - Move up - Mover para cima - - - Ui_OpenLPImportDialog - - - Lyrics - Letras - - - BiblesTab - - - No brackets - Sem Parênteses - - - Ui_AlertEditDialog - - - Maintain Alerts - Manter Alertas - - - Ui_AmendThemeDialog - - - px - px - - - ServiceManager - - - Select a theme for the service - Selecione um tema para o culto - - - ThemesTab - - - Themes - Temas - - - ServiceManager - - - Move to bottom - Mover para o fim - - - Ui_PluginViewDialog - - - Status: - Status: - - - Ui_EditSongDialog - - - CCLI Number: - Número CCLI: - - - ImportWizardForm - - - This Bible already exists! Please import a different Bible or first delete the existing one. - A Bíblia já existe! Por favor importe uma Bíblia diferente ou primeiro delete a existente. - - - Ui_MainWindow - - - &Translate - &Traduzir - - - AlertEditForm - - - Please Save or Clear seletced item - Por favor Salve ou Limpe o item selecionado - - - BiblesTab - - - Bibles - Bíblias - - - Ui_SongMaintenanceDialog - - - Authors - Autores - - - SongUsageDetailForm - - - Output File Location - Local do arquivo de saída - - - BiblesTab - - - { and } - { e } - - - GeneralTab - - - Prompt to save Service before starting New - Perguntar para salvar o Culto antes de começar um Novo - - - ImportWizardForm - - - Starting import... - Iniciando importação... - - - BiblesTab - - - Note: -Changes don't affect verses already in the service - Nota: -As mudanças não afetam os versículos que já estão no culto - - - Ui_EditVerseDialog - - - Intro - Introdução - - - ServiceManager - - - Move up order - Mover ordem para cima - - - PresentationTab - - - available - disponível - - - ThemeManager - - - default - padrão - - - SongMaintenanceForm - - - Delete Author - Deletar Autor - - - Ui_AmendThemeDialog - - - Display Location - Local de Exibição - - - Ui_PluginViewDialog - - - Version: - Versão: - - - Ui_AlertEditDialog - - - Add - Adicionar - - - GeneralTab - - - General - Geral - - - Ui_AmendThemeDialog - - - Y Position: - Posição Y: - - - ServiceManager - - - Move down order - Mover ordem para baixo - - - BiblesTab - - - verse per slide - versículos por slide - - - Ui_AmendThemeDialog - - - Show Shadow: - Exibir Sombra: - - - AlertsTab - - - Preview - Pré-Visualizar - - - alertsPlugin - - - <b>Alerts Plugin</b><br>This plugin controls the displaying of alerts on the presentations screen - <b>Plugin de Alertas</b><br>Este plugin controla a exibição de alertas na tela de apresentação - - - GeneralTab - - - Show the splash screen - Exibir a tela inicial - - - Ui_MainWindow - - - New Service - Novo Culto - - - SlideController - - - Move to first - Mover para o primeiro - - - Ui_MainWindow - - - &Online Help - &Ajuda Online - - - SlideController - - - Blank Screen - Tela em Branco - - - Ui_MainWindow - - - Save Service - Salvar Culto - - - Save &As... - Salvar &Como... - - - Toggle the visibility of the Media Manager - Alternar a visibilidade do Gerenciador de Mídia - - - BibleMediaItem - - - No Book Found - Nenhum Livro Encontrado - - - Ui_EditSongDialog - - - Add - Adicionar - - - alertsPlugin - - - &Alert - &Alerta - - - BibleMediaItem - - - Advanced - Avançado - - - ImageMediaItem - - - Image(s) - Imagem(s) - - - Ui_MainWindow - - - F11 - F11 - - - F10 - F10 - - - F12 - F12 - - - Ui_BibleImportWizard - - - Select the import format, and where to import from. - Selecione o formato e de onde será a importação - - - Ui_MainWindow - - - Alt+F7 - Alt+F7 - - - Add an application to the list of tools - Adicionar um aplicação para a lista de ferramentas - - - MediaPlugin - - - <b>Media Plugin</b><br>This plugin allows the playing of audio and video media - <br>Plugin de Mídia</b><br>Este plugin permite a execução de audio e vídeo - - - BiblesTab - - - Bible Theme: - Tema da Bíblia: - - - SongsPlugin - - - Export songs in openlp.org 1.0 format - Exportar músicas no formato openlp.org 1.0 - - - Ui_MainWindow - - - Theme Manager - Gerenciador de Temas - - - AlertsTab - - - Alerts - Alertas - - - Ui_customEditDialog - - - Move slide down 1 - Mover slide para baixo 1 - - - Ui_AmendThemeDialog - - - Font: - Fonte: - - - ServiceManager - - - Load an existing service - Carregar um culto existente - - - Ui_MainWindow - - - Toggle the visibility of the Theme Manager - Alternar a visibilidade do Gerenciador de Temas - - - PresentationTab - - - Presentations - Apresentações - - - SplashScreen - - - Starting - Iniciando - - - ImageTab - - - Slide Loop Delay: - Intervalo para Repetição do Slide: - - - SlideController - - - Verse - Versículo - - - AlertsTab - - - Alert timeout: - Tempo Limite para o Alerta: - - - Ui_MainWindow - - - &Preview Pane - &Painel de Pré-Visualização - - - MediaManagerItem - - - Add a new - Adicionar um novo - - - ThemeManager - - - Select Theme Import File - Selecionar Arquivo de Importação de Tema - - - New Theme - Novo Tema - - - MediaMediaItem - - - Media - Mídia - - - Ui_AmendThemeDialog - - - Preview - Pré-Visualização - - - Outline Size: - Tamanho do Esboço: - - - Ui_OpenSongExportDialog - - - Progress: - Progresso: - - - AmendThemeForm - - - Second Color: - Segunda Cor: - - - Ui_EditSongDialog - - - Theme, Copyright Info && Comments - Tema, Direitos Autorais && Comentários - - - Ui_AboutDialog - - - Credits - Créditos - - - BibleMediaItem - - - To: - Para: - - - Ui_EditSongDialog - - - Song Book - Livro de Músicas - - - alertsPlugin - - - F7 - F7 - - - Ui_OpenLPExportDialog - - - Author - Autor - - - Ui_AmendThemeDialog - - - Wrap Indentation - Indentação da quebra - - - ThemeManager - - - Import a theme - Importar um tema - - +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) + + + + + + Credits + Créditos + + + + 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 + Licença + + + + Contribute + Contribuir + + + + Close + Fechar + + + + build %s + + + + + OpenLP.AdvancedTab + + + Advanced + Avançado + + + + UI Settings + + + + + Number of recent files to display: + + + + + Remember active media manager tab on startup + + + + + Double-click to send items straight to live (requires restart) + + + + + OpenLP.AmendThemeForm + + + Theme Maintenance + Manutenção do Tema + + + + Theme &name: + + + + + &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: + + + + + 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 + + + + + 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 + + + + + Preview + + + + + All Files + + + + + Select Image + + + + + First color: + + + + + Second color: + + + + + Slide height is %s rows. + + + + + OpenLP.GeneralTab + + + General + Geral + + + + Monitors + Monitores + + + + Select monitor for output display: + Selecione um monitor para exibição: + + + + Display if a single screen + + + + + Application Startup + Inicialização da Aplicação + + + + Show blank screen warning + Exibir alerta de tela em branco + + + + Automatically open the last service + Abrir o último culto automaticamente + + + + Show the splash screen + Exibir a tela inicial + + + + Application Settings + Configurações da Aplicação + + + + Prompt to save Service before starting New + Perguntar para salvar o Culto antes de começar um Novo + + + + Preview Next Song from Service Manager + Pré-Visualizar Próxima Música do Gerenciamento de Culto + + + + CCLI Details + Detalhes de CCLI + + + + CCLI number: + + + + + SongSelect username: + + + + + SongSelect password: + + + + + Display Position + + + + + X + + + + + Y + + + + + Height + + + + + Width + + + + + Override display position + + + + + Screen + Tela + + + + primary + principal + + + + OpenLP.LanguageManager + + + Language + + + + + Please restart OpenLP to use your new language setting. + + + + + OpenLP.MainWindow + + + OpenLP 2.0 + OpenLP 2.0 + + + + English + 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... + + + + + &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. + + + + + 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. + + + + + 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 + &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>. + + + + + 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 + + + + + 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 + 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 + + + + + Add the selected item(s) to the service + Adicionar o item selecionado ao culto + + + + &Edit %s + + + + + &Delete %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. + + + + + 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. + + + + + OpenLP.PluginForm + + + Plugin List + Lista de Plugins + + + + Plugin Details + Detalhes do Plugin + + + + Version: + Versão: + + + + TextLabel + TextLabel + + + + About: + Sobre: + + + + Status: + Status: + + + + Active + Ativo + + + + Inactive + Inativo + + + + %s (Inactive) + + + + + %s (Active) + + + + + %s (Disabled) + + + + + OpenLP.ServiceItemEditForm + + + Reorder Service Item + + + + + Up + + + + + Delete + Deletar + + + + Down + + + + + OpenLP.ServiceManager + + + New Service + Novo Culto + + + + Create a new service + Criar um novo culto + + + + Open Service + + + + + Load an existing service + Carregar um culto existente + + + + Save Service + Salvar Culto + + + + Save this service + Salvar este culto + + + + Theme: + Tema: + + + + Select a theme for the service + Selecione um tema para o culto + + + + Move to &top + + + + + Move item to the top of the service. + + + + + Move &up + + + + + Move item up one position in the service. + + + + + Move &down + + + + + Move item down one position in the service. + + + + + Move to &bottom + + + + + Move item to the end of the service. + + + + + &Delete From Service + + + + + Delete the selected item from the service. + + + + + &Add New Item + + + + + &Add to Selected Item + + + + + &Edit Item + &Editar Item + + + + &Reorder Item + + + + + &Notes + &Notas + + + + &Preview Verse + &Pré-Visualizar Versículo + + + + &Live Verse + &Versículo Ao Vivo + + + + &Change Item Theme + &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) + + + + + 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 + + + + + OpenLP.ServiceNoteForm + + + Service Item Notes + Item de Notas de Culto + + + + OpenLP.SettingsForm + + + Configure OpenLP + + + + + 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 + + + + Go to Verse + Ir ao Versículo + + + + OpenLP.ThemeManager + + + New Theme + Novo Tema + + + + Create a new theme. + + + + + Edit Theme + Editar Tema + + + + Edit a theme. + + + + + Delete Theme + Deletar Tema + + + + Delete a theme. + + + + + Import Theme + Importar Tema + + + + Import a theme. + + + + + Export Theme + Exportar Tema + + + + Export a theme. + + + + + &Edit Theme + + + + + &Delete Theme + + + + + Set As &Global Default + + + + + E&xport Theme + + + + + %s (default) + + + + + You must select a theme to edit. + + + + + You must select a theme to delete. + + + + + Delete Confirmation + + + + + Delete theme? + + + + + Error + Erro + + + + You are unable to delete the default theme. + + + + + Theme %s is use in %s plugin. + + + + + Theme %s is use by the service manager. + + + + + You have not selected a theme. + + + + + Save Theme - (%s) + Salvar Tema - (%s) + + + + Theme Exported + + + + + Your theme has been successfully exported. + + + + + Theme Export Failed + + + + + Your theme could not be exported due to an error. + + + + + Select Theme Import File + Selecionar Arquivo de Importação de Tema + + + + Theme (*.*) + + + + + File is not a valid theme. +The content encoding is not UTF-8. + + + + + File is not a valid theme. + + + + + Theme Exists + Tema Existe + + + + A theme with this name already exists. Would you like to overwrite it? + + + + + OpenLP.ThemesTab + + + Themes + Temas + + + + Global Theme + + + + + Theme Level + + + + + S&ong Level + + + + + Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. + Use o tema de cada música na base de dados. Se uma música não tiver um tema associado com ela, então use o tema do culto. Se o culto não tiver um tema, então use o tema global. + + + + &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. + Usar o tema do culto, sobrescrevendo qualquer um dos temas individuais das músicas. Se o culto não tiver um tema, então use o tema global. + + + + &Global Level + + + + + Use the global theme, overriding any themes associated with either the service or the songs. + Usar o tema global, sobrescrevendo qualquer tema associado com cultos ou músicas. + + + PresentationPlugin - - <b>Presentation Plugin</b> <br> Delivers 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. - <b>Plugin de Apresentação</b> <br>Entrega a habilidade de mostrar apresentações usando um diferente programas. A escolha dos programas de apresentação disponíveis está disponível para o usuário em uma caixa de seleção. - - - ImageMediaItem + + <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. + + + + + PresentationPlugin.MediaItem - - Image - Imagem - - - BibleMediaItem + + Presentation + Apresentação + - - Clear - Limpar - - - Ui_MainWindow + + Select Presentation(s) + Selecionar Apresentação(ões) + - - Save Service As - Salvar Culto Como - - - Ui_AlertDialog + + Automatic + + - - Cancel - Cancelar - - - Ui_OpenLPImportDialog + + Present using: + Apresentar usando: + - - Import - Importar - - - Ui_EditVerseDialog + + File Exists + + - - Chorus - Refrão - - - Ui_EditSongDialog + + A presentation with that filename already exists. + Uma apresentação com este nome já existe. + - - Edit All - Editar Todos - - - AuthorsForm + + Unsupported File + + - - You need to type in the last name of the author. - Você precisa digitar o sobrenome do autor. - - - SongsTab + + This type of presentation is not supported + + - - Songs Mode - Modo de Músicas - - - Ui_AmendThemeDialog + + You must select an item to delete. + + + + + PresentationPlugin.PresentationTab - - Left - Esquerda - - - RemotesPlugin + + Presentations + Apresentações + - - <b>Remote Plugin</b><br>This plugin provides the ability to send messages to a running version of openlp on a different computer.<br>The Primary use for this would be to send alerts from a creche - <b>Plugin Remoto</b><br>Este plugin provê a habilidade de enviar mensagens para uma versão do openlp rodando em um computador diferente.<br>O principal uso para isto seria para uso de alertas da creche - - - ImageTab + + Available Controllers + Controladores Disponíveis + - - Images - Imagens - - - BibleMediaItem + + Advanced + + - - Verse: - Versículo: - - - Ui_OpenLPExportDialog + + Allow presentation application to be overriden + + + + + RemotePlugin - - openlp.org Song Exporter - Exportador de Músicas do openlp.org + + <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. + + + + + RemotePlugin.RemoteTab - - Song Export List - Lista de Exportação de Músicas - - - ThemeManager + + Remotes + Remoto + - - Export theme - Exportar tema - - - Ui_SongMaintenanceDialog + + Serve on IP address: + + - - Delete - Deletar - - - Ui_AmendThemeDialog + + Port number: + + - - Theme Name: - Nome do Tema: - - - Ui_AboutDialog - - - About OpenLP - Sobre o OpenLP - - - Ui_MainWindow - - - Toggle the visibility of the Service Manager - Alternar a visibilidade do Gerenciador de Cultos - - - PresentationMediaItem - - - A presentation with that filename already exists. - Uma apresentação com este nome já existe. - - - AlertsTab - - - openlp.org - openlp.org - - - ImportWizardForm - - - Invalid Books File - Arquivo de Livros Inválido - - - Ui_OpenLPImportDialog - - - Song Title - Título da Música - - - MediaManagerItem - - - &Show Live - &Mostrar Ao Vivo - - - AlertsTab - - - Keep History: - Manter Histórico: - - - Ui_AmendThemeDialog - - - Image: - Imagem: - - - Ui_customEditDialog - - - Set Theme for Slides - Definir Tema para os Slides - - - Ui_MainWindow - - - More information about OpenLP - Mais informações sobre o OpenLP - - - AlertsTab - - - Background Color: - Cor do Plano de Fundo: - - - SongMaintenanceForm - - - No topic selected! - Nenhum tópico selecionado! - - - Ui_MainWindow - - - &Media Manager - &Gerenciador de Mídia - - - &Tools - &Ferramentas - - - AmendThemeForm - - - Background Color: - Cor do Plano de Fundo: - - - Ui_EditSongDialog - - - A&dd to Song - A&dicionar uma Música - - - Title: - Título: - - - GeneralTab - - - Screen - Tela - - - AlertsTab - - - s - s - - - ImagePlugin - - - <b>Image Plugin</b><br>Allows images of all types to be displayed. If a number of images are selected together and presented on the live controller it is possible to turn them into a timed loop.<br<br>From the plugin if the <i>Override background</i> is chosen and an image is selected any somgs which are rendered will use the selected image from the background instead of the one provied by the theme.<br> - <b>Plugin de Imagem</b><br>Permite que imagens de todos os tipos sejam exibidas. Se um número de imagens for selecionada e apresentada na tela ao vivo, é possível virá-las a tempo.<br><br>No plugin, se a opção <i>Sobrescrever Plano de Fundo</i> estiver escolhida e a imagem for selecionado, qualquer música que for exibida irá utilizar a imagem selecionada como plano de fundo ao invés da imagem configurada pelo tema.<br> - - - Ui_AlertEditDialog - - - Clear - Limpar - - - Ui_BibleImportWizard - - - Please wait while your Bible is imported. - Por favor aguarde enquanto a sua Bíblia é importada. - - - MediaManagerItem - - - No items selected... - Nenhum item selecionado... - - - Ui_OpenLPImportDialog - - - Select All - Selecionar Todos - - - Ui_AmendThemeDialog - - - Font Main - Fonte Principal - - - ImageMediaItem - - - Images (*.jpg *jpeg *.gif *.png *.bmp) - Imagens (*.jpg *jpeg *.gif *.png *.bmp) - - - Ui_OpenLPImportDialog - - - Title - Título - - - Ui_OpenSongExportDialog - - - Select OpenSong song folder: - Selecione o diretório da música do OpenSong: - - - Ui_MainWindow - - - Toggle Media Manager - Alternar Gerenciador de Mídia - - + + Server Settings + + + + SongUsagePlugin - - &Song Usage - &Uso das Músicas - - - GeneralTab - - - Monitors - Monitores - - - EditCustomForm - - - You need to enter a slide - Você precisa inserir um slide - - - Ui_SongMaintenanceDialog - - - Topics - Tópicos - - - ImportWizardForm - - - You need to specify a file to import your Bible from! - Você precisa especificar um arquivo para importar a sua Bíblia! - - - Ui_EditVerseDialog - - - Verse Type - Tipo de Versículo - - - OpenSongBible - - - Importing - Importando - - - Ui_EditSongDialog - - - Comments - Comentários - - - AlertsTab - - - Bottom - Final - - - Ui_MainWindow - - - Create a new Service - Criar um novo Culto - - - AlertsTab - - - Top - Topo - - - ServiceManager - - - &Preview Verse - &Pré-Visualizar Versículo - - - Ui_PluginViewDialog - - - TextLabel - TextLabel - - - AlertsTab - - - Font Size: - Tamanho da Fonte: - - - Ui_PluginViewDialog - - - About: - Sobre: - - - Inactive - Inativo - - - Ui_OpenSongExportDialog - - - Ready to export - Pronto para exportação - - - Export - Exportar - - - Ui_PluginViewDialog - - - Plugin List - Lista de Plugins - - - Ui_AmendThemeDialog - - - Transition Active: - Transição Ativa: - - - Ui_BibleImportWizard - - - Proxy Server (Optional) - Servidor Proxy (Opcional) - - - Ui_EditSongDialog - - - &Manage Authors, Topics, Books - &Gerenciar Autores, Tópicos e Livros - - - Ui_SongUsageDetailDialog - - - Audit Detail Extraction - Extração de Detalhes de Auditoria - - - Ui_OpenLPExportDialog - - - Ready to export - Pronto para Exportação - - - EditCustomForm - - - Save && Preview - Salvar && Pré-Visualizar - - - Ui_OpenLPExportDialog - - - Select All - Selecionar Todos - - - Ui_SongUsageDetailDialog - - - to - para - - - Ui_AmendThemeDialog - - - Size: - Tamanho: - - - MainWindow - - - OpenLP Main Display Blanked - Tela Principal do OpenLP em Branco - - - Ui_OpenLPImportDialog - - - Remove Selected - Remover Selecionado - - - Ui_EditSongDialog - - - Delete - Deletar - - - ImportWizardForm - - - You need to specify an OpenSong Bible file to import! - Você precisa especificar uma Bíblia do OpenSong para importar! - - - PresentationMediaItem - - - File exists - Arquivo existe - - - Ui_OpenLPExportDialog - - - Title - Título - - - Ui_OpenSongImportDialog - - - Ready to import - Pronto para importação - - - SlideController - - - Stop continuous loop - Parar repetição contínua - - - s - s - - - SongMediaItem - - - Song Maintenance - Manutenção de Músicas - - - Ui_customEditDialog - - - Edit - Editar - - - Ui_AmendThemeDialog - - - Gradient : - Gradiente: - - - ImportWizardForm - - - Invalid Verse File - Arquivo de Versículo Inválido - - - EditSongForm - - - Error - Erro - - - Ui_customEditDialog - - - Add New - Adicionar Novo - - - Ui_AuthorsDialog - - - Display name: - Nome da Tela: - - - SongMaintenanceForm - - - Are you sure you want to delete the selected topic? - Você tem certeza que deseja deletar o tópico selecionado? - - - Ui_AmendThemeDialog - - - Bold/Italics - Negrito/Itálico - - - Ui_SongMaintenanceDialog - - - Song Maintenance - Manutenção de Músicas - - - Ui_BibleImportWizard - - - Welcome to the Bible Import Wizard - Bem Vindo ao assistente de Importação de Bíblias - - - SongsTab - - - Songs - Músicas - - - Ui_BibleImportWizard - - - Password: - Senha: - - - Ui_MainWindow - - - &Theme Manager - &Gerenciador de Temas - - - MediaManagerItem - - - Preview the selected item - Pré-Visualizar o item selecionado - - - Ui_BibleImportWizard - - - Version Name: - Nome da Versão: - - - Ui_AboutDialog - - - About - Sobre - - - MediaMediaItem - - - Select Media - Selecionar Mídia - - - Ui_AmendThemeDialog - - - Horizontal Align: - Alinhamento Horizontal: - - - ServiceManager - - - &Edit Item - &Editar Item - - - Ui_AmendThemeDialog - - - Background Type: - Tipo de Plano de Fundo: - - - Ui_MainWindow - - - &Save - &Salvar - - - OpenLP 2.0 - OpenLP 2.0 - - - ThemeManager - - - A theme with this name already exists, would you like to overwrite it? - Um tema com este nome já existe. Você gostaria de sobrescrevê-lo? - - - PresentationMediaItem - - - Select Presentation(s) - Selecionar Apresentação(ões) - - - ThemeManager - - - Export a theme - Exportar um tema - - - AmendThemeForm - - - Open file - Abrir arquivo - - - Ui_TopicsDialog - - - Topic Maintenance - Manutenção de Tópico - - - Ui_customEditDialog - - - Clear edit area - Limpar área de edição - - - Ui_AmendThemeDialog - - - Show Outline: - Mostrar Esboço: - - - SongBookForm - - - You need to type in a book name! - Você precisa digitar um nome de livro! - - - ImportWizardForm - - - Open OpenSong Bible - Abrir Biblia do OpenSong - - - Ui_MainWindow - - - Look && &Feel - Aparência - - - Ui_BibleImportWizard - - - Ready. - Pronto. - - - ThemeManager - - - You have not selected a theme! - Você não selecionou um tema! - - - Ui_SongMaintenanceDialog - - - Books/Hymnals - Livros/Hinários - - - Ui_AboutDialog - - - Contribute - Contribuir - - - Ui_AmendThemeDialog - - - Gradient - Gradiente - - - Ui_BibleImportWizard - - - Books Location: - Localização dos Livros: - - - Ui_OpenSongExportDialog - - - Full Song List - Lista de Músicas Completa - - - GeneralTab - - - SongSelect Password: - Senha do SongSelect: - - + + &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. + + + + + SongUsagePlugin.SongUsageDeleteForm + + + Delete Selected Song Usage Events? + + + + + Are you sure you want to delete selected Song Usage data? + + + + + Delete Song Usage Data + + + + + SongUsagePlugin.SongUsageDetailForm + + + Output File Location + Local do arquivo de saída + + + + Song Usage Extraction + + + + + Select Date Range + + + + + to + para + + + + Report Location + Localização do Relatório + + + + SongsPlugin + + + &Song + &Música + + + + Import songs using the import wizard. + + + + + Songs of Fellowship (temp menu item) + + + + + Import songs from the VOLS1_2.RTF, sof3words.rtf and sof4words.rtf supplied with the music books + + + + + Generic Document/Presentation Import (temp menu item) + + + + + Import songs from Word/Writer/Powerpoint/Impress + + + + + OpenSong (temp menu item) + + + + + Import songs from OpenSong files(either raw text or ZIPfiles) + + + + + OpenLP v2 Songs (temporary) + + + + + Import an OpenLP v2 song database + + + + + Open Songs of Fellowship file + + + + + Import Error + + + + + Error importing Songs of Fellowship file. +OpenOffice.org must be installed and you must be using an unedited copy of the RTF included with the Songs of Fellowship Music Editions + + + + + Open OpenSong file + + + + + Error importing OpenSong file + + + + + Select OpenLP database(s) to import... + + + + + Database(s) imported + + + + + Your OpenLP v2 song databases have been successfully imported + + + + + Error importing OpenLP v2 database(s) + + + + + Open documents or presentations + + + + + <strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs. + + + + + SongsPlugin.AuthorsForm + + + Author Maintenance + Manutenção de Autores + + + + Display name: + Nome da Tela: + + + + First name: + Primeiro Nome: + + + + Last name: + Sobrenome: + + + + Error + Erro + + + + You need to type in the first name of the author. + Você precisa digitar o primeiro nome do autor. + + + + You need to type in the last name of the author. + Você precisa digitar o sobrenome do autor. + + + + 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 + Editor de Músicas + + + + &Title: + + + + + &Lyrics: + + + + + &Add + + + + + &Edit + &Editar + + + + Ed&it All + + + + + &Delete + + + + + 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 + + + + + Copyright Information + Informação de Direitos Autorais + + + + © + + + + + Comments + Comentários + + + + Theme, Copyright Info && Comments + Tema, Direitos Autorais && Comentários + + + + Save && Preview + Salvar && Pré-Visualizar + + + + Add Author + + + + + This author does not exist, do you want to add them? + + + + + 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? + + + + + 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: + + + + + SongsPlugin.EditVerseForm + + + Edit Verse + Editar Versículo + + + + &Verse type: + + + + + &Insert + + + + + SongsPlugin.ImportWizardForm + + + No OpenLyrics Files Selected + + + + + You need to add at least one OpenLyrics song file to import from. + + + + + No OpenSong Files Selected + + + + + You need to add at least one OpenSong song file to import from. + + + + + No CCLI Files Selected + + + + + You need to add at least one CCLI file to import from. + + + + + No CSV File Selected + + + + + You need to specify a CSV file to import from. + + + + + 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: + + + + OpenLyrics + + + + + OpenSong + OpenSong + + + + CCLI + + + + + CSV + CSV + + + + Add Files... + + + + + Remove File(s) + + + + + Filename: + + + + + Browse... + + + + + Importing + Importando + + + + Please wait while your songs are imported. + + + + + Ready. + Pronto. + + + + %p% + + + + + 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. + + + + + CCLI Licence: + Licença CCLI: + + + + Are you sure you want to delete the selected song? + + + + + Are you sure you want to delete the %d selected songs? + + + + + Delete Song(s)? + + + + + SongsPlugin.SongBookForm + + + Song Book Maintenance + + + + + &Name: + + + + + &Publisher: + + + + + Error + Erro + + + + You need to type in a name for the book. + + + + + SongsPlugin.SongImport + + + copyright + + + + + © + + + + + SongsPlugin.SongMaintenanceForm + + + Song Maintenance + Manutenção de Músicas + + + + Authors + Autores + + + + Topics + Tópicos + + + + Song Books + + + + + &Add + + + + + &Edit + &Editar + + + + &Delete + + + + + Error + Erro + + + + 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 + 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. + + + + + 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! + + + + SongsPlugin.SongsTab + + + Songs + Músicas + + + + Songs Mode + Modo de Músicas + + + + Enable search as you type + + + + + Display verses on live tool bar + + + + + SongsPlugin.TopicsForm + + + Topic Maintenance + Manutenção de Tópico + + + + Topic name: + Nome do tópico: + + + + Error + Erro + + + + You need to type in a topic name! + Você precisa digitar um nome para o tópico! + + + + SongsPlugin.VerseType + + + Verse + Versículo + + + + Chorus + Refrão + + + + Bridge + Ligação + + + + Pre-Chorus + Pré-Refrão + + + + Intro + Introdução + + + + Ending + Terminando + + + + Other + Outro + + diff --git a/resources/i18n/openlp_sv.ts b/resources/i18n/openlp_sv.ts index cdb33f4a2..2c9b1fd1d 100644 --- a/resources/i18n/openlp_sv.ts +++ b/resources/i18n/openlp_sv.ts @@ -1,4262 +1,3893 @@ - - - - BibleMediaItem - - - Quick - Snabb - - - Ui_customEditDialog - - - Delete selected slide - Ta bort vald bild - - - BiblesTab - - - ( and ) - ( och ) - - - RemoteTab - - - Remotes - FjärrstyrningarWhat is "remotes"? current translation is equal to "remote controlings" - - - Ui_EditSongDialog - - - &Remove - &Ta bort - - - Ui_AmendThemeDialog - - - Shadow Size: - Skuggstorlek: - - - Ui_OpenSongExportDialog - - - Close - Stäng - - - ThemeManager - - - Import Theme - Importera tema - - - Ui_AmendThemeDialog - - - Slide Transition - Bildövergång - - - SongMaintenanceForm - - - Are you sure you want to delete the selected book? - Är du säker på att du vill ta bort vald bok? - - - ThemesTab - - - Theme level - Temanivå - - - BibleMediaItem - - - Bible - Bibel - - - ServiceManager - - - Save Changes to Service? - Spara Ändringar till Planering?"Service" is hard to translate, current translation is more equal to "schedule" - - - SongUsagePlugin - - - &Delete recorded data - &Ta bort inspelad data - - - Ui_OpenLPExportDialog - - - Song Title - Sångtitel - - - Ui_customEditDialog - - - Edit selected slide - Redigera vald bild - - - SongMediaItem - - - CCLI Licence: - CCLI-licens: - - - Ui_BibleImportWizard - - - Bible Import Wizard - Bibelimport-guide - - - Ui_customEditDialog - - - Edit All - Redigera alla - - - SongMaintenanceForm - - - Couldn't save your author. - Kunde inte spara din låtskrivare.I think it's referring to the author of a song? - - - Ui_ServiceNoteEdit - - - Service Item Notes - Mötesanteckningar - - - Ui_customEditDialog - - - Add new slide at bottom - Lägg till ny bild i slutet - - - Clear - Rensa - - - ThemesTab - - - Global theme - Globalt tema - - - PresentationPlugin - - - <b>Presentation Plugin</b> <br> Delivers 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. - <b>Presentations Plugin</b> <br> Ger möjlighet att visa presentationer genom olika program. Tillgängliga presentationsprogram finns i en drop-down meny. - - - SongUsagePlugin - - - Start/Stop live song usage recording - Starta/Stoppa inspelning av sånganvändning - - - MainWindow - - - The Main Display has been blanked out - Huvuddisplayen har rensatsHard with a good translation, "rensats", "tömts"? - - - Ui_OpenSongExportDialog - - - Lyrics - Sångtexter - - - Ui_AlertDialog - - - Display - Visa - - - SongMaintenanceForm - - - This author can't be deleted, they are currently assigned to at least one song. - Låtskrivaren kan inte tas bort, den är associerad med åtminstone en sång. - - - Ui_customEditDialog - - - Delete - Ta bort - - - Ui_EditVerseDialog - - - Verse - Vers - - - Ui_OpenSongImportDialog - - - OpenSong Folder: - OpenSong-mapp: - - - ThemeManager - - - Create a new theme - Skapa ett nytt tema - - - Ui_MainWindow - - - Open an existing service - Öppna en befintlig mötesplanering - - - SlideController - - - Move to previous - Flytta till föregående - - - SongsPlugin - - - &Song - &Sång - - - Ui_PluginViewDialog - - - Plugin Details - Plugindetaljer - - - ImportWizardForm - - - You need to specify a file with books of the Bible to use in the import. - Du måste välja en fil med Bibelböcker att använda i importen. - - - AlertsTab - - - Edit History: - Redigera historik: - - - Ui_MainWindow - - - &File - &Fil - - - BiblesTab - - - verse per line - vers per rad - - - Ui_customEditDialog - - - Theme: - Tema: - - - SongMaintenanceForm - - - Couldn't add your book. - Kunde inte lägga till din bok. - - - Error - Fel - - - Ui_BibleImportWizard - - - Bible: - Bibel: - - - ThemeManager - - - Delete Theme - Ta bort tema - - - SplashScreen - - - Splash Screen - Startbild - - - SongMediaItem - - - Song - Sång - - - Ui_OpenSongExportDialog - - - Song Title - Sångtitel - - - Ui_AmendThemeDialog - - - Bottom - Längst ner - - - Ui_MainWindow - - - List the Plugins - Lista Plugin - - - SongMaintenanceForm - - - No author selected! - Ingen författare vald! - - - SongUsageDeleteForm - - - Delete Selected Song Usage Events? - Ta bort valda sånganvändningsdata? - - - SongUsagePlugin - - - <b>SongUsage Plugin</b><br>This plugin records the use of songs and when they have been used during a live service - <b>SongUsage Plugin</b><br>Det här pluginprogrammet spelar in användningen av sånger och när de använts i en planering - - - Ui_customEditDialog - - - Move slide Up 1 - Flytta upp bild ett steg - - - SongsPlugin - - - OpenSong - OpenSong - - - AlertsManager - - - Alert message created and delayed - Larmmeddelande skapat och fördröjt - - - Ui_EditSongDialog - - - Alternative Title: - Alternativ titel: - - - ServiceManager - - - Open Service - Öppna Mötesplanering - - - BiblesTab - - - Display Style: - Visningsutseende: - - - Ui_AmendThemeDialog - - - Image - Bild - - - EditSongForm - - - You need to enter a song title. - Du måste ange en sångtitel. - - - ThemeManager - - - Error - Fel - - - Ui_SongUsageDeleteDialog - - - Song Usage Delete - Ta bort inspelad sånganvändning - - - ImportWizardForm - - - Invalid Bible Location - Felaktig bibelplacering - - - BibleMediaItem - - - Book: - Bok: - - - ThemeManager - - - Make Global - Gör global - - - Ui_MainWindow - - - &Service Manager - &Mötesplaneringshanterare - - - Ui_OpenLPImportDialog - - - Author - Författare - - - Ui_AmendThemeDialog - - - Height: - Höjd: - - - ThemeManager - - - Delete a theme - Ta bort ett tema - - - Ui_BibleImportWizard - - - Crosswalk - Crosswalk?? - - - SongBookForm - - - Error - Fel - - - Ui_AuthorsDialog - - - Last name: - Efternamn: - - - ThemesTab - - - Use the global theme, overriding any themes associated with either the service or the songs. - Använd det globala temat, ignorerar teman associerade med mötesplaneringen eller sångerna. - - - Ui_customEditDialog - - - Title: - Titel: - - - ImportWizardForm - - - You need to set a copyright for your Bible! Bibles in the Public Domain need to be marked as such. - Du måste infoga copyright-information för din Bibel! Biblar i den publika domänen måste innehålla det. - - - SongMediaItem - - - Maintain the lists of authors, topics and books - Hantera listorna över författare, ämnen och böckerjag tror att hantera är tillräckligt generellt - - - Ui_AlertEditDialog - - - Save - Spara - - - EditCustomForm - - - You have unsaved data - Du har osparade data - - - Ui_AmendThemeDialog - - - Outline - Kontur - - - BibleMediaItem - - - Text Search - Textsökning - - - Ui_BibleImportWizard - - - CSV - CSV - - - SongUsagePlugin - - - Delete song usage to specified date - Ta bort sånganvändning fram till specificerat datum - - - Ui_SongUsageDetailDialog - - - Report Location - Rapportera placering - - - Ui_BibleImportWizard - - - OpenSong - OpenSong - - - Ui_MainWindow - - - Open Service - Öppna mötesplanering - - - BibleMediaItem - - - Find: - Hitta: - - - ImageMediaItem - - - Select Image(s) - Välj bild(er) - - - BibleMediaItem - - - Search Type: - Sök Typ: - - - Ui_MainWindow - - - Media Manager - Mediahanterare - - - Alt+F4 - Alt+F4 - - - MediaManagerItem - - - &Preview - &Förhandsgranska - - - GeneralTab - - - CCLI Details - CCLI-detaljer - - - BibleMediaItem - - - Bible not fully loaded - Bibeln är inte fullt laddad - - - Ui_MainWindow - - - Toggle the visibility of the Preview Panel - Växla förhandsgranskningens synlighet - - - ImportWizardForm - - - Bible Exists - Bibel existerar - - - Ui_MainWindow - - - &User Guide - &Användarguide - - - AlertsTab - - - pt - pt - - - Ui_MainWindow - - - Set the interface language to English - Byt språk till engelska - - - Ui_AmendThemeDialog - - - Main Font - Huvudfont - - - ImportWizardForm - - - Empty Copyright - Tom copyright-information - - - AuthorsForm - - - You need to type in the first name of the author. - Du måste ange låtskrivarens förnamn. - - - SongsTab - - - Display Verses on Live Tool bar: - Visa Verser i Live-verktygsfältet:changing to proposed translation, but without the quote-marks which i think looks out of place since we use live without translation (since there are no translation to live) - - - ServiceManager - - - Move to top - Flytta längst upp - - - ImageMediaItem - - - Override background - Ignorera bakgrund - - - Ui_SongMaintenanceDialog - - - Edit - Redigera - - - Ui_OpenSongExportDialog - - - Select All - Välj allt - - - ThemesTab - - - 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. - Använd temat för varje sång i databasen indviduellt. Om en sång inte har ett associerat tema, använd planeringens schema. Om planeringen inte har ett tema, använd globala temat. - - - PresentationMediaItem - - - Presentation - Presentation - - - Ui_AmendThemeDialog - - - Solid Color - Solid Färg - - - CustomTab - - - Custom - Anpassacustomized or customize? - - - Ui_OpenLPImportDialog - - - Ready to import - Redo att importera - - - MainWindow - - - OpenLP version %s has been updated to version %s - -You can obtain the latest version from http://openlp.org - OpenLP version %s har uppdaterats till version %s - -Du kan hämta den senaste versionen på http://openlp.org - - - Ui_BibleImportWizard - - - File Location: - Filsökväg: - - - SlideController - - - Go to Verse - Hoppa till vers - - - SongMaintenanceForm - - - Couldn't add your topic. - Kunde inte lägga till ditt ämne. - - - Ui_MainWindow - - - &Import - &Importera - - - Quit OpenLP - Stäng OpenLP - - - Ui_BibleImportWizard - - - This wizard will help you to import Bibles from a variety of formats. Click the next button below to start the process by selecting a format to import from. - Den här guiden hjälper dig importera biblar från en mängd olika format. Klicka på nästa-knappen nedan för att börja proceduren genom att välja ett format att importera från. - - - Ui_OpenLPExportDialog - - - Title - Titel - - - ImportWizardForm - - - Empty Version Name - Tomt versionsnamn - - - Ui_MainWindow - - - &Preview Panel - &Förhandsgranskning - - - SlideController - - - Start continuous loop - Börja oändlig loop - - - GeneralTab - - - primary - primär - - - Ui_EditSongDialog - - - Add a Theme - Lägg till ett tema - - - Ui_MainWindow - - - &New - &Ny - - - Ui_customEditDialog - - - Credits: - Medverkande: - - - Ui_EditSongDialog - - - R&emove - Ta &borttycker att b verkar vara en lämplig knapp för snabbkommandot - - - SlideController - - - Live - Live - - - Ui_BibleImportWizard - - - Select Import Source - Välj importkälla - - - BiblesTab - - - continuous - oändlig - - - ThemeManager - - - File is not a valid theme. - Filen är inte ett giltigt tema. - - - GeneralTab - - - Application Startup - Programstart - - - Ui_AmendThemeDialog - - - Use Default Location: - Använd standardsökväg: - - - Ui_OpenSongImportDialog - - - Import - Importera - - - Ui_AmendThemeDialog - - - Other Options - Andra alternativ - - - Ui_EditSongDialog - - - Verse Order: - Versordning: - - - Ui_MainWindow - - - Default Theme: - Standardtema: - - - Toggle Preview Panel - Växla förhandsgranskningspanel - - - SongMediaItem - - - Lyrics - Sångtexter - - - Ui_OpenLPImportDialog - - - Progress: - Händelseförlopp: - - - Ui_AmendThemeDialog - - - Shadow - Skugga - - - GeneralTab - - - Select monitor for output display: - Välj skärm för utsignal: - - - Ui_MainWindow - - - &Settings - &Inställningar - - - EditSongForm - - - Invalid verse entry - values must be Numeric, I,B,C,T,P,E,O - Ogiltig vers - värden måste vara numeriska, I,B,C,T,P,E,O - - - Ui_AmendThemeDialog - - - Italics - Kursiv - - - ServiceManager - - - Create a new service - Skapa en ny mötesplanering - - - Ui_AmendThemeDialog - - - Background: - Bakgrund: - - - Ui_OpenLPImportDialog - - - openlp.org Song Importer - openlp.org sångimportör - - - Ui_BibleImportWizard - - - Copyright: - Copyright: - - - ThemesTab - - - Service level - Mötesplaneringsnivå - - - BiblesTab - - - [ and ] - [ och ] - - - Ui_BibleImportWizard - - - Verse Location: - Verssökväg: - - - MediaManagerItem - - - You must select one or more items - Du måste välja ett eller flera objekt - - - GeneralTab - - - Application Settings - Programinställningar - - - ServiceManager - - - Save this service - Spara denna mötesplanering - - - ImportWizardForm - - - Open Books CSV file - Öppna böcker CSV-fil - - - GeneralTab - - - SongSelect Username: - SongSelect Användarnamn: - - - Ui_AmendThemeDialog - - - X Position: - X-position: - - - BibleMediaItem - - - No matching book could be found in this Bible. - Ingen matchande bok kunde hittas i den här Bibeln. - - - Ui_BibleImportWizard - - - Server: - Server: - - - Ui_EditVerseDialog - - - Ending - Ending - - - CustomTab - - - Display Footer: - Visa sidfot: - - - ImportWizardForm - - - Invalid OpenSong Bible - Ogiltig OpenSong-bibel - - - GeneralTab - - - CCLI Number: - CCLI-nummer: - - - Ui_AmendThemeDialog - - - Center - Centrera - - - ServiceManager - - - Theme: - Tema: - - - AlertEditForm - - - Please save or clear selected item - Spara eller töm valt objekt - - - Ui_MainWindow - - - &Live - &Livejag tror live är en bra översättning, eftersom man faktiskt säger live på svenska, typ liveinspelning, och live är ganska konkret då det handlar om något som blir verklighet liksom - - - Ui_AmendThemeDialog - - - <Color2> - <Färg2> - - - Ui_MainWindow - - - English - Engelska - - - ImageMediaItem - - - You must select one or more items - Du måste välja ett eller flera objekt - - - Ui_AuthorsDialog - - - First name: - Förnamn: - - - Ui_OpenLPExportDialog - - - Select openlp.org export filename: - Välj openlp.org exportfilnamn: - - - Ui_BibleImportWizard - - - Permission: - Rättigheter: - - - Ui_OpenSongImportDialog - - - Close - Stäng - - - Ui_SongUsageDetailDialog - - - Song Usage Extraction - Sånganvändningsutdrag - - - Ui_AmendThemeDialog - - - Opaque - Ogenomskinlig - - - ImportWizardForm - - - Your Bible import failed. - Din Bibelimport misslyckades. - - - SlideController - - - Start playing media - Börja spela media - - - SongMediaItem - - - Type: - Typ: - - - SongMaintenanceForm - - - This book can't be deleted, it is currently assigned to at least one song. - Boken kan inte tas bort, den är associerad med åtminstone en sång. - - - Ui_AboutDialog - - - Close - Stäng - - - TopicsForm - - - You need to type in a topic name! - Du måste skriva in ett namn på ämnet! - - - Ui_OpenSongExportDialog - - - Song Export List - Sångexporteringslista - - - BibleMediaItem - - - Dual: - Dubbel: - - - ImageTab - - - sec - sek - - - ServiceManager - - - Delete From Service - Ta bort från mötesplanering - - - GeneralTab - - - Automatically open the last service - Öppna automatiskt den senaste planeringen - - - Ui_OpenLPImportDialog - - - Song Import List - Sångimporteringslista - - - Ui_OpenSongExportDialog - - - Author - FörfattareSongwriter or bible author? - - - Ui_AmendThemeDialog - - - Outline Color: - Konturfärg: - - - Ui_MainWindow - - - F9 - F9 - - - F8 - F8 - - - ServiceManager - - - &Change Item Theme - &Byt objektets tema - - - Ui_SongMaintenanceDialog - - - Topics - Ämnen - - - Ui_OpenLPImportDialog - - - Import File Song List - Importera fil - sånglista - - - Ui_customEditDialog - - - Edit Custom Slides - Redigera anpassad bild - - - Ui_BibleImportWizard - - - Set up the Bible's license details. - Skriv in Bibelns licensdetaljer. - - - Ui_EditVerseDialog - - - Number - Nummer - - - Ui_AmendThemeDialog - - - Alignment - Justering - - - SongMaintenanceForm - - - Delete Book - Ta bort bok - - - ThemeManager - - - Edit a theme - Redigera ett tema - - - Ui_BibleImportWizard - - - BibleGateway - BibleGateway - - - GeneralTab - - - Preview Next Song from Service Manager - Förhandsgranska nästa sång från mötesplaneringen - - - Ui_EditSongDialog - - - Title && Lyrics - Titel && Sångtexter - - - SongMaintenanceForm - - - No book selected! - Ingen bok vald! - - - SlideController - - - Move to live - Flytta till live - - - Ui_EditVerseDialog - - - Other - Övrigt - - - Ui_EditSongDialog - - - Theme - Tema - - - ServiceManager - - - Save Service - Spara Mötesplanering - - - Ui_SongUsageDetailDialog - - - Select Date Range - Välj datumspann - - - Ui_MainWindow - - - Save the current service to disk - Spara nuvarande mötesplanering till disk - - - BibleMediaItem - - - Chapter: - Kapitel: - - - Search - Sök - - - PresentationTab - - - Available Controllers - Tillgängliga Presentationsprogramjag kollade på programmet, och under controllers listas alla presentationsprogram. Jag tycker det är bra som det är. - - - ImportWizardForm - - - Open Verses CSV file - Öppna Verser CSV-fil - - - TopicsForm - - - Error - Fel - - - RemoteTab - - - Remotes Receiver Port - Mottagarport för fjärrstyrning - - - Ui_MainWindow - - - &View - &Visa - - - Ui_AmendThemeDialog - - - Normal - Normal - - - Ui_OpenLPExportDialog - - - Close - Stäng - - - Ui_BibleImportWizard - - - Username: - Användarnamn: - - - ThemeManager - - - Edit Theme - Redigera tema - - - SlideController - - - Preview - Förhandsgranska - - - Ui_AlertDialog - - - Alert Message - Larmmeddelande - - - ImportWizardForm - - - Finished import. - Importen är färdig. - - - GeneralTab - - - Show blank screen warning - Visa varning vid tom skärm - - - ImportWizardForm - - - You need to specify a file of Bible verses to import. - Du måste specificera en fil med Bibelverser att importera. - - - AlertsTab - - - Location: - Plats: - - - Ui_EditSongDialog - - - Authors, Topics && Book - Författare, ämnen && bok - - - EditSongForm - - - You need to enter some verses. - Du måste skriva in några verser. - - - Ui_BibleImportWizard - - - Download Options - Alternativ för nedladdning - - - BiblePlugin - - - <strong>Bible Plugin</strong><br />This plugin allows bible verses from different sources to be displayed on the screen during the service. - <strong>Bibel Plugin</strong><br /> Det här pluginprogrammet visar Bibelverser från olika källor på skärmen. - - - Ui_EditSongDialog - - - Copyright Information - Copyright-information - - - Ui_MainWindow - - - &Export - &Exportera - - - Ui_AmendThemeDialog - - - Bold - Fetstil - - - SongsPlugin - - - Export songs in OpenLP 2.0 format - Exportera sånger i formatet OpenLP 2.0 - - - MediaManagerItem - - - Load a new - Ladda ny - - - AlertEditForm - - - Missing data - Data saknas - - - SongsPlugin - - - <b>Song Plugin</b> <br>This plugin allows Songs to be managed and displayed.<br> - <b>Sång Plugin</b> <br>Det här pluginprogrammet visar och hanterar sånger.<br> - - - Ui_AmendThemeDialog - - - Footer Font - Sidfot-font - - - EditSongForm - - - Invalid verse entry - vX - Ogiltig vers - vX - - - MediaManagerItem - - - Delete the selected item - Ta bort det valda objektet - - - Ui_OpenLPExportDialog - - - Export - Exportera - - - Ui_BibleImportWizard - - - Location: - Placering: - - - BibleMediaItem - - - Keep - Behåll - - - SongUsagePlugin - - - Generate report on Song Usage - Generera rapport på Sånganvändning - - - Ui_EditSongDialog - - - Topic - Ämne - - - Ui_MainWindow - - - &Open - &Öppna - - - AuthorsForm - - - You haven't set a display name for the author, would you like me to combine the first and last names for you? - Du har inte ställt in ett visningsnamn för låtskrivaren, vill du att programmet kombinerar förnamnet och efternamnet åt dig? - - - AmendThemeForm - - - Slide Height is %s rows - Bildens höjd är %s rader - - - Ui_EditVerseDialog - - - Pre-Chorus - BryggaI think it' better to keep the english translation here... --wezzy: why? "för-refräng" doesn't work, but according to sources (wikipedia ex) it can be compared to bridge and then the translation would be brygga. - - - Ui_EditSongDialog - - - Lyrics: - Sångtexter: - - - Ui_AboutDialog - - - Project Lead - Raoul "superfly" Snyman - -Developers - Tim "TRB143" Bentley - Jonathan "gushie" Corwin - Michael "cocooncrash" Gorven - Scott "sguerrieri" Guerrieri - Raoul "superfly" Snyman - Maikel Stuivenberg - Martin "mijiti" Thompson - Jon "Meths" Tibble - Carsten "catini" Tingaard - -Testers - Wesley "wrst" Stout - Projektledning -Raoul "superfly" Snyman - -Utvecklare -Tim "TRB143" Bentley -Jonathan "gushie" Corwin -Michael "cocooncrash" Gorven -Scott "sguerrieri" Guerrieri -Raoul "superfly" Snyman -Maikel Stuivenberg -Martin "mijiti" Thompson -Jon "Meths" Tibble -Carsten "catini" Tingaard - -Testare -Wesley "wrst" Stout - - - SongMediaItem - - - Titles - Titlar - - - Ui_OpenLPExportDialog - - - Lyrics - Sångtexter - - - PresentationMediaItem - - - Present using: - Presentera genom: - - - SongMediaItem - - - Clear - Töm - - - ServiceManager - - - &Live Verse - &Live-vers - - - Ui_OpenSongImportDialog - - - Progress: - Framsteg: - - - Ui_MainWindow - - - Toggle Theme Manager - Växla temahanteraren - - - Ui_AlertDialog - - - Alert Text: - Alarmtext: - - - Ui_EditSongDialog - - - Edit - Redigera - - - AlertsTab - - - Font Color: - Fontfärg: - - - Ui_AmendThemeDialog - - - Theme Maintenance - TemaunderhållSounds a bit strange... - - - CustomTab - - - Custom Display - Anpassad Visning - - - Ui_OpenSongExportDialog - - - Title - Titel - - - Ui_AmendThemeDialog - - - <Color1> - <Färg1> - - - Ui_EditSongDialog - - - Authors - Låtskrivare - - - ThemeManager - - - Export Theme - Exportera tema - - - ImageMediaItem - - - No items selected... - Inga objekt valda... - - - Ui_SongBookDialog - - - Name: - Namn: - - - Ui_AuthorsDialog - - - Author Maintenance - Författare underhåll - - - Ui_AmendThemeDialog - - - Font Footer - Font-sidfot - - - BiblesTab - - - Verse Display - Versvisningout of context - - - Ui_MainWindow - - - &Options - &Alternativ - - - BibleMediaItem - - - Results: - Resultat: - - - Ui_OpenLPExportDialog - - - Full Song List - Full Sånglista - - - ServiceManager - - - Move to &top - Flytta till &toppen - - - SlideController - - - Move to last - Flytta till sist - - - Ui_OpenLPExportDialog - - - Progress: - Framsteg: - - - Ui_SongMaintenanceDialog - - - Add - Lägg till - - - SongMaintenanceForm - - - Are you sure you want to delete the selected author? - Är du säker på att du vill ta bort den valda låtskrivaren? - - - SongUsagePlugin - - - Song Usage Status - Sånganvändningsstatus - - - BibleMediaItem - - - Verse Search - Sök vers - - - Ui_SongBookDialog - - - Edit Book - Redigera bok - - - EditSongForm - - - Save && Preview - Spara && förhandsgranska - - - Ui_SongBookDialog - - - Publisher: - Utgivare: - - - Ui_AmendThemeDialog - - - Font Weight: - Teckentjocklek: - - - Ui_BibleImportWizard - - - Bible Filename: - Bibel-filnamn: - - - Ui_AmendThemeDialog - - - Transparent - Genomskinlig - - - SongMediaItem - - - Search - Sök - - - Ui_BibleImportWizard - - - Format: - Format: - - - Ui_AmendThemeDialog - - - Background - Bakgrund - - - Ui_BibleImportWizard - - - Importing - Importerar - - - Ui_customEditDialog - - - Edit all slides - Redigera alla bilder - - - SongsTab - - - Enable search as you type: - Aktivera sök-medan-du-skriver: - - - Ui_MainWindow - - - Ctrl+S - Ctrl+S - - - SongMediaItem - - - Authors - Författare - - - Ui_PluginViewDialog - - - Active - Aktiv - - - SongMaintenanceForm - - - Couldn't add your author. - Kunde inte lägga till din låtskrivare. - - - Ui_MainWindow - - - Ctrl+O - Ctrl+O - - - Ctrl+N - Ctrl+N - - - Ui_AlertEditDialog - - - Edit - Redigera - - - Ui_EditSongDialog - - - Song Editor - Sångredigerare - - - AlertsTab - - - Font - Font - - - SlideController - - - Edit and re-preview Song - Ändra och åter-förhandsgranska sång - - - Delay between slides in seconds - Fördröjning mellan bilder, i sekunder - - - MediaManagerItem - - - &Edit - &Redigera - - - Ui_AmendThemeDialog - - - Vertical - Vertikal - - - Width: - Bredd: - - - ThemesTab - - - Global level - Global nivå - - - ThemeManager - - - You are unable to delete the default theme. - Du kan inte ta bort standardtemat. - - - BibleMediaItem - - - Version: - Version: - - - Ui_AboutDialog - - - OpenLP <version> build <revision> - Open Source Lyrics Projection + + + + 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 + + + + + AlertsPlugin.AlertForm + + + Alert Message + Larmmeddelande + + + + Alert &text: + + + + + &Parameter(s): + + + + + &New + &Ny + + + + &Save + &Spara + + + + &Delete + + + + + Displ&ay + + + + + Display && Cl&ose + + + + + &Close + + + + + New Alert + + + + + You haven't specified any text for your alert. Please type in some text before clicking New. + + + + + AlertsPlugin.AlertsManager + + + Alert message created and displayed. + + + + + AlertsPlugin.AlertsTab + + + Alerts + Alarm + + + + Font + Font + + + + Font name: + + + + + Font color: + + + + + Background color: + + + + + Font size: + + + + + pt + pt + + + + Alert timeout: + Alarm timeout: + + + + s + s + + + + Location: + + + + + Preview + Förhandsgranska + + + + OpenLP 2.0 + OpenLP 2.0 + + + + Top + Topp + + + + Middle + Mitten + + + + Bottom + + + + + BiblesPlugin + + + &Bible + &Bibel + + + + <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display bible verses from different sources during the service. + + + + + BiblesPlugin.BibleDB + + + Book not found + + + + + The book you requested could not be found in this bible. Please check your spelling and that this is a complete bible not just one testament. + + + + + BiblesPlugin.BiblesTab + + + Bibles + Biblar + + + + Verse Display + Versvisning + + + + Only show new chapter numbers + Visa bara nya kapitelnummer + + + + Layout style: + + + + + Display style: + + + + + Bible theme: + + + + + Verse Per Slide + + + + + Verse Per Line + + + + + Continuous + + + + + No Brackets + + + + + ( And ) + + + + + { And } + + + + + [ And ] + + + + + Note: +Changes do not affect verses already in the service. + + + + + Display dual Bible verses + + + + + BiblesPlugin.ImportWizardForm + + + Bible Import Wizard + Bibelimport-guide + + + + Welcome to the Bible Import Wizard + Välkommen till guiden för Bibelimport + + + + This wizard will help you to import Bibles from a variety of formats. Click the next button below to start the process by selecting a format to import from. + Den här guiden hjälper dig importera biblar från en mängd olika format. Klicka på nästa-knappen nedan för att börja proceduren genom att välja ett format att importera från. + + + + 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: + + + + OSIS + OSIS + + + + CSV + CSV + + + + OpenSong + OpenSong + + + + Web Download + Webbnedladdning + + + + File location: + + + + + Books location: + + + + + Verse location: + + + + + Bible filename: + + + + + Location: + + + + + Crosswalk + Crosswalk + + + + BibleGateway + BibleGateway + + + + Bible: + Bibel: + + + + Download Options + Alternativ för nedladdning + + + + Server: + Server: + + + + Username: + Användarnamn: + + + + Password: + Lösenord: + + + + Proxy Server (Optional) + Proxyserver (Frivilligt) + + + + License Details + Licensdetaljer + + + + Set up the Bible's license details. + Skriv in Bibelns licensdetaljer. + + + + Version name: + + + + + Copyright: + Copyright: + + + + Permission: + Rättigheter: + + + + Importing + Importerar + + + + Please wait while your Bible is imported. + Vänligen vänta medan din Bibel importeras. + + + + Ready. + Redo. + + + + Invalid Bible Location + Felaktig bibelplacering + + + + You need to specify a file to import your Bible from. + Du måste ange en fil att importera dina Biblar från. + + + + Invalid Books File + Ogiltig bokfil + + + + You need to specify a file with books of the Bible to use in the import. + Du måste välja en fil med Bibelböcker att använda i importen. + + + + Invalid Verse File + Ogiltid versfil + + + + You need to specify a file of Bible verses to import. + Du måste specificera en fil med Bibelverser att importera. + + + + Invalid OpenSong Bible + Ogiltig OpenSong-bibel + + + + You need to specify an OpenSong Bible file to import. + Du måste ange en OpenSong Bibel-fil att importera. + + + + Empty Version Name + Tomt versionsnamn + + + + You need to specify a version name for your Bible. + Du måste ange ett versionsnamn för din Bibel. + + + + Empty Copyright + Tom copyright-information + + + + You need to set a copyright for your Bible! Bibles in the Public Domain need to be marked as such. + Du måste infoga copyright-information för din Bibel! Biblar i den publika domänen måste innehålla det. + + + + Bible Exists + Bibel existerar + + + + This Bible already exists! Please import a different Bible or first delete the existing one. + Bibeln existerar redan! Importera en annan BIbel eller ta bort den som finns. + + + + Open OSIS File + + + + + Open Books CSV File + + + + + Open Verses CSV File + + + + + Open OpenSong Bible + Öppna OpenSong Bibel + + + + Starting import... + Påbörjar import... + + + + Finished import. + Importen är färdig. + + + + Your Bible import failed. + Din Bibelimport misslyckades. + + + + 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. + + + + + BiblesPlugin.Opensong + + + Importing + Importerar + + + + CustomPlugin + + + <strong>Custom Plugin</strong><br />The custom plugin provides the ability to set up custom text slides that can be displayed on the screen the same way songs are. This plugin provides greater freedom over the songs plugin. + + + + + CustomPlugin.CustomTab + + + Custom + + + + + Custom Display + Anpassad Visning + + + + Display footer + + + + + CustomPlugin.EditCustomForm + + + Edit Custom Slides + Redigera anpassad bild + + + + Move slide up once 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: + + + + + Save && Preview + Spara && förhandsgranska + + + + Error + Fel + + + + You need to type in a title. + + + + + You need to add at least one slide + + + + + You have one or more unsaved slides, please either save your slide(s) or clear your changes. + + + + + CustomPlugin.MediaItem + + + Custom + + + + + You haven't selected an item to edit. + + + + + You haven't selected an item to delete. + + + + + ImagePlugin + + + <strong>Image Plugin</strong><br />The image plugin provides displaying of images.<br />One of the distinguishing features of this plugin is the ability to group a number of images together in the service manager, making the displaying of multiple images easier. This plugin can also make use of OpenLP's "timed looping" feature to create a slide show that runs automatically. In addition to this, images from the plugin can be used to override the current theme's background, which renders text-based items like songs with the selected image as a background instead of the background provided by the theme. + + + + + ImagePlugin.ImageTab + + + Images + Bilder + + + + Image Settings + Bildinställningar + + + + Slide loop delay: + + + + + sec + sek + + + + ImagePlugin.MediaItem + + + Image + Bild + + + + Select Image(s) + Välj bild(er) + + + + All Files + + + + + Replace Live Background + + + + + Replace 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. + + + + + MediaPlugin + + + <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. + + + + + MediaPlugin.MediaItem + + + Media + Media + + + + Select Media + Välj media + + + + Replace Live Background + + + + + Replace Background + + + + + You must select a media file to delete. + + + + + OpenLP + + + Image Files + + + + + OpenLP.AboutForm + + + About OpenLP + Om OpenLP + + + + OpenLP <version><revision> - Open Source Lyrics Projection OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if OpenOffice.org, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. Find out more about OpenLP: http://openlp.org/ OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider contributing by using the button below. - OpenLP <version> bygge <revision> - Open Source Lyrics Projection + + + + + About + Om + + + + Project Lead + Raoul "superfly" Snyman -OpenLP är en gratis presentationsmjukvara för kyrkor, eller projektionsmjukvara för sångtexter, använt för att visa sånger, Bibelverser, videor, bilder, och till och med presentationer (om OpenOffice.org, PowerPoint eller PowerPoint Viewer är installerat) för lovsång genom en dator och en projektor. +Developers + Tim "TRB143" Bentley + Jonathan "gushie" Corwin + Michael "cocooncrash" Gorven + Scott "sguerrieri" Guerrieri + Raoul "superfly" Snyman + Martin "mijiti" Thompson + Jon "Meths" Tibble -Få reda på mer om OpenLP: http://openlp.org/ +Contributors + Meinert "m2j" Jordan + Christian "crichter" Richter + Maikel Stuivenberg + Carsten "catini" Tingaard -OpenLP är utvecklad och underhållen av frivilliga. Om du vill se fler kristna mjukvaror utvecklas, vänligen bidra genom knappen nedan.Pretty long text, puh - - - SongsPlugin +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) + + + - - OpenLP 2.0 - OpenLP 2.0 - - - ServiceManager + + Credits + Credits + - - New Service - Ny mötesplanering - - - Ui_TopicsDialog + + 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. + + - - Topic name: - Ämnesnamn: - - - Ui_BibleImportWizard + + License + Licens + - - License Details - Licensdetaljer - - - Ui_AboutDialog + + Contribute + Bidra + - - License - Licens - - - OpenSongBible + + Close + Stäng + - - Importing - Importerar - - - Ui_AmendThemeDialog + + build %s + + + + + OpenLP.AdvancedTab - - Middle - Mitten - - - Ui_customEditDialog + + Advanced + Avancerat + - - Save - Spara - - - AlertEditForm + + UI Settings + + - - Item selected to Edit - Objekt vald för redigering - - - BibleMediaItem + + Number of recent files to display: + + - - From: - Från: - - - Ui_AmendThemeDialog + + Remember active media manager tab on startup + + - - Shadow Color: - Skuggfärg: - - - ServiceManager + + Double-click to send items straight to live (requires restart) + + + + + OpenLP.AmendThemeForm - - &Notes - &Anteckningar - - - Ui_MainWindow + + Theme Maintenance + Temaunderhåll + - - E&xit - &Avsluta - - - Ui_OpenLPImportDialog + + Theme &name: + + - - Close - Stäng - - - MainWindow + + &Visibility: + + - - OpenLP Version Updated - OpenLP-version uppdaterad - - - Ui_customEditDialog + + Opaque + Ogenomskinlig + - - Replace edited slide - Ersätt redigerad bild - - - EditCustomForm + + Transparent + Genomskinlig + - - You need to enter a title - Du måste ange en titel - - - ThemeManager + + Type: + Typ: + - - Theme Exists - Temat finns - - - Ui_MainWindow + + Solid Color + Solid Färg + - - &Help - &Hjälp - - - Ui_EditVerseDialog + + Gradient + Stegvis + - - Bridge - Brygga - - - Ui_OpenSongExportDialog + + Image + Bild + - - OpenSong Song Exporter - OpenSong sångexportör - - - Ui_AmendThemeDialog + + Image: + Bild: + - - Vertical Align: - Vertikal justering: - - - TestMediaManager + + Gradient: + + - - Item2 - Objekt2 + + Horizontal + Horisontellt + - - Item1 - Objekt1 - - - Ui_AmendThemeDialog + + Vertical + Vertikal + - - Top - Topp - - - BiblesTab + + Circular + Cirkulär + - - Display Dual Bible Verses - Visa dubbla Bibelverser - - - Ui_MainWindow + + &Background + + - - Toggle Service Manager - Växla mötesplaneringshanterare - - - Ui_EditSongDialog + + Main Font + Huvudfont + - - Delete - Ta bort - - - MediaManagerItem + + Font: + Font: + - - &Add to Service - &Lägg till i mötesplanering - - - AmendThemeForm + + Color: + + - - First Color: - Första färg: - - - ThemesTab + + Size: + Storlek: + - - Song level - Sångnivå - - - alertsPlugin + + pt + pt + - - Show an alert message - Visa ett alarmmeddelande - - - Ui_MainWindow + + Wrap indentation: + + - - Ctrl+F1 - Ctrl+F1 - - - SongMaintenanceForm + + Adjust line spacing: + + - - Couldn't save your topic. - Kunde inte spara ditt ämne. - - - Ui_MainWindow + + Normal + Normal + - - Save the current service under a new name - Spara nuvarande mötesplanering under ett nytt namn - - - Ui_OpenLPExportDialog + + Bold + Fetstil + - - Remove Selected - Ta bort valda - - - ThemeManager + + Italics + Kursiv + - - Delete theme - Ta bort tema - - - ImageTab + + Bold/Italics + Fetstil/kursiv + - - Image Settings - Bildinställningar - - - Ui_OpenSongImportDialog + + Style: + + - - OpenSong Song Importer - OpenSong sångimportör - - + + 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. + + + + + OpenLP.GeneralTab + + + General + Allmänt + + + + Monitors + Skärmar + + + + Select monitor for output display: + Välj skärm för utsignal: + + + + Display if a single screen + + + + + Application Startup + Programstart + + + + Show blank screen warning + Visa varning vid tom skärm + + + + Automatically open the last service + Öppna automatiskt den senaste planeringen + + + + Show the splash screen + Visa startbilden + + + + Application Settings + Programinställningar + + + + Prompt to save Service before starting New + Fråga om att spara mötesplanering innan en ny skapas + + + + Preview Next Song from Service Manager + Förhandsgranska nästa sång från mötesplaneringen + + + + CCLI Details + CCLI-detaljer + + + + CCLI number: + + + + + SongSelect username: + + + + + SongSelect password: + + + + + Display Position + + + + + X + + + + + Y + + + + + Height + + + + + Width + + + + + Override display position + + + + + Screen + Skärm + + + + primary + primär + + + + OpenLP.LanguageManager + + + Language + + + + + Please restart OpenLP to use your new language setting. + + + + + OpenLP.MainWindow + + + OpenLP 2.0 + OpenLP 2.0 + + + + English + 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>. + + + + + 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 + + + + + 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. + + + + + OpenLP.PluginForm + + + Plugin List + Pluginlista + + + + Plugin Details + Plugindetaljer + + + + Version: + Version: + + + + TextLabel + TextLabel + + + + About: + Om: + + + + Status: + Status: + + + + Active + Aktiv + + + + Inactive + Inaktiv + + + + %s (Inactive) + + + + + %s (Active) + + + + + %s (Disabled) + + + + + OpenLP.ServiceItemEditForm + + + Reorder Service Item + + + + + Up + + + + + Delete + Ta bort + + + + Down + + + + + OpenLP.ServiceManager + + + New Service + + + + + Create a new service + Skapa en ny mötesplanering + + + + Open Service + + + + + Load an existing service + Ladda en planering + + + + Save Service + + + + + Save this service + Spara denna mötesplanering + + + + Theme: + Tema: + + + + Select a theme for the service + Välj ett tema för planeringen + + + + Move to &top + Flytta till &toppen + + + + Move item to the top of the service. + + + + + Move &up + Flytta &upp + + + + Move item up one position in the service. + + + + + Move &down + Flytta &ner + + + + Move item down one position in the service. + + + + + Move to &bottom + Flytta längst &ner + + + + Move item to the end of the service. + + + + + &Delete From Service + &Ta bort från mötesplanering + + + + Delete the selected item from the service. + + + + + &Add New Item + + + + + &Add to Selected Item + + + + + &Edit Item + &Redigera objekt + + + + &Reorder Item + + + + + &Notes + &Anteckningar + + + + &Preview Verse + &Förhandsgranska Vers + + + + &Live Verse + &Live-vers + + + + &Change Item Theme + &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 + + + + + OpenLP.ServiceNoteForm + + + Service Item Notes + Mötesanteckningar + + + + OpenLP.SettingsForm + + + Configure OpenLP + + + + + 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 + + + + Go to Verse + Hoppa till vers + + + + OpenLP.ThemeManager + + + New Theme + Nytt Tema + + + + Create a new theme. + + + + + Edit Theme + Redigera tema + + + + Edit a theme. + + + + + Delete Theme + Ta bort tema + + + + Delete a theme. + + + + + Import Theme + Importera tema + + + + Import a theme. + + + + + Export Theme + Exportera tema + + + + Export a theme. + + + + + &Edit Theme + + + + + &Delete Theme + + + + + Set As &Global Default + + + + + E&xport Theme + + + + + %s (default) + + + + + You must select a theme to edit. + + + + + You must select a theme to delete. + + + + + Delete Confirmation + + + + + Delete theme? + + + + + Error + Fel + + + + You are unable to delete the default theme. + Du kan inte ta bort standardtemat. + + + + Theme %s is use in %s plugin. + + + + + Theme %s is use by the service manager. + + + + + You have not selected a theme. + Du har inte valt ett tema. + + + + Save Theme - (%s) + Spara tema - (%s) + + + + Theme Exported + + + + + Your theme has been successfully exported. + + + + + Theme Export Failed + + + + + Your theme could not be exported due to an error. + + + + + Select Theme Import File + Välj tema importfil + + + + Theme (*.*) + + + + + 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? + + + + + OpenLP.ThemesTab + + + Themes + Teman + + + + Global Theme + + + + + Theme Level + + + + + S&ong Level + + + + + Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. + Använd temat för varje sång i databasen indviduellt. Om en sång inte har ett associerat tema, använd planeringens schema. Om planeringen inte har ett tema, använd globala temat. + + + + &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. + Använd temat för mötesplaneringen, och ignorera sångernas indviduella teman. Om mötesplaneringen inte har ett tema använd då det globala temat. + + + + &Global Level + + + + + Use the global theme, overriding any themes associated with either the service or the songs. + Använd det globala temat, ignorerar teman associerade med mötesplaneringen eller sångerna. + + + + 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. + + + + + 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. + + + + + PresentationPlugin.PresentationTab + + + Presentations + Presentationer + + + + Available Controllers + Tillgängliga Presentationsprogram + + + + Advanced + + + + + 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. + + + + + RemotePlugin.RemoteTab + + + Remotes + Fjärrstyrningar + + + + Serve on IP address: + + + + + Port number: + + + + + Server Settings + + + + SongUsagePlugin - - &Extract recorded data - &Extrahera inspelade data - - - AlertsTab + + &Song Usage Tracking + + - - Font Name: - Fontnamn: - - - Ui_MainWindow + + &Delete Tracking Data + + - - &Web Site - &Webbsida - - - MediaManagerItem + + Delete song usage data up to a specified date. + + - - Send the selected item live - Skicka det valda objektet till live - - - Ui_MainWindow + + &Extract Tracking Data + + - - M&ode - &Läge + + Generate a report on song usage. + + - - Translate the interface to your language - Översätt gränssnittet till ditt språk + + Toggle Tracking + + - - Service Manager - Mötesplaneringshanterare - - - CustomMediaItem + + Toggle the tracking of song usage. + + - - Custom - Anpassad - - - Ui_BibleImportWizard + + <strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services. + + + + + SongUsagePlugin.SongUsageDeleteForm - - OSIS - OSIS - - + + Delete Selected Song Usage Events? + Ta bort valda sånganvändningsdata? + + + + Are you sure you want to delete selected Song Usage data? + Vill du verkligen ta bort vald sånganvändningsdata? + + + + Delete Song Usage Data + + + + + SongUsagePlugin.SongUsageDetailForm + + + Output File Location + Utfil sökväg + + + + Song Usage Extraction + Sånganvändningsutdrag + + + + Select Date Range + Välj datumspann + + + + to + till + + + + Report Location + Rapportera placering + + + SongsPlugin - - openlp.org 1.0 - openlp.org 1.0 - - - Ui_MainWindow - - - &Theme - &Tema - - - Ui_EditVerseDialog - - - Edit Verse - Redigera vers - - - Ui_MainWindow - - - &Language - &Språk - - - ServiceManager - - - Move to end - Flytta till slutet - - - Your service is unsaved, do you want to save those changes before creating a new one ? - Din planering är inte sparad, vill du spara den innan du skapar en ny ? - - - Ui_OpenSongExportDialog - - - Remove Selected - Ta bort valda - - - SongMediaItem - - - Search: - Sök: - - - MainWindow - - - Save Changes to Service? - Spara ändringar till mötesplanering? - - - Your service has changed, do you want to save those changes? - Din planering har ändrats, vill du spara den? - - - ServiceManager - - - &Delete From Service - &Ta bort från mötesplanering - - - Ui_EditSongDialog - - - &Add to Song - &Lägg till i sång - - - Ui_MainWindow - - - &About - &Om - - - ImportWizardForm - - - You need to specify a version name for your Bible. - Du måste ange ett versionsnamn för din Bibel. - - - BiblesTab - - - Only show new chapter numbers - Visa bara nya kapitelnummer - - - Ui_AlertEditDialog - - - Delete - Ta bort - - - EditCustomForm - - - Error - Fel - - - ThemesTab - - - 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. - Använd temat för mötesplaneringen, och ignorera sångernas indviduella teman. Om mötesplaneringen inte har ett tema använd då det globala temat. - - - AlertEditForm - - - Item selected to Add - Objekt valda att lägga till - - - Ui_AmendThemeDialog - - - Right - Höger - - - ThemeManager - - - Save Theme - (%s) - Spara tema - (%s) - - - MediaManagerItem - - - Add the selected item(s) to the service - Lägg till valda objekt till planeringen - - - AuthorsForm - - - Error - Fel - - - Ui_AmendThemeDialog - - - Font Color: - Fontfärg: - - - Ui_OpenLPImportDialog - - - Select openlp.org songfile to import: - Välj openlp.org sångfil att importera: - - - Ui_SettingsDialog - - - Settings - Alternativ - - - BiblesTab - - - Layout Style: - Layoutstil: - - - MediaManagerItem - - - Edit the selected - Redigera valda - - - SlideController - - - Move to next - Flytta till nästa - - - Ui_MainWindow - - - &Plugin List - &Pluginlista - - - BiblePlugin - - - &Bible - &Bibel - - - Ui_BibleImportWizard - - - Web Download - Webbnedladdning - - - Ui_AmendThemeDialog - - - Horizontal - Horisontellt - - - ImportWizardForm - - - Open OSIS file - Öppna OSIS-fil - - - Ui_AmendThemeDialog - - - Circular - Cirkulär - - - PresentationMediaItem - - - Automatic - Automatisk - - - SongMaintenanceForm - - - Couldn't save your book. - Kunde inte spara din bok. - - - Ui_AmendThemeDialog - - - pt - pt - - - Ui_MainWindow - - - &Add Tool... - &Lägg till verktyg... - - - SongMaintenanceForm - - - Delete Topic - Ta bort ämne - - - Ui_OpenLPImportDialog - - - Lyrics - Sångtexter - - - BiblesTab - - - No brackets - Ingen grupp - - - Ui_AlertEditDialog - - - Maintain Alerts - Underhåll alarm - - - Ui_AmendThemeDialog - - - px - px - - - ServiceManager - - - Select a theme for the service - Välj ett tema för planeringen - - - ThemesTab - - - Themes - Teman - - - Ui_PluginViewDialog - - - Status: - Status: - - - Ui_EditSongDialog - - - CCLI Number: - CCLI-nummer: - - - ImportWizardForm - - - This Bible already exists! Please import a different Bible or first delete the existing one. - Bibeln existerar redan! Importera en annan BIbel eller ta bort den som finns. - - - Ui_MainWindow - - - &Translate - &Översätt - - - BiblesTab - - - Bibles - Biblar - - - Ui_SongMaintenanceDialog - - - Authors - Författare - - - SongUsageDetailForm - - - Output File Location - Utfil sökväg - - - BiblesTab - - - { and } - { och } - - - GeneralTab - - - Prompt to save Service before starting New - Fråga om att spara mötesplanering innan en ny skapas - - - ImportWizardForm - - - Starting import... - Påbörjar import... - - - BiblesTab - - - Note: -Changes don't affect verses already in the service - Observera:: -Ändringar påverkar inte verser som redan finns i mötesplaneringen - - - Ui_EditVerseDialog - - - Intro - Intro - - - ServiceManager - - - Move up order - Flytta upp orderOrder as in opposit to messy, or order as a general gives? Current translatation is the second, the order a general gives, however, hopefully this order is less violent - - - PresentationTab - - - available - tillgänglig - - - ThemeManager - - - default - standard - - - SongMaintenanceForm - - - Delete Author - Ta bort låtskrivare - - - Ui_AmendThemeDialog - - - Display Location - Visa plats - - - Ui_PluginViewDialog - - - Version: - Version: - - - Ui_AlertEditDialog - - - Add - Lägg till - - - GeneralTab - - - General - Allmänt - - - Ui_AmendThemeDialog - - - Y Position: - Y-position: - - - ServiceManager - - - Move down order - Flytta ner order - - - BiblesTab - - - verse per slide - vers per bild - - - Ui_AmendThemeDialog - - - Show Shadow: - Visa skugga: - - - AlertsTab - - - Preview - Förhandsgranska - - - alertsPlugin - - - <b>Alerts Plugin</b><br>This plugin controls the displaying of alerts on the presentations screen - <b>Alarm Plugin</b><br>Den här plugin:en kontrollerar visning av alarm på presentationsbilden - - - GeneralTab - - - Show the splash screen - Visa startbilden - - - Ui_MainWindow - - - New Service - Ny Mötesplanering - - - SlideController - - - Move to first - Flytta till första - - - Ui_MainWindow - - - &Online Help - &Online-hjälp - - - SlideController - - - Blank Screen - Töm skärmTöm skärm är ett kommando, tom skärm är ett påstående. Jag tror texten ska vara ett kommando, dvs att man ska tömma skärmen - - - Ui_MainWindow - - - Save Service - Spara Planering - - - Save &As... - S&para som... - - - Toggle the visibility of the Media Manager - Växla mediahanterarens synlighet - - - BibleMediaItem - - - No Book Found - Ingen bok hittades - - - Ui_EditSongDialog - - - Add - Lägg till - - - alertsPlugin - - - &Alert - &Alarm - - - BibleMediaItem - - - Advanced - Avancerat - - - ImageMediaItem - - - Image(s) - Bilder - - - Ui_MainWindow - - - F11 - F11 - - - F10 - F10 - - - F12 - F12 - - - Ui_BibleImportWizard - - - Select the import format, and where to import from. - Välj format för import, och plats att importera från. - - - CustomPlugin - - - <b>Custom Plugin</b><br>This plugin allows slides to be displayed on the screen in the same way songs are. This plugin provides greater freedom over the songs plugin.<br> - <b>Anpassad Plugin</b><br>Det här pluginprogrammet tillåter visning av bilder på samma sätt som sånger. Den ger större frihet över sångpluginprogrammet.<br> - - - Ui_MainWindow - - - Alt+F7 - Alt+F7 - - - Add an application to the list of tools - Lägg till ett program i listan av verktyg - - - MediaPlugin - - - <b>Media Plugin</b><br>This plugin allows the playing of audio and video media - <b>Media Plugin</b><br>Den här plugin:en tillåter uppspelning av ljud och video - - - ServiceManager - - - Move &down - Flytta &ner - - - BiblesTab - - - Bible Theme: - Bibeltema: - - - SongsPlugin - - - Export songs in openlp.org 1.0 format - Exportera sånger i openlp.org 1.0-format - - - Ui_MainWindow - - - Theme Manager - Temahanterare - - - AlertsTab - - - Alerts - Alarm - - - Ui_customEditDialog - - - Move slide down 1 - Flytta ner bild ett steg - - - Ui_AmendThemeDialog - - - Font: - Font: - - - ServiceManager - - - Load an existing service - Ladda en planering - - - Ui_MainWindow - - - Toggle the visibility of the Theme Manager - Växla Temahanterarens synlighet - - - PresentationTab - - - Presentations - Presentationer - - - SplashScreen - - - Starting - Startar - - - ImageTab - - - Slide Loop Delay: - Fördröjning av bild-loop: - - - SlideController - - - Verse - Vers - - - AlertsTab - - - Alert timeout: - Alarm timeout: - - - Ui_MainWindow - - - &Preview Pane - &Förhandsgranskning - - - MediaManagerItem - - - Add a new - Lägg till en ny - - - ThemeManager - - - Select Theme Import File - Välj tema importfil - - - New Theme - Nytt Tema - - - MediaMediaItem - - - Media - Media - - - Ui_AmendThemeDialog - - - Preview - Förhandsgranska - - - Outline Size: - Konturstorlek: - - - Ui_OpenSongExportDialog - - - Progress: - Progress: - - - AmendThemeForm - - - Second Color: - Andrafärg: - - - Ui_EditSongDialog - - - Theme, Copyright Info && Comments - Tema, copyright-info && kommentarer - - - Ui_AboutDialog - - - Credits - Credits - - - BibleMediaItem - - - To: - Till: - - - Ui_EditSongDialog - - - Song Book - Sångbok - - - Ui_OpenLPExportDialog - - - Author - Låtskrivare - - - Ui_AmendThemeDialog - - - Wrap Indentation - IndragUnclear what this option does to the text, since it doesn't happen anything when changing it in the program. - - - ThemeManager - - - Import a theme - Importera ett tema - - - ImageMediaItem - - - Image - Bild - - - BibleMediaItem - - - Clear - Töm - - - Ui_MainWindow - - - Save Service As - Spara mötesplanering som... - - - Ui_AlertDialog - - - Cancel - Avbryt - - - Ui_OpenLPImportDialog - - - Import - Importera - - - Ui_EditVerseDialog - - - Chorus - Refräng - - - Ui_EditSongDialog - - - Edit All - Redigera alla - - - AuthorsForm - - - You need to type in the last name of the author. - Du måste ange författarens efternamn. - - - SongsTab - - - Songs Mode - Sångläge - - - Ui_AmendThemeDialog - - - Left - Vänster - - - RemotesPlugin - - - <b>Remote Plugin</b><br>This plugin provides the ability to send messages to a running version of openlp on a different computer.<br>The Primary use for this would be to send alerts from a creche - <b>Fjärrstyrning Plugin</b><br>Den här plugin:en kan skicka meddelanden till OpenLP-program på en annan dator<br>Användningen vore framför allt att skicka alarm från ett barnrumwhat's a creche? A room in a church where children kan play during the service? Current translation is that, however, translation software suggests a home for children without parents. That didn't feel too right though... - - - ImageTab - - - Images - Bilder - - - BibleMediaItem - - - Verse: - Vers: - - - Ui_OpenLPExportDialog - - - openlp.org Song Exporter - openlp.org sångexportör - - - Song Export List - Sång exportlista - - - ThemeManager - - - Export theme - Exportera tema - - - Ui_SongMaintenanceDialog - - - Delete - Ta bort - - - Ui_AmendThemeDialog - - - Theme Name: - Namn på tema: - - - Ui_AboutDialog - - - About OpenLP - Om OpenLP - - - Ui_MainWindow - - - Toggle the visibility of the Service Manager - Växla mötesplaneringshanterarens synlighet - - - PresentationMediaItem - - - A presentation with that filename already exists. - En presentation med det namnet finns redan. - - - ImageMediaItem - - - Allow the background of live slide to be overridden - Tillåt live-bildens bakgrund att ignoreras - - - SongUsageDeleteForm - - - Are you sure you want to delete selected Song Usage data? - Vill du verkligen ta bort vald sånganvändningsdata? - - - AlertsTab - - - openlp.org - openlp.org - - - ImportWizardForm - - - Invalid Books File - Ogiltig bokfil - - - Ui_OpenLPImportDialog - - - Song Title - Sångtitel - - - MediaManagerItem - - - &Show Live - &Visa Live - - - AlertsTab - - - Keep History: - Behåll historik: - - - Ui_AmendThemeDialog - - - Image: - Bild: - - - Ui_customEditDialog - - - Set Theme for Slides - Sätt Tema för Bilder - - - Ui_MainWindow - - - More information about OpenLP - Mer information om OpenLP - - - AlertsTab - - - Background Color: - Bakgrundsfärg: - - - SongMaintenanceForm - - - No topic selected! - Inget ämne valt! - - - Ui_MainWindow - - - &Media Manager - &Mediahanterare - - - &Tools - &Verktyg - - - AmendThemeForm - - - Background Color: - Bakgrundsfärg: - - - Ui_EditSongDialog - - - A&dd to Song - Lägg till i sång - - - Title: - Titel: - - - GeneralTab - - - Screen - Skärm - - - SongMaintenanceForm - - - This topic can't be deleted, it is currently assigned to at least one song. - Ämnet kan inte tas bort, den är associerad med åtminstone en sång. - - - AlertsTab - - - s - s - - - Ui_AlertEditDialog - - - Clear - Töm - - - Ui_BibleImportWizard - - - Please wait while your Bible is imported. - Vänligen vänta medan din Bibel importeras. - - - MediaManagerItem - - - No items selected... - Inget valt objekt... - - - Ui_OpenLPImportDialog - - - Select All - Välj allt - - - Ui_AmendThemeDialog - - - Font Main - Huvudfont - - - Ui_OpenLPImportDialog - - - Title - Titel - - - Ui_OpenSongExportDialog - - - Select OpenSong song folder: - Välj OpenSong-mapp: - - - Ui_MainWindow - - - Toggle Media Manager - Växla mediahanterare - - - SongUsagePlugin - - - &Song Usage - &Sånganvändning - - - GeneralTab - - - Monitors - Skärmar - - - EditCustomForm - - - You need to enter a slide - Du måste ange en bild - - - ThemeManager - - - You have not selected a theme. - Du har inte valt ett tema. - - - Ui_EditVerseDialog - - - Verse Type - Verstyp - - - ImportWizardForm - - - You need to specify a file to import your Bible from. - Du måste ange en fil att importera dina Biblar från. - - - Ui_EditSongDialog - - - Comments - Kommentarer - - - AlertsTab - - - Bottom - Botten - - - Ui_MainWindow - - - Create a new Service - Skapa en ny mötesplanering - - - AlertsTab - - - Top - Topp - - - ServiceManager - - - &Preview Verse - &Förhandsgranska Vers - - - Ui_PluginViewDialog - - - TextLabel - TextLabel - - - AlertsTab - - - Font Size: - Fontstorlek: - - - Ui_PluginViewDialog - - - About: - Om: - - - Inactive - Inaktiv - - - Ui_OpenSongExportDialog - - - Ready to export - Redo att exportera - - - Export - Exportera - - - Ui_PluginViewDialog - - - Plugin List - Pluginlista - - - Ui_AmendThemeDialog - - - Transition Active: - Övergång aktiv: - - - Ui_BibleImportWizard - - - Proxy Server (Optional) - Proxyserver (Frivilligt) - - - Ui_EditSongDialog - - - &Manage Authors, Topics, Books - &Hantera författare, ämnen, böcker - - - Ui_OpenLPExportDialog - - - Ready to export - Redo att exportera - - - ImageMediaItem - - - Images (*.jpg *.jpeg *.gif *.png *.bmp);; All files (*) - Bilder (*.jpg *.jpeg *.gif *.png *.bmp);; Alla filer (*) - - - EditCustomForm - - - Save && Preview - Spara && förhandsgranska - - - Ui_OpenLPExportDialog - - - Select All - Välj allt - - - Ui_SongUsageDetailDialog - - - to - till - - - Ui_AmendThemeDialog - - - Size: - Storlek: - - - MainWindow - - - OpenLP Main Display Blanked - OpenLP huvuddisplay tömd - - - Ui_OpenLPImportDialog - - - Remove Selected - Ta bort valda - - - ServiceManager - - - Move &up - Flytta &upp - - - ImportWizardForm - - - You need to specify an OpenSong Bible file to import. - Du måste ange en OpenSong Bibel-fil att importera. - - - PresentationMediaItem - - - Select Presentation(s) - Välj presentation(er) - - - File exists - Fil finns - - - Ui_OpenSongImportDialog - - - Ready to import - Redo att importera - - - SlideController - - - Stop continuous loop - Stoppa upprepad loop - - - s - s - - - ImagePlugin - - - <b>Image Plugin</b><br>Allows images of all types to be displayed. If a number of images are selected together and presented on the live controller it is possible to turn them into a timed loop.<br<br>From the plugin if the <i>Override background</i> is chosen and an image is selected any songs which are rendered will use the selected image from the background instead of the one provied by the theme.<br> - <b>Bild Plugin</b><br>Visar bilder av alla typer. Om flera bilder väljs och presenteras kan de visas en oändlig loop. <br<br> Om <i>Ignorera bakgrund</i> är valt och en bild markerad kommer sångerna visas med den markerade bilden som bakgrund, istället för bilen från temat.<br> - - - SongMediaItem - - - Song Maintenance - Sångunderhåll - - - Ui_customEditDialog - - - Edit - Redigera - - - Ui_AmendThemeDialog - - - Gradient : - Stegvis : - - - ImportWizardForm - - - Invalid Verse File - Ogiltid versfil - - - EditSongForm - - - Error - Fel - - - Ui_customEditDialog - - - Add New - Lägg till ny - - - Ui_AuthorsDialog - - - Display name: - Visningsnamn: - - - SongMaintenanceForm - - - Are you sure you want to delete the selected topic? - Är du säker på att du vill ta bort valt ämne? - - - Ui_AmendThemeDialog - - - Bold/Italics - Fetstil/kursiv - - - Ui_SongMaintenanceDialog - - - Song Maintenance - Sångunderhåll - - - Ui_BibleImportWizard - - - Welcome to the Bible Import Wizard - Välkommen till guiden för Bibelimport - - - SongsTab - - - Songs - Sånger - - - Ui_BibleImportWizard - - - Password: - Lösenord: - - - Ui_MainWindow - - - &Theme Manager - &Temahanterare - - - MediaManagerItem - - - Preview the selected item - Förhandsgranska det valda objektet - - - Ui_BibleImportWizard - - - Version Name: - Versionsnamn: - - - Ui_AboutDialog - - - About - Om - - - MediaMediaItem - - - Select Media - Välj media - - - Ui_AmendThemeDialog - - - Horizontal Align: - Horisontell justering: - - - ServiceManager - - - &Edit Item - &Redigera objekt - - - Ui_AmendThemeDialog - - - Background Type: - Bakgrundstyp: - - - Ui_MainWindow - - - &Save - &Spara - - - OpenLP 2.0 - OpenLP 2.0 - - - ThemeManager - - - A theme with this name already exists, would you like to overwrite it? - Ett tema med detta namn finns redan, vill du spara över det? - - - Export a theme - Exportera ett tema - - - AmendThemeForm - - - Open file - Öppna fil - - - Ui_TopicsDialog - - - Topic Maintenance - Ämnesunderhåll - - - Ui_customEditDialog - - - Clear edit area - Töm redigeringsområde - - - Ui_AmendThemeDialog - - - Show Outline: - Visa Kontur: - - - Gradient - Stegvis - - - SongBookForm - - - You need to type in a book name! - Du måste ange ett boknamn! - - - ImportWizardForm - - - Open OpenSong Bible - Öppna OpenSong Bibel - - - Ui_MainWindow - - - Look && &Feel - Utseende && &känsla - - - Ui_BibleImportWizard - - - Ready. - Redo. - - - Ui_SongMaintenanceDialog - - - Books/Hymnals - Böcker/psalmböcker - - - Ui_AboutDialog - - - Contribute - Bidra - - - ServiceManager - - - Move to &bottom - Flytta längst &ner - - - Ui_BibleImportWizard - - - Books Location: - Bokplacering: - - - Ui_OpenSongExportDialog - - - Full Song List - Fullständig sånglista - - - GeneralTab - - - SongSelect Password: - SongSelect-lösenord: - - + + &Song + &Sång + + + + Import songs using the import wizard. + + + + + Songs of Fellowship (temp menu item) + + + + + Import songs from the VOLS1_2.RTF, sof3words.rtf and sof4words.rtf supplied with the music books + + + + + Generic Document/Presentation Import (temp menu item) + + + + + Import songs from Word/Writer/Powerpoint/Impress + + + + + OpenSong (temp menu item) + + + + + Import songs from OpenSong files(either raw text or ZIPfiles) + + + + + OpenLP v2 Songs (temporary) + + + + + Import an OpenLP v2 song database + + + + + Open Songs of Fellowship file + + + + + Import Error + + + + + Error importing Songs of Fellowship file. +OpenOffice.org must be installed and you must be using an unedited copy of the RTF included with the Songs of Fellowship Music Editions + + + + + Open OpenSong file + + + + + Error importing OpenSong file + + + + + Select OpenLP database(s) to import... + + + + + Database(s) imported + + + + + Your OpenLP v2 song databases have been successfully imported + + + + + Error importing OpenLP v2 database(s) + + + + + Open documents or presentations + + + + + <strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs. + + + + + SongsPlugin.AuthorsForm + + + Author Maintenance + Författare underhåll + + + + Display name: + Visningsnamn: + + + + First name: + Förnamn: + + + + Last name: + Efternamn: + + + + Error + Fel + + + + You need to type in the first name of the author. + Du måste ange låtskrivarens förnamn. + + + + You need to type in the last name of the author. + Du måste ange författarens efternamn. + + + + 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 + Sångredigerare + + + + &Title: + + + + + &Lyrics: + + + + + &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 + + + + + Copyright Information + Copyright-information + + + + © + + + + + 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? + + + + + Alt&ernate title: + + + + + &Verse order: + + + + + CCLI number: + + + + + SongsPlugin.EditVerseForm + + + Edit Verse + Redigera vers + + + + &Verse type: + + + + + &Insert + + + + + SongsPlugin.ImportWizardForm + + + No OpenLyrics Files Selected + + + + + You need to add at least one OpenLyrics song file to import from. + + + + + No OpenSong Files Selected + + + + + You need to add at least one OpenSong song file to import from. + + + + + No CCLI Files Selected + + + + + You need to add at least one CCLI file to import from. + + + + + No CSV File Selected + + + + + You need to specify a CSV file to import from. + + + + + 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: + + + + OpenLyrics + + + + + OpenSong + OpenSong + + + + CCLI + + + + + CSV + CSV + + + + Add Files... + + + + + Remove File(s) + + + + + Filename: + + + + + Browse... + + + + + Importing + Importerar + + + + Please wait while your songs are imported. + + + + + Ready. + Redo. + + + + %p% + + + + + 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. + + + + + CCLI Licence: + CCLI-licens: + + + + Are you sure you want to delete the selected song? + + + + + Are you sure you want to delete the %d selected songs? + + + + + Delete Song(s)? + + + + + SongsPlugin.SongBookForm + + + Song Book Maintenance + + + + + &Name: + + + + + &Publisher: + + + + + Error + Fel + + + + You need to type in a name for the book. + + + + + SongsPlugin.SongImport + + + copyright + + + + + © + + + + + SongsPlugin.SongMaintenanceForm + + + Song Maintenance + Sångunderhåll + + + + Authors + + + + + Topics + Ämnen + + + + Song Books + + + + + &Add + + + + + &Edit + &Redigera + + + + &Delete + + + + + 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! + + + + SongsPlugin.SongsTab + + + Songs + Sånger + + + + Songs Mode + Sångläge + + + + Enable search as you type + + + + + Display verses on live tool bar + + + + + SongsPlugin.TopicsForm + + + Topic Maintenance + Ämnesunderhåll + + + + Topic name: + Ämnesnamn: + + + + Error + Fel + + + + You need to type in a topic name! + Du måste skriva in ett namn på ämnet! + + + + SongsPlugin.VerseType + + + Verse + Vers + + + + Chorus + Refräng + + + + Bridge + Brygga + + + + Pre-Chorus + Brygga + + + + Intro + Intro + + + + Ending + Ending + + + + Other + Övrigt + +