diff --git a/openlp.pyw b/openlp.pyw index 9327a1168..80b49321e 100755 --- a/openlp.pyw +++ b/openlp.pyw @@ -162,18 +162,18 @@ def main(): the PyQt4 Application. """ # Set up command line options. - usage = u'Usage: %prog [options] [qt-options]' + usage = 'Usage: %prog [options] [qt-options]' parser = OptionParser(usage=usage) - parser.add_option(u'-e', u'--no-error-form', dest=u'no_error_form', - action=u'store_true', help=u'Disable the error notification form.') - parser.add_option(u'-l', u'--log-level', dest=u'loglevel', - default=u'warning', metavar=u'LEVEL', help=u'Set logging to LEVEL ' - u'level. Valid values are "debug", "info", "warning".') - parser.add_option(u'-p', u'--portable', dest=u'portable', - action=u'store_true', help=u'Specify if this should be run as a ' - u'portable app, off a USB flash drive (not implemented).') - parser.add_option(u'-s', u'--style', dest=u'style', - help=u'Set the Qt4 style (passed directly to Qt4).') + parser.add_option('-e', '--no-error-form', dest='no_error_form', + action='store_true', help='Disable the error notification form.') + parser.add_option('-l', '--log-level', dest='loglevel', + default='warning', metavar='LEVEL', help='Set logging to LEVEL ' + 'level. Valid values are "debug", "info", "warning".') + parser.add_option('-p', '--portable', dest='portable', + action='store_true', help='Specify if this should be run as a ' + 'portable app, off a USB flash drive (not implemented).') + parser.add_option('-s', '--style', dest='style', + help='Set the Qt4 style (passed directly to Qt4).') # Set up logging log_path = AppLocation.get_directory(AppLocation.CacheDir) if not os.path.exists(log_path): diff --git a/openlp/core/lib/__init__.py b/openlp/core/lib/__init__.py index b325f0c6c..ade4bc019 100644 --- a/openlp/core/lib/__init__.py +++ b/openlp/core/lib/__init__.py @@ -220,6 +220,7 @@ def image_to_byte(image): ``image`` The image to converted. """ + log.debug(u'image_to_byte') byte_array = QtCore.QByteArray() # use buffer to store pixmap into byteArray buffie = QtCore.QBuffer(byte_array) @@ -249,6 +250,7 @@ def resize_image(image, width, height, background=QtCore.Qt.black): The background colour defaults to black. """ + log.debug(u'resize_image') preview = QtGui.QImage(image) if not preview.isNull(): # Only resize if different size diff --git a/openlp/core/lib/htmlbuilder.py b/openlp/core/lib/htmlbuilder.py index 906ebb987..ef8fb286a 100644 --- a/openlp/core/lib/htmlbuilder.py +++ b/openlp/core/lib/htmlbuilder.py @@ -27,8 +27,6 @@ import logging from PyQt4 import QtWebKit -from openlp.core.lib import image_to_byte - log = logging.getLogger(__name__) HTMLSRC = u""" @@ -274,7 +272,7 @@ body { - + %s @@ -301,10 +299,10 @@ def build_html(item, screen, alert, islive): height = screen[u'size'].height() theme = item.themedata webkitvers = webkit_version() - if item.bg_frame: - image = u'data:image/png;base64,%s' % image_to_byte(item.bg_frame) + if item.bg_image_bytes: + image = u'src="data:image/png;base64,%s"' % item.bg_image_bytes else: - image = u'' + image = u'style="display:none;"' html = HTMLSRC % (build_background_css(item, width, height), width, height, build_alert_css(alert, width), diff --git a/openlp/core/lib/renderer.py b/openlp/core/lib/renderer.py index 0cb92ad39..194172a9e 100644 --- a/openlp/core/lib/renderer.py +++ b/openlp/core/lib/renderer.py @@ -32,7 +32,8 @@ import logging from PyQt4 import QtGui, QtCore, QtWebKit from openlp.core.lib import resize_image, expand_tags, \ - build_lyrics_format_css, build_lyrics_outline_css + build_lyrics_format_css, build_lyrics_outline_css, image_to_byte + log = logging.getLogger(__name__) @@ -54,6 +55,7 @@ class Renderer(object): self.frame = None self.bg_frame = None self.bg_image = None + self.bg_image_bytes = None def set_theme(self, theme): """ @@ -66,15 +68,12 @@ class Renderer(object): self._theme = theme self.bg_frame = None self.bg_image = None + self.bg_image_bytes = None self._bg_image_filename = None self.theme_name = theme.theme_name if theme.background_type == u'image': if theme.background_filename: self._bg_image_filename = unicode(theme.background_filename) - if self.frame: - self.bg_image = resize_image(self._bg_image_filename, - self.frame.width(), - self.frame.height()) def set_text_rectangle(self, rect_main, rect_footer): """ @@ -88,7 +87,23 @@ class Renderer(object): """ log.debug(u'set_text_rectangle %s , %s' % (rect_main, rect_footer)) self._rect = rect_main - self._rect_footer = rect_footer + self._rect_footer = rect_footer + self.page_width = self._rect.width() + self.page_height = self._rect.height() + if self._theme.display_shadow: + self.page_width -= int(self._theme.display_shadow_size) + self.page_height -= int(self._theme.display_shadow_size) + self.web = QtWebKit.QWebView() + self.web.setVisible(False) + self.web.resize(self.page_width, self.page_height) + self.web_frame = self.web.page().mainFrame() + # Adjust width and height to account for shadow. outline done in css + self.page_shell = u'' \ + u'
' % \ + (build_lyrics_format_css(self._theme, self.page_width, + self.page_height), build_lyrics_outline_css(self._theme)) def set_frame_dest(self, frame_width, frame_height): """ @@ -110,15 +125,18 @@ class Renderer(object): self.frame.width(), self.frame.height()) if self._theme.background_type == u'image': self.bg_frame = QtGui.QImage(self.frame.width(), - self.frame.height(), QtGui.QImage.Format_ARGB32_Premultiplied) + self.frame.height(), + QtGui.QImage.Format_ARGB32_Premultiplied) painter = QtGui.QPainter() painter.begin(self.bg_frame) painter.fillRect(self.frame.rect(), QtCore.Qt.black) if self.bg_image: painter.drawImage(0, 0, self.bg_image) painter.end() + self.bg_image_bytes = image_to_byte(self.bg_frame) else: self.bg_frame = None + self.bg_image_bytes = None def format_slide(self, words, line_break): """ @@ -139,29 +157,16 @@ class Renderer(object): lines = verse.split(u'\n') for line in lines: text.append(line) - web = QtWebKit.QWebView() - web.resize(self._rect.width(), self._rect.height()) - web.setVisible(False) - frame = web.page().mainFrame() - # Adjust width and height to account for shadow. outline done in css - width = self._rect.width() - int(self._theme.display_shadow_size) - height = self._rect.height() - int(self._theme.display_shadow_size) - shell = u'' \ - u'
' % \ - (build_lyrics_format_css(self._theme, width, height), - build_lyrics_outline_css(self._theme)) formatted = [] html_text = u'' styled_text = u'' - js_height = 'document.getElementById("main").scrollHeight' for line in text: styled_line = expand_tags(line) + line_end styled_text += styled_line - html = shell + styled_text + u'
' - web.setHtml(html) + html = self.page_shell + styled_text + u'
' + self.web.setHtml(html) # Text too long so go to next page - text_height = int(frame.evaluateJavaScript(js_height).toString()) - if text_height > height: + if self.web_frame.contentsSize().height() > self.page_height: formatted.append(html_text) html_text = u'' styled_text = styled_line diff --git a/openlp/core/lib/rendermanager.py b/openlp/core/lib/rendermanager.py index a6e494b01..e98ab4f01 100644 --- a/openlp/core/lib/rendermanager.py +++ b/openlp/core/lib/rendermanager.py @@ -223,7 +223,6 @@ class RenderManager(object): The words to go on the slides. """ log.debug(u'format slide') - self.build_text_rectangle(self.themedata) return self.renderer.format_slide(words, line_break) def calculate_default(self, screen): diff --git a/openlp/core/lib/serviceitem.py b/openlp/core/lib/serviceitem.py index b0d453af5..e7ec9c2af 100644 --- a/openlp/core/lib/serviceitem.py +++ b/openlp/core/lib/serviceitem.py @@ -97,7 +97,7 @@ class ServiceItem(object): self.themedata = None self.main = None self.footer = None - self.bg_frame = None + self.bg_image_bytes = None def _new_item(self): """ @@ -145,7 +145,7 @@ class ServiceItem(object): """ log.debug(u'Render called') self._display_frames = [] - self.bg_frame = None + self.bg_image_bytes = None line_break = True if self.is_capable(ItemCapabilities.NoLineBreaks): line_break = False @@ -156,7 +156,7 @@ class ServiceItem(object): theme = self.theme self.main, self.footer = \ self.render_manager.set_override_theme(theme, useOverride) - self.bg_frame = self.render_manager.renderer.bg_frame + self.bg_image_bytes = self.render_manager.renderer.bg_image_bytes self.themedata = self.render_manager.renderer._theme for slide in self._raw_frames: before = time.time() diff --git a/openlp/core/ui/maindisplay.py b/openlp/core/ui/maindisplay.py index a2b9dd81a..7e4a31b83 100644 --- a/openlp/core/ui/maindisplay.py +++ b/openlp/core/ui/maindisplay.py @@ -99,6 +99,7 @@ class MainDisplay(DisplayWidget): self.alertTab = None self.hide_mode = None self.setWindowTitle(u'OpenLP Display') + self.setStyleSheet(u'border: 0px; margin: 0px; padding: 0px;') self.setWindowFlags(QtCore.Qt.FramelessWindowHint | QtCore.Qt.WindowStaysOnTopHint) if self.isLive: @@ -116,12 +117,18 @@ class MainDisplay(DisplayWidget): self.screen = self.screens.current self.setVisible(False) self.setGeometry(self.screen[u'size']) - self.scene = QtGui.QGraphicsScene() - self.setScene(self.scene) - self.webView = QtWebKit.QGraphicsWebView() - self.scene.addItem(self.webView) - self.webView.resize(self.screen[u'size'].width(), - self.screen[u'size'].height()) + try: + self.webView = QtWebKit.QGraphicsWebView() + self.scene = QtGui.QGraphicsScene(self) + self.setScene(self.scene) + self.scene.addItem(self.webView) + self.webView.setGeometry(QtCore.QRectF(0, 0, + self.screen[u'size'].width(), self.screen[u'size'].height())) + except AttributeError: + # QGraphicsWebView a recent addition, so fall back to QWebView + self.webView = QtWebKit.QWebView(self) + self.webView.setGeometry(0, 0, + self.screen[u'size'].width(), self.screen[u'size'].height()) self.page = self.webView.page() self.frame = self.page.mainFrame() QtCore.QObject.connect(self.webView, @@ -306,6 +313,7 @@ class MainDisplay(DisplayWidget): # We must have a service item to preview if not hasattr(self, u'serviceItem'): return + Receiver.send_message(u'openlp_process_events') if self.isLive: # Wait for the fade to finish before geting the preview. # Important otherwise preview will have incorrect text if at all ! @@ -318,6 +326,8 @@ class MainDisplay(DisplayWidget): # Important otherwise first preview will miss the background ! while not self.loaded: Receiver.send_message(u'openlp_process_events') + if self.isLive: + self.setVisible(True) preview = QtGui.QImage(self.screen[u'size'].width(), self.screen[u'size'].height(), QtGui.QImage.Format_ARGB32_Premultiplied) @@ -326,8 +336,6 @@ class MainDisplay(DisplayWidget): self.frame.render(painter) painter.end() # Make display show up if in single screen mode - if self.isLive: - self.setVisible(True) return preview def buildHtml(self, serviceItem): @@ -341,7 +349,9 @@ class MainDisplay(DisplayWidget): self.serviceItem = serviceItem html = build_html(self.serviceItem, self.screen, self.parent.alertTab, self.isLive) + log.debug(u'buildHtml - pre setHtml') self.webView.setHtml(html) + log.debug(u'buildHtml - post setHtml') if serviceItem.foot_text and serviceItem.foot_text: self.footer(serviceItem.foot_text) # if was hidden keep it hidden diff --git a/openlp/core/ui/mainwindow.py b/openlp/core/ui/mainwindow.py index 60a6ae2b7..0d158d042 100644 --- a/openlp/core/ui/mainwindow.py +++ b/openlp/core/ui/mainwindow.py @@ -575,7 +575,7 @@ class MainWindow(QtGui.QMainWindow, Ui_MainWindow): QtCore.SIGNAL(u'toggled(bool)'), self.setAutoLanguage) self.LanguageGroup.triggered.connect(LanguageManager.set_language) QtCore.QObject.connect(self.ModeDefaultItem, - QtCore.SIGNAL(u'triggered()'), self.setViewMode) + QtCore.SIGNAL(u'triggered()'), self.onModeDefaultItemClicked) QtCore.QObject.connect(self.ModeSetupItem, QtCore.SIGNAL(u'triggered()'), self.onModeSetupItemClicked) QtCore.QObject.connect(self.ModeLiveItem, @@ -670,6 +670,16 @@ class MainWindow(QtGui.QMainWindow, Ui_MainWindow): self.generalSettingsSection + u'/auto open', QtCore.QVariant(False)).toBool(): self.ServiceManagerContents.onLoadService(True) + view_mode = QtCore.QSettings().value(u'%s/view mode' % \ + self.generalSettingsSection, u'default') + if view_mode == u'default': + self.ModeDefaultItem.setChecked(True) + elif view_mode == u'setup': + self.setViewMode(True, True, False, True, False) + self.ModeSetupItem.setChecked(True) + elif view_mode == u'live': + self.setViewMode(False, True, False, False, True) + self.ModeLiveItem.setChecked(True) def blankCheck(self): """ @@ -677,8 +687,8 @@ class MainWindow(QtGui.QMainWindow, Ui_MainWindow): Triggered by delay thread. """ settings = QtCore.QSettings() - settings.beginGroup(self.generalSettingsSection) - if settings.value(u'screen blank', QtCore.QVariant(False)).toBool(): + if settings.value(u'%s/screen blank' % self.generalSettingsSection, + QtCore.QVariant(False)).toBool(): self.LiveController.mainDisplaySetBackground() if settings.value(u'blank warning', QtCore.QVariant(False)).toBool(): @@ -687,7 +697,6 @@ class MainWindow(QtGui.QMainWindow, Ui_MainWindow): 'OpenLP Main Display Blanked'), translate('OpenLP.MainWindow', 'The Main Display has been blanked out')) - settings.endGroup() def onHelpWebSiteClicked(self): """ @@ -716,16 +725,31 @@ class MainWindow(QtGui.QMainWindow, Ui_MainWindow): """ self.settingsForm.exec_() + def onModeDefaultItemClicked(self): + """ + Put OpenLP into "Default" view mode. + """ + settings = QtCore.QSettings() + settings.setValue(u'%s/view mode' % self.generalSettingsSection, + u'default') + self.setViewMode(True, True, True, True, True) + def onModeSetupItemClicked(self): """ Put OpenLP into "Setup" view mode. """ + settings = QtCore.QSettings() + settings.setValue(u'%s/view mode' % self.generalSettingsSection, + u'setup') self.setViewMode(True, True, False, True, False) def onModeLiveItemClicked(self): """ Put OpenLP into "Live" view mode. """ + settings = QtCore.QSettings() + settings.setValue(u'%s/view mode' % self.generalSettingsSection, + u'live') self.setViewMode(False, True, False, False, True) def setViewMode(self, media=True, service=True, theme=True, preview=True, diff --git a/openlp/core/ui/servicemanager.py b/openlp/core/ui/servicemanager.py index b2058a2e1..8db14956d 100644 --- a/openlp/core/ui/servicemanager.py +++ b/openlp/core/ui/servicemanager.py @@ -884,7 +884,8 @@ class ServiceManager(QtGui.QWidget): QtGui.QMessageBox.critical(self, translate('OpenLP.ServiceManager', 'Missing Display Handler'), translate('OpenLP.ServiceManager', 'Your item cannot be ' - 'displayed as there is no handler to display it')) + 'displayed as the plugin required to display it is missing ' + 'or inactive')) def remoteEdit(self): """ diff --git a/openlp/core/ui/slidecontroller.py b/openlp/core/ui/slidecontroller.py index 9f9b4d433..0a3e0c91b 100644 --- a/openlp/core/ui/slidecontroller.py +++ b/openlp/core/ui/slidecontroller.py @@ -209,7 +209,8 @@ class SlideController(QtGui.QWidget): self.Toolbar.addToolbarSeparator(u'Close Separator') self.Toolbar.addToolbarButton( u'Edit Song', u':/general/general_edit.png', - translate('OpenLP.SlideController', 'Edit and re-preview song'), + translate('OpenLP.SlideController', + 'Edit and reload song preview'), self.onEditSong) if isLive: self.Toolbar.addToolbarSeparator(u'Loop Separator') @@ -636,9 +637,9 @@ class SlideController(QtGui.QWidget): """ if not self.serviceItem: return - Receiver.send_message(u'%s_first' % self.serviceItem.name.lower(), - [self.serviceItem, self.isLive]) if self.serviceItem.is_command(): + Receiver.send_message(u'%s_first' % self.serviceItem.name.lower(), + [self.serviceItem, self.isLive]) self.updatePreview() else: self.PreviewListWidget.selectRow(0) @@ -651,9 +652,9 @@ class SlideController(QtGui.QWidget): index = int(message[0]) if not self.serviceItem: return - Receiver.send_message(u'%s_slide' % self.serviceItem.name.lower(), - [self.serviceItem, self.isLive, index]) if self.serviceItem.is_command(): + Receiver.send_message(u'%s_slide' % self.serviceItem.name.lower(), + [self.serviceItem, self.isLive, index]) self.updatePreview() else: self.PreviewListWidget.selectRow(index) @@ -768,9 +769,9 @@ class SlideController(QtGui.QWidget): row = self.PreviewListWidget.currentRow() self.selectedRow = 0 if row > -1 and row < self.PreviewListWidget.rowCount(): - Receiver.send_message(u'%s_slide' % self.serviceItem.name.lower(), - [self.serviceItem, self.isLive, row]) if self.serviceItem.is_command() and self.isLive: + Receiver.send_message(u'%s_slide' % self.serviceItem.name.lower(), + [self.serviceItem, self.isLive, row]) self.updatePreview() else: frame, raw_html = self.serviceItem.get_rendered_frame(row) diff --git a/openlp/core/ui/thememanager.py b/openlp/core/ui/thememanager.py index 3ad6b5c8d..d8324f977 100644 --- a/openlp/core/ui/thememanager.py +++ b/openlp/core/ui/thememanager.py @@ -242,14 +242,14 @@ class ThemeManager(QtGui.QWidget): QtGui.QMessageBox.critical(self, translate('OpenLP.ThemeManager', 'Error'), unicode(translate('OpenLP.ThemeManager', - 'Theme %s is use in %s plugin.')) % \ + 'Theme %s is used in the %s plugin.')) % \ (theme, plugin.name)) return if unicode(self.serviceComboBox.currentText()) == theme: QtGui.QMessageBox.critical(self, translate('OpenLP.ThemeManager', 'Error'), unicode(translate('OpenLP.ThemeManager', - 'Theme %s is use by the service manager.')) % theme) + 'Theme %s is used by the service manager.')) % theme) return row = self.themeListWidget.row(item) self.themeListWidget.takeItem(row) diff --git a/openlp/plugins/bibles/forms/importwizardform.py b/openlp/plugins/bibles/forms/importwizardform.py index 67f3756dc..84f0f41ee 100644 --- a/openlp/plugins/bibles/forms/importwizardform.py +++ b/openlp/plugins/bibles/forms/importwizardform.py @@ -182,7 +182,7 @@ class ImportWizardForm(QtGui.QWizard, Ui_BibleImportWizard): translate('BiblesPlugin.ImportWizardForm', 'Empty Copyright'), translate('BiblesPlugin.ImportWizardForm', - 'You need to set a copyright for your Bible! ' + 'You need to set a copyright for your Bible. ' 'Bibles in the Public Domain need to be marked as ' 'such.')) self.CopyrightEdit.setFocus() @@ -192,7 +192,7 @@ class ImportWizardForm(QtGui.QWizard, Ui_BibleImportWizard): translate('BiblesPlugin.ImportWizardForm', 'Bible Exists'), translate('BiblesPlugin.ImportWizardForm', - 'This Bible already exists! Please import ' + 'This Bible already exists. Please import ' 'a different Bible or first delete the existing one.')) self.VersionNameEdit.setFocus() return False diff --git a/openlp/plugins/bibles/lib/manager.py b/openlp/plugins/bibles/lib/manager.py index 4f35556f1..fd2c2adff 100644 --- a/openlp/plugins/bibles/lib/manager.py +++ b/openlp/plugins/bibles/lib/manager.py @@ -246,7 +246,7 @@ class BibleManager(object): translate('BiblesPlugin.BibleManager', 'Scripture Reference Error'), translate('BiblesPlugin.BibleManager', 'Your scripture ' - 'reference is either not supported by OpenLP or invalid. ' + 'reference is either not supported by OpenLP or is invalid. ' 'Please make sure your reference conforms to one of the ' 'following patterns:\n\n' 'Book Chapter\n' diff --git a/openlp/plugins/presentations/lib/impresscontroller.py b/openlp/plugins/presentations/lib/impresscontroller.py index 9ada43a5a..d054c3e9c 100644 --- a/openlp/plugins/presentations/lib/impresscontroller.py +++ b/openlp/plugins/presentations/lib/impresscontroller.py @@ -74,6 +74,7 @@ class ImpressController(PresentationController): self.process = None self.desktop = None self.manager = None + self.uno_connection_type = u'pipe' #u'socket' def check_available(self): """ @@ -98,7 +99,14 @@ class ImpressController(PresentationController): self.manager._FlagAsMethod(u'Bridge_GetValueObject') else: # -headless - cmd = u'openoffice.org -nologo -norestore -minimized -invisible -nofirststartwizard -accept="socket,host=localhost,port=2002;urp;"' + if self.uno_connection_type == u'pipe': + cmd = u'openoffice.org -nologo -norestore -minimized ' \ + + u'-invisible -nofirststartwizard ' \ + + u'-accept=pipe,name=openlp_pipe;urp;' + else: + cmd = u'openoffice.org -nologo -norestore -minimized ' \ + + u'-invisible -nofirststartwizard ' \ + + u'-accept=socket,host=localhost,port=2002;urp;' self.process = QtCore.QProcess() self.process.startDetached(cmd) self.process.waitForStarted() @@ -120,8 +128,14 @@ class ImpressController(PresentationController): while ctx is None and loop < 3: try: log.debug(u'get UNO Desktop Openoffice - resolve') - ctx = resolver.resolve(u'uno:socket,host=localhost,port=2002;' - u'urp;StarOffice.ComponentContext') + if self.uno_connection_type == u'pipe': + ctx = resolver.resolve(u'uno:' \ + + u'pipe,name=openlp_pipe;' \ + + u'urp;StarOffice.ComponentContext') + else: + ctx = resolver.resolve(u'uno:' \ + + u'socket,host=localhost,port=2002;' \ + + u'urp;StarOffice.ComponentContext') except: log.exception(u'Unable to find running instance ') self.start_process() diff --git a/openlp/plugins/songs/forms/authorsform.py b/openlp/plugins/songs/forms/authorsform.py index c7d1b0396..1dacd82cc 100644 --- a/openlp/plugins/songs/forms/authorsform.py +++ b/openlp/plugins/songs/forms/authorsform.py @@ -97,8 +97,7 @@ class AuthorsForm(QtGui.QDialog, Ui_AuthorsDialog): self, translate('SongsPlugin.AuthorsForm', 'Error'), translate('SongsPlugin.AuthorsForm', 'You have not set a display name for the ' - 'author, would you like me to combine the first and ' - 'last names for you?'), + 'author, combine the first and last names?'), QtGui.QMessageBox.StandardButtons( QtGui.QMessageBox.Yes | QtGui.QMessageBox.No) ) == QtGui.QMessageBox.Yes: diff --git a/openlp/plugins/songs/forms/topicsform.py b/openlp/plugins/songs/forms/topicsform.py index a618dd9db..c45228527 100644 --- a/openlp/plugins/songs/forms/topicsform.py +++ b/openlp/plugins/songs/forms/topicsform.py @@ -51,7 +51,7 @@ class TopicsForm(QtGui.QDialog, Ui_TopicsDialog): QtGui.QMessageBox.critical( self, translate('SongsPlugin.TopicsForm', 'Error'), translate('SongsPlugin.TopicsForm', - 'You need to type in a topic name!')) + 'You need to type in a topic name.')) self.NameEdit.setFocus() return False else: diff --git a/openlp/plugins/songs/lib/oooimport.py b/openlp/plugins/songs/lib/oooimport.py index e8c723c0e..26a0abfcc 100644 --- a/openlp/plugins/songs/lib/oooimport.py +++ b/openlp/plugins/songs/lib/oooimport.py @@ -59,6 +59,7 @@ class OooImport(SongImport): self.document = None self.process_started = False self.filenames = kwargs[u'filenames'] + self.uno_connection_type = u'pipe' #u'socket' QtCore.QObject.connect(Receiver.get_receiver(), QtCore.SIGNAL(u'song_stop_import'), self.stop_import) @@ -106,8 +107,14 @@ class OooImport(SongImport): loop = 0 while ctx is None and loop < 5: try: - ctx = resolver.resolve(u'uno:socket,host=localhost,' \ - + 'port=2002;urp;StarOffice.ComponentContext') + if self.uno_connection_type == u'pipe': + ctx = resolver.resolve(u'uno:' \ + + u'pipe,name=openlp_pipe;' \ + + u'urp;StarOffice.ComponentContext') + else: + ctx = resolver.resolve(u'uno:' \ + + u'socket,host=localhost,port=2002;' \ + + u'urp;StarOffice.ComponentContext') except: pass self.start_ooo_process() @@ -123,9 +130,14 @@ class OooImport(SongImport): self.manager._FlagAsMethod(u'Bridge_GetStruct') self.manager._FlagAsMethod(u'Bridge_GetValueObject') else: - cmd = u'openoffice.org -nologo -norestore -minimized ' \ - + u'-invisible -nofirststartwizard ' \ - + '-accept="socket,host=localhost,port=2002;urp;"' + if self.uno_connection_type == u'pipe': + cmd = u'openoffice.org -nologo -norestore -minimized ' \ + + u'-invisible -nofirststartwizard ' \ + + u'-accept=pipe,name=openlp_pipe;urp;' + else: + cmd = u'openoffice.org -nologo -norestore -minimized ' \ + + u'-invisible -nofirststartwizard ' \ + + u'-accept=socket,host=localhost,port=2002;urp;' process = QtCore.QProcess() process.startDetached(cmd) process.waitForStarted() diff --git a/resources/i18n/af.ts b/resources/i18n/af.ts index cde35ce80..626ad61d3 100644 --- a/resources/i18n/af.ts +++ b/resources/i18n/af.ts @@ -5,17 +5,17 @@ &Alert - W&aarskuwing + W&aarskuwing Show an alert message. - + Vertoon 'n waarskuwing boodskap. <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of nursery alerts on the display screen - + <strong>Waarskuwing Mini-program</strong><br/>Die waarskuwing mini-program beheer die vertoning van moederskamer inligting op die vertoon skerm @@ -23,57 +23,57 @@ Alert Message - Waarskuwing Boodskap + Waarskuwing Boodskap Alert &text: - + Waarskuwing &teks: &Parameter(s): - + &Parameter(s): &New - &Nuwe + &Nuwe &Save - &Stoor + &Stoor &Delete - + Wis uit Displ&ay - + V&ertoon Display && Cl&ose - + Vert&oon && Maak toe &Close - + Maak toe New Alert - + Nuwe Waarskuwing You haven't specified any text for your alert. Please type in some text before clicking New. - + Daar is geen teks vir die waarskuwing gespesifiseer nie. Tik asseblief teks in voordat 'n nuwe een bygevoeg word. @@ -81,7 +81,7 @@ Alert message created and displayed. - + Waarskuwing boodskap geskep en vertoon. @@ -89,77 +89,77 @@ Alerts - Waarskuwings + Waarskuwings Font - Skrif + Skrif Font name: - + Skrif naam: Font color: - + Skrif kleur: Background color: - + Agtergrond kleur: Font size: - + Skrif grootte: pt - pt + pt Alert timeout: - Waarskuwing tydgrens: + Waarskuwing verstreke-tyd: s - s + s Location: - Ligging: + Ligging: Preview - Voorskou + Voorskou OpenLP 2.0 - OpenLP 2.0 + OpenLP 2.0 Top - + Bo Middle - Middel + Middel Bottom - Onder + Onder @@ -167,12 +167,12 @@ &Bible - &Bybel + &Bybel <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display bible verses from different sources during the service. - + <strong>Bybel Mini-program</strong><br/>Die Bybel mini-program verskaf die taak om Bybel verse vanaf verskillende bronne tydens die diens te vertoon. @@ -180,12 +180,12 @@ Book not found - + Boek nie gevind nie The book you requested could not be found in this bible. Please check your spelling and that this is a complete bible not just one testament. - + Die aangevraagde boek kon nie in hierdie Bybel gevind word nie. Gaan asseblief spelling na en sien dat hierdie 'n volledige Bybel is instede van een testament. @@ -193,11 +193,11 @@ Scripture Reference Error - + Skrif Verwysing Fout - Your scripture reference is either not supported by OpenLP or invalid. Please make sure your reference conforms to one of the following patterns: + Your scripture reference is either not supported by OpenLP or is invalid. Please make sure your reference conforms to one of the following patterns: Book Chapter Book Chapter-Chapter @@ -214,78 +214,79 @@ Book Chapter:Verse-Chapter:Verse Bibles - Bybels + Bybels Verse Display - Vers Vertoning + Vers Vertoning Only show new chapter numbers - Vertoon net nuwe hoofstuk nommers + Vertoon net nuwe hoofstuk nommers Layout style: - + Uitleg styl: Display style: - + Vertoon styl: Bible theme: - + Bybel tema: Verse Per Slide - + Verse Per Skyfie Verse Per Line - + Verse Per Lyn Continuous - + Aaneen-lopend No Brackets - + Geen Hakkies ( And ) - + ( En ) { And } - + { En } [ And ] - + [ En ] Note: Changes do not affect verses already in the service. - + Nota: +Veranderinge affekteer nie verse wat reeds in die diens is nie. Display dual Bible verses - + Vertoon dubbel Bybel verse @@ -293,375 +294,375 @@ Changes do not affect verses already in the service. Bible Import Wizard - Bybel Invoer Gids + Bybel Invoer Gids Welcome to the Bible Import Wizard - Welkom by die Bybel Invoer Gids + Welkom by die Bybel Invoer Gids This wizard will help you to import Bibles from a variety of formats. Click the next button below to start the process by selecting a format to import from. - Hierdie gids sal u help om Bybels van 'n verskeidenheid vormate in te voer. Kliek die volgende knoppie hieronder om die proses te begin en 'n formaat te kies om in te voer. + Hierdie gids sal u help om Bybels van 'n verskeidenheid formate in te voer. Kliek die volgende knoppie hieronder om die proses te begin deur 'n formaat te kies om in te voer. Select Import Source - Selekteer Invoer Bron + Selekteer Invoer Bron Select the import format, and where to import from. - Selekteer die invoer formaat en van waar af om in te voer. + Selekteer die invoer formaat en van waar af om in te voer. Format: - Formaat: + Formaat: OSIS - OSIS + OSIS CSV - KGW + KGW (CSV) OpenSong - OpenSong + OpenSong Web Download - Web Aflaai + Web Aflaai File location: - + Lêer ligging: Books location: - + Boeke ligging: Verse location: - + Vers ligging: Bible filename: - + Bybel lêernaam: Location: - Ligging: + Ligging: Crosswalk - Cosswalk + Crosswalk BibleGateway - BibleGateway + BibleGateway Bible: - Bybel: + Bybel: Download Options - Aflaai Opsies + Aflaai Opsies Server: - Bediener: + Bediener: Username: - Gebruikersnaam: + Gebruikersnaam: Password: - Wagwoord: + Wagwoord: Proxy Server (Optional) - Tussenganger Bediener (Opsioneel) + Tussenganger Bediener (Opsioneel) License Details - Lisensie Besonderhede + Lisensie Besonderhede Set up the Bible's license details. - Stel hierdie Bybel se lisensie besonderhede op. + Stel hierdie Bybel se lisensie besonderhede op. Version name: - + Weergawe naam: Copyright: - Kopiereg: + Kopiereg: Permission: - Toestemming: + Toestemming: Importing - Invoer + Invoer Please wait while your Bible is imported. - Wag asseblief terwyl u Bybel ingevoer word. + Wag asseblief terwyl u Bybel ingevoer word. Ready. - Gereed. + Gereed. Invalid Bible Location - Ongeldige Bybel Ligging + Ongeldige Bybel Ligging You need to specify a file to import your Bible from. - + 'n Lêer van waar die Byber ingevoer word moet gespesifiseer word. Invalid Books File - Ongeldige Boeke Lêer + Ongeldige Boeke Lêer You need to specify a file with books of the Bible to use in the import. - + 'n Lêer met boeke van die Bybel moet gespesifiseer word vir gebruik tydens die invoer. Invalid Verse File - Ongeldige Vers Lêer + Ongeldige Vers Lêer You need to specify a file of Bible verses to import. - + 'n Lêer met Bybel verse moet gespesifiseer word om in te voer. Invalid OpenSong Bible - Ongeldige OpenSong Bybel + Ongeldige OpenSong Bybel You need to specify an OpenSong Bible file to import. - + 'n OpenSong Bybel moet gespesifiseer word om in te voer. Empty Version Name - Weergawe Naam is Leeg + Weergawe Naam is leeg You need to specify a version name for your Bible. - + 'n Weergawe naam moet vir die Bybel gespesifiseer word. Empty Copyright - Leë Kopiereg - - - - You need to set a copyright for your Bible! Bibles in the Public Domain need to be marked as such. - Stel Kopiereg op vir die spesifieke Bybel! Bybels in die Publieke Omgewing moet so gemerk word. + Kopiereg is leeg. Bible Exists - Bybel Bestaan - - - - This Bible already exists! Please import a different Bible or first delete the existing one. - Dié Bybel bestaan reeds! Voer asseblief 'n ander Bybel in of wis die eerste een uit. + Bybel Bestaan reeds Open OSIS File - + Maak OSIS Lêer oop Open Books CSV File - + Maak Boeke CSV (KGW) Lêer oop Open Verses CSV File - + Maak Verse CSV Lêer oop Open OpenSong Bible - Maak OpenSong Bybel Oop + Maak OpenSong Bybel Oop Starting import... - Invoer begin... + Invoer begin... Finished import. - Invoer voltooi. + Invoer voltooi. Your Bible import failed. - U Bybel invoer het misluk. + Die Bybel invoer het misluk. + + + + You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. + + + + + This Bible already exists. Please import a different Bible or first delete the existing one. + BiblesPlugin.MediaItem - + Bible - Bybel + Bybel - + Quick - Vinnig + Vinnig - + Advanced - Gevorderd + Gevorderd Version: - Weergawe: + Weergawe: Dual: - Dubbel: + Dubbel: Search type: - + Tipe soek: Find: - Vind: + Vind: Search - Soek + Soek Results: - &Resultate: + Resultate: Book: - Boek: + Boek: Chapter: - Hoofstuk: + Hoofstuk: Verse: - Vers: + Vers: From: - Vanaf: + Vanaf: To: - Aan: + Tot: Verse Search - Soek Vers + Soek Vers Text Search - Teks Soektog + Teks Soektog Clear - + Maak Skoon Keep - Behou + Behou No Book Found - Geeb Boek Gevind nie + Geen Boek Gevind nie No matching book could be found in this Bible. - Geen bypassende boek kon in dié Bybel gevind word nie. + Geen bypassende boek kon in dié Bybel gevind word nie. - + etc - + ens - + Bible not fully loaded. - + Bybel nie ten volle gelaai nie. @@ -669,7 +670,7 @@ Changes do not affect verses already in the service. Importing - Invoer + Invoer @@ -677,7 +678,7 @@ Changes do not affect verses already in the service. <strong>Custom Plugin</strong><br />The custom plugin provides the ability to set up custom text slides that can be displayed on the screen the same way songs are. This plugin provides greater freedom over the songs plugin. - + <strong>Aanpas Mini-program</strong><br/>Die aanpas mini-program verskaf die vermoë om aangepasde teks skyfies op te stel wat in dieselfde manier gebruik word as die liedere mini-program. Dié mini-program verskaf grooter vryheid as die liedere mini-program. @@ -685,145 +686,145 @@ Changes do not affect verses already in the service. Custom - + Aanpas Custom Display - Aangepasde Vertoning + Aangepasde Vertoning Display footer - + Vertoon voetspasie CustomPlugin.EditCustomForm - + Edit Custom Slides - Redigeer Aangepaste Skyfies + Redigeer Aangepaste Skyfies - + Move slide up one position. - + Skuif skyfie een posisie op. - + Move slide down one position. - + Skuif skyfie een posisie af. - + &Title: - + &Titel: - + Add New - Voeg Nuwe By + Voeg Nuwe By - + Add a new slide at bottom. - + Voeg nuwe skyfie by aan die onderkant. - + Edit - Redigeer + Redigeer - + Edit the selected slide. - + Redigeer die geselekteerde skyfie. - + Edit All - Redigeer Alles + Redigeer Alles - + Edit all the slides at once. - + Redigeer al die skyfies tegelyk. - + Save - Stoor + Stoor - + Save the slide currently being edited. - + Stoor die skyfie wat tans geredigeer word. - + Delete - + Wis uit - + Delete the selected slide. - + Wis die geselekteerde skyfie uit. - + Clear - + Maak skoon - + Clear edit area - Maak skoon die redigeer area + Maak die redigeer area skoon - + Split Slide - + Verdeel Skyfie - + Split a slide into two by inserting a slide splitter. - + Verdeel 'n skyfie deur 'n skyfie-verdeler te gebruik. - + The&me: - + Te&ma: - + &Credits: - + Krediete: Save && Preview - Stoor && Voorskou + Stoor && Voorskou Error - Fout + Fout You need to type in a title. - + 'n Titel word benodig. You need to add at least one slide - + Ten minste een skyfie moet bygevoeg word You have one or more unsaved slides, please either save your slide(s) or clear your changes. - + Daar is een of meer ongestoorde skyfies, stoor asseblief die skyfie(s) of maak die veranderinge skoon. @@ -831,17 +832,17 @@ Changes do not affect verses already in the service. Custom - + Aanpas You haven't selected an item to edit. - + Daar is nie 'n item geselekteer om te redigeer nie You haven't selected an item to delete. - + Daar is nie 'n item geselekteer om uit te wis nie. @@ -849,7 +850,7 @@ Changes do not affect verses already in the service. <strong>Image Plugin</strong><br />The image plugin provides displaying of images.<br />One of the distinguishing features of this plugin is the ability to group a number of images together in the service manager, making the displaying of multiple images easier. This plugin can also make use of OpenLP's "timed looping" feature to create a slide show that runs automatically. In addition to this, images from the plugin can be used to override the current theme's background, which renders text-based items like songs with the selected image as a background instead of the background provided by the theme. - + <strong>Beeld Mini-program</strong><br/>Die beeld mini-program verskaf vertoning van beelde.<br/>Een van die onderskeidende kenmerke van hierdie mini-program is die vermoë om beelde te groepeer in die diensbestuurder wat dit maklik maak om verskeie beelde te vertoon. Die mini-program kan ook van OpenLP se "tydgebonde herhaling"-funksie gebruik maak om 'n automatiese skyfe-vertoning te verkry. Verder kan beelde van hierdie mini-program gebruik word om die huidige tema se agtergrond te vervang hoewel 'n tema sy eie agtergrond het. @@ -857,52 +858,52 @@ Changes do not affect verses already in the service. Image - Beeld + Beeld Select Image(s) - Selekteer beeld(e) + Selekteer beeld(e) All Files - + Alle Lêers Replace Live Background - + Vervang Regstreekse Agtergrond Replace Background - + Vervang Agtergrond Reset Live Background - + Herstel Regstreekse Agtergrond You must select an image to delete. - + 'n Beeld om uit te wis moet geselekteer word. Image(s) - Beeld(e) + Beeld(e) You must select an image to replace the background with. - + 'n Beeld wat die agtergrond vervang moet gekies word. You must select a media file to replace the background with. - + 'n Media lêer wat die agtergrond vervang moet gekies word. @@ -910,7 +911,7 @@ Changes do not affect verses already in the service. <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. - + <strong>Media Mini-program</strong><br/>Die media mini-program verskaf speel funksies van audio en video. @@ -918,35 +919,35 @@ Changes do not affect verses already in the service. Media - Media + Media Select Media - Selekteer Media + Selekteer Media Replace Live Background - + Vervang Regstreekse Agtergrond Replace Background - + Vervang Agtergrond You must select a media file to delete. - + 'n Media lêer om uit te wis moet geselekteer word. OpenLP - + Image Files - + Beeld Lêers @@ -954,7 +955,7 @@ Changes do not affect verses already in the service. About OpenLP - Aangaande OpenLP + Aangaande OpenLP @@ -965,12 +966,18 @@ OpenLP is free church presentation software, or lyrics projection software, used Find out more about OpenLP: http://openlp.org/ OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider contributing by using the button below. - + OpenLP <version><revision> - Open Source Lyrics Projection + +OpenLP is gratis kerk aanbieding sagteware of lirieke projeksie sagteware wat gebruik word vir die vertoning van liedere, Bybel verse, video's, beelde tot ook aanbiedings (as OpenOffice.org, PowerPoint of PowerPoint Viewer geïnstalleer is) vir kerklike aanbidding deur middel van 'n rekenaar en 'n data projektor. + +Vind meer uit oor OpenLP: http://openlp.org/ + +OpenLP is geskryf en word onderhou deur vrywilligers. As u graag wil sien dat meer Christelike sagteware geskryf word, oorweeg dit asseblief om by te dra deur die knoppie hieronder te gebruik. About - Aangaande + Aangaande @@ -1012,12 +1019,49 @@ Built With PyQt4: http://www.riverbankcomputing.co.uk/software/pyqt/intro Oxygen Icons: http://oxygen-icons.org/ - + Projek Leier +Raoul "superfly" Snyman + +Ontwikkelaars +Tim "TRB143" Bentley +Jonathan "gushie" Corwin +Michael "cocooncrash" Gorven +Scott "sguerrieri" Guerrieri +Raoul "superfly" Snyman +Martin "mijiti" Thompson +Jon "Meths" Tibble + +Bydraers +Meinert "m2j" Jordan +Andreas "googol" Preikschat +Christian "crichter" Richter +Philip "Phill" Ridout +Maikel Stuivenberg +Carsten "catini" Tingaard +Frode "frodus" Woldsund + +Toetsers +Philip "Phill" Ridout +Wesley "wrst" Stout (lead) + +Verpakkers +Thomas "tabthorpe" Abthorpe (FreeBSD) +Tim "TRB143" Bentley (Fedora) +Michael "cocooncrash" Gorven (Ubuntu) +Matthias "matthub" Hub (Mac OS X) +Raoul "superfly" Snyman (Windows, Ubuntu) + +Gebou Met +Python: http://www.python.org/ +Qt4: http://qt.nokia.com/ +PyQt4: http://www.riverbankcomputing.co.uk/software/pyqt/intro +Oxygen Ikone: http://oxygen-icons.org/ + Credits - Krediete + Krediete @@ -1157,22 +1201,22 @@ This General Public License does not permit incorporating your program into prop License - Lisensie + Lisensie Contribute - Dra By + Dra By Close - Maak toe + Maak toe build %s - + bou %s @@ -1180,27 +1224,27 @@ This General Public License does not permit incorporating your program into prop Advanced - Gevorderd + Gevorderd UI Settings - + GK (UI) Verstellings Number of recent files to display: - + Hoeveelheid onlangse lêers om te vertoon: Remember active media manager tab on startup - + Onthou die laaste media bestuurder oortjie wanneer die program begin Double-click to send items straight to live (requires restart) - + Dubbel-kliek items direk na regstreekse vertoning te stuur (benodig herlaai) @@ -1208,296 +1252,309 @@ This General Public License does not permit incorporating your program into prop Theme Maintenance - Tema Onderhoud + Tema Onderhoud Theme &name: - + Tema &naam Type: - Tipe: + Tipe: Solid Color - Soliede Kleur + Soliede Kleur Gradient - Gradiënt + Gradiënt Image - Beeld + Beeld Image: - Beeld: + Beeld: Gradient: - + Gradiënt: Horizontal - Horisontaal + Horisontaal Vertical - Vertikaal + Vertikaal Circular - Sirkelvormig + Sirkelvormig &Background - + Agtergrond Main Font - Hoof Skrif + Hoof Skrif Font: - Skrif: + Skrif: Color: - + Kleur: Size: - Grootte: + Grootte: pt - pt + pt Adjust line spacing: - + Verstel lyn spasiëring: Normal - Normaal + Normaal Bold - Vetgedruk + Vetgedruk Italics - Kursief + Kursief Bold/Italics - Bold/Italics + Vetgedruk/Kursief Style: - + Styl: Display Location - Vertoon Ligging + Vertoon Ligging Use default location - + Gebruik verstek ligging X position: - + X posisie: Y position: - + Y posisie: Width: - Wydte: + Wydte: Height: - Hoogte: + Hoogte: px - px + px &Main Font - + Hoof Skrif Footer Font - Voetnota Skriftipe + Voetnota Skriftipe &Footer Font - + Voetnota Skri&ftipe Outline - Buitelyn + Buitelyn Outline size: - + Buitelyn grootte: Outline color: - + Buitelyn kleur: Show outline: - + Vertoon buitelyn: Shadow - Skaduwee + Skaduwee Shadow size: - + Skaduwee grootte: Shadow color: - + Skaduwee kleur: Show shadow: - + Vertoon skaduwee: Alignment - Belyning + Belyning Horizontal align: - + Horisontale belyning: Left - Links + Links Right - Regs + Regs Center - Middel + Middel Vertical align: - + Vertikale belyning: Top - + Bo Middle - Middel + Middel Bottom - Onder + Onder Slide Transition - Skyfie Verandering + Skyfie Verandering Transition active - + Verandering aktief &Other Options - + Ander &Opsies Preview - Voorskou + Voorskou All Files - + Alle Lêers Select Image - + Selekteer beeld First color: - + Eerste kleur: Second color: - + Tweede kleur: Slide height is %s rows. + Skyfie hoogte is %s rye. + + + + OpenLP.ExceptionDialog + + + Oops! OpenLP hit a problem, and couldn't recover. The text in the box below contains information that might be helpful to the OpenLP developers, so please e-mail it to bugs@openlp.org, along with a detailed description of what you were doing when the problem occurred. + Oeps! OpenLP het 'n probleem ondervind en kon nie daarvanaf herstel nie. Die teks in die boks hieronder bevat inligting wat van hulp kan wees aan die OpenLP ontwikkelaars, so stuur dit asseblief per e-pos na bugs@openlp.org saam met 'n gedetaileerde beskrywing van wat gedoen was toe die probleem plaasgevind het. + + + + Error Occurred @@ -1506,140 +1563,140 @@ This General Public License does not permit incorporating your program into prop General - Algemeen + Algemeen Monitors - Monitors + Monitors Select monitor for output display: - Selekteer monitor vir uitgaande vertoning: + Selekteer monitor vir uitgaande vertoning: Display if a single screen - + Vertoon as dit 'n enkel skerm is Application Startup - Program Aanskakel + Applikasie Aanskakel Show blank screen warning - Vertoon leë skerm waarskuwing + Vertoon leë skerm waarskuwing Automatically open the last service - Maak vanself die laaste diens oop + Maak vanself die laaste diens oop Show the splash screen - Wys die spatsel skerm + Wys die spatsel skerm Application Settings - Program Verstellings + Program Verstellings Prompt to save before starting a new service - + Vra om te stoor voordat 'n nuwe diens begin word Automatically preview next item in service - + Wys voorskou van volgende item in diens automaties Slide loop delay: - + Skyfie herhaal vertraging: sec - + sek CCLI Details - CCLI Inligting + CCLI Inligting CCLI number: - + CCLI nommer: SongSelect username: - + SongSelect gebruikersnaam: SongSelect password: - + SongSelect wagwoord: Display Position - + Vertoon Posisie X - + X Y - + Y Height - + Hoogte Width - + Wydte Override display position - + Oorskryf vertoon posisie Screen - Skerm + Skerm primary - primêre + primêre OpenLP.LanguageManager - + Language - + Taal - + Please restart OpenLP to use your new language setting. - + Herlaai asseblief OpenLP om die nuwe taal instelling te gebruik. @@ -1647,414 +1704,416 @@ This General Public License does not permit incorporating your program into prop OpenLP 2.0 - OpenLP 2.0 + OpenLP 2.0 - + English - Engels + Engels &File - &Lêer + &Lêer &Import - &Invoer + &Invoer &Export - &Uitvoer + Uitvo&er &View - &Bekyk + &Bekyk M&ode - M&odus + M&odus &Tools - &Gereedskap + &Gereedskap &Settings - Ver&stellings + Ver&stellings &Language - Taa&l + Taa&l &Help - &Hulp + &Hulp Media Manager - Media Bestuurder + Media Bestuurder Service Manager - Diens Bestuurder + Diens Bestuurder Theme Manager - Tema Bestuurder + Tema Bestuurder &New - &Nuwe + &Nuwe New Service - Nuwe Diens + Nuwe Diens Create a new service. - + Skep 'n nuwe diens. Ctrl+N - Ctrl+N + Ctrl+N &Open - Maak &Oop + Maak &Oop Open Service - Maak Diens Oop + Maak Diens Oop Open an existing service. - + Maak 'n bestaande diens oop. Ctrl+O - Ctrl+O + Ctrl+O &Save - &Stoor + &Stoor Save Service - Stoor Diens + Stoor Diens Save the current service to disk. - + Stoor die huidige diens na skyf. Ctrl+S - Ctrl+S + Ctrl+S Save &As... - Stoor &As... + Stoor &As... Save Service As - Stoor Diens As + Stoor Diens As Save the current service under a new name. - + Stoor die huidige diens onder 'n nuwe naam. Ctrl+Shift+S - + Ctrl+Shift+S E&xit - &Uitgang + &Uitgang Quit OpenLP - Sluit OpenLP Af + Sluit OpenLP Af Alt+F4 - Alt+F4 + Alt+F4 &Theme - &Tema + &Tema &Configure OpenLP... - + &Konfigureer OpenLP... &Media Manager - &Media Bestuurder + &Media Bestuurder Toggle Media Manager - Wissel Media Bestuurder + Wissel Media Bestuurder Toggle the visibility of the media manager. - + Wissel sigbaarheid van die media bestuurder. F8 - F8 + F8 &Theme Manager - &Tema Bestuurder + &Tema Bestuurder Toggle Theme Manager - Wissel Tema Bestuurder + Wissel Tema Bestuurder Toggle the visibility of the theme manager. - + Wissel sigbaarheid van die tema bestuurder. F10 - F10 + F10 &Service Manager - &Diens Bestuurder + &Diens Bestuurder Toggle Service Manager - Wissel Diens Bestuurder + Wissel Diens Bestuurder Toggle the visibility of the service manager. - + Wissel sigbaarheid van die diens bestuurder. F9 - F9 + F9 &Preview Panel - &Voorskou Paneel + Voorskou &Paneel Toggle Preview Panel - Wissel Voorskou Paneel + Wissel Voorskou Paneel Toggle the visibility of the preview panel. - + Wissel sigbaarheid van die voorskou paneel. F11 - F11 + F11 &Live Panel - + Regstreekse Panee&l Toggle Live Panel - + Wissel Regstreekse Paneel Toggle the visibility of the live panel. - + Wissel sigbaarheid van die regstreekse paneel. F12 - F12 + F12 &Plugin List - In&prop Lys + Mini-&program Lys List the Plugins - Lys die Inproppe + Lys die Mini-programme Alt+F7 - Alt+F7 + Alt+F7 &User Guide - &Gebruikers Gids + Gebr&uikers Gids &About - &Aangaande + &Aangaande More information about OpenLP - Meer inligting aangaande OpenLP + Meer inligting aangaande OpenLP Ctrl+F1 - Ctrl+F1 + Ctrl+F1 &Online Help - &Aanlyn Hulp + &Aanlyn Hulp &Web Site - &Web Tuiste + &Web Tuiste &Auto Detect - + Verklik Outom&aties Use the system language, if available. - + Gebruik die sisteem se taal as dit beskikbaar is. Set the interface language to %s - + Verstel die koppelvlak taal na %s Add &Tool... - + Voeg Gereedskaps&tuk by... Add an application to the list of tools. - + Voeg 'n applikasie by die lys van gereedskapstukke. &Default - + &Verstek Set the view mode back to the default. - + Verstel skou modus terug na verstek modus. &Setup - + Op&stel Set the view mode to Setup. - + Verstel die skou modus na Opstel modus. &Live - &Regstreeks + &Regstreeks Set the view mode to Live. - + Verstel die skou modus na Regstreeks. Version %s of OpenLP is now available for download (you are currently running version %s). You can download the latest version from http://openlp.org/. - + Weergawe %s van OpenLP is nou beskikbaar vir aflaai (tans word weergawe %s gebruik). + +Die nuutste weergawe kan afgelaai word vanaf http://openlp.org/. OpenLP Version Updated - OpenLP Weergawe is Opdateer + OpenLP Weergawe is Opdateer - + OpenLP Main Display Blanked - OpenLP Hoof Vertoning Blanko + OpenLP Hoof Vertoning Blanko - + The Main Display has been blanked out - Die Hoof Skerm is blanko + Die Hoof Skerm is afgeskakel - + Save Changes to Service? - + Stoor Veranderinge aan Diens? - + Your service has changed. Do you want to save those changes? - + Die diens het verander. Stoor veranderinge? - + Default Theme: %s - + Verstek Tema: %s @@ -2062,210 +2121,210 @@ You can download the latest version from http://openlp.org/. No Items Selected - + Geen item geselekteer nie Import %s - + Voer %s in Import a %s - + Voer 'n %s in Load %s - + Laai %s Load a new %s - + Laai 'n nuwe %s New %s - + Nuwe %s Add a new %s - + Voeg 'n nuwe %s by Edit %s - + Redigeer %s Edit the selected %s - + Redigeer die geselekteerde %s Delete %s - + Wis %s uit Delete the selected item - Wis geselekteerde item uit + Wis geselekteerde item uit Preview %s - + Voorskou %s Preview the selected item - Voorskou die geselekteerde item + Voorskou die geselekteerde item Send the selected item live - Stuur die geselekteerde item na regstreekse vertoning + Stuur die geselekteerde item na regstreekse vertoning Add %s to Service - + Voeg %s by die Diens Add the selected item(s) to the service - Voeg die geselekteerde item(s) by die diens + Voeg die geselekteerde item(s) by die diens &Edit %s - + R&edigeer %s &Delete %s - + Wis %s uit &Preview %s - + Voorskou %s &Show Live - &Vertoon Regstreeks + Vertoon Regstreek&s &Add to Service - &Voeg by Diens + Voeg by Diens &Add to selected Service Item - + Voeg by die geselekteerde Diens item You must select one or more items to preview. - + Kies een of meer items vir die voorskou. You must select one or more items to send live. - + Kies een of meer items vir regstreekse uitsending. You must select one or more items. - + Kies een of meer items. No items selected - + Geen items geselekteer nie You must select one or more items - + Kies een of meer items No Service Item Selected - + Geen Diens Item Geselekteer nie You must select an existing service item to add to. - + 'n Bestaande diens item moet geselekteer word om by by te voeg. Invalid Service Item - + Ongeldige Diens Item You must select a %s service item. - + Kies 'n %s diens item. OpenLP.PluginForm - + Plugin List - Inprop Lys + Mini-program Lys - + Plugin Details - Inprop Besonderhede + Mini-program Besonderhede - + Version: - Weergawe: + Weergawe: - + About: - Aangaande: + Aangaande: - + Status: - Status: + Status: - + Active - Aktief + Aktief - + Inactive - Onaktief - - - - %s (Inactive) - - - - - %s (Active) - + Onaktief + %s (Inactive) + %s (Onaktief) + + + + %s (Active) + %s (Aktief) + + + %s (Disabled) - + %s (Onaktief) @@ -2273,22 +2332,22 @@ You can download the latest version from http://openlp.org/. Reorder Service Item - + Hergroepeer Diens Item Up - + Op Delete - + Wis uit Down - + Af @@ -2296,97 +2355,97 @@ You can download the latest version from http://openlp.org/. New Service - Nuwe Diens + Nuwe Diens Create a new service - Skep 'n nuwe diens + Skep 'n nuwe diens - + Open Service - Maak Diens Oop + Maak Diens Oop Load an existing service - Laai 'n bestaande diens + Laai 'n bestaande diens - + Save Service - Stoor Diens + Stoor Diens Save this service - Stoor hierdie diens + Stoor hierdie diens Theme: - Tema: + Tema: Select a theme for the service - Selekteer 'n tema vir die diens + Selekteer 'n tema vir die diens Move to &top - + Skuif boon&toe Move item to the top of the service. - + Skuif item tot heel bo in die diens. Move &up - + Sk&uif op Move item up one position in the service. - + Skuif item een posisie boontoe in die diens. Move &down - + Skuif af Move item down one position in the service. - + Skuif item een posisie af in die diens. Move to &bottom - + Skuif tot heel onder Move item to the end of the service. - + Skuif item tot aan die einde van die diens. &Delete From Service - + Wis uit vanaf die Diens Delete the selected item from the service. - + Wis geselekteerde item van die diens af. &Add New Item - + Voeg Nuwe Item By @@ -2424,51 +2483,56 @@ You can download the latest version from http://openlp.org/. &Verander Item Tema - + Save Changes to Service? - + Stoor Veranderinge aan Diens? - + Your service is unsaved, do you want to save those changes before creating a new one? - + OpenLP Service Files (*.osz) - + Your current service is unsaved, do you want to save the changes before opening a new one? - + Error Fout - + File is not a valid service. The content encoding is not UTF-8. - + File is not a valid service. - + Missing Display Handler - + Your item cannot be displayed as there is no handler to display it + + + Your item cannot be displayed as the plugin required to display it is missing or inactive + + OpenLP.ServiceNoteForm @@ -2499,70 +2563,70 @@ The content encoding is not UTF-8. Voorskou - + Move to previous Beweeg na vorige - + Move to next Verskuif na volgende - + Hide - + Move to live Verskuif na regstreekse skerm - - Edit and re-preview song - - - - + Start continuous loop Begin aaneenlopende lus - + Stop continuous loop Stop deurlopende lus - + s s - + Delay between slides in seconds Vertraging in sekondes tussen skyfies - + Start playing media Begin media speel - + Go To + + + Edit and reload song preview + + OpenLP.SpellTextEdit - + Spelling Suggestions - + Formatting Tags @@ -2674,16 +2738,6 @@ The content encoding is not UTF-8. You are unable to delete the default theme. - - - Theme %s is use in %s plugin. - - - - - Theme %s is use by the service manager. - - You have not selected a theme. @@ -2745,6 +2799,16 @@ The content encoding is not UTF-8. A theme with this name already exists. Would you like to overwrite it? + + + Theme %s is used in the %s plugin. + + + + + Theme %s is used by the service manager. + + OpenLP.ThemesTab @@ -3050,144 +3114,149 @@ The content encoding is not UTF-8. - You have not set a display name for the author, would you like me to combine the first and last names for you? + You have not set a display name for the author, combine the first and last names? SongsPlugin.EditSongForm - + Song Editor Lied Redigeerder - + &Title: - + &Titel: - + Alt&ernate title: - + &Lyrics: - + &Verse order: - + &Add - + &Edit R&edigeer - + Ed&it All - + &Delete - + Wis uit - + Title && Lyrics Titel && Lirieke - + Authors Skrywers - + &Add to Song &Voeg by Lied - + &Remove &Verwyder - + &Manage Authors, Topics, Song Books - + Topic Onderwerp - + A&dd to Song Voeg by Lie&d - + R&emove V&erwyder - + Song Book Lied Boek - - Song No.: + + Book: + Boek: + + + + Number: - + Authors, Topics && Song Book - + Theme Tema - + New &Theme - + Copyright Information Kopiereg Informasie - + © - + CCLI number: - + CCLI nommer: - + Comments Kommentaar - + Theme, Copyright Info && Comments Tema, Kopiereg Informasie && Kommentaar @@ -3207,7 +3276,7 @@ The content encoding is not UTF-8. - + Error Fout @@ -3252,42 +3321,42 @@ The content encoding is not UTF-8. - + You need to type in a song title. - + You need to type in at least one verse. - + Warning - + You have not added any authors for this song. Do you want to add an author now? - + The verse order is invalid. There is no verse corresponding to %s. Valid entries are %s. - + You have not used %s anywhere in the verse order. Are you sure you want to save the song like this? - + Add Book - + This song book does not exist, do you want to add it? @@ -3295,17 +3364,17 @@ The content encoding is not UTF-8. SongsPlugin.EditVerseForm - + Edit Verse Redigeer Vers - + &Verse type: - + &Insert @@ -3313,235 +3382,255 @@ The content encoding is not UTF-8. SongsPlugin.ImportWizardForm - + No OpenLP 2.0 Song Database Selected - + You need to select an OpenLP 2.0 song database file to import from. - + No openlp.org 1.x Song Database Selected - + You need to select an openlp.org 1.x song database file to import from. - - No OpenLyrics Files Selected - - - - - You need to add at least one OpenLyrics song file to import from. - - - - + No OpenSong Files Selected - + You need to add at least one OpenSong song file to import from. - + No Words of Worship Files Selected - + You need to add at least one Words of Worship file to import from. - + No CCLI Files Selected - + You need to add at least one CCLI file to import from. - + No Songs of Fellowship File Selected - + You need to add at least one Songs of Fellowship file to import from. - + No Document/Presentation Selected - + You need to add at least one document or presentation file to import from. - + Select OpenLP 2.0 Database File - + Select openlp.org 1.x Database File - - Select OpenLyrics Files - - - - + Select Open Song Files - + Select Words of Worship Files - + + Select CCLI Files + + + + Select Songs of Fellowship Files - + Select Document/Presentation Files - + Starting import... Invoer begin... - + Song Import Wizard - + Welcome to the Song Import Wizard - + This wizard will help you to import songs from a variety of formats. Click the next button below to start the process by selecting a format to import from. - + Select Import Source Selekteer Invoer Bron - + Select the import format, and where to import from. Selekteer die invoer formaat en van waar af om in te voer. - + Format: Formaat: - + OpenLP 2.0 OpenLP 2.0 - + openlp.org 1.x - + OpenLyrics - + OpenSong OpenSong - + Words of Worship - + CCLI/SongSelect - + Songs of Fellowship - + Generic Document/Presentation - + Filename: - + Browse... - + + The openlp.org 1.x importer has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "python-sqlite" module. + + + + Add Files... - + Remove File(s) - + + The Songs of Fellowship importer has been disabled because OpenLP cannot find OpenOffice.org on your computer. + + + + + The generic document/presentation importer has been disabled because OpenLP cannot find OpenOffice.org on your computer. + + + + Importing Invoer - + Please wait while your songs are imported. - + Ready. Gereed. - + %p% + + + Importing "%s"... + + + + + Importing %s... + + + + + The OpenLyrics importer has not yet been developed, but as you can see, we are still intending to do so. Hopefully it will be in the next release. + + SongsPlugin.MediaItem @@ -3621,7 +3710,7 @@ The content encoding is not UTF-8. - + CCLI Licence: CCLI Lisensie: @@ -3657,12 +3746,12 @@ The content encoding is not UTF-8. SongsPlugin.SongImport - + copyright - + © @@ -3670,12 +3759,12 @@ The content encoding is not UTF-8. SongsPlugin.SongImportForm - + Finished import. Invoer voltooi. - + Your song import failed. @@ -3715,7 +3804,7 @@ The content encoding is not UTF-8. &Delete - + Wis uit @@ -3757,11 +3846,6 @@ The content encoding is not UTF-8. Could not save your changes. - - - Could not save your modified author, because he already exists. - - Could not save your modified topic, because it already exists. @@ -3827,6 +3911,11 @@ The content encoding is not UTF-8. No book selected! Geen boek geselekteer nie! + + + Could not save your modified author, because the author already exists. + + SongsPlugin.SongsTab @@ -3870,8 +3959,8 @@ The content encoding is not UTF-8. - You need to type in a topic name! - U moet 'n onderwerp naam invoer! + You need to type in a topic name. + diff --git a/resources/i18n/de.ts b/resources/i18n/de.ts index 10b15691f..61c2c7a3d 100644 --- a/resources/i18n/de.ts +++ b/resources/i18n/de.ts @@ -10,12 +10,12 @@ Show an alert message. - Hinweis anzeigen + Hinweis anzeigen. <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of nursery alerts on the display screen - + <strong>Hinweis Erweiterung</strong><br />Die Erweiterung Hinweis ermöglicht die Anzeige von Texten auf dem Live Bild @@ -28,12 +28,12 @@ Alert &text: - + Hinweis &Text: &Parameter(s): - + O&ption(en): @@ -48,32 +48,32 @@ &Delete - + &Löschen Displ&ay - + &Anzeigen Display && Cl&ose - + An&zeigen && Schließen &Close - + S&chließen New Alert - + Neuer Hinweis You haven't specified any text for your alert. Please type in some text before clicking New. - + Der Hinweis enthält noch keinen Text. Bitte geben Sie einen Text an, bevor Sie auf Neu klicken. @@ -81,7 +81,7 @@ Alert message created and displayed. - + Hinweis wurde erfolgreich erstellt und angezeigt. @@ -114,7 +114,7 @@ Location: - + Ort: @@ -134,22 +134,22 @@ Font name: - + Schriftart: Font color: - + Farbe: Background color: - + Hintergrundfarbe: Font size: - + Schriftgröße: @@ -172,7 +172,7 @@ <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display bible verses from different sources during the service. - + <strong>Bibelmodul</strong><br />Das Bibelmodul ermöglicht es während der Veranstaltung Bibelverse von verschiedenen Quellen anzuzeigen. @@ -180,12 +180,12 @@ Book not found - + Buch nicht gefunden The book you requested could not be found in this bible. Please check your spelling and that this is a complete bible not just one testament. - + Das angeforderte Buch wurde in dieser Bibel nicht gefunden. Bitte überprüfen Sie die Rechtschreibung und ob diese Bibelübersetzung aus neuem und altem Testament besteht. @@ -193,11 +193,11 @@ Scripture Reference Error - + Fehler im Text Verweis - Your scripture reference is either not supported by OpenLP or invalid. Please make sure your reference conforms to one of the following patterns: + Your scripture reference is either not supported by OpenLP or is invalid. Please make sure your reference conforms to one of the following patterns: Book Chapter Book Chapter-Chapter @@ -229,63 +229,64 @@ Book Chapter:Verse-Chapter:Verse Layout style: - + Vorlagen Stil: Display style: - + Anzeige Stil: Bible theme: - + Bibel Design: Verse Per Slide - + Verse pro Seite Verse Per Line - + Verse pro Zeile Continuous - + Fortlaufend No Brackets - + Keine Klammern ( And ) - + ( Und ) { And } - + { UND } [ And ] - + [ Und ] Note: Changes do not affect verses already in the service. - + Bemerkung: +Änderungen beeinflussen nicht Verse, welche bereits im Veranstaltungplan sind. Display dual Bible verses - + Zeige doppelte Bibelverse an @@ -343,7 +344,7 @@ Changes do not affect verses already in the service. Location: - + Ort: @@ -408,7 +409,7 @@ Changes do not affect verses already in the service. Importing - + Importieren @@ -428,7 +429,7 @@ Changes do not affect verses already in the service. You need to specify a file to import your Bible from. - + Sie müssen eine Datei zum importieren Ihrer Bibel angeben. @@ -438,7 +439,7 @@ Changes do not affect verses already in the service. You need to specify a file with books of the Bible to use in the import. - + Bitte geben Sie die Datei an, die die Liste der Bücher enthält. @@ -448,7 +449,7 @@ Changes do not affect verses already in the service. You need to specify a file of Bible verses to import. - + Bitte geben Sie die Datei an, die den Bibeltext enthält. @@ -458,7 +459,7 @@ Changes do not affect verses already in the service. You need to specify an OpenSong Bible file to import. - + Bitte geben Sie die Datei an, die die OpenSong Bibel enthält. @@ -468,42 +469,32 @@ Changes do not affect verses already in the service. You need to specify a version name for your Bible. - + Bitte geben Sie den Namen der Bibelausgabe ein. Empty Copyright Das Copyright wurde nicht angegeben - - - You need to set a copyright for your Bible! Bibles in the Public Domain need to be marked as such. - Sie müssen das Copyright der Bibel angeben. Bei Bibeln, die keinem Copyright mehr unterlegen, geben Sie bitte "Public Domain" ein. - Bible Exists Diese Bibelübersetzung ist bereits vorhanden - - - This Bible already exists! Please import a different Bible or first delete the existing one. - Diese Bibel ist bereits vorhanden! Bitte importieren Sie eine andere Bibel oder löschen Sie die bereits vorhandene. - Open OSIS File - + Öffne OSIS Datei Open Books CSV File - + Öffne Bücherdatei (CSV) Open Verses CSV File - + Öffne Bibeltext (CSV) @@ -513,7 +504,7 @@ Changes do not affect verses already in the service. Starting import... - Starte import ... + Starte import... @@ -528,43 +519,53 @@ Changes do not affect verses already in the service. File location: - + Speicherort: Books location: - + Bücherdatei: Verse location: - + Bibeltext: Bible filename: - + Dateiname: Version name: - + Ausgabe: + + + + You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. + + + + + This Bible already exists. Please import a different Bible or first delete the existing one. + BiblesPlugin.MediaItem - + Bible Bibel - + Quick Schnellsuche - + Advanced Erweitert @@ -631,7 +632,7 @@ Changes do not affect verses already in the service. Clear - + Abbrechen @@ -649,19 +650,19 @@ Changes do not affect verses already in the service. Das Buch wurde in dieser Bibelausgabe nicht gefunden. - + etc - + etc Search type: - + Art der Suche: - + Bible not fully loaded. - + Bibel wurde nicht vollständig geladen. @@ -669,7 +670,7 @@ Changes do not affect verses already in the service. Importing - + Importiere @@ -695,70 +696,70 @@ Changes do not affect verses already in the service. Display footer - + Fußzeile anzeigen CustomPlugin.EditCustomForm - + Edit Custom Slides Sonderfolien bearbeiten - + &Title: - + &Titel: - + Add New Neues anfügen - + Edit Bearbeiten - + Edit All - + Alle bearbeiten - + Save Speichern - + Delete Löschen - + Clear - + Abbrechen - + Clear edit area Aufräumen des Bearbeiten Bereiches - + Split Slide - + Folie aufteilen - + The&me: - + Desig&n: - + &Credits: - + &Mitwirkende: @@ -771,59 +772,59 @@ Changes do not affect verses already in the service. Fehler - + Move slide down one position. - + Folie eins nach unten verschieben - + Add a new slide at bottom. - + Neue Folie am Ende einfügen - + Edit the selected slide. - + Ausgewählte Folie bearbeiten. - + Edit all the slides at once. - + Alle Folien bearbeiten. - + Save the slide currently being edited. - + Die geöffnete Folie speichern. - + Delete the selected slide. - + Ausgewählte Folie löschen. - + Split a slide into two by inserting a slide splitter. - + Die Folie mit einem Folienteiler zweiteilen. You need to type in a title. - + Bitte geben Sie einen Titel ein. You need to add at least one slide - + Bitte erstellen Sie mindestens eine Folie. You have one or more unsaved slides, please either save your slide(s) or clear your changes. - + Sie haben mindestens eine Folie bearbeitet. Bitte speichern Sie Ihre Bearbeitungen oder brechen Sie den Vorgang ab. - + Move slide up one position. - + @@ -836,12 +837,12 @@ Changes do not affect verses already in the service. You haven't selected an item to edit. - + Sie haben nichts zum bearbeiten ausgewählt. You haven't selected an item to delete. - + Sie haben nichts zum löschen ausgewählt. @@ -867,12 +868,12 @@ Changes do not affect verses already in the service. All Files - + Alle Dateien Replace Live Background - + Live-Hintergrund ersetzen @@ -882,27 +883,27 @@ Changes do not affect verses already in the service. Replace Background - + Hintergrund ersetzen You must select an image to delete. - + Bitte markieren Sie das Bild, das sie löschen möchten. You must select an image to replace the background with. - + Bitte wählen Sie ein Bild aus, das sie als Hintergrundbild benutzen möchten. You must select a media file to replace the background with. - + Bitte wählen Sie ein Video aus, das sie als Hintergrundbild benutzen möchten. Reset Live Background - + @@ -928,25 +929,25 @@ Changes do not affect verses already in the service. Replace Live Background - + Live-Hintergrund ersetzen Replace Background - + Hintergrund ersetzen You must select a media file to delete. - + Bitte wählen Sie das Video aus, das sie löschen möchten. OpenLP - + Image Files - + Bilddateien @@ -1172,7 +1173,7 @@ Yoyodyne, Inc., hereby disclaims all copyright interest in the program "Gno Ty Coon, President of Vice This General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. - + @@ -1501,6 +1502,19 @@ This General Public License does not permit incorporating your program into prop + + OpenLP.ExceptionDialog + + + Oops! OpenLP hit a problem, and couldn't recover. The text in the box below contains information that might be helpful to the OpenLP developers, so please e-mail it to bugs@openlp.org, along with a detailed description of what you were doing when the problem occurred. + + + + + Error Occurred + + + OpenLP.GeneralTab @@ -1632,12 +1646,12 @@ This General Public License does not permit incorporating your program into prop OpenLP.LanguageManager - + Language - + Please restart OpenLP to use your new language setting. @@ -1650,7 +1664,7 @@ This General Public License does not permit incorporating your program into prop OpenLP 2.0 - + English Deutsch @@ -1737,7 +1751,7 @@ This General Public License does not permit incorporating your program into prop &Open - &Öffnen + Ö&ffnen @@ -1942,7 +1956,7 @@ This General Public License does not permit incorporating your program into prop &About - &Über + Üb&er @@ -2025,27 +2039,27 @@ This General Public License does not permit incorporating your program into prop OpenLP-Version aktualisiert - + OpenLP Main Display Blanked Hauptbildschirm abgedunkelt - + The Main Display has been blanked out Die Projektion ist momentan nicht aktiv - + Save Changes to Service? Änderungen am Ablauf speichern? - + Your service has changed. Do you want to save those changes? - + Default Theme: %s @@ -2054,7 +2068,7 @@ This General Public License does not permit incorporating your program into prop Version %s of OpenLP is now available for download (you are currently running version %s). You can download the latest version from http://openlp.org/. - + @@ -2218,52 +2232,52 @@ You can download the latest version from http://openlp.org/. OpenLP.PluginForm - + Plugin List Plugin-Liste - + Plugin Details Plugin-Details - + Version: Version: - + About: Über: - + Status: Status: - + Active Aktiv - + Inactive Inaktiv - + %s (Inactive) - + %s (Active) - + %s (Disabled) @@ -2304,7 +2318,7 @@ You can download the latest version from http://openlp.org/. Erstelle neuen Ablauf - + Open Service Öffnen Ablauf @@ -2314,7 +2328,7 @@ You can download the latest version from http://openlp.org/. Öffne Ablauf - + Save Service Ablauf speichern @@ -2424,51 +2438,56 @@ You can download the latest version from http://openlp.org/. &Design des Elements ändern - + Save Changes to Service? Änderungen am Ablauf speichern? - + Your service is unsaved, do you want to save those changes before creating a new one? - + OpenLP Service Files (*.osz) - + Your current service is unsaved, do you want to save the changes before opening a new one? - + Error Fehler - + File is not a valid service. The content encoding is not UTF-8. - + File is not a valid service. - + Missing Display Handler - + Your item cannot be displayed as there is no handler to display it + + + Your item cannot be displayed as the plugin required to display it is missing or inactive + + OpenLP.ServiceNoteForm @@ -2499,72 +2518,72 @@ The content encoding is not UTF-8. Vorschau - + Move to previous Vorherige Folie anzeigen - + Move to next Verschiebe zum Nächsten - + Hide - + Move to live Verschieben zur Live Ansicht - + Start continuous loop Endlosschleife starten - + Stop continuous loop Endlosschleife beenden - + s s - + Delay between slides in seconds Pause zwischen den Folien in Sekunden - + Start playing media Abspielen - - Edit and re-preview song - + + Go To + - - Go To + + Edit and reload song preview OpenLP.SpellTextEdit - + Spelling Suggestions - + - + Formatting Tags - + @@ -2674,16 +2693,6 @@ The content encoding is not UTF-8. You are unable to delete the default theme. - - - Theme %s is use in %s plugin. - - - - - Theme %s is use by the service manager. - - You have not selected a theme. @@ -2743,6 +2752,16 @@ The content encoding is not UTF-8. A theme with this name already exists. Would you like to overwrite it? + + + + + Theme %s is used in the %s plugin. + + + + + Theme %s is used by the service manager. @@ -2791,7 +2810,7 @@ The content encoding is not UTF-8. Use the global theme, overriding any themes associated with either the service or the songs. - Das Standarddesign immer verwenden, unabhängig vom Lieddesign oder Ablaufdesign + Das Standarddesign immer verwenden, unabhängig vom Lieddesign oder Ablaufdesign. @@ -2847,7 +2866,7 @@ The content encoding is not UTF-8. This type of presentation is not supported. - + @@ -2860,7 +2879,7 @@ The content encoding is not UTF-8. Available Controllers - Verfügbare Präsentationsprogramme: + Verfügbare Präsentationsprogramme @@ -3050,114 +3069,114 @@ The content encoding is not UTF-8. - You have not set a display name for the author, would you like me to combine the first and last names for you? - + You have not set a display name for the author, combine the first and last names? + SongsPlugin.EditSongForm - + Song Editor Lied bearbeiten - + &Title: - + &Lyrics: - + &Add - + &Edit &Bearbeiten - + Ed&it All - + &Delete - + Title && Lyrics Titel && Liedtext - + Authors Autoren - + &Add to Song Zum Lied &hinzufügen - + &Remove Entfe&rnen - + Topic Thema - + A&dd to Song Zum Lied &hinzufügen - + R&emove &Entfernen - + Song Book Liederbuch - + Theme Design - + New &Theme - + Copyright Information Copyright Angaben - + © - + Comments Kommentare - + Theme, Copyright Info && Comments Design, Copyrightinformationen && Kommentare @@ -3207,72 +3226,72 @@ The content encoding is not UTF-8. - + Add Book - + This song book does not exist, do you want to add it? - + Error Fehler - + You need to type in a song title. - + You need to type in at least one verse. - + Warning - + You have not added any authors for this song. Do you want to add an author now? - + The verse order is invalid. There is no verse corresponding to %s. Valid entries are %s. - + You have not used %s anywhere in the verse order. Are you sure you want to save the song like this? - + Alt&ernate title: - + &Verse order: - + &Manage Authors, Topics, Song Books - + Authors, Topics && Song Book - + CCLI number: @@ -3287,25 +3306,30 @@ The content encoding is not UTF-8. - - Song No.: - + + Book: + Buch: + + + + Number: + Nummer: SongsPlugin.EditVerseForm - + Edit Verse Bearbeite Vers - + &Verse type: - + &Insert @@ -3313,233 +3337,253 @@ The content encoding is not UTF-8. SongsPlugin.ImportWizardForm - - No OpenLyrics Files Selected - - - - - You need to add at least one OpenLyrics song file to import from. - - - - + No OpenSong Files Selected - + You need to add at least one OpenSong song file to import from. - + No CCLI Files Selected - + You need to add at least one CCLI file to import from. - + Starting import... - Starte import ... + Starte Import... - + Song Import Wizard - + Welcome to the Song Import Wizard - + This wizard will help you to import songs from a variety of formats. Click the next button below to start the process by selecting a format to import from. - + Select Import Source Importquelle auswählen - + Select the import format, and where to import from. Wähle das Import Format und woher der Import erfolgen soll. - + Format: Format: - + OpenLyrics - + OpenSong OpenSong - + Add Files... - + Remove File(s) - + Filename: - + Browse... - + Importing - + Please wait while your songs are imported. - + Ready. Fertig. - + %p% - + No OpenLP 2.0 Song Database Selected - + - + You need to select an OpenLP 2.0 song database file to import from. - + - + No openlp.org 1.x Song Database Selected - + - + You need to select an openlp.org 1.x song database file to import from. - + - + No Words of Worship Files Selected - + - + You need to add at least one Words of Worship file to import from. - + - + No Songs of Fellowship File Selected - + - + You need to add at least one Songs of Fellowship file to import from. - + - + No Document/Presentation Selected - + - + You need to add at least one document or presentation file to import from. - + - + Select OpenLP 2.0 Database File - + - + Select openlp.org 1.x Database File - + - - Select OpenLyrics Files - - - - + Select Open Song Files - + - + Select Words of Worship Files - + - + + Select CCLI Files + + + + Select Songs of Fellowship Files - + - + Select Document/Presentation Files - + - + OpenLP 2.0 - OpenLP 2.0 + OpenLP 2.0 - + openlp.org 1.x - + - + Words of Worship - + - + CCLI/SongSelect - + - + Songs of Fellowship - + - + Generic Document/Presentation + + + + + The openlp.org 1.x importer has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "python-sqlite" module. + + + + + The Songs of Fellowship importer has been disabled because OpenLP cannot find OpenOffice.org on your computer. + + + + + The generic document/presentation importer has been disabled because OpenLP cannot find OpenOffice.org on your computer. + + + + + Importing "%s"... + + + + + Importing %s... + + + + + The OpenLyrics importer has not yet been developed, but as you can see, we are still intending to do so. Hopefully it will be in the next release. @@ -3606,7 +3650,7 @@ The content encoding is not UTF-8. - + CCLI Licence: CCLI-Lizenz: @@ -3657,12 +3701,12 @@ The content encoding is not UTF-8. SongsPlugin.SongImport - + copyright - + © @@ -3670,14 +3714,14 @@ The content encoding is not UTF-8. SongsPlugin.SongImportForm - + Finished import. - Importvorgang abgeschlossen. + Importvorgang abgeschlossen. - + Your song import failed. - + @@ -3802,11 +3846,6 @@ The content encoding is not UTF-8. Could not save your changes. - - - Could not save your modified author, because he already exists. - - Could not save your modified topic, because it already exists. @@ -3827,6 +3866,11 @@ The content encoding is not UTF-8. This book cannot be deleted, it is currently assigned to at least one song. + + + Could not save your modified author, because the author already exists. + + SongsPlugin.SongsTab @@ -3870,8 +3914,8 @@ The content encoding is not UTF-8. - You need to type in a topic name! - Sie müssen dem Thema einen Namen geben! + You need to type in a topic name. + @@ -3904,7 +3948,7 @@ The content encoding is not UTF-8. Ending - Coda (Schluss) + Schluss diff --git a/resources/i18n/en.ts b/resources/i18n/en.ts index 86411c4e5..bca3a64c3 100644 --- a/resources/i18n/en.ts +++ b/resources/i18n/en.ts @@ -197,7 +197,7 @@ - Your scripture reference is either not supported by OpenLP or invalid. Please make sure your reference conforms to one of the following patterns: + Your scripture reference is either not supported by OpenLP or is invalid. Please make sure your reference conforms to one of the following patterns: Book Chapter Book Chapter-Chapter @@ -502,7 +502,7 @@ Changes do not affect verses already in the service. - You need to set a copyright for your Bible! Bibles in the Public Domain need to be marked as such. + You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. @@ -512,7 +512,7 @@ Changes do not affect verses already in the service. - This Bible already exists! Please import a different Bible or first delete the existing one. + This Bible already exists. Please import a different Bible or first delete the existing one. @@ -554,17 +554,17 @@ Changes do not affect verses already in the service. BiblesPlugin.MediaItem - + Bible - + Quick - + Advanced @@ -654,12 +654,12 @@ Changes do not affect verses already in the service. - + etc - + Bible not fully loaded. @@ -701,102 +701,102 @@ Changes do not affect verses already in the service. CustomPlugin.EditCustomForm - + Edit Custom Slides - + Move slide up one position. - + Move slide down one position. - + &Title: - + Add New - + Add a new slide at bottom. - + Edit - + Edit the selected slide. - + Edit All - + Edit all the slides at once. - + Save - + Save the slide currently being edited. - + Delete - + Delete the selected slide. - + Clear - + Clear edit area - + Split Slide - + Split a slide into two by inserting a slide splitter. - + The&me: - + &Credits: @@ -944,7 +944,7 @@ Changes do not affect verses already in the service. OpenLP - + Image Files @@ -1501,6 +1501,19 @@ This General Public License does not permit incorporating your program into prop + + OpenLP.ExceptionDialog + + + Error Occurred + + + + + Oops! OpenLP hit a problem, and couldn't recover. The text in the box below contains information that might be helpful to the OpenLP developers, so please e-mail it to bugs@openlp.org, along with a detailed description of what you were doing when the problem occurred. + + + OpenLP.GeneralTab @@ -1632,12 +1645,12 @@ This General Public License does not permit incorporating your program into prop OpenLP.LanguageManager - + Language - + Please restart OpenLP to use your new language setting. @@ -1650,7 +1663,7 @@ This General Public License does not permit incorporating your program into prop - + English @@ -2032,27 +2045,27 @@ You can download the latest version from http://openlp.org/. - + OpenLP Main Display Blanked - + The Main Display has been blanked out - + Save Changes to Service? - + Your service has changed. Do you want to save those changes? - + Default Theme: %s @@ -2218,52 +2231,52 @@ You can download the latest version from http://openlp.org/. OpenLP.PluginForm - + Plugin List - + Plugin Details - + Version: - + About: - + Status: - + Active - + Inactive - + %s (Inactive) - + %s (Active) - + %s (Disabled) @@ -2304,7 +2317,7 @@ You can download the latest version from http://openlp.org/. - + Open Service @@ -2314,7 +2327,7 @@ You can download the latest version from http://openlp.org/. - + Save Service @@ -2424,51 +2437,56 @@ You can download the latest version from http://openlp.org/. - + Save Changes to Service? - + Your service is unsaved, do you want to save those changes before creating a new one? - + OpenLP Service Files (*.osz) - + Your current service is unsaved, do you want to save the changes before opening a new one? - + Error - + File is not a valid service. The content encoding is not UTF-8. - + File is not a valid service. - + Missing Display Handler - + Your item cannot be displayed as there is no handler to display it + + + Your item cannot be displayed as the plugin required to display it is missing or inactive + + OpenLP.ServiceNoteForm @@ -2499,57 +2517,57 @@ The content encoding is not UTF-8. - + Move to previous - + Move to next - + Hide - + Move to live - - Edit and re-preview song + + Edit and reload song preview - + Start continuous loop - + Stop continuous loop - + s - + Delay between slides in seconds - + Start playing media - + Go To @@ -2557,12 +2575,12 @@ The content encoding is not UTF-8. OpenLP.SpellTextEdit - + Spelling Suggestions - + Formatting Tags @@ -2676,12 +2694,12 @@ The content encoding is not UTF-8. - Theme %s is use in %s plugin. + Theme %s is used in the %s plugin. - Theme %s is use by the service manager. + Theme %s is used by the service manager. @@ -3050,144 +3068,149 @@ The content encoding is not UTF-8. - You have not set a display name for the author, would you like me to combine the first and last names for you? + You have not set a display name for the author, combine the first and last names? SongsPlugin.EditSongForm - + Song Editor - + &Title: - + Alt&ernate title: - + &Lyrics: - + &Verse order: - + &Add - + &Edit - + Ed&it All - + &Delete - + Title && Lyrics - + Authors - + &Add to Song - + &Remove - + &Manage Authors, Topics, Song Books - + Topic - + A&dd to Song - + R&emove - + Song Book - - Song No.: + + Book: - + + Number: + + + + Authors, Topics && Song Book - + Theme - + New &Theme - + Copyright Information - + © - + CCLI number: - + Comments - + Theme, Copyright Info && Comments @@ -3207,7 +3230,7 @@ The content encoding is not UTF-8. - + Error @@ -3252,42 +3275,42 @@ The content encoding is not UTF-8. - + You need to type in a song title. - + You need to type in at least one verse. - + Warning - + You have not added any authors for this song. Do you want to add an author now? - + The verse order is invalid. There is no verse corresponding to %s. Valid entries are %s. - + You have not used %s anywhere in the verse order. Are you sure you want to save the song like this? - + Add Book - + This song book does not exist, do you want to add it? @@ -3295,17 +3318,17 @@ The content encoding is not UTF-8. SongsPlugin.EditVerseForm - + Edit Verse - + &Verse type: - + &Insert @@ -3313,235 +3336,255 @@ The content encoding is not UTF-8. SongsPlugin.ImportWizardForm - + No OpenLP 2.0 Song Database Selected - + You need to select an OpenLP 2.0 song database file to import from. - + No openlp.org 1.x Song Database Selected - + You need to select an openlp.org 1.x song database file to import from. - - No OpenLyrics Files Selected - - - - - You need to add at least one OpenLyrics song file to import from. - - - - + No OpenSong Files Selected - + You need to add at least one OpenSong song file to import from. - + No Words of Worship Files Selected - + You need to add at least one Words of Worship file to import from. - + No CCLI Files Selected - + You need to add at least one CCLI file to import from. - + No Songs of Fellowship File Selected - + You need to add at least one Songs of Fellowship file to import from. - + No Document/Presentation Selected - + You need to add at least one document or presentation file to import from. - + Select OpenLP 2.0 Database File - + Select openlp.org 1.x Database File - - Select OpenLyrics Files - - - - + Select Open Song Files - + Select Words of Worship Files - + + Select CCLI Files + + + + Select Songs of Fellowship Files - + Select Document/Presentation Files - + Starting import... - + Song Import Wizard - + Welcome to the Song Import Wizard - + This wizard will help you to import songs from a variety of formats. Click the next button below to start the process by selecting a format to import from. - + Select Import Source - + Select the import format, and where to import from. - + Format: - + OpenLP 2.0 - + openlp.org 1.x - + OpenLyrics - + OpenSong - + Words of Worship - + CCLI/SongSelect - + Songs of Fellowship - + Generic Document/Presentation - + Filename: - + Browse... - + + The openlp.org 1.x importer has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "python-sqlite" module. + + + + + The OpenLyrics importer has not yet been developed, but as you can see, we are still intending to do so. Hopefully it will be in the next release. + + + + Add Files... - + Remove File(s) - + + The Songs of Fellowship importer has been disabled because OpenLP cannot find OpenOffice.org on your computer. + + + + + The generic document/presentation importer has been disabled because OpenLP cannot find OpenOffice.org on your computer. + + + + Importing - + Please wait while your songs are imported. - + Ready. - + %p% + + + Importing "%s"... + + + + + Importing %s... + + SongsPlugin.MediaItem @@ -3621,7 +3664,7 @@ The content encoding is not UTF-8. - + CCLI Licence: @@ -3657,12 +3700,12 @@ The content encoding is not UTF-8. SongsPlugin.SongImport - + copyright - + © @@ -3670,12 +3713,12 @@ The content encoding is not UTF-8. SongsPlugin.SongImportForm - + Finished import. - + Your song import failed. @@ -3759,7 +3802,7 @@ The content encoding is not UTF-8. - Could not save your modified author, because he already exists. + Could not save your modified author, because the author already exists. @@ -3870,7 +3913,7 @@ The content encoding is not UTF-8. - You need to type in a topic name! + You need to type in a topic name. diff --git a/resources/i18n/en_GB.ts b/resources/i18n/en_GB.ts index d08d90416..8d108b38d 100644 --- a/resources/i18n/en_GB.ts +++ b/resources/i18n/en_GB.ts @@ -5,17 +5,17 @@ &Alert - &Alert + &Alert Show an alert message. - + Show an alert message. <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of nursery alerts on the display screen - + <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of nursery alerts on the display screen @@ -23,57 +23,57 @@ Alert Message - Alert Message + Alert Message Alert &text: - + Alert &text: &Parameter(s): - + &Parameter(s): &New - &New + &New &Save - &Save + &Save &Delete - + &Delete Displ&ay - + Displ&ay Display && Cl&ose - + Display && Cl&ose &Close - + &Close New Alert - + New Alert You haven't specified any text for your alert. Please type in some text before clicking New. - + You haven't specified any text for your alert. Please type in some text before clicking New. @@ -81,7 +81,7 @@ Alert message created and displayed. - + Alert message created and displayed. @@ -89,77 +89,77 @@ Alerts - Alerts + Alerts Font - Font + Font Font name: - + Font name: Font color: - + Font colour: Background color: - + Background colour: Font size: - + Font size: pt - pt + pt Alert timeout: - Alert timeout: + Alert timeout: s - s + s Location: - Location: + Location: Preview - Preview + Preview OpenLP 2.0 - OpenLP 2.0 + OpenLP 2.0 Top - Top + Top Middle - Middle + Middle Bottom - Bottom + Bottom @@ -167,12 +167,12 @@ &Bible - &Bible + &Bible <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display bible verses from different sources during the service. - + <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display bible verses from different sources during the service. @@ -180,12 +180,12 @@ Book not found - + Book not found The book you requested could not be found in this bible. Please check your spelling and that this is a complete bible not just one testament. - + The book you requested could not be found in this bible. Please check your spelling and that this is a complete bible not just one testament. @@ -193,11 +193,11 @@ Scripture Reference Error - + Scripture Reference Error - Your scripture reference is either not supported by OpenLP or invalid. Please make sure your reference conforms to one of the following patterns: + Your scripture reference is either not supported by OpenLP or is invalid. Please make sure your reference conforms to one of the following patterns: Book Chapter Book Chapter-Chapter @@ -214,78 +214,79 @@ Book Chapter:Verse-Chapter:Verse Bibles - Bibles + Bibles Verse Display - Verse Display + Verse Display Only show new chapter numbers - Only show new chapter numbers + Only show new chapter numbers Layout style: - + Layout style: Display style: - + Display style: Bible theme: - + Bible theme: Verse Per Slide - + Verse Per Slide Verse Per Line - + Verse Per Line Continuous - + Continuous No Brackets - + No Brackets ( And ) - + ( And ) { And } - + { And } [ And ] - + [ And ] Note: Changes do not affect verses already in the service. - + Note: +Changes do not affect verses already in the service. Display dual Bible verses - + Display dual Bible verses @@ -293,375 +294,375 @@ Changes do not affect verses already in the service. Bible Import Wizard - Bible Import Wizard + Bible Import Wizard Welcome to the Bible Import Wizard - Welcome to the Bible Import Wizard + Welcome to the Bible Import Wizard This wizard will help you to import Bibles from a variety of formats. Click the next button below to start the process by selecting a format to import from. - This wizard will help you to import Bibles from a variety of formats. Click the next button below to start the process by selecting a format to import from. + This wizard will help you to import Bibles from a variety of formats. Click the next button below to start the process by selecting a format to import from. Select Import Source - Select Import Source + Select Import Source Select the import format, and where to import from. - Select the import format, and where to import from. + Select the import format, and where to import from. Format: - Format: + Format: OSIS - OSIS + OSIS CSV - CSV + CSV OpenSong - OpenSong + OpenSong Web Download - Web Download + Web Download File location: - + File location: Books location: - + Books location: Verse location: - + Verse location: Bible filename: - + Bible filename: Location: - Location: + Location: Crosswalk - Crosswalk + Crosswalk BibleGateway - BibleGateway + BibleGateway Bible: - Bible: + Bible: Download Options - Download Options + Download Options Server: - Server: + Server: Username: - Username: + Username: Password: - Password: + Password: Proxy Server (Optional) - Proxy Server (Optional) + Proxy Server (Optional) License Details - License Details + License Details Set up the Bible's license details. - Set up the Bible's license details. + Set up the Bible's license details. Version name: - + Version name: Copyright: - Copyright: + Copyright: Permission: - Permission: + Permission: Importing - Importing + Importing Please wait while your Bible is imported. - Please wait while your Bible is imported. + Please wait while your Bible is imported. Ready. - Ready. + Ready. Invalid Bible Location - Invalid Bible Location + Invalid Bible Location You need to specify a file to import your Bible from. - + You need to specify a file to import your Bible from. Invalid Books File - Invalid Books File + Invalid Books File You need to specify a file with books of the Bible to use in the import. - + You need to specify a file with books of the Bible to use in the import. Invalid Verse File - Invalid Verse File + Invalid Verse File You need to specify a file of Bible verses to import. - + You need to specify a file of Bible verses to import. Invalid OpenSong Bible - Invalid OpenSong Bible + Invalid OpenSong Bible You need to specify an OpenSong Bible file to import. - + You need to specify an OpenSong Bible file to import. Empty Version Name - Empty Version Name + Empty Version Name You need to specify a version name for your Bible. - + You need to specify a version name for your Bible. Empty Copyright - Empty Copyright - - - - You need to set a copyright for your Bible! Bibles in the Public Domain need to be marked as such. - You need to set a copyright for your Bible! Bibles in the Public Domain need to be marked as such. + Empty Copyright Bible Exists - Bible Exists - - - - This Bible already exists! Please import a different Bible or first delete the existing one. - + Bible Exists Open OSIS File - + Open OSIS File Open Books CSV File - + Open Books CSV File Open Verses CSV File - + Open Verses CSV File Open OpenSong Bible - Open OpenSong Bible + Open OpenSong Bible Starting import... - Starting import... + Starting import... Finished import. - Finished import. + Finished import. Your Bible import failed. - Your Bible import failed. + Your Bible import failed. + + + + You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. + + + + + This Bible already exists. Please import a different Bible or first delete the existing one. + BiblesPlugin.MediaItem - + Bible - Bible + Bible - + Quick - Quick + Quick - + Advanced - Advanced + Advanced Version: - Version: + Version: Dual: - Dual: + Dual: Search type: - + Search type: Find: - Find: + Find: Search - Search + Search Results: - Results: + Results: Book: - Book: + Book: Chapter: - Chapter: + Chapter: Verse: - Verse: + Verse: From: - From: + From: To: - To: + To: Verse Search - Verse Search + Verse Search Text Search - Text Search + Text Search Clear - Clear + Clear Keep - Keep + Keep No Book Found - No Book Found + No Book Found No matching book could be found in this Bible. - No matching book could be found in this Bible. + No matching book could be found in this Bible. - + etc - + etc - + Bible not fully loaded. - + Bible not fully loaded. @@ -669,7 +670,7 @@ Changes do not affect verses already in the service. Importing - Importing + Importing @@ -677,7 +678,7 @@ Changes do not affect verses already in the service. <strong>Custom Plugin</strong><br />The custom plugin provides the ability to set up custom text slides that can be displayed on the screen the same way songs are. This plugin provides greater freedom over the songs plugin. - + <strong>Custom Plugin</strong><br />The custom plugin provides the ability to set up custom text slides that can be displayed on the screen the same way songs are. This plugin provides greater freedom over the songs plugin. @@ -685,145 +686,145 @@ Changes do not affect verses already in the service. Custom - Custom + Custom Custom Display - Custom Display + Custom Display Display footer - + Display footer CustomPlugin.EditCustomForm - + Edit Custom Slides - Edit Custom Slides + Edit Custom Slides - + Move slide up one position. - + Move slide up one position. - + Move slide down one position. - + Move slide down one position. - + &Title: - + &Title: - + Add New - Add New + Add New - + Add a new slide at bottom. - + Add a new slide at bottom. - + Edit - Edit + Edit - + Edit the selected slide. - + Edit the selected slide. - + Edit All - Edit All + Edit All - + Edit all the slides at once. - + Edit all the slides at once. - + Save - Save + Save - + Save the slide currently being edited. - + Save the slide currently being edited. - + Delete - Delete + Delete - + Delete the selected slide. - + Delete the selected slide. - + Clear - Clear + Clear - + Clear edit area - Clear edit area + Clear edit area - + Split Slide - + Split Slide - + Split a slide into two by inserting a slide splitter. - + Split a slide into two by inserting a slide splitter. - + The&me: - + The&me: - + &Credits: - + &Credits: Save && Preview - Save && Preview + Save && Preview Error - Error + Error You need to type in a title. - + You need to type in a title. You need to add at least one slide - + You need to add at least one slide You have one or more unsaved slides, please either save your slide(s) or clear your changes. - + You have one or more unsaved slides, please either save your slide(s) or clear your changes. @@ -831,17 +832,17 @@ Changes do not affect verses already in the service. Custom - Custom + Custom You haven't selected an item to edit. - + You haven't selected an item to edit. You haven't selected an item to delete. - + You haven't selected an item to delete. @@ -849,7 +850,7 @@ Changes do not affect verses already in the service. <strong>Image Plugin</strong><br />The image plugin provides displaying of images.<br />One of the distinguishing features of this plugin is the ability to group a number of images together in the service manager, making the displaying of multiple images easier. This plugin can also make use of OpenLP's "timed looping" feature to create a slide show that runs automatically. In addition to this, images from the plugin can be used to override the current theme's background, which renders text-based items like songs with the selected image as a background instead of the background provided by the theme. - + <strong>Image Plugin</strong><br />The image plugin provides displaying of images.<br />One of the distinguishing features of this plugin is the ability to group a number of images together in the service manager, making the displaying of multiple images easier. This plugin can also make use of OpenLP's "timed looping" feature to create a slide show that runs automatically. In addition to this, images from the plugin can be used to override the current theme's background, which renders text-based items like songs with the selected image as a background instead of the background provided by the theme. @@ -857,52 +858,52 @@ Changes do not affect verses already in the service. Image - Image + Image Select Image(s) - Select Image(s) + Select Image(s) All Files - + All Files Replace Live Background - + Replace Live Background Replace Background - + Replace Background Reset Live Background - + Reset Live Background You must select an image to delete. - + You must select an image to delete. Image(s) - Image(s) + Image(s) You must select an image to replace the background with. - + You must select an image to replace the background with. You must select a media file to replace the background with. - + You must select a media file to replace the background with. @@ -910,7 +911,7 @@ Changes do not affect verses already in the service. <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. - + <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. @@ -918,35 +919,35 @@ Changes do not affect verses already in the service. Media - Media + Media Select Media - Select Media + Select Media Replace Live Background - + Replace Live Background Replace Background - + Replace Background You must select a media file to delete. - + You must select a media file to delete. OpenLP - + Image Files - + Image Files @@ -954,7 +955,7 @@ Changes do not affect verses already in the service. About OpenLP - About OpenLP + About OpenLP @@ -965,12 +966,18 @@ OpenLP is free church presentation software, or lyrics projection software, used Find out more about OpenLP: http://openlp.org/ OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider contributing by using the button below. - + OpenLP <version><revision> - Open Source Lyrics Projection + +OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if OpenOffice.org, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. + +Find out more about OpenLP: http://openlp.org/ + +OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider contributing by using the button below. About - About + About @@ -1012,12 +1019,49 @@ Built With PyQt4: http://www.riverbankcomputing.co.uk/software/pyqt/intro Oxygen Icons: http://oxygen-icons.org/ - + Project Lead +Raoul "superfly" Snyman + +Developers +Tim "TRB143" Bentley +Jonathan "gushie" Corwin +Michael "cocooncrash" Gorven +Scott "sguerrieri" Guerrieri +Raoul "superfly" Snyman +Martin "mijiti" Thompson +Jon "Meths" Tibble + +Contributors +Meinert "m2j" Jordan +Andreas "googol" Preikschat +Christian "crichter" Richter +Philip "Phill" Ridout +Maikel Stuivenberg +Carsten "catini" Tingaard +Frode "frodus" Woldsund + +Testers +Philip "Phill" Ridout +Wesley "wrst" Stout (lead) + +Packagers +Thomas "tabthorpe" Abthorpe (FreeBSD) +Tim "TRB143" Bentley (Fedora) +Michael "cocooncrash" Gorven (Ubuntu) +Matthias "matthub" Hub (Mac OS X) +Raoul "superfly" Snyman (Windows, Ubuntu) + +Built With +Python: http://www.python.org/ +Qt4: http://qt.nokia.com/ +PyQt4: http://www.riverbankcomputing.co.uk/software/pyqt/intro +Oxygen Icons: http://oxygen-icons.org/ + Credits - Credits + Credits @@ -1152,27 +1196,157 @@ Yoyodyne, Inc., hereby disclaims all copyright interest in the program "Gno Ty Coon, President of Vice This General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. - + Copyright © 2004-2010 Raoul Snyman +Portions copyright © 2004-2010 Tim Bentley, Jonathan Corwin, Michael Gorven, Scott Guerrieri, Christian Richter, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Carsten Tinggaard + +This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public Licence as published by the Free Software Foundation; version 2 of the Licence. + +This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See below for more details. + + +GNU GENERAL PUBLIC LICENCE +Version 2, June 1991 + +Copyright (C) 1989, 1991 Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. Everyone is permitted to copy and distribute verbatim copies of this licence document, but changing it is not allowed. + +Preamble + +The licences for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public Licence is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This General Public Licence applies to most of the Free Software Foundation's software and to any other program whose authors commit to using it. (Some other Free Software Foundation software is covered by the GNU Lesser General Public Licence instead.) You can apply it to your programs, too. + +When we speak of free software, we are referring to freedom, not price. Our General Public Licences are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things. + +To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it. + +For example, if you distribute copies of such a program, whether gratis or for a fee, you must give the recipients all the rights that you have. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. + +We protect your rights with two steps: (1) copyright the software, and (2) offer you this licence which gives you legal permission to copy, distribute and/or modify the software. + +Also, for each author's protection and ours, we want to make certain that everyone understands that there is no warranty for this free software. If the software is modified by someone else and passed on, we want its recipients to know that what they have is not the original, so that any problems introduced by others will not reflect on the original authors' reputations. + +Finally, any free program is threatened constantly by software patents. We wish to avoid the danger that redistributors of a free program will individually obtain patent licences, in effect making the program proprietary. To prevent this, we have made it clear that any patent must be licensed for everyone's free use or not licensed at all. + +The precise terms and conditions for copying, distribution and modification follow. + +GNU GENERAL PUBLIC LICENCE +TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + +0. This Licence applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public Licence. The "Program", below, refers to any such program or work, and a "work based on the Program" means either the Program or any derivative work under copyright law: that is to say, a work containing the Program or a portion of it, either verbatim or with modifications and/or translated into another language. (Hereinafter, translation is included without limitation in the term "modification".) Each licensee is addressed as "you". + +Activities other than copying, distribution and modification are not covered by this Licence; they are outside its scope. The act of running the Program is not restricted, and the output from the Program is covered only if its contents constitute a work based on the Program (independent of having been made by running the Program). Whether that is true depends on what the Program does. + +1. You may copy and distribute verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this Licence and to the absence of any warranty; and give any other recipients of the Program a copy of this Licence along with the Program. + +You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. + +2. You may modify your copy or copies of the Program or any portion of it, thus forming a work based on the Program, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: + +a) You must cause the modified files to carry prominent notices stating that you changed the files and the date of any change. + +b) You must cause any work that you distribute or publish, that in whole or in part contains or is derived from the Program or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this Licence. + +c) If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the most ordinary way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this Licence. (Exception: if the Program itself is interactive but does not normally print such an announcement, your work based on the Program is not required to print an announcement.) + +These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, and can be reasonably considered independent and separate works in themselves, then this Licence, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Program, the distribution of the whole must be on the terms of this Licence, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Program. + +In addition, mere aggregation of another work not based on the Program with the Program (or with a work based on the Program) on a volume of a storage or distribution medium does not bring the other work under the scope of this Licence. + +3. You may copy and distribute the Program (or a work based on it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you also do one of the following: + +a) Accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, + +b) Accompany it with a written offer, valid for at least three years, to give any third party, for a charge no more than your cost of physically performing source distribution, a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, + +c) Accompany it with the information you received as to the offer to distribute corresponding source code. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form with such an offer, in accord with Subsection b above.) + +The source code for a work means the preferred form of the work for making modifications to it. For an executable work, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the executable. However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. + +If distribution of executable or object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place counts as distribution of the source code, even though third parties are not compelled to copy the source along with the object code. + +4. You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this Licence. Any attempt otherwise to copy, modify, sublicense or distribute the Program is void, and will automatically terminate your rights under this Licence. However, parties who have received copies, or rights, from you under this Licence will not have their licences terminated so long as such parties remain in full compliance. + +5. You are not required to accept this Licence, since you have not signed it. However, nothing else grants you permission to modify or distribute the Program or its derivative works. These actions are prohibited by law if you do not accept this Licence. Therefore, by modifying or distributing the Program (or any work based on the Program), you indicate your acceptance of this Licence to do so, and all its terms and conditions for copying, distributing or modifying the Program or works based on it. + +6. Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a licence from the original licensor to copy, distribute or modify the Program subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this Licence. + +7. If, as a consequence of a court judgement or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this Licence, they do not excuse you from the conditions of this Licence. If you cannot distribute so as to satisfy simultaneously your obligations under this Licence and any other pertinent obligations, then as a consequence you may not distribute the Program at all. For example, if a patent licence would not permit royalty-free redistribution of the Program by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this Licence would be to refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply and the section as a whole is intended to apply in other circumstances. + +It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system, which is implemented by public licence practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. + +This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this Licence. + +8. If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Program under this Licence may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this Licence incorporates the limitation as if written in the body of this Licence. + +9. The Free Software Foundation may publish revised and/or new versions of the General Public Licence from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. + +Each version is given a distinguishing version number. If the Program specifies a version number of this Licence which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of this Licence, you may choose any version ever published by the Free Software Foundation. + +10. If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. + +NO WARRANTY + +11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + +12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + +END OF TERMS AND CONDITIONS + +How to Apply These Terms to Your New Programs + +If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. + +To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. + +<one line to give the program's name and a brief idea of what it does.> +Copyright (C) <year> <name of author> + +This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public Licence as published by the Free Software Foundation; either version 2 of the Licence, or (at your option) any later version. + +This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public Licence for more details. + +You should have received a copy of the GNU General Public Licence along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + +Also add information on how to contact you by electronic and paper mail. + +If the program is interactive, make it output a short notice like this when it starts in an interactive mode: + +Gnomovision version 69, Copyright (C) year name of author +Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type "show w". +This is free software, and you are welcome to redistribute it under certain conditions; type "show c" for details. + +The hypothetical commands "show w" and "show c" should show the appropriate parts of the General Public Licence. Of course, the commands you use may be called something other than "show w" and "show c"; they could even be mouse-clicks or menu items--whatever suits your program. + +You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright disclaimer" for the program, if necessary. Here is a sample; alter the names: + +Yoyodyne, Inc., hereby disclaims all copyright interest in the program "Gnomovision" (which makes passes at compilers) written by James Hacker. + +<signature of Ty Coon>, 1 April 1989 +Ty Coon, President of Vice + +This General Public Licence does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public Licence instead of this Licence. License - License + Licence Contribute - Contribute + Contribute Close - Close + Close build %s - + build %s @@ -1180,27 +1354,27 @@ This General Public License does not permit incorporating your program into prop Advanced - Advanced + Advanced UI Settings - + UI Settings Number of recent files to display: - + Number of recent files to display: Remember active media manager tab on startup - + Remember active media manager tab on startup Double-click to send items straight to live (requires restart) - + Double-click to send items straight to live (requires restart) @@ -1208,296 +1382,309 @@ This General Public License does not permit incorporating your program into prop Theme Maintenance - Theme Maintenance + Theme Maintenance Theme &name: - + Theme &name: Type: - Type: + Type: Solid Color - Solid Color + Solid Colour Gradient - Gradient + Gradient Image - Image + Image Image: - Image: + Image: Gradient: - + Gradient: Horizontal - Horizontal + Horizontal Vertical - Vertical + Vertical Circular - + Circular &Background - + &Background Main Font - Main Font + Main Font Font: - Font: + Font: Color: - + Colour: Size: - Size: + Size: pt - pt + pt Adjust line spacing: - + Adjust line spacing: Normal - Normal + Normal Bold - Bold + Bold Italics - Italics + Italics Bold/Italics - Bold/Italics + Bold/Italics Style: - + Style: Display Location - Display Location + Display Location Use default location - + Use default location X position: - + X position: Y position: - + Y position: Width: - Width: + Width: Height: - Height: + Height: px - px + px &Main Font - + &Main Font Footer Font - Footer Font + Footer Font &Footer Font - + &Footer Font Outline - Outline + Outline Outline size: - + Outline size: Outline color: - + Outline colour: Show outline: - + Show outline: Shadow - Shadow + Shadow Shadow size: - + Shadow size: Shadow color: - + Shadow colour: Show shadow: - + Show shadow: Alignment - Alignment + Alignment Horizontal align: - + Horizontal align: Left - Left + Left Right - Right + Right Center - Center + Centre Vertical align: - + Vertical align: Top - Top + Top Middle - Middle + Middle Bottom - Bottom + Bottom Slide Transition - Slide Transition + Slide Transition Transition active - + Transition active &Other Options - + &Other Options Preview - Preview + Preview All Files - + All Files Select Image - + Select Image First color: - + First colour: Second color: - + Second colour: Slide height is %s rows. + Slide height is %s rows. + + + + OpenLP.ExceptionDialog + + + Oops! OpenLP hit a problem, and couldn't recover. The text in the box below contains information that might be helpful to the OpenLP developers, so please e-mail it to bugs@openlp.org, along with a detailed description of what you were doing when the problem occurred. + Oops! OpenLP hit a problem, and couldn't recover. The text in the box below contains information that might be helpful to the OpenLP developers, so please e-mail it to bugs@openlp.org, along with a detailed description of what you were doing when the problem occurred. + + + + Error Occurred @@ -1506,140 +1693,140 @@ This General Public License does not permit incorporating your program into prop General - General + General Monitors - Monitors + Monitors Select monitor for output display: - Select monitor for output display: + Select monitor for output display: Display if a single screen - + Display if a single screen Application Startup - Application Startup + Application Startup Show blank screen warning - Show blank screen warning + Show blank screen warning Automatically open the last service - Automatically open the last service + Automatically open the last service Show the splash screen - Show the splash screen + Show the splash screen Application Settings - Application Settings + Application Settings Prompt to save before starting a new service - + Prompt to save before starting a new service Automatically preview next item in service - + Automatically preview next item in service Slide loop delay: - + Slide loop delay: sec - + sec CCLI Details - CCLI Details + CCLI Details CCLI number: - + CCLI number: SongSelect username: - + SongSelect username: SongSelect password: - + SongSelect password: Display Position - + Display Position X - + X Y - + Y Height - + Height Width - + Width Override display position - + Override display position Screen - Screen + Screen primary - primary + primary OpenLP.LanguageManager - + Language - + Language - + Please restart OpenLP to use your new language setting. - + Please restart OpenLP to use your new language setting. @@ -1647,414 +1834,415 @@ This General Public License does not permit incorporating your program into prop OpenLP 2.0 - OpenLP 2.0 + OpenLP 2.0 - + English - English + English &File - &File + &File &Import - &Import + &Import &Export - &Export + &Export &View - &View + &View M&ode - M&ode + M&ode &Tools - &Tools + &Tools &Settings - &Settings + &Settings &Language - &Language + &Language &Help - &Help + &Help Media Manager - Media Manager + Media Manager Service Manager - Service Manager + Service Manager Theme Manager - Theme Manager + Theme Manager &New - &New + &New New Service - New Service + New Service Create a new service. - + Create a new service. Ctrl+N - Ctrl+N + Ctrl+N &Open - &Open + &Open Open Service - Open Service + Open Service Open an existing service. - + Open an existing service. Ctrl+O - Ctrl+O + Ctrl+O &Save - &Save + &Save Save Service - Save Service + Save Service Save the current service to disk. - + Save the current service to disk. Ctrl+S - Ctrl+S + Ctrl+S Save &As... - Save &As... + Save &As... Save Service As - Save Service As + Save Service As Save the current service under a new name. - + Save the current service under a new name. Ctrl+Shift+S - + Ctrl+Shift+S E&xit - E&xit + E&xit Quit OpenLP - Quit OpenLP + Quit OpenLP Alt+F4 - Alt+F4 + Alt+F4 &Theme - &Theme + &Theme &Configure OpenLP... - + &Configure OpenLP... &Media Manager - &Media Manager + &Media Manager Toggle Media Manager - Toggle Media Manager + Toggle Media Manager Toggle the visibility of the media manager. - + Toggle the visibility of the media manager. F8 - F8 + F8 &Theme Manager - &Theme Manager + &Theme Manager Toggle Theme Manager - Toggle Theme Manager + Toggle Theme Manager Toggle the visibility of the theme manager. - + Toggle the visibility of the theme manager. F10 - F10 + F10 &Service Manager - &Service Manager + &Service Manager Toggle Service Manager - Toggle Service Manager + Toggle Service Manager Toggle the visibility of the service manager. - + Toggle the visibility of the service manager. F9 - F9 + F9 &Preview Panel - &Preview Panel + &Preview Panel Toggle Preview Panel - Toggle Preview Panel + Toggle Preview Panel Toggle the visibility of the preview panel. - + Toggle the visibility of the preview panel. F11 - F11 + F11 &Live Panel - + &Live Panel Toggle Live Panel - + Toggle Live Panel Toggle the visibility of the live panel. - + Toggle the visibility of the live panel. F12 - F12 + F12 &Plugin List - &Plugin List + &Plugin List List the Plugins - List the Plugins + List the Plugins Alt+F7 - Alt+F7 + Alt+F7 &User Guide - &User Guide + &User Guide &About - &About + &About More information about OpenLP - More information about OpenLP + More information about OpenLP Ctrl+F1 - Ctrl+F1 + Ctrl+F1 &Online Help - &Online Help + &Online Help &Web Site - &Web Site + &Web Site &Auto Detect - + &Auto Detect Use the system language, if available. - + Use the system language, if available. Set the interface language to %s - + Set the interface language to %s Add &Tool... - + Add &Tool... Add an application to the list of tools. - + Add an application to the list of tools. &Default - + &Default Set the view mode back to the default. - + Set the view mode back to the default. &Setup - + &Setup Set the view mode to Setup. - + Set the view mode to Setup. &Live - &Live + &Live Set the view mode to Live. - + Set the view mode to Live. Version %s of OpenLP is now available for download (you are currently running version %s). You can download the latest version from http://openlp.org/. - + Version %s of OpenLP is now available for download (you are currently running version %s). +You can download the latest version from http://openlp.org/. OpenLP Version Updated - OpenLP Version Updated + OpenLP Version Updated - + OpenLP Main Display Blanked - OpenLP Main Display Blanked + OpenLP Main Display Blanked - + The Main Display has been blanked out - The Main Display has been blanked out + The Main Display has been blanked out - + Save Changes to Service? - Save Changes to Service? + Save Changes to Service? - + Your service has changed. Do you want to save those changes? - + Your service has changed. Do you want to save those changes? - + Default Theme: %s - + Default Theme: %s @@ -2062,210 +2250,210 @@ You can download the latest version from http://openlp.org/. No Items Selected - + No Items Selected Import %s - + Import %s Import a %s - + Import a %s Load %s - + Load %s Load a new %s - + Load a new %s New %s - + New %s Add a new %s - + Add a new %s Edit %s - + Edit %s Edit the selected %s - + Edit the selected %s Delete %s - + Delete %s Delete the selected item - Delete the selected item + Delete the selected item Preview %s - + Preview %s Preview the selected item - Preview the selected item + Preview the selected item Send the selected item live - Send the selected item live + Send the selected item live Add %s to Service - + Add %s to Service Add the selected item(s) to the service - Add the selected item(s) to the service + Add the selected item(s) to the service &Edit %s - + &Edit %s &Delete %s - + &Delete %s &Preview %s - + &Preview %s &Show Live - &Show Live + &Show Live &Add to Service - &Add to Service + &Add to Service &Add to selected Service Item - + &Add to selected Service Item You must select one or more items to preview. - + You must select one or more items to preview. You must select one or more items to send live. - + You must select one or more items to send live. You must select one or more items. - + You must select one or more items. No items selected - + No items selected You must select one or more items - You must select one or more items + You must select one or more items No Service Item Selected - + No Service Item Selected You must select an existing service item to add to. - + You must select an existing service item to add to. Invalid Service Item - + Invalid Service Item You must select a %s service item. - + You must select a %s service item. OpenLP.PluginForm - + Plugin List - Plugin List + Plugin List - + Plugin Details - Plugin Details + Plugin Details - + Version: - Version: + Version: - + About: - About: + About: - + Status: - Status: + Status: - + Active - Active + Active - + Inactive - Inactive - - - - %s (Inactive) - - - - - %s (Active) - + Inactive + %s (Inactive) + %s (Inactive) + + + + %s (Active) + %s (Active) + + + %s (Disabled) - + %s (Disabled) @@ -2273,22 +2461,22 @@ You can download the latest version from http://openlp.org/. Reorder Service Item - + Reorder Service Item Up - + Up Delete - Delete + Delete Down - + Down @@ -2296,177 +2484,183 @@ You can download the latest version from http://openlp.org/. New Service - New Service + New Service Create a new service - Create a new service + Create a new service - + Open Service - Open Service + Open Service Load an existing service - Load an existing service + Load an existing service - + Save Service - Save Service + Save Service Save this service - Save this service + Save this service Theme: - Theme: + Theme: Select a theme for the service - Select a theme for the service + Select a theme for the service Move to &top - + Move to &top Move item to the top of the service. - + Move item to the top of the service. Move &up - + Move &up Move item up one position in the service. - + Move item up one position in the service. Move &down - + Move &down Move item down one position in the service. - + Move item down one position in the service. Move to &bottom - + Move to &bottom Move item to the end of the service. - + Move item to the end of the service. &Delete From Service - + &Delete From Service Delete the selected item from the service. - + Delete the selected item from the service. &Add New Item - + &Add New Item &Add to Selected Item - + &Add to Selected Item &Edit Item - &Edit Item + &Edit Item &Reorder Item - + &Reorder Item &Notes - &Notes + &Notes &Preview Verse - &Preview Verse + &Preview Verse &Live Verse - &Live Verse + &Live Verse &Change Item Theme - &Change Item Theme + &Change Item Theme - + Save Changes to Service? - Save Changes to Service? + Save Changes to Service? - + Your service is unsaved, do you want to save those changes before creating a new one? - + Your service is unsaved, do you want to save those changes before creating a new one? - + OpenLP Service Files (*.osz) - + OpenLP Service Files (*.osz) - + Your current service is unsaved, do you want to save the changes before opening a new one? - + Your current service is unsaved, do you want to save the changes before opening a new one? - + Error - Error + Error - + File is not a valid service. The content encoding is not UTF-8. - + File is not a valid service. +The content encoding is not UTF-8. - + File is not a valid service. - + File is not a valid service. - + Missing Display Handler - + Missing Display Handler - + Your item cannot be displayed as there is no handler to display it + Your item cannot be displayed as there is no handler to display it + + + + Your item cannot be displayed as the plugin required to display it is missing or inactive @@ -2475,7 +2669,7 @@ The content encoding is not UTF-8. Service Item Notes - Service Item Notes + Service Item Notes @@ -2483,7 +2677,7 @@ The content encoding is not UTF-8. Configure OpenLP - + Configure OpenLP @@ -2491,80 +2685,80 @@ The content encoding is not UTF-8. Live - Live + Live Preview - Preview + Preview - + Move to previous - Move to previous + Move to previous - + Move to next - Move to next + Move to next - + Hide - + Hide - + Move to live - Move to live + Move to live - - Edit and re-preview song - - - - + Start continuous loop - Start continuous loop + Start continuous loop + + + + Stop continuous loop + Stop continuous loop - Stop continuous loop - Stop continuous loop - - - s - s + s - + Delay between slides in seconds - Delay between slides in seconds + Delay between slides in seconds - + Start playing media - Start playing media + Start playing media - + Go To + Go To + + + + Edit and reload song preview OpenLP.SpellTextEdit - + Spelling Suggestions - + Spelling Suggestions - + Formatting Tags - + Formatting Tags @@ -2572,177 +2766,178 @@ The content encoding is not UTF-8. New Theme - New Theme + New Theme Create a new theme. - + Create a new theme. Edit Theme - Edit Theme + Edit Theme Edit a theme. - + Edit a theme. Delete Theme - Delete Theme + Delete Theme Delete a theme. - + Delete a theme. Import Theme - Import Theme + Import Theme Import a theme. - + Import a theme. Export Theme - Export Theme + Export Theme Export a theme. - + Export a theme. &Edit Theme - + &Edit Theme &Delete Theme - + &Delete Theme Set As &Global Default - + Set As &Global Default E&xport Theme - + E&xport Theme %s (default) - + %s (default) You must select a theme to edit. - + You must select a theme to edit. You must select a theme to delete. - + You must select a theme to delete. Delete Confirmation - + Delete Confirmation Delete theme? - + Delete theme? Error - Error + Error You are unable to delete the default theme. - - - - - Theme %s is use in %s plugin. - - - - - Theme %s is use by the service manager. - + You are unable to delete the default theme. You have not selected a theme. - + You have not selected a theme. Save Theme - (%s) - Save Theme - (%s) + Save Theme - (%s) Theme Exported - + Theme Exported Your theme has been successfully exported. - + Your theme has been successfully exported. Theme Export Failed - + Theme Export Failed Your theme could not be exported due to an error. - + Your theme could not be exported due to an error. Select Theme Import File - Select Theme Import File + Select Theme Import File Theme (*.*) - + Theme (*.*) File is not a valid theme. The content encoding is not UTF-8. - + File is not a valid theme. +The content encoding is not UTF-8. File is not a valid theme. - + File is not a valid theme. Theme Exists - Theme Exists + Theme Exists A theme with this name already exists. Would you like to overwrite it? + A theme with this name already exists. Would you like to overwrite it? + + + + Theme %s is used in the %s plugin. + + + + + Theme %s is used by the service manager. @@ -2751,47 +2946,47 @@ The content encoding is not UTF-8. Themes - Themes + Themes Global Theme - + Global Theme Theme Level - + Theme Level S&ong Level - + S&ong Level Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. - Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. + Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. &Service Level - + &Service Level Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. - Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. + Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. &Global Level - + &Global Level Use the global theme, overriding any themes associated with either the service or the songs. - Use the global theme, overriding any themes associated with either the service or the songs. + Use the global theme, overriding any themes associated with either the service or the songs. @@ -2799,7 +2994,7 @@ The content encoding is not UTF-8. <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. - + <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. @@ -2807,47 +3002,47 @@ The content encoding is not UTF-8. Presentation - Presentation + Presentation Select Presentation(s) - Select Presentation(s) + Select Presentation(s) Automatic - + Automatic Present using: - Present using: + Present using: File Exists - + File Exists A presentation with that filename already exists. - A presentation with that filename already exists. + A presentation with that filename already exists. Unsupported File - + Unsupported File This type of presentation is not supported. - + This type of presentation is not supported. You must select an item to delete. - + You must select an item to delete. @@ -2855,22 +3050,22 @@ The content encoding is not UTF-8. Presentations - Presentations + Presentations Available Controllers - Available Controllers + Available Controllers Advanced - Advanced + Advanced Allow presentation application to be overriden - + Allow presentation application to be overriden @@ -2878,7 +3073,7 @@ The content encoding is not UTF-8. <strong>Remote Plugin</strong><br />The remote plugin provides the ability to send messages to a running version of OpenLP on a different computer via a web browser or through the remote API. - + <strong>Remote Plugin</strong><br />The remote plugin provides the ability to send messages to a running version of OpenLP on a different computer via a web browser or through the remote API. @@ -2886,22 +3081,22 @@ The content encoding is not UTF-8. Remotes - Remotes + Remotes Serve on IP address: - + Serve on IP address: Port number: - + Port number: Server Settings - + Server Settings @@ -2909,42 +3104,42 @@ The content encoding is not UTF-8. &Song Usage Tracking - + &Song Usage Tracking &Delete Tracking Data - + &Delete Tracking Data Delete song usage data up to a specified date. - + Delete song usage data up to a specified date. &Extract Tracking Data - + &Extract Tracking Data Generate a report on song usage. - + Generate a report on song usage. Toggle Tracking - + Toggle Tracking Toggle the tracking of song usage. - + Toggle the tracking of song usage. <strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services. - + <strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services. @@ -2952,17 +3147,17 @@ The content encoding is not UTF-8. Delete Song Usage Data - + Delete Song Usage Data Delete Selected Song Usage Events? - + Delete Selected Song Usage Events? Are you sure you want to delete selected Song Usage data? - + Are you sure you want to delete selected Song Usage data? @@ -2970,27 +3165,27 @@ The content encoding is not UTF-8. Song Usage Extraction - + Song Usage Extraction Select Date Range - + Select Date Range to - to + to Report Location - Report Location + Report Location Output File Location - Output File Location + Output File Location @@ -3003,12 +3198,12 @@ The content encoding is not UTF-8. Import songs using the import wizard. - + Import songs using the import wizard. <strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs. - + <strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs. @@ -3016,530 +3211,555 @@ The content encoding is not UTF-8. Author Maintenance - Author Maintenance + Author Maintenance Display name: - Display name: + Display name: First name: - First name: + First name: Last name: - Last name: + Last name: Error - Error + Error You need to type in the first name of the author. - You need to type in the first name of the author. + You need to type in the first name of the author. You need to type in the last name of the author. - You need to type in the last name of the author. + You need to type in the last name of the author. - You have not set a display name for the author, would you like me to combine the first and last names for you? + You have not set a display name for the author, combine the first and last names? SongsPlugin.EditSongForm - + Song Editor - Song Editor + Song Editor - + &Title: - + &Title: - + Alt&ernate title: - + Alt&ernate title: - + &Lyrics: - + &Lyrics: - + &Verse order: - + &Verse order: - + &Add - + &Add - + &Edit - &Edit + &Edit - + Ed&it All - + Ed&it All - + &Delete - + &Delete - + Title && Lyrics - Title && Lyrics + Title && Lyrics - + Authors - Authors + Authors - + &Add to Song - &Add to Song + &Add to Song - + &Remove - &Remove + &Remove - + &Manage Authors, Topics, Song Books - + &Manage Authors, Topics, Song Books - + Topic - Topic + Topic - + A&dd to Song - A&dd to Song + A&dd to Song - + R&emove - R&emove + R&emove - + Song Book - Song Book + Song Book - - Song No.: - + + Book: + Book: - + + Number: + Number: + + + Authors, Topics && Song Book - + Authors, Topics && Song Book - + Theme - Theme + Theme - + New &Theme - + New &Theme - + Copyright Information - Copyright Information + Copyright Information - + © - + © - + CCLI number: - + CCLI number: - + Comments - Comments + Comments - + Theme, Copyright Info && Comments - Theme, Copyright Info && Comments + Theme, Copyright Info && Comments Save && Preview - Save && Preview + Save && Preview Add Author - + Add Author This author does not exist, do you want to add them? - + This author does not exist, do you want to add them? - + Error - Error + Error This author is already in the list. - + This author is already in the list. No Author Selected - + No Author Selected You have not selected a valid author. Either select an author from the list, or type in a new author and click the "Add Author to Song" button to add the new author. - + You have not selected a valid author. Either select an author from the list, or type in a new author and click the "Add Author to Song" button to add the new author. Add Topic - + Add Topic This topic does not exist, do you want to add it? - + This topic does not exist, do you want to add it? This topic is already in the list. - + This topic is already in the list. No Topic Selected - + No Topic Selected You have not selected a valid topic. Either select a topic from the list, or type in a new topic and click the "Add Topic to Song" button to add the new topic. - + You have not selected a valid topic. Either select a topic from the list, or type in a new topic and click the "Add Topic to Song" button to add the new topic. - + You need to type in a song title. - + You need to type in a song title. - + You need to type in at least one verse. - + You need to type in at least one verse. - + Warning - + Warning - + You have not added any authors for this song. Do you want to add an author now? - + You have not added any authors for this song. Do you want to add an author now? - + The verse order is invalid. There is no verse corresponding to %s. Valid entries are %s. - + The verse order is invalid. There is no verse corresponding to %s. Valid entries are %s. - + You have not used %s anywhere in the verse order. Are you sure you want to save the song like this? - + You have not used %s anywhere in the verse order. Are you sure you want to save the song like this? - + Add Book - + Add Book - + This song book does not exist, do you want to add it? - + This song book does not exist, do you want to add it? SongsPlugin.EditVerseForm - + Edit Verse - Edit Verse + Edit Verse - + &Verse type: - + &Verse type: - + &Insert - + &Insert SongsPlugin.ImportWizardForm - + No OpenLP 2.0 Song Database Selected - + No OpenLP 2.0 Song Database Selected - + You need to select an OpenLP 2.0 song database file to import from. - + You need to select an OpenLP 2.0 song database file to import from. - + No openlp.org 1.x Song Database Selected - + No openlp.org 1.x Song Database Selected - + You need to select an openlp.org 1.x song database file to import from. - + You need to select an openlp.org 1.x song database file to import from. - - No OpenLyrics Files Selected - - - - - You need to add at least one OpenLyrics song file to import from. - - - - + No OpenSong Files Selected - + No OpenSong Files Selected - + You need to add at least one OpenSong song file to import from. - + You need to add at least one OpenSong song file to import from. - + No Words of Worship Files Selected - + No Words of Worship Files Selected - + You need to add at least one Words of Worship file to import from. - + You need to add at least one Words of Worship file to import from. - + No CCLI Files Selected - + No CCLI Files Selected - + You need to add at least one CCLI file to import from. - + You need to add at least one CCLI file to import from. - + No Songs of Fellowship File Selected - + No Songs of Fellowship File Selected - + You need to add at least one Songs of Fellowship file to import from. - + You need to add at least one Songs of Fellowship file to import from. - + No Document/Presentation Selected - + No Document/Presentation Selected - + You need to add at least one document or presentation file to import from. - + You need to add at least one document or presentation file to import from. - + Select OpenLP 2.0 Database File - + Select OpenLP 2.0 Database File - + Select openlp.org 1.x Database File - + Select openlp.org 1.x Database File - - Select OpenLyrics Files - - - - + Select Open Song Files - + Select Open Song Files - + Select Words of Worship Files - + Select Words of Worship Files - + + Select CCLI Files + Select CCLI Files + + + Select Songs of Fellowship Files - + Select Songs of Fellowship Files - + Select Document/Presentation Files - + Select Document/Presentation Files - + Starting import... - Starting import... - - - - Song Import Wizard - - - - - Welcome to the Song Import Wizard - - - - - This wizard will help you to import songs from a variety of formats. Click the next button below to start the process by selecting a format to import from. - - - - - Select Import Source - Select Import Source - - - - Select the import format, and where to import from. - Select the import format, and where to import from. - - - - Format: - Format: - - - - OpenLP 2.0 - OpenLP 2.0 - - - - openlp.org 1.x - - - - - OpenLyrics - - - - - OpenSong - OpenSong - - - - Words of Worship - - - - - CCLI/SongSelect - - - - - Songs of Fellowship - - - - - Generic Document/Presentation - - - - - Filename: - - - - - Browse... - - - - - Add Files... - - - - - Remove File(s) - + Starting import... - Importing - Importing + Song Import Wizard + Song Import Wizard + Welcome to the Song Import Wizard + Welcome to the Song Import Wizard + + + + This wizard will help you to import songs from a variety of formats. Click the next button below to start the process by selecting a format to import from. + This wizard will help you to import songs from a variety of formats. Click the next button below to start the process by selecting a format to import from. + + + + Select Import Source + Select Import Source + + + + Select the import format, and where to import from. + Select the import format, and where to import from. + + + + Format: + Format: + + + + OpenLP 2.0 + OpenLP 2.0 + + + + openlp.org 1.x + openlp.org 1.x + + + + OpenLyrics + OpenLyrics + + + + OpenSong + OpenSong + + + + Words of Worship + Words of Worship + + + + CCLI/SongSelect + CCLI/SongSelect + + + + Songs of Fellowship + Songs of Fellowship + + + + Generic Document/Presentation + Generic Document/Presentation + + + + Filename: + Filename: + + + + Browse... + Browse... + + + + The openlp.org 1.x importer has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "python-sqlite" module. + The openlp.org 1.x importer has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "python-sqlite" module. + + + + Add Files... + Add Files... + + + + Remove File(s) + Remove File(s) + + + + The Songs of Fellowship importer has been disabled because OpenLP cannot find OpenOffice.org on your computer. + The Songs of Fellowship importer has been disabled because OpenLP cannot find OpenOffice.org on your computer. + + + + The generic document/presentation importer has been disabled because OpenLP cannot find OpenOffice.org on your computer. + The generic document/presentation importer has been disabled because OpenLP cannot find OpenOffice.org on your computer. + + + + Importing + Importing + + + Please wait while your songs are imported. - + Please wait while your songs are imported. - + Ready. - Ready. + Ready. - + %p% + %p% + + + + Importing "%s"... + Importing "%s"... + + + + Importing %s... + Importing %s... + + + + The OpenLyrics importer has not yet been developed, but as you can see, we are still intending to do so. Hopefully it will be in the next release. @@ -3548,82 +3768,82 @@ The content encoding is not UTF-8. Song - Song + Song Song Maintenance - Song Maintenance + Song Maintenance Maintain the lists of authors, topics and books - Maintain the lists of authors, topics and books + Maintain the lists of authors, topics and books Search: - Search: + Search: Type: - Type: + Type: Clear - Clear + Clear Search - Search + Search Titles - + Titles Lyrics - Lyrics + Lyrics Authors - Authors + Authors You must select an item to edit. - + You must select an item to edit. You must select an item to delete. - + You must select an item to delete. Are you sure you want to delete the selected song? - + Are you sure you want to delete the selected song? Are you sure you want to delete the %d selected songs? - + Are you sure you want to delete the %d selected songs? Delete Song(s)? - + Delete Song(s)? - + CCLI Licence: - CCLI Licence: + CCLI Licence: @@ -3631,53 +3851,53 @@ The content encoding is not UTF-8. Song Book Maintenance - + Song Book Maintenance &Name: - + &Name: &Publisher: - + &Publisher: Error - Error + Error You need to type in a name for the book. - + You need to type in a name for the book. SongsPlugin.SongImport - + copyright - + copyright - + © - + © SongsPlugin.SongImportForm - + Finished import. - Finished import. + Finished import. - + Your song import failed. - + Your song import failed. @@ -3685,146 +3905,146 @@ The content encoding is not UTF-8. Song Maintenance - Song Maintenance + Song Maintenance Authors - Authors + Authors Topics - Topics + Topics Song Books - + Song Books &Add - + &Add &Edit - &Edit + &Edit &Delete - + &Delete Error - Error + Error Could not add your author. - + Could not add your author. This author already exists. - + This author already exists. Could not add your topic. - + Could not add your topic. This topic already exists. - + This topic already exists. Could not add your book. - + Could not add your book. This book already exists. - + This book already exists. Could not save your changes. - - - - - Could not save your modified author, because he already exists. - + Could not save your changes. Could not save your modified topic, because it already exists. - + Could not save your modified topic, because it already exists. Delete Author - Delete Author + Delete Author Are you sure you want to delete the selected author? - + Are you sure you want to delete the selected author? This author cannot be deleted, they are currently assigned to at least one song. - + This author cannot be deleted, they are currently assigned to at least one song. No author selected! - + No author selected Delete Topic - Delete Topic + Delete Topic Are you sure you want to delete the selected topic? - Are you sure you want to delete the selected topic? + Are you sure you want to delete the selected topic? This topic cannot be deleted, it is currently assigned to at least one song. - + This topic cannot be deleted, it is currently assigned to at least one song. No topic selected! - No topic selected! + No topic selected Delete Book - Delete Book + Delete Book Are you sure you want to delete the selected book? - Are you sure you want to delete the selected book? + Are you sure you want to delete the selected book? This book cannot be deleted, it is currently assigned to at least one song. - + This book cannot be deleted, it is currently assigned to at least one song. No book selected! + No book selected + + + + Could not save your modified author, because the author already exists. @@ -3833,22 +4053,22 @@ The content encoding is not UTF-8. Songs - Songs + Songs Songs Mode - Songs Mode + Songs Mode Enable search as you type - + Enable search as you type Display verses on live tool bar - + Display verses on live tool bar @@ -3856,21 +4076,21 @@ The content encoding is not UTF-8. Topic Maintenance - Topic Maintenance + Topic Maintenance Topic name: - Topic name: + Topic name: Error - Error + Error - You need to type in a topic name! + You need to type in a topic name. @@ -3879,37 +4099,37 @@ The content encoding is not UTF-8. Verse - Verse + Verse Chorus - Chorus + Chorus Bridge - Bridge + Bridge Pre-Chorus - Pre-Chorus + Pre-Chorus Intro - Intro + Intro Ending - Ending + Ending Other - Other + Other diff --git a/resources/i18n/en_ZA.ts b/resources/i18n/en_ZA.ts index f56ff3755..1234e3103 100644 --- a/resources/i18n/en_ZA.ts +++ b/resources/i18n/en_ZA.ts @@ -1,5 +1,5 @@ - + AlertsPlugin @@ -197,7 +197,7 @@ - Your scripture reference is either not supported by OpenLP or invalid. Please make sure your reference conforms to one of the following patterns: + Your scripture reference is either not supported by OpenLP or is invalid. Please make sure your reference conforms to one of the following patterns: Book Chapter Book Chapter-Chapter @@ -206,15 +206,7 @@ Book Chapter:Verse-Verse,Verse-Verse Book Chapter:Verse-Verse,Chapter:Verse-Verse Book Chapter:Verse-Chapter:Verse - Your scripture reference is either not supported by OpenLP or invalid. Please make sure your reference conforms to one of the following patterns: - -Book Chapter -Book Chapter-Chapter -Book Chapter:Verse-Verse -Book Chapter:Verse-Verse,Verse-Verse -Book Chapter:Verse-Verse,Chapter:Verse-Verse -Book Chapter:Verse-Chapter:Verse - + @@ -509,21 +501,11 @@ Changes do not affect verses already in the service. Empty Copyright Empty Copyright - - - You need to set a copyright for your Bible! Bibles in the Public Domain need to be marked as such. - You need to set a copyright for your Bible! Bibles in the Public Domain need to be marked as such. - Bible Exists Bible Exists - - - This Bible already exists! Please import a different Bible or first delete the existing one. - This Bible already exists! Please import a different Bible or first delete the existing one. - Open OSIS File @@ -559,21 +541,31 @@ Changes do not affect verses already in the service. Your Bible import failed. Your Bible import failed. + + + You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. + + + + + This Bible already exists. Please import a different Bible or first delete the existing one. + + BiblesPlugin.MediaItem - + Bible Bible - + Quick Quick - + Advanced Advanced @@ -663,12 +655,12 @@ Changes do not affect verses already in the service. No matching book could be found in this Bible. - + etc etc - + Bible not fully loaded. Bible not fully loaded. @@ -710,97 +702,97 @@ Changes do not affect verses already in the service. CustomPlugin.EditCustomForm - + Edit Custom Slides Edit Custom Slides - + Move slide down one position. Move slide down one position. - + &Title: &Title: - + Add New Add New - + Add a new slide at bottom. Add a new slide at bottom. - + Edit Edit - + Edit the selected slide. Edit the selected slide. - + Edit All Edit All - + Edit all the slides at once. Edit all the slides at once. - + Save Save - + Save the slide currently being edited. Save the slide currently being edited. - + Delete Delete - + Delete the selected slide. Delete the selected slide. - + Clear Clear - + Clear edit area Clear edit area - + Split Slide Split Slide - + Split a slide into two by inserting a slide splitter. Split a slide into two by inserting a slide splitter. - + The&me: The&me: - + &Credits: &Credits: @@ -830,7 +822,7 @@ Changes do not affect verses already in the service. You have one or more unsaved slides, please either save your slide(s) or clear your changes. - + Move slide up one position. Move slide up one position. @@ -953,7 +945,7 @@ Changes do not affect verses already in the service. OpenLP - + Image Files Image Files @@ -1683,6 +1675,19 @@ This General Public License does not permit incorporating your program into prop Slide height is %s rows. + + OpenLP.ExceptionDialog + + + Oops! OpenLP hit a problem, and couldn't recover. The text in the box below contains information that might be helpful to the OpenLP developers, so please e-mail it to bugs@openlp.org, along with a detailed description of what you were doing when the problem occurred. + Oops! OpenLP hit a problem, and couldn't recover. The text in the box below contains information that might be helpful to the OpenLP developers, so please e-mail it to bugs@openlp.org, along with a detailed description of what you were doing when the problem occurred. + + + + Error Occurred + Error Occurred + + OpenLP.GeneralTab @@ -1814,12 +1819,12 @@ This General Public License does not permit incorporating your program into prop OpenLP.LanguageManager - + Language Language - + Please restart OpenLP to use your new language setting. Please restart OpenLP to use your new language setting. @@ -1832,9 +1837,9 @@ This General Public License does not permit incorporating your program into prop OpenLP 2.0 - + English - English + English (South Africa) @@ -2049,7 +2054,7 @@ This General Public License does not permit incorporating your program into prop Toggle Service Manager - Toggle Service Manager. + Toggle Service Manager @@ -2207,27 +2212,27 @@ This General Public License does not permit incorporating your program into prop OpenLP Version Updated - + OpenLP Main Display Blanked OpenLP Main Display Blanked - + The Main Display has been blanked out The Main Display has been blanked out - + Save Changes to Service? Save Changes to Service? - + Your service has changed. Do you want to save those changes? Your service has changed. Do you want to save those changes? - + Default Theme: %s Default Theme: %s @@ -2311,7 +2316,7 @@ You can download the latest version from http://openlp.org/. Send the selected item live - Send the selected item live. + Send the selected item live @@ -2321,7 +2326,7 @@ You can download the latest version from http://openlp.org/. Add the selected item(s) to the service - Add the selected item(s) to the service. + Add the selected item(s) to the service @@ -2402,52 +2407,52 @@ You can download the latest version from http://openlp.org/. OpenLP.PluginForm - + Plugin List Plugin List - + Plugin Details Plugin Details - + Version: Version: - + About: About: - + Status: Status: - + Active Active - + Inactive Inactive - + %s (Inactive) %s (Inactive) - + %s (Active) %s (Active) - + %s (Disabled) %s (Disabled) @@ -2488,7 +2493,7 @@ You can download the latest version from http://openlp.org/. Create a new service - + Open Service Open Service @@ -2498,7 +2503,7 @@ You can download the latest version from http://openlp.org/. Load an existing service - + Save Service Save Service @@ -2608,52 +2613,57 @@ You can download the latest version from http://openlp.org/. &Change Item Theme - + Save Changes to Service? Save Changes to Service? - + Your service is unsaved, do you want to save those changes before creating a new one? Your service is unsaved, do you want to save those changes before creating a new one? - + OpenLP Service Files (*.osz) OpenLP Service Files (*.osz) - + Your current service is unsaved, do you want to save the changes before opening a new one? Your current service is unsaved, do you want to save the changes before opening a new one? - + Error Error - + File is not a valid service. The content encoding is not UTF-8. File is not a valid service. The content encoding is not UTF-8. - + File is not a valid service. File is not a valid service. - + Missing Display Handler Missing Display Handler - + Your item cannot be displayed as there is no handler to display it Your item cannot be displayed as there is no handler to display it + + + Your item cannot be displayed as the plugin required to display it is missing or inactive + + OpenLP.ServiceNoteForm @@ -2684,70 +2694,70 @@ The content encoding is not UTF-8. Preview - + Move to previous Move to previous - + Move to next Move to next - + Hide Hide - + Move to live Move to live - + Start continuous loop Start continuous loop - + Stop continuous loop Stop continuous loop - + s s - + Delay between slides in seconds Delay between slides in seconds - + Start playing media Start playing media - - Edit and re-preview song - Edit and re-preview song - - - + Go To Go To + + + Edit and reload song preview + + OpenLP.SpellTextEdit - + Spelling Suggestions Spelling Suggestions - + Formatting Tags Formatting Tags @@ -2859,16 +2869,6 @@ The content encoding is not UTF-8. You are unable to delete the default theme. You are unable to delete the default theme. - - - Theme %s is use in %s plugin. - Theme %s is use in %s plugin. - - - - Theme %s is use by the service manager. - Theme %s is use by the service manager. - You have not selected a theme. @@ -2931,6 +2931,16 @@ The content encoding is not UTF-8. A theme with this name already exists. Would you like to overwrite it? A theme with this name already exists. Would you like to overwrite it? + + + Theme %s is used in the %s plugin. + + + + + Theme %s is used by the service manager. + + OpenLP.ThemesTab @@ -3033,7 +3043,7 @@ The content encoding is not UTF-8. This type of presentation is not supported. - + This type of presentation is not supported. @@ -3236,124 +3246,124 @@ The content encoding is not UTF-8. - You have not set a display name for the author, would you like me to combine the first and last names for you? - You have not set a display name for the author, would you like me to combine the first and last names for you? + You have not set a display name for the author, combine the first and last names? + SongsPlugin.EditSongForm - + Song Editor Song Editor - + &Title: &Title: - + &Lyrics: &Lyrics: - + &Add &Add - + &Edit &Edit - + Ed&it All Ed&it All - + &Delete &Delete - + Title && Lyrics Title && Lyrics - + Authors Authors - + &Add to Song &Add to Song - + &Remove &Remove - + &Manage Authors, Topics, Song Books &Manage Authors, Topics, Song Books - + Topic Topic - + A&dd to Song A&dd to Song - + R&emove R&emove - + Song Book Song Book - + Authors, Topics && Song Book Authors, Topics && Song Book - + Theme Theme - + New &Theme New &Theme - + Copyright Information Copyright Information - + © © - + Comments Comments - + Theme, Copyright Info && Comments Theme, Copyright Info && Comments @@ -3373,7 +3383,7 @@ The content encoding is not UTF-8. This author does not exist, do you want to add them? - + Error Error @@ -3418,315 +3428,340 @@ The content encoding is not UTF-8. You have not selected a valid topic. Either select a topic from the list, or type in a new topic and click the "Add Topic to Song" button to add the new topic. - + You need to type in a song title. You need to type in a song title. - + You need to type in at least one verse. You need to type in at least one verse. - + Warning Warning - + You have not added any authors for this song. Do you want to add an author now? - + You have not added any authors for this song. Do you want to add an author now? - + The verse order is invalid. There is no verse corresponding to %s. Valid entries are %s. - + The verse order is invalid. There is no verse corresponding to %s. Valid entries are %s. - + You have not used %s anywhere in the verse order. Are you sure you want to save the song like this? - + You have not used %s anywhere in the verse order. Are you sure you want to save the song like this? - + Add Book - + Add Book - + This song book does not exist, do you want to add it? - + This song book does not exist, do you want to add it? - + Alt&ernate title: - + Alt&ernate title: - + &Verse order: - + &Verse order: - + CCLI number: - CCLI number: + CCLI number: - - Song No.: - + + Book: + Book: + + + + Number: + Number: SongsPlugin.EditVerseForm - + Edit Verse - Edit Verse + Edit Verse - + &Verse type: - + &Verse type: - + &Insert - + &Insert SongsPlugin.ImportWizardForm - - No OpenLyrics Files Selected - - - - - You need to add at least one OpenLyrics song file to import from. - - - - + No OpenSong Files Selected - + No OpenSong Files Selected - + You need to add at least one OpenSong song file to import from. - + You need to add at least one OpenSong song file to import from. - + No CCLI Files Selected - + No CCLI Files Selected - + You need to add at least one CCLI file to import from. - + You need to add at least one CCLI file to import from. - + Starting import... - Starting import... - - - - Song Import Wizard - - - - - Welcome to the Song Import Wizard - - - - - This wizard will help you to import songs from a variety of formats. Click the next button below to start the process by selecting a format to import from. - - - - - Select Import Source - Select Import Source - - - - Select the import format, and where to import from. - Select the import format, and where to import from. - - - - Format: - Format: - - - - OpenLyrics - - - - - OpenSong - OpenSong - - - - Add Files... - - - - - Remove File(s) - - - - - Filename: - - - - - Browse... - + Starting import... - Importing - Importing + Song Import Wizard + Song Import Wizard + Welcome to the Song Import Wizard + Welcome to the Song Import Wizard + + + + This wizard will help you to import songs from a variety of formats. Click the next button below to start the process by selecting a format to import from. + This wizard will help you to import songs from a variety of formats. Click the next button below to start the process by selecting a format to import from. + + + + Select Import Source + Select Import Source + + + + Select the import format, and where to import from. + Select the import format, and where to import from. + + + + Format: + Format: + + + + OpenLyrics + OpenLyrics + + + + OpenSong + OpenSong + + + + Add Files... + Add Files... + + + + Remove File(s) + Remove File(s) + + + + Filename: + Filename: + + + + Browse... + Browse... + + + + Importing + Importing + + + Please wait while your songs are imported. - + Please wait while your songs are imported. - + Ready. - Ready. + Ready. - + %p% - + %p% - + No OpenLP 2.0 Song Database Selected - + No OpenLP 2.0 Song Database Selected - + You need to select an OpenLP 2.0 song database file to import from. - + You need to select an OpenLP 2.0 song database file to import from. - + No openlp.org 1.x Song Database Selected - + No openlp.org 1.x Song Database Selected - + You need to select an openlp.org 1.x song database file to import from. - + You need to select an openlp.org 1.x song database file to import from. - + No Words of Worship Files Selected - + No Words of Worship Files Selected - + You need to add at least one Words of Worship file to import from. - + You need to add at least one Words of Worship file to import from. - + No Songs of Fellowship File Selected - + No Songs of Fellowship File Selected - + You need to add at least one Songs of Fellowship file to import from. - + You need to add at least one Songs of Fellowship file to import from. - + No Document/Presentation Selected - + No Document/Presentation Selected - + You need to add at least one document or presentation file to import from. - + You need to add at least one document or presentation file to import from. - + Select OpenLP 2.0 Database File - + Select OpenLP 2.0 Database File - + Select openlp.org 1.x Database File - + Select openlp.org 1.x Database File - - Select OpenLyrics Files - - - - + Select Open Song Files - + Select Open Song Files - + Select Words of Worship Files - + Select Words of Worship Files - + Select Songs of Fellowship Files - + Select Songs of Fellowship Files - + Select Document/Presentation Files - + Select Document/Presentation Files - + OpenLP 2.0 - OpenLP 2.0 + OpenLP 2.0 - + openlp.org 1.x - + openlp.org 1.x - + Words of Worship - + Words of Worship - + CCLI/SongSelect - + CCLI/SongSelect - + Songs of Fellowship - + Songs of Fellowship - + Generic Document/Presentation - + Generic Document/Presentation + + + + Select CCLI Files + Select CCLI Files + + + + The openlp.org 1.x importer has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "python-sqlite" module. + The openlp.org 1.x importer has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "python-sqlite" module. + + + + The Songs of Fellowship importer has been disabled because OpenLP cannot find OpenOffice.org on your computer. + The Songs of Fellowship importer has been disabled because OpenLP cannot find OpenOffice.org on your computer. + + + + The generic document/presentation importer has been disabled because OpenLP cannot find OpenOffice.org on your computer. + The generic document/presentation importer has been disabled because OpenLP cannot find OpenOffice.org on your computer. + + + + Importing "%s"... + Importing "%s"... + + + + Importing %s... + Importing %s... + + + + The OpenLyrics importer has not yet been developed, but as you can see, we are still intending to do so. Hopefully it will be in the next release. + The OpenLyrics importer has not yet been developed, but as you can see, we are still intending to do so. Hopefully it will be in the next release. @@ -3734,82 +3769,82 @@ The content encoding is not UTF-8. Song - Song + Song Song Maintenance - + Song Maintenance Maintain the lists of authors, topics and books - Maintain the lists of authors, topics and books + Maintain the lists of authors, topics and books Search: - Search: + Search: Type: - Type: + Type: Clear - Clear + Clear Search - Search + Search Titles - Titles + Titles Lyrics - Lyrics + Lyrics Authors - Authors + Authors You must select an item to edit. - + You must select an item to edit. You must select an item to delete. - You must select an item to delete. + You must select an item to delete. - + CCLI Licence: - CCLI License: + CCLI License: Are you sure you want to delete the selected song? - + Are you sure you want to delete the selected song? Are you sure you want to delete the %d selected songs? - + Are you sure you want to delete the %d selected songs? Delete Song(s)? - + Delete Song(s)? @@ -3817,53 +3852,53 @@ The content encoding is not UTF-8. Song Book Maintenance - + Song Book Maintenance &Name: - + &Name: &Publisher: - + &Publisher: Error - Error + Error You need to type in a name for the book. - + You need to type in a name for the book. SongsPlugin.SongImport - + copyright - + copyright - + © - © + © SongsPlugin.SongImportForm - + Finished import. - Finished import. + Finished import. - + Your song import failed. - + Your song import failed. @@ -3871,147 +3906,147 @@ The content encoding is not UTF-8. Song Maintenance - + Song Maintenance Authors - Authors + Authors Topics - + Topics Song Books - + Song Books &Add - &Add + &Add &Edit - &Edit + &Edit &Delete - &Delete + &Delete Error - Error + Error Could not add your author. - + Could not add your author. This author already exists. - + This author already exists. Could not add your topic. - + Could not add your topic. This topic already exists. - + This topic already exists. Could not add your book. - + Could not add your book. This book already exists. - + This book already exists. Could not save your changes. - - - - - Could not save your modified author, because he already exists. - + Could not save your changes. Could not save your modified topic, because it already exists. - + Could not save your modified topic, because it already exists. Delete Author - + Delete Author Are you sure you want to delete the selected author? - Are you sure you want to delete the selected author? + Are you sure you want to delete the selected author? This author cannot be deleted, they are currently assigned to at least one song. - + This author cannot be deleted, they are currently assigned to at least one song. No author selected! - No author selected! + No author selected! Delete Topic - Delete Topic + Delete Topic Are you sure you want to delete the selected topic? - + Are you sure you want to delete the selected topic? This topic cannot be deleted, it is currently assigned to at least one song. - + This topic cannot be deleted, it is currently assigned to at least one song. No topic selected! - + No topic selected! Delete Book - Delete Book + Delete Book Are you sure you want to delete the selected book? - Are you sure you want to delete the selected book? + Are you sure you want to delete the selected book? This book cannot be deleted, it is currently assigned to at least one song. - + This book cannot be deleted, it is currently assigned to at least one song. No book selected! - No book selected! + No book selected! + + + + Could not save your modified author, because the author already exists. + Could not save your modified author, because the author already exists. @@ -4019,22 +4054,22 @@ The content encoding is not UTF-8. Songs - + Songs Songs Mode - + Songs Mode Enable search as you type - + Enable search as you type Display verses on live tool bar - + Display verses on live tool bar @@ -4042,22 +4077,22 @@ The content encoding is not UTF-8. Topic Maintenance - + Topic Maintenance Topic name: - Topic name: + Topic name: Error - Error + Error - You need to type in a topic name! - You need to type in a topic name! + You need to type in a topic name. + @@ -4065,37 +4100,37 @@ The content encoding is not UTF-8. Verse - + Verse Chorus - + Chorus Bridge - Bridge + Bridge Pre-Chorus - Pre-Chorus + Pre-Chorus Intro - Intro + Intro Ending - Ending + Ending Other - Other + Other diff --git a/resources/i18n/es.ts b/resources/i18n/es.ts index ac7be358a..67bf32454 100644 --- a/resources/i18n/es.ts +++ b/resources/i18n/es.ts @@ -197,7 +197,7 @@ - Your scripture reference is either not supported by OpenLP or invalid. Please make sure your reference conforms to one of the following patterns: + Your scripture reference is either not supported by OpenLP or is invalid. Please make sure your reference conforms to one of the following patterns: Book Chapter Book Chapter-Chapter @@ -500,21 +500,11 @@ Changes do not affect verses already in the service. Empty Copyright Derechos de autor en blanco - - - You need to set a copyright for your Bible! Bibles in the Public Domain need to be marked as such. - ¡Tiene que establecer los derechos de autor de la Biblia! Biblias de Dominio Público deben ser marcados como tales. - Bible Exists Ya existe la Biblia - - - This Bible already exists! Please import a different Bible or first delete the existing one. - ¡La Biblia ya existe! Por favor, importe una diferente o borre la anterior. - Open OSIS File @@ -550,21 +540,31 @@ Changes do not affect verses already in the service. Your Bible import failed. La importación de su Biblia falló. + + + You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. + + + + + This Bible already exists. Please import a different Bible or first delete the existing one. + + BiblesPlugin.MediaItem - + Bible Biblia - + Quick Rápida - + Advanced Avanzado @@ -654,12 +654,12 @@ Changes do not affect verses already in the service. No se encuentra un libro que concuerde, en esta Biblia. - + etc - + Bible not fully loaded. @@ -701,102 +701,102 @@ Changes do not affect verses already in the service. CustomPlugin.EditCustomForm - + Edit Custom Slides Editar Diapositivas Personalizadas - + Move slide up one position. - + Move slide down one position. - + &Title: - + Add New Agregar Nueva - + Add a new slide at bottom. - + Edit Editar - + Edit the selected slide. - + Edit All Editar Todo - + Edit all the slides at once. - + Save Guardar - + Save the slide currently being edited. - + Delete Eliminar - + Delete the selected slide. - + Clear Limpiar - + Clear edit area Limpiar el área de edición - + Split Slide - + Split a slide into two by inserting a slide splitter. - + The&me: - + &Credits: @@ -944,7 +944,7 @@ Changes do not affect verses already in the service. OpenLP - + Image Files @@ -1501,6 +1501,19 @@ This General Public License does not permit incorporating your program into prop + + OpenLP.ExceptionDialog + + + Oops! OpenLP hit a problem, and couldn't recover. The text in the box below contains information that might be helpful to the OpenLP developers, so please e-mail it to bugs@openlp.org, along with a detailed description of what you were doing when the problem occurred. + + + + + Error Occurred + + + OpenLP.GeneralTab @@ -1632,12 +1645,12 @@ This General Public License does not permit incorporating your program into prop OpenLP.LanguageManager - + Language - + Please restart OpenLP to use your new language setting. @@ -1650,7 +1663,7 @@ This General Public License does not permit incorporating your program into prop OpenLP 2.0 - + English Ingles @@ -2032,27 +2045,27 @@ You can download the latest version from http://openlp.org/. Versión de OpenLP Actualizada - + OpenLP Main Display Blanked Pantalla Principal de OpenLP en Blanco - + The Main Display has been blanked out La Pantalla Principal esta en negro - + Save Changes to Service? - + Your service has changed. Do you want to save those changes? - + Default Theme: %s @@ -2218,52 +2231,52 @@ You can download the latest version from http://openlp.org/. OpenLP.PluginForm - + Plugin List Lista de Plugins - + Plugin Details Detalles de Plugin - + Version: Versión: - + About: Acerca de: - + Status: Estado: - + Active Activo - + Inactive Inactivo - + %s (Inactive) - + %s (Active) - + %s (Disabled) @@ -2304,7 +2317,7 @@ You can download the latest version from http://openlp.org/. Crear un servicio nuevo - + Open Service Abrir Servicio @@ -2314,7 +2327,7 @@ You can download the latest version from http://openlp.org/. Abrir un servicio existente - + Save Service Guardar Servicio @@ -2424,51 +2437,56 @@ You can download the latest version from http://openlp.org/. &Cambiar Tema de Ítem - + Save Changes to Service? - + Your service is unsaved, do you want to save those changes before creating a new one? - + OpenLP Service Files (*.osz) - + Your current service is unsaved, do you want to save the changes before opening a new one? - + Error Error - + File is not a valid service. The content encoding is not UTF-8. - + File is not a valid service. - + Missing Display Handler - + Your item cannot be displayed as there is no handler to display it + + + Your item cannot be displayed as the plugin required to display it is missing or inactive + + OpenLP.ServiceNoteForm @@ -2499,70 +2517,70 @@ The content encoding is not UTF-8. Vista Previa - + Move to previous Regresar al anterior - + Move to next Ir al siguiente - + Hide - + Move to live Proyectar en vivo - - Edit and re-preview song - - - - + Start continuous loop Iniciar bucle continuo - + Stop continuous loop Detener el bucle - + s s - + Delay between slides in seconds Espera entre diapositivas en segundos - + Start playing media Iniciar la reproducción de medios - + Go To + + + Edit and reload song preview + + OpenLP.SpellTextEdit - + Spelling Suggestions - + Formatting Tags @@ -2674,16 +2692,6 @@ The content encoding is not UTF-8. You are unable to delete the default theme. - - - Theme %s is use in %s plugin. - - - - - Theme %s is use by the service manager. - - You have not selected a theme. @@ -2745,6 +2753,16 @@ The content encoding is not UTF-8. A theme with this name already exists. Would you like to overwrite it? + + + Theme %s is used in the %s plugin. + + + + + Theme %s is used by the service manager. + + OpenLP.ThemesTab @@ -3050,144 +3068,149 @@ The content encoding is not UTF-8. - You have not set a display name for the author, would you like me to combine the first and last names for you? + You have not set a display name for the author, combine the first and last names? SongsPlugin.EditSongForm - + Song Editor Editor de Canción - + &Title: - + Alt&ernate title: - + &Lyrics: - + &Verse order: - + &Add - + &Edit &Editar - + Ed&it All - + &Delete - + Title && Lyrics Título && Letra - + Authors Autores - + &Add to Song &Agregar a Canción - + &Remove &Quitar - + &Manage Authors, Topics, Song Books - + Topic Categoría - + A&dd to Song A&gregar a Canción - + R&emove &Quitar - + Song Book Himnario - - Song No.: + + Book: + Libro: + + + + Number: - + Authors, Topics && Song Book - + Theme Tema - + New &Theme - + Copyright Information Información de Derechos de Autor - + © - + CCLI number: - + Comments Comentarios - + Theme, Copyright Info && Comments Tema, Derechos de Autor && Comentarios @@ -3207,7 +3230,7 @@ The content encoding is not UTF-8. - + Error Error @@ -3252,42 +3275,42 @@ The content encoding is not UTF-8. - + You need to type in a song title. - + You need to type in at least one verse. - + Warning - + You have not added any authors for this song. Do you want to add an author now? - + The verse order is invalid. There is no verse corresponding to %s. Valid entries are %s. - + You have not used %s anywhere in the verse order. Are you sure you want to save the song like this? - + Add Book - + This song book does not exist, do you want to add it? @@ -3295,17 +3318,17 @@ The content encoding is not UTF-8. SongsPlugin.EditVerseForm - + Edit Verse Editar Verso - + &Verse type: - + &Insert @@ -3313,235 +3336,255 @@ The content encoding is not UTF-8. SongsPlugin.ImportWizardForm - + No OpenLP 2.0 Song Database Selected - + You need to select an OpenLP 2.0 song database file to import from. - + No openlp.org 1.x Song Database Selected - + You need to select an openlp.org 1.x song database file to import from. - - No OpenLyrics Files Selected - - - - - You need to add at least one OpenLyrics song file to import from. - - - - + No OpenSong Files Selected - + You need to add at least one OpenSong song file to import from. - + No Words of Worship Files Selected - + You need to add at least one Words of Worship file to import from. - + No CCLI Files Selected - + You need to add at least one CCLI file to import from. - + No Songs of Fellowship File Selected - + You need to add at least one Songs of Fellowship file to import from. - + No Document/Presentation Selected - + You need to add at least one document or presentation file to import from. - + Select OpenLP 2.0 Database File - + Select openlp.org 1.x Database File - - Select OpenLyrics Files - - - - + Select Open Song Files - + Select Words of Worship Files - + + Select CCLI Files + + + + Select Songs of Fellowship Files - + Select Document/Presentation Files - + Starting import... Iniciando importación... - + Song Import Wizard - + Welcome to the Song Import Wizard - + This wizard will help you to import songs from a variety of formats. Click the next button below to start the process by selecting a format to import from. - + Select Import Source Seleccione Origen de Importación - + Select the import format, and where to import from. Seleccione el formato y el lugar del cual importar. - + Format: Formato: - + OpenLP 2.0 OpenLP 2.0 - + openlp.org 1.x - + OpenLyrics - + OpenSong OpenSong - + Words of Worship - + CCLI/SongSelect - + Songs of Fellowship - + Generic Document/Presentation - + Filename: - + Browse... - + + The openlp.org 1.x importer has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "python-sqlite" module. + + + + Add Files... - + Remove File(s) - + + The Songs of Fellowship importer has been disabled because OpenLP cannot find OpenOffice.org on your computer. + + + + + The generic document/presentation importer has been disabled because OpenLP cannot find OpenOffice.org on your computer. + + + + Importing Importando - + Please wait while your songs are imported. - + Ready. Listo. - + %p% + + + Importing "%s"... + + + + + Importing %s... + + + + + The OpenLyrics importer has not yet been developed, but as you can see, we are still intending to do so. Hopefully it will be in the next release. + + SongsPlugin.MediaItem @@ -3621,7 +3664,7 @@ The content encoding is not UTF-8. - + CCLI Licence: Licencia CCLI: @@ -3657,12 +3700,12 @@ The content encoding is not UTF-8. SongsPlugin.SongImport - + copyright - + © @@ -3670,12 +3713,12 @@ The content encoding is not UTF-8. SongsPlugin.SongImportForm - + Finished import. Importación finalizada. - + Your song import failed. @@ -3757,11 +3800,6 @@ The content encoding is not UTF-8. Could not save your changes. - - - Could not save your modified author, because he already exists. - - Could not save your modified topic, because it already exists. @@ -3827,6 +3865,11 @@ The content encoding is not UTF-8. No book selected! ¡Ningún libro seleccionado! + + + Could not save your modified author, because the author already exists. + + SongsPlugin.SongsTab @@ -3870,8 +3913,8 @@ The content encoding is not UTF-8. - You need to type in a topic name! - ¡Usted tiene que escribir un nombre para la categoría! + You need to type in a topic name. + diff --git a/resources/i18n/et.ts b/resources/i18n/et.ts index 6d7eb1f63..f0ff0e6fb 100644 --- a/resources/i18n/et.ts +++ b/resources/i18n/et.ts @@ -197,7 +197,7 @@ - Your scripture reference is either not supported by OpenLP or invalid. Please make sure your reference conforms to one of the following patterns: + Your scripture reference is either not supported by OpenLP or is invalid. Please make sure your reference conforms to one of the following patterns: Book Chapter Book Chapter-Chapter @@ -495,21 +495,11 @@ Changes do not affect verses already in the service. Empty Copyright - - - You need to set a copyright for your Bible! Bibles in the Public Domain need to be marked as such. - - Bible Exists - - - This Bible already exists! Please import a different Bible or first delete the existing one. - - Open Verses CSV File @@ -550,21 +540,31 @@ Changes do not affect verses already in the service. Version name: + + + You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. + + + + + This Bible already exists. Please import a different Bible or first delete the existing one. + + BiblesPlugin.MediaItem - + Bible - + Quick - + Advanced @@ -644,7 +644,7 @@ Changes do not affect verses already in the service. - + etc @@ -659,7 +659,7 @@ Changes do not affect verses already in the service. - + Bible not fully loaded. @@ -701,47 +701,47 @@ Changes do not affect verses already in the service. CustomPlugin.EditCustomForm - + Edit Custom Slides Kohandatud slaidide muutmine - + Add New Uue lisamine - + Edit Muuda - + Edit All Kõigi muutmine - + Save Salvesta - + Delete Kustuta - + Clear Puhasta - + Clear edit area Muutmise ala puhastamine - + Split Slide Tükelda slaid @@ -756,52 +756,52 @@ Changes do not affect verses already in the service. Viga - + Move slide down one position. - + &Title: - + Add a new slide at bottom. - + Edit the selected slide. - + Edit all the slides at once. - + Save the slide currently being edited. - + Delete the selected slide. - + Split a slide into two by inserting a slide splitter. - + The&me: - + &Credits: @@ -821,7 +821,7 @@ Changes do not affect verses already in the service. - + Move slide up one position. @@ -944,7 +944,7 @@ Changes do not affect verses already in the service. OpenLP - + Image Files @@ -1507,6 +1507,19 @@ This General Public License does not permit incorporating your program into prop + + OpenLP.ExceptionDialog + + + Error Occurred + + + + + Oops! OpenLP hit a problem, and couldn't recover. The text in the box below contains information that might be helpful to the OpenLP developers, so please e-mail it to bugs@openlp.org, along with a detailed description of what you were doing when the problem occurred. + + + OpenLP.GeneralTab @@ -1638,12 +1651,12 @@ This General Public License does not permit incorporating your program into prop OpenLP.LanguageManager - + Language Keel - + Please restart OpenLP to use your new language setting. @@ -1651,7 +1664,7 @@ This General Public License does not permit incorporating your program into prop OpenLP.MainWindow - + English Eesti @@ -2031,27 +2044,27 @@ This General Public License does not permit incorporating your program into prop OpenLP uuendus - + OpenLP Main Display Blanked OpenLP peakuva on tühi - + The Main Display has been blanked out Peakuva on tühi - + Save Changes to Service? Kas salvestada teenistusse tehtud muudatused? - + Your service has changed. Do you want to save those changes? - + Default Theme: %s @@ -2224,52 +2237,52 @@ You can download the latest version from http://openlp.org/. OpenLP.PluginForm - + Plugin List Pluginate loend - + Plugin Details Plugina andmed - + Version: Versioon: - + About: Kirjeldus: - + Status: Olek: - + Active Aktiivne - + Inactive Pole aktiivne - + %s (Inactive) - + %s (Active) - + %s (Disabled) @@ -2310,7 +2323,7 @@ You can download the latest version from http://openlp.org/. Uue teenistuse loomine - + Open Service Teenistuse avamine @@ -2320,7 +2333,7 @@ You can download the latest version from http://openlp.org/. Välise teenistuse laadimine - + Save Service Salvesta teenistus @@ -2405,48 +2418,48 @@ You can download the latest version from http://openlp.org/. - + Save Changes to Service? Kas salvestada teenistusse tehtud muudatused? - + Your service is unsaved, do you want to save those changes before creating a new one? See teenistus pole salvestatud, kas tahad selle uue avamist salvestada? - + OpenLP Service Files (*.osz) - + Your current service is unsaved, do you want to save the changes before opening a new one? See teenistus pole salvestatud, kas tahad enne uue avamist muudatused salvestada? - + Error Viga - + File is not a valid service. The content encoding is not UTF-8. - + File is not a valid service. - + Missing Display Handler - + Your item cannot be displayed as there is no handler to display it Seda elementi pole võimalik näidata ekraanil, kuna puudub seda käsitsev programm @@ -2475,6 +2488,11 @@ The content encoding is not UTF-8. Delete the selected item from the service. + + + Your item cannot be displayed as the plugin required to display it is missing or inactive + + OpenLP.ServiceNoteForm @@ -2505,70 +2523,70 @@ The content encoding is not UTF-8. Eelvaade - + Move to previous Eelmisele liikumine - + Move to next Liikumine järgmisele - + Hide - + Move to live Tõsta ekraanile - + Start continuous loop Katkematu korduse alustamine - + Stop continuous loop Katkematu korduse lõpetamine - + s s - + Delay between slides in seconds Viivitus slaidide vahel sekundites - + Start playing media Meediaesituse alustamine - - Edit and re-preview song + + Go To - - Go To + + Edit and reload song preview OpenLP.SpellTextEdit - + Spelling Suggestions - + Formatting Tags @@ -2680,16 +2698,6 @@ The content encoding is not UTF-8. You are unable to delete the default theme. Vaikimisi kujundust pole võimalik kustutada. - - - Theme %s is use in %s plugin. - - - - - Theme %s is use by the service manager. - - You have not selected a theme. @@ -2751,6 +2759,16 @@ The content encoding is not UTF-8. A theme with this name already exists. Would you like to overwrite it? + + + Theme %s is used in the %s plugin. + + + + + Theme %s is used by the service manager. + + OpenLP.ThemesTab @@ -3056,104 +3074,104 @@ The content encoding is not UTF-8. - You have not set a display name for the author, would you like me to combine the first and last names for you? + You have not set a display name for the author, combine the first and last names? SongsPlugin.EditSongForm - + Song Editor Lauluredaktor - + &Title: - + &Lyrics: - + &Add - + &Edit &Muuda - + Ed&it All - + &Delete &Kustuta - + Title && Lyrics Pealkiri && laulusõnad - + Authors Autorid - + &Add to Song &Lisa laulule - + &Remove &Eemalda - + Topic Teema - + A&dd to Song L&isa laulule - + R&emove &Eemalda - + Song Book Laulik - + Theme Kujundus - + Copyright Information Autoriõiguse andmed - + Comments Kommentaarid - + Theme, Copyright Info && Comments Kujundus, autoriõigus && kommentaarid @@ -3198,27 +3216,27 @@ The content encoding is not UTF-8. - + Add Book - + This song book does not exist, do you want to add it? - + The verse order is invalid. There is no verse corresponding to %s. Valid entries are %s. - + New &Theme - + © @@ -3228,42 +3246,42 @@ The content encoding is not UTF-8. - + Error Viga - + You need to type in a song title. - + You need to type in at least one verse. - + Warning - + You have not added any authors for this song. Do you want to add an author now? - + You have not used %s anywhere in the verse order. Are you sure you want to save the song like this? - + &Manage Authors, Topics, Song Books - + Authors, Topics && Song Book @@ -3278,40 +3296,45 @@ The content encoding is not UTF-8. - + Alt&ernate title: - + &Verse order: - + CCLI number: - - Song No.: + + Book: + + + + + Number: SongsPlugin.EditVerseForm - + Edit Verse - + &Verse type: - + &Insert @@ -3319,235 +3342,255 @@ The content encoding is not UTF-8. SongsPlugin.ImportWizardForm - - No OpenLyrics Files Selected - - - - - You need to add at least one OpenLyrics song file to import from. - - - - + No OpenSong Files Selected - + You need to add at least one OpenSong song file to import from. - + No CCLI Files Selected - + You need to add at least one CCLI file to import from. - + Song Import Wizard - + Welcome to the Song Import Wizard - + This wizard will help you to import songs from a variety of formats. Click the next button below to start the process by selecting a format to import from. - + Select Import Source - + Select the import format, and where to import from. - + Format: - + OpenLyrics - + OpenSong - + Add Files... - + Remove File(s) - + Filename: - + Browse... - + Importing - + Please wait while your songs are imported. - + Ready. - + %p% - + Starting import... - + No OpenLP 2.0 Song Database Selected - + You need to select an OpenLP 2.0 song database file to import from. - + No openlp.org 1.x Song Database Selected - + You need to select an openlp.org 1.x song database file to import from. - + No Words of Worship Files Selected - + You need to add at least one Words of Worship file to import from. - + No Songs of Fellowship File Selected - + You need to add at least one Songs of Fellowship file to import from. - + No Document/Presentation Selected - + You need to add at least one document or presentation file to import from. - + Select OpenLP 2.0 Database File - + Select openlp.org 1.x Database File - - Select OpenLyrics Files - - - - + Select Open Song Files - + Select Words of Worship Files - + Select Songs of Fellowship Files - + Select Document/Presentation Files - + OpenLP 2.0 - + openlp.org 1.x - + Words of Worship - + CCLI/SongSelect - + Songs of Fellowship - + Generic Document/Presentation + + + Select CCLI Files + + + + + The openlp.org 1.x importer has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "python-sqlite" module. + + + + + The OpenLyrics importer has not yet been developed, but as you can see, we are still intending to do so. Hopefully it will be in the next release. + + + + + The Songs of Fellowship importer has been disabled because OpenLP cannot find OpenOffice.org on your computer. + + + + + The generic document/presentation importer has been disabled because OpenLP cannot find OpenOffice.org on your computer. + + + + + Importing "%s"... + + + + + Importing %s... + + SongsPlugin.MediaItem @@ -3597,7 +3640,7 @@ The content encoding is not UTF-8. - + CCLI Licence: @@ -3663,12 +3706,12 @@ The content encoding is not UTF-8. SongsPlugin.SongImport - + copyright - + © @@ -3676,12 +3719,12 @@ The content encoding is not UTF-8. SongsPlugin.SongImportForm - + Finished import. - + Your song import failed. @@ -3803,11 +3846,6 @@ The content encoding is not UTF-8. Could not save your changes. - - - Could not save your modified author, because he already exists. - - Could not save your modified topic, because it already exists. @@ -3833,6 +3871,11 @@ The content encoding is not UTF-8. No book selected! + + + Could not save your modified author, because the author already exists. + + SongsPlugin.SongsTab @@ -3876,7 +3919,7 @@ The content encoding is not UTF-8. - You need to type in a topic name! + You need to type in a topic name. diff --git a/resources/i18n/hu.ts b/resources/i18n/hu.ts index ca1dbfb43..0e01ccbdb 100644 --- a/resources/i18n/hu.ts +++ b/resources/i18n/hu.ts @@ -197,7 +197,7 @@ - Your scripture reference is either not supported by OpenLP or invalid. Please make sure your reference conforms to one of the following patterns: + Your scripture reference is either not supported by OpenLP or is invalid. Please make sure your reference conforms to one of the following patterns: Book Chapter Book Chapter-Chapter @@ -500,21 +500,11 @@ Changes do not affect verses already in the service. Empty Copyright Üres a szerzői jog - - - You need to set a copyright for your Bible! Bibles in the Public Domain need to be marked as such. - Meg kell adni a szerzői jogokat! A közkincs Bibliákat meg kell jelölni ilyennek. - Bible Exists Biblia létezik - - - This Bible already exists! Please import a different Bible or first delete the existing one. - Ez a Biblia már létezik! Kérem, importáljon egy másik Bibliát vagy előbb törölje a meglévőt. - Open OSIS File @@ -550,21 +540,31 @@ Changes do not affect verses already in the service. Your Bible import failed. A Biblia importálása nem sikerült. + + + You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. + + + + + This Bible already exists. Please import a different Bible or first delete the existing one. + + BiblesPlugin.MediaItem - + Bible Biblia - + Quick Gyors - + Advanced Haladó @@ -654,12 +654,12 @@ Changes do not affect verses already in the service. Nem található ilyen könyv ebben a Bibliában. - + etc - + Bible not fully loaded. @@ -701,102 +701,102 @@ Changes do not affect verses already in the service. CustomPlugin.EditCustomForm - + Edit Custom Slides Egyedi diák szerkesztése - + Move slide up one position. - + Move slide down one position. - + &Title: - + Add New Új hozzáadása - + Add a new slide at bottom. - + Edit Szerkesztés - + Edit the selected slide. - + Edit All Összes szerkesztése - + Edit all the slides at once. - + Save Mentés - + Save the slide currently being edited. - + Delete Törlés - + Delete the selected slide. - + Clear - + Clear edit area Szerkesztő terület törlése - + Split Slide Dia kettéválasztása - + Split a slide into two by inserting a slide splitter. - + The&me: - + &Credits: @@ -944,7 +944,7 @@ Changes do not affect verses already in the service. OpenLP - + Image Files @@ -1507,6 +1507,19 @@ This General Public License does not permit incorporating your program into prop + + OpenLP.ExceptionDialog + + + Oops! OpenLP hit a problem, and couldn't recover. The text in the box below contains information that might be helpful to the OpenLP developers, so please e-mail it to bugs@openlp.org, along with a detailed description of what you were doing when the problem occurred. + + + + + Error Occurred + + + OpenLP.GeneralTab @@ -1638,12 +1651,12 @@ This General Public License does not permit incorporating your program into prop OpenLP.LanguageManager - + Language Nyelv - + Please restart OpenLP to use your new language setting. @@ -1656,7 +1669,7 @@ This General Public License does not permit incorporating your program into prop - + English Magyar @@ -2038,27 +2051,27 @@ You can download the latest version from http://openlp.org/. OpenLP verziófrissítés - + OpenLP Main Display Blanked Sötét OpenLP fő képernyő - + The Main Display has been blanked out A fő képernyő el lett sötétítve - + Save Changes to Service? - + Your service has changed. Do you want to save those changes? - + Default Theme: %s @@ -2224,52 +2237,52 @@ You can download the latest version from http://openlp.org/. OpenLP.PluginForm - + Plugin List Bővítménylista - + Plugin Details Bővítmény részletei - + Version: Verzió: - + About: Névjegy: - + Status: Állapot: - + Active Aktív - + Inactive Inaktív - + %s (Inactive) - + %s (Active) - + %s (Disabled) @@ -2310,7 +2323,7 @@ You can download the latest version from http://openlp.org/. Új szolgálat létrehozása - + Open Service Szolgálat megnyitása @@ -2320,7 +2333,7 @@ You can download the latest version from http://openlp.org/. Egy meglévő szolgálat betöltése - + Save Service Szolgálat mentése @@ -2430,51 +2443,56 @@ You can download the latest version from http://openlp.org/. - + Save Changes to Service? - + Your service is unsaved, do you want to save those changes before creating a new one? A szolgálat nincs elmentve, szeretné menteni, mielőtt az újat létrehozná? - + OpenLP Service Files (*.osz) - + Your current service is unsaved, do you want to save the changes before opening a new one? A szolgálat nincs elmentve, szeretné menteni, mielőtt az újat megnyitná? - + Error Hiba - + File is not a valid service. The content encoding is not UTF-8. - + File is not a valid service. - + Missing Display Handler Hiányzó képernyő kezelő - + Your item cannot be displayed as there is no handler to display it Az elemet nem lehet megjeleníteni, mert nincs kezelő, amely megjelenítené + + + Your item cannot be displayed as the plugin required to display it is missing or inactive + + OpenLP.ServiceNoteForm @@ -2505,70 +2523,70 @@ The content encoding is not UTF-8. Előnézet - + Move to previous Mozgatás az előzőre - + Move to next Mozgatás a következőre - + Hide - + Move to live Mozgatás az egyenes adásban lévőre - - Edit and re-preview song - - - - + Start continuous loop Folyamatos vetítés indítása - + Stop continuous loop Folyamatos vetítés leállítása - + s mp - + Delay between slides in seconds Diák közötti késleltetés másodpercben - + Start playing media Médialejátszás indítása - + Go To + + + Edit and reload song preview + + OpenLP.SpellTextEdit - + Spelling Suggestions - + Formatting Tags @@ -2680,16 +2698,6 @@ The content encoding is not UTF-8. You are unable to delete the default theme. Az alapértelmezett témát nem lehet törölni. - - - Theme %s is use in %s plugin. - - - - - Theme %s is use by the service manager. - - You have not selected a theme. @@ -2751,6 +2759,16 @@ The content encoding is not UTF-8. A theme with this name already exists. Would you like to overwrite it? + + + Theme %s is used in the %s plugin. + + + + + Theme %s is used by the service manager. + + OpenLP.ThemesTab @@ -3056,144 +3074,149 @@ The content encoding is not UTF-8. - You have not set a display name for the author, would you like me to combine the first and last names for you? + You have not set a display name for the author, combine the first and last names? SongsPlugin.EditSongForm - + Song Editor Dalszerkesztő - + &Title: - + Alt&ernate title: - + &Lyrics: - + &Verse order: - + &Add - + &Edit &Szerkesztés - + Ed&it All - + &Delete &Törlés - + Title && Lyrics Cím és dalszöveg - + Authors Szerzők - + &Add to Song &Hozzáadás dalhoz - + &Remove &Eltávolítás - + &Manage Authors, Topics, Song Books - + Topic Témakör - + A&dd to Song &Hozzáadás dalhoz - + R&emove &Eltávolítás - + Song Book Daloskönyv - - Song No.: + + Book: + Könyv: + + + + Number: - + Authors, Topics && Song Book - + Theme Téma - + New &Theme - + Copyright Information Szerzői jogi információ - + © - + CCLI number: - + Comments Megjegyzések - + Theme, Copyright Info && Comments Téma, szerzői jogi infók és megjegyzések @@ -3213,7 +3236,7 @@ The content encoding is not UTF-8. - + Error Hiba @@ -3258,42 +3281,42 @@ The content encoding is not UTF-8. - + You need to type in a song title. - + You need to type in at least one verse. - + Warning - + You have not added any authors for this song. Do you want to add an author now? - + The verse order is invalid. There is no verse corresponding to %s. Valid entries are %s. - + You have not used %s anywhere in the verse order. Are you sure you want to save the song like this? - + Add Book - + This song book does not exist, do you want to add it? @@ -3301,17 +3324,17 @@ The content encoding is not UTF-8. SongsPlugin.EditVerseForm - + Edit Verse Versszak szerkesztése - + &Verse type: - + &Insert @@ -3319,235 +3342,255 @@ The content encoding is not UTF-8. SongsPlugin.ImportWizardForm - + No OpenLP 2.0 Song Database Selected - + You need to select an OpenLP 2.0 song database file to import from. - + No openlp.org 1.x Song Database Selected - + You need to select an openlp.org 1.x song database file to import from. - - No OpenLyrics Files Selected - Nincsenek kijelölt OpenLyrics fájlok - - - - You need to add at least one OpenLyrics song file to import from. - Meg kell adni legalább egy OpenLyrics dal fájlt az importáláshoz. - - - + No OpenSong Files Selected Nincsenek kijelölt OpenSong fájlok - + You need to add at least one OpenSong song file to import from. Meg kell adni legalább egy OpenSong dal fájlt az importáláshoz. - + No Words of Worship Files Selected - + You need to add at least one Words of Worship file to import from. - + No CCLI Files Selected Nincsenek kijelölt CCLI fájlok - + You need to add at least one CCLI file to import from. Meg kell adni legalább egy CCLI fájlt az importáláshoz. - + No Songs of Fellowship File Selected - + You need to add at least one Songs of Fellowship file to import from. - + No Document/Presentation Selected - + You need to add at least one document or presentation file to import from. - + Select OpenLP 2.0 Database File - + Select openlp.org 1.x Database File - - Select OpenLyrics Files - - - - + Select Open Song Files - + Select Words of Worship Files - + + Select CCLI Files + + + + Select Songs of Fellowship Files - + Select Document/Presentation Files - + Starting import... Importálás indítása... - + Song Import Wizard Dalimportáló tündér - + Welcome to the Song Import Wizard Üdvözlet a dalimportáló tündérben - + This wizard will help you to import songs from a variety of formats. Click the next button below to start the process by selecting a format to import from. A tündérrel különféle formátumú dalokat lehet importálni. Az alább található Tovább gombra való kattintással indítható a folyamat első lépése a formátum kiválasztásával. - + Select Import Source Válassza ki az importálandó forrást - + Select the import format, and where to import from. Válassza ki a importálandó forrást és a helyet, ahonnan importálja. - + Format: Formátum: - + OpenLP 2.0 - + openlp.org 1.x - + OpenLyrics - + OpenSong - + Words of Worship - + CCLI/SongSelect - + Songs of Fellowship - + Generic Document/Presentation - + Filename: Fájlnév: - + Browse... Tallózás... - + + The openlp.org 1.x importer has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "python-sqlite" module. + + + + Add Files... Fájlok hozzáadása... - + Remove File(s) Fájlok törlése - + + The Songs of Fellowship importer has been disabled because OpenLP cannot find OpenOffice.org on your computer. + + + + + The generic document/presentation importer has been disabled because OpenLP cannot find OpenOffice.org on your computer. + + + + Importing Importálás - + Please wait while your songs are imported. Kérem, várjon, míg a dalok importálás alatt állnak. - + Ready. Kész. - + %p% + + + Importing "%s"... + + + + + Importing %s... + + + + + The OpenLyrics importer has not yet been developed, but as you can see, we are still intending to do so. Hopefully it will be in the next release. + + SongsPlugin.MediaItem @@ -3627,7 +3670,7 @@ The content encoding is not UTF-8. - + CCLI Licence: CCLI licenc: @@ -3663,12 +3706,12 @@ The content encoding is not UTF-8. SongsPlugin.SongImport - + copyright - + © @@ -3676,12 +3719,12 @@ The content encoding is not UTF-8. SongsPlugin.SongImportForm - + Finished import. Az importálás befejeződött. - + Your song import failed. @@ -3763,11 +3806,6 @@ The content encoding is not UTF-8. Could not save your changes. - - - Could not save your modified author, because he already exists. - - Could not save your modified topic, because it already exists. @@ -3833,6 +3871,11 @@ The content encoding is not UTF-8. No book selected! Nincs kiválasztott könyv! + + + Could not save your modified author, because the author already exists. + + SongsPlugin.SongsTab @@ -3876,8 +3919,8 @@ The content encoding is not UTF-8. - You need to type in a topic name! - Meg kell adni egy témakör nevet! + You need to type in a topic name. + diff --git a/resources/i18n/ko.ts b/resources/i18n/ko.ts index ca4b1696c..7f61ab5f3 100644 --- a/resources/i18n/ko.ts +++ b/resources/i18n/ko.ts @@ -197,7 +197,7 @@ - Your scripture reference is either not supported by OpenLP or invalid. Please make sure your reference conforms to one of the following patterns: + Your scripture reference is either not supported by OpenLP or is invalid. Please make sure your reference conforms to one of the following patterns: Book Chapter Book Chapter-Chapter @@ -500,21 +500,11 @@ Changes do not affect verses already in the service. Empty Copyright - - - You need to set a copyright for your Bible! Bibles in the Public Domain need to be marked as such. - - Bible Exists - - - This Bible already exists! Please import a different Bible or first delete the existing one. - - Open OSIS File @@ -550,21 +540,31 @@ Changes do not affect verses already in the service. Your Bible import failed. + + + You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. + + + + + This Bible already exists. Please import a different Bible or first delete the existing one. + + BiblesPlugin.MediaItem - + Bible 성경 - + Quick 즉시 - + Advanced @@ -654,12 +654,12 @@ Changes do not affect verses already in the service. - + etc - + Bible not fully loaded. @@ -701,102 +701,102 @@ Changes do not affect verses already in the service. CustomPlugin.EditCustomForm - + Edit Custom Slides - + Move slide up one position. - + Move slide down one position. - + &Title: - + Add New - + Add a new slide at bottom. - + Edit - + Edit the selected slide. - + Edit All - + Edit all the slides at once. - + Save - + Save the slide currently being edited. - + Delete - + Delete the selected slide. - + Clear - + Clear edit area - + Split Slide - + Split a slide into two by inserting a slide splitter. - + The&me: - + &Credits: @@ -944,7 +944,7 @@ Changes do not affect verses already in the service. OpenLP - + Image Files @@ -1501,6 +1501,19 @@ This General Public License does not permit incorporating your program into prop + + OpenLP.ExceptionDialog + + + Oops! OpenLP hit a problem, and couldn't recover. The text in the box below contains information that might be helpful to the OpenLP developers, so please e-mail it to bugs@openlp.org, along with a detailed description of what you were doing when the problem occurred. + + + + + Error Occurred + + + OpenLP.GeneralTab @@ -1632,12 +1645,12 @@ This General Public License does not permit incorporating your program into prop OpenLP.LanguageManager - + Language - + Please restart OpenLP to use your new language setting. @@ -1650,7 +1663,7 @@ This General Public License does not permit incorporating your program into prop - + English @@ -2032,27 +2045,27 @@ You can download the latest version from http://openlp.org/. - + OpenLP Main Display Blanked - + The Main Display has been blanked out - + Save Changes to Service? - + Your service has changed. Do you want to save those changes? - + Default Theme: %s @@ -2218,52 +2231,52 @@ You can download the latest version from http://openlp.org/. OpenLP.PluginForm - + Plugin List - + Plugin Details - + Version: - + About: - + Status: - + Active - + Inactive - + %s (Inactive) - + %s (Active) - + %s (Disabled) @@ -2304,7 +2317,7 @@ You can download the latest version from http://openlp.org/. - + Open Service @@ -2314,7 +2327,7 @@ You can download the latest version from http://openlp.org/. - + Save Service @@ -2424,51 +2437,56 @@ You can download the latest version from http://openlp.org/. - + Save Changes to Service? - + Your service is unsaved, do you want to save those changes before creating a new one? - + OpenLP Service Files (*.osz) - + Your current service is unsaved, do you want to save the changes before opening a new one? - + Error - + File is not a valid service. The content encoding is not UTF-8. - + File is not a valid service. - + Missing Display Handler - + Your item cannot be displayed as there is no handler to display it + + + Your item cannot be displayed as the plugin required to display it is missing or inactive + + OpenLP.ServiceNoteForm @@ -2499,70 +2517,70 @@ The content encoding is not UTF-8. - + Move to previous - + Move to next - + Hide - + Move to live - - Edit and re-preview song - - - - + Start continuous loop - + Stop continuous loop - + s - + Delay between slides in seconds - + Start playing media - + Go To + + + Edit and reload song preview + + OpenLP.SpellTextEdit - + Spelling Suggestions - + Formatting Tags @@ -2674,16 +2692,6 @@ The content encoding is not UTF-8. You are unable to delete the default theme. - - - Theme %s is use in %s plugin. - - - - - Theme %s is use by the service manager. - - You have not selected a theme. @@ -2745,6 +2753,16 @@ The content encoding is not UTF-8. A theme with this name already exists. Would you like to overwrite it? + + + Theme %s is used in the %s plugin. + + + + + Theme %s is used by the service manager. + + OpenLP.ThemesTab @@ -3050,144 +3068,149 @@ The content encoding is not UTF-8. - You have not set a display name for the author, would you like me to combine the first and last names for you? + You have not set a display name for the author, combine the first and last names? SongsPlugin.EditSongForm - + Song Editor - + &Title: - + Alt&ernate title: - + &Lyrics: - + &Verse order: - + &Add - + &Edit - + Ed&it All - + &Delete - + Title && Lyrics - + Authors - + &Add to Song - + &Remove - + &Manage Authors, Topics, Song Books - + Topic - + A&dd to Song - + R&emove - + Song Book - - Song No.: + + Book: - + + Number: + + + + Authors, Topics && Song Book - + Theme - + New &Theme - + Copyright Information - + © - + CCLI number: - + Comments - + Theme, Copyright Info && Comments @@ -3207,7 +3230,7 @@ The content encoding is not UTF-8. - + Error @@ -3252,42 +3275,42 @@ The content encoding is not UTF-8. - + You need to type in a song title. - + You need to type in at least one verse. - + Warning - + You have not added any authors for this song. Do you want to add an author now? - + The verse order is invalid. There is no verse corresponding to %s. Valid entries are %s. - + You have not used %s anywhere in the verse order. Are you sure you want to save the song like this? - + Add Book - + This song book does not exist, do you want to add it? @@ -3295,17 +3318,17 @@ The content encoding is not UTF-8. SongsPlugin.EditVerseForm - + Edit Verse - + &Verse type: - + &Insert @@ -3313,235 +3336,255 @@ The content encoding is not UTF-8. SongsPlugin.ImportWizardForm - + No OpenLP 2.0 Song Database Selected - + You need to select an OpenLP 2.0 song database file to import from. - + No openlp.org 1.x Song Database Selected - + You need to select an openlp.org 1.x song database file to import from. - - No OpenLyrics Files Selected - - - - - You need to add at least one OpenLyrics song file to import from. - - - - + No OpenSong Files Selected - + You need to add at least one OpenSong song file to import from. - + No Words of Worship Files Selected - + You need to add at least one Words of Worship file to import from. - + No CCLI Files Selected - + You need to add at least one CCLI file to import from. - + No Songs of Fellowship File Selected - + You need to add at least one Songs of Fellowship file to import from. - + No Document/Presentation Selected - + You need to add at least one document or presentation file to import from. - + Select OpenLP 2.0 Database File - + Select openlp.org 1.x Database File - - Select OpenLyrics Files - - - - + Select Open Song Files - + Select Words of Worship Files - + + Select CCLI Files + + + + Select Songs of Fellowship Files - + Select Document/Presentation Files - + Starting import... - + Song Import Wizard - + Welcome to the Song Import Wizard - + This wizard will help you to import songs from a variety of formats. Click the next button below to start the process by selecting a format to import from. - + Select Import Source - + Select the import format, and where to import from. - + Format: - + OpenLP 2.0 - + openlp.org 1.x - + OpenLyrics - + OpenSong - + Words of Worship - + CCLI/SongSelect - + Songs of Fellowship - + Generic Document/Presentation - + Filename: - + Browse... - + + The openlp.org 1.x importer has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "python-sqlite" module. + + + + Add Files... - + Remove File(s) - + + The Songs of Fellowship importer has been disabled because OpenLP cannot find OpenOffice.org on your computer. + + + + + The generic document/presentation importer has been disabled because OpenLP cannot find OpenOffice.org on your computer. + + + + Importing - + Please wait while your songs are imported. - + Ready. - + %p% + + + Importing "%s"... + + + + + Importing %s... + + + + + The OpenLyrics importer has not yet been developed, but as you can see, we are still intending to do so. Hopefully it will be in the next release. + + SongsPlugin.MediaItem @@ -3621,7 +3664,7 @@ The content encoding is not UTF-8. - + CCLI Licence: @@ -3657,12 +3700,12 @@ The content encoding is not UTF-8. SongsPlugin.SongImport - + copyright - + © @@ -3670,12 +3713,12 @@ The content encoding is not UTF-8. SongsPlugin.SongImportForm - + Finished import. - + Your song import failed. @@ -3757,11 +3800,6 @@ The content encoding is not UTF-8. Could not save your changes. - - - Could not save your modified author, because he already exists. - - Could not save your modified topic, because it already exists. @@ -3827,6 +3865,11 @@ The content encoding is not UTF-8. No book selected! + + + Could not save your modified author, because the author already exists. + + SongsPlugin.SongsTab @@ -3870,7 +3913,7 @@ The content encoding is not UTF-8. - You need to type in a topic name! + You need to type in a topic name. diff --git a/resources/i18n/nb.ts b/resources/i18n/nb.ts index 7e2cdd865..039fe2cc7 100644 --- a/resources/i18n/nb.ts +++ b/resources/i18n/nb.ts @@ -5,12 +5,12 @@ &Alert - + &Varsel Show an alert message. - + Vis en varselmelding. @@ -28,27 +28,27 @@ Alert &text: - + Varsel &tekst: &Parameter(s): - + %Parameter(e): &New - &Ny + &Ny &Save - &Lagre + &Lagre &Delete - + &Slett @@ -63,12 +63,12 @@ &Close - + %Lukk New Alert - + Nytt Varsel @@ -89,12 +89,12 @@ Alerts - + Varsel Font - Skrifttype + Skrifttype @@ -104,7 +104,7 @@ Font color: - + Skrift farge @@ -114,7 +114,7 @@ Font size: - + Skrift størrelse @@ -134,22 +134,22 @@ Location: - + Plassering: Preview - + Forhåndsvisning OpenLP 2.0 - OpenLP 2.0 + OpenLP 2.0 Top - Topp + Topp @@ -159,7 +159,7 @@ Bottom - + Bunn @@ -167,7 +167,7 @@ &Bible - + &Bibel @@ -180,7 +180,7 @@ Book not found - + Fant ikke boken @@ -197,7 +197,7 @@ - Your scripture reference is either not supported by OpenLP or invalid. Please make sure your reference conforms to one of the following patterns: + Your scripture reference is either not supported by OpenLP or is invalid. Please make sure your reference conforms to one of the following patterns: Book Chapter Book Chapter-Chapter @@ -214,7 +214,7 @@ Book Chapter:Verse-Chapter:Verse Bibles - Bibler + Bibler @@ -249,7 +249,7 @@ Book Chapter:Verse-Chapter:Verse Verse Per Line - + Vers pr linje @@ -264,17 +264,17 @@ Book Chapter:Verse-Chapter:Verse ( And ) - + ( og ) { And } - + { og } [ And ] - + [ og ] @@ -293,47 +293,47 @@ Changes do not affect verses already in the service. Bible Import Wizard - Bibelimporteringsverktøy + Bibelimporteringsverktøy Welcome to the Bible Import Wizard - + Velkommen til bibelimporterings-veilederen This wizard will help you to import Bibles from a variety of formats. Click the next button below to start the process by selecting a format to import from. - Denne veiviseren vil hjelpe deg å importere Bibler fra en rekke ulike formater. Klikk på neste-knappen under for å starte prosessen ved å velge et format å importere fra. + Denne veiviseren vil hjelpe deg å importere Bibler fra en rekke ulike formater. Klikk på neste-knappen under for å starte prosessen ved å velge et format å importere fra. Select Import Source - Velg importeringskilde + Velg importeringskilde Select the import format, and where to import from. - + Velg importeringsformat og hvor du vil importere dem Format: - Format: + Format: OSIS - + OSIS CSV - + CSV OpenSong - OpenSong + OpenSong @@ -343,27 +343,27 @@ Changes do not affect verses already in the service. File location: - + Fil plassering: Books location: - + Bok plassering: Verse location: - + Vers plassering: Bible filename: - + Bibel filnavn: Location: - + Plassering: @@ -378,12 +378,12 @@ Changes do not affect verses already in the service. Bible: - Bibel: + Bibel: Download Options - Nedlastingsalternativer + Nedlastingsalternativer @@ -393,12 +393,12 @@ Changes do not affect verses already in the service. Username: - Brukernavn: + Brukernavn: Password: - + Passord: @@ -408,17 +408,17 @@ Changes do not affect verses already in the service. License Details - Lisensdetaljer + Lisensdetaljer Set up the Bible's license details. - Skriv inn Bibelens lisensdetaljer. + Skriv inn Bibelens lisensdetaljer. Version name: - + Versons navn: @@ -428,7 +428,7 @@ Changes do not affect verses already in the service. Permission: - Tillatelse: + Tillatelse: @@ -438,17 +438,17 @@ Changes do not affect verses already in the service. Please wait while your Bible is imported. - + Vennligst vent mens bibelen blir importert Ready. - Klar. + Klar. Invalid Bible Location - Ugyldig Bibelplassering + Ugyldig Bibelplassering @@ -463,7 +463,7 @@ Changes do not affect verses already in the service. You need to specify a file with books of the Bible to use in the import. - Du må angi en fil som inneholder bøkene i Bibelen. + Du må angi en fil som inneholder bøkene i Bibelen du vil importere. @@ -473,12 +473,12 @@ Changes do not affect verses already in the service. You need to specify a file of Bible verses to import. - Du må angi en fil med bibelvers som skal importeres. + Du må angi en fil med bibelvers som skal importeres. Invalid OpenSong Bible - Ugyldig OpenSong Bibel + Ugyldig OpenSong Bibel @@ -500,21 +500,11 @@ Changes do not affect verses already in the service. Empty Copyright Tom copyright - - - You need to set a copyright for your Bible! Bibles in the Public Domain need to be marked as such. - Du må angi hvem som har opphavsrett til denne bibelutgaven! Bibler som ikke er tilknyttet noen opphavsrett må bli merket med dette. - Bible Exists Bibelen eksisterer - - - This Bible already exists! Please import a different Bible or first delete the existing one. - - Open OSIS File @@ -550,21 +540,31 @@ Changes do not affect verses already in the service. Your Bible import failed. Bibelimporteringen mislyktes. + + + You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. + + + + + This Bible already exists. Please import a different Bible or first delete the existing one. + + BiblesPlugin.MediaItem - + Bible Bibel - + Quick Rask - + Advanced Avansert @@ -654,12 +654,12 @@ Changes do not affect verses already in the service. Finner ingen matchende bøker i denne Bibelen. - + etc - + Bible not fully loaded. @@ -701,102 +701,102 @@ Changes do not affect verses already in the service. CustomPlugin.EditCustomForm - + Edit Custom Slides Rediger egendefinerte lysbilder - + Move slide up one position. - + Move slide down one position. - + &Title: - + Add New Legg til Ny - + Add a new slide at bottom. - + Edit - + Edit the selected slide. - + Edit All - + Edit all the slides at once. - + Save Lagre - + Save the slide currently being edited. - + Delete - + Delete the selected slide. - + Clear - + Clear edit area - + Split Slide - + Split a slide into two by inserting a slide splitter. - + The&me: - + &Credits: @@ -944,7 +944,7 @@ Changes do not affect verses already in the service. OpenLP - + Image Files @@ -1453,7 +1453,7 @@ This General Public License does not permit incorporating your program into prop Bottom - + Bunn @@ -1473,7 +1473,7 @@ This General Public License does not permit incorporating your program into prop Preview - + Forhåndsvisning @@ -1501,6 +1501,19 @@ This General Public License does not permit incorporating your program into prop + + OpenLP.ExceptionDialog + + + Oops! OpenLP hit a problem, and couldn't recover. The text in the box below contains information that might be helpful to the OpenLP developers, so please e-mail it to bugs@openlp.org, along with a detailed description of what you were doing when the problem occurred. + + + + + Error Occurred + + + OpenLP.GeneralTab @@ -1632,12 +1645,12 @@ This General Public License does not permit incorporating your program into prop OpenLP.LanguageManager - + Language - + Please restart OpenLP to use your new language setting. @@ -1650,7 +1663,7 @@ This General Public License does not permit incorporating your program into prop OpenLP 2.0 - + English Norsk @@ -2032,27 +2045,27 @@ You can download the latest version from http://openlp.org/. OpenLP versjonen har blitt oppdatert - + OpenLP Main Display Blanked - + The Main Display has been blanked out - + Save Changes to Service? - + Your service has changed. Do you want to save those changes? - + Default Theme: %s @@ -2218,52 +2231,52 @@ You can download the latest version from http://openlp.org/. OpenLP.PluginForm - + Plugin List - + Plugin Details - + Version: - + About: Om: - + Status: Status: - + Active Aktiv - + Inactive - + %s (Inactive) - + %s (Active) - + %s (Disabled) @@ -2304,7 +2317,7 @@ You can download the latest version from http://openlp.org/. Opprett ny møteplan - + Open Service Åpne møteplan @@ -2314,7 +2327,7 @@ You can download the latest version from http://openlp.org/. - + Save Service @@ -2424,51 +2437,56 @@ You can download the latest version from http://openlp.org/. &Bytt objekttema - + Save Changes to Service? - + Your service is unsaved, do you want to save those changes before creating a new one? - + OpenLP Service Files (*.osz) OpenLP møteplan (*.osz) - + Your current service is unsaved, do you want to save the changes before opening a new one? - + Error - + File is not a valid service. The content encoding is not UTF-8. - + File is not a valid service. - + Missing Display Handler - + Your item cannot be displayed as there is no handler to display it + + + Your item cannot be displayed as the plugin required to display it is missing or inactive + + OpenLP.ServiceNoteForm @@ -2496,73 +2514,73 @@ The content encoding is not UTF-8. Preview - + Forhåndsvisning - + Move to previous Flytt til forrige - + Move to next - + Hide - + Move to live - - Edit and re-preview song - - - - + Start continuous loop Start kontinuerlig løkke - + Stop continuous loop - + s - + Delay between slides in seconds Forsinkelse mellom lysbilder i sekund - + Start playing media Start avspilling av media - + Go To + + + Edit and reload song preview + + OpenLP.SpellTextEdit - + Spelling Suggestions - + Formatting Tags @@ -2674,16 +2692,6 @@ The content encoding is not UTF-8. You are unable to delete the default theme. Du kan ikke slette det globale temaet - - - Theme %s is use in %s plugin. - - - - - Theme %s is use by the service manager. - - You have not selected a theme. @@ -2745,6 +2753,16 @@ The content encoding is not UTF-8. A theme with this name already exists. Would you like to overwrite it? + + + Theme %s is used in the %s plugin. + + + + + Theme %s is used by the service manager. + + OpenLP.ThemesTab @@ -3050,144 +3068,149 @@ The content encoding is not UTF-8. - You have not set a display name for the author, would you like me to combine the first and last names for you? + You have not set a display name for the author, combine the first and last names? SongsPlugin.EditSongForm - + Song Editor Sangredigeringsverktøy - + &Title: - + Alt&ernate title: - + &Lyrics: - + &Verse order: - + &Add - + &Edit &Rediger - + Ed&it All - + &Delete - + &Slett - + Title && Lyrics Tittel && Sangtekst - + Authors - + &Add to Song - + &Remove &Fjern - + &Manage Authors, Topics, Song Books - + Topic Emne - + A&dd to Song - + R&emove &Fjern - + Song Book - - Song No.: + + Book: + Bok: + + + + Number: - + Authors, Topics && Song Book - + Theme Tema - + New &Theme - + Copyright Information Copyright-informasjon - + © - + CCLI number: - + Comments - + Theme, Copyright Info && Comments @@ -3207,7 +3230,7 @@ The content encoding is not UTF-8. - + Error @@ -3252,42 +3275,42 @@ The content encoding is not UTF-8. - + You need to type in a song title. - + You need to type in at least one verse. - + Warning - + You have not added any authors for this song. Do you want to add an author now? - + The verse order is invalid. There is no verse corresponding to %s. Valid entries are %s. - + You have not used %s anywhere in the verse order. Are you sure you want to save the song like this? - + Add Book - + This song book does not exist, do you want to add it? @@ -3295,17 +3318,17 @@ The content encoding is not UTF-8. SongsPlugin.EditVerseForm - + Edit Verse Rediger Vers - + &Verse type: - + &Insert @@ -3313,235 +3336,255 @@ The content encoding is not UTF-8. SongsPlugin.ImportWizardForm - + No OpenLP 2.0 Song Database Selected - + You need to select an OpenLP 2.0 song database file to import from. - + No openlp.org 1.x Song Database Selected - + You need to select an openlp.org 1.x song database file to import from. - - No OpenLyrics Files Selected - - - - - You need to add at least one OpenLyrics song file to import from. - - - - + No OpenSong Files Selected - + You need to add at least one OpenSong song file to import from. - + No Words of Worship Files Selected - + You need to add at least one Words of Worship file to import from. - + No CCLI Files Selected - + You need to add at least one CCLI file to import from. - + No Songs of Fellowship File Selected - + You need to add at least one Songs of Fellowship file to import from. - + No Document/Presentation Selected - + You need to add at least one document or presentation file to import from. - + Select OpenLP 2.0 Database File - + Select openlp.org 1.x Database File - - Select OpenLyrics Files - - - - + Select Open Song Files - + Select Words of Worship Files - + + Select CCLI Files + + + + Select Songs of Fellowship Files - + Select Document/Presentation Files - + Starting import... - + Song Import Wizard - + Welcome to the Song Import Wizard - + This wizard will help you to import songs from a variety of formats. Click the next button below to start the process by selecting a format to import from. - + Select Import Source Velg importeringskilde - + Select the import format, and where to import from. - + Velg importeringsformat og hvor du vil importere dem - + Format: Format: - + OpenLP 2.0 OpenLP 2.0 - + openlp.org 1.x - + OpenLyrics - + OpenSong OpenSong - + Words of Worship - + CCLI/SongSelect - + Songs of Fellowship - + Generic Document/Presentation - + Filename: - + Browse... - + + The openlp.org 1.x importer has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "python-sqlite" module. + + + + Add Files... - + Remove File(s) - + + The Songs of Fellowship importer has been disabled because OpenLP cannot find OpenOffice.org on your computer. + + + + + The generic document/presentation importer has been disabled because OpenLP cannot find OpenOffice.org on your computer. + + + + Importing - + Please wait while your songs are imported. - + Ready. Klar. - + %p% + + + Importing "%s"... + + + + + Importing %s... + + + + + The OpenLyrics importer has not yet been developed, but as you can see, we are still intending to do so. Hopefully it will be in the next release. + + SongsPlugin.MediaItem @@ -3621,7 +3664,7 @@ The content encoding is not UTF-8. - + CCLI Licence: CCLI lisens: @@ -3657,12 +3700,12 @@ The content encoding is not UTF-8. SongsPlugin.SongImport - + copyright - + © @@ -3670,12 +3713,12 @@ The content encoding is not UTF-8. SongsPlugin.SongImportForm - + Finished import. Import fullført. - + Your song import failed. @@ -3715,7 +3758,7 @@ The content encoding is not UTF-8. &Delete - + &Slett @@ -3757,11 +3800,6 @@ The content encoding is not UTF-8. Could not save your changes. - - - Could not save your modified author, because he already exists. - - Could not save your modified topic, because it already exists. @@ -3827,6 +3865,11 @@ The content encoding is not UTF-8. No book selected! Ingen bok er valgt! + + + Could not save your modified author, because the author already exists. + + SongsPlugin.SongsTab @@ -3870,8 +3913,8 @@ The content encoding is not UTF-8. - You need to type in a topic name! - Skriv inn et emnenavn! + You need to type in a topic name. + diff --git a/resources/i18n/pt_BR.ts b/resources/i18n/pt_BR.ts index 98bb9733e..b644d81e5 100644 --- a/resources/i18n/pt_BR.ts +++ b/resources/i18n/pt_BR.ts @@ -5,17 +5,17 @@ &Alert - &Alerta + &Alerta Show an alert message. - + Exibir uma mensagem de alerta. <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of nursery alerts on the display screen - + <strong>Plugin de Alertas</strong><br />O plugin de alertas controla a exibição de alertas de berçário na tela de apresentação @@ -23,7 +23,7 @@ Alert Message - Mensagem de Alerta + Mensagem de Alerta @@ -197,7 +197,7 @@ - Your scripture reference is either not supported by OpenLP or invalid. Please make sure your reference conforms to one of the following patterns: + Your scripture reference is either not supported by OpenLP or is invalid. Please make sure your reference conforms to one of the following patterns: Book Chapter Book Chapter-Chapter @@ -500,21 +500,11 @@ Changes do not affect verses already in the service. Empty Copyright Limpar Direito Autoral - - - You need to set a copyright for your Bible! Bibles in the Public Domain need to be marked as such. - Você precisa definir um direito autoral para a sua Bíblia! Bíblias em Domínio Público necessitam ser marcadas como tal. - Bible Exists Bíblia Existe - - - This Bible already exists! Please import a different Bible or first delete the existing one. - A Bíblia já existe! Por favor importe uma Bíblia diferente ou primeiro delete a existente. - Open OSIS File @@ -550,21 +540,31 @@ Changes do not affect verses already in the service. Your Bible import failed. A sua Importação da Bíblia falhou. + + + You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. + + + + + This Bible already exists. Please import a different Bible or first delete the existing one. + + BiblesPlugin.MediaItem - + Bible Bíblia - + Quick Rápido - + Advanced Avançado @@ -654,12 +654,12 @@ Changes do not affect verses already in the service. Nenhum livro foi encontrado nesta Bíblia - + etc - + Bible not fully loaded. @@ -701,102 +701,102 @@ Changes do not affect verses already in the service. CustomPlugin.EditCustomForm - + Edit Custom Slides Editar Slides Customizados - + Move slide up one position. - + Move slide down one position. Mover slide uma posição para baixo. - + &Title: &Título: - + Add New Adicionar Novo - + Add a new slide at bottom. - + Edit Editar - + Edit the selected slide. Editar o slide selecionado. - + Edit All Editar Todos - + Edit all the slides at once. - + Save Salvar - + Save the slide currently being edited. - + Delete Deletar - + Delete the selected slide. - + Clear Limpar - + Clear edit area Limpar área de edição - + Split Slide - + Split a slide into two by inserting a slide splitter. Dividir um slide em dois, inserindo um divisor de slides. - + The&me: - + &Credits: &Créditos: @@ -944,7 +944,7 @@ Changes do not affect verses already in the service. OpenLP - + Image Files @@ -1538,6 +1538,19 @@ This General Public License does not permit incorporating your program into prop + + OpenLP.ExceptionDialog + + + Oops! OpenLP hit a problem, and couldn't recover. The text in the box below contains information that might be helpful to the OpenLP developers, so please e-mail it to bugs@openlp.org, along with a detailed description of what you were doing when the problem occurred. + + + + + Error Occurred + + + OpenLP.GeneralTab @@ -1669,12 +1682,12 @@ This General Public License does not permit incorporating your program into prop OpenLP.LanguageManager - + Language Idioma - + Please restart OpenLP to use your new language setting. Por favor reinicie o OpenLP para usar a nova configuração de idioma. @@ -1687,7 +1700,7 @@ This General Public License does not permit incorporating your program into prop OpenLP 2.0 - + English Inglês @@ -2069,27 +2082,27 @@ You can download the latest version from http://openlp.org/. Versão do OpenLP Atualizada - + OpenLP Main Display Blanked Tela Principal do OpenLP em Branco - + The Main Display has been blanked out A Tela Principal foi apagada - + Save Changes to Service? Salvar Mudanças no Culto? - + Your service has changed. Do you want to save those changes? - + Default Theme: %s Tema padrão: %s @@ -2255,52 +2268,52 @@ You can download the latest version from http://openlp.org/. OpenLP.PluginForm - + Plugin List Lista de Plugins - + Plugin Details Detalhes do Plugin - + Version: Versão: - + About: Sobre: - + Status: Status: - + Active Ativo - + Inactive Inativo - + %s (Inactive) %s (Inativo) - + %s (Active) - + %s (Disabled) @@ -2341,7 +2354,7 @@ You can download the latest version from http://openlp.org/. Criar um novo culto - + Open Service @@ -2351,7 +2364,7 @@ You can download the latest version from http://openlp.org/. Carregar um culto existente - + Save Service Salvar Culto @@ -2461,51 +2474,56 @@ You can download the latest version from http://openlp.org/. &Alterar Tema do Item - + Save Changes to Service? Salvar Mudanças no Culto? - + Your service is unsaved, do you want to save those changes before creating a new one? - + OpenLP Service Files (*.osz) Arquivo de Culto do OpenLP (*.osz) - + Your current service is unsaved, do you want to save the changes before opening a new one? - + Error Erro - + File is not a valid service. The content encoding is not UTF-8. - + File is not a valid service. - + Missing Display Handler - + Your item cannot be displayed as there is no handler to display it + + + Your item cannot be displayed as the plugin required to display it is missing or inactive + + OpenLP.ServiceNoteForm @@ -2536,70 +2554,70 @@ The content encoding is not UTF-8. - + Move to previous Mover para o anterior - + Move to next Mover para o próximo - + Hide - + Move to live Mover para ao vivo - - Edit and re-preview song - - - - + Start continuous loop Iniciar repetição contínua - + Stop continuous loop Parar repetição contínua - + s s - + Delay between slides in seconds Intervalo entre slides em segundos - + Start playing media Iniciar a reprodução de mídia - + Go To + + + Edit and reload song preview + + OpenLP.SpellTextEdit - + Spelling Suggestions - + Formatting Tags @@ -2711,16 +2729,6 @@ The content encoding is not UTF-8. You are unable to delete the default theme. - - - Theme %s is use in %s plugin. - - - - - Theme %s is use by the service manager. - - You have not selected a theme. @@ -2783,6 +2791,16 @@ A codificação do conteúdo não é UTF-8. A theme with this name already exists. Would you like to overwrite it? + + + Theme %s is used in the %s plugin. + + + + + Theme %s is used by the service manager. + + OpenLP.ThemesTab @@ -3088,144 +3106,149 @@ A codificação do conteúdo não é UTF-8. - You have not set a display name for the author, would you like me to combine the first and last names for you? - Você não configurou um nome de exibição para o autor. Você quer que eu combine o primeiro e último nomes para você? + You have not set a display name for the author, combine the first and last names? + SongsPlugin.EditSongForm - + Song Editor Editor de Músicas - + &Title: &Título: - + Alt&ernate title: Título &Alternativo: - + &Lyrics: - + &Verse order: Ordem das &estrofes: - + &Add %Adicionar - + &Edit &Editar - + Ed&it All - + &Delete &Deletar - + Title && Lyrics Título && Letras - + Authors Autores - + &Add to Song &Adicionar à Música - + &Remove &Remover - + &Manage Authors, Topics, Song Books - + Topic Tópico - + A&dd to Song A&dicionar uma Música - + R&emove R&emover - + Song Book Livro de Músicas - - Song No.: + + Book: + Livro: + + + + Number: - + Authors, Topics && Song Book - + Theme Tema - + New &Theme - + Copyright Information Informação de Direitos Autorais - + © - + CCLI number: - + Comments Comentários - + Theme, Copyright Info && Comments Tema, Direitos Autorais && Comentários @@ -3245,7 +3268,7 @@ A codificação do conteúdo não é UTF-8. Este autor não existe, deseja adicioná-lo? - + Error Erro @@ -3290,42 +3313,42 @@ A codificação do conteúdo não é UTF-8. Não há nenhum tópico válido selecionado. Selecione um tópico da lista, ou digite um novo tópico e clique em "Adicionar Tópico à Música" para adicionar o novo tópico. - + You need to type in a song title. - + You need to type in at least one verse. - + Warning - + You have not added any authors for this song. Do you want to add an author now? Você não adicionou nenhum autor a esta música. Deseja adicionar um agora? - + The verse order is invalid. There is no verse corresponding to %s. Valid entries are %s. - + You have not used %s anywhere in the verse order. Are you sure you want to save the song like this? - + Add Book - + This song book does not exist, do you want to add it? Este hinário não existe, deseja adicioná-lo? @@ -3333,17 +3356,17 @@ A codificação do conteúdo não é UTF-8. SongsPlugin.EditVerseForm - + Edit Verse Editar Versículo - + &Verse type: Tipo de &Versículo: - + &Insert @@ -3351,287 +3374,307 @@ A codificação do conteúdo não é UTF-8. SongsPlugin.ImportWizardForm - + No OpenLP 2.0 Song Database Selected - + You need to select an OpenLP 2.0 song database file to import from. - + No openlp.org 1.x Song Database Selected - + You need to select an openlp.org 1.x song database file to import from. - - No OpenLyrics Files Selected - - - - - You need to add at least one OpenLyrics song file to import from. - - - - + No OpenSong Files Selected - + You need to add at least one OpenSong song file to import from. - + No Words of Worship Files Selected - + You need to add at least one Words of Worship file to import from. - + No CCLI Files Selected - + You need to add at least one CCLI file to import from. Você precisa adicionar ao menos um arquivo CCLI para importação. - + No Songs of Fellowship File Selected - + You need to add at least one Songs of Fellowship file to import from. - + No Document/Presentation Selected - + You need to add at least one document or presentation file to import from. - + Select OpenLP 2.0 Database File - + Select openlp.org 1.x Database File - - Select OpenLyrics Files - - - - + Select Open Song Files - + Select Words of Worship Files - + + Select CCLI Files + + + + Select Songs of Fellowship Files - + Select Document/Presentation Files - + Starting import... - Iniciando importação... - - - - Song Import Wizard - - - - - Welcome to the Song Import Wizard - - - - - This wizard will help you to import songs from a variety of formats. Click the next button below to start the process by selecting a format to import from. - - - - - Select Import Source - Selecionar Origem da Importação - - - - Select the import format, and where to import from. - Selecione o formato e de onde será a importação - - - - Format: - Formato: - - - - OpenLP 2.0 - OpenLP 2.0 - - - - openlp.org 1.x - - - - - OpenLyrics - - - - - OpenSong - OpenSong - - - - Words of Worship - - - - - CCLI/SongSelect - - - - - Songs of Fellowship - - - - - Generic Document/Presentation - - - - - Filename: - - - - - Browse... - - - - - Add Files... - - - - - Remove File(s) - Importing - Importando + Song Import Wizard + + Welcome to the Song Import Wizard + + + + + This wizard will help you to import songs from a variety of formats. Click the next button below to start the process by selecting a format to import from. + + + + + Select Import Source + + + + + Select the import format, and where to import from. + + + + + Format: + + + + + OpenLP 2.0 + + + + + openlp.org 1.x + + + + + OpenLyrics + + + + + OpenSong + + + + + Words of Worship + + + + + CCLI/SongSelect + + + + + Songs of Fellowship + + + + + Generic Document/Presentation + + + + + Filename: + + + + + Browse... + + + + + The openlp.org 1.x importer has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "python-sqlite" module. + + + + + Add Files... + + + + + Remove File(s) + + + + + The Songs of Fellowship importer has been disabled because OpenLP cannot find OpenOffice.org on your computer. + + + + + The generic document/presentation importer has been disabled because OpenLP cannot find OpenOffice.org on your computer. + + + + + Importing + + + + Please wait while your songs are imported. - Por favor aguarde enquanto as músicas são importadas. + - + Ready. - Pronto. + - + %p% + + + Importing "%s"... + + + + + Importing %s... + + + + + The OpenLyrics importer has not yet been developed, but as you can see, we are still intending to do so. Hopefully it will be in the next release. + + SongsPlugin.MediaItem Song - Música + Song Maintenance - Manutenção de Músicas + Maintain the lists of authors, topics and books - Gerenciar as listas de autores, tópicos e livros + Search: - Buscar: + Type: - Tipo: + Clear - Limpar + Search - Buscar + Titles - Títulos + Lyrics - Letras + Authors - Autores + @@ -3659,9 +3702,9 @@ A codificação do conteúdo não é UTF-8. - + CCLI Licence: - Licença CCLI: + @@ -3684,7 +3727,7 @@ A codificação do conteúdo não é UTF-8. Error - Erro + @@ -3695,12 +3738,12 @@ A codificação do conteúdo não é UTF-8. SongsPlugin.SongImport - + copyright - + © @@ -3708,12 +3751,12 @@ A codificação do conteúdo não é UTF-8. SongsPlugin.SongImportForm - + Finished import. - Importação Finalizada. + - + Your song import failed. @@ -3723,17 +3766,17 @@ A codificação do conteúdo não é UTF-8. Song Maintenance - Manutenção de Músicas + Authors - Autores + Topics - Tópicos + @@ -3743,22 +3786,22 @@ A codificação do conteúdo não é UTF-8. &Add - %Adicionar + &Edit - &Editar + &Delete - &Deletar + Error - Erro + @@ -3773,7 +3816,7 @@ A codificação do conteúdo não é UTF-8. Could not add your topic. - Não foi possível adicionar o seu tópico. + @@ -3783,7 +3826,7 @@ A codificação do conteúdo não é UTF-8. Could not add your book. - Não foi possível adicionar o livro. + @@ -3795,25 +3838,20 @@ A codificação do conteúdo não é UTF-8. Could not save your changes. - - - Could not save your modified author, because he already exists. - Não foi possível salvar o seu autor modificado, porque ele já existe. - Could not save your modified topic, because it already exists. - Não foi possível salvar o tópico modificado, porque ele já existe. + Delete Author - Deletar Autor + Are you sure you want to delete the selected author? - Você tem certeza que deseja deletar o autor selecionado? + @@ -3823,37 +3861,37 @@ A codificação do conteúdo não é UTF-8. No author selected! - Nenhum autor selecionado! + Delete Topic - Deletar Tópico + Are you sure you want to delete the selected topic? - Você tem certeza que deseja deletar o tópico selecionado? + This topic cannot be deleted, it is currently assigned to at least one song. - Este tópico não pode ser removido, pois está associado a pelo menos uma música. + No topic selected! - Nenhum tópico selecionado! + Delete Book - Deletar Livro + Are you sure you want to delete the selected book? - Você tem certeza que deseja deletar o livro selecionado? + @@ -3863,7 +3901,12 @@ A codificação do conteúdo não é UTF-8. No book selected! - Nenhum livro selecionado! + + + + + Could not save your modified author, because the author already exists. + @@ -3871,12 +3914,12 @@ A codificação do conteúdo não é UTF-8. Songs - Músicas + Songs Mode - Modo de Músicas + @@ -3894,22 +3937,22 @@ A codificação do conteúdo não é UTF-8. Topic Maintenance - Manutenção de Tópico + Topic name: - Nome do tópico: + Error - Erro + - You need to type in a topic name! - Você precisa digitar um nome para o tópico! + You need to type in a topic name. + @@ -3917,37 +3960,37 @@ A codificação do conteúdo não é UTF-8. Verse - Versículo + Chorus - Refrão + Bridge - Ligação + Pre-Chorus - Pré-Refrão + Intro - Introdução + Ending - Terminando + Other - Outro + diff --git a/resources/i18n/sv.ts b/resources/i18n/sv.ts index c38fa6658..f42206250 100644 --- a/resources/i18n/sv.ts +++ b/resources/i18n/sv.ts @@ -197,7 +197,7 @@ - Your scripture reference is either not supported by OpenLP or invalid. Please make sure your reference conforms to one of the following patterns: + Your scripture reference is either not supported by OpenLP or is invalid. Please make sure your reference conforms to one of the following patterns: Book Chapter Book Chapter-Chapter @@ -500,21 +500,11 @@ Changes do not affect verses already in the service. Empty Copyright Tom copyright-information - - - You need to set a copyright for your Bible! Bibles in the Public Domain need to be marked as such. - Du måste infoga copyright-information för din Bibel! Biblar i den publika domänen måste innehålla det. - Bible Exists Bibel existerar - - - This Bible already exists! Please import a different Bible or first delete the existing one. - Bibeln existerar redan! Importera en annan BIbel eller ta bort den som finns. - Open OSIS File @@ -550,21 +540,31 @@ Changes do not affect verses already in the service. Your Bible import failed. Din Bibelimport misslyckades. + + + You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. + + + + + This Bible already exists. Please import a different Bible or first delete the existing one. + + BiblesPlugin.MediaItem - + Bible Bibel - + Quick Snabb - + Advanced Avancerat @@ -654,12 +654,12 @@ Changes do not affect verses already in the service. Ingen matchande bok kunde hittas i den här Bibeln. - + etc - + Bible not fully loaded. @@ -701,102 +701,102 @@ Changes do not affect verses already in the service. CustomPlugin.EditCustomForm - + Edit Custom Slides Redigera anpassad bild - + Move slide up one position. - + Move slide down one position. - + &Title: - + Add New Lägg till ny - + Add a new slide at bottom. - + Edit Redigera - + Edit the selected slide. - + Edit All Redigera alla - + Edit all the slides at once. - + Save Spara - + Save the slide currently being edited. - + Delete Ta bort - + Delete the selected slide. - + Clear - + Clear edit area Töm redigeringsområde - + Split Slide - + Split a slide into two by inserting a slide splitter. - + The&me: - + &Credits: @@ -944,7 +944,7 @@ Changes do not affect verses already in the service. OpenLP - + Image Files @@ -1501,6 +1501,19 @@ This General Public License does not permit incorporating your program into prop + + OpenLP.ExceptionDialog + + + Oops! OpenLP hit a problem, and couldn't recover. The text in the box below contains information that might be helpful to the OpenLP developers, so please e-mail it to bugs@openlp.org, along with a detailed description of what you were doing when the problem occurred. + + + + + Error Occurred + + + OpenLP.GeneralTab @@ -1632,12 +1645,12 @@ This General Public License does not permit incorporating your program into prop OpenLP.LanguageManager - + Language - + Please restart OpenLP to use your new language setting. @@ -1650,7 +1663,7 @@ This General Public License does not permit incorporating your program into prop OpenLP 2.0 - + English Engelska @@ -2032,27 +2045,27 @@ You can download the latest version from http://openlp.org/. OpenLP-version uppdaterad - + OpenLP Main Display Blanked OpenLP huvuddisplay tömd - + The Main Display has been blanked out Huvuddisplayen har rensats - + Save Changes to Service? - + Your service has changed. Do you want to save those changes? - + Default Theme: %s @@ -2218,52 +2231,52 @@ You can download the latest version from http://openlp.org/. OpenLP.PluginForm - + Plugin List Pluginlista - + Plugin Details Plugindetaljer - + Version: Version: - + About: Om: - + Status: Status: - + Active Aktiv - + Inactive Inaktiv - + %s (Inactive) - + %s (Active) - + %s (Disabled) @@ -2304,7 +2317,7 @@ You can download the latest version from http://openlp.org/. Skapa en ny mötesplanering - + Open Service @@ -2314,7 +2327,7 @@ You can download the latest version from http://openlp.org/. Ladda en planering - + Save Service @@ -2424,51 +2437,56 @@ You can download the latest version from http://openlp.org/. &Byt objektets tema - + Save Changes to Service? - + Your service is unsaved, do you want to save those changes before creating a new one? - + OpenLP Service Files (*.osz) - + Your current service is unsaved, do you want to save the changes before opening a new one? - + Error Fel - + File is not a valid service. The content encoding is not UTF-8. - + File is not a valid service. - + Missing Display Handler - + Your item cannot be displayed as there is no handler to display it + + + Your item cannot be displayed as the plugin required to display it is missing or inactive + + OpenLP.ServiceNoteForm @@ -2499,70 +2517,70 @@ The content encoding is not UTF-8. Förhandsgranska - + Move to previous Flytta till föregående - + Move to next Flytta till nästa - + Hide - + Move to live Flytta till live - - Edit and re-preview song - - - - + Start continuous loop Börja oändlig loop - + Stop continuous loop Stoppa upprepad loop - + s s - + Delay between slides in seconds Fördröjning mellan bilder, i sekunder - + Start playing media Börja spela media - + Go To + + + Edit and reload song preview + + OpenLP.SpellTextEdit - + Spelling Suggestions - + Formatting Tags @@ -2674,16 +2692,6 @@ The content encoding is not UTF-8. You are unable to delete the default theme. Du kan inte ta bort standardtemat. - - - Theme %s is use in %s plugin. - - - - - Theme %s is use by the service manager. - - You have not selected a theme. @@ -2745,6 +2753,16 @@ The content encoding is not UTF-8. A theme with this name already exists. Would you like to overwrite it? + + + Theme %s is used in the %s plugin. + + + + + Theme %s is used by the service manager. + + OpenLP.ThemesTab @@ -3050,144 +3068,149 @@ The content encoding is not UTF-8. - You have not set a display name for the author, would you like me to combine the first and last names for you? + You have not set a display name for the author, combine the first and last names? SongsPlugin.EditSongForm - + Song Editor Sångredigerare - + &Title: - + Alt&ernate title: - + &Lyrics: - + &Verse order: - + &Add - + &Edit &Redigera - + Ed&it All - + &Delete - + Title && Lyrics Titel && Sångtexter - + Authors - + &Add to Song &Lägg till i sång - + &Remove &Ta bort - + &Manage Authors, Topics, Song Books - + Topic Ämne - + A&dd to Song Lägg till i sång - + R&emove Ta &bort - + Song Book Sångbok - - Song No.: + + Book: + Bok: + + + + Number: - + Authors, Topics && Song Book - + Theme Tema - + New &Theme - + Copyright Information Copyright-information - + © - + CCLI number: - + Comments Kommentarer - + Theme, Copyright Info && Comments Tema, copyright-info && kommentarer @@ -3207,7 +3230,7 @@ The content encoding is not UTF-8. - + Error Fel @@ -3252,42 +3275,42 @@ The content encoding is not UTF-8. - + You need to type in a song title. - + You need to type in at least one verse. - + Warning - + You have not added any authors for this song. Do you want to add an author now? - + The verse order is invalid. There is no verse corresponding to %s. Valid entries are %s. - + You have not used %s anywhere in the verse order. Are you sure you want to save the song like this? - + Add Book - + This song book does not exist, do you want to add it? @@ -3295,17 +3318,17 @@ The content encoding is not UTF-8. SongsPlugin.EditVerseForm - + Edit Verse Redigera vers - + &Verse type: - + &Insert @@ -3313,235 +3336,255 @@ The content encoding is not UTF-8. SongsPlugin.ImportWizardForm - + No OpenLP 2.0 Song Database Selected - + You need to select an OpenLP 2.0 song database file to import from. - + No openlp.org 1.x Song Database Selected - + You need to select an openlp.org 1.x song database file to import from. - - No OpenLyrics Files Selected - - - - - You need to add at least one OpenLyrics song file to import from. - - - - + No OpenSong Files Selected - + You need to add at least one OpenSong song file to import from. - + No Words of Worship Files Selected - + You need to add at least one Words of Worship file to import from. - + No CCLI Files Selected - + You need to add at least one CCLI file to import from. - + No Songs of Fellowship File Selected - + You need to add at least one Songs of Fellowship file to import from. - + No Document/Presentation Selected - + You need to add at least one document or presentation file to import from. - + Select OpenLP 2.0 Database File - + Select openlp.org 1.x Database File - - Select OpenLyrics Files - - - - + Select Open Song Files - + Select Words of Worship Files - + + Select CCLI Files + + + + Select Songs of Fellowship Files - + Select Document/Presentation Files - + Starting import... Påbörjar import... - + Song Import Wizard - + Welcome to the Song Import Wizard - + This wizard will help you to import songs from a variety of formats. Click the next button below to start the process by selecting a format to import from. - + Select Import Source Välj importkälla - + Select the import format, and where to import from. Välj format för import, och plats att importera från. - + Format: Format: - + OpenLP 2.0 OpenLP 2.0 - + openlp.org 1.x - + OpenLyrics - + OpenSong OpenSong - + Words of Worship - + CCLI/SongSelect - + Songs of Fellowship - + Generic Document/Presentation - + Filename: - + Browse... - + + The openlp.org 1.x importer has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "python-sqlite" module. + + + + Add Files... - + Remove File(s) - + + The Songs of Fellowship importer has been disabled because OpenLP cannot find OpenOffice.org on your computer. + + + + + The generic document/presentation importer has been disabled because OpenLP cannot find OpenOffice.org on your computer. + + + + Importing Importerar - + Please wait while your songs are imported. - + Ready. Redo. - + %p% + + + Importing "%s"... + + + + + Importing %s... + + + + + The OpenLyrics importer has not yet been developed, but as you can see, we are still intending to do so. Hopefully it will be in the next release. + + SongsPlugin.MediaItem @@ -3621,7 +3664,7 @@ The content encoding is not UTF-8. - + CCLI Licence: CCLI-licens: @@ -3657,12 +3700,12 @@ The content encoding is not UTF-8. SongsPlugin.SongImport - + copyright - + © @@ -3670,12 +3713,12 @@ The content encoding is not UTF-8. SongsPlugin.SongImportForm - + Finished import. Importen är färdig. - + Your song import failed. @@ -3757,11 +3800,6 @@ The content encoding is not UTF-8. Could not save your changes. - - - Could not save your modified author, because he already exists. - - Could not save your modified topic, because it already exists. @@ -3827,6 +3865,11 @@ The content encoding is not UTF-8. No book selected! Ingen bok vald! + + + Could not save your modified author, because the author already exists. + + SongsPlugin.SongsTab @@ -3870,8 +3913,8 @@ The content encoding is not UTF-8. - You need to type in a topic name! - Du måste skriva in ett namn på ämnet! + You need to type in a topic name. + diff --git a/resources/images/about-new.bmp b/resources/images/about-new.bmp old mode 100755 new mode 100644 diff --git a/resources/openlp.desktop b/resources/openlp.desktop old mode 100644 new mode 100755 index 0c843bd69..d84f69297 --- a/resources/openlp.desktop +++ b/resources/openlp.desktop @@ -1,3 +1,4 @@ +#!/usr/bin/env xdg-open [Desktop Entry] Encoding=UTF-8 Name=OpenLP diff --git a/scripts/bible-1to2-converter.py b/scripts/bible-1to2-converter.py index 111d22043..ebf246608 100755 --- a/scripts/bible-1to2-converter.py +++ b/scripts/bible-1to2-converter.py @@ -127,6 +127,8 @@ def import_bible(): for row in rows: key = unicode(row[0], u'cp1252') value = unicode(row[1], u'cp1252') + if key == u'Permission': + key = u'Permissions' sql_insert = u'INSERT INTO metadata '\ '("key", "value") '\ 'VALUES (?, ?)' diff --git a/scripts/translation_utils.py b/scripts/translation_utils.py index f52af4984..905e62540 100755 --- a/scripts/translation_utils.py +++ b/scripts/translation_utils.py @@ -85,7 +85,9 @@ class CommandStack(object): return len(self.data) def __getitem__(self, index): - if self.data[index].get(u'arguments'): + if not index in self.data: + return None + elif self.data[index].get(u'arguments'): return self.data[index][u'command'], self.data[index][u'arguments'] else: return self.data[index][u'command'] @@ -110,6 +112,21 @@ class CommandStack(object): def reset(self): self.current_index = 0 + def arguments(self): + if self.data[self.current_index - 1].get(u'arguments'): + return self.data[self.current_index - 1][u'arguments'] + else: + return [] + + def __repr__(self): + results = [] + for item in self.data: + if item.get(u'arguments'): + results.append(str((item[u'command'], item[u'arguments']))) + else: + results.append(str((item[u'command'], ))) + return u'[%s]' % u', '.join(results) + def print_verbose(text): """ @@ -231,7 +248,7 @@ def update_translations(): def generate_binaries(): print u'Generate the related *.qm files' if not os.path.exists(os.path.join(os.path.abspath(u'..'), u'openlp.pro')): - print u'You have no generated a project file yet, please run this ' + \ + print u'You have not generated a project file yet, please run this ' + \ u'script with the -p option. It is also recommended that you ' + \ u'this script with the -u option to update the translation ' + \ u'files as well.' @@ -248,13 +265,15 @@ def create_translation(language): The language file to create. """ print "Create new Translation File" + if not language.endswith(u'.ts'): + language += u'.ts' filename = os.path.join(os.path.abspath(u'..'), u'resources', u'i18n', language) download_file(u'en.ts', filename) - print u'\n** Please Note **\n' - print u'In order to get this file into OpenLP and onto the Pootle ' + \ + print u' ** Please Note **' + print u' In order to get this file into OpenLP and onto the Pootle ' + \ u'translation server you will need to subscribe to the OpenLP' + \ u'Translators mailing list, and request that your language file ' + \ - u'be added to the project.\n' + u'be added to the project.' print u' Done' def process_stack(command_stack): @@ -278,7 +297,7 @@ def process_stack(command_stack): elif command == Command.Generate: generate_binaries() elif command == Command.Create: - command, arguments = command_stack[command_stack.current_index] + arguments = command_stack.arguments() create_translation(*arguments) print u'Finished processing commands.' else: @@ -293,7 +312,7 @@ def main(): parser = OptionParser(usage=usage) parser.add_option('-d', '--download-ts', dest='download', action='store_true', help='download language files from Pootle') - parser.add_option('-c', '--create', dest=u'create', metavar='LANG', + parser.add_option('-c', '--create', dest='create', metavar='LANG', help='create a new translation file for language LANG, e.g. "en_GB"') parser.add_option('-p', '--prepare', dest='prepare', action='store_true', help='generate a project file, used to update the translations') diff --git a/scripts/windows-builder.py b/scripts/windows-builder.py index a100dfd5a..d34b77249 100644 --- a/scripts/windows-builder.py +++ b/scripts/windows-builder.py @@ -179,7 +179,16 @@ def copy_windows_files(): copy(os.path.join(iss_path, u'OpenLP.ico'), os.path.join(dist_path, u'OpenLP.ico')) copy(os.path.join(iss_path, u'LICENSE.txt'), os.path.join(dist_path, u'LICENSE.txt')) +def update_translations(): + print u'Updating translations...' + os.chdir(script_path) + translation_utils = Popen(u'python translation_utils.py -dpu') + code = translation_utils.wait() + if code != 0: + print u'Error running translation_utils.py' + def compile_translations(): + print u'Compiling translations...' files = os.listdir(i18n_path) if not os.path.exists(os.path.join(dist_path, u'i18n')): os.makedirs(os.path.join(dist_path, u'i18n')) @@ -221,6 +230,7 @@ def main(): copy_enchant() copy_plugins() copy_windows_files() + update_translations() compile_translations() run_innosetup() print "Done."