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 @@
-
+
-
+
@@ -877,176 +877,28 @@ Changes do not affect verses already in the service.
-
-
-
-
-
-
+
Beeld(e)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
- MediaManagerItem
-
-
-
- P moet meer as een item selekteer
-
-
-
-
- Wis geselekteerde item uit
-
-
-
-
- &Voeg by Diens
-
-
-
-
- Stuur die geselekteerde item na regstreekse vertoning
-
-
-
-
- Voeg die geselekteerde item(s) by die diens
-
-
-
-
- &Vertoon Regstreeks
-
-
-
-
- Voorskou die geselekteerde item
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
@@ -1075,9 +927,14 @@ Changes do not affect verses already in the service.
+
+
+
+
+
-
+
@@ -1324,13 +1181,13 @@ This General Public License does not permit incorporating your program into prop
-
-
+
+
-
-
+
+
@@ -1699,16 +1556,6 @@ This General Public License does not permit incorporating your program into prop
Sien Voorskou van Volgende Lied vanaf Diens Bestuurder
-
-
-
- SongSelect Gebruikers naam:
-
-
-
-
- SongSelect Wagwoord:
-
@@ -1766,8 +1613,18 @@ This General Public License does not permit incorporating your program into prop
-
- CCLI Nommer:
+
+
+
+
+
+
+
+
+
+
+
+
@@ -2185,7 +2042,7 @@ You can download the latest version from <a href="http://openlp.org/&quo
-
+ Stoor Veranderinge aan Diens?
@@ -2199,7 +2056,165 @@ You can download the latest version from <a href="http://openlp.org/&quo
- PluginForm
+ OpenLP.MediaManagerItem
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Wis geselekteerde item uit
+
+
+
+
+
+
+
+
+
+ Voorskou die geselekteerde item
+
+
+
+
+ Stuur die geselekteerde item na regstreekse vertoning
+
+
+
+
+
+
+
+
+
+ Voeg die geselekteerde item(s) by die diens
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ &Vertoon Regstreeks
+
+
+
+
+ &Voeg by Diens
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ P moet meer as een item selekteer
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ OpenLP.PluginForm
@@ -2221,37 +2236,37 @@ You can download the latest version from <a href="http://openlp.org/&quo
TeksEtiket
-
+
Aangaande:
-
+
Status:
-
+
Aktief
-
+
Onaktief
-
+
-
+
-
+
@@ -2286,21 +2301,11 @@ You can download the latest version from <a href="http://openlp.org/&quo
Bied aan met:
-
-
-
- Lêer bestaan
-
'n Voorstelling met daardie lêernaam bestaan reeds.
-
-
-
-
-
@@ -2311,6 +2316,16 @@ You can download the latest version from <a href="http://openlp.org/&quo
+
+
+
+
+
+
+
+
+
+
PresentationPlugin.PresentationTab
@@ -2324,11 +2339,6 @@ You can download the latest version from <a href="http://openlp.org/&quo
Beskikbare Beheerders
-
-
-
- beskikbaar
-
RemotePlugin
@@ -2345,10 +2355,20 @@ You can download the latest version from <a href="http://openlp.org/&quo
Afstandbehere
+
+
+
+
+
-
- Afstandbeheer Ontvanger Poort
+
+
+
+
+
+
+
@@ -2733,41 +2753,71 @@ The content encoding is not UTF-8.
-
+
-
+
-
+
-
+
-
+
-
+
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
SongsPlugin.AuditDeleteDialog
@@ -2981,90 +3031,100 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R
Stoor && Voorskou
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
Fout
-
+
-
+
-
+
-
+
-
+
-
+
+
+
+
+
+
+
+
+
+
+
SongsPlugin.EditVerseForm
@@ -3313,17 +3373,17 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R
SongsPlugin.SongBookForm
-
+
-
+
-
+
@@ -3389,112 +3449,112 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R
-
+
Fout
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
Wis Skrywer Uit
-
+
Is u seker u wil die geselekteerde skrywer uitwis?
-
+
-
+
Geen skrywer geselekteer nie!
-
+
Wis Onderwerp Uit
-
+
Is u seker u wil die geselekteerde onderwerp uitwis?
-
+
-
+
Geen onderwerp geselekteer nie!
-
+
Wis Boek Uit
-
+
Is jy seker jy wil die geselekteerde boek uitwis?
-
+
-
+
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
-
+
-
+
@@ -3515,7 +3575,7 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R
SongsPlugin.SongUsageDetailForm
-
+
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 @@
-
+
-
+
@@ -877,176 +877,28 @@ Changes do not affect verses already in the service.
-
-
-
-
-
-
+
Bild(er)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
- MediaManagerItem
-
-
-
- Sie müssen mindestens ein Element markieren
-
-
-
-
- Markiertes Element löschen
-
-
-
-
- &Zum Ablauf hinzufügen
-
-
-
-
- Ausgewähltes Element Live anzeigen
-
-
-
-
- Füge Element(e) zum Ablauf hinzu
-
-
-
-
- &Zeige Live
-
-
-
-
- Zeige das auswählte Element in der Vorschau an
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
@@ -1071,13 +923,18 @@ Changes do not affect verses already in the service.
Medien auswählen
-
-
+
+
-
+
+
+
+
+
+
@@ -1324,13 +1181,13 @@ This General Public License does not permit incorporating your program into prop
-
-
+
+
-
-
+
+
@@ -1699,16 +1556,6 @@ This General Public License does not permit incorporating your program into prop
Vorschau des nächsten Lieds
-
-
-
- SongSelect-Benutzername:
-
-
-
-
- SongSelect-Passwort:
-
@@ -1766,8 +1613,18 @@ This General Public License does not permit incorporating your program into prop
-
- CCLI-Nummer:
+
+
+
+
+
+
+
+
+
+
+
+
@@ -2199,7 +2056,165 @@ You can download the latest version from <a href="http://openlp.org/&quo
- PluginForm
+ OpenLP.MediaManagerItem
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Markiertes Element löschen
+
+
+
+
+
+
+
+
+
+ Zeige das auswählte Element in der Vorschau an
+
+
+
+
+ Ausgewähltes Element Live anzeigen
+
+
+
+
+
+
+
+
+
+ Füge Element(e) zum Ablauf hinzu
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ &Zeige Live
+
+
+
+
+ &Zum Ablauf hinzufügen
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Sie müssen mindestens ein Element markieren
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ OpenLP.PluginForm
@@ -2221,37 +2236,37 @@ You can download the latest version from <a href="http://openlp.org/&quo
Text Beschriftung
-
+
Über:
-
+
Status:
-
+
Aktiv
-
+
Inaktiv
-
+
-
+
-
+
@@ -2286,11 +2301,6 @@ You can download the latest version from <a href="http://openlp.org/&quo
Anzeigen mit:
-
-
-
- Datei existiert bereits
-
@@ -2303,12 +2313,17 @@ You can download the latest version from <a href="http://openlp.org/&quo
-
+
+
+
+
+
+
-
+
@@ -2324,11 +2339,6 @@ You can download the latest version from <a href="http://openlp.org/&quo
Verfügbare Präsentationsprogramme:
-
-
-
- verfügbar
-
RemotePlugin
@@ -2345,10 +2355,20 @@ You can download the latest version from <a href="http://openlp.org/&quo
Fernprojektion
+
+
+
+
+
-
- Fernprojektionsport
+
+
+
+
+
+
+
@@ -2723,28 +2743,28 @@ The content encoding is not UTF-8.
-
+
-
+
-
+
-
+
-
+
@@ -2759,15 +2779,45 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R
-
+
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
SongsPlugin.AuditDeleteDialog
@@ -2971,87 +3021,87 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R
Speichern && Vorschau
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
Fehler
-
+
-
+
-
+
-
+
-
+
-
+
@@ -3065,6 +3115,16 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R
+
+
+
+
+
+
+
+
+
+
SongsPlugin.EditVerseForm
@@ -3313,12 +3373,12 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R
SongsPlugin.SongBookForm
-
+
-
+
@@ -3333,7 +3393,7 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R
-
+
@@ -3384,52 +3444,52 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R
-
+
Fehler
-
+
Lösche Autor
-
+
Sind Sie sicher, dass Sie den ausgewählten Autor löschen wollen?
-
+
Sie haben keinen Autor ausgewählt!
-
+
Lösche Thema
-
+
Soll der gewählte Eintrag wirklich gelöscht werden?
-
+
Kein Thema ausgewählt!
-
+
Buch löschen
-
+
Sind Sie sicher, dass das markierte Buch wirklich gelöscht werden soll?
-
+
Kein Buch ausgewählt!
@@ -3439,62 +3499,62 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -3502,12 +3562,12 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R
SongsPlugin.SongUsageDeleteForm
-
+
-
+
@@ -3515,7 +3575,7 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R
SongsPlugin.SongUsageDetailForm
-
+
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 @@
-
+
-
+
@@ -877,176 +877,28 @@ Changes do not affect verses already in the service.
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
- MediaManagerItem
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
@@ -1075,9 +927,14 @@ Changes do not affect verses already in the service.
+
+
+
+
+
-
+
@@ -1324,13 +1181,13 @@ This General Public License does not permit incorporating your program into prop
-
-
+
+
-
-
+
+
@@ -1699,16 +1556,6 @@ This General Public License does not permit incorporating your program into prop
-
-
-
-
-
-
-
-
-
-
@@ -1766,7 +1613,17 @@ This General Public License does not permit incorporating your program into prop
-
+
+
+
+
+
+
+
+
+
+
+
@@ -2199,7 +2056,165 @@ You can download the latest version from <a href="http://openlp.org/&quo
- PluginForm
+ OpenLP.MediaManagerItem
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ OpenLP.PluginForm
@@ -2221,37 +2236,37 @@ You can download the latest version from <a href="http://openlp.org/&quo
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -2286,21 +2301,11 @@ You can download the latest version from <a href="http://openlp.org/&quo
-
-
-
-
-
-
-
-
-
-
@@ -2311,6 +2316,16 @@ You can download the latest version from <a href="http://openlp.org/&quo
+
+
+
+
+
+
+
+
+
+
PresentationPlugin.PresentationTab
@@ -2324,11 +2339,6 @@ You can download the latest version from <a href="http://openlp.org/&quo
-
-
-
-
-
RemotePlugin
@@ -2345,9 +2355,19 @@ You can download the latest version from <a href="http://openlp.org/&quo
+
+
+
+
+
-
+
+
+
+
+
+
@@ -2733,41 +2753,71 @@ The content encoding is not UTF-8.
-
+
-
+
-
+
-
+
-
+
-
+
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
SongsPlugin.AuditDeleteDialog
@@ -2981,90 +3031,100 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
+
+
+
+
+
+
+
+
+
+
SongsPlugin.EditVerseForm
@@ -3313,17 +3373,17 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R
SongsPlugin.SongBookForm
-
+
-
+
-
+
@@ -3389,112 +3449,112 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -3502,12 +3562,12 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R
SongsPlugin.SongUsageDeleteForm
-
+
-
+
@@ -3515,7 +3575,7 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R
SongsPlugin.SongUsageDetailForm
-
+
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 @@
-
+
-
+
@@ -877,176 +877,28 @@ Changes do not affect verses already in the service.
-
-
-
-
-
-
+
Image(s)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
- MediaManagerItem
-
-
-
- You must select one or more items
-
-
-
-
- Delete the selected item
-
-
-
-
- &Add to Service
-
-
-
-
- Send the selected item live
-
-
-
-
- Add the selected item(s) to the service
-
-
-
-
- &Show Live
-
-
-
-
- Preview the selected item
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
@@ -1075,9 +927,14 @@ Changes do not affect verses already in the service.
+
+
+
+
+
-
+
@@ -1324,13 +1181,13 @@ This General Public License does not permit incorporating your program into prop
-
-
+
+
-
-
+
+
@@ -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:
-
@@ -1766,8 +1613,18 @@ This General Public License does not permit incorporating your program into prop
-
- CCLI Number:
+
+
+
+
+
+
+
+
+
+
+
+
@@ -2199,7 +2056,165 @@ You can download the latest version from <a href="http://openlp.org/&quo
- PluginForm
+ OpenLP.MediaManagerItem
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Delete the selected item
+
+
+
+
+
+
+
+
+
+ Preview the selected item
+
+
+
+
+ Send the selected item live
+
+
+
+
+
+
+
+
+
+ Add the selected item(s) to the service
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ &Show Live
+
+
+
+
+ &Add to Service
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ You must select one or more items
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ OpenLP.PluginForm
@@ -2221,37 +2236,37 @@ You can download the latest version from <a href="http://openlp.org/&quo
TextLabel
-
+
About:
-
+
Status:
-
+
Active
-
+
Inactive
-
+
-
+
-
+
@@ -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.
-
-
-
-
-
@@ -2311,6 +2316,16 @@ You can download the latest version from <a href="http://openlp.org/&quo
+
+
+
+
+
+
+
+
+
+
PresentationPlugin.PresentationTab
@@ -2324,11 +2339,6 @@ You can download the latest version from <a href="http://openlp.org/&quo
Available Controllers
-
-
-
- available
-
RemotePlugin
@@ -2345,10 +2355,20 @@ You can download the latest version from <a href="http://openlp.org/&quo
Remotes
+
+
+
+
+
-
- Remotes Receiver Port
+
+
+
+
+
+
+
@@ -2733,41 +2753,71 @@ The content encoding is not UTF-8.
-
+
-
+
-
+
-
+
-
+
-
+
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
SongsPlugin.AuditDeleteDialog
@@ -2981,90 +3031,100 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R
Save && Preview
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
Error
-
+
-
+
-
+
-
+
-
+
-
+
+
+
+
+
+
+
+
+
+
+
SongsPlugin.EditVerseForm
@@ -3313,17 +3373,17 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R
SongsPlugin.SongBookForm
-
+
-
+
-
+
@@ -3389,112 +3449,112 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R
-
+
Error
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
Delete Author
-
+
-
+
-
+
-
+
Delete Topic
-
+
Are you sure you want to delete the selected topic?
-
+
-
+
No topic selected!
-
+
Delete Book
-
+
Are you sure you want to delete the selected book?
-
+
-
+
@@ -3502,12 +3562,12 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R
SongsPlugin.SongUsageDeleteForm
-
+
-
+
@@ -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_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 @@
-
+
-
+
@@ -877,176 +877,28 @@ Changes do not affect verses already in the service.
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
- MediaManagerItem
-
-
-
- You must select one or more items
-
-
-
-
- Delete the selected item
-
-
-
-
-
-
-
-
-
- Send the selected item live.
-
-
-
-
- Add the selected item(s) to the service.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
@@ -1075,9 +927,14 @@ Changes do not affect verses already in the service.
+
+
+
+
+
-
+
@@ -1324,13 +1181,13 @@ This General Public License does not permit incorporating your program into prop
-
-
+
+
-
-
+
+
@@ -1699,16 +1556,6 @@ This General Public License does not permit incorporating your program into prop
Preview Next Song from Service Manager
-
-
-
- SongSelect Username:
-
-
-
-
-
-
@@ -1766,8 +1613,18 @@ This General Public License does not permit incorporating your program into prop
-
- CCLI Number:
+
+
+
+
+
+
+
+
+
+
+
+
@@ -2199,7 +2056,165 @@ You can download the latest version from <a href="http://openlp.org/&quo
- PluginForm
+ OpenLP.MediaManagerItem
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Delete the selected item
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Send the selected item live.
+
+
+
+
+
+
+
+
+
+ Add the selected item(s) to the service.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ You must select one or more items
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ OpenLP.PluginForm
@@ -2221,37 +2236,37 @@ You can download the latest version from <a href="http://openlp.org/&quo
-
+
-
+
Status:
-
+
Active
-
+
-
+
-
+
-
+
@@ -2286,21 +2301,11 @@ You can download the latest version from <a href="http://openlp.org/&quo
Present using:
-
-
-
-
-
-
-
-
-
-
@@ -2311,6 +2316,16 @@ You can download the latest version from <a href="http://openlp.org/&quo
+
+
+
+
+
+
+
+
+
+
PresentationPlugin.PresentationTab
@@ -2324,11 +2339,6 @@ You can download the latest version from <a href="http://openlp.org/&quo
Available Controllers
-
-
-
- available
-
RemotePlugin
@@ -2345,10 +2355,20 @@ You can download the latest version from <a href="http://openlp.org/&quo
Remotes
+
+
+
+
+
-
- Remotes Receiver Port
+
+
+
+
+
+
+
@@ -2733,41 +2753,71 @@ The content encoding is not UTF-8.
-
+
-
+
-
+
-
+
-
+
-
+
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
SongsPlugin.AuditDeleteDialog
@@ -2981,90 +3031,100 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
Error
-
+
-
+
-
+
-
+
-
+
-
+
+
+
+
+
+
+
+
+
+
+
SongsPlugin.EditVerseForm
@@ -3313,17 +3373,17 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R
SongsPlugin.SongBookForm
-
+
-
+
-
+
@@ -3389,112 +3449,112 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R
-
+
Error
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
Are you sure you want to delete the selected author?
-
+
-
+
No author selected!
-
+
Delete Topic
-
+
-
+
-
+
-
+
Delete Book
-
+
Are you sure you want to delete the selected book?
-
+
-
+
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
-
+
-
+
@@ -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_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 @@
-
+
-
+
@@ -877,176 +877,28 @@ Changes do not affect verses already in the service.
-
-
-
-
-
-
+
Imagen(es)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
- MediaManagerItem
-
-
-
- Usted debe seleccionar uno o más elementos
-
-
-
-
- &Agregar al Servicio
-
-
-
-
- Enviar en vivo el ítem seleccionado
-
-
-
-
- Agregar el elemento(s) seleccionado al servicio
-
-
-
-
- Borrar el ítem seleccionado
-
-
-
-
- Mo&star En Vivo
-
-
-
-
- Vista Previa del ítem seleccionado
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
@@ -1075,9 +927,14 @@ Changes do not affect verses already in the service.
+
+
+
+
+
-
+
@@ -1324,13 +1181,13 @@ This General Public License does not permit incorporating your program into prop
-
-
+
+
-
-
+
+
@@ -1699,16 +1556,6 @@ This General Public License does not permit incorporating your program into prop
Vista Previa de la Siguiente Canción en el Servicio
-
-
-
- Usuario SongSelect:
-
-
-
-
- Contraseña SongSelect:
-
@@ -1766,8 +1613,18 @@ This General Public License does not permit incorporating your program into prop
-
- Número CCLI:
+
+
+
+
+
+
+
+
+
+
+
+
@@ -2185,7 +2042,7 @@ You can download the latest version from <a href="http://openlp.org/&quo
-
+ ¿Guardar cambios al Servicio?
@@ -2199,7 +2056,165 @@ You can download the latest version from <a href="http://openlp.org/&quo
- PluginForm
+ OpenLP.MediaManagerItem
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Borrar el ítem seleccionado
+
+
+
+
+
+
+
+
+
+ Vista Previa del ítem seleccionado
+
+
+
+
+ Enviar en vivo el ítem seleccionado
+
+
+
+
+
+
+
+
+
+ Agregar el elemento(s) seleccionado al servicio
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Mo&star En Vivo
+
+
+
+
+ &Agregar al Servicio
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Usted debe seleccionar uno o más elementos
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ OpenLP.PluginForm
@@ -2221,37 +2236,37 @@ You can download the latest version from <a href="http://openlp.org/&quo
TextLabel
-
+
Acerca de:
-
+
Estado:
-
+
Activo
-
+
Inactivo
-
+
-
+
-
+
@@ -2286,21 +2301,11 @@ You can download the latest version from <a href="http://openlp.org/&quo
Mostrar usando:
-
-
-
- Ya existe el Archivo
-
Ya existe una presentación con ese nombre.
-
-
-
-
-
@@ -2311,6 +2316,16 @@ You can download the latest version from <a href="http://openlp.org/&quo
+
+
+
+
+
+
+
+
+
+
PresentationPlugin.PresentationTab
@@ -2324,11 +2339,6 @@ You can download the latest version from <a href="http://openlp.org/&quo
Controladores Disponibles
-
-
-
- disponible
-
RemotePlugin
@@ -2345,10 +2355,20 @@ You can download the latest version from <a href="http://openlp.org/&quo
Remotas
+
+
+
+
+
-
- Puerto de Recepción
+
+
+
+
+
+
+
@@ -2733,41 +2753,71 @@ The content encoding is not UTF-8.
-
+
-
+
-
+
-
+
-
+
-
+
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
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
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
Error
-
+
-
+
-
+
-
+
-
+
-
+
+
+
+
+
+
+
+
+
+
+
SongsPlugin.EditVerseForm
@@ -3313,17 +3373,17 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R
SongsPlugin.SongBookForm
-
+
-
+
-
+
@@ -3389,112 +3449,112 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R
-
+
Error
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
Borrar Autor
-
+
¿Está seguro que desea eliminar el autor seleccionado?
-
+
-
+
¡Ningún autor seleccionado!
-
+
Borrar Categoría
-
+
¿Está seguro que desea eliminar la categoría seleccionada?
-
+
-
+
¡No seleccionó la categoría!
-
+
Eliminar Libro
-
+
¿Está seguro de que quiere eliminar el libro seleccionado?
-
+
-
+
¡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
-
+
-
+
@@ -3515,7 +3575,7 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R
SongsPlugin.SongUsageDetailForm
-
+
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 @@
-
+
-
+
@@ -877,176 +877,28 @@ Changes do not affect verses already in the service.
Ekraani tausta asendamine
-
-
-
-
-
-
+
Pilt(pildid)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
- MediaManagerItem
-
-
-
- Vigane teenistuse element
-
-
-
-
- Ühtegi elementi pole valitud
-
-
-
-
- Pead valima vähemalt ühe elemendi
-
-
-
-
- &Lisa valitud teenistuse elemendile
-
-
-
-
- Ühtegi elementi pole valitud
-
-
-
-
- &Lisa teenistusele
-
-
-
-
- Valitud kirje saatmine ekraanile
-
-
-
-
- Valitud kirje(te) lisamine teenistusse
-
-
-
-
- Valitud elemendi kustutamine
-
-
-
-
- Ühtegi teenistuse elementi pole valitud
-
-
-
-
- &Kuva ekraanil
-
-
-
-
- Valitud kirje eelvaatlus
-
-
-
-
- Pead valima vähemalt ühe elemendi.
-
-
-
-
- Pead valima olemasoleva teenistuse, millele lisada.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
@@ -1071,13 +923,18 @@ Changes do not affect verses already in the service.
Meedia valimine
-
-
+
+
-
+
+
+
+
+
+
@@ -1357,13 +1214,13 @@ This General Public License does not permit incorporating your program into prop
-
-
+
+
-
-
+
+
@@ -1732,16 +1589,6 @@ This General Public License does not permit incorporating your program into prop
Teenistuse haldurist kuvatakse järgmise laulu eelvaade
-
-
-
- SongSelecti kasutajanimi:
-
-
-
-
- SongSelecti parool:
-
@@ -1799,8 +1646,18 @@ This General Public License does not permit incorporating your program into prop
-
- CCLI number:
+
+
+
+
+
+
+
+
+
+
+
+
@@ -2232,59 +2089,217 @@ You can download the latest version from <a href="http://openlp.org/&quo
- PluginForm
+ OpenLP.MediaManagerItem
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Valitud elemendi kustutamine
+
+
+
+
+
+
+
+
+
+ Valitud kirje eelvaatlus
+
+
+
+
+ Valitud kirje saatmine ekraanile
+
+
+
+
+
+
+
+
+
+ Valitud kirje(te) lisamine teenistusse
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ &Kuva ekraanil
+
+
+
+
+ &Lisa teenistusele
+
+
+
+
+ &Lisa valitud teenistuse elemendile
+
+
+
+
+ Ühtegi elementi pole valitud
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Pead valima vähemalt ühe elemendi.
+
+
+
+
+ Ühtegi elementi pole valitud
+
+
+
+
+ Pead valima vähemalt ühe elemendi
+
+
+
+
+ Ühtegi teenistuse elementi pole valitud
+
+
+
+
+ Pead valima olemasoleva teenistuse, millele lisada.
+
+
+
+
+ Vigane teenistuse element
+
+
+
+
+
+
+
+
+ OpenLP.PluginForm
- Pluginate loend
+ Pluginate loend
- Plugina andmed
+ Plugina andmed
- Versioon:
+ Versioon:
- TekstiPealdis
-
-
-
-
- Kirjeldus:
+ TekstiPealdis
-
- Olek:
-
-
-
-
- Aktiivne
+
+ Kirjeldus:
-
- Pole aktiivne
+
+ Olek:
-
+
+
+ Aktiivne
+
+
+
+
+ Pole aktiivne
+
+
+
-
+
-
+
@@ -2319,11 +2334,6 @@ You can download the latest version from <a href="http://openlp.org/&quo
-
-
-
-
-
@@ -2336,22 +2346,22 @@ You can download the latest version from <a href="http://openlp.org/&quo
-
+
+
+
+
+
+
-
+
PresentationPlugin.PresentationTab
-
-
-
-
-
@@ -2378,9 +2388,19 @@ You can download the latest version from <a href="http://openlp.org/&quo
+
+
+
+
+
-
+
+
+
+
+
+
@@ -2756,28 +2776,28 @@ The content encoding is not UTF-8.
-
+
-
+
-
+
-
+
-
+
@@ -2792,15 +2812,45 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R
-
+
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
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
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -3059,32 +3109,32 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R
-
+
Viga
-
+
-
+
-
+
-
+
-
+
@@ -3098,6 +3148,16 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R
+
+
+
+
+
+
+
+
+
+
SongsPlugin.EditVerseForm
@@ -3346,12 +3406,12 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R
SongsPlugin.SongBookForm
-
+
-
+
@@ -3366,7 +3426,7 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R
-
+
@@ -3417,47 +3477,47 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R
&Kustuta
-
+
-
+
-
+
-
+
Viga
-
+
-
+
-
+
-
+
-
+
@@ -3467,67 +3527,67 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -3535,12 +3595,12 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R
SongsPlugin.SongUsageDeleteForm
-
+
-
+
@@ -3548,7 +3608,7 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R
SongsPlugin.SongUsageDetailForm
-
+
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
-
+
-
+
@@ -877,176 +877,28 @@ Changes do not affect verses already in the service.
-
-
-
-
-
-
+
Kép(ek)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
- MediaManagerItem
-
-
-
- Ki kell választani egy vagy több elemet
-
-
-
-
- Kiválasztott elem törlése
-
-
-
-
- &Hozzáadás a szolgálathoz
-
-
-
-
- A kiválasztott elem egyenes adásba küldése
-
-
-
-
- A kiválasztott elem(ek) hozzáadása a szolgálathoz
-
-
-
-
- Egyenes &adásba
-
-
-
-
- A kiválasztott elem előnézete
-
-
-
-
- &Hozzáadás a kiválasztott szolgálat elemhez
-
-
-
-
- Nincs kiválasztott elem
-
-
-
-
- Ki kell választani egy vagy több elemet.
-
-
-
-
- Nincs kiválasztott elem
-
-
-
-
- Nincs kiválasztott szolgálat elem
-
-
-
-
- Ki kell választani egy szolgálati elemet, amihez hozzá szeretné adni.
-
-
-
-
- Érvénytelen szolgálat elem
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
@@ -1075,9 +927,14 @@ Changes do not affect verses already in the service.
+
+
+
+
+
-
+
@@ -1484,13 +1341,13 @@ A GNU General Public License nem engedi meg, hogy a program része legyen szelle
-
-
+
+
-
-
+
+
@@ -1859,16 +1716,6 @@ A GNU General Public License nem engedi meg, hogy a program része legyen szelle
Következő dal előnézete a szolgálatkezelőből
-
-
-
- SongSelect felhasználói név:
-
-
-
-
- SongSelect jelszó:
-
@@ -1926,8 +1773,18 @@ A GNU General Public License nem engedi meg, hogy a program része legyen szelle
-
- CCLI szám:
+
+
+
+
+
+
+
+
+
+
+
+
@@ -2345,7 +2202,7 @@ You can download the latest version from <a href="http://openlp.org/&quo
-
+ 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
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Kiválasztott elem törlése
+
+
+
+
+
+
+
+
+
+ A kiválasztott elem előnézete
+
+
+
+
+ A kiválasztott elem egyenes adásba küldése
+
+
+
+
+
+
+
+
+
+ A kiválasztott elem(ek) hozzáadása a szolgálathoz
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Egyenes &adásba
+
+
+
+
+ &Hozzáadás a szolgálathoz
+
+
+
+
+ &Hozzáadás a kiválasztott szolgálat elemhez
+
+
+
+
+ Nincs kiválasztott elem
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Ki kell választani egy vagy több elemet.
+
+
+
+
+ Nincs kiválasztott elem
+
+
+
+
+ Ki kell választani egy vagy több elemet
+
+
+
+
+ Nincs kiválasztott szolgálat elem
+
+
+
+
+ Ki kell választani egy szolgálati elemet, amihez hozzá szeretné adni.
+
+
+
+
+ Érvénytelen szolgálat elem
+
+
+
+
+
+
+
+
+ OpenLP.PluginForm
- Bővítménylista
+ Bővítménylista
- Bővítmény részletei
+ Bővítmény részletei
- Verzió:
+ Verzió:
- Szövegcímke
-
-
-
-
- Névjegy:
+ Szövegcímke
-
- Állapot:
-
-
-
-
- Aktív
+
+ Névjegy:
-
- Inaktív
+
+ Állapot:
-
+
+
+ Aktív
+
+
+
+
+ Inaktív
+
+
+
-
+
-
+
@@ -2446,21 +2461,11 @@ You can download the latest version from <a href="http://openlp.org/&quo
Bemutató ezzel:
-
-
-
- A fájl létezik
-
Ilyen fájlnéven már létezik egy bemutató.
-
-
-
-
-
@@ -2471,6 +2476,16 @@ You can download the latest version from <a href="http://openlp.org/&quo
+
+
+
+
+
+
+
+
+
+
PresentationPlugin.PresentationTab
@@ -2484,11 +2499,6 @@ You can download the latest version from <a href="http://openlp.org/&quo
Elérhető vezérlők
-
-
-
- elérhető
-
RemotePlugin
@@ -2505,10 +2515,20 @@ You can download the latest version from <a href="http://openlp.org/&quo
Távvezérlés
+
+
+
+
+
-
- Távvezérlést fogadó port
+
+
+
+
+
+
+
@@ -2853,17 +2873,17 @@ The content encoding is not UTF-8.
SongsPlugin
-
+
Songs of Fellowship fájl megnyitása
-
+
Dokumentum vagy bemutató megnyitása
-
+
<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álás hiba
-
+
-
+
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
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
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
Hiba
-
+
-
+
-
+
-
+
-
+
-
+
+
+
+
+
+
+
+
+
+
+
SongsPlugin.EditVerseForm
@@ -3473,17 +3533,17 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R
SongsPlugin.SongBookForm
-
+
-
+
-
+
@@ -3549,112 +3609,112 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R
&Törlés
-
+
Hiba
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
Szerző törlése
-
+
A kiválasztott szerző biztosan törölhető?
-
+
-
+
Nincs kiválasztott szerző!
-
+
Témakör törlése
-
+
A kiválasztott témakör biztosan törölhető?
-
+
-
+
Nincs kiválasztott témakör!
-
+
Könyv törlése
-
+
A kiválasztott könyv biztosan törölhető?
-
+
-
+
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
-
+
Valóban törölhetők a kiválasztott dalstatisztika események?
-
+
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
-
+
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 @@
-
+
-
+
@@ -877,176 +877,28 @@ Changes do not affect verses already in the service.
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
- MediaManagerItem
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
@@ -1075,9 +927,14 @@ Changes do not affect verses already in the service.
+
+
+
+
+
-
+
@@ -1324,13 +1181,13 @@ This General Public License does not permit incorporating your program into prop
-
-
+
+
-
-
+
+
@@ -1699,16 +1556,6 @@ This General Public License does not permit incorporating your program into prop
-
-
-
-
-
-
-
-
-
-
@@ -1766,7 +1613,17 @@ This General Public License does not permit incorporating your program into prop
-
+
+
+
+
+
+
+
+
+
+
+
@@ -2199,7 +2056,165 @@ You can download the latest version from <a href="http://openlp.org/&quo
- PluginForm
+ OpenLP.MediaManagerItem
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ OpenLP.PluginForm
@@ -2221,37 +2236,37 @@ You can download the latest version from <a href="http://openlp.org/&quo
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -2286,21 +2301,11 @@ You can download the latest version from <a href="http://openlp.org/&quo
-
-
-
-
-
-
-
-
-
-
@@ -2311,6 +2316,16 @@ You can download the latest version from <a href="http://openlp.org/&quo
+
+
+
+
+
+
+
+
+
+
PresentationPlugin.PresentationTab
@@ -2324,11 +2339,6 @@ You can download the latest version from <a href="http://openlp.org/&quo
-
-
-
-
-
RemotePlugin
@@ -2345,9 +2355,19 @@ You can download the latest version from <a href="http://openlp.org/&quo
+
+
+
+
+
-
+
+
+
+
+
+
@@ -2733,41 +2753,71 @@ The content encoding is not UTF-8.
-
+
-
+
-
+
-
+
-
+
-
+
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
SongsPlugin.AuditDeleteDialog
@@ -2981,90 +3031,100 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
+
+
+
+
+
+
+
+
+
+
SongsPlugin.EditVerseForm
@@ -3313,17 +3373,17 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R
SongsPlugin.SongBookForm
-
+
-
+
-
+
@@ -3389,112 +3449,112 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -3502,12 +3562,12 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R
SongsPlugin.SongUsageDeleteForm
-
+
-
+
@@ -3515,7 +3575,7 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R
SongsPlugin.SongUsageDetailForm
-
+
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 @@
-
+
-
+
@@ -877,176 +877,28 @@ Changes do not affect verses already in the service.
-
-
-
-
-
-
+
Bilde(r)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
- MediaManagerItem
-
-
-
- Du må velge ett eller flere elementer
-
-
-
-
- &Legg til i møteplan
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
@@ -1075,9 +927,14 @@ Changes do not affect verses already in the service.
+
+
+
+
+
-
+
@@ -1324,13 +1181,13 @@ This General Public License does not permit incorporating your program into prop
-
-
+
+
-
-
+
+
@@ -1699,16 +1556,6 @@ This General Public License does not permit incorporating your program into prop
Forhåndsvis neste sang i møteplanen
-
-
-
- SongSelect-brukernavn:
-
-
-
-
- SongSelect-passord:
-
@@ -1766,8 +1613,18 @@ This General Public License does not permit incorporating your program into prop
-
- CCLI-nummer:
+
+
+
+
+
+
+
+
+
+
+
+
@@ -2199,7 +2056,165 @@ You can download the latest version from <a href="http://openlp.org/&quo
- PluginForm
+ OpenLP.MediaManagerItem
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ &Legg til i møteplan
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Du må velge ett eller flere elementer
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ OpenLP.PluginForm
@@ -2221,37 +2236,37 @@ You can download the latest version from <a href="http://openlp.org/&quo
-
+
Om:
-
+
Status:
-
+
Aktiv
-
+
-
+
-
+
-
+
@@ -2286,21 +2301,11 @@ You can download the latest version from <a href="http://openlp.org/&quo
Presenter ved hjelp av:
-
-
-
- Filen eksisterer
-
-
-
-
-
-
@@ -2311,6 +2316,16 @@ You can download the latest version from <a href="http://openlp.org/&quo
+
+
+
+
+
+
+
+
+
+
PresentationPlugin.PresentationTab
@@ -2324,11 +2339,6 @@ You can download the latest version from <a href="http://openlp.org/&quo
-
-
-
-
-
RemotePlugin
@@ -2345,9 +2355,19 @@ You can download the latest version from <a href="http://openlp.org/&quo
Fjernmeldinger
+
+
+
+
+
-
+
+
+
+
+
+
@@ -2733,41 +2753,71 @@ The content encoding is not UTF-8.
-
+
-
+
-
+
-
+
-
+
-
+
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
SongsPlugin.AuditDeleteDialog
@@ -2981,90 +3031,100 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
Feil
-
+
-
+
-
+
-
+
-
+
-
+
+
+
+
+
+
+
+
+
+
+
SongsPlugin.EditVerseForm
@@ -3313,17 +3373,17 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R
SongsPlugin.SongBookForm
-
+
-
+
-
+
@@ -3389,112 +3449,112 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R
-
+
Feil
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
Er du sikker på at du vil slette den valgte forfatteren?
-
+
-
+
Ingen forfatter er valgt!
-
+
Slett emne
-
+
-
+
-
+
-
+
Slett bok
-
+
Er du sikker på at du vil slette den merkede boken?
-
+
-
+
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
-
+
-
+
@@ -3515,7 +3575,7 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R
SongsPlugin.SongUsageDetailForm
-
+
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 @@
-
+
-
+
@@ -877,176 +877,28 @@ Changes do not affect verses already in the service.
-
-
-
-
-
-
+
Imagem(s)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
- MediaManagerItem
-
-
-
- Você precisa selecionar um ou mais itens
-
-
-
-
- Deletar o item selecionado
-
-
-
-
- &Adicionar ao Culto
-
-
-
-
- Enviar o item selecionado para o ao vivo
-
-
-
-
- Adicionar o item selecionado ao culto
-
-
-
-
- &Mostrar Ao Vivo
-
-
-
-
- Pré-Visualizar o item selecionado
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
@@ -1075,9 +927,14 @@ Changes do not affect verses already in the service.
+
+
+
+
+
-
+
@@ -1324,13 +1181,13 @@ This General Public License does not permit incorporating your program into prop
-
-
+
+
-
-
+
+
@@ -1699,16 +1556,6 @@ This General Public License does not permit incorporating your program into prop
Pré-Visualizar Próxima Música do Gerenciamento de Culto
-
-
-
- Usuário do SongSelect:
-
-
-
-
- Senha do SongSelect:
-
@@ -1766,8 +1613,18 @@ This General Public License does not permit incorporating your program into prop
-
- Número CCLI:
+
+
+
+
+
+
+
+
+
+
+
+
@@ -2199,7 +2056,165 @@ You can download the latest version from <a href="http://openlp.org/&quo
- PluginForm
+ OpenLP.MediaManagerItem
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Deletar o item selecionado
+
+
+
+
+
+
+
+
+
+ Pré-Visualizar o item selecionado
+
+
+
+
+ Enviar o item selecionado para o ao vivo
+
+
+
+
+
+
+
+
+
+ Adicionar o item selecionado ao culto
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ &Mostrar Ao Vivo
+
+
+
+
+ &Adicionar ao Culto
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Você precisa selecionar um ou mais itens
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ OpenLP.PluginForm
@@ -2221,37 +2236,37 @@ You can download the latest version from <a href="http://openlp.org/&quo
TextLabel
-
+
Sobre:
-
+
Status:
-
+
Ativo
-
+
Inativo
-
+
-
+
-
+
@@ -2286,21 +2301,11 @@ You can download the latest version from <a href="http://openlp.org/&quo
Apresentar usando:
-
-
-
- Arquivo existe
-
Uma apresentação com este nome já existe.
-
-
-
-
-
@@ -2311,6 +2316,16 @@ You can download the latest version from <a href="http://openlp.org/&quo
+
+
+
+
+
+
+
+
+
+
PresentationPlugin.PresentationTab
@@ -2324,11 +2339,6 @@ You can download the latest version from <a href="http://openlp.org/&quo
Controladores Disponíveis
-
-
-
- disponível
-
RemotePlugin
@@ -2345,10 +2355,20 @@ You can download the latest version from <a href="http://openlp.org/&quo
Remoto
+
+
+
+
+
-
- Porta Recebedora Remota
+
+
+
+
+
+
+
@@ -2733,41 +2753,71 @@ The content encoding is not UTF-8.
-
+
-
+
-
+
-
+
-
+
-
+
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
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
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
Erro
-
+
-
+
-
+
-
+
-
+
-
+
+
+
+
+
+
+
+
+
+
+
SongsPlugin.EditVerseForm
@@ -3313,17 +3373,17 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R
SongsPlugin.SongBookForm
-
+
-
+
-
+
@@ -3389,112 +3449,112 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R
-
+
Erro
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
Deletar Autor
-
+
Você tem certeza que deseja deletar o autor selecionado?
-
+
-
+
Nenhum autor selecionado!
-
+
Deletar Tópico
-
+
Você tem certeza que deseja deletar o tópico selecionado?
-
+
-
+
Nenhum tópico selecionado!
-
+
Deletar Livro
-
+
Você tem certeza que deseja deletar o livro selecionado?
-
+
-
+
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
-
+
-
+
@@ -3515,7 +3575,7 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R
SongsPlugin.SongUsageDetailForm
-
+
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 @@
-
+
-
+
@@ -877,176 +877,28 @@ Changes do not affect verses already in the service.
-
-
-
-
-
-
+
Bilder
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
- MediaManagerItem
-
-
-
- Du måste välja ett eller flera objekt
-
-
-
-
- Ta bort det valda objektet
-
-
-
-
- &Lägg till i mötesplanering
-
-
-
-
- Skicka det valda objektet till live
-
-
-
-
- Lägg till valda objekt till planeringen
-
-
-
-
- &Visa Live
-
-
-
-
- Förhandsgranska det valda objektet
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
@@ -1075,9 +927,14 @@ Changes do not affect verses already in the service.
+
+
+
+
+
-
+
@@ -1324,13 +1181,13 @@ This General Public License does not permit incorporating your program into prop
-
-
+
+
-
-
+
+
@@ -1699,16 +1556,6 @@ This General Public License does not permit incorporating your program into prop
Förhandsgranska nästa sång från mötesplaneringen
-
-
-
- SongSelect Användarnamn:
-
-
-
-
- SongSelect-lösenord:
-
@@ -1766,8 +1613,18 @@ This General Public License does not permit incorporating your program into prop
-
- CCLI-nummer:
+
+
+
+
+
+
+
+
+
+
+
+
@@ -2185,7 +2042,7 @@ You can download the latest version from <a href="http://openlp.org/&quo
-
+ Spara Ändringar till Planering?
@@ -2199,7 +2056,165 @@ You can download the latest version from <a href="http://openlp.org/&quo
- PluginForm
+ OpenLP.MediaManagerItem
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Ta bort det valda objektet
+
+
+
+
+
+
+
+
+
+ Förhandsgranska det valda objektet
+
+
+
+
+ Skicka det valda objektet till live
+
+
+
+
+
+
+
+
+
+ Lägg till valda objekt till planeringen
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ &Visa Live
+
+
+
+
+ &Lägg till i mötesplanering
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Du måste välja ett eller flera objekt
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ OpenLP.PluginForm
@@ -2221,37 +2236,37 @@ You can download the latest version from <a href="http://openlp.org/&quo
TextLabel
-
+
Om:
-
+
Status:
-
+
Aktiv
-
+
Inaktiv
-
+
-
+
-
+
@@ -2286,21 +2301,11 @@ You can download the latest version from <a href="http://openlp.org/&quo
Presentera genom:
-
-
-
- Fil finns
-
En presentation med det namnet finns redan.
-
-
-
-
-
@@ -2311,6 +2316,16 @@ You can download the latest version from <a href="http://openlp.org/&quo
+
+
+
+
+
+
+
+
+
+
PresentationPlugin.PresentationTab
@@ -2324,11 +2339,6 @@ You can download the latest version from <a href="http://openlp.org/&quo
Tillgängliga Presentationsprogram
-
-
-
- tillgänglig
-
RemotePlugin
@@ -2345,10 +2355,20 @@ You can download the latest version from <a href="http://openlp.org/&quo
Fjärrstyrningar
+
+
+
+
+
-
- Mottagarport för fjärrstyrning
+
+
+
+
+
+
+
@@ -2733,41 +2753,71 @@ The content encoding is not UTF-8.
-
+
-
+
-
+
-
+
-
+
-
+
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
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
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
Fel
-
+
-
+
-
+
-
+
-
+
-
+
+
+
+
+
+
+
+
+
+
+
SongsPlugin.EditVerseForm
@@ -3313,17 +3373,17 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R
SongsPlugin.SongBookForm
-
+
-
+
-
+
@@ -3389,112 +3449,112 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R
-
+
Fel
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
Ta bort låtskrivare
-
+
Är du säker på att du vill ta bort den valda låtskrivaren?
-
+
-
+
Ingen författare vald!
-
+
Ta bort ämne
-
+
Är du säker på att du vill ta bort valt ämne?
-
+
-
+
Inget ämne valt!
-
+
Ta bort bok
-
+
Är du säker på att du vill ta bort vald bok?
-
+
-
+
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
-
+
Ta bort valda sånganvändningsdata?
-
+
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
-
+
Utfil sökväg