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/advancedtab.py b/openlp/core/ui/advancedtab.py index fba71f9d4..a32dee333 100644 --- a/openlp/core/ui/advancedtab.py +++ b/openlp/core/ui/advancedtab.py @@ -135,7 +135,7 @@ class AdvancedTab(SettingsTab): self.recentLabel.setText( translate('OpenLP.AdvancedTab', 'Number of recent files to display:')) self.mediaPluginCheckBox.setText(translate('OpenLP.AdvancedTab', - 'Save currently selected media manager plugin')) + '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( diff --git a/openlp/core/ui/generaltab.py b/openlp/core/ui/generaltab.py index 408509605..4aa3e7c0b 100644 --- a/openlp/core/ui/generaltab.py +++ b/openlp/core/ui/generaltab.py @@ -308,11 +308,11 @@ class GeneralTab(SettingsTab): self.CCLIGroupBox.setTitle( translate('OpenLP.GeneralTab', 'CCLI Details')) self.NumberLabel.setText( - translate('OpenLP.GeneralTab', 'CCLI Number:')) + translate('OpenLP.GeneralTab', 'CCLI number:')) self.UsernameLabel.setText( - translate('OpenLP.GeneralTab', 'SongSelect Username:')) + 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')) 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/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/presentations/lib/mediaitem.py b/openlp/plugins/presentations/lib/mediaitem.py index b9ee2b79f..ca103f3d8 100644 --- a/openlp/plugins/presentations/lib/mediaitem.py +++ b/openlp/plugins/presentations/lib/mediaitem.py @@ -155,9 +155,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) @@ -182,7 +182,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) @@ -270,3 +270,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 980c62f47..0cc8734cc 100644 --- a/openlp/plugins/presentations/lib/presentationtab.py +++ b/openlp/plugins/presentations/lib/presentationtab.py @@ -104,9 +104,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) def load(self): """ 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/resources/i18n/openlp_af.ts b/resources/i18n/openlp_af.ts index e7e879480..79fc66234 100644 --- a/resources/i18n/openlp_af.ts +++ b/resources/i18n/openlp_af.ts @@ -66,12 +66,12 @@ - + New Alert - + You haven't specified any text for your alert. Please type in some text before clicking New. @@ -877,176 +877,28 @@ Changes do not affect verses already in the service. - - You must select an item to delete. - - - - + Image(s) Beeld(e) + + + Replace Background + + + + + You must select an image to delete. + + + + + You must select an image to replace the background with. + + - You must select an item to process. - - - - - MediaManagerItem - - - You must select one or more items - P moet meer as een item selekteer - - - - Delete the selected item - Wis geselekteerde item uit - - - - &Add to Service - &Voeg by Diens - - - - Send the selected item live - Stuur die geselekteerde item na regstreekse vertoning - - - - Add the selected item(s) to the service - Voeg die geselekteerde item(s) by die diens - - - - &Show Live - &Vertoon Regstreeks - - - - Preview the selected item - Voorskou die geselekteerde item - - - - 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 - - - - - Preview %s - - - - - Add %s to Service - - - - - &Edit %s - - - - - &Delete %s - - - - - &Preview %s - - - - - &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 - - - - - No Service Item Selected - - - - - You must select an existing service item to add to. - - - - - Invalid Service Item - - - - - You must select a %s service item. + You must select a media file to replace the background with. @@ -1075,9 +927,14 @@ Changes do not affect verses already in the service. Replace Live Background + + + Replace Background + + - You must select an item to delete. + You must select a media file to delete. @@ -1324,13 +1181,13 @@ This General Public License does not permit incorporating your program into prop - - Save currently selected media manager plugin + + Double-click to send items straight to live (requires restart) - - Double-click to send items straight to live (requires restart) + + Remember active media manager tab on startup @@ -1699,16 +1556,6 @@ This General Public License does not permit incorporating your program into prop Preview Next Song from Service Manager Sien Voorskou van Volgende Lied vanaf Diens Bestuurder - - - SongSelect Username: - SongSelect Gebruikers naam: - - - - SongSelect Password: - SongSelect Wagwoord: - Display Position @@ -1766,8 +1613,18 @@ This General Public License does not permit incorporating your program into prop - CCLI Number: - CCLI Nommer: + CCLI number: + + + + + SongSelect username: + + + + + SongSelect password: + @@ -2185,7 +2042,7 @@ You can download the latest version from <a href="http://openlp.org/&quo Save Changes to Service? - + Stoor Veranderinge aan Diens? @@ -2199,7 +2056,165 @@ You can download the latest version from <a href="http://openlp.org/&quo - PluginForm + OpenLP.MediaManagerItem + + + Import %s + + + + + Import a %s + + + + + Load %s + + + + + Load a new %s + + + + + New %s + + + + + Add a new %s + + + + + Edit %s + + + + + Edit the selected %s + + + + + Delete %s + + + + + Delete the selected item + 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 + + + + + No Items Selected + + + + + 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 + P moet meer as een item selekteer + + + + 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 @@ -2221,37 +2236,37 @@ You can download the latest version from <a href="http://openlp.org/&quo TeksEtiket - + About: Aangaande: - + Status: Status: - + Active Aktief - + Inactive Onaktief - + %s (Inactive) - + %s (Active) - + %s (Disabled) @@ -2286,21 +2301,11 @@ You can download the latest version from <a href="http://openlp.org/&quo Present using: Bied aan met: - - - File exists - Lêer bestaan - A presentation with that filename already exists. 'n Voorstelling met daardie lêernaam bestaan reeds. - - - Unsupported file - - This type of presentation is not supported @@ -2311,6 +2316,16 @@ You can download the latest version from <a href="http://openlp.org/&quo You must select an item to delete. + + + File Exists + + + + + Unsupported File + + PresentationPlugin.PresentationTab @@ -2324,11 +2339,6 @@ You can download the latest version from <a href="http://openlp.org/&quo Available Controllers Beskikbare Beheerders - - - available - beskikbaar - RemotePlugin @@ -2345,10 +2355,20 @@ You can download the latest version from <a href="http://openlp.org/&quo Remotes Afstandbehere + + + Serve on IP address: + + - Remotes Receiver Port - Afstandbeheer Ontvanger Poort + Port number: + + + + + Server Settings + @@ -2733,41 +2753,71 @@ The content encoding is not UTF-8. - + 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 - + Open documents or presentations - + <strong>Song Plugin</strong><br />This plugin allows songs to be managed and displayed. + + + 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) + + SongsPlugin.AuditDeleteDialog @@ -2981,90 +3031,100 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R Stoor && Voorskou - + 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 Fout - + 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? + + + This author is already in the list. + + + + + This topic is already in the list. + + SongsPlugin.EditVerseForm @@ -3313,17 +3373,17 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R SongsPlugin.SongBookForm - + Song Book Maintenance - + &Name: - + &Publisher: @@ -3389,112 +3449,112 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - + 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! @@ -3502,12 +3562,12 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R SongsPlugin.SongUsageDeleteForm - + Delete Selected Song Usage Events? - + Are you sure you want to delete selected Song Usage data? @@ -3515,7 +3575,7 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R SongsPlugin.SongUsageDetailForm - + Output File Location Uitvoer Lêer Ligging diff --git a/resources/i18n/openlp_de.ts b/resources/i18n/openlp_de.ts index 60aff291d..a969f6d77 100644 --- a/resources/i18n/openlp_de.ts +++ b/resources/i18n/openlp_de.ts @@ -66,12 +66,12 @@ - + New Alert - + You haven't specified any text for your alert. Please type in some text before clicking New. @@ -877,176 +877,28 @@ Changes do not affect verses already in the service. - - You must select an item to delete. - - - - + 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 an item to process. - - - - - MediaManagerItem - - - You must select one or more items - Sie müssen mindestens ein Element markieren - - - - Delete the selected item - Markiertes Element löschen - - - - &Add to Service - &Zum Ablauf hinzufügen - - - - Send the selected item live - Ausgewähltes Element Live anzeigen - - - - Add the selected item(s) to the service - Füge Element(e) zum Ablauf hinzu - - - - &Show Live - &Zeige Live - - - - Preview the selected item - Zeige das auswählte Element in der Vorschau an - - - - 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 - - - - - Preview %s - - - - - Add %s to Service - - - - - &Edit %s - - - - - &Delete %s - - - - - &Preview %s - - - - - &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 - - - - - No Service Item Selected - - - - - You must select an existing service item to add to. - - - - - Invalid Service Item - - - - - You must select a %s service item. + You must select a media file to replace the background with. @@ -1071,13 +923,18 @@ Changes do not affect verses already in the service. Medien auswählen - - You must select an item to delete. + + Replace Live Background - Replace Live Background + Replace Background + + + + + You must select a media file to delete. @@ -1324,13 +1181,13 @@ This General Public License does not permit incorporating your program into prop - - Save currently selected media manager plugin + + Double-click to send items straight to live (requires restart) - - Double-click to send items straight to live (requires restart) + + Remember active media manager tab on startup @@ -1699,16 +1556,6 @@ This General Public License does not permit incorporating your program into prop Preview Next Song from Service Manager Vorschau des nächsten Lieds - - - SongSelect Username: - SongSelect-Benutzername: - - - - SongSelect Password: - SongSelect-Passwort: - Display Position @@ -1766,8 +1613,18 @@ This General Public License does not permit incorporating your program into prop - CCLI Number: - CCLI-Nummer: + CCLI number: + + + + + SongSelect username: + + + + + SongSelect password: + @@ -2199,7 +2056,165 @@ You can download the latest version from <a href="http://openlp.org/&quo - PluginForm + OpenLP.MediaManagerItem + + + Import %s + + + + + Import a %s + + + + + Load %s + + + + + Load a new %s + + + + + New %s + + + + + Add a new %s + + + + + Edit %s + + + + + Edit the selected %s + + + + + Delete %s + + + + + Delete the selected item + 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 + + + + + No Items Selected + + + + + 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 @@ -2221,37 +2236,37 @@ You can download the latest version from <a href="http://openlp.org/&quo Text Beschriftung - + About: Über: - + Status: Status: - + Active Aktiv - + Inactive Inaktiv - + %s (Inactive) - + %s (Active) - + %s (Disabled) @@ -2286,11 +2301,6 @@ You can download the latest version from <a href="http://openlp.org/&quo Present using: Anzeigen mit: - - - File exists - Datei existiert bereits - A presentation with that filename already exists. @@ -2303,12 +2313,17 @@ You can download the latest version from <a href="http://openlp.org/&quo - Unsupported file + This type of presentation is not supported + + + + + File Exists - This type of presentation is not supported + Unsupported File @@ -2324,11 +2339,6 @@ You can download the latest version from <a href="http://openlp.org/&quo Available Controllers Verfügbare Präsentationsprogramme: - - - available - verfügbar - RemotePlugin @@ -2345,10 +2355,20 @@ You can download the latest version from <a href="http://openlp.org/&quo Remotes Fernprojektion + + + Serve on IP address: + + - Remotes Receiver Port - Fernprojektionsport + Port number: + + + + + Server Settings + @@ -2723,28 +2743,28 @@ The content encoding is not UTF-8. - + 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. @@ -2759,15 +2779,45 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - + 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) + + SongsPlugin.AuditDeleteDialog @@ -2971,87 +3021,87 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R 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? @@ -3065,6 +3115,16 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R Authors, Topics && Song Book + + + This author is already in the list. + + + + + This topic is already in the list. + + SongsPlugin.EditVerseForm @@ -3313,12 +3373,12 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R SongsPlugin.SongBookForm - + &Name: - + &Publisher: @@ -3333,7 +3393,7 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - + Song Book Maintenance @@ -3384,52 +3444,52 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - + 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! @@ -3439,62 +3499,62 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - + 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. @@ -3502,12 +3562,12 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R SongsPlugin.SongUsageDeleteForm - + Delete Selected Song Usage Events? - + Are you sure you want to delete selected Song Usage data? @@ -3515,7 +3575,7 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R SongsPlugin.SongUsageDetailForm - + Output File Location Ablageort für Aufnahme wählen diff --git a/resources/i18n/openlp_en.ts b/resources/i18n/openlp_en.ts index 13d05084a..3a8d0f94a 100644 --- a/resources/i18n/openlp_en.ts +++ b/resources/i18n/openlp_en.ts @@ -66,12 +66,12 @@ - + New Alert - + You haven't specified any text for your alert. Please type in some text before clicking New. @@ -877,176 +877,28 @@ Changes do not affect verses already in the service. - - You must select an item to delete. - - - - + Image(s) + + + Replace Background + + + + + You must select an image to delete. + + + + + You must select an image to replace the background with. + + - You must select an item to process. - - - - - MediaManagerItem - - - You must select one or more items - - - - - &Add to Service - - - - - Send the selected item live - - - - - Add the selected item(s) to the service - - - - - Delete the selected item - - - - - &Show Live - - - - - Preview the selected item - - - - - 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 - - - - - Preview %s - - - - - Add %s to Service - - - - - &Edit %s - - - - - &Delete %s - - - - - &Preview %s - - - - - &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 - - - - - No Service Item Selected - - - - - You must select an existing service item to add to. - - - - - Invalid Service Item - - - - - You must select a %s service item. + You must select a media file to replace the background with. @@ -1075,9 +927,14 @@ Changes do not affect verses already in the service. Replace Live Background + + + Replace Background + + - You must select an item to delete. + You must select a media file to delete. @@ -1324,13 +1181,13 @@ This General Public License does not permit incorporating your program into prop - - Save currently selected media manager plugin + + Double-click to send items straight to live (requires restart) - - Double-click to send items straight to live (requires restart) + + Remember active media manager tab on startup @@ -1699,16 +1556,6 @@ This General Public License does not permit incorporating your program into prop Preview Next Song from Service Manager - - - SongSelect Username: - - - - - SongSelect Password: - - Display Position @@ -1766,7 +1613,17 @@ This General Public License does not permit incorporating your program into prop - CCLI Number: + CCLI number: + + + + + SongSelect username: + + + + + SongSelect password: @@ -2199,7 +2056,165 @@ You can download the latest version from <a href="http://openlp.org/&quo - PluginForm + OpenLP.MediaManagerItem + + + Import %s + + + + + Import a %s + + + + + Load %s + + + + + Load a new %s + + + + + New %s + + + + + Add a new %s + + + + + Edit %s + + + + + Edit the selected %s + + + + + Delete %s + + + + + Delete the selected item + + + + + 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 + + + + + No Items Selected + + + + + 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 @@ -2221,37 +2236,37 @@ You can download the latest version from <a href="http://openlp.org/&quo - + About: - + Status: - + Active - + Inactive - + %s (Inactive) - + %s (Active) - + %s (Disabled) @@ -2286,21 +2301,11 @@ You can download the latest version from <a href="http://openlp.org/&quo Present using: - - - File exists - - A presentation with that filename already exists. - - - Unsupported file - - This type of presentation is not supported @@ -2311,6 +2316,16 @@ You can download the latest version from <a href="http://openlp.org/&quo You must select an item to delete. + + + File Exists + + + + + Unsupported File + + PresentationPlugin.PresentationTab @@ -2324,11 +2339,6 @@ You can download the latest version from <a href="http://openlp.org/&quo Available Controllers - - - available - - RemotePlugin @@ -2345,9 +2355,19 @@ You can download the latest version from <a href="http://openlp.org/&quo Remotes + + + Serve on IP address: + + - Remotes Receiver Port + Port number: + + + + + Server Settings @@ -2733,41 +2753,71 @@ The content encoding is not UTF-8. - + 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 - + Open documents or presentations - + <strong>Song Plugin</strong><br />This plugin allows songs to be managed and displayed. + + + 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) + + SongsPlugin.AuditDeleteDialog @@ -2981,90 +3031,100 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - + 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 - + 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? + + + This author is already in the list. + + + + + This topic is already in the list. + + SongsPlugin.EditVerseForm @@ -3313,17 +3373,17 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R SongsPlugin.SongBookForm - + Song Book Maintenance - + &Name: - + &Publisher: @@ -3389,112 +3449,112 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - + 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! @@ -3502,12 +3562,12 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R SongsPlugin.SongUsageDeleteForm - + Delete Selected Song Usage Events? - + Are you sure you want to delete selected Song Usage data? @@ -3515,7 +3575,7 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R SongsPlugin.SongUsageDetailForm - + Output File Location diff --git a/resources/i18n/openlp_en_GB.ts b/resources/i18n/openlp_en_GB.ts index 377e26d3d..51263dbd2 100644 --- a/resources/i18n/openlp_en_GB.ts +++ b/resources/i18n/openlp_en_GB.ts @@ -66,12 +66,12 @@ - + New Alert - + You haven't specified any text for your alert. Please type in some text before clicking New. @@ -877,176 +877,28 @@ Changes do not affect verses already in the service. - - You must select an item to delete. - - - - + Image(s) Image(s) + + + Replace Background + + + + + You must select an image to delete. + + + + + You must select an image to replace the background with. + + - You must select an item to process. - - - - - MediaManagerItem - - - You must select one or more items - You must select one or more items - - - - Delete the selected item - Delete the selected item - - - - &Add to Service - &Add to Service - - - - Send the selected item live - Send the selected item live - - - - Add the selected item(s) to the service - Add the selected item(s) to the service - - - - &Show Live - &Show Live - - - - Preview the selected item - Preview the selected item - - - - 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 - - - - - Preview %s - - - - - Add %s to Service - - - - - &Edit %s - - - - - &Delete %s - - - - - &Preview %s - - - - - &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 - - - - - No Service Item Selected - - - - - You must select an existing service item to add to. - - - - - Invalid Service Item - - - - - You must select a %s service item. + You must select a media file to replace the background with. @@ -1075,9 +927,14 @@ Changes do not affect verses already in the service. Replace Live Background + + + Replace Background + + - You must select an item to delete. + You must select a media file to delete. @@ -1324,13 +1181,13 @@ This General Public License does not permit incorporating your program into prop - - Save currently selected media manager plugin + + Double-click to send items straight to live (requires restart) - - Double-click to send items straight to live (requires restart) + + Remember active media manager tab on startup @@ -1699,16 +1556,6 @@ This General Public License does not permit incorporating your program into prop Preview Next Song from Service Manager Preview Next Song from Service Manager - - - SongSelect Username: - SongSelect Username: - - - - SongSelect Password: - SongSelect Password: - Display Position @@ -1766,8 +1613,18 @@ This General Public License does not permit incorporating your program into prop - CCLI Number: - CCLI Number: + CCLI number: + + + + + SongSelect username: + + + + + SongSelect password: + @@ -2199,7 +2056,165 @@ You can download the latest version from <a href="http://openlp.org/&quo - PluginForm + OpenLP.MediaManagerItem + + + Import %s + + + + + Import a %s + + + + + Load %s + + + + + Load a new %s + + + + + New %s + + + + + Add a new %s + + + + + Edit %s + + + + + Edit the selected %s + + + + + Delete %s + + + + + Delete the selected item + 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 + + + + + No Items Selected + + + + + 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 @@ -2221,37 +2236,37 @@ You can download the latest version from <a href="http://openlp.org/&quo TextLabel - + About: About: - + Status: Status: - + Active Active - + Inactive Inactive - + %s (Inactive) - + %s (Active) - + %s (Disabled) @@ -2286,21 +2301,11 @@ You can download the latest version from <a href="http://openlp.org/&quo Present using: Present using: - - - File exists - File exists - A presentation with that filename already exists. A presentation with that filename already exists. - - - Unsupported file - - This type of presentation is not supported @@ -2311,6 +2316,16 @@ You can download the latest version from <a href="http://openlp.org/&quo You must select an item to delete. + + + File Exists + + + + + Unsupported File + + PresentationPlugin.PresentationTab @@ -2324,11 +2339,6 @@ You can download the latest version from <a href="http://openlp.org/&quo Available Controllers Available Controllers - - - available - available - RemotePlugin @@ -2345,10 +2355,20 @@ You can download the latest version from <a href="http://openlp.org/&quo Remotes Remotes + + + Serve on IP address: + + - Remotes Receiver Port - Remotes Receiver Port + Port number: + + + + + Server Settings + @@ -2733,41 +2753,71 @@ The content encoding is not UTF-8. - + 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 - + Open documents or presentations - + <strong>Song Plugin</strong><br />This plugin allows songs to be managed and displayed. + + + 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) + + SongsPlugin.AuditDeleteDialog @@ -2981,90 +3031,100 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R Save && Preview - + 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 Error - + 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? + + + This author is already in the list. + + + + + This topic is already in the list. + + SongsPlugin.EditVerseForm @@ -3313,17 +3373,17 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R SongsPlugin.SongBookForm - + Song Book Maintenance - + &Name: - + &Publisher: @@ -3389,112 +3449,112 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - + 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! @@ -3502,12 +3562,12 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R SongsPlugin.SongUsageDeleteForm - + Delete Selected Song Usage Events? - + Are you sure you want to delete selected Song Usage data? @@ -3515,7 +3575,7 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R SongsPlugin.SongUsageDetailForm - + Output File Location Output File Location diff --git a/resources/i18n/openlp_en_ZA.ts b/resources/i18n/openlp_en_ZA.ts index 252ad8ad8..4e2e6f001 100644 --- a/resources/i18n/openlp_en_ZA.ts +++ b/resources/i18n/openlp_en_ZA.ts @@ -66,12 +66,12 @@ - + New Alert - + You haven't specified any text for your alert. Please type in some text before clicking New. @@ -877,176 +877,28 @@ Changes do not affect verses already in the service. - - You must select an item to delete. - - - - + Image(s) + + + Replace Background + + + + + You must select an image to delete. + + + + + You must select an image to replace the background with. + + - You must select an item to process. - - - - - MediaManagerItem - - - You must select one or more items - You must select one or more items - - - - Delete the selected item - Delete the selected item - - - - &Add to Service - - - - - Send the selected item live - Send the selected item live. - - - - Add the selected item(s) to the service - Add the selected item(s) to the service. - - - - &Show Live - - - - - Preview the selected item - - - - - 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 - - - - - Preview %s - - - - - Add %s to Service - - - - - &Edit %s - - - - - &Delete %s - - - - - &Preview %s - - - - - &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 - - - - - No Service Item Selected - - - - - You must select an existing service item to add to. - - - - - Invalid Service Item - - - - - You must select a %s service item. + You must select a media file to replace the background with. @@ -1075,9 +927,14 @@ Changes do not affect verses already in the service. Replace Live Background + + + Replace Background + + - You must select an item to delete. + You must select a media file to delete. @@ -1324,13 +1181,13 @@ This General Public License does not permit incorporating your program into prop - - Save currently selected media manager plugin + + Double-click to send items straight to live (requires restart) - - Double-click to send items straight to live (requires restart) + + Remember active media manager tab on startup @@ -1699,16 +1556,6 @@ This General Public License does not permit incorporating your program into prop Preview Next Song from Service Manager Preview Next Song from Service Manager - - - SongSelect Username: - SongSelect Username: - - - - SongSelect Password: - - Display Position @@ -1766,8 +1613,18 @@ This General Public License does not permit incorporating your program into prop - CCLI Number: - CCLI Number: + CCLI number: + + + + + SongSelect username: + + + + + SongSelect password: + @@ -2199,7 +2056,165 @@ You can download the latest version from <a href="http://openlp.org/&quo - PluginForm + OpenLP.MediaManagerItem + + + Import %s + + + + + Import a %s + + + + + Load %s + + + + + Load a new %s + + + + + New %s + + + + + Add a new %s + + + + + Edit %s + + + + + Edit the selected %s + + + + + Delete %s + + + + + Delete the selected item + 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 + + + + + No Items Selected + + + + + 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 @@ -2221,37 +2236,37 @@ You can download the latest version from <a href="http://openlp.org/&quo - + About: - + Status: Status: - + Active Active - + Inactive - + %s (Inactive) - + %s (Active) - + %s (Disabled) @@ -2286,21 +2301,11 @@ You can download the latest version from <a href="http://openlp.org/&quo Present using: Present using: - - - File exists - - A presentation with that filename already exists. - - - Unsupported file - - This type of presentation is not supported @@ -2311,6 +2316,16 @@ You can download the latest version from <a href="http://openlp.org/&quo You must select an item to delete. + + + File Exists + + + + + Unsupported File + + PresentationPlugin.PresentationTab @@ -2324,11 +2339,6 @@ You can download the latest version from <a href="http://openlp.org/&quo Available Controllers Available Controllers - - - available - available - RemotePlugin @@ -2345,10 +2355,20 @@ You can download the latest version from <a href="http://openlp.org/&quo Remotes Remotes + + + Serve on IP address: + + - Remotes Receiver Port - Remotes Receiver Port + Port number: + + + + + Server Settings + @@ -2733,41 +2753,71 @@ The content encoding is not UTF-8. - + 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 - + Open documents or presentations - + <strong>Song Plugin</strong><br />This plugin allows songs to be managed and displayed. + + + 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) + + SongsPlugin.AuditDeleteDialog @@ -2981,90 +3031,100 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - + 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 Error - + 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? + + + This author is already in the list. + + + + + This topic is already in the list. + + SongsPlugin.EditVerseForm @@ -3313,17 +3373,17 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R SongsPlugin.SongBookForm - + Song Book Maintenance - + &Name: - + &Publisher: @@ -3389,112 +3449,112 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - + 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! @@ -3502,12 +3562,12 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R SongsPlugin.SongUsageDeleteForm - + Delete Selected Song Usage Events? - + Are you sure you want to delete selected Song Usage data? @@ -3515,7 +3575,7 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R SongsPlugin.SongUsageDetailForm - + Output File Location Output File Location diff --git a/resources/i18n/openlp_es.ts b/resources/i18n/openlp_es.ts index 0eecae217..8f0be7388 100644 --- a/resources/i18n/openlp_es.ts +++ b/resources/i18n/openlp_es.ts @@ -66,12 +66,12 @@ - + New Alert - + You haven't specified any text for your alert. Please type in some text before clicking New. @@ -877,176 +877,28 @@ Changes do not affect verses already in the service. - - You must select an item to delete. - - - - + Image(s) Imagen(es) + + + Replace Background + + + + + You must select an image to delete. + + + + + You must select an image to replace the background with. + + - You must select an item to process. - - - - - MediaManagerItem - - - You must select one or more items - Usted debe seleccionar uno o más elementos - - - - &Add to Service - &Agregar al Servicio - - - - Send the selected item live - Enviar en vivo el ítem seleccionado - - - - Add the selected item(s) to the service - Agregar el elemento(s) seleccionado al servicio - - - - Delete the selected item - Borrar el ítem seleccionado - - - - &Show Live - Mo&star En Vivo - - - - Preview the selected item - Vista Previa del ítem seleccionado - - - - 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 - - - - - Preview %s - - - - - Add %s to Service - - - - - &Edit %s - - - - - &Delete %s - - - - - &Preview %s - - - - - &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 - - - - - No Service Item Selected - - - - - You must select an existing service item to add to. - - - - - Invalid Service Item - - - - - You must select a %s service item. + You must select a media file to replace the background with. @@ -1075,9 +927,14 @@ Changes do not affect verses already in the service. Replace Live Background + + + Replace Background + + - You must select an item to delete. + You must select a media file to delete. @@ -1324,13 +1181,13 @@ This General Public License does not permit incorporating your program into prop - - Save currently selected media manager plugin + + Double-click to send items straight to live (requires restart) - - Double-click to send items straight to live (requires restart) + + Remember active media manager tab on startup @@ -1699,16 +1556,6 @@ This General Public License does not permit incorporating your program into prop Preview Next Song from Service Manager Vista Previa de la Siguiente Canción en el Servicio - - - SongSelect Username: - Usuario SongSelect: - - - - SongSelect Password: - Contraseña SongSelect: - Display Position @@ -1766,8 +1613,18 @@ This General Public License does not permit incorporating your program into prop - CCLI Number: - Número CCLI: + CCLI number: + + + + + SongSelect username: + + + + + SongSelect password: + @@ -2185,7 +2042,7 @@ You can download the latest version from <a href="http://openlp.org/&quo Save Changes to Service? - + ¿Guardar cambios al Servicio? @@ -2199,7 +2056,165 @@ You can download the latest version from <a href="http://openlp.org/&quo - PluginForm + OpenLP.MediaManagerItem + + + Import %s + + + + + Import a %s + + + + + Load %s + + + + + Load a new %s + + + + + New %s + + + + + Add a new %s + + + + + Edit %s + + + + + Edit the selected %s + + + + + Delete %s + + + + + Delete the selected item + 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 + + + + + No Items Selected + + + + + 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 @@ -2221,37 +2236,37 @@ You can download the latest version from <a href="http://openlp.org/&quo TextLabel - + About: Acerca de: - + Status: Estado: - + Active Activo - + Inactive Inactivo - + %s (Inactive) - + %s (Active) - + %s (Disabled) @@ -2286,21 +2301,11 @@ You can download the latest version from <a href="http://openlp.org/&quo Present using: Mostrar usando: - - - File exists - Ya existe el Archivo - A presentation with that filename already exists. Ya existe una presentación con ese nombre. - - - Unsupported file - - This type of presentation is not supported @@ -2311,6 +2316,16 @@ You can download the latest version from <a href="http://openlp.org/&quo You must select an item to delete. + + + File Exists + + + + + Unsupported File + + PresentationPlugin.PresentationTab @@ -2324,11 +2339,6 @@ You can download the latest version from <a href="http://openlp.org/&quo Available Controllers Controladores Disponibles - - - available - disponible - RemotePlugin @@ -2345,10 +2355,20 @@ You can download the latest version from <a href="http://openlp.org/&quo Remotes Remotas + + + Serve on IP address: + + - Remotes Receiver Port - Puerto de Recepción + Port number: + + + + + Server Settings + @@ -2733,41 +2753,71 @@ The content encoding is not UTF-8. - + 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 - + Open documents or presentations - + <strong>Song Plugin</strong><br />This plugin allows songs to be managed and displayed. + + + 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) + + SongsPlugin.AuditDeleteDialog @@ -2981,90 +3031,100 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R Guardar && Vista Previa - + 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 Error - + 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? + + + This author is already in the list. + + + + + This topic is already in the list. + + SongsPlugin.EditVerseForm @@ -3313,17 +3373,17 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R SongsPlugin.SongBookForm - + Song Book Maintenance - + &Name: - + &Publisher: @@ -3389,112 +3449,112 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - + 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! @@ -3502,12 +3562,12 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R SongsPlugin.SongUsageDeleteForm - + Delete Selected Song Usage Events? - + Are you sure you want to delete selected Song Usage data? @@ -3515,7 +3575,7 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R SongsPlugin.SongUsageDetailForm - + Output File Location Archivo de Salida diff --git a/resources/i18n/openlp_et.ts b/resources/i18n/openlp_et.ts index 5a41bc289..70811cb25 100644 --- a/resources/i18n/openlp_et.ts +++ b/resources/i18n/openlp_et.ts @@ -66,12 +66,12 @@ - + New Alert - + You haven't specified any text for your alert. Please type in some text before clicking New. @@ -877,176 +877,28 @@ Changes do not affect verses already in the service. Ekraani tausta asendamine - - You must select an item to delete. - - - - + 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 an item to process. - - - - - 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. - - - - 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 - - - - - Preview %s - - - - - Add %s to Service - - - - - &Edit %s - - - - - &Delete %s - - - - - &Preview %s - - - - - You must select one or more items to preview. - - - - - You must select one or more items to send live. - - - - - You must select a %s service item. + You must select a media file to replace the background with. @@ -1071,13 +923,18 @@ Changes do not affect verses already in the service. Meedia valimine - - You must select an item to delete. + + Replace Live Background - Replace Live Background + Replace Background + + + + + You must select a media file to delete. @@ -1357,13 +1214,13 @@ This General Public License does not permit incorporating your program into prop - - Save currently selected media manager plugin + + Double-click to send items straight to live (requires restart) - - Double-click to send items straight to live (requires restart) + + Remember active media manager tab on startup @@ -1732,16 +1589,6 @@ This General Public License does not permit incorporating your program into prop Preview Next Song from Service Manager Teenistuse haldurist kuvatakse järgmise laulu eelvaade - - - SongSelect Username: - SongSelecti kasutajanimi: - - - - SongSelect Password: - SongSelecti parool: - Display Position @@ -1799,8 +1646,18 @@ This General Public License does not permit incorporating your program into prop - CCLI Number: - CCLI number: + CCLI number: + + + + + SongSelect username: + + + + + SongSelect password: + @@ -2232,59 +2089,217 @@ You can download the latest version from <a href="http://openlp.org/&quo - PluginForm + OpenLP.MediaManagerItem + + + Import %s + + + + + Import a %s + + + + + Load %s + + + + + Load a new %s + + + + + New %s + + + + + Add a new %s + + + + + Edit %s + + + + + Edit the selected %s + + + + + Delete %s + + + + + Delete the selected item + Valitud elemendi kustutamine + + + + Preview %s + + + + + Preview the selected item + Valitud kirje eelvaatlus + + + + Send the selected item live + Valitud kirje saatmine ekraanile + + + + Add %s to Service + + + + + Add the selected item(s) to the service + Valitud kirje(te) lisamine teenistusse + + + + &Edit %s + + + + + &Delete %s + + + + + &Preview %s + + + + + &Show Live + &Kuva ekraanil + + + + &Add to Service + &Lisa teenistusele + + + + &Add to selected Service Item + &Lisa valitud teenistuse elemendile + + + + No Items Selected + Ühtegi elementi pole valitud + + + + You must select one or more items to preview. + + + + + You must select one or more items to send live. + + + + + You must select one or more items. + Pead valima vähemalt ühe elemendi. + + + + No items selected + Ühtegi elementi pole valitud + + + + You must select one or more items + Pead valima vähemalt ühe elemendi + + + + No Service Item Selected + Ühtegi teenistuse elementi pole valitud + + + + You must select an existing service item to add to. + Pead valima olemasoleva teenistuse, millele lisada. + + + + Invalid Service Item + Vigane teenistuse element + + + + You must select a %s service item. + + + + + 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) @@ -2319,11 +2334,6 @@ You can download the latest version from <a href="http://openlp.org/&quo Automatic - - - File exists - - A presentation with that filename already exists. @@ -2336,22 +2346,22 @@ You can download the latest version from <a href="http://openlp.org/&quo - Unsupported file + This type of presentation is not supported + + + + + File Exists - This type of presentation is not supported + Unsupported File PresentationPlugin.PresentationTab - - - available - - Presentations @@ -2378,9 +2388,19 @@ You can download the latest version from <a href="http://openlp.org/&quo Remotes + + + Serve on IP address: + + - Remotes Receiver Port + Port number: + + + + + Server Settings @@ -2756,28 +2776,28 @@ The content encoding is not UTF-8. - + 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. @@ -2792,15 +2812,45 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - + 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) + + SongsPlugin.AuditDeleteDialog @@ -2984,57 +3034,57 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R 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. @@ -3059,32 +3109,32 @@ 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? @@ -3098,6 +3148,16 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R Authors, Topics && Song Book + + + This author is already in the list. + + + + + This topic is already in the list. + + SongsPlugin.EditVerseForm @@ -3346,12 +3406,12 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R SongsPlugin.SongBookForm - + &Name: - + &Publisher: @@ -3366,7 +3426,7 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - + Song Book Maintenance @@ -3417,47 +3477,47 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R &Kustuta - + Delete Author - + Delete Topic - + Delete Book - + Error Viga - + Are you sure you want to delete the selected author? - + No author selected! - + Are you sure you want to delete the selected topic? - + No topic selected! - + Are you sure you want to delete the selected book? @@ -3467,67 +3527,67 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - + Could not add your author. - + This author already exists. - + Could not add your topic. - + This topic already exists. - + Could not add your book. - + This book already exists. - + Could not save your changes. - + Could not save your modified author, because he already exists. - + Could not save your modified topic, because it already exists. - + This author cannot be deleted, they are currently assigned to at least one song. - + This topic cannot be deleted, it is currently assigned to at least one song. - + This book cannot be deleted, it is currently assigned to at least one song. - + No book selected! @@ -3535,12 +3595,12 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R SongsPlugin.SongUsageDeleteForm - + Delete Selected Song Usage Events? - + Are you sure you want to delete selected Song Usage data? @@ -3548,7 +3608,7 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R SongsPlugin.SongUsageDetailForm - + Output File Location diff --git a/resources/i18n/openlp_hu.ts b/resources/i18n/openlp_hu.ts index 499fdff57..5f5e01045 100644 --- a/resources/i18n/openlp_hu.ts +++ b/resources/i18n/openlp_hu.ts @@ -66,12 +66,12 @@ &Bezárás - + New Alert - + You haven't specified any text for your alert. Please type in some text before clicking New. @@ -877,176 +877,28 @@ Changes do not affect verses already in the service. - - You must select an item to delete. - - - - + Image(s) Kép(ek) + + + Replace Background + + + + + You must select an image to delete. + + + + + You must select an image to replace the background with. + + - You must select an item to process. - - - - - MediaManagerItem - - - You must select one or more items - Ki kell választani egy vagy több elemet - - - - Delete the selected item - Kiválasztott elem törlése - - - - &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 - - - - &Show Live - Egyenes &adásba - - - - Preview the selected item - A kiválasztott elem előnézete - - - - &Add to selected Service Item - &Hozzáadás a kiválasztott szolgálat elemhez - - - - No Items Selected - Nincs kiválasztott elem - - - - You must select one or more items. - Ki kell választani egy vagy több elemet. - - - - No items selected - Nincs kiválasztott elem - - - - No Service Item Selected - Nincs kiválasztott szolgálat elem - - - - You must select an existing service item to add to. - Ki kell választani egy szolgálati elemet, amihez hozzá szeretné adni. - - - - Invalid Service Item - Érvénytelen szolgálat elem - - - - 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 - - - - - Preview %s - - - - - Add %s to Service - - - - - &Edit %s - - - - - &Delete %s - - - - - &Preview %s - - - - - You must select one or more items to preview. - - - - - You must select one or more items to send live. - - - - - You must select a %s service item. + You must select a media file to replace the background with. @@ -1075,9 +927,14 @@ Changes do not affect verses already in the service. Replace Live Background + + + Replace Background + + - You must select an item to delete. + You must select a media file to delete. @@ -1484,13 +1341,13 @@ A GNU General Public License nem engedi meg, hogy a program része legyen szelle - - Save currently selected media manager plugin + + Double-click to send items straight to live (requires restart) - - Double-click to send items straight to live (requires restart) + + Remember active media manager tab on startup @@ -1859,16 +1716,6 @@ A GNU General Public License nem engedi meg, hogy a program része legyen szelle Preview Next Song from Service Manager Következő dal előnézete a szolgálatkezelőből - - - SongSelect Username: - SongSelect felhasználói név: - - - - SongSelect Password: - SongSelect jelszó: - Display Position @@ -1926,8 +1773,18 @@ A GNU General Public License nem engedi meg, hogy a program része legyen szelle - CCLI Number: - CCLI szám: + CCLI number: + + + + + SongSelect username: + + + + + SongSelect password: + @@ -2345,7 +2202,7 @@ You can download the latest version from <a href="http://openlp.org/&quo Save Changes to Service? - + Változások mentése a szolgálatban? @@ -2359,59 +2216,217 @@ You can download the latest version from <a href="http://openlp.org/&quo - PluginForm + OpenLP.MediaManagerItem + + + Import %s + + + + + Import a %s + + + + + Load %s + + + + + Load a new %s + + + + + New %s + + + + + Add a new %s + + + + + Edit %s + + + + + Edit the selected %s + + + + + Delete %s + + + + + Delete the selected item + Kiválasztott elem törlése + + + + Preview %s + + + + + Preview the selected item + A kiválasztott elem előnézete + + + + Send the selected item live + A kiválasztott elem egyenes adásba küldése + + + + Add %s to Service + + + + + Add the selected item(s) to the service + A kiválasztott elem(ek) hozzáadása a szolgálathoz + + + + &Edit %s + + + + + &Delete %s + + + + + &Preview %s + + + + + &Show Live + Egyenes &adásba + + + + &Add to Service + &Hozzáadás a szolgálathoz + + + + &Add to selected Service Item + &Hozzáadás a kiválasztott szolgálat elemhez + + + + 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. + + + + No items selected + Nincs kiválasztott elem + + + + You must select one or more items + Ki kell választani egy vagy több elemet + + + + No Service Item Selected + Nincs kiválasztott szolgálat elem + + + + You must select an existing service item to add to. + Ki kell választani egy szolgálati elemet, amihez hozzá szeretné adni. + + + + Invalid Service Item + Érvénytelen szolgálat elem + + + + You must select a %s service item. + + + + + OpenLP.PluginForm Plugin List - Bővítménylista + Bővítménylista Plugin Details - Bővítmény részletei + Bővítmény részletei Version: - Verzió: + Verzió: TextLabel - Szövegcímke - - - - About: - Névjegy: + Szövegcímke - Status: - Állapot: - - - - Active - Aktív + About: + Névjegy: - Inactive - Inaktív + Status: + Állapot: - + + Active + Aktív + + + + Inactive + Inaktív + + + %s (Inactive) - + %s (Active) - + %s (Disabled) @@ -2446,21 +2461,11 @@ You can download the latest version from <a href="http://openlp.org/&quo Present using: Bemutató ezzel: - - - File exists - A fájl létezik - A presentation with that filename already exists. Ilyen fájlnéven már létezik egy bemutató. - - - Unsupported file - - This type of presentation is not supported @@ -2471,6 +2476,16 @@ You can download the latest version from <a href="http://openlp.org/&quo You must select an item to delete. + + + File Exists + + + + + Unsupported File + + PresentationPlugin.PresentationTab @@ -2484,11 +2499,6 @@ You can download the latest version from <a href="http://openlp.org/&quo Available Controllers Elérhető vezérlők - - - available - elérhető - RemotePlugin @@ -2505,10 +2515,20 @@ You can download the latest version from <a href="http://openlp.org/&quo Remotes Távvezérlés + + + Serve on IP address: + + - Remotes Receiver Port - Távvezérlést fogadó port + Port number: + + + + + Server Settings + @@ -2853,17 +2873,17 @@ The content encoding is not UTF-8. 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é. @@ -2908,26 +2928,56 @@ The content encoding is not UTF-8. - + 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 - + 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) + + SongsPlugin.AuditDeleteDialog @@ -3141,90 +3191,100 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R Mentés és előnézet - + 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 Hiba - + 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? + + + This author is already in the list. + + + + + This topic is already in the list. + + SongsPlugin.EditVerseForm @@ -3473,17 +3533,17 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R SongsPlugin.SongBookForm - + Song Book Maintenance - + &Name: - + &Publisher: @@ -3549,112 +3609,112 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R &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! @@ -3662,12 +3722,12 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R SongsPlugin.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? @@ -3675,7 +3735,7 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R SongsPlugin.SongUsageDetailForm - + Output File Location Kimeneti fájl elérési útvonala diff --git a/resources/i18n/openlp_ko.ts b/resources/i18n/openlp_ko.ts index e91578cde..16cb6d358 100644 --- a/resources/i18n/openlp_ko.ts +++ b/resources/i18n/openlp_ko.ts @@ -66,12 +66,12 @@ - + New Alert - + You haven't specified any text for your alert. Please type in some text before clicking New. @@ -877,176 +877,28 @@ Changes do not affect verses already in the service. - - You must select an item to delete. - - - - + Image(s) + + + Replace Background + + + + + You must select an image to delete. + + + + + You must select an image to replace the background with. + + - You must select an item to process. - - - - - MediaManagerItem - - - No Items Selected - - - - - Delete the selected item - - - - - You must select one or more items - - - - - &Add to Service - - - - - Send the selected item live - - - - - Add the selected item(s) to the service - - - - - &Show Live - - - - - Preview the selected item - - - - - You must select one or more items. - - - - - 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 - - - - - Preview %s - - - - - Add %s to Service - - - - - &Edit %s - - - - - &Delete %s - - - - - &Preview %s - - - - - &Add to selected Service Item - - - - - You must select one or more items to preview. - - - - - You must select one or more items to send live. - - - - - No items selected - - - - - No Service Item Selected - - - - - You must select an existing service item to add to. - - - - - Invalid Service Item - - - - - You must select a %s service item. + You must select a media file to replace the background with. @@ -1075,9 +927,14 @@ Changes do not affect verses already in the service. Replace Live Background + + + Replace Background + + - You must select an item to delete. + You must select a media file to delete. @@ -1324,13 +1181,13 @@ This General Public License does not permit incorporating your program into prop - - Save currently selected media manager plugin + + Double-click to send items straight to live (requires restart) - - Double-click to send items straight to live (requires restart) + + Remember active media manager tab on startup @@ -1699,16 +1556,6 @@ This General Public License does not permit incorporating your program into prop Preview Next Song from Service Manager - - - SongSelect Username: - - - - - SongSelect Password: - - Display Position @@ -1766,7 +1613,17 @@ This General Public License does not permit incorporating your program into prop - CCLI Number: + CCLI number: + + + + + SongSelect username: + + + + + SongSelect password: @@ -2199,7 +2056,165 @@ You can download the latest version from <a href="http://openlp.org/&quo - PluginForm + OpenLP.MediaManagerItem + + + Import %s + + + + + Import a %s + + + + + Load %s + + + + + Load a new %s + + + + + New %s + + + + + Add a new %s + + + + + Edit %s + + + + + Edit the selected %s + + + + + Delete %s + + + + + Delete the selected item + + + + + 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 + + + + + No Items Selected + + + + + 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 @@ -2221,37 +2236,37 @@ You can download the latest version from <a href="http://openlp.org/&quo - + About: - + Status: - + Active - + Inactive - + %s (Inactive) - + %s (Active) - + %s (Disabled) @@ -2286,21 +2301,11 @@ You can download the latest version from <a href="http://openlp.org/&quo Present using: - - - File exists - - A presentation with that filename already exists. - - - Unsupported file - - This type of presentation is not supported @@ -2311,6 +2316,16 @@ You can download the latest version from <a href="http://openlp.org/&quo You must select an item to delete. + + + File Exists + + + + + Unsupported File + + PresentationPlugin.PresentationTab @@ -2324,11 +2339,6 @@ You can download the latest version from <a href="http://openlp.org/&quo Available Controllers - - - available - - RemotePlugin @@ -2345,9 +2355,19 @@ You can download the latest version from <a href="http://openlp.org/&quo Remotes + + + Serve on IP address: + + - Remotes Receiver Port + Port number: + + + + + Server Settings @@ -2733,41 +2753,71 @@ The content encoding is not UTF-8. - + 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 - + Open documents or presentations - + <strong>Song Plugin</strong><br />This plugin allows songs to be managed and displayed. + + + 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) + + SongsPlugin.AuditDeleteDialog @@ -2981,90 +3031,100 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - + 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 - + 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? + + + This author is already in the list. + + + + + This topic is already in the list. + + SongsPlugin.EditVerseForm @@ -3313,17 +3373,17 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R SongsPlugin.SongBookForm - + Song Book Maintenance - + &Name: - + &Publisher: @@ -3389,112 +3449,112 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - + 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! @@ -3502,12 +3562,12 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R SongsPlugin.SongUsageDeleteForm - + Delete Selected Song Usage Events? - + Are you sure you want to delete selected Song Usage data? @@ -3515,7 +3575,7 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R SongsPlugin.SongUsageDetailForm - + Output File Location diff --git a/resources/i18n/openlp_nb.ts b/resources/i18n/openlp_nb.ts index f9a72ab34..da8f4dc89 100644 --- a/resources/i18n/openlp_nb.ts +++ b/resources/i18n/openlp_nb.ts @@ -66,12 +66,12 @@ - + New Alert - + You haven't specified any text for your alert. Please type in some text before clicking New. @@ -877,176 +877,28 @@ Changes do not affect verses already in the service. - - You must select an item to delete. - - - - + Image(s) Bilde(r) + + + Replace Background + + + + + You must select an image to delete. + + + + + You must select an image to replace the background with. + + - You must select an item to process. - - - - - MediaManagerItem - - - You must select one or more items - Du må velge ett eller flere elementer - - - - &Add to Service - &Legg til i møteplan - - - - Send the selected item live - - - - - Add the selected item(s) to the service - - - - - Delete the selected item - - - - - &Show Live - - - - - Preview the selected item - - - - - 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 - - - - - Preview %s - - - - - Add %s to Service - - - - - &Edit %s - - - - - &Delete %s - - - - - &Preview %s - - - - - &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 - - - - - No Service Item Selected - - - - - You must select an existing service item to add to. - - - - - Invalid Service Item - - - - - You must select a %s service item. + You must select a media file to replace the background with. @@ -1075,9 +927,14 @@ Changes do not affect verses already in the service. Replace Live Background + + + Replace Background + + - You must select an item to delete. + You must select a media file to delete. @@ -1324,13 +1181,13 @@ This General Public License does not permit incorporating your program into prop - - Save currently selected media manager plugin + + Double-click to send items straight to live (requires restart) - - Double-click to send items straight to live (requires restart) + + Remember active media manager tab on startup @@ -1699,16 +1556,6 @@ This General Public License does not permit incorporating your program into prop Preview Next Song from Service Manager Forhåndsvis neste sang i møteplanen - - - SongSelect Username: - SongSelect-brukernavn: - - - - SongSelect Password: - SongSelect-passord: - Display Position @@ -1766,8 +1613,18 @@ This General Public License does not permit incorporating your program into prop - CCLI Number: - CCLI-nummer: + CCLI number: + + + + + SongSelect username: + + + + + SongSelect password: + @@ -2199,7 +2056,165 @@ You can download the latest version from <a href="http://openlp.org/&quo - PluginForm + OpenLP.MediaManagerItem + + + Import %s + + + + + Import a %s + + + + + Load %s + + + + + Load a new %s + + + + + New %s + + + + + Add a new %s + + + + + Edit %s + + + + + Edit the selected %s + + + + + Delete %s + + + + + Delete the selected item + + + + + 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 + + + + + No Items Selected + + + + + 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å velge ett eller flere elementer + + + + 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 @@ -2221,37 +2236,37 @@ You can download the latest version from <a href="http://openlp.org/&quo - + About: Om: - + Status: Status: - + Active Aktiv - + Inactive - + %s (Inactive) - + %s (Active) - + %s (Disabled) @@ -2286,21 +2301,11 @@ You can download the latest version from <a href="http://openlp.org/&quo Present using: Presenter ved hjelp av: - - - File exists - Filen eksisterer - A presentation with that filename already exists. - - - Unsupported file - - This type of presentation is not supported @@ -2311,6 +2316,16 @@ You can download the latest version from <a href="http://openlp.org/&quo You must select an item to delete. + + + File Exists + + + + + Unsupported File + + PresentationPlugin.PresentationTab @@ -2324,11 +2339,6 @@ You can download the latest version from <a href="http://openlp.org/&quo Available Controllers - - - available - - RemotePlugin @@ -2345,9 +2355,19 @@ You can download the latest version from <a href="http://openlp.org/&quo Remotes Fjernmeldinger + + + Serve on IP address: + + - Remotes Receiver Port + Port number: + + + + + Server Settings @@ -2733,41 +2753,71 @@ The content encoding is not UTF-8. - + 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 - + Open documents or presentations - + <strong>Song Plugin</strong><br />This plugin allows songs to be managed and displayed. + + + 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) + + SongsPlugin.AuditDeleteDialog @@ -2981,90 +3031,100 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - + 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 Feil - + 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? + + + This author is already in the list. + + + + + This topic is already in the list. + + SongsPlugin.EditVerseForm @@ -3313,17 +3373,17 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R SongsPlugin.SongBookForm - + Song Book Maintenance - + &Name: - + &Publisher: @@ -3389,112 +3449,112 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - + Error Feil - + Could not add your author. - + This author already exists. - + Could not add your topic. - + This topic already exists. - + Could not add your book. - + This book already exists. - + Could not save your changes. - + Could not save your modified author, because he already exists. - + Could not save your modified topic, because it already exists. - + Delete Author - + Are you sure you want to delete the selected author? Er du sikker på at du vil slette den valgte forfatteren? - + This author cannot be deleted, they are currently assigned to at least one song. - + No author selected! Ingen forfatter er valgt! - + Delete Topic Slett emne - + Are you sure you want to delete the selected topic? - + This topic cannot be deleted, it is currently assigned to at least one song. - + No topic selected! - + Delete Book Slett bok - + Are you sure you want to delete the selected book? Er du sikker på at du vil slette den merkede boken? - + This book cannot be deleted, it is currently assigned to at least one song. - + No book selected! Ingen bok er valgt! @@ -3502,12 +3562,12 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R SongsPlugin.SongUsageDeleteForm - + Delete Selected Song Usage Events? - + Are you sure you want to delete selected Song Usage data? @@ -3515,7 +3575,7 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R SongsPlugin.SongUsageDetailForm - + Output File Location diff --git a/resources/i18n/openlp_pt_BR.ts b/resources/i18n/openlp_pt_BR.ts index 06bb39e03..a09a4f824 100644 --- a/resources/i18n/openlp_pt_BR.ts +++ b/resources/i18n/openlp_pt_BR.ts @@ -66,12 +66,12 @@ - + New Alert - + You haven't specified any text for your alert. Please type in some text before clicking New. @@ -877,176 +877,28 @@ Changes do not affect verses already in the service. - - You must select an item to delete. - - - - + Image(s) Imagem(s) + + + Replace Background + + + + + You must select an image to delete. + + + + + You must select an image to replace the background with. + + - You must select an item to process. - - - - - MediaManagerItem - - - You must select one or more items - Você precisa selecionar um ou mais itens - - - - Delete the selected item - Deletar o item selecionado - - - - &Add to Service - &Adicionar ao Culto - - - - Send the selected item live - Enviar o item selecionado para o ao vivo - - - - Add the selected item(s) to the service - Adicionar o item selecionado ao culto - - - - &Show Live - &Mostrar Ao Vivo - - - - Preview the selected item - Pré-Visualizar o item selecionado - - - - 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 - - - - - Preview %s - - - - - Add %s to Service - - - - - &Edit %s - - - - - &Delete %s - - - - - &Preview %s - - - - - &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 - - - - - No Service Item Selected - - - - - You must select an existing service item to add to. - - - - - Invalid Service Item - - - - - You must select a %s service item. + You must select a media file to replace the background with. @@ -1075,9 +927,14 @@ Changes do not affect verses already in the service. Replace Live Background + + + Replace Background + + - You must select an item to delete. + You must select a media file to delete. @@ -1324,13 +1181,13 @@ This General Public License does not permit incorporating your program into prop - - Save currently selected media manager plugin + + Double-click to send items straight to live (requires restart) - - Double-click to send items straight to live (requires restart) + + Remember active media manager tab on startup @@ -1699,16 +1556,6 @@ This General Public License does not permit incorporating your program into prop Preview Next Song from Service Manager Pré-Visualizar Próxima Música do Gerenciamento de Culto - - - SongSelect Username: - Usuário do SongSelect: - - - - SongSelect Password: - Senha do SongSelect: - Display Position @@ -1766,8 +1613,18 @@ This General Public License does not permit incorporating your program into prop - CCLI Number: - Número CCLI: + CCLI number: + + + + + SongSelect username: + + + + + SongSelect password: + @@ -2199,7 +2056,165 @@ You can download the latest version from <a href="http://openlp.org/&quo - PluginForm + OpenLP.MediaManagerItem + + + Import %s + + + + + Import a %s + + + + + Load %s + + + + + Load a new %s + + + + + New %s + + + + + Add a new %s + + + + + Edit %s + + + + + Edit the selected %s + + + + + Delete %s + + + + + Delete the selected item + 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 + + + + + No Items Selected + + + + + 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 @@ -2221,37 +2236,37 @@ You can download the latest version from <a href="http://openlp.org/&quo TextLabel - + About: Sobre: - + Status: Status: - + Active Ativo - + Inactive Inativo - + %s (Inactive) - + %s (Active) - + %s (Disabled) @@ -2286,21 +2301,11 @@ You can download the latest version from <a href="http://openlp.org/&quo Present using: Apresentar usando: - - - File exists - Arquivo existe - A presentation with that filename already exists. Uma apresentação com este nome já existe. - - - Unsupported file - - This type of presentation is not supported @@ -2311,6 +2316,16 @@ You can download the latest version from <a href="http://openlp.org/&quo You must select an item to delete. + + + File Exists + + + + + Unsupported File + + PresentationPlugin.PresentationTab @@ -2324,11 +2339,6 @@ You can download the latest version from <a href="http://openlp.org/&quo Available Controllers Controladores Disponíveis - - - available - disponível - RemotePlugin @@ -2345,10 +2355,20 @@ You can download the latest version from <a href="http://openlp.org/&quo Remotes Remoto + + + Serve on IP address: + + - Remotes Receiver Port - Porta Recebedora Remota + Port number: + + + + + Server Settings + @@ -2733,41 +2753,71 @@ The content encoding is not UTF-8. - + 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 - + Open documents or presentations - + <strong>Song Plugin</strong><br />This plugin allows songs to be managed and displayed. + + + 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) + + SongsPlugin.AuditDeleteDialog @@ -2981,90 +3031,100 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R Salvar && Pré-Visualizar - + 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 Erro - + 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? + + + This author is already in the list. + + + + + This topic is already in the list. + + SongsPlugin.EditVerseForm @@ -3313,17 +3373,17 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R SongsPlugin.SongBookForm - + Song Book Maintenance - + &Name: - + &Publisher: @@ -3389,112 +3449,112 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - + 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! @@ -3502,12 +3562,12 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R SongsPlugin.SongUsageDeleteForm - + Delete Selected Song Usage Events? - + Are you sure you want to delete selected Song Usage data? @@ -3515,7 +3575,7 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R SongsPlugin.SongUsageDetailForm - + Output File Location Local do arquivo de saída diff --git a/resources/i18n/openlp_sv.ts b/resources/i18n/openlp_sv.ts index e70656674..2b11c553d 100644 --- a/resources/i18n/openlp_sv.ts +++ b/resources/i18n/openlp_sv.ts @@ -66,12 +66,12 @@ - + New Alert - + You haven't specified any text for your alert. Please type in some text before clicking New. @@ -877,176 +877,28 @@ Changes do not affect verses already in the service. - - You must select an item to delete. - - - - + Image(s) Bilder + + + Replace Background + + + + + You must select an image to delete. + + + + + You must select an image to replace the background with. + + - You must select an item to process. - - - - - MediaManagerItem - - - You must select one or more items - Du måste välja ett eller flera objekt - - - - Delete the selected item - Ta bort det valda objektet - - - - &Add to Service - &Lägg till i mötesplanering - - - - Send the selected item live - Skicka det valda objektet till live - - - - Add the selected item(s) to the service - Lägg till valda objekt till planeringen - - - - &Show Live - &Visa Live - - - - Preview the selected item - Förhandsgranska det valda objektet - - - - 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 - - - - - Preview %s - - - - - Add %s to Service - - - - - &Edit %s - - - - - &Delete %s - - - - - &Preview %s - - - - - &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 - - - - - No Service Item Selected - - - - - You must select an existing service item to add to. - - - - - Invalid Service Item - - - - - You must select a %s service item. + You must select a media file to replace the background with. @@ -1075,9 +927,14 @@ Changes do not affect verses already in the service. Replace Live Background + + + Replace Background + + - You must select an item to delete. + You must select a media file to delete. @@ -1324,13 +1181,13 @@ This General Public License does not permit incorporating your program into prop - - Save currently selected media manager plugin + + Double-click to send items straight to live (requires restart) - - Double-click to send items straight to live (requires restart) + + Remember active media manager tab on startup @@ -1699,16 +1556,6 @@ This General Public License does not permit incorporating your program into prop Preview Next Song from Service Manager Förhandsgranska nästa sång från mötesplaneringen - - - SongSelect Username: - SongSelect Användarnamn: - - - - SongSelect Password: - SongSelect-lösenord: - Display Position @@ -1766,8 +1613,18 @@ This General Public License does not permit incorporating your program into prop - CCLI Number: - CCLI-nummer: + CCLI number: + + + + + SongSelect username: + + + + + SongSelect password: + @@ -2185,7 +2042,7 @@ You can download the latest version from <a href="http://openlp.org/&quo Save Changes to Service? - + Spara Ändringar till Planering? @@ -2199,7 +2056,165 @@ You can download the latest version from <a href="http://openlp.org/&quo - PluginForm + OpenLP.MediaManagerItem + + + Import %s + + + + + Import a %s + + + + + Load %s + + + + + Load a new %s + + + + + New %s + + + + + Add a new %s + + + + + Edit %s + + + + + Edit the selected %s + + + + + Delete %s + + + + + Delete the selected item + 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 + + + + + No Items Selected + + + + + 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 @@ -2221,37 +2236,37 @@ You can download the latest version from <a href="http://openlp.org/&quo TextLabel - + About: Om: - + Status: Status: - + Active Aktiv - + Inactive Inaktiv - + %s (Inactive) - + %s (Active) - + %s (Disabled) @@ -2286,21 +2301,11 @@ You can download the latest version from <a href="http://openlp.org/&quo Present using: Presentera genom: - - - File exists - Fil finns - A presentation with that filename already exists. En presentation med det namnet finns redan. - - - Unsupported file - - This type of presentation is not supported @@ -2311,6 +2316,16 @@ You can download the latest version from <a href="http://openlp.org/&quo You must select an item to delete. + + + File Exists + + + + + Unsupported File + + PresentationPlugin.PresentationTab @@ -2324,11 +2339,6 @@ You can download the latest version from <a href="http://openlp.org/&quo Available Controllers Tillgängliga Presentationsprogram - - - available - tillgänglig - RemotePlugin @@ -2345,10 +2355,20 @@ You can download the latest version from <a href="http://openlp.org/&quo Remotes Fjärrstyrningar + + + Serve on IP address: + + - Remotes Receiver Port - Mottagarport för fjärrstyrning + Port number: + + + + + Server Settings + @@ -2733,41 +2753,71 @@ The content encoding is not UTF-8. - + 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 - + Open documents or presentations - + <strong>Song Plugin</strong><br />This plugin allows songs to be managed and displayed. + + + 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) + + SongsPlugin.AuditDeleteDialog @@ -2981,90 +3031,100 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R Spara && förhandsgranska - + 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 Fel - + 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? + + + This author is already in the list. + + + + + This topic is already in the list. + + SongsPlugin.EditVerseForm @@ -3313,17 +3373,17 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R SongsPlugin.SongBookForm - + Song Book Maintenance - + &Name: - + &Publisher: @@ -3389,112 +3449,112 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - + 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! @@ -3502,12 +3562,12 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R SongsPlugin.SongUsageDeleteForm - + 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? @@ -3515,7 +3575,7 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R SongsPlugin.SongUsageDetailForm - + Output File Location Utfil sökväg