From 6883427cbd2efa3a448cfcc71ff6038a9e1ad8f0 Mon Sep 17 00:00:00 2001 From: Andreas Preikschat Date: Mon, 10 Oct 2011 18:22:41 +0200 Subject: [PATCH 01/24] fixed bug 871441 Fixes: https://launchpad.net/bugs/871441 --- openlp/core/ui/maindisplay.py | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/openlp/core/ui/maindisplay.py b/openlp/core/ui/maindisplay.py index d6eff912c..631c29f22 100644 --- a/openlp/core/ui/maindisplay.py +++ b/openlp/core/ui/maindisplay.py @@ -51,6 +51,8 @@ class MainDisplay(QtGui.QGraphicsView): def __init__(self, parent, imageManager, live): if live: QtGui.QGraphicsView.__init__(self) + # Do not overwrite the parent() method. + self._parent = parent else: QtGui.QGraphicsView.__init__(self, parent) self.isLive = live @@ -240,6 +242,9 @@ class MainDisplay(QtGui.QGraphicsView): self.override[u'image'] = name self.override[u'theme'] = self.serviceItem.themedata.theme_name self.image(name) + # Update the preview frame. + if self.isLive: + self._parent.updatePreview() return True return False @@ -248,8 +253,8 @@ class MainDisplay(QtGui.QGraphicsView): Add an image as the background. The image has already been added to the cache. - `Image` - The name of the image to be displayed + ``Image`` + The name of the image to be displayed. """ log.debug(u'image to display') image = self.imageManager.get_image_bytes(name) @@ -272,8 +277,8 @@ class MainDisplay(QtGui.QGraphicsView): def resetImage(self): """ - Reset the backgound image to the service item image. - Used after Image plugin has changed the background + Reset the backgound image to the service item image. Used after the + image plugin has changed the background. """ log.debug(u'resetImage') if hasattr(self, u'serviceItem'): @@ -284,6 +289,7 @@ class MainDisplay(QtGui.QGraphicsView): self.override = {} # Update the preview frame. if self.isLive: + self._parent.updatePreview() Receiver.send_message(u'maindisplay_active') def resetVideo(self): From 658e8f234bbbd36dff54bd2c5cd4801824d32951 Mon Sep 17 00:00:00 2001 From: Andreas Preikschat Date: Mon, 10 Oct 2011 18:37:46 +0200 Subject: [PATCH 02/24] clean ups --- openlp/core/ui/maindisplay.py | 13 ------------- openlp/plugins/alerts/lib/alertsmanager.py | 2 +- 2 files changed, 1 insertion(+), 14 deletions(-) diff --git a/openlp/core/ui/maindisplay.py b/openlp/core/ui/maindisplay.py index 631c29f22..f4b1383ba 100644 --- a/openlp/core/ui/maindisplay.py +++ b/openlp/core/ui/maindisplay.py @@ -271,9 +271,6 @@ class MainDisplay(QtGui.QGraphicsView): else: js = u'show_image("");' self.frame.evaluateJavaScript(js) - # Update the preview frame. - if self.isLive: - Receiver.send_message(u'maindisplay_active') def resetImage(self): """ @@ -287,10 +284,6 @@ class MainDisplay(QtGui.QGraphicsView): self.displayImage(None) # clear the cache self.override = {} - # Update the preview frame. - if self.isLive: - self._parent.updatePreview() - Receiver.send_message(u'maindisplay_active') def resetVideo(self): """ @@ -306,9 +299,6 @@ class MainDisplay(QtGui.QGraphicsView): else: self.frame.evaluateJavaScript(u'show_video("close");') self.override = {} - # Update the preview frame. - if self.isLive: - Receiver.send_message(u'maindisplay_active') def videoPlay(self): """ @@ -388,9 +378,6 @@ class MainDisplay(QtGui.QGraphicsView): self.webView.setVisible(False) self.videoWidget.setVisible(True) self.audio.setVolume(vol) - # Update the preview frame. - if self.isLive: - Receiver.send_message(u'maindisplay_active') def videoState(self, newState, oldState): """ diff --git a/openlp/plugins/alerts/lib/alertsmanager.py b/openlp/plugins/alerts/lib/alertsmanager.py index f2cb1eb4b..dcf3acafe 100644 --- a/openlp/plugins/alerts/lib/alertsmanager.py +++ b/openlp/plugins/alerts/lib/alertsmanager.py @@ -81,7 +81,7 @@ class AlertsManager(QtCore.QObject): Format and request the Alert and start the timer """ log.debug(u'Generate Alert called') - if len(self.alertList) == 0: + if not self.alertList: return text = self.alertList.pop(0) alertTab = self.parent().settings_tab From 76f47a4f6282da127dac7fd37fbaadcea274c497 Mon Sep 17 00:00:00 2001 From: Andreas Preikschat Date: Mon, 10 Oct 2011 18:54:01 +0200 Subject: [PATCH 03/24] - clean ups - only display alert when the screen is not hidden --- openlp/core/ui/maindisplay.py | 26 +++++++++++++--------- openlp/plugins/alerts/lib/alertsmanager.py | 3 ++- 2 files changed, 18 insertions(+), 11 deletions(-) diff --git a/openlp/core/ui/maindisplay.py b/openlp/core/ui/maindisplay.py index f4b1383ba..e383a2631 100644 --- a/openlp/core/ui/maindisplay.py +++ b/openlp/core/ui/maindisplay.py @@ -186,7 +186,7 @@ class MainDisplay(QtGui.QGraphicsView): """ Add the slide text from slideController - `slide` + ``slide`` The slide text to be displayed """ log.debug(u'text to display') @@ -199,20 +199,25 @@ class MainDisplay(QtGui.QGraphicsView): def alert(self, text): """ - Add the alert text + Add the alert text. If the alert was not displayed, because the screen + is not visible ``False`` is returned, otherwise ``True``. - `slide` - The slide text to be displayed + ``slide`` + The slide text to be displayed. """ log.debug(u'alert to display') - if self.height() != self.screen[u'size'].height() or not \ - self.isVisible() or self.videoWidget.isVisible(): + if not self.isVisible(): + return False + if self.height() != self.screen[u'size'].height() or \ + self.videoWidget.isVisible(): shrink = True + js = u'show_alert("%s", "%s")' % ( + text.replace(u'\\', u'\\\\').replace(u'\"', u'\\\"'), + u'top') else: shrink = False - js = u'show_alert("%s", "%s")' % ( - text.replace(u'\\', u'\\\\').replace(u'\"', u'\\\"'), - u'top' if shrink else u'') + js = u'show_alert("%s", "")' % ( + text.replace(u'\\', u'\\\\').replace(u'\"', u'\\\"')) height = self.frame.evaluateJavaScript(js) if shrink: if self.phononActive: @@ -232,10 +237,11 @@ class MainDisplay(QtGui.QGraphicsView): else: shrinkItem.setVisible(False) self.setGeometry(self.screen[u'size']) + return True def directImage(self, name, path, background): """ - API for replacement backgrounds so Images are added directly to cache + API for replacement backgrounds so Images are added directly to cache. """ self.imageManager.add_image(name, path, u'image', background) if hasattr(self, u'serviceItem'): diff --git a/openlp/plugins/alerts/lib/alertsmanager.py b/openlp/plugins/alerts/lib/alertsmanager.py index dcf3acafe..b38415158 100644 --- a/openlp/plugins/alerts/lib/alertsmanager.py +++ b/openlp/plugins/alerts/lib/alertsmanager.py @@ -85,7 +85,8 @@ class AlertsManager(QtCore.QObject): return text = self.alertList.pop(0) alertTab = self.parent().settings_tab - self.parent().liveController.display.alert(text) + if not self.parent().liveController.display.alert(text): + self.alertList.insert(0, text) # Check to see if we have a timer running. if self.timer_id == 0: self.timer_id = self.startTimer(int(alertTab.timeout) * 1000) From 223976b7d006cb52db66c5ab33cb212f46acfb9c Mon Sep 17 00:00:00 2001 From: Stevan Pettit Date: Mon, 10 Oct 2011 17:49:43 -0400 Subject: [PATCH 04/24] Modified Inno setup file to check if OpenLP is running during an un-install --- resources/windows/OpenLP-2.0.iss | 31 ++++++++++++++++++++++++++----- 1 file changed, 26 insertions(+), 5 deletions(-) diff --git a/resources/windows/OpenLP-2.0.iss b/resources/windows/OpenLP-2.0.iss index d773a22fd..119b73900 100644 --- a/resources/windows/OpenLP-2.0.iss +++ b/resources/windows/OpenLP-2.0.iss @@ -65,8 +65,11 @@ Name: quicklaunchicon; Description: {cm:CreateQuickLaunchIcon}; GroupDescription [Files] Source: ..\..\dist\OpenLP\*; DestDir: {app}; Flags: ignoreversion recursesubdirs createallsubdirs -Source: psvince.dll; Flags: dontcopy -; NOTE: Don't use "Flags: ignoreversion" on any shared system files +; DLL used to check if the target program is running at install time +Source: psvince.dll; flags: dontcopy +; psvince is installed in {app} folder, so it will be loaded at +; uninstall time to check if the target program is running +Source: psvince.dll; DestDir: {app} [Icons] Name: {group}\{#AppName}; Filename: {app}\{#AppExeName} @@ -87,8 +90,13 @@ Root: HKCR; Subkey: "OpenLP\DefaultIcon"; ValueType: string; ValueName: ""; Valu Root: HKCR; Subkey: "OpenLP\shell\open\command"; ValueType: string; ValueName: ""; ValueData: """{app}\OpenLP.exe"" ""%1""" [Code] -function IsModuleLoaded(modulename: AnsiString ): Boolean; -external 'IsModuleLoaded@files:psvince.dll stdcall'; +// Function to call psvince.dll at install time +function IsModuleLoadedInstall(modulename: AnsiString ): Boolean; +external 'IsModuleLoaded@files:psvince.dll stdcall setuponly'; + +// Function to call psvince.dll at uninstall time +function IsModuleLoadedUninstall(modulename: AnsiString ): Boolean; +external 'IsModuleLoaded@{app}\psvince.dll stdcall uninstallonly' ; function GetUninstallString(): String; var @@ -133,7 +141,7 @@ end; function InitializeSetup(): Boolean; begin Result := true; - while IsModuleLoaded( 'OpenLP.exe' ) and Result do + while IsModuleLoadedInstall( 'OpenLP.exe' ) and Result do begin if MsgBox( 'Openlp is currently running, please close it to continue the install.', mbError, MB_OKCANCEL ) = IDCANCEL then @@ -153,3 +161,16 @@ begin end; end; end; + +function InitializeUninstall(): Boolean; +begin + Result := true; + while IsModuleLoadedUninstall( 'OpenLP.exe' ) and Result do + begin + if MsgBox( 'Openlp is currently running, please close it to continue the uninstall.', + mbError, MB_OKCANCEL ) = IDCANCEL then + begin + Result := false; + end; + end; +end; \ No newline at end of file From 91769118102e820714847cccb1960f084fb0a227 Mon Sep 17 00:00:00 2001 From: Tim Bentley Date: Tue, 11 Oct 2011 19:10:53 +0100 Subject: [PATCH 05/24] Try 1 --- openlp/core/lib/pluginmanager.py | 5 +++++ openlp/core/ui/maindisplay.py | 3 ++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/openlp/core/lib/pluginmanager.py b/openlp/core/lib/pluginmanager.py index 2248d0ddd..4b706a4c6 100644 --- a/openlp/core/lib/pluginmanager.py +++ b/openlp/core/lib/pluginmanager.py @@ -42,6 +42,10 @@ class PluginManager(object): """ log.info(u'Plugin manager loaded') + @staticmethod + def get_instance(): + return PluginManager.instance + def __init__(self, plugin_dir): """ The constructor for the plugin manager. Passes the controllers on to @@ -51,6 +55,7 @@ class PluginManager(object): The directory to search for plugins. """ log.info(u'Plugin manager Initialising') + PluginManager.instance = self if not plugin_dir in sys.path: log.debug(u'Inserting %s into sys.path', plugin_dir) sys.path.insert(0, plugin_dir) diff --git a/openlp/core/ui/maindisplay.py b/openlp/core/ui/maindisplay.py index d6eff912c..0cf47ae5e 100644 --- a/openlp/core/ui/maindisplay.py +++ b/openlp/core/ui/maindisplay.py @@ -35,7 +35,7 @@ from PyQt4 import QtCore, QtGui, QtWebKit from PyQt4.phonon import Phonon from openlp.core.lib import Receiver, build_html, ServiceItem, image_to_byte, \ - translate + translate, PluginManager from openlp.core.ui import HideMode, ScreenList @@ -56,6 +56,7 @@ class MainDisplay(QtGui.QGraphicsView): self.isLive = live self.imageManager = imageManager self.screens = ScreenList.get_instance() + self.plugins = PluginManager.get_instance().plugins self.alertTab = None self.hideMode = None self.videoHide = False From e87b4658d89c14ff965ead26a64b0bd1d64d86d8 Mon Sep 17 00:00:00 2001 From: Tim Bentley Date: Tue, 11 Oct 2011 20:54:18 +0100 Subject: [PATCH 06/24] fix up alert changing triggers --- openlp/core/ui/maindisplay.py | 15 +++++++++++++++ openlp/core/ui/settingsform.py | 2 +- openlp/plugins/alerts/lib/alertstab.py | 12 +++++++++++- 3 files changed, 27 insertions(+), 2 deletions(-) diff --git a/openlp/core/ui/maindisplay.py b/openlp/core/ui/maindisplay.py index 0cf47ae5e..f3aed92cb 100644 --- a/openlp/core/ui/maindisplay.py +++ b/openlp/core/ui/maindisplay.py @@ -58,6 +58,7 @@ class MainDisplay(QtGui.QGraphicsView): self.screens = ScreenList.get_instance() self.plugins = PluginManager.get_instance().plugins self.alertTab = None + self.rebuildCSS = False self.hideMode = None self.videoHide = False self.override = {} @@ -81,6 +82,20 @@ class MainDisplay(QtGui.QGraphicsView): QtCore.QObject.connect(Receiver.get_receiver(), QtCore.SIGNAL(u'openlp_phonon_creation'), self.createMediaObject) + QtCore.QObject.connect(Receiver.get_receiver(), + QtCore.SIGNAL(u'alertTab_updated'), self.alertTabChanged) + QtCore.QObject.connect(Receiver.get_receiver(), + QtCore.SIGNAL(u'config_updated'), self.configChanged) + + def alertTabChanged(self): + print "alert" + self.rebuildCSS = True + + def configChanged(self): + print "config" + if self.rebuildCSS: + print "Need to rebuild" + self.rebuildCSS = False def retranslateUi(self): """ diff --git a/openlp/core/ui/settingsform.py b/openlp/core/ui/settingsform.py index 49d27a466..37da93b5b 100644 --- a/openlp/core/ui/settingsform.py +++ b/openlp/core/ui/settingsform.py @@ -58,7 +58,7 @@ class SettingsForm(QtGui.QDialog, Ui_SettingsDialog): # load all the settings self.settingListWidget.clear() for tabIndex in range(0, self.stackedLayout.count() + 1): - # take at 0 and the rest shuffell up. + # take at 0 and the rest shuffle up. self.stackedLayout.takeAt(0) self.insertTab(self.generalTab, 0, PluginStatus.Active) self.insertTab(self.themesTab, 1, PluginStatus.Active) diff --git a/openlp/plugins/alerts/lib/alertstab.py b/openlp/plugins/alerts/lib/alertstab.py index 15577fd0e..a6ed18fd1 100644 --- a/openlp/plugins/alerts/lib/alertstab.py +++ b/openlp/plugins/alerts/lib/alertstab.py @@ -27,7 +27,7 @@ from PyQt4 import QtCore, QtGui -from openlp.core.lib import SettingsTab, translate +from openlp.core.lib import SettingsTab, translate, Receiver from openlp.core.lib.ui import UiStrings, create_valign_combo class AlertsTab(SettingsTab): @@ -140,6 +140,7 @@ class AlertsTab(SettingsTab): def onTimeoutSpinBoxChanged(self): self.timeout = self.timeoutSpinBox.value() + self.changed = True def onFontSizeSpinBoxChanged(self): self.font_size = self.fontSizeSpinBox.value() @@ -171,10 +172,15 @@ class AlertsTab(SettingsTab): font.setFamily(self.font_face) self.fontComboBox.setCurrentFont(font) self.updateDisplay() + self.changed = False def save(self): settings = QtCore.QSettings() settings.beginGroup(self.settingsSection) + # Check value has changed as no event handles this field + if settings.value(u'location', QtCore.QVariant(1)).toInt()[0] != \ + self.verticalComboBox.currentIndex(): + self.changed = True settings.setValue(u'background color', QtCore.QVariant(self.bg_color)) settings.setValue(u'font color', QtCore.QVariant(self.font_color)) settings.setValue(u'font size', QtCore.QVariant(self.font_size)) @@ -184,6 +190,9 @@ class AlertsTab(SettingsTab): self.location = self.verticalComboBox.currentIndex() settings.setValue(u'location', QtCore.QVariant(self.location)) settings.endGroup() + if self.changed: + Receiver.send_message(u'alertTab_updated') + self.changed = False def updateDisplay(self): font = QtGui.QFont() @@ -193,4 +202,5 @@ class AlertsTab(SettingsTab): self.fontPreview.setFont(font) self.fontPreview.setStyleSheet(u'background-color: %s; color: %s' % (self.bg_color, self.font_color)) + self.changed = True From bb8b0cd4351be15bf32454cfbf0e8d1b321cb8eb Mon Sep 17 00:00:00 2001 From: Tim Bentley Date: Thu, 13 Oct 2011 06:14:03 +0100 Subject: [PATCH 07/24] Move the Alert web code back to the plugin --- openlp/core/lib/htmlbuilder.py | 61 ++++++++++----------------- openlp/core/lib/plugin.py | 18 ++++++++ openlp/core/ui/maindisplay.py | 2 +- openlp/plugins/alerts/alertsplugin.py | 61 +++++++++++++++++++++++++++ 4 files changed, 102 insertions(+), 40 deletions(-) diff --git a/openlp/core/lib/htmlbuilder.py b/openlp/core/lib/htmlbuilder.py index 8e31d8950..bc571d04d 100644 --- a/openlp/core/lib/htmlbuilder.py +++ b/openlp/core/lib/htmlbuilder.py @@ -73,13 +73,7 @@ body { #video2 { z-index: 3; } -#alert { - position: absolute; - left: 0px; - top: 0px; - z-index: 10; - %s -} +%s #footer { position: absolute; z-index: 6; @@ -179,7 +173,7 @@ sup { break; } } - + %s function show_image(src){ var img = document.getElementById('image'); img.src = src; @@ -225,34 +219,6 @@ sup { } } - function show_alert(alerttext, position){ - var text = document.getElementById('alert'); - text.innerHTML = alerttext; - if(alerttext == '') { - text.style.visibility = 'hidden'; - return 0; - } - if(position == ''){ - position = getComputedStyle(text, '').verticalAlign; - } - switch(position) - { - case 'top': - text.style.top = '0px'; - break; - case 'middle': - text.style.top = ((window.innerHeight - text.clientHeight) / 2) - + 'px'; - break; - case 'bottom': - text.style.top = (window.innerHeight - text.clientHeight) - + 'px'; - break; - } - text.style.visibility = 'visible'; - return text.clientHeight; - } - function show_footer(footertext){ document.getElementById('footer').innerHTML = footertext; } @@ -316,14 +282,15 @@ sup { %s +%s
- """ -def build_html(item, screen, alert, islive, background, image=None): +def build_html(item, screen, alert, islive, background, image=None, + plugins=None): """ Build the full web paged structure for display @@ -344,6 +311,9 @@ def build_html(item, screen, alert, islive, background, image=None): ``image`` Image media item - bytes + + ``plugins`` + The List of available plugins """ width = screen[u'size'].width() height = screen[u'size'].height() @@ -360,14 +330,27 @@ def build_html(item, screen, alert, islive, background, image=None): image_src = u'src="data:image/png;base64,%s"' % image else: image_src = u'style="display:none;"' + css_additions = u'' + js_additions = u'' + html_additions = u'' + if plugins: + for plugin in plugins: + print plugin + css_additions += plugin.getDisplayCss() + js_additions += plugin.getDisplayJavaScript() + html_additions += plugin.getDisplayHtml() + print js_additions html = HTMLSRC % (build_background_css(item, width, height), width, height, - build_alert_css(alert, width), + css_additions, + #build_alert_css(alert, width), build_footer_css(item, height), build_lyrics_css(item, webkitvers), u'true' if theme and theme.display_slide_transition and islive \ else u'false', + js_additions, bgimage_src, image_src, + html_additions, build_lyrics_html(item, webkitvers)) return html diff --git a/openlp/core/lib/plugin.py b/openlp/core/lib/plugin.py index db7d4845b..358906d58 100644 --- a/openlp/core/lib/plugin.py +++ b/openlp/core/lib/plugin.py @@ -369,3 +369,21 @@ class Plugin(QtCore.QObject): """ self.textStrings[name] = {u'title': title, u'tooltip': tooltip} + def getDisplayCss(self): + """ + Add css style sheets to htmlbuilder + """ + return u'' + + def getDisplayJavaScript(self): + """ + Add javascript functions to htmlbuilder + """ + return u'' + + def getDisplayHtml(self): + """ + Add html code to htmlbuilder + """ + return u'' + diff --git a/openlp/core/ui/maindisplay.py b/openlp/core/ui/maindisplay.py index f3aed92cb..129b5a827 100644 --- a/openlp/core/ui/maindisplay.py +++ b/openlp/core/ui/maindisplay.py @@ -508,7 +508,7 @@ class MainDisplay(QtGui.QGraphicsView): else: image_bytes = None html = build_html(self.serviceItem, self.screen, self.alertTab, - self.isLive, background, image_bytes) + self.isLive, background, image_bytes, self.plugins) log.debug(u'buildHtml - pre setHtml') self.webView.setHtml(html) log.debug(u'buildHtml - post setHtml') diff --git a/openlp/plugins/alerts/alertsplugin.py b/openlp/plugins/alerts/alertsplugin.py index 21db1972a..c9adabca2 100644 --- a/openlp/plugins/alerts/alertsplugin.py +++ b/openlp/plugins/alerts/alertsplugin.py @@ -32,6 +32,7 @@ from PyQt4 import QtCore from openlp.core.lib import Plugin, StringContent, build_icon, translate from openlp.core.lib.db import Manager from openlp.core.lib.ui import icon_action, UiStrings +from openlp.core.lib.theme import VerticalType from openlp.core.utils.actions import ActionList from openlp.plugins.alerts.lib import AlertsManager, AlertsTab from openlp.plugins.alerts.lib.db import init_schema @@ -39,6 +40,54 @@ from openlp.plugins.alerts.forms import AlertForm log = logging.getLogger(__name__) +JAVASCRIPT = """ + function show_alert(alerttext, position){ + var text = document.getElementById('alert'); + text.innerHTML = alerttext; + if(alerttext == '') { + text.style.visibility = 'hidden'; + return 0; + } + if(position == ''){ + position = getComputedStyle(text, '').verticalAlign; + } + switch(position) + { + case 'top': + text.style.top = '0px'; + break; + case 'middle': + text.style.top = ((window.innerHeight - text.clientHeight) / 2) + + 'px'; + break; + case 'bottom': + text.style.top = (window.innerHeight - text.clientHeight) + + 'px'; + break; + } + text.style.visibility = 'visible'; + return text.clientHeight; + } +""" +CSS = """ + #alert { + position: absolute; + left: 0px; + top: 0px; + z-index: 10; + width: 100%%; + vertical-align: %s; + font-family: %s; + font-size: %spt; + color: %s; + background-color: %s; + } +""" + +HTML = """ + +""" + class AlertsPlugin(Plugin): log.info(u'Alerts Plugin loaded') @@ -121,3 +170,15 @@ class AlertsPlugin(Plugin): u'title': translate('AlertsPlugin', 'Alerts', 'container title') } + def getDisplayJavaScript(self): + return JAVASCRIPT + + def getDisplayCss(self): + align = VerticalType.Names[self.settings_tab.location] + alert = CSS % (align, self.settings_tab.font_face, + self.settings_tab.font_size, self.settings_tab.font_color, + self.settings_tab.bg_color) + return alert + + def getDisplayHtml(self): + return HTML From 9652a690b3adf4c3b55d868257e9f76fed080ad6 Mon Sep 17 00:00:00 2001 From: Tim Bentley Date: Sat, 15 Oct 2011 07:32:01 +0100 Subject: [PATCH 08/24] More cleanups and start of updates --- openlp/core/lib/htmlbuilder.py | 10 ++-------- openlp/core/lib/plugin.py | 6 ++++++ openlp/core/ui/maindisplay.py | 26 ++++++++++++++++---------- openlp/core/ui/slidecontroller.py | 2 -- openlp/plugins/alerts/alertsplugin.py | 17 ++++++++++++++++- openlp/plugins/alerts/lib/alertstab.py | 2 +- 6 files changed, 41 insertions(+), 22 deletions(-) diff --git a/openlp/core/lib/htmlbuilder.py b/openlp/core/lib/htmlbuilder.py index bc571d04d..7d91195a7 100644 --- a/openlp/core/lib/htmlbuilder.py +++ b/openlp/core/lib/htmlbuilder.py @@ -289,7 +289,7 @@ sup { """ -def build_html(item, screen, alert, islive, background, image=None, +def build_html(item, screen, islive, background, image=None, plugins=None): """ Build the full web paged structure for display @@ -300,9 +300,6 @@ def build_html(item, screen, alert, islive, background, image=None, ``screen`` Current display information - ``alert`` - Alert display display information - ``islive`` Item is going live, rather than preview/theme building @@ -335,16 +332,13 @@ def build_html(item, screen, alert, islive, background, image=None, html_additions = u'' if plugins: for plugin in plugins: - print plugin css_additions += plugin.getDisplayCss() js_additions += plugin.getDisplayJavaScript() html_additions += plugin.getDisplayHtml() - print js_additions html = HTMLSRC % (build_background_css(item, width, height), width, height, css_additions, - #build_alert_css(alert, width), - build_footer_css(item, height), + build_footer_css(item, height), build_lyrics_css(item, webkitvers), u'true' if theme and theme.display_slide_transition and islive \ else u'false', diff --git a/openlp/core/lib/plugin.py b/openlp/core/lib/plugin.py index 358906d58..9a5d2d547 100644 --- a/openlp/core/lib/plugin.py +++ b/openlp/core/lib/plugin.py @@ -381,6 +381,12 @@ class Plugin(QtCore.QObject): """ return u'' + def refreshCss(self, frame): + """ + Allow plugins to refresh javascript of displayed screen + """ + return u'' + def getDisplayHtml(self): """ Add html code to htmlbuilder diff --git a/openlp/core/ui/maindisplay.py b/openlp/core/ui/maindisplay.py index 129b5a827..8c4ba2eba 100644 --- a/openlp/core/ui/maindisplay.py +++ b/openlp/core/ui/maindisplay.py @@ -57,7 +57,6 @@ class MainDisplay(QtGui.QGraphicsView): self.imageManager = imageManager self.screens = ScreenList.get_instance() self.plugins = PluginManager.get_instance().plugins - self.alertTab = None self.rebuildCSS = False self.hideMode = None self.videoHide = False @@ -83,18 +82,24 @@ class MainDisplay(QtGui.QGraphicsView): QtCore.SIGNAL(u'openlp_phonon_creation'), self.createMediaObject) QtCore.QObject.connect(Receiver.get_receiver(), - QtCore.SIGNAL(u'alertTab_updated'), self.alertTabChanged) + QtCore.SIGNAL(u'css_update'), self.cssChanged) QtCore.QObject.connect(Receiver.get_receiver(), QtCore.SIGNAL(u'config_updated'), self.configChanged) - def alertTabChanged(self): - print "alert" + def cssChanged(self): + """ + We may need to rebuild the CSS on the live display. + """ self.rebuildCSS = True def configChanged(self): - print "config" - if self.rebuildCSS: - print "Need to rebuild" + """ + Call the plugins to rebuild the Live display CSS as the screen has + not been rebuild on exit of config. + """ + if self.rebuildCSS and self.plugins: + for plugin in self.plugins: + plugin.refreshCss(self.frame) self.rebuildCSS = False def retranslateUi(self): @@ -127,6 +132,7 @@ class MainDisplay(QtGui.QGraphicsView): self.screen[u'size'].width(), self.screen[u'size'].height()) self.page = self.webView.page() self.frame = self.page.mainFrame() + self.webView.settings().setAttribute(7, True) QtCore.QObject.connect(self.webView, QtCore.SIGNAL(u'loadFinished(bool)'), self.isWebLoaded) self.setVerticalScrollBarPolicy(QtCore.Qt.ScrollBarAlwaysOff) @@ -169,7 +175,7 @@ class MainDisplay(QtGui.QGraphicsView): serviceItem = ServiceItem() serviceItem.bg_image_bytes = image_to_byte(self.initialFrame) self.webView.setHtml(build_html(serviceItem, self.screen, - self.alertTab, self.isLive, None)) + self.isLive, None)) self.__hideMouse() # To display or not to display? if not self.screen[u'primary']: @@ -507,8 +513,8 @@ class MainDisplay(QtGui.QGraphicsView): image_bytes = self.imageManager.get_image_bytes(image) else: image_bytes = None - html = build_html(self.serviceItem, self.screen, self.alertTab, - self.isLive, background, image_bytes, self.plugins) + html = build_html(self.serviceItem, self.screen, self.isLive, + background, image_bytes, self.plugins) log.debug(u'buildHtml - pre setHtml') self.webView.setHtml(html) log.debug(u'buildHtml - post setHtml') diff --git a/openlp/core/ui/slidecontroller.py b/openlp/core/ui/slidecontroller.py index 354cfa168..7e6e0d54e 100644 --- a/openlp/core/ui/slidecontroller.py +++ b/openlp/core/ui/slidecontroller.py @@ -79,7 +79,6 @@ class SlideController(QtGui.QWidget): self.songEdit = False self.selectedRow = 0 self.serviceItem = None - self.alertTab = None self.panel = QtGui.QWidget(parent.controlSplitter) self.slideList = {} # Layout for holding panel @@ -423,7 +422,6 @@ class SlideController(QtGui.QWidget): if self.display: self.display.close() self.display = MainDisplay(self, self.imageManager, self.isLive) - self.display.alertTab = self.alertTab self.display.setup() if self.isLive: self.__addActionsToWidget(self.display) diff --git a/openlp/plugins/alerts/alertsplugin.py b/openlp/plugins/alerts/alertsplugin.py index c9adabca2..057c1075f 100644 --- a/openlp/plugins/alerts/alertsplugin.py +++ b/openlp/plugins/alerts/alertsplugin.py @@ -68,6 +68,16 @@ JAVASCRIPT = """ text.style.visibility = 'visible'; return text.clientHeight; } + + function update_css(align, font, size, color, bgcolor){ + var text = document.getElementById('alert'); + alert("Hello"); + document.getElementById('alert').style.verticalalign = align; + text.style.fontfamily = font; + text.style.size = size; + text.style.color = color; + text.style.backgroundColor = bgcolor; + } """ CSS = """ #alert { @@ -128,7 +138,6 @@ class AlertsPlugin(Plugin): self.toolsAlertItem.setVisible(True) action_list = ActionList.get_instance() action_list.add_action(self.toolsAlertItem, UiStrings().Tools) - self.liveController.alertTab = self.settings_tab def finalise(self): """ @@ -182,3 +191,9 @@ class AlertsPlugin(Plugin): def getDisplayHtml(self): return HTML + + def refreshCss(self, frame): + align = VerticalType.Names[self.settings_tab.location] + frame.evaluateJavaScript(u'update_css("%s,%s,%s,%s,%s")' % (align, + self.settings_tab.font_face, self.settings_tab.font_size, + self.settings_tab.font_color, self.settings_tab.bg_color)) diff --git a/openlp/plugins/alerts/lib/alertstab.py b/openlp/plugins/alerts/lib/alertstab.py index a6ed18fd1..8d709a3b8 100644 --- a/openlp/plugins/alerts/lib/alertstab.py +++ b/openlp/plugins/alerts/lib/alertstab.py @@ -191,7 +191,7 @@ class AlertsTab(SettingsTab): settings.setValue(u'location', QtCore.QVariant(self.location)) settings.endGroup() if self.changed: - Receiver.send_message(u'alertTab_updated') + Receiver.send_message(u'css_update') self.changed = False def updateDisplay(self): From ec5991a1976bd6d92ee952bc6c1099bc7facfbbe Mon Sep 17 00:00:00 2001 From: Andreas Preikschat Date: Sat, 15 Oct 2011 09:36:51 +0200 Subject: [PATCH 09/24] =?UTF-8?q?removed=20dead=20code=C2=A7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- openlp/core/ui/maindisplay.py | 8 -------- 1 file changed, 8 deletions(-) diff --git a/openlp/core/ui/maindisplay.py b/openlp/core/ui/maindisplay.py index e383a2631..102bd7b8c 100644 --- a/openlp/core/ui/maindisplay.py +++ b/openlp/core/ui/maindisplay.py @@ -122,14 +122,6 @@ class MainDisplay(QtGui.QGraphicsView): self.frame.setScrollBarPolicy(QtCore.Qt.Horizontal, QtCore.Qt.ScrollBarAlwaysOff) if self.isLive: - # Build the initial frame. - self.black = QtGui.QImage( - self.screen[u'size'].width(), - self.screen[u'size'].height(), - QtGui.QImage.Format_ARGB32_Premultiplied) - painter_image = QtGui.QPainter() - painter_image.begin(self.black) - painter_image.fillRect(self.black.rect(), QtCore.Qt.black) # Build the initial frame. image_file = QtCore.QSettings().value(u'advanced/default image', QtCore.QVariant(u':/graphics/openlp-splash-screen.png'))\ From a1a79c98d1c8fa55c77ac2a70ad2015fa2c30d9e Mon Sep 17 00:00:00 2001 From: Andreas Preikschat Date: Sat, 15 Oct 2011 09:52:25 +0200 Subject: [PATCH 10/24] overwrite parent method --- openlp/core/ui/maindisplay.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/openlp/core/ui/maindisplay.py b/openlp/core/ui/maindisplay.py index 102bd7b8c..3edab4a6e 100644 --- a/openlp/core/ui/maindisplay.py +++ b/openlp/core/ui/maindisplay.py @@ -52,7 +52,7 @@ class MainDisplay(QtGui.QGraphicsView): if live: QtGui.QGraphicsView.__init__(self) # Do not overwrite the parent() method. - self._parent = parent + self.parent = lambda: parent else: QtGui.QGraphicsView.__init__(self, parent) self.isLive = live @@ -242,7 +242,7 @@ class MainDisplay(QtGui.QGraphicsView): self.image(name) # Update the preview frame. if self.isLive: - self._parent.updatePreview() + self.parent().updatePreview() return True return False From 9259eed4a61029f00b7844c9345dcc6bcdbc343d Mon Sep 17 00:00:00 2001 From: Andreas Preikschat Date: Sat, 15 Oct 2011 13:30:39 +0200 Subject: [PATCH 11/24] -fixed bug 871272 -clean ups Fixes: https://launchpad.net/bugs/871272 --- openlp/core/lib/serviceitem.py | 10 ++++------ openlp/core/ui/maindisplay.py | 3 ++- openlp/plugins/media/lib/mediaitem.py | 11 +++++------ 3 files changed, 11 insertions(+), 13 deletions(-) diff --git a/openlp/core/lib/serviceitem.py b/openlp/core/lib/serviceitem.py index 510d71cde..6dff9f6ab 100644 --- a/openlp/core/lib/serviceitem.py +++ b/openlp/core/lib/serviceitem.py @@ -122,9 +122,8 @@ class ServiceItem(object): def _new_item(self): """ - Method to set the internal id of the item - This is used to compare service items to see if they are - the same + Method to set the internal id of the item. This is used to compare + service items to see if they are the same. """ self._uuid = unicode(uuid.uuid1()) @@ -160,9 +159,8 @@ class ServiceItem(object): def render(self, use_override=False): """ The render method is what generates the frames for the screen and - obtains the display information from the renderemanager. - At this point all the slides are built for the given - display size. + obtains the display information from the renderemanager. At this point + all the slides are built for the given display size. """ log.debug(u'Render called') self._display_frames = [] diff --git a/openlp/core/ui/maindisplay.py b/openlp/core/ui/maindisplay.py index d6eff912c..36f911df5 100644 --- a/openlp/core/ui/maindisplay.py +++ b/openlp/core/ui/maindisplay.py @@ -355,7 +355,7 @@ class MainDisplay(QtGui.QGraphicsView): """ # We request a background video but have no service Item if isBackground and not hasattr(self, u'serviceItem'): - return None + return False if not self.mediaObject: self.createMediaObject() log.debug(u'video') @@ -385,6 +385,7 @@ class MainDisplay(QtGui.QGraphicsView): # Update the preview frame. if self.isLive: Receiver.send_message(u'maindisplay_active') + return True def videoState(self, newState, oldState): """ diff --git a/openlp/plugins/media/lib/mediaitem.py b/openlp/plugins/media/lib/mediaitem.py index f2e0bbc06..c8f746851 100644 --- a/openlp/plugins/media/lib/mediaitem.py +++ b/openlp/plugins/media/lib/mediaitem.py @@ -39,7 +39,7 @@ from openlp.core.lib.ui import UiStrings, critical_error_message_box log = logging.getLogger(__name__) -CLAPPERBOARD = QtGui.QPixmap(u':/media/media_video.png').toImage() +CLAPPERBOARD = QtGui.QImage(u':/media/media_video.png') class MediaMediaItem(MediaManagerItem): """ @@ -95,14 +95,14 @@ class MediaMediaItem(MediaManagerItem): def onResetClick(self): """ - Called to reset the Live backgound with the media selected, + Called to reset the Live backgound with the media selected. """ self.resetAction.setVisible(False) self.plugin.liveController.display.resetVideo() def videobackgroundReplaced(self): """ - Triggered by main display on change of serviceitem + Triggered by main display on change of serviceitem. """ self.resetAction.setVisible(False) @@ -179,8 +179,7 @@ class MediaMediaItem(MediaManagerItem): def mediaStateWait(self, mediaState): """ - Wait for the video to change its state - Wait no longer than 5 seconds. + Wait for the video to change its state. Wait no longer than 5 seconds. """ start = datetime.now() while self.mediaObject.state() != mediaState: @@ -198,7 +197,7 @@ class MediaMediaItem(MediaManagerItem): def onDeleteClick(self): """ - Remove a media item from the list + Remove a media item from the list. """ if check_item_selected(self.listView, translate('MediaPlugin.MediaItem', 'You must select a media file to delete.')): From 8ebf7ff131ff120354d8dcb018c8aa19348712c2 Mon Sep 17 00:00:00 2001 From: Tim Bentley Date: Sun, 16 Oct 2011 08:59:21 +0100 Subject: [PATCH 12/24] Finish dynamic Alert updates --- openlp/core/ui/maindisplay.py | 4 +++- openlp/plugins/alerts/alertsplugin.py | 11 +++++------ 2 files changed, 8 insertions(+), 7 deletions(-) diff --git a/openlp/core/ui/maindisplay.py b/openlp/core/ui/maindisplay.py index 8c4ba2eba..5e9077e2f 100644 --- a/openlp/core/ui/maindisplay.py +++ b/openlp/core/ui/maindisplay.py @@ -132,7 +132,9 @@ class MainDisplay(QtGui.QGraphicsView): self.screen[u'size'].width(), self.screen[u'size'].height()) self.page = self.webView.page() self.frame = self.page.mainFrame() - self.webView.settings().setAttribute(7, True) + if self.isLive and log.getEffectiveLevel() == logging.DEBUG: + self.webView.settings().setAttribute( + QtWebKit.QWebSettings.DeveloperExtrasEnabled, True) QtCore.QObject.connect(self.webView, QtCore.SIGNAL(u'loadFinished(bool)'), self.isWebLoaded) self.setVerticalScrollBarPolicy(QtCore.Qt.ScrollBarAlwaysOff) diff --git a/openlp/plugins/alerts/alertsplugin.py b/openlp/plugins/alerts/alertsplugin.py index 057c1075f..461525a70 100644 --- a/openlp/plugins/alerts/alertsplugin.py +++ b/openlp/plugins/alerts/alertsplugin.py @@ -71,10 +71,9 @@ JAVASCRIPT = """ function update_css(align, font, size, color, bgcolor){ var text = document.getElementById('alert'); - alert("Hello"); - document.getElementById('alert').style.verticalalign = align; - text.style.fontfamily = font; - text.style.size = size; + text.style.verticalAlign = align; + text.style.fontSize = size + "pt"; + text.style.fontFamily = font; text.style.color = color; text.style.backgroundColor = bgcolor; } @@ -194,6 +193,6 @@ class AlertsPlugin(Plugin): def refreshCss(self, frame): align = VerticalType.Names[self.settings_tab.location] - frame.evaluateJavaScript(u'update_css("%s,%s,%s,%s,%s")' % (align, - self.settings_tab.font_face, self.settings_tab.font_size, + frame.evaluateJavaScript(u'update_css("%s", "%s", "%s", "%s", "%s")' % + (align, self.settings_tab.font_face, self.settings_tab.font_size, self.settings_tab.font_color, self.settings_tab.bg_color)) From 2f36c33f621496d0850668ca734170357e3cd874 Mon Sep 17 00:00:00 2001 From: Tim Bentley Date: Sun, 16 Oct 2011 09:25:27 +0100 Subject: [PATCH 13/24] Review fixes --- openlp/core/lib/htmlbuilder.py | 2 +- openlp/core/lib/plugin.py | 8 ++++---- openlp/plugins/alerts/alertsplugin.py | 3 +-- 3 files changed, 6 insertions(+), 7 deletions(-) diff --git a/openlp/core/lib/htmlbuilder.py b/openlp/core/lib/htmlbuilder.py index 7d91195a7..863943e40 100644 --- a/openlp/core/lib/htmlbuilder.py +++ b/openlp/core/lib/htmlbuilder.py @@ -338,7 +338,7 @@ def build_html(item, screen, islive, background, image=None, html = HTMLSRC % (build_background_css(item, width, height), width, height, css_additions, - build_footer_css(item, height), + build_footer_css(item, height), build_lyrics_css(item, webkitvers), u'true' if theme and theme.display_slide_transition and islive \ else u'false', diff --git a/openlp/core/lib/plugin.py b/openlp/core/lib/plugin.py index 9a5d2d547..ad6f77116 100644 --- a/openlp/core/lib/plugin.py +++ b/openlp/core/lib/plugin.py @@ -371,25 +371,25 @@ class Plugin(QtCore.QObject): def getDisplayCss(self): """ - Add css style sheets to htmlbuilder + Add css style sheets to htmlbuilder. """ return u'' def getDisplayJavaScript(self): """ - Add javascript functions to htmlbuilder + Add javascript functions to htmlbuilder. """ return u'' def refreshCss(self, frame): """ - Allow plugins to refresh javascript of displayed screen + Allow plugins to refresh javascript on displayed screen. """ return u'' def getDisplayHtml(self): """ - Add html code to htmlbuilder + Add html code to htmlbuilder. """ return u'' diff --git a/openlp/plugins/alerts/alertsplugin.py b/openlp/plugins/alerts/alertsplugin.py index 461525a70..594649e53 100644 --- a/openlp/plugins/alerts/alertsplugin.py +++ b/openlp/plugins/alerts/alertsplugin.py @@ -183,10 +183,9 @@ class AlertsPlugin(Plugin): def getDisplayCss(self): align = VerticalType.Names[self.settings_tab.location] - alert = CSS % (align, self.settings_tab.font_face, + return CSS % (align, self.settings_tab.font_face, self.settings_tab.font_size, self.settings_tab.font_color, self.settings_tab.bg_color) - return alert def getDisplayHtml(self): return HTML From a75e0156cc50d0b3ab1fee1f5148b97692c22178 Mon Sep 17 00:00:00 2001 From: Andreas Preikschat Date: Sun, 16 Oct 2011 16:40:46 +0200 Subject: [PATCH 14/24] fixed docstrings --- openlp/core/lib/renderer.py | 8 ++++---- openlp/core/lib/serviceitem.py | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/openlp/core/lib/renderer.py b/openlp/core/lib/renderer.py index 71670ff21..02f6970ac 100644 --- a/openlp/core/lib/renderer.py +++ b/openlp/core/lib/renderer.py @@ -57,14 +57,14 @@ class Renderer(object): def __init__(self, imageManager, themeManager): """ - Initialise the render manager. + Initialise the renderer. ``imageManager`` - A ImageManager instance which takes care of e. g. caching and resizing + A imageManager instance which takes care of e. g. caching and resizing images. ``themeManager`` - The ThemeManager instance, used to get the current theme details. + The themeManager instance, used to get the current theme details. """ log.debug(u'Initialisation started') self.themeManager = themeManager @@ -81,7 +81,7 @@ class Renderer(object): def update_display(self): """ - Updates the render manager's information about the current screen. + Updates the renderer's information about the current screen. """ log.debug(u'Update Display') self._calculate_default() diff --git a/openlp/core/lib/serviceitem.py b/openlp/core/lib/serviceitem.py index 6dff9f6ab..0eb0c866f 100644 --- a/openlp/core/lib/serviceitem.py +++ b/openlp/core/lib/serviceitem.py @@ -159,8 +159,8 @@ class ServiceItem(object): def render(self, use_override=False): """ The render method is what generates the frames for the screen and - obtains the display information from the renderemanager. At this point - all the slides are built for the given display size. + obtains the display information from the renderer. At this point all + slides are built for the given display size. """ log.debug(u'Render called') self._display_frames = [] From 004472baa8a0848382b253522f9162b29ec68bcd Mon Sep 17 00:00:00 2001 From: Andreas Preikschat Date: Sun, 16 Oct 2011 16:53:39 +0200 Subject: [PATCH 15/24] reverted alert change --- openlp/core/ui/maindisplay.py | 14 +++++--------- openlp/plugins/alerts/lib/alertsmanager.py | 3 +-- 2 files changed, 6 insertions(+), 11 deletions(-) diff --git a/openlp/core/ui/maindisplay.py b/openlp/core/ui/maindisplay.py index 3edab4a6e..d57b7ec5a 100644 --- a/openlp/core/ui/maindisplay.py +++ b/openlp/core/ui/maindisplay.py @@ -191,17 +191,14 @@ class MainDisplay(QtGui.QGraphicsView): def alert(self, text): """ - Add the alert text. If the alert was not displayed, because the screen - is not visible ``False`` is returned, otherwise ``True``. + Display an alert. - ``slide`` - The slide text to be displayed. + ``text`` + The text to be displayed. """ log.debug(u'alert to display') - if not self.isVisible(): - return False - if self.height() != self.screen[u'size'].height() or \ - self.videoWidget.isVisible(): + if self.height() != self.screen[u'size'].height() or not \ + self.isVisible() or self.videoWidget.isVisible(): shrink = True js = u'show_alert("%s", "%s")' % ( text.replace(u'\\', u'\\\\').replace(u'\"', u'\\\"'), @@ -229,7 +226,6 @@ class MainDisplay(QtGui.QGraphicsView): else: shrinkItem.setVisible(False) self.setGeometry(self.screen[u'size']) - return True def directImage(self, name, path, background): """ diff --git a/openlp/plugins/alerts/lib/alertsmanager.py b/openlp/plugins/alerts/lib/alertsmanager.py index b38415158..dcf3acafe 100644 --- a/openlp/plugins/alerts/lib/alertsmanager.py +++ b/openlp/plugins/alerts/lib/alertsmanager.py @@ -85,8 +85,7 @@ class AlertsManager(QtCore.QObject): return text = self.alertList.pop(0) alertTab = self.parent().settings_tab - if not self.parent().liveController.display.alert(text): - self.alertList.insert(0, text) + self.parent().liveController.display.alert(text) # Check to see if we have a timer running. if self.timer_id == 0: self.timer_id = self.startTimer(int(alertTab.timeout) * 1000) From bf2ada0b670679b17ff84700804de16606193165 Mon Sep 17 00:00:00 2001 From: Tim Bentley Date: Sun, 16 Oct 2011 16:39:49 +0100 Subject: [PATCH 16/24] Fix up review comments --- openlp/core/lib/eventreceiver.py | 5 +++++ openlp/core/lib/pluginmanager.py | 3 +++ openlp/core/ui/maindisplay.py | 2 +- openlp/plugins/alerts/alertsplugin.py | 15 +++++++++++++++ openlp/plugins/alerts/lib/alertstab.py | 2 +- 5 files changed, 25 insertions(+), 2 deletions(-) diff --git a/openlp/core/lib/eventreceiver.py b/openlp/core/lib/eventreceiver.py index 1b957e5df..ef21ffde4 100644 --- a/openlp/core/lib/eventreceiver.py +++ b/openlp/core/lib/eventreceiver.py @@ -219,6 +219,11 @@ class EventReceiver(QtCore.QObject): ``cursor_normal`` Resets the cursor to default + + ``maindisplay_css_updated`` + CSS has been updated which needs to be changed on the main display. + + """ def __init__(self): """ diff --git a/openlp/core/lib/pluginmanager.py b/openlp/core/lib/pluginmanager.py index 4b706a4c6..277842167 100644 --- a/openlp/core/lib/pluginmanager.py +++ b/openlp/core/lib/pluginmanager.py @@ -44,6 +44,9 @@ class PluginManager(object): @staticmethod def get_instance(): + """ + Obtain a single instance of class. + """ return PluginManager.instance def __init__(self, plugin_dir): diff --git a/openlp/core/ui/maindisplay.py b/openlp/core/ui/maindisplay.py index 5e9077e2f..01b616d9d 100644 --- a/openlp/core/ui/maindisplay.py +++ b/openlp/core/ui/maindisplay.py @@ -82,7 +82,7 @@ class MainDisplay(QtGui.QGraphicsView): QtCore.SIGNAL(u'openlp_phonon_creation'), self.createMediaObject) QtCore.QObject.connect(Receiver.get_receiver(), - QtCore.SIGNAL(u'css_update'), self.cssChanged) + QtCore.SIGNAL(u'maindisplay_css_updated'), self.cssChanged) QtCore.QObject.connect(Receiver.get_receiver(), QtCore.SIGNAL(u'config_updated'), self.configChanged) diff --git a/openlp/plugins/alerts/alertsplugin.py b/openlp/plugins/alerts/alertsplugin.py index 594649e53..b5a6de8c7 100644 --- a/openlp/plugins/alerts/alertsplugin.py +++ b/openlp/plugins/alerts/alertsplugin.py @@ -179,18 +179,33 @@ class AlertsPlugin(Plugin): } def getDisplayJavaScript(self): + """ + Add Javascript to the main display. + """ return JAVASCRIPT def getDisplayCss(self): + """ + Add CSS to the main display. + """ align = VerticalType.Names[self.settings_tab.location] return CSS % (align, self.settings_tab.font_face, self.settings_tab.font_size, self.settings_tab.font_color, self.settings_tab.bg_color) def getDisplayHtml(self): + """ + Add HTML to the main display. + """ return HTML def refreshCss(self, frame): + """ + Trigger an update of the CSS in the maindisplay. + + `frame` + The Web frame holding the page + """ align = VerticalType.Names[self.settings_tab.location] frame.evaluateJavaScript(u'update_css("%s", "%s", "%s", "%s", "%s")' % (align, self.settings_tab.font_face, self.settings_tab.font_size, diff --git a/openlp/plugins/alerts/lib/alertstab.py b/openlp/plugins/alerts/lib/alertstab.py index 8d709a3b8..3cf3c0ab3 100644 --- a/openlp/plugins/alerts/lib/alertstab.py +++ b/openlp/plugins/alerts/lib/alertstab.py @@ -191,7 +191,7 @@ class AlertsTab(SettingsTab): settings.setValue(u'location', QtCore.QVariant(self.location)) settings.endGroup() if self.changed: - Receiver.send_message(u'css_update') + Receiver.send_message(u'maindisplay_css_updated') self.changed = False def updateDisplay(self): From 13ff2faf182542cdb7291857fe75e97606dbcd9c Mon Sep 17 00:00:00 2001 From: Andreas Preikschat Date: Sun, 16 Oct 2011 22:32:50 +0200 Subject: [PATCH 17/24] fixed ticket 299 --- openlp/plugins/songs/lib/easislidesimport.py | 2 +- openlp/plugins/songs/lib/sofimport.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/openlp/plugins/songs/lib/easislidesimport.py b/openlp/plugins/songs/lib/easislidesimport.py index 6d3bde025..a3dd553f1 100644 --- a/openlp/plugins/songs/lib/easislidesimport.py +++ b/openlp/plugins/songs/lib/easislidesimport.py @@ -258,7 +258,7 @@ class EasiSlidesImport(SongImport): verses[reg][vt][vn] = {} if not verses[reg][vt][vn].has_key(inst): verses[reg][vt][vn][inst] = [] - words = self.tidy_text(line) + words = self.tidyText(line) verses[reg][vt][vn][inst].append(words) # done parsing diff --git a/openlp/plugins/songs/lib/sofimport.py b/openlp/plugins/songs/lib/sofimport.py index 6294f211e..5f310dba0 100644 --- a/openlp/plugins/songs/lib/sofimport.py +++ b/openlp/plugins/songs/lib/sofimport.py @@ -194,7 +194,7 @@ class SofImport(OooImport): into line """ text = textportion.getString() - text = self.tidy_text(text) + text = self.tidyText(text) if text.strip() == u'': return text if textportion.CharWeight == BOLD: From bdcf15d87ba305e5bf389cf36c9e29ebc9412196 Mon Sep 17 00:00:00 2001 From: Tim Bentley Date: Mon, 17 Oct 2011 19:01:07 +0100 Subject: [PATCH 18/24] Fix comments --- openlp/core/lib/plugin.py | 3 +++ openlp/plugins/alerts/alertsplugin.py | 4 ++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/openlp/core/lib/plugin.py b/openlp/core/lib/plugin.py index ad6f77116..0d925f582 100644 --- a/openlp/core/lib/plugin.py +++ b/openlp/core/lib/plugin.py @@ -384,6 +384,9 @@ class Plugin(QtCore.QObject): def refreshCss(self, frame): """ Allow plugins to refresh javascript on displayed screen. + + ``frame`` + The Web frame holding the page. """ return u'' diff --git a/openlp/plugins/alerts/alertsplugin.py b/openlp/plugins/alerts/alertsplugin.py index b5a6de8c7..213c6814f 100644 --- a/openlp/plugins/alerts/alertsplugin.py +++ b/openlp/plugins/alerts/alertsplugin.py @@ -203,8 +203,8 @@ class AlertsPlugin(Plugin): """ Trigger an update of the CSS in the maindisplay. - `frame` - The Web frame holding the page + ``frame`` + The Web frame holding the page. """ align = VerticalType.Names[self.settings_tab.location] frame.evaluateJavaScript(u'update_css("%s", "%s", "%s", "%s", "%s")' % From 4d3dd6dbb5f5e73a19f81da96de0dfd0d6a0c541 Mon Sep 17 00:00:00 2001 From: Tim Bentley Date: Wed, 19 Oct 2011 18:53:07 +0100 Subject: [PATCH 19/24] Rename signal --- openlp/core/lib/eventreceiver.py | 3 +-- openlp/core/ui/maindisplay.py | 2 +- openlp/plugins/alerts/lib/alertstab.py | 2 +- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/openlp/core/lib/eventreceiver.py b/openlp/core/lib/eventreceiver.py index ef21ffde4..2d4134ee3 100644 --- a/openlp/core/lib/eventreceiver.py +++ b/openlp/core/lib/eventreceiver.py @@ -219,8 +219,7 @@ class EventReceiver(QtCore.QObject): ``cursor_normal`` Resets the cursor to default - - ``maindisplay_css_updated`` + ``update_display_css`` CSS has been updated which needs to be changed on the main display. diff --git a/openlp/core/ui/maindisplay.py b/openlp/core/ui/maindisplay.py index 01b616d9d..dafda8ccf 100644 --- a/openlp/core/ui/maindisplay.py +++ b/openlp/core/ui/maindisplay.py @@ -82,7 +82,7 @@ class MainDisplay(QtGui.QGraphicsView): QtCore.SIGNAL(u'openlp_phonon_creation'), self.createMediaObject) QtCore.QObject.connect(Receiver.get_receiver(), - QtCore.SIGNAL(u'maindisplay_css_updated'), self.cssChanged) + QtCore.SIGNAL(u'update_display_css'), self.cssChanged) QtCore.QObject.connect(Receiver.get_receiver(), QtCore.SIGNAL(u'config_updated'), self.configChanged) diff --git a/openlp/plugins/alerts/lib/alertstab.py b/openlp/plugins/alerts/lib/alertstab.py index 3cf3c0ab3..8720c5111 100644 --- a/openlp/plugins/alerts/lib/alertstab.py +++ b/openlp/plugins/alerts/lib/alertstab.py @@ -191,7 +191,7 @@ class AlertsTab(SettingsTab): settings.setValue(u'location', QtCore.QVariant(self.location)) settings.endGroup() if self.changed: - Receiver.send_message(u'maindisplay_css_updated') + Receiver.send_message(u'update_display_css') self.changed = False def updateDisplay(self): From 3980b92dafff58006797e182f7eb7e542cbbc1da Mon Sep 17 00:00:00 2001 From: Andreas Preikschat Date: Wed, 19 Oct 2011 20:12:38 +0200 Subject: [PATCH 20/24] updated ts files --- resources/i18n/af.ts | 426 ++++++++++++++++++--------------- resources/i18n/cs.ts | 426 ++++++++++++++++++--------------- resources/i18n/de.ts | 432 ++++++++++++++++++--------------- resources/i18n/en.ts | 426 ++++++++++++++++++--------------- resources/i18n/en_GB.ts | 426 ++++++++++++++++++--------------- resources/i18n/en_ZA.ts | 426 ++++++++++++++++++--------------- resources/i18n/es.ts | 428 ++++++++++++++++++--------------- resources/i18n/et.ts | 426 ++++++++++++++++++--------------- resources/i18n/fr.ts | 426 ++++++++++++++++++--------------- resources/i18n/hu.ts | 426 ++++++++++++++++++--------------- resources/i18n/id.ts | 514 ++++++++++++++++++++++------------------ resources/i18n/ja.ts | 426 ++++++++++++++++++--------------- resources/i18n/ko.ts | 428 ++++++++++++++++++--------------- resources/i18n/nb.ts | 426 ++++++++++++++++++--------------- resources/i18n/nl.ts | 426 ++++++++++++++++++--------------- resources/i18n/pt_BR.ts | 426 ++++++++++++++++++--------------- resources/i18n/ru.ts | 426 ++++++++++++++++++--------------- resources/i18n/sv.ts | 466 +++++++++++++++++++----------------- resources/i18n/zh_CN.ts | 426 ++++++++++++++++++--------------- 19 files changed, 4497 insertions(+), 3735 deletions(-) diff --git a/resources/i18n/af.ts b/resources/i18n/af.ts index d78137981..5861778b1 100644 --- a/resources/i18n/af.ts +++ b/resources/i18n/af.ts @@ -412,38 +412,38 @@ Veranderinge affekteer nie verse wat reeds in die diens is nie. BiblesPlugin.HTTPBible - + Registering Bible and loading books... Registreer Bybel en laai boeke... - + Registering Language... Taal registrasie... - + Importing %s... Importing <book name>... Voer %s in... - + Download Error Aflaai Fout - + There was a problem downloading your verse selection. Please check your Internet connection, and if this error continues to occur please consider reporting a bug. Daar was 'n probleem om die vers seleksie af te laai. Gaan die Internet konneksie na en as hierdie probleem voortduur, oorweeg dit asseblief om 'n gogga te rapporteer. - + Parse Error Ontleed Fout - + There was a problem extracting your verse selection. If this error continues to occur please consider reporting a bug. Daar was 'n probleem om die vers seleksie te onttrek. As hierdie probleem voortduur, oorweeg dit asseblief om 'n gogga te rapporteer. @@ -546,27 +546,27 @@ Veranderinge affekteer nie verse wat reeds in die diens is nie. 'n LĂȘer met Bybel verse moet gespesifiseer word om in te voer. - + You need to specify a version name for your Bible. 'n Weergawe naam moet vir die Bybel gespesifiseer word. - + Bible Exists Bybel Bestaan reeds - + Your Bible import failed. 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. Die Bybel benodig 'n kopiereg. Bybels in die Publieke Domein moet daarvolgens gemerk word. - + This Bible already exists. Please import a different Bible or first delete the existing one. Hierdie Bybel bestaan reeds. Voer asseblief 'n ander Bybel in of wis eers die bestaande een uit. @@ -576,7 +576,7 @@ Veranderinge affekteer nie verse wat reeds in die diens is nie. Toestemming: - + CSV File KGW LĂȘer @@ -601,17 +601,17 @@ Veranderinge affekteer nie verse wat reeds in die diens is nie. Verse lĂȘer: - + openlp.org 1.x Bible Files openlp.org 1.x Bybel LĂȘers - + Registering Bible... Bybel word geregistreer... - + Registered Bible. Please note, that verses will be downloaded on demand and thus an internet connection is required. Geregistreerde Bybel. Neem asseblief kennis dat verse op aan- @@ -1113,7 +1113,7 @@ word en dus is 'n Internet verbinding nodig. ImagePlugin.ExceptionDialog - + Select Attachment Selekteer Aanhangsel @@ -1166,17 +1166,17 @@ Voeg steeds die ander beelde by? ImagesPlugin.ImageTab - + Background Color Agtergrond Kleur - + Default Color: Verstek Kleur: - + Provides border where image is not the correct dimensions for the screen when resized. Verskaf rand waar die beeld nie die korrekte afmetings het wanneer vir die skerm verander word nie. @@ -1250,7 +1250,7 @@ Voeg steeds die ander beelde by? Selekteer Media - + You must select a media file to delete. 'n Media lĂȘer om uit te wis moet geselekteer word. @@ -1634,7 +1634,7 @@ Gedeeltelike kopiereg © 2004-2011 %s Heg 'n LĂȘer aan - + Description characters to enter : %s Beskrywende karakters om in te voer: %s @@ -1642,24 +1642,24 @@ Gedeeltelike kopiereg © 2004-2011 %s OpenLP.ExceptionForm - + Platform: %s Platvorm: %s - + Save Crash Report Stoor Bots Verslag - + Text files (*.txt *.log *.text) Teks lĂȘers (*.txt *.log *.text) - + **OpenLP Bug Report** Version: %s @@ -1690,7 +1690,7 @@ Version: %s - + *OpenLP Bug Report* Version: %s @@ -2802,7 +2802,7 @@ Databasis: %s OpenLP.MediaManagerItem - + No Items Selected Geen item geselekteer nie @@ -2812,42 +2812,42 @@ Databasis: %s &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. - + 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. - + You must select one or more items to add. Kies een of meer items om by te voeg. - + No Search Results Geen Soek Resultate @@ -3023,12 +3023,12 @@ Suffix not supported OpenLP.ServiceItem - + <strong>Start</strong>: %s <strong>Begin</strong>: %s - + <strong>Length</strong>: %s <strong>Durasie</strong>: %s @@ -3044,209 +3044,209 @@ Suffix not supported OpenLP.ServiceManager - + 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 - + &Add to Selected Item &Voeg by Geselekteerde Item - + &Edit Item R&edigeer Item - + &Reorder Item Ve&rander Item orde - + &Notes &Notas - + &Change Item Theme &Verander Item Tema - + File is not a valid service. The content encoding is not UTF-8. LĂȘer is nie 'n geldige diens nie. Die inhoud enkodering is nie UTF-8 nie. - + File is not a valid service. LĂȘer is nie 'n geldige diens nie. - + Missing Display Handler Vermisde Vertoon Hanteerder - + Your item cannot be displayed as there is no handler to display it Die item kan nie vertoon word nie omdat daar nie 'n hanteerder is om dit te vertoon nie - + Your item cannot be displayed as the plugin required to display it is missing or inactive Die item kan nie vertoon word nie omdat die mini-program wat dit moet vertoon vermis of onaktief is - + &Expand all Br&ei alles uit - + Expand all the service items. Brei al die diens items uit. - + &Collapse all Sto&rt alles ineen - + Collapse all the service items. Stort al die diens items ineen. - + Open File Maak LĂȘer oop - + OpenLP Service Files (*.osz) OpenLP Diens LĂȘers (*.osz) - + Moves the selection down the window. Skuif die geselekteerde afwaarts in die venster. - + Move up Skuif op - + Moves the selection up the window. Skuif die geselekteerde opwaarts in die venster. - + Go Live Gaan Regstreeks - + Send the selected item to Live. Stuur die geselekteerde item Regstreeks. - + Modified Service Redigeer Diens - + &Start Time &Begin Tyd - + Show &Preview Wys &Voorskou - + Show &Live Vertoo&n Regstreeks - + The current service has been modified. Would you like to save this service? Die huidige diens was verander. Stoor hierdie diens? - + File could not be opened because it is corrupt. LĂȘer kon nie oopgemaak word nie omdat dit korrup is. - + Empty File LeĂ« LĂȘer - + This service file does not contain any data. Die diens lĂȘer het geen data inhoud nie. - + Corrupt File Korrupte LĂȘer @@ -3266,42 +3266,42 @@ Die inhoud enkodering is nie UTF-8 nie. Speel tyd: - + Untitled Service Ongetitelde Diens - + Load an existing service. Laai 'n bestaande diens. - + Save this service. Stoor die diens. - + Select a theme for the service. Kies 'n tema vir die diens. - + This file is either corrupt or it is not an OpenLP 2.0 service file. Die lĂȘer is Ăłf korrup Ăłf is nie 'n OpenLP 2.0 diens lĂȘer nie. - + Slide theme Skyfie tema - + Notes Notas - + Service File Missing Diens LĂȘer Vermis @@ -3428,17 +3428,17 @@ Die inhoud enkodering is nie UTF-8 nie. Volgende Skyfie - + Previous Service Vorige Diens - + Next Service Volgende Diens - + Escape Item Ontsnap Item @@ -3558,36 +3558,51 @@ Die inhoud enkodering is nie UTF-8 nie. Start time is after the finish time of the media item Begin tyd is na die eind tyd van die media item + + + Theme Layout + + + + + The blue box shows the main area. + + + + + The red box shows the footer. + + OpenLP.ThemeForm - + Select Image Selekteer Beeld - + Theme Name Missing Tema Naam Vermis - + There is no name for this theme. Please enter one. Daar is nie 'n naam vir hierdie tema nie. Voer asseblief een in. - + Theme Name Invalid Tema Naam Ongeldig - + Invalid theme name. Please enter one. Ongeldige tema naam. Voer asseblief een in. - + (approximately %d lines per slide) (ongeveer %d lyne per skyfie) @@ -3665,7 +3680,7 @@ Die inhoud enkodering is nie UTF-8 nie. Kies 'n tema om te redigeer. - + You are unable to delete the default theme. Die standaard tema kan nie uitgewis word nie. @@ -3705,19 +3720,19 @@ Die inhoud enkodering is nie UTF-8 nie. Kies Tema Invoer LĂȘer - + File is not a valid theme. The content encoding is not UTF-8. LĂȘer is nie 'n geldige tema nie. Die inhoud enkodering is nie UTF-8 nie. - + File is not a valid theme. LĂȘer is nie 'n geldige tema nie. - + Theme %s is used in the %s plugin. Tema %s is in gebruik deur die %s mini-program. @@ -3767,12 +3782,12 @@ Die inhoud enkodering is nie UTF-8 nie. Wis %s tema uit? - + Validation Error Validerings Fout - + A theme with this name already exists. 'n Tema met hierdie naam bestaan alreeds. @@ -3791,260 +3806,270 @@ Die inhoud enkodering is nie UTF-8 nie. OpenLP.ThemeWizard - + Theme Wizard Tema Gids - + Welcome to the Theme Wizard Welkom by die Tema Gids - + Set Up Background Stel die Agtergrond Op - + Set up your theme's background according to the parameters below. Stel jou tema se agtergrond op volgens die parameters hier onder. - + Background type: Agtergrond tipe: - + Solid Color Soliede Kleur - + Gradient GradiĂ«nt - + Color: Kleur: - + Gradient: GradiĂ«nt: - + Horizontal Horisontaal - + Vertical Vertikaal - + Circular Sirkelvormig - + Top Left - Bottom Right Links Bo - Regs Onder - + Bottom Left - Top Right Links Onder - Regs Bo - + Main Area Font Details Hoof Area Skrif Gegewens - + Define the font and display characteristics for the Display text DefinieĂ«r die skrif en vertoon karrakters vir die Vertoon teks - + Font: Skrif: - + Size: Grootte: - + Line Spacing: Lyn SpasiĂ«ring: - + &Outline: &Buitelyn: - + &Shadow: &Skaduwee: - + Bold Vetdruk - + Italic Italiaans - + Footer Area Font Details Voetskrif Area Skrif Gegewens - + Define the font and display characteristics for the Footer text DefinieĂ«r die skrif en vertoon karraktereienskappe vir die Voetskrif teks - + Text Formatting Details Teks Formattering Gegewens - + Allows additional display formatting information to be defined Laat toe dat addisionele vertoon formattering inligting gedifinieĂ«r word - + Horizontal Align: Horisontale Sporing: - + Left Links - + Right Regs - + Center Middel - + Output Area Locations Uitvoer Area Liggings - + Allows you to change and move the main and footer areas. Laat toe dat die hoof en voetskrif areas verander en geskuif word. - + &Main Area &Hoof Area - + &Use default location Gebr&uik verstek ligging - + X position: X posisie: - + px px - + Y position: Y posisie: - + Width: Wydte: - + Height: Hoogte: - + Use default location Gebruik verstek ligging - + Save and Preview Stoor en Voorskou - + View the theme and save it replacing the current one or change the name to create a new theme Besigtig die tema en stoor dit waarna die huidige een vervang, of verander die naam om 'n nuwe een te skep - + Theme name: Tema naam: - + This wizard will help you to create and edit your themes. Click the next button below to start the process by setting up your background. Hierdie gids sal help om temas te skep en te redigeer. Klik die volgende knoppie hieronder om die proses te begin deur jou agtergrond op te stel. - + Transitions: Oorskakel effekte: - + &Footer Area &Voetskrif Area - + Edit Theme - %s Redigeer Tema - %s - + Starting color: Begin Kleur: - + Ending color: Eind Kleur: - + Background color: Agtergrond kleur: + + + Justify + + + + + Layout Preview + + OpenLP.ThemesTab @@ -4689,52 +4714,52 @@ Die inhoud enkodering is nie UTF-8 nie. PresentationPlugin.MediaItem - + Select Presentation(s) Selekteer Aanbieding(e) - + Automatic Outomaties - + Present using: Bied aan met: - + File Exists LĂȘer Bestaan Reeds - + A presentation with that filename already exists. 'n Aanbieding met daardie lĂȘernaam bestaan reeds. - + This type of presentation is not supported. Hierdie tipe aanbieding word nie ondersteun nie. - + Presentations (%s) Aanbiedinge (%s) - + Missing Presentation Vermisde Aanbieding - + The Presentation %s no longer exists. Die Aanbieding %s bestaan nie meer nie. - + The Presentation %s is incomplete, please reload. Die Aanbieding %s is onvolledig, herlaai asseblief. @@ -4879,30 +4904,35 @@ Die inhoud enkodering is nie UTF-8 nie. RemotePlugin.RemoteTab - + Serve on IP address: Bedien op hierdie IP adres: - + Port number: Poort nommer: - + Server Settings Bediener Verstellings - + Remote URL: AfgeleĂ« URL: - + Stage view URL: Verhoog vertoning URL: + + + Display stage time in 12h format + + SongUsagePlugin @@ -4993,7 +5023,7 @@ Die inhoud enkodering is nie UTF-8 nie. SongUsagePlugin.SongUsageDeleteForm - + Delete Song Usage Data Wis Lied Gebruik Data Uit @@ -5018,7 +5048,7 @@ Die inhoud enkodering is nie UTF-8 nie. Al die gevraagde data is suksesvol uitgewis. - + Select the date up to which the song usage data should be deleted. All data recorded before this date will be permanently deleted. Selekteer die datum tot waarop die liedere gebruik uitgewis moet word. Alle opgeneemde data voor hierdie datum sal permanent verwyder word. @@ -5638,7 +5668,7 @@ Die enkodering is verantwoordelik vir die korrekte karrakter voorstelling. SongsPlugin.ImportWizardForm - + Select Document/Presentation Files Selekteer Dokument/Aanbieding LĂȘers @@ -5653,95 +5683,105 @@ Die enkodering is verantwoordelik vir die korrekte karrakter voorstelling.Hierdie gids help met die invoer van liedere in verskillende formate. Kliek die volgende knoppie hieronder om die proses te begin deur 'n formaat te kies wat gebruik moet word vir invoer. - + Generic Document/Presentation Generiese Dokumentasie/Aanbieding - + Filename: LĂȘernaam: - + Add Files... Voeg LĂȘers by... - + Remove File(s) Verwyder LĂȘer(s) - + Please wait while your songs are imported. Wag asseblief terwyl die liedere ingevoer word. - + 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. Die OpenLyrics invoerder is nog nie ontwikkel nie, maar soos gesien kan word is ons van mening om dit te doen. Hopelik sal dit in die volgende vrystelling wees. - + OpenLP 2.0 Databases OpenLP 2.0 Databasisse - + openlp.org v1.x Databases openlp.org v1.x Databasisse - + Words Of Worship Song Files Words Of Worship Lied LĂȘers - + Songs Of Fellowship Song Files Songs Of Fellowship Lied LĂȘers - + SongBeamer Files SongBeamer LĂȘers - + SongShow Plus Song Files SongShow Plus Lied LĂȘers - + You need to specify at least one document or presentation file to import from. Ten minste een document of aanbieding moet gespesifiseer word om vanaf in te voer. - + Foilpresenter Song Files Foilpresenter Lied LĂȘers - + Copy KopieĂ«r - + Save to File Stoor na LĂȘer - + The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. Die Liedere van Volgelinge invoerder is onaktief gestel omdat OpenLP nie toegang tot OpenOffice of LibreOffice het nie. - + The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. Die generiese dokument/aanbieding invoerder is onaktief gestel omdat OpenLP nie toegang tot OpenOffice of LibreOffice het nie. + + + OpenLyrics or OpenLP 2.0 Exported Song + + + + + OpenLyrics Files + + SongsPlugin.MediaFilesForm @@ -5769,7 +5809,7 @@ Die enkodering is verantwoordelik vir die korrekte karrakter voorstelling.Lirieke - + CCLI License: CCLI Lisensie: @@ -5792,7 +5832,7 @@ Die enkodering is verantwoordelik vir die korrekte karrakter voorstelling.Onderhou die lys van skrywers, onderwerpe en boeke. - + copy For song cloning kopieĂ«r @@ -5817,7 +5857,7 @@ Die enkodering is verantwoordelik vir die korrekte karrakter voorstelling. SongsPlugin.OpenLyricsExport - + Exporting "%s"... Uitvoer "%s"... @@ -5889,7 +5929,7 @@ Die enkodering is verantwoordelik vir die korrekte karrakter voorstelling. SongsPlugin.SongImportForm - + Your song import failed. Lied invoer het misluk. diff --git a/resources/i18n/cs.ts b/resources/i18n/cs.ts index 919f1c48f..6f63fdeda 100644 --- a/resources/i18n/cs.ts +++ b/resources/i18n/cs.ts @@ -412,38 +412,38 @@ VerĆĄe, kterĂ© jsou uĆŸ ve sluĆŸbě, nejsou změnami ovlivněny. BiblesPlugin.HTTPBible - + Registering Bible and loading books... - + Registering Language... - + Importing %s... Importing <book name>... - + Download Error Chyba stahovĂĄnĂ­ - + There was a problem downloading your verse selection. Please check your Internet connection, and if this error continues to occur please consider reporting a bug. Pƙi stahovĂĄnĂ­ vĂœběru verĆĄĆŻ se vyskytl problĂ©m. ProsĂ­m prověƙte svĂ© internetovĂ© pƙipojenĂ­. Pokud se tato chyba stĂĄle objevuje, zvaĆĄte prosĂ­m nahlĂĄĆĄenĂ­ chyby. - + Parse Error Chyba zpracovĂĄnĂ­ - + There was a problem extracting your verse selection. If this error continues to occur please consider reporting a bug. Pƙi rozbalovĂĄnĂ­ vĂœběru verĆĄĆŻ se vyskytl problĂ©m. Pokud se tato chyba stĂĄle objevuje, zvaĆĄte prosĂ­m nahlĂĄĆĄenĂ­ chyby. @@ -546,32 +546,32 @@ VerĆĄe, kterĂ© jsou uĆŸ ve sluĆŸbě, nejsou změnami ovlivněny. K importu je tƙeba určit soubor s verĆĄemi Bible. - + You need to specify a version name for your Bible. Je nutno uvĂ©st nĂĄzev verze Bible. - + You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. K Bibli je potƙeba nastavit autorskĂĄ prĂĄva. Bible, kterĂ© jsou volnĂĄ dĂ­la, je nutno takto označit. - + Bible Exists Bible existuje - + This Bible already exists. Please import a different Bible or first delete the existing one. Tato Bible uĆŸ existuje. Importujte prosĂ­m jinou Bibli nebo nejdƙíve smaĆŸte tu existujĂ­cĂ­. - + Your Bible import failed. Import Bible selhal. - + CSV File CSV soubor @@ -601,17 +601,17 @@ VerĆĄe, kterĂ© jsou uĆŸ ve sluĆŸbě, nejsou změnami ovlivněny. Soubor s verĆĄi: - + openlp.org 1.x Bible Files Soubory s Biblemi z openlp.org 1.x - + Registering Bible... Registruji Bibli... - + Registered Bible. Please note, that verses will be downloaded on demand and thus an internet connection is required. Bible registrovanĂĄ. UpozorněnĂ­: VerĆĄe budou stahovĂĄny na vyĆŸĂĄdĂĄnĂ­ a proto je vyĆŸadovĂĄno internetovĂ© pƙipojenĂ­. @@ -1106,7 +1106,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I ImagePlugin.ExceptionDialog - + Select Attachment Vybrat pƙílohu @@ -1159,17 +1159,17 @@ Chcete pƙidat ostatnĂ­ obrĂĄzky? ImagesPlugin.ImageTab - + Background Color - + Default Color: - + Provides border where image is not the correct dimensions for the screen when resized. @@ -1243,7 +1243,7 @@ Chcete pƙidat ostatnĂ­ obrĂĄzky? Vybrat mĂ©dium - + You must select a media file to delete. Ke smazĂĄnĂ­ musĂ­te nejdƙíve vybrat soubor s mĂ©diem. @@ -1626,7 +1626,7 @@ Portions copyright © 2004-2011 %s PƙiloĆŸit soubor - + Description characters to enter : %s Znaky popisu pro vloĆŸenĂ­ : %s @@ -1634,24 +1634,24 @@ Portions copyright © 2004-2011 %s OpenLP.ExceptionForm - + Platform: %s Platforma: %s - + Save Crash Report UloĆŸit hlĂĄĆĄenĂ­ o pĂĄdu - + Text files (*.txt *.log *.text) TextovĂ© soubory (*.txt *.log *.text) - + **OpenLP Bug Report** Version: %s @@ -1682,7 +1682,7 @@ Version: %s - + *OpenLP Bug Report* Version: %s @@ -2780,7 +2780,7 @@ Database: %s OpenLP.MediaManagerItem - + No Items Selected NevybranĂĄ zĂĄdnĂĄ poloĆŸka @@ -2790,42 +2790,42 @@ Database: %s &Pƙidat k vybranĂ© PoloĆŸce SluĆŸby - + You must select one or more items to preview. Pro nĂĄhled je tƙeba vybrat jednu nebo vĂ­ce poloĆŸek. - + You must select one or more items to send live. Pro zobrazenĂ­ naĆŸivo je potƙeba vybrat jednu nebo vĂ­ce poloĆŸek. - + You must select one or more items. Je tƙeba vybrat jednu nebo vĂ­ce poloĆŸek. - + You must select an existing service item to add to. K pƙidĂĄnĂ­ Je tƙeba vybrat existujĂ­cĂ­ poloĆŸku sluĆŸby. - + Invalid Service Item NeplatnĂĄ PoloĆŸka sluĆŸby - + You must select a %s service item. Je tƙeba vybrat %s poloĆŸku sluĆŸby. - + You must select one or more items to add. Pro pƙidĂĄnĂ­ Je tƙeba vybrat jednu nebo vĂ­ce poloĆŸek. - + No Search Results ĆœĂĄdnĂ© vĂœsledky hledĂĄnĂ­ @@ -3001,12 +3001,12 @@ Suffix not supported OpenLP.ServiceItem - + <strong>Start</strong>: %s - + <strong>Length</strong>: %s @@ -3022,209 +3022,209 @@ Suffix not supported OpenLP.ServiceManager - + Move to &top Pƙesun &nahoru - + Move item to the top of the service. Pƙesun poloĆŸky ve sluĆŸbě Ășplně nahoru. - + Move &up Pƙesun &vĂœĆĄe - + Move item up one position in the service. Pƙesun poloĆŸky ve sluĆŸbě o jednu pozici vĂœĆĄe. - + Move &down P?esun &nĂ­ĆŸe - + Move item down one position in the service. P?esun poloĆŸky ve sluĆŸb? o jednu pozici nĂ­ĆŸe. - + Move to &bottom Pƙesun &dolu - + Move item to the end of the service. Pƙesun poloĆŸky ve sluĆŸbě Ășplně dolĆŻ. - + &Delete From Service &Smazat ze sluĆŸby - + Delete the selected item from the service. Smazat vybranou poloĆŸku ze sluĆŸby. - + &Add New Item &Pƙidat novou poloĆŸku - + &Add to Selected Item &Pƙidat k vybranĂ© poloĆŸce - + &Edit Item &Upravit poloĆŸku - + &Reorder Item &Změnit poƙadĂ­ poloĆŸky - + &Notes &PoznĂĄmky - + &Change Item Theme &Změnit motiv poloĆŸky - + OpenLP Service Files (*.osz) Soubory sluĆŸby OpenLP (*.osz) - + File is not a valid service. The content encoding is not UTF-8. Soubor nenĂ­ platnĂĄ sluĆŸba. Obsah souboru nenĂ­ v kĂłdovĂĄnĂ­ UTF-8. - + File is not a valid service. Soubor nenĂ­ platnĂĄ sluĆŸba. - + Missing Display Handler ChybějĂ­cĂ­ obsluha zobrazenĂ­ - + Your item cannot be displayed as there is no handler to display it PoloĆŸku nenĂ­ moĆŸno zobrazit, protoĆŸe chybĂ­ obsluha pro jejĂ­ zobrazenĂ­ - + Your item cannot be displayed as the plugin required to display it is missing or inactive PoloĆŸku nenĂ­ moĆŸno zobrazit, protoĆŸe modul potƙebnĂœ pro zobrazenĂ­ poloĆŸky chybĂ­ nebo je neaktivnĂ­ - + &Expand all &Rozvinou vĆĄe - + Expand all the service items. Rozvinout vĆĄechny poloĆŸky sluĆŸby. - + &Collapse all &Svinout vĆĄe - + Collapse all the service items. Svinout vĆĄechny poloĆŸky sluĆŸby. - + Open File Otevƙít soubor - + Moves the selection down the window. Pƙesune vĂœběr v rĂĄmci okna dolu. - + Move up Pƙesun nahoru - + Moves the selection up the window. Pƙesune vĂœběr v rĂĄmci okna nahoru. - + Go Live Zobrazit naĆŸivo - + Send the selected item to Live. ZobrazĂ­ vybranou poloĆŸku naĆŸivo. - + &Start Time &Spustit čas - + Show &Preview Zobrazit &nĂĄhled - + Show &Live Zobrazit n&aĆŸivo - + Modified Service ZměněnĂĄ sluĆŸba - + The current service has been modified. Would you like to save this service? SoučasnĂĄ sluĆŸba byla změněna. Pƙejete si sluĆŸbu uloĆŸit? - + File could not be opened because it is corrupt. Soubor se nepodaƙilo otevƙít, protoĆŸe je poĆĄkozenĂœ. - + Empty File PrĂĄzdnĂœ soubor - + This service file does not contain any data. Tento soubor sluĆŸby neobsahuje ĆŸĂĄdnĂĄ data. - + Corrupt File PoĆĄkozenĂœ soubor @@ -3244,42 +3244,42 @@ Obsah souboru nenĂ­ v kĂłdovĂĄnĂ­ UTF-8. Čas pƙehrĂĄvĂĄnĂ­: - + Untitled Service PrĂĄzdnĂĄ sluĆŸba - + Load an existing service. Načíst existujĂ­cĂ­ sluĆŸbu. - + Save this service. UloĆŸit tuto sluĆŸbu. - + Select a theme for the service. Vybrat motiv pro sluĆŸbu. - + This file is either corrupt or it is not an OpenLP 2.0 service file. - + Slide theme - + Notes - + Service File Missing @@ -3406,17 +3406,17 @@ Obsah souboru nenĂ­ v kĂłdovĂĄnĂ­ UTF-8. NĂĄsledujĂ­cĂ­ snĂ­mek - + Previous Service PƙedchozĂ­ sluĆŸba - + Next Service NĂĄsledujĂ­cĂ­ sluĆŸba - + Escape Item ZruĆĄit poloĆŸku @@ -3536,36 +3536,51 @@ Obsah souboru nenĂ­ v kĂłdovĂĄnĂ­ UTF-8. Start time is after the finish time of the media item + + + Theme Layout + + + + + The blue box shows the main area. + + + + + The red box shows the footer. + + OpenLP.ThemeForm - + Select Image Vybrat obrĂĄzek - + Theme Name Missing ChybĂ­ nĂĄzev motivu - + There is no name for this theme. Please enter one. NenĂ­ vyplněn nĂĄzev motivu. ProsĂ­m zadejte ho. - + Theme Name Invalid NeplatnĂœ nĂĄzev motivu - + Invalid theme name. Please enter one. NeplatnĂœ nĂĄzev motivu. ProsĂ­m zadejte novĂœ. - + (approximately %d lines per slide) @@ -3643,12 +3658,12 @@ Obsah souboru nenĂ­ v kĂłdovĂĄnĂ­ UTF-8. Pro Ășpravy je tƙeba vybrat motiv. - + You are unable to delete the default theme. NenĂ­ moĆŸno smazat vĂœchozĂ­ motiv. - + Theme %s is used in the %s plugin. Motiv %s je pouĆŸĂ­vĂĄn v modulu %s. @@ -3688,14 +3703,14 @@ Obsah souboru nenĂ­ v kĂłdovĂĄnĂ­ UTF-8. Vybrat soubor k importu motivu - + File is not a valid theme. The content encoding is not UTF-8. Soubor nenĂ­ platnĂœ motiv. Obsah souboru nenĂ­ v kĂłdovĂĄnĂ­ UTF-8. - + File is not a valid theme. Soubor nenĂ­ platnĂœ motiv. @@ -3745,12 +3760,12 @@ Obsah souboru nenĂ­ v kĂłdovĂĄnĂ­ UTF-8. Smazat motiv %s? - + Validation Error Chyba ověƙovĂĄnĂ­ - + A theme with this name already exists. Motiv s tĂ­mto nĂĄzvem jiĆŸ existuje. @@ -3769,260 +3784,270 @@ Obsah souboru nenĂ­ v kĂłdovĂĄnĂ­ UTF-8. OpenLP.ThemeWizard - + Theme Wizard PrĆŻvodce motivem - + Welcome to the Theme Wizard VĂ­tejte v prĆŻvodci motivem - + Set Up Background NastavenĂ­ pozadĂ­ - + Set up your theme's background according to the parameters below. Podle parametrĆŻ nĂ­ĆŸe nastavte pozadĂ­ motivu. - + Background type: Typ pozadĂ­: - + Solid Color PlnĂĄ barva - + Gradient Pƙechod - + Color: Barva: - + Gradient: Pƙechod: - + Horizontal VodorovnĂœ - + Vertical SvislĂœ - + Circular KruhovĂœ - + Top Left - Bottom Right Vlevo nahoƙe - vpravo dole - + Bottom Left - Top Right Vlevo dole - vpravo nahoƙe - + Main Area Font Details Podrobnosti pĂ­sma hlavnĂ­ oblasti - + Define the font and display characteristics for the Display text Definovat pĂ­smo a charakteristiku zobrazenĂ­ pro zobrazenĂœ text - + Font: PĂ­smo: - + Size: Velikost: - + Line Spacing: ƘådkovĂĄnĂ­: - + &Outline: &Obrys: - + &Shadow: &StĂ­n: - + Bold TučnĂ© - + Italic KurzĂ­va - + Footer Area Font Details Podrobnosti pĂ­sma oblasti zĂĄpatĂ­ - + Define the font and display characteristics for the Footer text Definovat pĂ­smo a charakteristiku zobrazenĂ­ pro text zĂĄpatĂ­ - + Text Formatting Details Podrobnosti formĂĄtovĂĄnĂ­ textu - + Allows additional display formatting information to be defined Dovoluje definovat dalĆĄĂ­ formĂĄtovacĂ­ informace zobrazenĂ­ - + Horizontal Align: VodorovnĂ© zarovnĂĄnĂ­: - + Left Vlevo - + Right Vpravo - + Center Na stƙed - + Output Area Locations UmĂ­stěnĂ­ vĂœstupnĂ­ oblasti - + Allows you to change and move the main and footer areas. Dovoluje změnit a pƙesunout hlavnĂ­ oblast a oblast zĂĄpatĂ­. - + &Main Area &HlavnĂ­ oblast - + &Use default location &PouĆŸĂ­t vĂœchozĂ­ umĂ­stěnĂ­ - + X position: Pozice X: - + px px - + Y position: Pozice Y: - + Width: Ơíƙka: - + Height: VĂœĆĄka: - + Use default location PouĆŸĂ­t vĂœchozĂ­ umĂ­stěnĂ­ - + Save and Preview UloĆŸit a nĂĄhled - + View the theme and save it replacing the current one or change the name to create a new theme Zobrazit motiv a uloĆŸit ho, dojde k pƙepsĂĄnĂ­ současnĂ©ho nebo změƈte nĂĄzev, aby se vytvoƙil novĂœ motiv - + Theme name: NĂĄzev motivu: - + Edit Theme - %s Upravit motiv - %s - + This wizard will help you to create and edit your themes. Click the next button below to start the process by setting up your background. Tento prĆŻvodce pomĂĄhĂĄ s vytvoƙenĂ­m a Ășpravou vaĆĄich motivu. Klepněte nĂ­ĆŸe na tlačítko dalĆĄĂ­ pro spuĆĄtěnĂ­ procesu nastavenĂ­ vaĆĄeho pozadĂ­. - + Transitions: Pƙechody: - + &Footer Area Oblast &zĂĄpatĂ­ - + Starting color: - + Ending color: - + Background color: Barva pozadĂ­: + + + Justify + + + + + Layout Preview + + OpenLP.ThemesTab @@ -4667,52 +4692,52 @@ Obsah souboru nenĂ­ v kĂłdovĂĄnĂ­ UTF-8. PresentationPlugin.MediaItem - + Select Presentation(s) Vybrat prezentace - + Automatic Automaticky - + Present using: NynĂ­ pouĆŸĂ­vajĂ­cĂ­: - + File Exists Soubor existuje - + A presentation with that filename already exists. Prezentace s tĂ­mto nĂĄzvem souboru uĆŸ existuje. - + This type of presentation is not supported. Tento typ prezentace nenĂ­ podporovĂĄn. - + Presentations (%s) Prezentace (%s) - + Missing Presentation ChybějĂ­cĂ­ prezentace - + The Presentation %s no longer exists. Prezentace %s uĆŸ neexistuje. - + The Presentation %s is incomplete, please reload. Prezentace %s nenĂ­ kompletnĂ­, prosĂ­m načtěte ji znovu. @@ -4857,30 +4882,35 @@ Obsah souboru nenĂ­ v kĂłdovĂĄnĂ­ UTF-8. RemotePlugin.RemoteTab - + Serve on IP address: Poslouchat na IP adresse: - + Port number: Číslo portu: - + Server Settings NastavenĂ­ serveru - + Remote URL: URL dĂĄlkovĂ©ho ovlĂĄdĂĄnĂ­: - + Stage view URL: URL zobrazenĂ­ na jeviĆĄti: + + + Display stage time in 12h format + + SongUsagePlugin @@ -4971,7 +5001,7 @@ Obsah souboru nenĂ­ v kĂłdovĂĄnĂ­ UTF-8. SongUsagePlugin.SongUsageDeleteForm - + Delete Song Usage Data Smazat data pouĆŸĂ­vĂĄnĂ­ pĂ­snĂ­ @@ -4996,7 +5026,7 @@ Obsah souboru nenĂ­ v kĂłdovĂĄnĂ­ UTF-8. VĆĄechny poĆŸadovanĂĄ data byla Ășspěơně smazĂĄna. - + Select the date up to which the song usage data should be deleted. All data recorded before this date will be permanently deleted. @@ -5613,7 +5643,7 @@ KĂłdovĂĄnĂ­ zodpovĂ­dĂĄ za sprĂĄvnou reprezentaci znakĆŻ. SongsPlugin.ImportWizardForm - + Select Document/Presentation Files Vybrat dokumentovĂ©/prezentačnĂ­ soubory @@ -5628,95 +5658,105 @@ KĂłdovĂĄnĂ­ zodpovĂ­dĂĄ za sprĂĄvnou reprezentaci znakĆŻ. Tento prĆŻvodce pomĂĄhĂĄ importovat pĂ­sně z rĆŻznĂœch formĂĄtĆŻ. ImportovĂĄnĂ­ se spustĂ­ klepnutĂ­m nĂ­ĆŸe na tlačítko dalĆĄĂ­ a vĂœběrem formĂĄtu, ze kterĂ©ho se bude importovat. - + Generic Document/Presentation ObecnĂœ dokument/prezentace - + Filename: NĂĄzev souboru: - + 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. Import pro formĂĄt OpenLyrics jeĆĄtě nebyl vyvinut, ale jak mĆŻĆŸete vidět, stĂĄle to zamĂœĆĄlĂ­me udělat. DoufĂĄme, ĆŸe to bude pƙítomno v dalĆĄĂ­ verzi aplikace. - + Add Files... Pƙidat soubory... - + Remove File(s) Odstranit soubory - + Please wait while your songs are imported. Čekejte prosĂ­m, neĆŸ pĂ­sně budou importovĂĄny. - + OpenLP 2.0 Databases DatabĂĄze OpenLP 2.0 - + openlp.org v1.x Databases DatabĂĄze openlp.org v1.x - + Words Of Worship Song Files Soubory s pĂ­sněmi Words of Worship - + You need to specify at least one document or presentation file to import from. Je potƙeba zadat alespoƈ jeden dokument nebo jednu prezentaci, ze kterĂ© importovat. - + Songs Of Fellowship Song Files Soubory s pĂ­sněmi Songs Of Fellowship - + SongBeamer Files SongBeamer soubory - + SongShow Plus Song Files Soubory s pĂ­sněmi SongShow Plus - + Foilpresenter Song Files Soubory s pĂ­sněmi Foilpresenter - + Copy KopĂ­rovat - + Save to File UloĆŸit do souboru - + The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. - + The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. + + + OpenLyrics or OpenLP 2.0 Exported Song + + + + + OpenLyrics Files + + SongsPlugin.MediaFilesForm @@ -5744,7 +5784,7 @@ KĂłdovĂĄnĂ­ zodpovĂ­dĂĄ za sprĂĄvnou reprezentaci znakĆŻ. Text pĂ­sně - + CCLI License: CCLI Licence: @@ -5768,7 +5808,7 @@ KĂłdovĂĄnĂ­ zodpovĂ­dĂĄ za sprĂĄvnou reprezentaci znakĆŻ. Spravovat seznamy autorĆŻ, tĂ©mat a zpěvnĂ­kĆŻ. - + copy For song cloning @@ -5793,7 +5833,7 @@ KĂłdovĂĄnĂ­ zodpovĂ­dĂĄ za sprĂĄvnou reprezentaci znakĆŻ. SongsPlugin.OpenLyricsExport - + Exporting "%s"... Exportuji "%s"... @@ -5865,7 +5905,7 @@ KĂłdovĂĄnĂ­ zodpovĂ­dĂĄ za sprĂĄvnou reprezentaci znakĆŻ. SongsPlugin.SongImportForm - + Your song import failed. Import pĂ­sně selhal. diff --git a/resources/i18n/de.ts b/resources/i18n/de.ts index 57ff315ee..93ea8ce5a 100644 --- a/resources/i18n/de.ts +++ b/resources/i18n/de.ts @@ -412,38 +412,38 @@ Changes do not affect verses already in the service. BiblesPlugin.HTTPBible - + Registering Bible and loading books... Registriere Bibel und lade BĂŒcher... - + Registering Language... Registriere Sprache... - + Importing %s... Importing <book name>... Importiere »%s«... - + Download Error Download Fehler - + There was a problem downloading your verse selection. Please check your Internet connection, and if this error continues to occur please consider reporting a bug. Beim Herunterladen des Bibeltextes ist ein Fehler aufgetreten. Bitte ĂŒberprĂŒfen Sie Ihre Internetverbindung. Sollte dieser Fehler dennoch auftreten, so wenden Sie sich bitte an den OpenLP Support. - + Parse Error Formatfehler - + There was a problem extracting your verse selection. If this error continues to occur please consider reporting a bug. Beim Auslesen des Bibeltextes ist ein Fehler aufgetreten. Sollte dieser Fehler wiederholt auftreten, so wenden Sie sich bitte an den OpenLP Support. @@ -541,17 +541,17 @@ Changes do not affect verses already in the service. Eine Bibeltext-Datei muss zum Import angegeben werden. - + You need to specify a version name for your Bible. Bitte geben Sie den Namen der BibelĂŒbersetzung ein. - + Bible Exists Übersetzung bereits vorhanden - + Your Bible import failed. Der Bibelimport ist fehlgeschlagen. @@ -561,12 +561,12 @@ Changes do not affect verses already in the service. Bibelausgabe: - + You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. Das Copyright muss angegeben werden. Gemeinfreie Bibeln ohne Copyright sind als solche zu kennzeichnen. - + This Bible already exists. Please import a different Bible or first delete the existing one. Diese Bibel existiert bereit. Bitte geben Sie einen anderen Übersetzungsnamen an oder löschen Sie zuerst die Existierende. @@ -576,7 +576,7 @@ Changes do not affect verses already in the service. Genehmigung: - + CSV File CSV-Datei @@ -601,17 +601,17 @@ Changes do not affect verses already in the service. Versedatei: - + openlp.org 1.x Bible Files openlp.org 1.x Bibel-Dateien - + Registering Bible... Registriere Bibel... - + Registered Bible. Please note, that verses will be downloaded on demand and thus an internet connection is required. Registrierung abgeschlossen. @@ -1113,7 +1113,7 @@ Bitte beachten Sie, dass Bibeltexte von Onlinebibeln bei Bedarf heruntergeladen ImagePlugin.ExceptionDialog - + Select Attachment Anhang auswĂ€hlen @@ -1166,17 +1166,17 @@ Wollen Sie die anderen Bilder trotzdem hinzufĂŒgen? ImagesPlugin.ImageTab - + Background Color Hintergrundfarbe - + Default Color: Standardfarbe: - + Provides border where image is not the correct dimensions for the screen when resized. Wenn Bilder ein anderes SeitenverhĂ€ltniss als der Projektionsbildschirm haben, dann wird ein fabiger Rand hinzufgefĂŒgt. @@ -1250,7 +1250,7 @@ Wollen Sie die anderen Bilder trotzdem hinzufĂŒgen? Audio-/Videodatei auswĂ€hlen - + You must select a media file to delete. Die Audio-/Videodatei, die entfernt werden soll, muss ausgewĂ€hlt sein. @@ -1640,7 +1640,7 @@ dieser Fehler auftrat. Bitte verwenden Sie (wenn möglich) Englisch.Datei einhĂ€ngen - + Description characters to enter : %s Mindestens noch %s Zeichen eingeben @@ -1648,24 +1648,24 @@ dieser Fehler auftrat. Bitte verwenden Sie (wenn möglich) Englisch. OpenLP.ExceptionForm - + Platform: %s Plattform: %s - + Save Crash Report Fehlerprotokoll speichern - + Text files (*.txt *.log *.text) Textdateien (*.txt *.log *.text) - + **OpenLP Bug Report** Version: %s @@ -1696,7 +1696,7 @@ Version: %s - + *OpenLP Bug Report* Version: %s @@ -2808,7 +2808,7 @@ Datenbank: %s OpenLP.MediaManagerItem - + No Items Selected Keine Elemente ausgewĂ€hlt. @@ -2818,42 +2818,42 @@ Datenbank: %s Zum &gewĂ€hlten Ablaufelement hinzufĂŒgen - + You must select one or more items to preview. Zur Vorschau muss mindestens ein Elemente auswĂ€hlt sein. - + You must select one or more items to send live. Zur Live Anzeige muss mindestens ein Element ausgewĂ€hlt sein. - + You must select one or more items. Es muss mindestens ein Element ausgewĂ€hlt sein. - + You must select an existing service item to add to. Sie mĂŒssen ein vorhandenes Ablaufelement auswĂ€hlen. - + Invalid Service Item UngĂŒltiges Ablaufelement - + You must select a %s service item. Sie mĂŒssen ein %s-Element im Ablaufs wĂ€hlen. - + No Search Results Kein Suchergebnis - + You must select one or more items to add. Sie mĂŒssen ein oder mehrer Element auswĂ€hlen. @@ -3030,12 +3030,12 @@ Dateiendung nicht unterstĂŒtzt. OpenLP.ServiceItem - + <strong>Start</strong>: %s <strong>Anfang</strong>: %s - + <strong>Length</strong>: %s <strong>SpiellĂ€nge</strong>: %s @@ -3051,214 +3051,214 @@ Dateiendung nicht unterstĂŒtzt. OpenLP.ServiceManager - + Move to &top Zum &Anfang schieben - + Move item to the top of the service. Das ausgewĂ€hlte Element an den Anfang des Ablaufs verschieben. - + Move &up Nach &oben schieben - + Move item up one position in the service. Das ausgewĂ€hlte Element um eine Position im Ablauf nach oben verschieben. - + Move &down Nach &unten schieben - + Move item down one position in the service. Das ausgewĂ€hlte Element um eine Position im Ablauf nach unten verschieben. - + Move to &bottom Zum &Ende schieben - + Move item to the end of the service. Das ausgewĂ€hlte Element an das Ende des Ablaufs verschieben. - + &Delete From Service Vom Ablauf &löschen - + Delete the selected item from the service. Das ausgewĂ€hlte Element aus dem Ablaufs entfernen. - + &Add New Item &Neues Element hinzufĂŒgen - + &Add to Selected Item &Zum gewĂ€hlten Element hinzufĂŒgen - + &Edit Item Element &bearbeiten - + &Reorder Item &Aufnahmeelement - + &Notes &Notizen - + &Change Item Theme &Design des Elements Ă€ndern - + File is not a valid service. The content encoding is not UTF-8. Die gewĂ€hlte Datei ist keine gĂŒltige OpenLP Ablaufdatei. Der Inhalt ist nicht in UTF-8 kodiert. - + File is not a valid service. Die Datei ist keine gĂŒltige OpenLP Ablaufdatei. - + Missing Display Handler Fehlende Anzeigesteuerung - + Your item cannot be displayed as there is no handler to display it Dieses Element kann nicht angezeigt werden, da es keine Steuerung dafĂŒr gibt. - + Your item cannot be displayed as the plugin required to display it is missing or inactive Dieses Element kann nicht angezeigt werden, da die zugehörige Erweiterung fehlt oder inaktiv ist. - + &Expand all Alle au&sklappen - + Expand all the service items. Alle Ablaufelemente ausklappen. - + &Collapse all Alle ei&nklappen - + Collapse all the service items. Alle Ablaufelemente einklappen. - + Open File Ablauf öffnen - + OpenLP Service Files (*.osz) OpenLP Ablaufdateien (*.osz) - + Moves the selection up the window. AusgewĂ€hltes nach oben schieben - + Move up Nach oben - + Go Live Live - + Send the selected item to Live. Zeige das ausgewĂ€hlte Element Live. - + Moves the selection down the window. AusgewĂ€hltes nach unten schieben - + Modified Service Modifizierter Ablauf - + The current service has been modified. Would you like to save this service? Der momentane Ablauf wurde modifiziert. Möchten Sie ihn speichern? - + &Start Time &Startzeit - + Show &Preview &Vorschau - + Show &Live &Live - + File could not be opened because it is corrupt. Datei konnte nicht geöffnet werden, da sie fehlerhaft ist. - + Empty File Leere Datei - + This service file does not contain any data. Diese Datei enthĂ€lt keine Daten. - + Corrupt File Dehlerhaft Datei - + Untitled Service Unbenannt @@ -3278,37 +3278,37 @@ Der Inhalt ist nicht in UTF-8 kodiert. SpiellĂ€nge: - + Load an existing service. Einen bestehenden Ablauf öffnen. - + Save this service. Den aktuellen Ablauf speichern. - + Select a theme for the service. Design fĂŒr den Ablauf auswĂ€hlen. - + This file is either corrupt or it is not an OpenLP 2.0 service file. Entweder ist die Datei fehlerhaft oder sie ist keine OpenLP 2.0 Ablauf-Datei. - + Slide theme Element-Design - + Notes Notizen - + Service File Missing Ablaufdatei fehlt @@ -3435,17 +3435,17 @@ Der Inhalt ist nicht in UTF-8 kodiert. NĂ€chste Folie - + Previous Service Vorheriges Element - + Next Service NĂ€chstes Element - + Escape Item Folie schließen @@ -3565,36 +3565,51 @@ Der Inhalt ist nicht in UTF-8 kodiert. Start time is after the finish time of the media item Die Startzeit ist nach der Endzeit gesetzt + + + Theme Layout + Design-Layout + + + + The blue box shows the main area. + Der blaue Rahmen zeigt die HauptanzeigeflĂ€che. + + + + The red box shows the footer. + Der rote Rahmen zeigt die Fußzeile. + OpenLP.ThemeForm - + Select Image Bild auswĂ€hlen - + Theme Name Missing Designname fehlt - + There is no name for this theme. Please enter one. Es wurde kein Designname angegeben. Bitte benennen Sie das Design. - + Theme Name Invalid Designname ungĂŒltig - + Invalid theme name. Please enter one. Der Designname ist ungĂŒltig. Bitte Ă€ndern Sie diesen. - + (approximately %d lines per slide) (ungefĂ€hr %d Zeilen pro Folie) @@ -3647,7 +3662,7 @@ Der Inhalt ist nicht in UTF-8 kodiert. Zum Bearbeiten muss ein Design ausgewĂ€hlt sein. - + You are unable to delete the default theme. Es ist nicht möglich das Standarddesign zu entfernen. @@ -3687,19 +3702,19 @@ Der Inhalt ist nicht in UTF-8 kodiert. OpenLP Designdatei importieren - + File is not a valid theme. The content encoding is not UTF-8. Die Datei ist keine gĂŒltige OpenLP Designdatei. Sie ist nicht in UTF-8 kodiert. - + File is not a valid theme. Diese Datei ist keine gĂŒltige OpenLP Designdatei. - + Theme %s is used in the %s plugin. Das Design »%s« wird in der »%s« Erweiterung benutzt. @@ -3749,12 +3764,12 @@ Sie ist nicht in UTF-8 kodiert. Soll das Design »%s« wirklich gelöscht werden? - + Validation Error Validierungsfehler - + A theme with this name already exists. Ein Design mit diesem Namen existiert bereits. @@ -3798,260 +3813,270 @@ Sie ist nicht in UTF-8 kodiert. OpenLP.ThemeWizard - + Theme Wizard Designassistent - + Welcome to the Theme Wizard Willkommen beim Designassistenten - + Set Up Background Hintergrund einrichten - + Set up your theme's background according to the parameters below. Der Designhintergrund wird anhand der Parameter unten eingerichtet. - + Background type: Hintergrundart: - + Solid Color FĂŒllfarbe - + Gradient Farbverlauf - + Color: Farbe: - + Gradient: Verlauf: - + Horizontal horizontal - + Vertical vertikal - + Circular radial - + Top Left - Bottom Right diagonal abwĂ€rts - + Bottom Left - Top Right diagonal aufwĂ€rts - + Main Area Font Details Schriftschnitt und -farbe - + Define the font and display characteristics for the Display text Die Schrift und die Anzeigeeigenschaften fĂŒr die HauptanzeigeflĂ€che einrichten - + Font: Schriftart: - + Size: SchriftgrĂ¶ĂŸe: - + Line Spacing: Zeilenabstand: - + &Outline: &Umrandung: - + &Shadow: S&chatten: - + Bold Fett - + Italic Kursiv - + Footer Area Font Details Fußzeile einrichten - + Define the font and display characteristics for the Footer text Die Schrift und die Anzeigeeigenschaften fĂŒr die Fußzeile einrichten - + Text Formatting Details Weitere Formatierung - + Allows additional display formatting information to be defined Hier können zusĂ€tzliche Anzeigeeigenschaften eingerichtet werden. - + Horizontal Align: Horizontale Ausrichtung: - + Left links - + Right rechts - + Center zentriert - + Output Area Locations AnzeigeflĂ€chen - + Allows you to change and move the main and footer areas. Hier ist es möglich HauptanzeigeflĂ€che und die Fußzeile zu verschieben. - + &Main Area &HauptanzeigeflĂ€che - + &Use default location &Automatisch positionieren - + X position: Von links: - + px px - + Y position: Von oben: - + Width: Breite: - + Height: Höhe: - + Use default location Automatisch positionieren - + Save and Preview Vorschau und Speichern - + View the theme and save it replacing the current one or change the name to create a new theme Eine Vorschau anzeigen und das Design abspeichern - + Theme name: Designname: - + This wizard will help you to create and edit your themes. Click the next button below to start the process by setting up your background. Dieser Assistent hilft Ihnen Designs zu erstellen oder zu bearbeiten. Klicken Sie auf »Weiter« um den Hintergrund einzurichten. - + Transitions: ÜbergĂ€nge: - + &Footer Area &Fußzeile - + Edit Theme - %s Bearbeite Design - %s - + Starting color: Startfarbe: - + Ending color: Endfarbe - + Background color: Hintergrundfarbe: + + + Justify + Zentriert + + + + Layout Preview + Layout-Vorschau + OpenLP.ThemesTab @@ -4696,52 +4721,52 @@ Sie ist nicht in UTF-8 kodiert. PresentationPlugin.MediaItem - + Select Presentation(s) PrĂ€sentationen auswĂ€hlen - + Automatic automatisch - + Present using: Anzeigen mit: - + A presentation with that filename already exists. Eine PrĂ€sentation mit diesem Dateinamen existiert bereits. - + File Exists Datei existiert - + This type of presentation is not supported. PrĂ€sentationsdateien dieses Dateiformats werden nicht unterstĂŒtzt. - + Presentations (%s) PrĂ€sentationen (%s) - + Missing Presentation Fehlende PrĂ€sentation - + The Presentation %s no longer exists. Die PrĂ€sentation »%s« existiert nicht mehr. - + The Presentation %s is incomplete, please reload. Die PrĂ€sentation »%s« ist nicht vollstĂ€ndig, bitte neu laden. @@ -4886,30 +4911,35 @@ Sie ist nicht in UTF-8 kodiert. RemotePlugin.RemoteTab - + Serve on IP address: VerfĂŒgbar ĂŒber IP-Adresse: - + Port number: Port-Nummer: - + Server Settings Server-Einstellungen - + Remote URL: Fernsteuerung: - + Stage view URL: BĂŒhnenmonitor: + + + Display stage time in 12h format + Nutze 12h Format fĂŒr den BĂŒhnenmonitor + SongUsagePlugin @@ -5000,7 +5030,7 @@ Sie ist nicht in UTF-8 kodiert. SongUsagePlugin.SongUsageDeleteForm - + Delete Song Usage Data Protokolldaten löschen @@ -5025,7 +5055,7 @@ Sie ist nicht in UTF-8 kodiert. Die Protokolldaten wurden erfolgreich gelöscht. - + Select the date up to which the song usage data should be deleted. All data recorded before this date will be permanently deleted. Bitte wĂ€hlen Sie das Datum bis zu dem die Protokollierungsdaten gelöscht werden sollen. Alle gespeicherten Daten, welche Ă€lter sind, werden dauerhaft gelöscht. @@ -5528,7 +5558,7 @@ Easy Worship] Remove &All - &Alle Entfernen + &Alle Entfernen @@ -5655,100 +5685,110 @@ Easy Worship] Dieser Assistent hilft Ihnen Liedtexte aus verschiedenen Formaten zu importieren. Klicken Sie auf »Weiter« um das Quellformat auszuwĂ€hlen, aus dem Sie importieren möchten. - + Add Files... HinzufĂŒgen... - + Remove File(s) Entfernen - + Filename: Dateiname: - + Please wait while your songs are imported. Die Liedtexte werden importiert. Bitte warten. - + Select Document/Presentation Files PrĂ€sentationen/Textdokumente auswĂ€hlen - + Generic Document/Presentation PrĂ€sentation/Textdokument - + 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. Leider können noch keine OpenLyric Lieder importiert werden, aber vielleicht klappts ja in der nĂ€chsten Version. - + OpenLP 2.0 Databases - OpenLP 2.0 Lieddatenbanken + »OpenLP 2.0« Lieddatenbanken - + openlp.org v1.x Databases - openlp.org 1.x Lieddatenbanken + »openlp.org 1.x« Lieddatenbanken - + Words Of Worship Song Files »Words of Worship« Lieddateien - + Songs Of Fellowship Song Files Songs Of Fellowship Song Dateien - + SongBeamer Files SongBeamer Dateien - + SongShow Plus Song Files SongShow Plus Song Dateien - + You need to specify at least one document or presentation file to import from. Sie mĂŒssen wenigstens ein Dokument oder PrĂ€sentationsdatei auswĂ€hlen, die importiert werden soll. - + Foilpresenter Song Files Foilpresenter Lied-Dateien - + Copy Kopieren - + Save to File In Datei speichern - + The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. Der Songs of Fellowship importer wurde deaktiviert, weil OpenLP nicht OpenOffice oder LibreOffice öffnen konnte. - + The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. Der PrĂ€sentation/Textdokument importer wurde deaktiviert, weil OpenLP nicht OpenOffice oder LibreOffice öffnen konnte. + + + OpenLyrics or OpenLP 2.0 Exported Song + OpenLyrics oder OpenLP 2.0 exportiere Lieder + + + + OpenLyrics Files + »OpenLyrics« Datei + SongsPlugin.MediaFilesForm @@ -5776,7 +5816,7 @@ Easy Worship] Liedtext - + CCLI License: CCLI-Lizenz: @@ -5799,7 +5839,7 @@ Easy Worship] Autoren, Themen und BĂŒcher verwalten. - + copy For song cloning Kopie @@ -5824,7 +5864,7 @@ Easy Worship] SongsPlugin.OpenLyricsExport - + Exporting "%s"... Exportiere »%s«... @@ -5896,7 +5936,7 @@ Easy Worship] SongsPlugin.SongImportForm - + Your song import failed. Importvorgang fehlgeschlagen. diff --git a/resources/i18n/en.ts b/resources/i18n/en.ts index 23ce6b4f2..50cb9965b 100644 --- a/resources/i18n/en.ts +++ b/resources/i18n/en.ts @@ -401,38 +401,38 @@ Changes do not affect verses already in the service. BiblesPlugin.HTTPBible - + Registering Bible and loading books... - + Registering Language... - + Importing %s... Importing <book name>... - + Download Error - + There was a problem downloading your verse selection. Please check your Internet connection, and if this error continues to occur please consider reporting a bug. - + Parse Error - + There was a problem extracting your verse selection. If this error continues to occur please consider reporting a bug. @@ -535,32 +535,32 @@ Changes do not affect verses already in the service. - + You need to specify a version name for your Bible. - + 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. - + Your Bible import failed. - + CSV File @@ -590,17 +590,17 @@ Changes do not affect verses already in the service. - + openlp.org 1.x Bible Files - + Registering Bible... - + Registered Bible. Please note, that verses will be downloaded on demand and thus an internet connection is required. @@ -1093,7 +1093,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I ImagePlugin.ExceptionDialog - + Select Attachment @@ -1145,17 +1145,17 @@ Do you want to add the other images anyway? ImagesPlugin.ImageTab - + Background Color - + Default Color: - + Provides border where image is not the correct dimensions for the screen when resized. @@ -1229,7 +1229,7 @@ Do you want to add the other images anyway? - + You must select a media file to delete. @@ -1544,7 +1544,7 @@ Portions copyright © 2004-2011 %s - + Description characters to enter : %s @@ -1552,23 +1552,23 @@ Portions copyright © 2004-2011 %s OpenLP.ExceptionForm - + Platform: %s - + Save Crash Report - + Text files (*.txt *.log *.text) - + **OpenLP Bug Report** Version: %s @@ -1586,7 +1586,7 @@ Version: %s - + *OpenLP Bug Report* Version: %s @@ -2669,7 +2669,7 @@ Database: %s OpenLP.MediaManagerItem - + No Items Selected @@ -2679,42 +2679,42 @@ Database: %s - + 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. - + You must select an existing service item to add to. - + Invalid Service Item - + You must select a %s service item. - + You must select one or more items to add. - + No Search Results @@ -2890,12 +2890,12 @@ Suffix not supported OpenLP.ServiceItem - + <strong>Start</strong>: %s - + <strong>Length</strong>: %s @@ -2911,188 +2911,188 @@ Suffix not supported OpenLP.ServiceManager - + Move to &top - + Move item to the top of the service. - + Move &up - + Move item up one position in the service. - + Move &down - + Move item down one position in the service. - + Move to &bottom - + Move item to the end of the service. - + &Delete From Service - + Delete the selected item from the service. - + &Add New Item - + &Add to Selected Item - + &Edit Item - + &Reorder Item - + &Notes - + &Change Item Theme - + OpenLP Service Files (*.osz) - + 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 - + &Expand all - + Expand all the service items. - + &Collapse all - + Collapse all the service items. - + Open File - + Moves the selection down the window. - + Move up - + Moves the selection up the window. - + Go Live - + Send the selected item to Live. - + &Start Time - + Show &Preview - + Show &Live - + Modified Service - + The current service has been modified. Would you like to save this service? @@ -3112,62 +3112,62 @@ The content encoding is not UTF-8. - + Untitled Service - + File could not be opened because it is corrupt. - + Empty File - + This service file does not contain any data. - + Corrupt File - + Load an existing service. - + Save this service. - + Select a theme for the service. - + This file is either corrupt or it is not an OpenLP 2.0 service file. - + Service File Missing - + Slide theme - + Notes @@ -3294,17 +3294,17 @@ The content encoding is not UTF-8. - + Previous Service - + Next Service - + Escape Item @@ -3424,36 +3424,51 @@ The content encoding is not UTF-8. Start time is after the finish time of the media item + + + Theme Layout + + + + + The blue box shows the main area. + + + + + The red box shows the footer. + + OpenLP.ThemeForm - + Select Image - + Theme Name Missing - + There is no name for this theme. Please enter one. - + Theme Name Invalid - + Invalid theme name. Please enter one. - + (approximately %d lines per slide) @@ -3531,12 +3546,12 @@ The content encoding is not UTF-8. - + You are unable to delete the default theme. - + Theme %s is used in the %s plugin. @@ -3576,13 +3591,13 @@ 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. @@ -3632,12 +3647,12 @@ The content encoding is not UTF-8. - + Validation Error - + A theme with this name already exists. @@ -3656,260 +3671,270 @@ The content encoding is not UTF-8. OpenLP.ThemeWizard - + Theme Wizard - + Welcome to the Theme Wizard - + Set Up Background - + Set up your theme's background according to the parameters below. - + Background type: - + Solid Color - + Gradient - + Color: - + Gradient: - + Horizontal - + Vertical - + Circular - + Top Left - Bottom Right - + Bottom Left - Top Right - + Main Area Font Details - + Define the font and display characteristics for the Display text - + Font: - + Size: - + Line Spacing: - + &Outline: - + &Shadow: - + Bold - + Italic - + Footer Area Font Details - + Define the font and display characteristics for the Footer text - + Text Formatting Details - + Allows additional display formatting information to be defined - + Horizontal Align: - + Left - + Right - + Center - + Output Area Locations - + Allows you to change and move the main and footer areas. - + &Main Area - + &Use default location - + X position: - + px - + Y position: - + Width: - + Height: - + Use default location - + Save and Preview - + View the theme and save it replacing the current one or change the name to create a new theme - + Theme name: - + Edit Theme - %s - + This wizard will help you to create and edit your themes. Click the next button below to start the process by setting up your background. - + Transitions: - + &Footer Area - + Starting color: - + Ending color: - + Background color: + + + Justify + + + + + Layout Preview + + OpenLP.ThemesTab @@ -4554,52 +4579,52 @@ The content encoding is not UTF-8. PresentationPlugin.MediaItem - + Select Presentation(s) - + Automatic - + Present using: - + File Exists - + A presentation with that filename already exists. - + This type of presentation is not supported. - + Presentations (%s) - + Missing Presentation - + The Presentation %s no longer exists. - + The Presentation %s is incomplete, please reload. @@ -4744,30 +4769,35 @@ The content encoding is not UTF-8. RemotePlugin.RemoteTab - + Serve on IP address: - + Port number: - + Server Settings - + Remote URL: - + Stage view URL: + + + Display stage time in 12h format + + SongUsagePlugin @@ -4858,7 +4888,7 @@ The content encoding is not UTF-8. SongUsagePlugin.SongUsageDeleteForm - + Delete Song Usage Data @@ -4883,7 +4913,7 @@ The content encoding is not UTF-8. - + Select the date up to which the song usage data should be deleted. All data recorded before this date will be permanently deleted. @@ -5495,7 +5525,7 @@ The encoding is responsible for the correct character representation. SongsPlugin.ImportWizardForm - + Select Document/Presentation Files @@ -5510,95 +5540,105 @@ The encoding is responsible for the correct character representation. - + Generic Document/Presentation - + Filename: - + 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) - + Please wait while your songs are imported. - + OpenLP 2.0 Databases - + openlp.org v1.x Databases - + Words Of Worship Song Files - + You need to specify at least one document or presentation file to import from. - + Songs Of Fellowship Song Files - + SongBeamer Files - + SongShow Plus Song Files - + Foilpresenter Song Files - + Copy - + Save to File - + The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. - + The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. + + + OpenLyrics or OpenLP 2.0 Exported Song + + + + + OpenLyrics Files + + SongsPlugin.MediaFilesForm @@ -5626,7 +5666,7 @@ The encoding is responsible for the correct character representation. - + CCLI License: @@ -5648,7 +5688,7 @@ The encoding is responsible for the correct character representation. - + copy For song cloning @@ -5673,7 +5713,7 @@ The encoding is responsible for the correct character representation. SongsPlugin.OpenLyricsExport - + Exporting "%s"... @@ -5745,7 +5785,7 @@ The encoding is responsible for the correct character representation. SongsPlugin.SongImportForm - + Your song import failed. diff --git a/resources/i18n/en_GB.ts b/resources/i18n/en_GB.ts index 750312984..daf9eb55f 100644 --- a/resources/i18n/en_GB.ts +++ b/resources/i18n/en_GB.ts @@ -412,38 +412,38 @@ Changes do not affect verses already in the service. BiblesPlugin.HTTPBible - + Registering Bible and loading books... Registering Bible and loading books... - + Registering Language... Registering Language... - + Importing %s... Importing <book name>... Importing %s... - + Download Error Download Error - + There was a problem downloading your verse selection. Please check your Internet connection, and if this error continues to occur please consider reporting a bug. There was a problem downloading your verse selection. Please check your Internet connection, and if this error continues to occur please consider reporting a bug. - + Parse Error Parse Error - + There was a problem extracting your verse selection. If this error continues to occur please consider reporting a bug. There was a problem extracting your verse selection. If this error continues to occur please consider reporting a bug. @@ -546,27 +546,27 @@ Changes do not affect verses already in the service. You need to specify a file of Bible verses to import. - + You need to specify a version name for your Bible. You need to specify a version name for your Bible. - + Bible Exists Bible Exists - + 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. 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. This Bible already exists. Please import a different Bible or first delete the existing one. @@ -576,7 +576,7 @@ Changes do not affect verses already in the service. Permissions: - + CSV File CSV File @@ -601,17 +601,17 @@ Changes do not affect verses already in the service. Verses file: - + openlp.org 1.x Bible Files openlp.org 1.x Bible Files - + Registering Bible... Registering Bible... - + Registered Bible. Please note, that verses will be downloaded on demand and thus an internet connection is required. Registered Bible. Please note, that verses will be downloaded on @@ -1112,7 +1112,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I ImagePlugin.ExceptionDialog - + Select Attachment Select Attachment @@ -1165,17 +1165,17 @@ Do you want to add the other images anyway? ImagesPlugin.ImageTab - + Background Color Background Color - + Default Color: Default Color: - + Provides border where image is not the correct dimensions for the screen when resized. Provides border where image is not the correct dimensions for the screen when resized. @@ -1249,7 +1249,7 @@ Do you want to add the other images anyway? Select Media - + You must select a media file to delete. You must select a media file to delete. @@ -1634,7 +1634,7 @@ Portions copyright © 2004-2011 %s Attach File - + Description characters to enter : %s Description characters to enter : %s @@ -1642,24 +1642,24 @@ Portions copyright © 2004-2011 %s OpenLP.ExceptionForm - + Platform: %s Platform: %s - + Save Crash Report Save Crash Report - + Text files (*.txt *.log *.text) Text files (*.txt *.log *.text) - + **OpenLP Bug Report** Version: %s @@ -1690,7 +1690,7 @@ Version: %s - + *OpenLP Bug Report* Version: %s @@ -2801,7 +2801,7 @@ Database: %s OpenLP.MediaManagerItem - + No Items Selected No Items Selected @@ -2811,42 +2811,42 @@ Database: %s &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. - + 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. - + You must select one or more items to add. You must select one or more items to add. - + No Search Results No Search Results @@ -3023,12 +3023,12 @@ Suffix not supported OpenLP.ServiceItem - + <strong>Start</strong>: %s <strong>Start</strong>: %s - + <strong>Length</strong>: %s <strong>Length</strong>: %s @@ -3044,209 +3044,209 @@ Suffix not supported OpenLP.ServiceManager - + Move to &top Move to &top - + Move item to the top of the service. Move item to the top of the service. - + Move &up Move &up - + Move item up one position in the service. Move item up one position in the service. - + Move &down Move &down - + Move item down one position in the service. Move item down one position in the service. - + Move to &bottom Move to &bottom - + Move item to the end of the service. Move item to the end of the service. - + &Delete From Service &Delete From Service - + Delete the selected item from the service. Delete the selected item from the service. - + &Add New Item &Add New Item - + &Add to Selected Item &Add to Selected Item - + &Edit Item &Edit Item - + &Reorder Item &Reorder Item - + &Notes &Notes - + &Change Item Theme &Change Item Theme - + 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 Your item cannot be displayed as the plugin required to display it is missing or inactive - + &Expand all &Expand all - + Expand all the service items. Expand all the service items. - + &Collapse all &Collapse all - + Collapse all the service items. Collapse all the service items. - + Open File Open File - + OpenLP Service Files (*.osz) OpenLP Service Files (*.osz) - + Moves the selection down the window. Moves the selection down the window. - + Move up Move up - + Moves the selection up the window. Moves the selection up the window. - + Go Live Go Live - + Send the selected item to Live. Send the selected item to Live. - + Modified Service Modified Service - + &Start Time &Start Time - + Show &Preview Show &Preview - + Show &Live Show &Live - + The current service has been modified. Would you like to save this service? The current service has been modified. Would you like to save this service? - + File could not be opened because it is corrupt. File could not be opened because it is corrupt. - + Empty File Empty File - + This service file does not contain any data. This service file does not contain any data. - + Corrupt File Corrupt File @@ -3266,42 +3266,42 @@ The content encoding is not UTF-8. Playing time: - + Untitled Service Untitled Service - + Load an existing service. Load an existing service. - + Save this service. Save this service. - + Select a theme for the service. Select a theme for the service. - + This file is either corrupt or it is not an OpenLP 2.0 service file. This file is either corrupt or it is not an OpenLP 2.0 service file. - + Slide theme Slide theme - + Notes Notes - + Service File Missing Service File Missing @@ -3428,17 +3428,17 @@ The content encoding is not UTF-8. Next Slide - + Previous Service Previous Service - + Next Service Next Service - + Escape Item Escape Item @@ -3558,36 +3558,51 @@ The content encoding is not UTF-8. Start time is after the finish time of the media item Start time is after the finish time of the media item + + + Theme Layout + + + + + The blue box shows the main area. + + + + + The red box shows the footer. + + OpenLP.ThemeForm - + Select Image Select Image - + Theme Name Missing Theme Name Missing - + There is no name for this theme. Please enter one. There is no name for this theme. Please enter one. - + Theme Name Invalid Theme Name Invalid - + Invalid theme name. Please enter one. Invalid theme name. Please enter one. - + (approximately %d lines per slide) (approximately %d lines per slide) @@ -3665,7 +3680,7 @@ The content encoding is not UTF-8. You must select a theme to edit. - + You are unable to delete the default theme. You are unable to delete the default theme. @@ -3705,19 +3720,19 @@ The content encoding is not UTF-8. Select Theme Import File - + 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 %s is used in the %s plugin. Theme %s is used in the %s plugin. @@ -3767,12 +3782,12 @@ The content encoding is not UTF-8. Delete %s theme? - + Validation Error Validation Error - + A theme with this name already exists. A theme with this name already exists. @@ -3791,260 +3806,270 @@ The content encoding is not UTF-8. OpenLP.ThemeWizard - + Theme Wizard Theme Wizard - + Welcome to the Theme Wizard Welcome to the Theme Wizard - + Set Up Background Set Up Background - + Set up your theme's background according to the parameters below. Set up your theme's background according to the parameters below. - + Background type: Background type: - + Solid Color Solid Colour - + Gradient Gradient - + Color: Colour: - + Gradient: Gradient: - + Horizontal Horizontal - + Vertical Vertical - + Circular Circular - + Top Left - Bottom Right Top Left - Bottom Right - + Bottom Left - Top Right Bottom Left - Top Right - + Main Area Font Details Main Area Font Details - + Define the font and display characteristics for the Display text Define the font and display characteristics for the Display text - + Font: Font: - + Size: Size: - + Line Spacing: Line Spacing: - + &Outline: &Outline: - + &Shadow: &Shadow: - + Bold Bold - + Italic Italic - + Footer Area Font Details Footer Area Font Details - + Define the font and display characteristics for the Footer text Define the font and display characteristics for the Footer text - + Text Formatting Details Text Formatting Details - + Allows additional display formatting information to be defined Allows additional display formatting information to be defined - + Horizontal Align: Horizontal Align: - + Left Left - + Right Right - + Center Centre - + Output Area Locations Output Area Locations - + Allows you to change and move the main and footer areas. Allows you to change and move the main and footer areas. - + &Main Area &Main Area - + &Use default location &Use default location - + X position: X position: - + px px - + Y position: Y position: - + Width: Width: - + Height: Height: - + Use default location Use default location - + Save and Preview Save and Preview - + View the theme and save it replacing the current one or change the name to create a new theme View the theme and save it replacing the current one or change the name to create a new theme - + Theme name: Theme name: - + This wizard will help you to create and edit your themes. Click the next button below to start the process by setting up your background. This wizard will help you to create and edit your themes. Click the next button below to start the process by setting up your background. - + Transitions: Transitions: - + &Footer Area &Footer Area - + Edit Theme - %s Edit Theme - %s - + Starting color: Starting color: - + Ending color: Ending color: - + Background color: Background color: + + + Justify + + + + + Layout Preview + + OpenLP.ThemesTab @@ -4689,52 +4714,52 @@ The content encoding is not UTF-8. PresentationPlugin.MediaItem - + Select Presentation(s) Select Presentation(s) - + Automatic Automatic - + Present using: Present using: - + File Exists File Exists - + A presentation with that filename already exists. A presentation with that filename already exists. - + This type of presentation is not supported. This type of presentation is not supported. - + Presentations (%s) Presentations (%s) - + Missing Presentation Missing Presentation - + The Presentation %s no longer exists. The Presentation %s no longer exists. - + The Presentation %s is incomplete, please reload. The Presentation %s is incomplete, please reload. @@ -4879,30 +4904,35 @@ The content encoding is not UTF-8. RemotePlugin.RemoteTab - + Serve on IP address: Serve on IP address: - + Port number: Port number: - + Server Settings Server Settings - + Remote URL: Remote URL: - + Stage view URL: Stage view URL: + + + Display stage time in 12h format + + SongUsagePlugin @@ -4993,7 +5023,7 @@ The content encoding is not UTF-8. SongUsagePlugin.SongUsageDeleteForm - + Delete Song Usage Data Delete Song Usage Data @@ -5018,7 +5048,7 @@ The content encoding is not UTF-8. All requested data has been deleted successfully. - + Select the date up to which the song usage data should be deleted. All data recorded before this date will be permanently deleted. Select the date up to which the song usage data should be deleted. All data recorded before this date will be permanently deleted. @@ -5637,7 +5667,7 @@ The encoding is responsible for the correct character representation. SongsPlugin.ImportWizardForm - + Select Document/Presentation Files Select Document/Presentation Files @@ -5652,95 +5682,105 @@ The encoding is responsible for the correct character representation.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. - + Generic Document/Presentation Generic Document/Presentation - + Filename: Filename: - + Add Files... Add Files... - + Remove File(s) Remove File(s) - + Please wait while your songs are imported. Please wait while your songs are imported. - + 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. - + OpenLP 2.0 Databases OpenLP 2.0 Databases - + openlp.org v1.x Databases openlp.org v1.x Databases - + Words Of Worship Song Files Words Of Worship Song Files - + Songs Of Fellowship Song Files Songs Of Fellowship Song Files - + SongBeamer Files SongBeamer Files - + SongShow Plus Song Files SongShow Plus Song Files - + You need to specify at least one document or presentation file to import from. You need to specify at least one document or presentation file to import from. - + Foilpresenter Song Files Foilpresenter Song Files - + Copy Copy - + Save to File Save to File - + The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. - + The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. + + + OpenLyrics or OpenLP 2.0 Exported Song + + + + + OpenLyrics Files + + SongsPlugin.MediaFilesForm @@ -5768,7 +5808,7 @@ The encoding is responsible for the correct character representation.Lyrics - + CCLI License: CCLI License: @@ -5791,7 +5831,7 @@ The encoding is responsible for the correct character representation.Maintain the lists of authors, topics and books. - + copy For song cloning copy @@ -5816,7 +5856,7 @@ The encoding is responsible for the correct character representation. SongsPlugin.OpenLyricsExport - + Exporting "%s"... Exporting "%s"... @@ -5888,7 +5928,7 @@ The encoding is responsible for the correct character representation. SongsPlugin.SongImportForm - + Your song import failed. Your song import failed. diff --git a/resources/i18n/en_ZA.ts b/resources/i18n/en_ZA.ts index 084d15639..c72d7c8b3 100644 --- a/resources/i18n/en_ZA.ts +++ b/resources/i18n/en_ZA.ts @@ -412,38 +412,38 @@ Changes do not affect verses already in the service. BiblesPlugin.HTTPBible - + Registering Bible and loading books... Registering Bible and loading books... - + Registering Language... Registering Language... - + Importing %s... Importing <book name>... Importing %s... - + Download Error Download Error - + There was a problem downloading your verse selection. Please check your Internet connection, and if this error continues to occur please consider reporting a bug. There was a problem downloading your verse selection. Please check your Internet connection, and if this error continues to occur please consider reporting a bug. - + Parse Error Parse Error - + There was a problem extracting your verse selection. If this error continues to occur please consider reporting a bug. There was a problem extracting your verse selection. If this error continues to occur please consider reporting a bug. @@ -546,27 +546,27 @@ Changes do not affect verses already in the service. You need to specify a file of Bible verses to import. - + You need to specify a version name for your Bible. You need to specify a version name for your Bible. - + Bible Exists Bible Exists - + 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. 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. This Bible already exists. Please import a different Bible or first delete the existing one. @@ -576,7 +576,7 @@ Changes do not affect verses already in the service. Permissions: - + CSV File CSV File @@ -601,17 +601,17 @@ Changes do not affect verses already in the service. Verses file: - + openlp.org 1.x Bible Files openlp.org 1.x Bible Files - + Registering Bible... Registering Bible... - + Registered Bible. Please note, that verses will be downloaded on demand and thus an internet connection is required. Registered Bible. Please note, that verses will be downloaded on @@ -1112,7 +1112,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I ImagePlugin.ExceptionDialog - + Select Attachment Select Attachment @@ -1165,17 +1165,17 @@ Do you want to add the other images anyway? ImagesPlugin.ImageTab - + Background Color Background Colour - + Default Color: Default Colour: - + Provides border where image is not the correct dimensions for the screen when resized. Provides border where image is not the correct dimensions for the screen when resized. @@ -1249,7 +1249,7 @@ Do you want to add the other images anyway? Select Media - + You must select a media file to delete. You must select a media file to delete. @@ -1634,7 +1634,7 @@ Portions copyright © 2004-2011 %s Attach File - + Description characters to enter : %s Description characters to enter : %s @@ -1642,24 +1642,24 @@ Portions copyright © 2004-2011 %s OpenLP.ExceptionForm - + Platform: %s Platform: %s - + Save Crash Report Save Crash Report - + Text files (*.txt *.log *.text) Text files (*.txt *.log *.text) - + **OpenLP Bug Report** Version: %s @@ -1690,7 +1690,7 @@ Version: %s - + *OpenLP Bug Report* Version: %s @@ -2802,7 +2802,7 @@ Database: %s OpenLP.MediaManagerItem - + No Items Selected No Items Selected @@ -2812,42 +2812,42 @@ Database: %s &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. - + 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. - + You must select one or more items to add. You must select one or more items to add. - + No Search Results No Search Results @@ -3024,12 +3024,12 @@ Suffix not supported OpenLP.ServiceItem - + <strong>Start</strong>: %s <strong>Start</strong>: %s - + <strong>Length</strong>: %s <strong>Length</strong>: %s @@ -3045,209 +3045,209 @@ Suffix not supported OpenLP.ServiceManager - + Move to &top Move to &top - + Move item to the top of the service. Move item to the top of the service. - + Move &up Move &up - + Move item up one position in the service. Move item up one position in the service. - + Move &down Move &down - + Move item down one position in the service. Move item down one position in the service. - + Move to &bottom Move to &bottom - + Move item to the end of the service. Move item to the end of the service. - + &Delete From Service &Delete From Service - + Delete the selected item from the service. Delete the selected item from the service. - + &Add New Item &Add New Item - + &Add to Selected Item &Add to Selected Item - + &Edit Item &Edit Item - + &Reorder Item &Reorder Item - + &Notes &Notes - + &Change Item Theme &Change Item Theme - + 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 Your item cannot be displayed as the plugin required to display it is missing or inactive - + &Expand all &Expand all - + Expand all the service items. Expand all the service items. - + &Collapse all &Collapse all - + Collapse all the service items. Collapse all the service items. - + Open File Open File - + OpenLP Service Files (*.osz) OpenLP Service Files (*.osz) - + Moves the selection down the window. Moves the selection down the window. - + Move up Move up - + Moves the selection up the window. Moves the selection up the window. - + Go Live Go Live - + Send the selected item to Live. Send the selected item to Live. - + Modified Service Modified Service - + &Start Time &Start Time - + Show &Preview Show &Preview - + Show &Live Show &Live - + The current service has been modified. Would you like to save this service? The current service has been modified. Would you like to save this service? - + File could not be opened because it is corrupt. File could not be opened because it is corrupt. - + Empty File Empty File - + This service file does not contain any data. This service file does not contain any data. - + Corrupt File Corrupt File @@ -3267,42 +3267,42 @@ The content encoding is not UTF-8. Playing time: - + Untitled Service Untitled Service - + Load an existing service. Load an existing service. - + Save this service. Save this service. - + Select a theme for the service. Select a theme for the service. - + This file is either corrupt or it is not an OpenLP 2.0 service file. This file is either corrupt or it is not an OpenLP 2.0 service file. - + Slide theme Slide theme - + Notes Notes - + Service File Missing Service File Missing @@ -3429,17 +3429,17 @@ The content encoding is not UTF-8. Next Slide - + Previous Service Previous Service - + Next Service Next Service - + Escape Item Escape Item @@ -3559,36 +3559,51 @@ The content encoding is not UTF-8. Start time is after the finish time of the media item Start time is after the finish time of the media item + + + Theme Layout + + + + + The blue box shows the main area. + + + + + The red box shows the footer. + + OpenLP.ThemeForm - + Select Image Select Image - + Theme Name Missing Theme Name Missing - + There is no name for this theme. Please enter one. There is no name for this theme. Please enter one. - + Theme Name Invalid Theme Name Invalid - + Invalid theme name. Please enter one. Invalid theme name. Please enter one. - + (approximately %d lines per slide) (approximately %d lines per slide) @@ -3666,7 +3681,7 @@ The content encoding is not UTF-8. You must select a theme to edit. - + You are unable to delete the default theme. You are unable to delete the default theme. @@ -3706,19 +3721,19 @@ The content encoding is not UTF-8. Select Theme Import File - + 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 %s is used in the %s plugin. Theme %s is used in the %s plugin. @@ -3768,12 +3783,12 @@ The content encoding is not UTF-8. Delete %s theme? - + Validation Error Validation Error - + A theme with this name already exists. A theme with this name already exists. @@ -3792,260 +3807,270 @@ The content encoding is not UTF-8. OpenLP.ThemeWizard - + Theme Wizard Theme Wizard - + Welcome to the Theme Wizard Welcome to the Theme Wizard - + Set Up Background Set Up Background - + Set up your theme's background according to the parameters below. Set up your theme's background according to the parameters below. - + Background type: Background type: - + Solid Color Solid Colour - + Gradient Gradient - + Color: Colour: - + Gradient: Gradient: - + Horizontal Horizontal - + Vertical Vertical - + Circular Circular - + Top Left - Bottom Right Top Left - Bottom Right - + Bottom Left - Top Right Bottom Left - Top Right - + Main Area Font Details Main Area Font Details - + Define the font and display characteristics for the Display text Define the font and display characteristics for the Display text - + Font: Font: - + Size: Size: - + Line Spacing: Line Spacing: - + &Outline: &Outline: - + &Shadow: &Shadow: - + Bold Bold - + Italic Italic - + Footer Area Font Details Footer Area Font Details - + Define the font and display characteristics for the Footer text Define the font and display characteristics for the Footer text - + Text Formatting Details Text Formatting Details - + Allows additional display formatting information to be defined Allows additional display formatting information to be defined - + Horizontal Align: Horizontal Align: - + Left Left - + Right Right - + Center Centre - + Output Area Locations Output Area Locations - + Allows you to change and move the main and footer areas. Allows you to change and move the main and footer areas. - + &Main Area &Main Area - + &Use default location &Use default location - + X position: X position: - + px px - + Y position: Y position: - + Width: Width: - + Height: Height: - + Use default location Use default location - + Save and Preview Save and Preview - + View the theme and save it replacing the current one or change the name to create a new theme View the theme and save it replacing the current one or change the name to create a new theme - + Theme name: Theme name: - + This wizard will help you to create and edit your themes. Click the next button below to start the process by setting up your background. This wizard will help you to create and edit your themes. Click the next button below to start the process by setting up your background. - + Transitions: Transitions: - + &Footer Area &Footer Area - + Edit Theme - %s Edit Theme - %s - + Starting color: Starting color: - + Ending color: Ending color: - + Background color: Background color: + + + Justify + + + + + Layout Preview + + OpenLP.ThemesTab @@ -4690,52 +4715,52 @@ The content encoding is not UTF-8. PresentationPlugin.MediaItem - + Select Presentation(s) Select Presentation(s) - + Automatic Automatic - + Present using: Present using: - + File Exists File Exists - + A presentation with that filename already exists. A presentation with that filename already exists. - + This type of presentation is not supported. This type of presentation is not supported. - + Presentations (%s) Presentations (%s) - + Missing Presentation Missing Presentation - + The Presentation %s no longer exists. The Presentation %s no longer exists. - + The Presentation %s is incomplete, please reload. The Presentation %s is incomplete, please reload. @@ -4880,30 +4905,35 @@ The content encoding is not UTF-8. RemotePlugin.RemoteTab - + Serve on IP address: Serve on IP address: - + Port number: Port number: - + Server Settings Server Settings - + Remote URL: Remote URL: - + Stage view URL: Stage view URL: + + + Display stage time in 12h format + + SongUsagePlugin @@ -5004,7 +5034,7 @@ The content encoding is not UTF-8. Are you sure you want to delete selected Song Usage data? - + Delete Song Usage Data Delete Song Usage Data @@ -5019,7 +5049,7 @@ The content encoding is not UTF-8. All requested data has been deleted successfully. - + Select the date up to which the song usage data should be deleted. All data recorded before this date will be permanently deleted. Select the date up to which the song usage data should be deleted. All data recorded before this date will be permanently deleted. @@ -5648,100 +5678,110 @@ The encoding is responsible for the correct character representation.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. - + Add Files... Add Files... - + Remove File(s) Remove File(s) - + Filename: Filename: - + Please wait while your songs are imported. Please wait while your songs are imported. - + Select Document/Presentation Files Select Document/Presentation Files - + Generic Document/Presentation Generic Document/Presentation - + 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. - + OpenLP 2.0 Databases OpenLP 2.0 Databases - + openlp.org v1.x Databases openlp.org v1.x Databases - + Words Of Worship Song Files Words Of Worship Song Files - + Songs Of Fellowship Song Files Songs Of Fellowship Song Files - + SongBeamer Files SongBeamer Files - + SongShow Plus Song Files SongShow Plus Song Files - + You need to specify at least one document or presentation file to import from. You need to specify at least one document or presentation file to import from. - + Foilpresenter Song Files Foilpresenter Song Files - + Copy Copy - + Save to File Save to File - + The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. - + The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. + + + OpenLyrics or OpenLP 2.0 Exported Song + + + + + OpenLyrics Files + + SongsPlugin.MediaFilesForm @@ -5769,7 +5809,7 @@ The encoding is responsible for the correct character representation.Lyrics - + CCLI License: CCLI License: @@ -5792,7 +5832,7 @@ The encoding is responsible for the correct character representation.Maintain the lists of authors, topics and books. - + copy For song cloning copy @@ -5817,7 +5857,7 @@ The encoding is responsible for the correct character representation. SongsPlugin.OpenLyricsExport - + Exporting "%s"... Exporting "%s"... @@ -5889,7 +5929,7 @@ The encoding is responsible for the correct character representation. SongsPlugin.SongImportForm - + Your song import failed. Your song import failed. diff --git a/resources/i18n/es.ts b/resources/i18n/es.ts index 74f1cec53..a4e0de09b 100644 --- a/resources/i18n/es.ts +++ b/resources/i18n/es.ts @@ -98,7 +98,7 @@ Do you want to continue anyway? No Placeholder Found - Marcador No Encontrado + No Marcador Encontrado @@ -412,38 +412,38 @@ Los cambios no se aplican a Ă­tems en el servcio. BiblesPlugin.HTTPBible - + Registering Bible and loading books... Registrando Biblia y cargando libros... - + Registering Language... Registrando Idioma... - + Importing %s... Importing <book name>... Importando %s... - + Download Error Error de Descarga - + There was a problem downloading your verse selection. Please check your Internet connection, and if this error continues to occur please consider reporting a bug. Hubo un problema al descargar los versĂ­culos seleccionados. Por favor revise la conexiĂłn a internet, y si el error persiste considere reportar esta falla. - + Parse Error Error de AnĂĄlisis - + There was a problem extracting your verse selection. If this error continues to occur please consider reporting a bug. Hubo un problema al extraer los versĂ­culos seleccionados. Si el error persiste considere reportar esta falla. @@ -546,27 +546,27 @@ Los cambios no se aplican a Ă­tems en el servcio. Debe especificar un archivo que contenga los versĂ­culos de la Biblia para importar. - + You need to specify a version name for your Bible. Debe ingresar un nombre para la versiĂłn de esta Biblia. - + Bible Exists Ya existe la Biblia - + 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. Debe establecer los derechos de autor de su Biblia. Si es de Dominio PĂșblico debe indicarlo. - + This Bible already exists. Please import a different Bible or first delete the existing one. Ya existe esta Biblia. Por favor importe una diferente o borre la anterior antes de continuar. @@ -576,7 +576,7 @@ Los cambios no se aplican a Ă­tems en el servcio. Permisos: - + CSV File Archivo CSV @@ -601,17 +601,17 @@ Los cambios no se aplican a Ă­tems en el servcio. Archivo de versĂ­culos: - + openlp.org 1.x Bible Files Archivos de Biblia openlp.org 1.x - + Registering Bible... Registrando Biblia... - + Registered Bible. Please note, that verses will be downloaded on demand and thus an internet connection is required. Biblia registrada. Note que los versĂ­culos se descargarĂĄn segĂșn @@ -1112,7 +1112,7 @@ Note que los versĂ­culos se descargarĂĄn segĂșn sea necesario, por lo que debe c ImagePlugin.ExceptionDialog - + Select Attachment Seleccionar Anexo @@ -1165,17 +1165,17 @@ Do you want to add the other images anyway? ImagesPlugin.ImageTab - + Background Color - + Default Color: - + Provides border where image is not the correct dimensions for the screen when resized. @@ -1249,7 +1249,7 @@ Do you want to add the other images anyway? Seleccionar Medios - + You must select a media file to delete. Debe seleccionar un medio para eliminar. @@ -1634,7 +1634,7 @@ Portions copyright © 2004-2011 %s Archivo Adjunto - + Description characters to enter : %s Caracteres faltantes: %s @@ -1642,24 +1642,24 @@ Portions copyright © 2004-2011 %s OpenLP.ExceptionForm - + Platform: %s Plataforma: %s - + Save Crash Report Guardar Reporte de Errores - + Text files (*.txt *.log *.text) Archivos de texto (*.txt *.log *.text) - + **OpenLP Bug Report** Version: %s @@ -1690,7 +1690,7 @@ Version: %s - + *OpenLP Bug Report* Version: %s @@ -2789,7 +2789,7 @@ Database: %s OpenLP.MediaManagerItem - + No Items Selected Nada Seleccionado @@ -2799,42 +2799,42 @@ Database: %s &Agregar al Ă­tem del Servico - + You must select one or more items to preview. Debe seleccionar uno o mĂĄs Ă­tems para visualizar. - + You must select one or more items to send live. Debe seleccionar uno o mĂĄs Ă­tems para proyectar. - + You must select one or more items. Debe seleccionar uno o mĂĄs Ă­tems. - + You must select an existing service item to add to. Debe seleccionar un servicio existente al cual añadir. - + Invalid Service Item Ítem de Servicio no vĂĄlido - + You must select a %s service item. Debe seleccionar un(a) %s del servicio. - + You must select one or more items to add. Debe seleccionar uno o mĂĄs Ă­temes para agregar. - + No Search Results Sin Resultados @@ -3010,12 +3010,12 @@ Suffix not supported OpenLP.ServiceItem - + <strong>Start</strong>: %s - + <strong>Length</strong>: %s @@ -3031,209 +3031,209 @@ Suffix not supported OpenLP.ServiceManager - + Move to &top Mover al &inicio - + Move item to the top of the service. Mover el Ă­tem al inicio del servicio. - + Move &up S&ubir - + Move item up one position in the service. Mover el Ă­tem una posiciĂłn hacia arriba. - + Move &down Ba&jar - + Move item down one position in the service. Mover el Ă­tem una posiciĂłn hacia abajo. - + Move to &bottom Mover al &final - + Move item to the end of the service. Mover el Ă­tem al final del servicio. - + &Delete From Service &Eliminar Del Servicio - + Delete the selected item from the service. Eliminar el Ă­tem seleccionado del servicio. - + &Add New Item &Agregar un Ă­tem nuevo - + &Add to Selected Item &Agregar al Ă­tem Seleccionado - + &Edit Item &Editar Ă­tem - + &Reorder Item &Reorganizar Ă­tem - + &Notes &Notas - + &Change Item Theme &Cambiar Tema de Ă­tem - + File is not a valid service. The content encoding is not UTF-8. Este no es un servicio vĂĄlido. La codificaciĂłn del contenido no es UTF-8. - + File is not a valid service. El archivo no es un servicio vĂĄlido. - + Missing Display Handler Controlador de Pantalla Faltante - + Your item cannot be displayed as there is no handler to display it No se puede mostrar el Ă­tem porque no hay un controlador de pantalla disponible - + Your item cannot be displayed as the plugin required to display it is missing or inactive El Ă­tem no se puede mostar porque falta el complemento requerido o esta desabilitado - + &Expand all &Expandir todo - + Expand all the service items. Expandir todos los Ă­tems del servicio. - + &Collapse all &Colapsar todo - + Collapse all the service items. Colapsar todos los Ă­tems del servicio. - + Open File Abrir Archivo - + OpenLP Service Files (*.osz) Archivo de Servicio OpenLP (*.osz) - + Moves the selection down the window. Mover selecciĂłn hacia abajo. - + Move up Subir - + Moves the selection up the window. Mover selecciĂłn hacia arriba. - + Go Live Proyectar - + Send the selected item to Live. Proyectar el Ă­tem seleccionado. - + Modified Service Servicio Modificado - + &Start Time &Tiempo de Inicio - + Show &Preview Mostrar &Vista previa - + Show &Live Mostrar &ProyecciĂłn - + The current service has been modified. Would you like to save this service? El servicio actual a sido modificado. ÂżDesea guardar este servicio? - + File could not be opened because it is corrupt. No se pudo abrir el archivo porque estĂĄ corrompido. - + Empty File Archivo Vacio - + This service file does not contain any data. El archivo de servicio no contiene ningĂșn dato. - + Corrupt File Archivo Corrompido @@ -3253,42 +3253,42 @@ La codificaciĂłn del contenido no es UTF-8. Tiempo de reproducciĂłn: - + Untitled Service Servicio Sin nombre - + Load an existing service. Abrir un servicio existente. - + Save this service. Guardar este servicio. - + Select a theme for the service. Seleccione un tema para el servicio. - + This file is either corrupt or it is not an OpenLP 2.0 service file. El archivo estĂĄ corrupto o no es un archivo OpenLP 2.0 vĂĄlido. - + Slide theme - + Notes - + Service File Missing @@ -3415,17 +3415,17 @@ La codificaciĂłn del contenido no es UTF-8. Diapositiva Siguiente - + Previous Service Servicio Anterior - + Next Service Servicio Siguiente - + Escape Item Salir de Ă­tem @@ -3545,36 +3545,51 @@ La codificaciĂłn del contenido no es UTF-8. Start time is after the finish time of the media item El Inicio se establece despues del final del medio actual + + + Theme Layout + + + + + The blue box shows the main area. + + + + + The red box shows the footer. + + OpenLP.ThemeForm - + Select Image Seleccionar Imagen - + Theme Name Missing Falta Nombre de Tema - + There is no name for this theme. Please enter one. No existe nombre para este tema. Ingrese uno. - + Theme Name Invalid Nombre de Tema no vĂĄlido - + Invalid theme name. Please enter one. Nombre de tema no vĂĄlido. Ingrese uno. - + (approximately %d lines per slide) (aproximadamente %d lĂ­neas por diapositiva) @@ -3652,7 +3667,7 @@ La codificaciĂłn del contenido no es UTF-8. Debe seleccionar un tema para editar. - + You are unable to delete the default theme. No se puede eliminar el tema predeterminado. @@ -3692,19 +3707,19 @@ La codificaciĂłn del contenido no es UTF-8. Seleccione el Archivo de Tema a Importar - + File is not a valid theme. The content encoding is not UTF-8. Este no es un tema vĂĄlido. La codificaciĂłn del contenido no es UTF-8. - + File is not a valid theme. El archivo no es un tema vĂĄlido. - + Theme %s is used in the %s plugin. El tema %s se usa en el complemento %s. @@ -3754,12 +3769,12 @@ La codificaciĂłn del contenido no es UTF-8. ÂżEliminar el tema %s? - + Validation Error Error de ValidaciĂłn - + A theme with this name already exists. Ya existe un tema con este nombre. @@ -3778,260 +3793,270 @@ La codificaciĂłn del contenido no es UTF-8. OpenLP.ThemeWizard - + Theme Wizard Asistente para Temas - + Welcome to the Theme Wizard Bienvenido al Asistente para Temas - + Set Up Background Establecer un fondo - + Set up your theme's background according to the parameters below. Establecer el fondo de su tema segĂșn los siguientes parĂĄmetros. - + Background type: Tipo de fondo: - + Solid Color Color SĂłlido - + Gradient Gradiente - + Color: Color: - + Gradient: Gradiente: - + Horizontal Horizontal - + Vertical Vertical - + Circular Circular - + Top Left - Bottom Right Arriba Izquierda - Abajo Derecha - + Bottom Left - Top Right Abajo Izquierda - Abajo Derecha - + Main Area Font Details Fuente del Área Principal - + Define the font and display characteristics for the Display text Definir la fuente y las caracterĂ­sticas para el texto en Pantalla - + Font: Fuente: - + Size: Tamaño: - + Line Spacing: Epaciado de LĂ­neas: - + &Outline: &Contorno: - + &Shadow: &Sombra: - + Bold Negrita - + Italic Cursiva - + Footer Area Font Details Fuente de PiĂ© de pĂĄgina - + Define the font and display characteristics for the Footer text Definir la fuente y las caracterĂ­sticas para el texto de PiĂ© de pĂĄgina - + Text Formatting Details Detalles de Formato - + Allows additional display formatting information to be defined Permite definir informaciĂłn adicional de formato - + Horizontal Align: Alinea. Horizontal: - + Left Izquierda - + Right Derecha - + Center Centro - + Output Area Locations UbicaciĂłn del Área de ProyecciĂłn - + Allows you to change and move the main and footer areas. Le permite mover y cambiar la ubicaciĂłn del ĂĄrea principal y de piĂ© de pĂĄgina. - + &Main Area Área &Principal - + &Use default location &Usar ubicaciĂłn por defecto - + X position: PosiciĂłn x: - + px px - + Y position: PosiciĂłn y: - + Width: Ancho: - + Height: Altura: - + Use default location Usar ubicaciĂłn por defecto - + Save and Preview Guardar && Previsualizar - + View the theme and save it replacing the current one or change the name to create a new theme Ver el tema y guardarlo reemplazando el actual o cambiando el nombre para crear un tema nuevo - + Theme name: Nombre: - + This wizard will help you to create and edit your themes. Click the next button below to start the process by setting up your background. Este asistente le ayudarĂĄ a crear y editar temas. Presione Siguiente para iniciar el proceso al establecer el fondo. - + Transitions: Transiciones: - + &Footer Area &Pie de PĂĄgina - + Edit Theme - %s Editar Tema - %s - + Starting color: - + Ending color: - + Background color: Color de fondo: + + + Justify + + + + + Layout Preview + + OpenLP.ThemesTab @@ -4676,52 +4701,52 @@ La codificaciĂłn del contenido no es UTF-8. PresentationPlugin.MediaItem - + Select Presentation(s) Seleccionar PresentaciĂłn(es) - + Automatic AutomĂĄtico - + Present using: Mostrar usando: - + File Exists Ya existe el Archivo - + A presentation with that filename already exists. Ya existe una presentaciĂłn con este nombre. - + This type of presentation is not supported. No existe soporte para este tipo de presentaciĂłn. - + Presentations (%s) Presentaciones (%s) - + Missing Presentation PresentaciĂłn faltante - + The Presentation %s no longer exists. La PresentaciĂłn %s ya no esta disponible. - + The Presentation %s is incomplete, please reload. La PresentaciĂłn %s esta incompleta, por favor recargela. @@ -4866,30 +4891,35 @@ La codificaciĂłn del contenido no es UTF-8. RemotePlugin.RemoteTab - + Serve on IP address: DirecciĂłn IP a Servir: - + Port number: Puerto nĂșmero: - + Server Settings Config. de Servidor - + Remote URL: URL Remota: - + Stage view URL: URL AdministraciĂłn: + + + Display stage time in 12h format + + SongUsagePlugin @@ -4980,7 +5010,7 @@ La codificaciĂłn del contenido no es UTF-8. SongUsagePlugin.SongUsageDeleteForm - + Delete Song Usage Data Borrar historial de canciĂłn @@ -5005,7 +5035,7 @@ La codificaciĂłn del contenido no es UTF-8. Todos los datos han sido borrados exitosamente. - + Select the date up to which the song usage data should be deleted. All data recorded before this date will be permanently deleted. @@ -5622,7 +5652,7 @@ La codificaciĂłn se encarga de la correcta representaciĂłn de caracteres. SongsPlugin.ImportWizardForm - + Select Document/Presentation Files Seleccione Documento/PresentaciĂłn @@ -5637,95 +5667,105 @@ La codificaciĂłn se encarga de la correcta representaciĂłn de caracteres.Este asistente le ayudarĂĄ a importar canciones de diversos formatos. Presione Siguiente para iniciar el proceso al seleccionar un formato a importar. - + Generic Document/Presentation Documento/PresentaciĂłn genĂ©rica - + Filename: Nombre: - + Add Files... Agregar Archivos... - + Remove File(s) Eliminar Archivo(s) - + Please wait while your songs are imported. Por favor espere mientras se exportan las canciones. - + 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. El importador OpenLyrics no esta desarrollado, pero puede notar que tenemos la intenciĂłn de hacerlo. Esperamos incluirlo en la siguiente versiĂłn. - + OpenLP 2.0 Databases Base de Datos OpenLP 2.0 - + openlp.org v1.x Databases Base de datos openlp v1.x - + Words Of Worship Song Files Archivo Words Of Worship - + Songs Of Fellowship Song Files Archivo Songs Of Fellowship - + SongBeamer Files Archivo SongBeamer - + SongShow Plus Song Files Archivo SongShow Plus - + You need to specify at least one document or presentation file to import from. Debe especificar al menos un documento o presentaciĂłn para importar. - + Foilpresenter Song Files Archivo Foilpresenter - + Copy Copiar - + Save to File Guardar a Archivo - + The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. El importador de Songs of Fellowship se ha deshabilitado porque OpenOffice.org o LibreOffice no esta disponible. - + The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. El importador documento/presentaciĂłn se ha deshabilitado porque OpenOffice.org o LibreOffice no esta disponible. + + + OpenLyrics or OpenLP 2.0 Exported Song + + + + + OpenLyrics Files + + SongsPlugin.MediaFilesForm @@ -5753,7 +5793,7 @@ La codificaciĂłn se encarga de la correcta representaciĂłn de caracteres.Letra - + CCLI License: Licensia CCLI: @@ -5776,7 +5816,7 @@ La codificaciĂłn se encarga de la correcta representaciĂłn de caracteres.Administrar la lista de autores, categorĂ­as y libros. - + copy For song cloning @@ -5801,7 +5841,7 @@ La codificaciĂłn se encarga de la correcta representaciĂłn de caracteres. SongsPlugin.OpenLyricsExport - + Exporting "%s"... Exportando "%s"... @@ -5873,7 +5913,7 @@ La codificaciĂłn se encarga de la correcta representaciĂłn de caracteres. SongsPlugin.SongImportForm - + Your song import failed. La importaciĂłn fallĂł. diff --git a/resources/i18n/et.ts b/resources/i18n/et.ts index d92eec3e5..782fd1cce 100644 --- a/resources/i18n/et.ts +++ b/resources/i18n/et.ts @@ -412,38 +412,38 @@ Muudatused ei rakendu juba teenistusesse lisatud salmidele. BiblesPlugin.HTTPBible - + Registering Bible and loading books... Piibli registreerimine ja raamatute laadimine... - + Registering Language... Keele registreerimine... - + Importing %s... Importing <book name>... %s importimine... - + Download Error TĂ”rge allalaadimisel - + There was a problem downloading your verse selection. Please check your Internet connection, and if this error continues to occur please consider reporting a bug. Valitud salmide allalaadimisel esines viga. Kontrolli oma internetiĂŒhendust ning kui see viga kordub, teata sellest veast. - + Parse Error Parsimise viga - + There was a problem extracting your verse selection. If this error continues to occur please consider reporting a bug. Sinu salmide vahemiku analĂŒĂŒsimisel esines viga. Kui see viga kordub, siis palun teata sellest veast. @@ -546,27 +546,27 @@ Muudatused ei rakendu juba teenistusesse lisatud salmidele. Pead ette andma piiblisalmide faili, mida importida. - + You need to specify a version name for your Bible. Pead mÀÀrama Piibli versiooni nime. - + You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. Pead mÀÀrama piiblitĂ”lke autoriĂ”iguse! Avalikkuse omandisse kuuluvad Piiblid tuleb vastavalt tĂ€histada. - + Bible Exists Piibel on juba olemas - + This Bible already exists. Please import a different Bible or first delete the existing one. See Piibel on juba olemas! Palun impordi mingi muu Piibel vĂ”i kustuta enne olemasolev. - + Your Bible import failed. Piibli importimine nurjus. @@ -576,7 +576,7 @@ Muudatused ei rakendu juba teenistusesse lisatud salmidele. Õigused: - + CSV File CSV fail @@ -601,17 +601,17 @@ Muudatused ei rakendu juba teenistusesse lisatud salmidele. Salmide fail: - + openlp.org 1.x Bible Files openlp.org 1.x piiblifailid - + Registering Bible... Piibli registreerimine... - + Registered Bible. Please note, that verses will be downloaded on demand and thus an internet connection is required. Piibel on registreeritud. Pea meeles, et salmid laaditakse alla @@ -1112,7 +1112,7 @@ Pane tĂ€hele, et veebipiiblite salmid laaditakse internetist vajadusel, seega on ImagePlugin.ExceptionDialog - + Select Attachment Manuse valimine @@ -1164,17 +1164,17 @@ Do you want to add the other images anyway? ImagesPlugin.ImageTab - + Background Color - + Default Color: - + Provides border where image is not the correct dimensions for the screen when resized. @@ -1248,7 +1248,7 @@ Do you want to add the other images anyway? Meedia valimine - + You must select a media file to delete. Pead valima meedia, mida kustutada. @@ -1632,7 +1632,7 @@ Osade autoriĂ”igus © 2004-2011 %s Pane fail kaasa - + Description characters to enter : %s Puuduvad tĂ€hed kirjelduses: %s @@ -1640,24 +1640,24 @@ Osade autoriĂ”igus © 2004-2011 %s OpenLP.ExceptionForm - + Platform: %s Platvorm: %s - + Save Crash Report Vearaporti salvestamine - + Text files (*.txt *.log *.text) Tekstifailid (*.txt *.log *.text) - + **OpenLP Bug Report** Version: %s @@ -1688,7 +1688,7 @@ Version: %s - + *OpenLP Bug Report* Version: %s @@ -2788,7 +2788,7 @@ Database: %s OpenLP.MediaManagerItem - + No Items Selected Ühtegi elementi pole valitud @@ -2798,42 +2798,42 @@ Database: %s &Lisa valitud teenistuse elemendile - + You must select one or more items to preview. Sa pead valima vĂ€hemalt ĂŒhe kirje, mida eelvaadelda. - + You must select one or more items to send live. Sa pead valima vĂ€hemalt ĂŒhe kirje, mida tahad ekraanil nĂ€idata. - + You must select one or more items. Pead valima vĂ€hemalt ĂŒhe elemendi. - + You must select an existing service item to add to. Pead valima olemasoleva teenistuse, millele lisada. - + Invalid Service Item Vigane teenistuse element - + You must select a %s service item. Pead valima teenistuse elemendi %s. - + You must select one or more items to add. - + No Search Results @@ -3009,12 +3009,12 @@ Suffix not supported OpenLP.ServiceItem - + <strong>Start</strong>: %s - + <strong>Length</strong>: %s @@ -3030,209 +3030,209 @@ Suffix not supported OpenLP.ServiceManager - + Move to &top TĂ”sta ĂŒ&lemiseks - + Move item to the top of the service. Teenistuse algusesse tĂ”stmine. - + Move &up Liiguta &ĂŒles - + Move item up one position in the service. Elemendi liigutamine teenistuses ĂŒhe koha vĂ”rra ettepoole. - + Move &down Liiguta &alla - + Move item down one position in the service. Elemendi liigutamine teenistuses ĂŒhe koha vĂ”rra tahapoole. - + Move to &bottom TĂ”sta &alumiseks - + Move item to the end of the service. Teenistuse lĂ”ppu tĂ”stmine. - + &Delete From Service &Kustuta teenistusest - + Delete the selected item from the service. Valitud elemendi kustutamine teenistusest. - + &Add New Item &Lisa uus element - + &Add to Selected Item &Lisa valitud elemendile - + &Edit Item &Muuda kirjet - + &Reorder Item &Muuda elemendi kohta jĂ€rjekorras - + &Notes &MĂ€rkmed - + &Change Item Theme &Muuda elemendi kujundust - + File is not a valid service. The content encoding is not UTF-8. Fail ei ole sobiv teenistus. Sisu ei ole UTF-8 kodeeringus. - + File is not a valid service. Fail pole sobiv teenistus. - + Missing Display Handler Puudub kuvakĂ€sitleja - + 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 - + Your item cannot be displayed as the plugin required to display it is missing or inactive Seda elementi pole vĂ”imalik nĂ€idata ekraanil, kuna puudub seda kĂ€sitsev programm - + &Expand all &Laienda kĂ”ik - + Expand all the service items. KĂ”igi teenistuse kirjete laiendamine. - + &Collapse all &Ahenda kĂ”ik - + Collapse all the service items. KĂ”igi teenistuse kirjete ahendamine. - + Open File Faili avamine - + OpenLP Service Files (*.osz) OpenLP teenistuse failid (*.osz) - + Moves the selection down the window. Valiku tĂ”stmine aknas allapoole. - + Move up Liiguta ĂŒles - + Moves the selection up the window. Valiku tĂ”stmine aknas ĂŒlespoole. - + Go Live Ekraanile - + Send the selected item to Live. Valitud kirje saatmine ekraanile. - + Modified Service Teenistust on muudetud - + &Start Time &Alguse aeg - + Show &Preview NĂ€ita &eelvaadet - + Show &Live NĂ€ita &ekraanil - + The current service has been modified. Would you like to save this service? Praegust teensitust on muudetud. Kas tahad selle teenistuse salvestada? - + File could not be opened because it is corrupt. Faili pole vĂ”imalik avada, kuna see on rikutud. - + Empty File TĂŒhi fail - + This service file does not contain any data. Selles teenistuse failis pole andmeid. - + Corrupt File Rikutud fail @@ -3252,42 +3252,42 @@ Sisu ei ole UTF-8 kodeeringus. Kestus: - + Untitled Service Pealkirjata teenistus - + Load an existing service. Olemasoleva teenistuse laadimine. - + Save this service. Selle teenistuse salvestamine. - + Select a theme for the service. Teenistuse jaoks kujunduse valimine. - + This file is either corrupt or it is not an OpenLP 2.0 service file. - + Slide theme - + Notes - + Service File Missing @@ -3414,17 +3414,17 @@ Sisu ei ole UTF-8 kodeeringus. JĂ€rgmine slaid - + Previous Service Eelmine teenistus - + Next Service JĂ€rgmine teenistus - + Escape Item Kuva sulgemine @@ -3544,36 +3544,51 @@ Sisu ei ole UTF-8 kodeeringus. Start time is after the finish time of the media item + + + Theme Layout + + + + + The blue box shows the main area. + + + + + The red box shows the footer. + + OpenLP.ThemeForm - + Select Image Pildi valimine - + Theme Name Missing Kujundusel puudub nimi - + There is no name for this theme. Please enter one. Kujundusel ei ole nime. Palun sisesta nimi. - + Theme Name Invalid Sobimatu kujunduse nimi - + Invalid theme name. Please enter one. Kujunduse nimi pole sobiv. Palun sisesta sobiv nimi. - + (approximately %d lines per slide) @@ -3651,12 +3666,12 @@ Sisu ei ole UTF-8 kodeeringus. Pead valima kujunduse, mida muuta. - + You are unable to delete the default theme. Vaikimisi kujundust pole vĂ”imalik kustutada. - + Theme %s is used in the %s plugin. Kujundust %s kasutatakse pluginas %s. @@ -3696,14 +3711,14 @@ Sisu ei ole UTF-8 kodeeringus. Importimiseks kujunduse faili valimine - + File is not a valid theme. The content encoding is not UTF-8. See fail ei ole korrektne kujundus. Sisu kodeering ei ole UTF-8. - + File is not a valid theme. See fail ei ole sobilik kujundus. @@ -3753,12 +3768,12 @@ Sisu kodeering ei ole UTF-8. Kas kustutada kujundus %s? - + Validation Error Valideerimise viga - + A theme with this name already exists. Sellenimeline teema on juba olemas. @@ -3777,260 +3792,270 @@ Sisu kodeering ei ole UTF-8. OpenLP.ThemeWizard - + Theme Wizard Kujunduse nĂ”ustaja - + Welcome to the Theme Wizard Tere tulemast kujunduse nĂ”ustajasse - + Set Up Background Tausta mÀÀramine - + Set up your theme's background according to the parameters below. MÀÀra kujunduse taust, kasutades jĂ€rgnevaid parameetreid. - + Background type: Tausta liik: - + Solid Color Ühtlane vĂ€rv - + Gradient Üleminek - + Color: VĂ€rvus: - + Gradient: Üleminek: - + Horizontal Horisontaalne - + Vertical Vertikaalne - + Circular Radiaalne - + Top Left - Bottom Right Loodest kagusse - + Bottom Left - Top Right Edelast kirdesse - + Main Area Font Details Peamise teksti ĂŒksikasjad - + Define the font and display characteristics for the Display text MÀÀra font ja teised teksti omadused - + Font: Font: - + Size: Suurus: - + Line Spacing: Reavahe: - + &Outline: &Kontuurjoon: - + &Shadow: &Vari: - + Bold Rasvane - + Italic Kaldkiri - + Footer Area Font Details Jaluse fondi ĂŒksikasjad - + Define the font and display characteristics for the Footer text MÀÀra jaluse font ja muud omadused - + Text Formatting Details Teksti vorminduse ĂŒksikasjad - + Allows additional display formatting information to be defined VĂ”imaldab mÀÀrata lisaks vorminduse andmeid - + Horizontal Align: RĂ”htjoondus: - + Left Vasakul - + Right Paremal - + Center Keskel - + Output Area Locations VĂ€ljundala asukoht - + Allows you to change and move the main and footer areas. VĂ”imaldab muuta ja liigutada peamist ja jaluse ala. - + &Main Area &Peamine ala - + &Use default location &Vaikimisi asukoha kasutamine - + X position: X-asukoht: - + px px - + Y position: Y-asukoht: - + Width: Laius: - + Height: KĂ”rgus: - + Use default location Vaikimisi asukoha kasutamine - + Save and Preview Salvestamine ja eelvaade - + View the theme and save it replacing the current one or change the name to create a new theme Vaata kujundus ĂŒle ja salvesta see, asendades olemasolev vĂ”i muuda nime, et luua uus kujundus - + Theme name: Kujunduse nimi: - + This wizard will help you to create and edit your themes. Click the next button below to start the process by setting up your background. See nĂ”ustaja aitab kujundusi luua ja muuta. KlĂ”psa edasi nupul, et alustada tausta mÀÀramisest. - + Transitions: Üleminekud: - + &Footer Area &Jaluse ala - + Edit Theme - %s Teema muutmine - %s - + Starting color: - + Ending color: - + Background color: + + + Justify + + + + + Layout Preview + + OpenLP.ThemesTab @@ -4675,52 +4700,52 @@ Sisu kodeering ei ole UTF-8. PresentationPlugin.MediaItem - + Select Presentation(s) Esitlus(t)e valimine - + Automatic Automaatne - + Present using: Esitluseks kasutatakse: - + File Exists Fail on olemas - + A presentation with that filename already exists. Sellise nimega esitluse fail on juba olemas. - + This type of presentation is not supported. Seda liiki esitlus ei ole toetatud. - + Presentations (%s) Esitlused (%s) - + Missing Presentation Puuduv esitlus - + The Presentation %s no longer exists. Esitlust %s enam ei ole. - + The Presentation %s is incomplete, please reload. Esitlus %s ei ole tĂ€ielik, palun laadi see uuesti. @@ -4865,30 +4890,35 @@ Sisu kodeering ei ole UTF-8. RemotePlugin.RemoteTab - + Serve on IP address: Saadaval IP-aadressilt: - + Port number: Pordi number: - + Server Settings Serveri sĂ€tted - + Remote URL: - + Stage view URL: + + + Display stage time in 12h format + + SongUsagePlugin @@ -4979,7 +5009,7 @@ Sisu kodeering ei ole UTF-8. SongUsagePlugin.SongUsageDeleteForm - + Delete Song Usage Data Laulukasutuse andmete kustutamine @@ -5004,7 +5034,7 @@ Sisu kodeering ei ole UTF-8. KĂ”ik kustutamisele mÀÀratud andmed kustutati edukalt. - + Select the date up to which the song usage data should be deleted. All data recorded before this date will be permanently deleted. @@ -5620,7 +5650,7 @@ Kodeering on vajalik mĂ€rkide Ă”ige esitamise jaoks. SongsPlugin.ImportWizardForm - + Select Document/Presentation Files Dokumentide/esitluste valimine @@ -5635,95 +5665,105 @@ Kodeering on vajalik mĂ€rkide Ă”ige esitamise jaoks. See nĂ”ustaja aitab sul laule importida paljudest erinevatest formaatidest. KlĂ”psa all asuvat edasi nuppu, et jĂ€tkata tegevust importimise vormingu valimisega. - + Generic Document/Presentation Tavaline dokumenti/esitlus - + Filename: Failinimi: - + 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. OpenLyrics importija ei ole veel valmis, kuid nagu sa nĂ€ed, on meil plaanis see luua. Loodetavasti saab see jĂ€rgmiseks vĂ€ljalaskeks valmis. - + Add Files... Lisa faile... - + Remove File(s) Faili(de) eemaldamine - + Please wait while your songs are imported. Palun oota, kuni laule imporditakse. - + OpenLP 2.0 Databases OpenLP 2.0 andmebaas - + openlp.org v1.x Databases openlp.org v1.x andmebaas - + Words Of Worship Song Files Words Of Worship Song failid - + You need to specify at least one document or presentation file to import from. Pead mÀÀrama vĂ€hemalt ĂŒhe dokumendi vĂ”i esitluse faili, millest tahad importida. - + Songs Of Fellowship Song Files Songs Of Fellowship laulufailid - + SongBeamer Files SongBeameri failid - + SongShow Plus Song Files SongShow Plus laulufailid - + Foilpresenter Song Files Foilpresenteri laulufailid - + Copy Kopeeri - + Save to File Salvesta faili - + The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. - + The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. + + + OpenLyrics or OpenLP 2.0 Exported Song + + + + + OpenLyrics Files + + SongsPlugin.MediaFilesForm @@ -5751,7 +5791,7 @@ Kodeering on vajalik mĂ€rkide Ă”ige esitamise jaoks. LaulusĂ”nad - + CCLI License: CCLI litsents: @@ -5774,7 +5814,7 @@ Kodeering on vajalik mĂ€rkide Ă”ige esitamise jaoks. Autorite, teemade ja laulikute loendi haldamine. - + copy For song cloning @@ -5799,7 +5839,7 @@ Kodeering on vajalik mĂ€rkide Ă”ige esitamise jaoks. SongsPlugin.OpenLyricsExport - + Exporting "%s"... "%s" eksportimine... @@ -5871,7 +5911,7 @@ Kodeering on vajalik mĂ€rkide Ă”ige esitamise jaoks. SongsPlugin.SongImportForm - + Your song import failed. Laulu importimine nurjus. diff --git a/resources/i18n/fr.ts b/resources/i18n/fr.ts index 05630347d..3cd6efd6f 100644 --- a/resources/i18n/fr.ts +++ b/resources/i18n/fr.ts @@ -412,38 +412,38 @@ Les changement ne s'applique aux versets dĂ©jĂ  un service. BiblesPlugin.HTTPBible - + Registering Bible and loading books... Enregistrement de la Bible et chargement des livres... - + Registering Language... Enregistrement des langages... - + Importing %s... Importing <book name>... Importation %s... - + Download Error Erreur de tĂ©lĂ©chargement - + There was a problem downloading your verse selection. Please check your Internet connection, and if this error continues to occur please consider reporting a bug. Il y a un problĂšme de tĂ©lĂ©chargement de votre sĂ©lection de verset. Pouvez-vous contrĂŽler votre connexion Internet, et si cette erreur persiste pensez a rapporter un dysfonctionnement. - + Parse Error Erreur syntaxique - + There was a problem extracting your verse selection. If this error continues to occur please consider reporting a bug. Il y a un problĂšme pour extraire votre sĂ©lection de verset. Si cette erreur persiste pensez a rapporter un dysfonctionnement. @@ -556,32 +556,32 @@ Les changement ne s'applique aux versets dĂ©jĂ  un service. Vous devez spĂ©cifier un fichier de verset biblique Ă  importer. - + You need to specify a version name for your Bible. Vous devez spĂ©cifier un nom de version pour votre Bible. - + You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. Vous devez introduire un copyright pour votre Bible. Les Bibles dans le domaine publics doivent ĂȘtre marquĂ©e comme trouvĂ©. - + Bible Exists La Bible existe - + This Bible already exists. Please import a different Bible or first delete the existing one. Cette bible existe dĂ©jĂ . Veuillez introduire un non de Bible diffĂ©rent ou commencer par supprimer celle qui existe dĂ©jĂ . - + CSV File Fichier CSV - + Your Bible import failed. Votre import de Bible Ă  Ă©chouĂ©. @@ -601,17 +601,17 @@ Les changement ne s'applique aux versets dĂ©jĂ  un service. Fichiers de versets : - + openlp.org 1.x Bible Files Fichiers Bible openlp.org 1.x - + Registering Bible... Enregistrement de Bible... - + Registered Bible. Please note, that verses will be downloaded on demand and thus an internet connection is required. Enregistrement de Bible. Remarquer que les versets vont ĂȘtre @@ -1112,7 +1112,7 @@ Veuillez remarquer, que les versets des Bibles Web sont tĂ©lĂ©chargĂ©s Ă  la dem ImagePlugin.ExceptionDialog - + Select Attachment SĂ©lectionne attachement @@ -1165,17 +1165,17 @@ Voulez-vous ajouter de toute façon d'autres images ? ImagesPlugin.ImageTab - + Background Color - + Default Color: - + Provides border where image is not the correct dimensions for the screen when resized. @@ -1269,7 +1269,7 @@ Voulez-vous ajouter de toute façon d'autres images ? Le fichier %s n'existe plus. - + You must select a media file to delete. Vous devez sĂ©lectionnĂ© un fichier mĂ©dia Ă  effacer. @@ -1635,7 +1635,7 @@ Copyright de composant © 2004-2011 %s Attacher un fichier - + Description characters to enter : %s Description a introduire : %s @@ -1643,24 +1643,24 @@ Copyright de composant © 2004-2011 %s OpenLP.ExceptionForm - + Platform: %s Plateforme: %s - + Save Crash Report Sauve le rapport de crache - + Text files (*.txt *.log *.text) Fichiers texte (*.txt *.log *.text) - + **OpenLP Bug Report** Version: %s @@ -1691,7 +1691,7 @@ Version : %s - + *OpenLP Bug Report* Version: %s @@ -2791,7 +2791,7 @@ Database: %s OpenLP.MediaManagerItem - + No Items Selected Pas d'Ă©lĂ©ments sĂ©lectionnĂ© @@ -2801,42 +2801,42 @@ Database: %s &Ajoute Ă  l'Ă©lĂ©ment sĂ©lectionnĂ© du service - + You must select one or more items to preview. Vous devez sĂ©lectionner un ou plusieurs Ă©lĂ©ments a prĂ©visualiser. - + You must select one or more items to send live. Vous devez sĂ©lectionner un ou plusieurs Ă©lĂ©ments pour les envoyer en direct. - + You must select one or more items. Vous devez sĂ©lectionner un ou plusieurs Ă©lĂ©ments. - + You must select an existing service item to add to. Vous devez sĂ©lectionner un Ă©lĂ©ment existant du service pour l'ajouter. - + Invalid Service Item ÉlĂ©ment du service invalide - + You must select a %s service item. Vous devez sĂ©lectionner un %s Ă©lĂ©ment du service. - + You must select one or more items to add. Vous devez sĂ©lectionner un ou plusieurs Ă©lĂ©ments a ajouter. - + No Search Results Pas de rĂ©sultats de recherche @@ -3013,12 +3013,12 @@ Suffixe pas supporter OpenLP.ServiceItem - + <strong>Start</strong>: %s <strong>DĂ©but</strong> : %s - + <strong>Length</strong>: %s <strong>Longueur</strong> : %s @@ -3034,209 +3034,209 @@ Suffixe pas supporter OpenLP.ServiceManager - + Move to &top Place en &premier - + Move item to the top of the service. Place l'Ă©lĂ©ment au dĂ©but du service. - + Move &up DĂ©place en &haut - + Move item up one position in the service. DĂ©place l'Ă©lĂ©ment d'une position en haut. - + Move &down DĂ©place en &bas - + Move item down one position in the service. DĂ©place l'Ă©lĂ©ment d'une position en bas. - + Move to &bottom Place en &dernier - + Move item to the end of the service. Place l'Ă©lĂ©ment a la fin du service. - + Moves the selection up the window. DĂ©place la sĂ©lection en haut de la fenĂȘtre. - + Move up DĂ©place en haut - + &Delete From Service &Retire du service - + Delete the selected item from the service. Retire l'Ă©lĂ©ment sĂ©lectionnĂ© du service. - + &Expand all &DĂ©velopper tous - + Expand all the service items. DĂ©veloppe tous les Ă©lĂ©ments du service. - + &Collapse all &RĂ©duire tous - + Collapse all the service items. RĂ©duit tous les Ă©lĂ©ment du service. - + Go Live Lance le direct - + Send the selected item to Live. Envoie l'Ă©lĂ©ment sĂ©lectionnĂ© en direct. - + &Add New Item &Ajoute un nouvel Ă©lĂ©ment - + &Add to Selected Item &Ajoute a l'Ă©lĂ©ment sĂ©lectionnĂ© - + &Edit Item &Édite l'Ă©lĂ©ment - + &Reorder Item &RĂ©ordonne l'Ă©lĂ©ment - + &Notes &Remarques - + &Change Item Theme &Change le thĂšme de l'Ă©lĂ©ment - + Open File Ouvre un fichier - + OpenLP Service Files (*.osz) Fichier service OpenLP (*.osz) - + File is not a valid service. The content encoding is not UTF-8. Le fichier n'est un service valide. Le contenu n'est pas de l'UTF-8. - + File is not a valid service. Le fichier n'est pas un service valide. - + Missing Display Handler DĂ©lĂ©guĂ© d'affichage manquent - + Your item cannot be displayed as there is no handler to display it Votre Ă©lĂ©ment ne peut pas ĂȘtre affichĂ© il n'y a pas de dĂ©lĂ©guĂ© pour l'afficher - + Your item cannot be displayed as the plugin required to display it is missing or inactive Votre Ă©lĂ©ment ne peut pas ĂȘtre affichĂ© le module nĂ©cessaire pour l'afficher est manquant ou inactif - + Moves the selection down the window. DĂ©place la sĂ©lection en bas de la fenĂȘtre. - + Modified Service Service modifiĂ© - + &Start Time Temps de &dĂ©but - + Show &Preview Affiche en &prĂ©visualisation - + Show &Live Affiche en &direct - + The current service has been modified. Would you like to save this service? Le service courant Ă  Ă©tĂ© modifier. Voulez-vous l'enregistrer ? - + File could not be opened because it is corrupt. Le fichier n'a pas pu ĂȘtre ouvert car il est corrompu. - + Empty File Fichier vide - + This service file does not contain any data. Ce fichier de service ne contiens aucune donnĂ©es. - + Corrupt File Fichier corrompu @@ -3256,42 +3256,42 @@ Le contenu n'est pas de l'UTF-8. DurĂ©e du service : - + Untitled Service Service sans titre - + Load an existing service. Charge un service existant. - + Save this service. Enregistre ce service. - + Select a theme for the service. SĂ©lectionne un thĂšme pour le service. - + This file is either corrupt or it is not an OpenLP 2.0 service file. Ce fichier est sois corrompu ou n'est pas un fichier de service OpenLP 2.0. - + Slide theme ThĂšme de diapositive - + Notes Notes - + Service File Missing Fichier de service manquant @@ -3418,17 +3418,17 @@ Le contenu n'est pas de l'UTF-8. Aller Ă  - + Previous Service Service prĂ©cĂ©dent - + Next Service Service suivant - + Escape Item ÉlĂ©ment Ă©chappement @@ -3548,36 +3548,51 @@ Le contenu n'est pas de l'UTF-8. Start time is after the finish time of the media item Le temps de dĂ©but est avant le temps de fin de l'Ă©lĂ©ment mĂ©dia + + + Theme Layout + + + + + The blue box shows the main area. + + + + + The red box shows the footer. + + OpenLP.ThemeForm - + Select Image SĂ©lectionne l'image - + Theme Name Missing Nom du thĂšme manquant - + There is no name for this theme. Please enter one. Il n'y a pas ne nom pour ce thĂšme. Veillez en introduire un. - + Theme Name Invalid Nom du thĂšme invalide - + Invalid theme name. Please enter one. Nom du thĂšme invalide. Veuillez en introduire un. - + (approximately %d lines per slide) (approximativement %d lignes pas diapositive) @@ -3735,34 +3750,34 @@ Le contenu n'est pas de l'UTF-8. Select le fichier thĂšme Ă  importer - + File is not a valid theme. The content encoding is not UTF-8. Le fichier n'est pas un thĂšme. Le contenu n'est pas de l'UTF-8. - + Validation Error Erreur de validation - + File is not a valid theme. Le fichier n'est pas un thĂšme valide. - + A theme with this name already exists. Le thĂšme avec ce nom existe dĂ©jĂ . - + You are unable to delete the default theme. Vous ne pouvez pas supprimer le thĂšme par dĂ©faut. - + Theme %s is used in the %s plugin. ThĂšme %s est utiliser par le module %s. @@ -3781,260 +3796,270 @@ Le contenu n'est pas de l'UTF-8. OpenLP.ThemeWizard - + Edit Theme - %s Édite le thĂšme - %s - + Theme Wizard Assistant thĂšme - + Welcome to the Theme Wizard Bienvenue dans l'assistant thĂšme - + This wizard will help you to create and edit your themes. Click the next button below to start the process by setting up your background. Cet assistant va vous aider Ă  crĂ©er et Ă©diter votre thĂšme. Cliquer sur la bouton suivant pour dĂ©marrer le processus par configurer votre fond. - + Set Up Background Établir le font - + Set up your theme's background according to the parameters below. Établir le fond de votre thĂšme en fonction des paramĂštre si dessous. - + Background type: Type de font : - + Solid Color Couleur unie - + Gradient DĂ©grader - + Color: Couleur : - + Gradient: DĂ©grader : - + Horizontal Horizontal - + Vertical Vertical - + Circular Circulaire - + Top Left - Bottom Right Haut gauche - Bas droite - + Bottom Left - Top Right Bas gauche - Haut droite - + Main Area Font Details Aire principale dĂ©tails de police - + Define the font and display characteristics for the Display text DĂ©finir la police et les caractĂ©ristique d'affichage pour afficher le text - + Font: Police : - + Size: Taille : - + Line Spacing: Espace des lignes : - + &Outline: &Contour : - + &Shadow: &Ombre : - + Bold Gras - + Italic Italique - + Footer Area Font Details DĂ©tailles de la police du pied de page - + Define the font and display characteristics for the Footer text DĂ©finir la police et les caractĂ©ristiques d'affichage du texte en pied de page - + Text Formatting Details DĂ©tails de formatage du texte - + Allows additional display formatting information to be defined Permet de dĂ©finir des paramĂštre d'affichage supplĂ©mentaire - + Horizontal Align: Alignement horizontal : - + Left Gauche - + Right Droite - + Center Centrer - + Transitions: Traductions : - + Output Area Locations Emplacement de la zone d'affichage - + Allows you to change and move the main and footer areas. Vous permettre de dĂ©placer les zone principale et de pied de page. - + &Main Area Zone &principale - + &Use default location &Utilise l'emplacement par dĂ©faut - + X position: Position x : - + px px - + Y position: Position y : - + Width: Largeur : - + Height: Hauteur : - + &Footer Area Zone de &pied de page - + Use default location Utilise l'emplacement pas dĂ©faut - + Save and Preview Enregistre et prĂ©visualise - + View the theme and save it replacing the current one or change the name to create a new theme Visualise le thĂšme et l'enregistre a la place du thĂšme courent, ou change le nom pour en crĂ©er un nouveau - + Theme name: Nom du thĂšme : - + Starting color: Couleur de dĂ©but : - + Ending color: Couleur de fin : - + Background color: Couleur de fond : + + + Justify + + + + + Layout Preview + + OpenLP.ThemesTab @@ -4679,52 +4704,52 @@ Le contenu n'est pas de l'UTF-8. PresentationPlugin.MediaItem - + Select Presentation(s) SĂ©lectionne PrĂ©sentation(s) - + Automatic Automatique - + Present using: Actuellement utilise : - + Presentations (%s) PrĂ©sentations (%s) - + File Exists Fichier existe - + A presentation with that filename already exists. Une prĂ©sentation avec ce nom de fichier existe dĂ©jĂ . - + This type of presentation is not supported. Ce type de prĂ©sentation n'est pas supportĂ©. - + Missing Presentation PrĂ©sentation manquante - + The Presentation %s is incomplete, please reload. La prĂ©sentation %s est incomplĂšte, merci de recharger. - + The Presentation %s no longer exists. La prĂ©sentation %s n'existe plus. @@ -4869,30 +4894,35 @@ Le contenu n'est pas de l'UTF-8. RemotePlugin.RemoteTab - + Server Settings Configuration du serveur - + Serve on IP address: Disponible sur l'adresse : - + Port number: NumĂ©ro de port : - + Remote URL: URL de contrĂŽle : - + Stage view URL: URL de visualisation d'Ă©tape : + + + Display stage time in 12h format + + SongUsagePlugin @@ -4983,7 +5013,7 @@ Le contenu n'est pas de l'UTF-8. SongUsagePlugin.SongUsageDeleteForm - + Delete Song Usage Data Supprime les donnĂ©es de suivi de l'utilisation des chants @@ -5008,7 +5038,7 @@ Le contenu n'est pas de l'UTF-8. Toutes les donnĂ©es demandĂ©es a Ă©tĂ© supprimĂ©es avec succĂšs. - + Select the date up to which the song usage data should be deleted. All data recorded before this date will be permanently deleted. @@ -5637,100 +5667,110 @@ L'enccodage est responsable de l'affichage correct des caractĂšres.Cet assistant vous aide a importer des chants de divers formats. Cliquez sur le bouton suivant ci-dessous pour dĂ©marrer le processus pas sĂ©lectionner le format Ă  importer. - + Generic Document/Presentation Document/prĂ©sentation gĂ©nĂ©rique - + Filename: Nom de fichiers : - + Add Files... Ajoute des fichiers... - + Remove File(s) Supprime des fichier(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. L'import OpenLyrics n'a pas encore Ă©tĂ© dĂ©ployer, mais comme vous pouvez le voir, nous avous toujours l'intention de le faire. J'espĂšre que ce sera dans la prochaine version. - + Please wait while your songs are imported. Attendez pendant que vos chants sont importĂ©. - + OpenLP 2.0 Databases Base de donnĂ©es OpenLP 2.0 - + openlp.org v1.x Databases Base de donnĂ©es openlp.org 1.x - + Words Of Worship Song Files Fichiers Chant Words Of Worship - + Select Document/Presentation Files SĂ©lectionne les fichiers document/prĂ©sentation - + Songs Of Fellowship Song Files Fichiers Chant Songs Of Fellowship - + SongBeamer Files Fichiers SongBeamer - + SongShow Plus Song Files Fichiers Chant SongShow Plus - + You need to specify at least one document or presentation file to import from. Vous devez spĂ©cifier au moins un fichier document ou prĂ©sentation Ă  importer. - + Foilpresenter Song Files Fichiers Chant Foilpresenter - + Copy Copier - + Save to File Enregistre dans le fichier - + The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. L'import de chants Fellowship Ă  Ă©tĂ© dĂ©sactivĂ© car OpenLP ne peut accĂ©der Ă  OpenOffice ou LibreOffice. - + The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. L'import gĂ©nĂ©rique de document/prĂ©sentation Ă  Ă©tĂ© dĂ©sactiver car OpenLP ne peut accĂ©der Ă  OpenOffice ou LibreOffice. + + + OpenLyrics or OpenLP 2.0 Exported Song + + + + + OpenLyrics Files + + SongsPlugin.MediaFilesForm @@ -5771,7 +5811,7 @@ L'enccodage est responsable de l'affichage correct des caractĂšres. - + CCLI License: License CCLI : @@ -5781,7 +5821,7 @@ L'enccodage est responsable de l'affichage correct des caractĂšres.Maintenir la liste des auteur, sujet et psautiers. - + copy For song cloning copier @@ -5806,7 +5846,7 @@ L'enccodage est responsable de l'affichage correct des caractĂšres. SongsPlugin.OpenLyricsExport - + Exporting "%s"... Exportation "%s"... @@ -5878,7 +5918,7 @@ L'enccodage est responsable de l'affichage correct des caractĂšres. SongsPlugin.SongImportForm - + Your song import failed. Votre import de chant Ă  Ă©chouer. diff --git a/resources/i18n/hu.ts b/resources/i18n/hu.ts index 1d305cc83..d9d2e6f5a 100644 --- a/resources/i18n/hu.ts +++ b/resources/i18n/hu.ts @@ -411,38 +411,38 @@ A mĂłdosĂ­tĂĄsok nem Ă©rintik a mĂĄr a szolgĂĄlati sorrendben lĂ©vƑ verseket. BiblesPlugin.HTTPBible - + Registering Bible and loading books... Biblia regisztrĂĄlĂĄsa Ă©s a könyvek letöltĂ©se
 - + Registering Language... Nyelv regisztrĂĄlĂĄsa
 - + Importing %s... Importing <book name>... ImportĂĄlĂĄs: %s
 - + Download Error LetöltĂ©si hiba - + There was a problem downloading your verse selection. Please check your Internet connection, and if this error continues to occur please consider reporting a bug. ProblĂ©ma törtĂ©nt a kijelölt versek letöltĂ©sekor. KĂ©rem, ellenƑrizd a az internetkapcsolatot, Ă©s ha a hiba nem oldĂłdik meg, fontold meg a hiba bejelentĂ©sĂ©t. - + Parse Error FeldolgozĂĄsi hiba - + There was a problem extracting your verse selection. If this error continues to occur please consider reporting a bug. ProblĂ©ma törtĂ©nt a kivĂĄlasztott versek kicsomagolĂĄsakor. Ha a hiba nem oldĂłdik meg, fontold meg a hiba bejelentĂ©sĂ©t. @@ -545,27 +545,27 @@ A mĂłdosĂ­tĂĄsok nem Ă©rintik a mĂĄr a szolgĂĄlati sorrendben lĂ©vƑ verseket.Meg kell adni egy fĂĄjlt a bibliai versekrƑl az importĂĄlĂĄshoz. - + You need to specify a version name for your Bible. Meg kell adni a biblia verziĂłszĂĄmĂĄt. - + Bible Exists Biblia lĂ©tezik - + 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. Meg kell adni a biblia szerzƑi jogait. A közkincsƱ bibliĂĄkat meg kell jelölni ilyennek. - + This Bible already exists. Please import a different Bible or first delete the existing one. Ez a biblia mĂĄr lĂ©tezik. KĂ©rlek, importĂĄlj egy mĂĄsik bibliĂĄt vagy elƑbb töröld a meglĂ©vƑt. @@ -575,7 +575,7 @@ A mĂłdosĂ­tĂĄsok nem Ă©rintik a mĂĄr a szolgĂĄlati sorrendben lĂ©vƑ verseket.EngedĂ©lyek: - + CSV File CSV fĂĄjl @@ -600,17 +600,17 @@ A mĂłdosĂ­tĂĄsok nem Ă©rintik a mĂĄr a szolgĂĄlati sorrendben lĂ©vƑ verseket.Versek fĂĄjl: - + openlp.org 1.x Bible Files openlp.org 1.x biblia fĂĄjlok - + Registering Bible... Biblia regisztrĂĄlĂĄsa
 - + Registered Bible. Please note, that verses will be downloaded on demand and thus an internet connection is required. Biblia regisztrĂĄlva. MegjegyzĂ©s: a versek csak kĂ©rĂ©sre lesznek letöltve Ă©s ekkor internet kapcsolat szĂŒksĂ©geltetik. @@ -1109,7 +1109,7 @@ MegjegyzĂ©s: a webes bibliĂĄk versei csak kĂ©rĂ©sre lesznek letöltve Ă©s ekkor ImagePlugin.ExceptionDialog - + Select Attachment MellĂ©klet kijelölĂ©se @@ -1162,17 +1162,17 @@ SzeretnĂ©l mĂĄs kĂ©peket megadni? ImagesPlugin.ImageTab - + Background Color HĂĄttĂ©rszĂ­n - + Default Color: AlapĂ©rtelmezett szĂ­n: - + Provides border where image is not the correct dimensions for the screen when resized. Keretet hoz lĂ©tre a kĂ©p körĂŒl, ha a kĂ©p mĂ©rete nem passzol a kĂ©pernyƑ arĂĄnyĂĄhoz. @@ -1246,7 +1246,7 @@ SzeretnĂ©l mĂĄs kĂ©peket megadni? MĂ©diafĂĄjl kijelölĂ©se - + You must select a media file to delete. Ki kell jelölni egy mĂ©diafĂĄjlt a törlĂ©shez. @@ -1630,7 +1630,7 @@ RĂ©szleges szerzƑi jog © 2004-2011 %s FĂĄjl csatolĂĄsa - + Description characters to enter : %s LeĂ­rĂĄs: %s @@ -1638,23 +1638,23 @@ RĂ©szleges szerzƑi jog © 2004-2011 %s OpenLP.ExceptionForm - + Platform: %s - + Save Crash Report ÖsszeomlĂĄsi jelentĂ©s mentĂ©se - + Text files (*.txt *.log *.text) Szöveg fĂĄjlok (*.txt *.log *.text) - + **OpenLP Bug Report** Version: %s @@ -1672,7 +1672,7 @@ Version: %s - + *OpenLP Bug Report* Version: %s @@ -2769,7 +2769,7 @@ AdatbĂĄzis: %s OpenLP.MediaManagerItem - + No Items Selected Nincs kijelölt elem @@ -2779,42 +2779,42 @@ AdatbĂĄzis: %s &HozzĂĄadĂĄs a kijelölt sorrend elemhez - + You must select one or more items to preview. Ki kell jelölni egy elemet az elƑnĂ©zethez. - + You must select one or more items to send live. Ki kell jelölni egy Ă©lƑ adĂĄsba kĂŒldendƑ elemet. - + You must select one or more items. Ki kell jelölni egy vagy több elemet. - + You must select an existing service item to add to. Ki kell jelölni egy sorrend elemet, amihez hozzĂĄ szeretnĂ© adni. - + Invalid Service Item ÉrvĂ©nytelen sorrend elem - + You must select a %s service item. Ki kell jelölni egy %s sorrend elemet. - + You must select one or more items to add. Ki kell jelölni egy vagy több elemet a hozzĂĄadĂĄshoz. - + No Search Results Nincs talĂĄlat @@ -2991,12 +2991,12 @@ Az utĂłtag nem tĂĄmogatott OpenLP.ServiceItem - + <strong>Start</strong>: %s <strong>KezdĂ©s</strong>: %s - + <strong>Length</strong>: %s <strong>Hossz</strong>: %s @@ -3012,209 +3012,209 @@ Az utĂłtag nem tĂĄmogatott OpenLP.ServiceManager - + Move to &top MozgatĂĄs &felĂŒlre - + Move item to the top of the service. Elem mozgatĂĄsa a sorrend elejĂ©re. - + Move &up MozgatĂĄs f&eljebb - + Move item up one position in the service. Elem mozgatĂĄsa a sorrendben eggyel feljebb. - + Move &down MozgatĂĄs &lejjebb - + Move item down one position in the service. Elem mozgatĂĄsa a sorrendben eggyel lejjebb. - + Move to &bottom MozgatĂĄs &alulra - + Move item to the end of the service. Elem mozgatĂĄsa a sorrend vĂ©gĂ©re. - + &Delete From Service &TörlĂ©s a sorrendbƑl - + Delete the selected item from the service. Kijelölt elem törlĂ©se a sorrendbƑl. - + &Add New Item Új elem &hozzĂĄadĂĄsa - + &Add to Selected Item &HozzĂĄadĂĄs a kijelölt elemhez - + &Edit Item &Elem szerkesztĂ©se - + &Reorder Item Elem Ășjra&rendezĂ©se - + &Notes &Jegyzetek - + &Change Item Theme Elem tĂ©mĂĄjĂĄnak &mĂłdosĂ­tĂĄsa - + OpenLP Service Files (*.osz) OpenLP sorrend fĂĄjlok (*.osz) - + File is not a valid service. The content encoding is not UTF-8. A fĂĄjl nem Ă©rvĂ©nyes sorrend. A tartalom kĂłdolĂĄsa nem UTF-8. - + File is not a valid service. A fĂĄjl nem Ă©rvĂ©nyes sorrend. - + 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 Az elemet nem lehet megjelenĂ­teni, mert a bƑvĂ­tmĂ©ny, amely kezelnĂ©, hiĂĄnyzik vagy inaktĂ­v - + &Expand all Mind &kibontĂĄsa - + Expand all the service items. Minden sorrend elem kibontĂĄsa. - + &Collapse all Mind össze&csukĂĄsa - + Collapse all the service items. Minden sorrend elem összecsukĂĄsa. - + Moves the selection down the window. A kivĂĄlasztĂĄs lejjebb mozgatja az ablakot. - + Move up MozgatĂĄs feljebb - + Moves the selection up the window. A kivĂĄlasztĂĄs feljebb mozgatja az ablakot. - + Go Live ÉlƑ adĂĄsba - + Send the selected item to Live. A kivĂĄlasztott elem Ă©lƑ adĂĄsba kĂŒldĂ©se. - + &Start Time &KezdƑ idƑpont - + Show &Preview &ElƑnĂ©zet megjelenĂ­tĂ©se - + Show &Live ÉlƑ &adĂĄs megjelenĂ­tĂ©se - + Open File FĂĄjl megnyitĂĄsa - + Modified Service MĂłdosĂ­tott sorrend - + The current service has been modified. Would you like to save this service? Az aktuĂĄlis sorrend mĂłdosult. SzeretnĂ©d elmenteni? - + File could not be opened because it is corrupt. A fĂĄjl nem nyithatĂł meg, mivel sĂ©rĂŒlt. - + Empty File Üres fĂĄjl - + This service file does not contain any data. A szolgĂĄlati sorrend fĂĄjl nem tartalmaz semmilyen adatot. - + Corrupt File SĂ©rĂŒlt fĂĄjl @@ -3234,42 +3234,42 @@ A tartalom kĂłdolĂĄsa nem UTF-8. LejĂĄtszĂĄsi idƑ: - + Untitled Service NĂ©vnĂ©lkĂŒli szolgĂĄlat - + Load an existing service. Egy meglĂ©vƑ szolgĂĄlati sorrend betöltĂ©se. - + Save this service. Sorrend mentĂ©se. - + Select a theme for the service. Jelöljön ki egy tĂ©mĂĄt a sorrendhez. - + This file is either corrupt or it is not an OpenLP 2.0 service file. A fĂĄjl vagy sĂ©rĂŒlt vagy nem egy OpenLP 2.0 szolgĂĄlati sorrend fĂĄjl. - + Service File Missing HiĂĄnyzĂł sorrend fĂĄjl - + Slide theme Dia tĂ©ma - + Notes Jegyzetek @@ -3396,17 +3396,17 @@ A tartalom kĂłdolĂĄsa nem UTF-8. KövetkezƑ dia - + Previous Service ElƑzƑ sorrend - + Next Service KövetkezƑ sorrend - + Escape Item KilĂ©pĂ©s az elembƑl @@ -3526,36 +3526,51 @@ A tartalom kĂłdolĂĄsa nem UTF-8. Start time is after the finish time of the media item A mĂ©diaelem kezdƑ idƑpontja kĂ©sƑbbre van ĂĄllĂ­tva, mint a befejezĂ©se + + + Theme Layout + + + + + The blue box shows the main area. + + + + + The red box shows the footer. + + OpenLP.ThemeForm - + Select Image KĂ©p kijelölĂ©se - + Theme Name Missing TĂ©ma neve nincs megadva - + There is no name for this theme. Please enter one. A tĂ©mĂĄnak nincs neve, meg kell adni. - + Theme Name Invalid ÉrvĂ©nytelen tĂ©ma nĂ©v - + Invalid theme name. Please enter one. A tĂ©ma neve Ă©rvĂ©nytelen, Ă©rvĂ©nyeset kell megadni. - + (approximately %d lines per slide) (körĂŒlbelĂŒl %d sor diĂĄnkĂ©nt) @@ -3643,7 +3658,7 @@ A tartalom kĂłdolĂĄsa nem UTF-8. TörlĂ©s megerƑsĂ­tĂ©se - + You are unable to delete the default theme. Az alapĂ©rtelmezett tĂ©mĂĄt nem lehet törölni. @@ -3683,19 +3698,19 @@ A tartalom kĂłdolĂĄsa nem UTF-8. ImportĂĄlandĂł tĂ©ma fĂĄjl kijelölĂ©se - + File is not a valid theme. The content encoding is not UTF-8. Nem Ă©rvĂ©nyes tĂ©mafĂĄjl. A tartalom kĂłdolĂĄsa nem UTF-8. - + File is not a valid theme. Nem Ă©rvĂ©nyes tĂ©mafĂĄjl. - + Theme %s is used in the %s plugin. A(z) %s tĂ©mĂĄt a(z) %s bƑvĂ­tmĂ©ny hasznĂĄlja. @@ -3740,12 +3755,12 @@ A tartalom kĂłdolĂĄsa nem UTF-8. OpenLP tĂ©mĂĄk (*.theme *.otz) - + Validation Error ÉrvĂ©nyessĂ©gi hiba - + A theme with this name already exists. Ilyen fĂĄjlnĂ©ven mĂĄr lĂ©tezik egy tĂ©ma. @@ -3759,260 +3774,270 @@ A tartalom kĂłdolĂĄsa nem UTF-8. OpenLP.ThemeWizard - + Theme Wizard TĂ©ma tĂŒndĂ©r - + Welcome to the Theme Wizard Üdvözlet a tĂ©ma tĂŒndĂ©rben - + Set Up Background HĂĄttĂ©r beĂĄllĂ­tĂĄsa - + Set up your theme's background according to the parameters below. A tĂ©ma hĂĄttere az alĂĄbbi paramĂ©terekkel ĂĄllĂ­thatĂł be. - + Background type: HĂĄttĂ©r tĂ­pusa: - + Solid Color HomogĂ©n szĂ­n - + Gradient SzĂ­nĂĄtmenet - + Color: SzĂ­n: - + Gradient: SzĂ­nĂĄtmenet: - + Horizontal VĂ­zszintes - + Vertical FĂŒggƑleges - + Circular Körkörös - + Top Left - Bottom Right Bal felsƑ sarokbĂłl jobb alsĂł sarokba - + Bottom Left - Top Right Bal alsĂł sarokbĂłl jobb felsƑ sarokba - + Main Area Font Details FƑ tartalom betƱkĂ©szlet jellemzƑi - + Define the font and display characteristics for the Display text A fƑ szöveg betƱkĂ©szlete Ă©s megjelenĂ©si tulajdonsĂĄgai - + Font: BetƱkĂ©szlet: - + Size: MĂ©ret: - + Line Spacing: Sorköz: - + &Outline: &Körvonal: - + &Shadow: &ÁrnyĂ©k: - + Bold FĂ©lkövĂ©r - + Italic DƑlt - + Footer Area Font Details LĂĄblĂ©c betƱkĂ©szlet jellemzƑi - + Define the font and display characteristics for the Footer text A lĂĄblĂ©c szöveg betƱkĂ©szlete Ă©s megjelenĂ©si tulajdonsĂĄgai - + Text Formatting Details SzövegformĂĄzĂĄs jellemzƑi - + Allows additional display formatting information to be defined TovĂĄbbi megjelenĂ©si formĂĄzĂĄsok - + Horizontal Align: VĂ­zszintes igazĂ­tĂĄs: - + Left Balra zĂĄrt - + Right Jobbra zĂĄrt - + Center KözĂ©pre igazĂ­tott - + Output Area Locations PozĂ­ciĂłk - + Allows you to change and move the main and footer areas. A fƑ szöveg Ă©s a lĂĄblĂ©c helyzetĂ©nek mozgatĂĄsa. - + &Main Area &FƑ szöveg - + &Use default location &AlapĂ©rtelmezett helyen - + X position: X pozĂ­ciĂł: - + px - + Y position: Y pozĂ­ciĂł: - + Width: SzĂ©lessĂ©g: - + Height: MagassĂĄg: - + Use default location AlapĂ©rtelmezett helyen - + Save and Preview MentĂ©s Ă©s elƑnĂ©zet - + View the theme and save it replacing the current one or change the name to create a new theme A tĂ©ma elƑnĂ©zete Ă©s mentĂ©se: egy mĂĄr meglĂ©vƑ tĂ©ma felĂŒlĂ­rhatĂł vagy egy Ășj nĂ©v megadĂĄsĂĄval Ășj tĂ©ma hozhatĂł lĂ©tre - + Theme name: TĂ©ma neve: - + Edit Theme - %s TĂ©ma szerkesztĂ©se – %s - + This wizard will help you to create and edit your themes. Click the next button below to start the process by setting up your background. A tĂŒndĂ©r segĂ­t tĂ©mĂĄkat lĂ©trehozni Ă©s mĂłdosĂ­tani. Kattints az alĂĄbbi KövetkezƑ gombra a folyamat elsƑ lĂ©pĂ©sĂ©nek indĂ­tĂĄshoz, a hĂĄttĂ©r beĂĄllĂ­tĂĄsĂĄhoz. - + Transitions: Átmenetek: - + &Footer Area &LĂĄblĂ©c - + Starting color: KezdƑ szĂ­n: - + Ending color: BefejezƑ szĂ­n: - + Background color: HĂĄttĂ©rszĂ­n: + + + Justify + + + + + Layout Preview + + OpenLP.ThemesTab @@ -4657,52 +4682,52 @@ A tartalom kĂłdolĂĄsa nem UTF-8. PresentationPlugin.MediaItem - + Select Presentation(s) BemutatĂł(k) kijelölĂ©se - + Automatic Automatikus - + Present using: BemutatĂł ezzel: - + File Exists A fĂĄjl lĂ©tezik - + A presentation with that filename already exists. Ilyen fĂĄjlnĂ©ven mĂĄr lĂ©tezik egy bemutatĂł. - + This type of presentation is not supported. Ez a bemutatĂł tĂ­pus nem tĂĄmogatott. - + Presentations (%s) BemutatĂłk (%s) - + Missing Presentation HiĂĄnyzĂł bemutatĂł - + The Presentation %s is incomplete, please reload. A(z) %s bemutatĂł hiĂĄnyos, Ășjra kell tölteni. - + The Presentation %s no longer exists. A(z) %s bemutatĂł mĂĄr nem lĂ©tezik. @@ -4847,30 +4872,35 @@ A tartalom kĂłdolĂĄsa nem UTF-8. RemotePlugin.RemoteTab - + Serve on IP address: SzolgĂĄltatĂĄs IP cĂ­me: - + Port number: Port szĂĄma: - + Server Settings Szerver beĂĄllĂ­tĂĄsok - + Remote URL: TĂĄvirĂĄnyĂ­tĂł URL: - + Stage view URL: SzĂ­npadi nĂ©zet URL: + + + Display stage time in 12h format + + SongUsagePlugin @@ -4961,7 +4991,7 @@ A tartalom kĂłdolĂĄsa nem UTF-8. SongUsagePlugin.SongUsageDeleteForm - + Delete Song Usage Data Dalstatisztika adatok törlĂ©se @@ -4986,7 +5016,7 @@ A tartalom kĂłdolĂĄsa nem UTF-8. Minden kĂ©rt adat sikeresen törlĂ©sre kerĂŒlt. - + Select the date up to which the song usage data should be deleted. All data recorded before this date will be permanently deleted. Ki kell vĂĄlasztani egy dĂĄtumot, amely elƑtt a statisztika adatok törlĂ©se kerĂŒlnek. Minden ezelƑtt rögzĂ­tett adat vĂ©glegesen törlƑdni fog. @@ -5603,7 +5633,7 @@ EasyWorshipbƑlkerĂŒltek importĂĄlĂĄsra] SongsPlugin.ImportWizardForm - + Select Document/Presentation Files Jelölj ki egy dokumentum vagy egy bemutatĂł fĂĄjlokat @@ -5618,95 +5648,105 @@ EasyWorshipbƑlkerĂŒltek importĂĄlĂĄsra] A tĂŒndĂ©r segĂ­t a kĂŒlönfĂ©le formĂĄtumĂș dalok importĂĄlĂĄsĂĄban. Kattints az alĂĄbbi KövetkezƑ gombra a folyamat elsƑ lĂ©pĂ©sĂ©nek indĂ­tĂĄshoz, a formĂĄtum kivĂĄlasztĂĄsĂĄhoz. - + Generic Document/Presentation ÁltalĂĄnos dokumentum vagy bemutatĂł - + Filename: FĂĄjlnĂ©v: - + Add Files... FĂĄjlok hozzĂĄadĂĄsa
 - + Remove File(s) FĂĄjl(ok) törlĂ©se - + Please wait while your songs are imported. KĂ©rlek, vĂĄrj, mĂ­g a dalok importĂĄlĂĄs alatt ĂĄllnak. - + 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. Az OpenLyrics importĂĄlĂł mĂ©g nem lett kifejlesztve, de amint mĂĄr lĂĄthatod, szĂĄndĂ©kozunk elkĂ©szĂ­teni. RemĂ©lhetƑleg a következƑ kiadĂĄsban mĂĄr benne lesz. - + OpenLP 2.0 Databases OpenLP 2.0 adatbĂĄzisok - + openlp.org v1.x Databases openlp.org v1.x adatbĂĄzisok - + Words Of Worship Song Files Words of Worship dal fĂĄjlok - + You need to specify at least one document or presentation file to import from. Ki kell jelölnie legalĂĄbb egy dokumentumot vagy bemutatĂłt az importĂĄlĂĄshoz. - + Songs Of Fellowship Song Files Songs Of Fellowship dal fĂĄjlok - + SongBeamer Files SongBeamer fĂĄjlok - + SongShow Plus Song Files SongShow Plus dal fĂĄjlok - + Foilpresenter Song Files Foilpresenter dal fĂĄjlok - + Copy MĂĄsolĂĄs - + Save to File MentĂ©s fĂĄjlba - + The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. A Songs of Fellowship importĂĄlĂł le lett tiltva, mivel az OpenLP nem talĂĄl OpenOffice-t vagy LibreOffice-t a szĂĄmĂ­tĂłgĂ©pen. - + The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. Az ĂĄltalĂĄnos dokumentum, ill. bemutatĂł importĂĄlĂł le lett tiltva, mivel az OpenLP nem talĂĄl OpenOffice-t vagy LibreOffice-t a szĂĄmĂ­tĂłgĂ©pen. + + + OpenLyrics or OpenLP 2.0 Exported Song + + + + + OpenLyrics Files + + SongsPlugin.MediaFilesForm @@ -5734,7 +5774,7 @@ EasyWorshipbƑlkerĂŒltek importĂĄlĂĄsra] Dalszöveg - + CCLI License: CCLI licenc: @@ -5756,7 +5796,7 @@ EasyWorshipbƑlkerĂŒltek importĂĄlĂĄsra] SzerzƑk, tĂ©makörök, könyvek listĂĄjĂĄnak kezelĂ©se. - + copy For song cloning mĂĄsolĂĄs @@ -5781,7 +5821,7 @@ EasyWorshipbƑlkerĂŒltek importĂĄlĂĄsra] SongsPlugin.OpenLyricsExport - + Exporting "%s"... ExportĂĄlĂĄs „%s”
 @@ -5853,7 +5893,7 @@ EasyWorshipbƑlkerĂŒltek importĂĄlĂĄsra] SongsPlugin.SongImportForm - + Your song import failed. Az importĂĄlĂĄs meghiĂșsult. diff --git a/resources/i18n/id.ts b/resources/i18n/id.ts index 9679d311d..e323d52ba 100644 --- a/resources/i18n/id.ts +++ b/resources/i18n/id.ts @@ -232,7 +232,7 @@ Tetap lanjutkan? Upgrade the Bible databases to the latest format. - Upgrade basis data Alkitab ke format terbaru. + Perbarui basis data Alkitab ke format terbaru. @@ -412,38 +412,38 @@ Perubahan tidak akan mempengaruhi ayat yang kini tampil. BiblesPlugin.HTTPBible - + Registering Bible and loading books... Mendaftarkan Alkitab dan memuat buku... - + Registering Language... Mendaftarkan bahasa... - + Importing %s... Importing <book name>... Mengimpor %s... - + Download Error Unduhan Gagal - + There was a problem downloading your verse selection. Please check your Internet connection, and if this error continues to occur please consider reporting a bug. Ada masalah dalam mengunduh ayat yang terpilih. Mohon periksa sambungan internet Anda dan jika masalah berlanjut, pertimbangkan untuk melaporkan hal ini sebagai kutu. - + Parse Error Galat saat parsing - + There was a problem extracting your verse selection. If this error continues to occur please consider reporting a bug. Ada masalah dalam mengekstrak ayat yang terpilih. Jika masalah berlanjut, pertimbangkan untuk melaporkan hal ini sebagai kutu. @@ -546,32 +546,32 @@ Perubahan tidak akan mempengaruhi ayat yang kini tampil. Anda harus menentukan berkas Alkitab untuk diimpor. - + You need to specify a version name for your Bible. Anda harus menentukan nama versi untuk Alkitab Anda. - + You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. Anda harus memberikan hak cipta untuk Alkitab Anda. Alkitab di Public Domain harus ditandai sedemikian. - + Bible Exists Alkitab Sudah Ada - + This Bible already exists. Please import a different Bible or first delete the existing one. Alkitab sudah ada. Silakan impor Alkitab lain atau hapus yang sudah ada. - + Your Bible import failed. Impor Alkitab gagal. - + CSV File Berkas CSV @@ -601,17 +601,17 @@ Perubahan tidak akan mempengaruhi ayat yang kini tampil. Berkas ayat: - + openlp.org 1.x Bible Files Ayat Alkitab openlp.org 1.x - + Registering Bible... Mendaftarkan Alkitab... - + Registered Bible. Please note, that verses will be downloaded on demand and thus an internet connection is required. Alkitab terdaftar. Mohon camkan, ayat akan diunduh saat @@ -869,28 +869,30 @@ Untuk mencadangkan Alkitab Anda perlu izin untuk menulis di direktori terpilih.< Upgrading Bible %s of %s: "%s" Complete - + Perbaruan Alkitab %s dari %s: "%s" +Selesai Upgrading Bible(s): %s successful%s Please note that verses from Web Bibles will be downloaded on demand and so an Internet connection is required. - + Perbaruan Alkitab: %s sukses%s +Perhatikan bahwa ayat dari Alkitab Web akan diunduh saat diminta dan sambungan internet dibutuhkan. You need to specify a backup directory for your Bibles. - + Anda harus membuat sebuah direktori pencadangan untuk Alkitab Anda. Starting upgrade... - + Memulai perbaruan... There are no Bibles that need to be upgraded. - + Tidak ada Alkitab yang perlu diperbarui. @@ -898,65 +900,65 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I <strong>Custom Slide Plugin</strong><br />The custom slide 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>Plugin Salindia Suai</strong><br />Plugin salindia suai menyediakan kemampuan untuk menyiapkan salindia teks yang dapat ditampilkan pada layar dengan cara yang sama seperti lagu. Plugin ini memberikan kebebasan lebih ketimbang plugin lagu. Custom Slide name singular - + Salindia Suai Custom Slides name plural - + Salindia Suai Custom Slides container title - + Salindia Suai Load a new custom slide. - + Muat sebuah salindia suai. Import a custom slide. - + Impor sebuah salindia suai. Add a new custom slide. - + Tambahkan sebuah salindia suai. Edit the selected custom slide. - + Sunting salindia-suai terpilih. Delete the selected custom slide. - + Hapus salindia-suai terpilih. Preview the selected custom slide. - + Pratinjau salindia-suai terpilih. Send the selected custom slide live. - + Tampilkan salindia-suai terpilih. Add the selected custom slide to the service. - + Tambahkan salindia-suai terpilih ke layanan. @@ -1032,7 +1034,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I Insert Slide - + Tampilan Suai @@ -1040,8 +1042,8 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I Are you sure you want to delete the %n selected custom slides(s)? - - + + Anda yakin ingin menghapus %n salindia-suai terpilih? @@ -1073,43 +1075,43 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I Load a new image. - + Muat gambar baru. Add a new image. - + Tambah gambar baru. Edit the selected image. - + Sunting gambar terpilih. Delete the selected image. - + Hapus gambar terpilih. Preview the selected image. - + Pratayang gambar terpilih. Send the selected image live. - + Tayangkan gambar terpilih. Add the selected image to the service. - + Tambahkan gambar terpilih ke layanan. ImagePlugin.ExceptionDialog - + Select Attachment Pilih Lampiran @@ -1156,25 +1158,25 @@ Ingin tetap menambah gambar lain? There was no display item to amend. - + Tidak ada butir tampilan untuk di-amend. ImagesPlugin.ImageTab - + Background Color - + Warna Latar - + Default Color: - + Warna Bawaan: - + Provides border where image is not the correct dimensions for the screen when resized. - + Memberi batas untuk gambar yang berbeda dimensi saat layar diubah-ukur. @@ -1205,37 +1207,37 @@ Ingin tetap menambah gambar lain? Load new media. - + Muat media baru. Add new media. - + Tambah media baru. Edit the selected media. - + Sunting media terpilih. Delete the selected media. - + Hapus media terpilih. Preview the selected media. - + Pratinjau media terpilih. Send the selected media live. - + Tayangkan media terpilih. Add the selected media to the service. - + Tambahkan media terpilih ke layanan. @@ -1246,7 +1248,7 @@ Ingin tetap menambah gambar lain? Pilih Media - + You must select a media file to delete. Pilih sebuah berkas media untuk dihapus. @@ -1278,17 +1280,17 @@ Ingin tetap menambah gambar lain? There was no display item to amend. - + Tidak ada butir tayangan untuk di-amend. File Too Big - + Berkas Terlalu Besar The file you are trying to load is too big. Please reduce it to less than 50MiB. - + Berkas yang akan dimuat terlalu besar. Mohon kurangi ukurannya hingga 50MiB. @@ -1623,7 +1625,7 @@ Portions copyright © 2004-2011 %s Lampirkan Berkas - + Description characters to enter : %s Karakter deskripsi untuk dimasukkan: %s @@ -1631,24 +1633,24 @@ Portions copyright © 2004-2011 %s OpenLP.ExceptionForm - + Platform: %s Platform: %s - + Save Crash Report Simpan Laporan Crash - + Text files (*.txt *.log *.text) File teks (*.txt *.log *.text) - + **OpenLP Bug Report** Version: %s @@ -1679,7 +1681,7 @@ Version: %s - + *OpenLP Bug Report* Version: %s @@ -1917,7 +1919,7 @@ Mohon gunakan bahasa Inggris untuk laporan kutu. Custom Slides - + Salindia Suai @@ -2777,7 +2779,7 @@ Database: %s OpenLP.MediaManagerItem - + No Items Selected Tidak Ada Barang yang Terpilih @@ -2787,42 +2789,42 @@ Database: %s T&ambahkan ke dalam Butir Layanan - + You must select one or more items to preview. Anda harus memilih satu atau beberapa butir untuk dipratilik. - + You must select one or more items to send live. Anda harus memilih satu atau beberapa butir untuk ditayangkan. - + You must select one or more items. Anda harus memilih satu atau beberapa butir. - + You must select an existing service item to add to. Anda harus memilih butir layanan yang ada untuk ditambahkan. - + Invalid Service Item Butir Layanan Tidak Sahih - + You must select a %s service item. Anda harus memilih sebuah butir layanan %s. - + You must select one or more items to add. - + No Search Results @@ -2998,12 +3000,12 @@ Suffix not supported OpenLP.ServiceItem - + <strong>Start</strong>: %s - + <strong>Length</strong>: %s @@ -3019,209 +3021,209 @@ Suffix not supported OpenLP.ServiceManager - + Move to &top Pindahkan ke punc&ak - + Move item to the top of the service. Pindahkan butir ke puncak daftar layanan. - + Move &up Pindahkan ke a&tas - + Move item up one position in the service. Naikkan butir satu posisi pada daftar layanan. - + Move &down Pindahkan ke &bawah - + Move item down one position in the service. Turunkan butir satu posisi pada daftar layanan. - + Move to &bottom Pindahkan ke &kaki - + Move item to the end of the service. Pindahkan butir ke kaki daftar layanan. - + &Delete From Service Hapus &dari Layanan - + Delete the selected item from the service. Hapus butir terpilih dari layanan, - + &Add New Item T&ambahkan Butir Baru - + &Add to Selected Item T&ambahkan ke Butir Terpilih - + &Edit Item &Sunting Butir - + &Reorder Item Atu&r Ulang Butir - + &Notes Catata&n - + &Change Item Theme &Ubah Tema - + OpenLP Service Files (*.osz) Berkas Layanan OpenLP (*.osz) - + File is not a valid service. The content encoding is not UTF-8. Berkas bukan berupa layanan. Isi berkas tidak berupa UTF-8. - + File is not a valid service. Berkas bukan layanan sahih. - + Missing Display Handler Penangan Tayang hilang - + Your item cannot be displayed as there is no handler to display it Butir tidak dapat ditayangkan karena tidak ada penangan untuk menayangkannya. - + Your item cannot be displayed as the plugin required to display it is missing or inactive - + &Expand all - + Expand all the service items. - + &Collapse all - + Collapse all the service items. - + Open File Buka Berkas - + Moves the selection down the window. - + Move up - + Moves the selection up the window. - + Go Live Tayangkan - + Send the selected item to Live. Tayangkan butir terpilih. - + &Start Time - + Show &Preview - + Show &Live Tampi&lkan Tayang - + Modified Service - + The current service has been modified. Would you like to save this service? - + File could not be opened because it is corrupt. - + Empty File - + This service file does not contain any data. - + Corrupt File @@ -3241,42 +3243,42 @@ Isi berkas tidak berupa UTF-8. - + Untitled Service - + Load an existing service. - + Save this service. - + Select a theme for the service. - + This file is either corrupt or it is not an OpenLP 2.0 service file. - + Slide theme - + Notes - + Service File Missing @@ -3403,17 +3405,17 @@ Isi berkas tidak berupa UTF-8. - + Previous Service - + Next Service - + Escape Item @@ -3533,36 +3535,51 @@ Isi berkas tidak berupa UTF-8. Start time is after the finish time of the media item + + + Theme Layout + + + + + The blue box shows the main area. + + + + + The red box shows the footer. + + OpenLP.ThemeForm - + Select Image - + Theme Name Missing - + There is no name for this theme. Please enter one. - + Theme Name Invalid - + Invalid theme name. Please enter one. - + (approximately %d lines per slide) @@ -3640,12 +3657,12 @@ Isi berkas tidak berupa UTF-8. - + You are unable to delete the default theme. - + Theme %s is used in the %s plugin. @@ -3685,13 +3702,13 @@ Isi berkas tidak berupa UTF-8. - + File is not a valid theme. The content encoding is not UTF-8. - + File is not a valid theme. @@ -3741,12 +3758,12 @@ The content encoding is not UTF-8. - + Validation Error - + A theme with this name already exists. @@ -3765,260 +3782,270 @@ The content encoding is not UTF-8. OpenLP.ThemeWizard - + Theme Wizard - + Welcome to the Theme Wizard - + Set Up Background - + Set up your theme's background according to the parameters below. - + Background type: - + Solid Color - + Gradient - + Color: - + Gradient: - + Horizontal - + Vertical - + Circular - + Top Left - Bottom Right - + Bottom Left - Top Right - + Main Area Font Details - + Define the font and display characteristics for the Display text - + Font: - + Size: - + Line Spacing: - + &Outline: - + &Shadow: - + Bold - + Italic - + Footer Area Font Details - + Define the font and display characteristics for the Footer text - + Text Formatting Details - + Allows additional display formatting information to be defined - + Horizontal Align: - + Left - + Right - + Center - + Output Area Locations - + Allows you to change and move the main and footer areas. - + &Main Area - + &Use default location - + X position: - + px - + Y position: - + Width: - + Height: - + Use default location - + Save and Preview - + View the theme and save it replacing the current one or change the name to create a new theme - + Theme name: - + Edit Theme - %s - + This wizard will help you to create and edit your themes. Click the next button below to start the process by setting up your background. - + Transitions: - + &Footer Area - + Starting color: - + Ending color: - + Background color: Warna latar: + + + Justify + + + + + Layout Preview + + OpenLP.ThemesTab @@ -4663,52 +4690,52 @@ The content encoding is not UTF-8. PresentationPlugin.MediaItem - + Select Presentation(s) - + Automatic - + Present using: - + File Exists - + A presentation with that filename already exists. - + This type of presentation is not supported. - + Presentations (%s) - + Missing Presentation - + The Presentation %s no longer exists. - + The Presentation %s is incomplete, please reload. @@ -4853,30 +4880,35 @@ The content encoding is not UTF-8. RemotePlugin.RemoteTab - + Serve on IP address: - + Port number: - + Server Settings - + Remote URL: - + Stage view URL: + + + Display stage time in 12h format + + SongUsagePlugin @@ -4967,7 +4999,7 @@ The content encoding is not UTF-8. SongUsagePlugin.SongUsageDeleteForm - + Delete Song Usage Data @@ -4992,7 +5024,7 @@ The content encoding is not UTF-8. - + Select the date up to which the song usage data should be deleted. All data recorded before this date will be permanently deleted. @@ -5604,7 +5636,7 @@ The encoding is responsible for the correct character representation. SongsPlugin.ImportWizardForm - + Select Document/Presentation Files @@ -5619,95 +5651,105 @@ The encoding is responsible for the correct character representation. - + Generic Document/Presentation - + Filename: - + 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) - + Please wait while your songs are imported. - + OpenLP 2.0 Databases - + openlp.org v1.x Databases - + Words Of Worship Song Files - + Songs Of Fellowship Song Files - + SongBeamer Files - + SongShow Plus Song Files - + You need to specify at least one document or presentation file to import from. - + Foilpresenter Song Files - + Copy Salin - + Save to File Simpan menjadi Berkas - + The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. - + The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. + + + OpenLyrics or OpenLP 2.0 Exported Song + + + + + OpenLyrics Files + + SongsPlugin.MediaFilesForm @@ -5735,7 +5777,7 @@ The encoding is responsible for the correct character representation. - + CCLI License: @@ -5757,7 +5799,7 @@ The encoding is responsible for the correct character representation. - + copy For song cloning @@ -5782,7 +5824,7 @@ The encoding is responsible for the correct character representation. SongsPlugin.OpenLyricsExport - + Exporting "%s"... @@ -5854,7 +5896,7 @@ The encoding is responsible for the correct character representation. SongsPlugin.SongImportForm - + Your song import failed. diff --git a/resources/i18n/ja.ts b/resources/i18n/ja.ts index 400241fd5..3f751d888 100644 --- a/resources/i18n/ja.ts +++ b/resources/i18n/ja.ts @@ -411,38 +411,38 @@ Changes do not affect verses already in the service. BiblesPlugin.HTTPBible - + Registering Bible and loading books... è–æ›žă‚’ç™»éŒČă—æ›žćă‚’ć–èŸŒăżäž­... - + Registering Language... 蚀èȘžă‚’ç™»éŒČäž­... - + Importing %s... Importing <book name>... %să‚’ć–èŸŒăżäž­... - + Download Error ăƒ€ă‚Šăƒłăƒ­ăƒŒăƒ‰ă‚šăƒ©ăƒŒ - + There was a problem downloading your verse selection. Please check your Internet connection, and if this error continues to occur please consider reporting a bug. éžæŠžă•ă‚ŒăŸè–æ›žăźăƒ€ă‚Šăƒłăƒ­ăƒŒăƒ‰ă«ć€±æ•—ă—ăŸă—ăŸă€‚ă‚€ăƒłă‚żăƒŒăƒăƒƒăƒˆæŽ„ç¶šă‚’çąșèȘă—ă€ăă‚Œă§ă‚‚ă‚šăƒ©ăƒŒăŒçč°ă‚Šèż”ă—ăŠè”·ă“ă‚‹ć ŽćˆăŻă€ăƒă‚°ć ±ć‘Šă‚’æ€œèšŽă—ăŠăă ă•ă„ă€‚ - + Parse Error æ§‹æ–‡ă‚šăƒ©ăƒŒ - + There was a problem extracting your verse selection. If this error continues to occur please consider reporting a bug. éžæŠžă•ă‚ŒăŸè–æ›žăźć±•é–‹ă«ć€±æ•—ă—ăŸă—ăŸă€‚ă‚šăƒ©ăƒŒăŒçč°ă‚Šèż”ă—ăŠè”·ă“ă‚‹ć ŽćˆăŻă€ăƒă‚°ć ±ć‘Šă‚’æ€œèšŽă—ăŠăă ă•ă„ă€‚ @@ -545,27 +545,27 @@ Changes do not affect verses already in the service. ć–ă‚ŠèŸŒă‚€çŻ€ăźæŒ‡ćźšăŒćż…èŠă§ă™ă€‚ - + You need to specify a version name for your Bible. è–æ›žăƒ‡ăƒŒă‚żăźăƒăƒŒă‚žăƒ§ăƒłćă‚’æŒ‡ćźšă™ă‚‹ćż…èŠăŒă‚ă‚ŠăŸă™ă€‚ - + 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. ă™ă§ă«ă“ăźè–æ›žăƒ‡ăƒŒă‚żăŻć–ă‚ŠèŸŒăżæžˆăżă§ă™ă€‚ä»–ăźè–æ›žăƒ‡ăƒŒă‚żă‚’ć–ă‚ŠèŸŒă‚€ă‹æ—ąă«ć–ă‚ŠèŸŒăŸă‚ŒăŸè–æ›žă‚’ć‰Šé™€ă—ăŠăă ă•ă„ă€‚ - + Your Bible import failed. è–æ›žăƒ‡ăƒŒă‚żăźć–ă‚ŠèŸŒăżă«ć€±æ•—ă—ăŸă—ăŸă€‚ @@ -575,7 +575,7 @@ Changes do not affect verses already in the service. äœżç”šèš±ćŻ: - + CSV File CSVăƒ•ă‚Ąă‚€ăƒ« @@ -600,17 +600,17 @@ Changes do not affect verses already in the service. 節: - + openlp.org 1.x Bible Files openlp.org 1x è–æ›žăƒ•ă‚Ąă‚€ăƒ« - + Registering Bible... è–æ›žă‚’ç™»éŒČäž­... - + Registered Bible. Please note, that verses will be downloaded on demand and thus an internet connection is required. è–æ›žă‚’ç™»éŒČă—ăŸă—ăŸă€‚æœŹæ–‡ăŻäœżç”šæ™‚ă«ăƒ€ă‚Šăƒłăƒ­ăƒŒăƒ‰ă•ă‚Œă‚‹ăŸă‚ă€ă‚€ăƒłă‚żăƒŒăƒăƒƒăƒˆæŽ„ç¶šăŒćż…èŠăȘă“ăšă«æłšæ„ă—ăŠăă ă•ă„ă€‚ @@ -1109,7 +1109,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I ImagePlugin.ExceptionDialog - + Select Attachment æ·»ä»˜ă‚’éžæŠž @@ -1162,17 +1162,17 @@ Do you want to add the other images anyway? ImagesPlugin.ImageTab - + Background Color èƒŒæ™Żè‰Č - + Default Color: æ—ąćźšè‰Č: - + Provides border where image is not the correct dimensions for the screen when resized. ç”»ćƒăźçžŠæšȘæŻ”ăŒă‚čクăƒȘăƒŒăƒłăšç•°ăȘる栮搈ぼ摹ć›Čたè‰Čă‚’èš­ćźšă—ăŠăă ă•ă„ă€‚ @@ -1246,7 +1246,7 @@ Do you want to add the other images anyway? ăƒĄăƒ‡ă‚Łă‚ąéžæŠž - + You must select a media file to delete. ć‰Šé™€ă™ă‚‹ăƒĄăƒ‡ă‚Łă‚ąăƒ•ă‚Ąă‚€ăƒ«ă‚’éžæŠžă—ăŠăă ă•ă„ă€‚ @@ -1633,7 +1633,7 @@ Portions copyright © 2004-2011 %s ăƒ•ă‚Ąă‚€ăƒ«ă‚’æ·»ä»˜ - + Description characters to enter : %s èȘŹæ˜Ž : %s @@ -1641,24 +1641,24 @@ Portions copyright © 2004-2011 %s OpenLP.ExceptionForm - + Platform: %s Platform: %s - + Save Crash Report ă‚Żăƒ©ăƒƒă‚·ăƒ„ć ±ć‘Šăźäżć­˜ - + Text files (*.txt *.log *.text) テキă‚čăƒˆăƒ•ă‚Ąă‚€ăƒ« (*.txt *.log *.text) - + **OpenLP Bug Report** Version: %s @@ -1689,7 +1689,7 @@ Version: %s %s - + *OpenLP Bug Report* Version: %s @@ -2801,7 +2801,7 @@ Database: %s OpenLP.MediaManagerItem - + No Items Selected é …ç›źăźéžæŠžăŒă‚ă‚ŠăŸă›ă‚“ @@ -2811,42 +2811,42 @@ Database: %s éžæŠžă•ă‚ŒăŸç€Œæ‹é …ç›źă‚’èżœćŠ (&A - + 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. äž€ă€ä»„äžŠăźé …ç›źă‚’éžæŠžă—ăŠăă ă•ă„ă€‚ - + You must select an existing service item to add to. èżœćŠ ă™ă‚‹ă«ăŻă€æ—ąć­˜ăźç€Œæ‹é …ç›źă‚’éžæŠžă—ăŠăă ă•ă„ă€‚ - + Invalid Service Item 無ćŠčăȘç€Œæ‹é …ç›ź - + You must select a %s service item. %săźé …ç›źă‚’éžæŠžă—ăŠăă ă•ă„ă€‚ - + You must select one or more items to add. èżœćŠ ă™ă‚‹ă«ăŻă€äž€ă€ä»„äžŠăźé …ç›źă‚’éžæŠžă—ăŠăă ă•ă„ă€‚ - + No Search Results èŠ‹ă€ă‹ă‚ŠăŸă›ă‚“ă§ă—ăŸ @@ -3023,12 +3023,12 @@ Suffix not supported OpenLP.ServiceItem - + <strong>Start</strong>: %s <strong>開構</strong>: %s - + <strong>Length</strong>: %s <strong>長さ</strong>: %s @@ -3044,209 +3044,209 @@ Suffix not supported OpenLP.ServiceManager - + Move to &top 侀ç•Ș䞊に移拕(&t) - + Move item to the top of the service. éžæŠžă—ăŸé …ç›źă‚’æœ€ă‚‚äžŠă«ç§»ć‹•ă™ă‚‹ă€‚ - + Move &up 䞀぀䞊に移拕(&u) - + Move item up one position in the service. éžæŠžă—ăŸé …ç›źă‚’1぀䞊に移拕する。 - + Move &down 䞀぀䞋に移拕(&d) - + Move item down one position in the service. éžæŠžă—ăŸé …ç›źă‚’1぀䞋に移拕する。 - + Move to &bottom 侀ç•Ș䞋に移拕(&b) - + Move item to the end of the service. éžæŠžă—ăŸé …ç›źă‚’æœ€ă‚‚äž‹ă«ç§»ć‹•ă™ă‚‹ă€‚ - + &Delete From Service 扊陀(&D) - + Delete the selected item from the service. éžæŠžă—ăŸé …ç›źă‚’ç€Œæ‹ăƒ—ăƒ­ă‚°ăƒ©ăƒ ă‹ă‚‰ć‰Šé™€ă™ă‚‹ă€‚ - + &Add New Item æ–°ă—ă„é …ç›źă‚’èżœćŠ (&A) - + &Add to Selected Item éžæŠžă•ă‚ŒăŸé …ç›źă‚’èżœćŠ (&A) - + &Edit Item 項盟た線集(&E) - + &Reorder Item 項盼を侩ăčæ›żăˆ(&R) - + &Notes ュヹ(&N) - + &Change Item Theme é …ç›źăźć€–èŠłăƒ†ăƒŒăƒžă‚’ć€‰æ›Ž(&C) - + File is not a valid service. The content encoding is not UTF-8. ç€Œæ‹ăƒ—ăƒ­ă‚°ăƒ©ăƒ ăƒ•ă‚Ąă‚€ăƒ«ăŒæœ‰ćŠčă§ă‚ă‚ŠăŸă›ă‚“ă€‚ ă‚šăƒłă‚łăƒŒăƒ‰ăŒ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 ćż…èŠăȘăƒ—ăƒ©ă‚°ă‚€ăƒłăŒèŠ‹ă€ă‹ă‚‰ăȘいか無ćŠčăȘăŸă‚ă€é …ç›źă‚’èĄšç€șするäș‹ăŒă§ăăŸă›ă‚“ - + &Expand all すăčお汕開(&E) - + Expand all the service items. 慚おた項盟を汕開する。 - + &Collapse all すăčăŠæŠ˜ă‚Šç•łă‚€(&C) - + Collapse all the service items. ć…šăŠăźé …ç›źă‚’æŠ˜ă‚Šç•łăżăŸă™ă€‚ - + Open File ăƒ•ă‚Ąă‚€ăƒ«ă‚’é–‹ă - + OpenLP Service Files (*.osz) OpenLP ç€Œæ‹ăƒ—ăƒ­ă‚°ăƒ©ăƒ ăƒ•ă‚Ąă‚€ăƒ« (*.osz) - + Moves the selection down the window. éžæŠžă‚’ă‚Šă‚Łăƒłăƒ‰ă‚Šăźäž‹ă«ç§»ć‹•ă™ă‚‹ă€‚ - + Move up 䞊に移拕 - + Moves the selection up the window. éžæŠžă‚’ă‚Šă‚Łăƒłăƒ‰ă‚ŠăźäžŠă«ç§»ć‹•ă™ă‚‹ă€‚ - + Go Live ăƒ©ă‚€ăƒ–ăžé€ă‚‹ - + Send the selected item to Live. éžæŠžă•ă‚ŒăŸé …ç›źă‚’ăƒ©ă‚€ăƒ–èĄšç€șする。 - + Modified Service ç€Œæ‹ăƒ—ăƒ­ă‚°ăƒ©ăƒ ăźç·šé›† - + &Start Time é–‹ć§‹æ™‚é–“(&S) - + Show &Preview ăƒ—ăƒŹăƒ“ăƒ„ăƒŒèĄšç€ș(&P) - + Show &Live ăƒ©ă‚€ăƒ–èĄšç€ș(&L) - + The current service has been modified. Would you like to save this service? çŸćœšăźç€Œæ‹ăƒ—ăƒ­ă‚°ăƒ©ăƒ ăŻă€ç·šé›†ă•ă‚ŒăŠă„ăŸă™ă€‚äżć­˜ă—ăŸă™ă‹? - + File could not be opened because it is corrupt. ăƒ•ă‚Ąă‚€ăƒ«ăŒç Žæă—ăŠă„ă‚‹ăŸă‚é–‹ă‘ăŸă›ă‚“ă€‚ - + Empty File ç©șăźăƒ•ă‚Ąă‚€ăƒ« - + This service file does not contain any data. ă“ăźç€Œæ‹ăƒ—ăƒ­ă‚°ăƒ©ăƒ ăƒ•ă‚Ąă‚€ăƒ«ăŻç©șです。 - + Corrupt File ç Žæă—ăŸăƒ•ă‚Ąă‚€ăƒ« @@ -3266,42 +3266,42 @@ The content encoding is not UTF-8. ć†ç”Ÿæ™‚é–“: - + Untitled Service 無題 - + Load an existing service. æ—ąć­˜ăźç€Œæ‹ăƒ—ăƒ­ă‚°ăƒ©ăƒ ă‚’èȘ­ăżèŸŒăżăŸă™ă€‚ - + Save this service. ç€Œæ‹ăƒ—ăƒ­ă‚°ăƒ©ăƒ ă‚’äżć­˜ă—ăŸă™ă€‚ - + Select a theme for the service. ç€Œæ‹ăƒ—ăƒ­ă‚°ăƒ©ăƒ ăźć€–èŠłăƒ†ăƒŒăƒžă‚’éžæŠžă—ăŸă™ă€‚ - + This file is either corrupt or it is not an OpenLP 2.0 service file. ă“ăźăƒ•ă‚Ąă‚€ăƒ«ăŻç Žæă—ăŠă„ă‚‹ă‹OpenLP 2.0ăźç€Œæ‹ăƒ—ăƒ­ă‚°ăƒ©ăƒ ăƒ•ă‚Ąă‚€ăƒ«ă§ăŻă‚ă‚ŠăŸă›ă‚“ă€‚ - + Slide theme ă‚čăƒ©ă‚€ăƒ‰ć€–èŠłăƒ†ăƒŒăƒž - + Notes ュヹ - + Service File Missing ç€Œæ‹ăƒ—ăƒ­ă‚°ăƒ©ăƒ ăƒ•ă‚Ąă‚€ăƒ«ăŒèŠ‹ă€ă‹ă‚ŠăŸă›ă‚“ @@ -3428,17 +3428,17 @@ The content encoding is not UTF-8. æŹĄă‚čăƒ©ă‚€ăƒ‰ - + Previous Service ć‰ăźç€Œæ‹ăƒ—ăƒ­ă‚°ăƒ©ăƒ  - + Next Service æŹĄăźç€Œæ‹ăƒ—ăƒ­ă‚°ăƒ©ăƒ  - + Escape Item 項盼をスă‚čă‚±ăƒŒăƒ— @@ -3558,36 +3558,51 @@ The content encoding is not UTF-8. Start time is after the finish time of the media item é–‹ć§‹æ™‚é–“ăŒăƒĄăƒ‡ă‚Łă‚ąé …ç›źăźç”‚äș†æ™‚é–“ă‚ˆă‚ŠćŸŒă«èš­ćźšă•ă‚ŒăŠă„ăŸă™ + + + Theme Layout + + + + + The blue box shows the main area. + + + + + The red box shows the footer. + + OpenLP.ThemeForm - + Select Image ç”»ćƒăźéžæŠž - + Theme Name Missing ć€–èŠłăƒ†ăƒŒăƒžćăŒäžæ˜Žă§ă™ - + There is no name for this theme. Please enter one. ć€–èŠłăƒ†ăƒŒăƒžćăŒă‚ă‚ŠăŸă›ă‚“ă€‚ć…„ćŠ›ă—ăŠăă ă•ă„ă€‚ - + Theme Name Invalid 無ćŠčăȘć€–èŠłăƒ†ăƒŒăƒžć - + Invalid theme name. Please enter one. 無ćŠčăȘć€–èŠłăƒ†ăƒŒăƒžćă§ă™ă€‚ć…„ćŠ›ă—ăŠăă ă•ă„ă€‚ - + (approximately %d lines per slide) (ă‚čăƒ©ă‚€ăƒ‰1æžšă«ăŠă‚ˆă%dèĄŒ) @@ -3665,12 +3680,12 @@ The content encoding is not UTF-8. ç·šé›†ă™ă‚‹ć€–èŠłăƒ†ăƒŒăƒžă‚’éžæŠžă—ăŠăă ă•ă„ă€‚ - + You are unable to delete the default theme. æ—ąćźšăźć€–èŠłăƒ†ăƒŒăƒžă‚’ć‰Šé™€ă™ă‚‹äș‹ăŻă§ăăŸă›ă‚“。 - + Theme %s is used in the %s plugin. %s ăƒ—ăƒ©ă‚°ă‚€ăƒłă§ă“ăźć€–èŠłăƒ†ăƒŒăƒžăŻćˆ©ç”šă•ă‚ŒăŠă„ăŸă™ă€‚ @@ -3710,13 +3725,13 @@ The content encoding is not UTF-8. ă‚€ăƒłăƒăƒŒăƒˆćŻŸè±Ąăźć€–èŠłăƒ†ăƒŒăƒžăƒ•ă‚Ąă‚€ăƒ«éžæŠž - + File is not a valid theme. The content encoding is not UTF-8. ăƒ•ă‚Ąă‚€ăƒ«ăŻç„ĄćŠčăȘć€–èŠłăƒ†ăƒŒăƒžă§ă™ă€‚æ–‡ć­—ă‚łăƒŒăƒ‰ăŒUTF-8ă§ăŻă‚ă‚ŠăŸă›ă‚“ă€‚ - + File is not a valid theme. 無ćŠčăȘć€–èŠłăƒ†ăƒŒăƒžăƒ•ă‚Ąă‚€ăƒ«ă§ă™ă€‚ @@ -3766,12 +3781,12 @@ The content encoding is not UTF-8. %s ć€–èŠłăƒ†ăƒŒăƒžă‚’ć‰Šé™€ă—ăŸă™ă€‚ćźœă—ă„ă§ă™ă‹? - + Validation Error æ€œèšŒă‚šăƒ©ăƒŒ - + A theme with this name already exists. ćŒćăźć€–èŠłăƒ†ăƒŒăƒžăŒæ—ąă«ć­˜ćœšă—ăŸă™ă€‚ @@ -3790,260 +3805,270 @@ The content encoding is not UTF-8. OpenLP.ThemeWizard - + Theme Wizard ć€–èŠłăƒ†ăƒŒăƒžă‚Šă‚Łă‚¶ăƒŒăƒ‰ - + Welcome to the Theme Wizard ć€–èŠłăƒ†ăƒŒăƒžă‚Šă‚Łă‚¶ăƒŒăƒ‰ă‚’ă‚ˆă†ă“ă - + Set Up Background èƒŒæ™Żèš­ćźš - + Set up your theme's background according to the parameters below. ä»„äž‹ăźé …ç›źă«ćżœă˜ăŠă€ć€–èŠłăƒ†ăƒŒăƒžă«äœżç”šă™ă‚‹èƒŒæ™Żă‚’èš­ćźšă—ăŠăă ă•ă„ă€‚ - + Background type: èƒŒæ™ŻăźçšźéĄž: - + Solid Color 捘è‰Č - + Gradient ă‚°ăƒ©ăƒ‡ăƒŒă‚·ăƒ§ăƒł - + Color: è‰Č: - + Gradient: ă‚°ăƒ©ăƒ‡ăƒŒă‚·ăƒ§ăƒł: - + Horizontal æšȘ - + Vertical 瞊 - + Circular æ”Ÿć°„çŠ¶ - + Top Left - Bottom Right 淊䞊 - 揳例 - + Bottom Left - Top Right ć·Šäž‹ - 揳侊 - + Main Area Font Details äž­ć€źèĄšç€șスăƒȘă‚ąăźăƒ•ă‚©ăƒłăƒˆè©łçŽ° - + Define the font and display characteristics for the Display text 䞭怟゚ăƒȘă‚ąăźèĄšç€șăźăŸă‚ăźæ–‡ć­—èš­ćźšăšăƒ•ă‚©ăƒłăƒˆă‚’ćźšçŸ©ă—ăŠăă ă•ă„ - + Font: ăƒ•ă‚©ăƒłăƒˆ: - + Size: æ–‡ć­—ă‚”ă‚€ă‚ș: - + Line Spacing: æ–‡ć­—é–“: - + &Outline: ă‚ąă‚Šăƒˆăƒ©ă‚€ăƒł(&O): - + &Shadow: ćœ±(&S): - + Bold ć€Ș歗 - + Italic 斜䜓 - + Footer Area Font Details ăƒ•ăƒƒă‚żăƒŒăƒ•ă‚©ăƒłăƒˆè©łçŽ° - + Define the font and display characteristics for the Footer text ăƒ•ăƒƒă‚żăƒŒèĄšç€șăźăŸă‚ăźæ–‡ć­—èš­ćźšăšăƒ•ă‚©ăƒłăƒˆă‚’ćźšçŸ©ă—ăŠăă ă•ă„ - + Text Formatting Details テキă‚čăƒˆăƒ•ă‚©ăƒŒăƒžăƒƒăƒˆè©łçŽ° - + Allows additional display formatting information to be defined èżœćŠ ăźèĄšç€șăƒ•ă‚©ăƒŒăƒžăƒƒăƒˆæƒ…ć ±ăŒćźšçŸ©ă•ă‚Œă‚‹äș‹ă‚’èš±ćŻă™ă‚‹ - + Horizontal Align: æ°Žćčłäœçœź: - + Left ć·Šæƒăˆ - + Right ćłæƒăˆ - + Center äž­ć€źæƒăˆ - + Output Area Locations ć‡ș抛スăƒȘă‚ąăźć Žæ‰€ - + Allows you to change and move the main and footer areas. 䞭怟゚ăƒȘă‚ąăšăƒ•ăƒƒă‚żăƒŒă‚šăƒȘă‚ąăźć Žæ‰€ăŒć€‰æ›Žă•ă‚Œă‚‹äș‹ă‚’èš±ćŻă™ă‚‹ă€‚ - + &Main Area 䞭怟゚ăƒȘケ(&M) - + &Use default location æ—ąćźšăźć Žæ‰€ă‚’äœżă†(&U) - + X position: Xäœçœź: - + px px - + Y position: Yäœçœź: - + Width: ćč…: - + Height: 高: - + Use default location æ—ąćźšăźć Žæ‰€ă‚’äœżă† - + Save and Preview äżć­˜ăšăƒ—ăƒŹăƒ“ăƒ„ăƒŒ - + View the theme and save it replacing the current one or change the name to create a new theme ć€–èŠłăƒ†ăƒŒăƒžă‚’èĄšç€șă—ă€çŸćœšăźć€–èŠłăƒ†ăƒŒăƒžă‚’çœźăæ›ăˆă‚‹ă‹ćć‰ă‚’ć€‰æ›Žă—ăŠæ–°ă—ă„ć€–èŠłăƒ†ăƒŒăƒžă‚’äœœæˆă—ă€äżć­˜ă™ă‚‹ - + Theme name: ć€–èŠłăƒ†ăƒŒăƒžć: - + This wizard will help you to create and edit your themes. Click the next button below to start the process by setting up your background. ă“ăźă‚Šă‚Łă‚¶ăƒŒăƒ‰ă§ă€ć€–èŠłăƒ†ăƒŒăƒžă‚’äœœæˆă—ç·šé›†ă—ăŸă™ă€‚æŹĄăžă‚’ă‚ŻăƒȘăƒƒă‚Żă—ăŠă€èƒŒæ™Żă‚’éžæŠžă—ăŠăă ă•ă„ă€‚ - + Transitions: ćˆ‡ă‚Šæ›żăˆ: - + &Footer Area ăƒ•ăƒƒă‚żăƒŒ(&F) - + Edit Theme - %s ć€–èŠłăƒ†ăƒŒăƒžç·šé›† - %s - + Starting color: è‰Č1: - + Ending color: è‰Č2: - + Background color: èƒŒæ™Żè‰Č: + + + Justify + + + + + Layout Preview + + OpenLP.ThemesTab @@ -4688,52 +4713,52 @@ The content encoding is not UTF-8. PresentationPlugin.MediaItem - + Select Presentation(s) ăƒ—ăƒŹă‚Œăƒłăƒ†ăƒŒă‚·ăƒ§ăƒłéžæŠž - + Automatic è‡Ș拕 - + Present using: äœżç”šăƒ—ăƒŹă‚Œăƒł: - + File Exists ăƒ•ă‚Ąă‚€ăƒ«ăŒć­˜ćœšă—ăŸă™ - + A presentation with that filename already exists. ăăźăƒ•ă‚Ąă‚€ăƒ«ćăźăƒ—ăƒŹă‚Œăƒłăƒ†ăƒŒă‚·ăƒ§ăƒłăŻæ—ąă«ć­˜ćœšă—ăŸă™ă€‚ - + This type of presentation is not supported. ă“ăźă‚żă‚€ăƒ—ăźăƒ—ăƒŹă‚Œăƒłăƒ†ăƒŒă‚·ăƒ§ăƒłăŻă‚”ăƒăƒŒăƒˆă•ă‚ŒăŠăŠă‚ŠăŸă›ă‚“ă€‚ - + Presentations (%s) ăƒ—ăƒŹă‚Œăƒłăƒ†ăƒŒă‚·ăƒ§ăƒł (%s) - + Missing Presentation 䞍明ăȘăƒ—ăƒŹă‚Œăƒłăƒ†ăƒŒă‚·ăƒ§ăƒł - + The Presentation %s no longer exists. ăƒ—ăƒŹă‚Œăƒłăƒ†ăƒŒă‚·ăƒ§ăƒł%săŒèŠ‹ă€ă‹ă‚ŠăŸă›ă‚“ă€‚ - + The Presentation %s is incomplete, please reload. ăƒ—ăƒŹă‚Œăƒłăƒ†ăƒŒă‚·ăƒ§ăƒł%sは侍漌慹です。憍ćșŠèȘ­ăżèŸŒă‚“ă§ăă ă•ă„ă€‚ @@ -4878,30 +4903,35 @@ The content encoding is not UTF-8. RemotePlugin.RemoteTab - + Serve on IP address: ćŸ…ăĄć—ă‘ă‚‹IPケドレă‚č: - + Port number: ăƒăƒŒăƒˆç•Șć·: - + Server Settings ă‚”ăƒŒăƒèš­ćźš - + Remote URL: 遠隔操䜜URL: - + Stage view URL: ă‚čăƒ†ăƒŒă‚žăƒ“ăƒ„ăƒŒURL: + + + Display stage time in 12h format + + SongUsagePlugin @@ -4992,7 +5022,7 @@ The content encoding is not UTF-8. SongUsagePlugin.SongUsageDeleteForm - + Delete Song Usage Data ćˆ©ç”šèš˜éŒČ扊陀 @@ -5017,7 +5047,7 @@ The content encoding is not UTF-8. æ­Łćžžă«ć‰Šé™€ă•ă‚ŒăŸă—ăŸă€‚ - + Select the date up to which the song usage data should be deleted. All data recorded before this date will be permanently deleted. @@ -5632,7 +5662,7 @@ The encoding is responsible for the correct character representation. SongsPlugin.ImportWizardForm - + Select Document/Presentation Files ăƒ‰ă‚­ăƒ„ăƒĄăƒłăƒˆ/ăƒ—ăƒŹă‚Œăƒłăƒ†ăƒŒă‚·ăƒ§ăƒłăƒ•ă‚Ąă‚€ăƒ«éžæŠž @@ -5647,95 +5677,105 @@ The encoding is responsible for the correct character representation. ă“ăźă‚Šă‚Łă‚¶ăƒŒăƒ‰ă§ă€æ§˜ă€…ăȘćœąćŒăźèł›çŸŽă‚’ă‚€ăƒłăƒăƒŒăƒˆă—ăŸă™ă€‚æŹĄăžă‚’ă‚ŻăƒȘăƒƒă‚Żă—ă€ă‚€ăƒłăƒăƒŒăƒˆă™ă‚‹ăƒ•ă‚Ąă‚€ăƒ«ăźćœąćŒă‚’éžæŠžă—ăŠăă ă•ă„ă€‚ - + Generic Document/Presentation æ±Žç”šăƒ‰ă‚­ăƒ„ăƒĄăƒłăƒˆ/ăƒ—ăƒŹă‚Œăƒłăƒ†ăƒŒă‚·ăƒ§ăƒł - + Filename: ăƒ•ă‚Ąă‚€ăƒ«ć: - + 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. OpenLyricsăźă‚€ăƒłăƒăƒŒăƒˆăŻæœȘ開ç™șă§ă™ă€‚æŹĄăźăƒăƒŒă‚žăƒ§ăƒłă«ă”æœŸćŸ…ăă ă•ă„ă€‚ - + Add Files... ăƒ•ă‚Ąă‚€ăƒ«ăźèżœćŠ ... - + Remove File(s) ăƒ•ă‚Ąă‚€ăƒ«ăźć‰Šé™€ - + Please wait while your songs are imported. èł›çŸŽăŒă‚€ăƒłăƒăƒŒăƒˆă•ă‚Œă‚‹ăŸă§ă—ă°ă‚‰ăăŠćŸ…ăĄăă ă•ă„ă€‚ - + OpenLP 2.0 Databases OpenLP 2.0 ăƒ‡ăƒŒă‚żăƒ™ăƒŒă‚č - + openlp.org v1.x Databases openlp.org v1.x ăƒ‡ăƒŒă‚żăƒ™ăƒŒă‚č - + Words Of Worship Song Files Words Of Worship Song ăƒ•ă‚Ąă‚€ăƒ« - + You need to specify at least one document or presentation file to import from. ă‚€ăƒłăƒăƒŒăƒˆćŻŸè±ĄăšăȘă‚‹æœ€äœŽäž€ă€ăźăƒ‰ă‚­ăƒ„ăƒĄăƒłăƒˆćˆăŻăƒ—ăƒŹă‚Œăƒłăƒ†ăƒŒă‚·ăƒ§ăƒłăƒ•ă‚Ąă‚€ăƒ«ă‚’éžæŠžă™ă‚‹ćż…èŠăŒă‚ă‚ŠăŸă™ă€‚ - + Songs Of Fellowship Song Files Songs Of Fellowship Song ăƒ•ă‚Ąă‚€ăƒ« - + SongBeamer Files SongBeamerăƒ•ă‚Ąă‚€ăƒ« - + SongShow Plus Song Files SongShow Plus Songăƒ•ă‚Ąă‚€ăƒ« - + Foilpresenter Song Files Foilpresenter Song ăƒ•ă‚Ąă‚€ăƒ« - + Copy ă‚łăƒ”ăƒŒ - + Save to File ăƒ•ă‚Ąă‚€ăƒ«ă«äżć­˜ - + The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. OpenOfficeăŸăŸăŻLibreOfficeă«æŽ„ç¶šă§ăăȘいため、Songs of Fellowshipăźă‚€ăƒłăƒăƒŒăƒˆæ©ŸèƒœăŻç„ĄćŠčにăȘăŁăŠă„ăŸă™ă€‚ - + The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. OpenOfficeăŸăŸăŻLibreOfficeă«æŽ„ç¶šă§ăăȘă„ăŸă‚ă€æ±Žç”šăƒ‰ă‚­ăƒ„ăƒĄăƒłăƒˆ/ăƒ—ăƒŹă‚Œăƒłăƒ†ăƒŒă‚·ăƒ§ăƒłăźă‚€ăƒłăƒăƒŒăƒˆæ©ŸèƒœăŻç„ĄćŠčにăȘăŁăŠă„ăŸă™ă€‚ + + + OpenLyrics or OpenLP 2.0 Exported Song + + + + + OpenLyrics Files + + SongsPlugin.MediaFilesForm @@ -5763,7 +5803,7 @@ The encoding is responsible for the correct character representation. èł›çŸŽè©ž - + CCLI License: CCLI ăƒ©ă‚€ă‚»ăƒłă‚č: @@ -5785,7 +5825,7 @@ The encoding is responsible for the correct character representation. ă‚ąăƒŒăƒ†ă‚Łă‚čăƒˆă€ăƒˆăƒ”ăƒƒă‚Żăšă‚ąăƒ«ăƒăƒ ăźäž€èŠ§ă‚’äżćźˆă—ăŸă™ă€‚ - + copy For song cloning ă‚łăƒ”ăƒŒ @@ -5810,7 +5850,7 @@ The encoding is responsible for the correct character representation. SongsPlugin.OpenLyricsExport - + Exporting "%s"... 「%s」をスキă‚čăƒăƒŒăƒˆă—ăŠă„ăŸă™... @@ -5882,7 +5922,7 @@ The encoding is responsible for the correct character representation. SongsPlugin.SongImportForm - + Your song import failed. èł›çŸŽăźă‚€ăƒłăƒăƒŒăƒˆă«ć€±æ•—ă—ăŸă—ăŸă€‚ diff --git a/resources/i18n/ko.ts b/resources/i18n/ko.ts index d7abbeb40..93809e0ba 100644 --- a/resources/i18n/ko.ts +++ b/resources/i18n/ko.ts @@ -16,7 +16,7 @@ Alert name singular - + 알늌 @@ -402,38 +402,38 @@ Changes do not affect verses already in the service. BiblesPlugin.HTTPBible - + Registering Bible and loading books... - + Registering Language... - + Importing %s... Importing <book name>... - + Download Error - + There was a problem downloading your verse selection. Please check your Internet connection, and if this error continues to occur please consider reporting a bug. - + Parse Error - + There was a problem extracting your verse selection. If this error continues to occur please consider reporting a bug. @@ -536,27 +536,27 @@ Changes do not affect verses already in the service. - + You need to specify a version name for your Bible. - + Bible Exists - + 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. @@ -566,7 +566,7 @@ Changes do not affect verses already in the service. - + CSV File @@ -591,17 +591,17 @@ Changes do not affect verses already in the service. - + openlp.org 1.x Bible Files - + Registering Bible... - + Registered Bible. Please note, that verses will be downloaded on demand and thus an internet connection is required. @@ -1094,7 +1094,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I ImagePlugin.ExceptionDialog - + Select Attachment @@ -1146,17 +1146,17 @@ Do you want to add the other images anyway? ImagesPlugin.ImageTab - + Background Color - + Default Color: - + Provides border where image is not the correct dimensions for the screen when resized. @@ -1230,7 +1230,7 @@ Do you want to add the other images anyway? - + You must select a media file to delete. @@ -1545,7 +1545,7 @@ Portions copyright © 2004-2011 %s - + Description characters to enter : %s @@ -1553,23 +1553,23 @@ Portions copyright © 2004-2011 %s OpenLP.ExceptionForm - + Platform: %s - + Save Crash Report - + Text files (*.txt *.log *.text) - + **OpenLP Bug Report** Version: %s @@ -1587,7 +1587,7 @@ Version: %s - + *OpenLP Bug Report* Version: %s @@ -2670,7 +2670,7 @@ Database: %s OpenLP.MediaManagerItem - + No Items Selected @@ -2680,42 +2680,42 @@ Database: %s - + 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. - + You must select an existing service item to add to. - + Invalid Service Item - + You must select a %s service item. - + You must select one or more items to add. - + No Search Results @@ -2891,12 +2891,12 @@ Suffix not supported OpenLP.ServiceItem - + <strong>Start</strong>: %s - + <strong>Length</strong>: %s @@ -2912,208 +2912,208 @@ Suffix not supported OpenLP.ServiceManager - + Move to &top - + Move item to the top of the service. - + Move &up - + Move item up one position in the service. - + Move &down - + Move item down one position in the service. - + Move to &bottom - + Move item to the end of the service. - + &Delete From Service - + Delete the selected item from the service. - + &Add New Item - + &Add to Selected Item - + &Edit Item - + &Reorder Item - + &Notes - + &Change Item Theme - + 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 - + &Expand all - + Expand all the service items. - + &Collapse all - + Collapse all the service items. - + Open File - + OpenLP Service Files (*.osz) - + Moves the selection down the window. - + Move up - + Moves the selection up the window. - + Go Live - + Send the selected item to Live. - + Modified Service - + &Start Time - + Show &Preview - + Show &Live - + The current service has been modified. Would you like to save this service? - + File could not be opened because it is corrupt. - + Empty File - + This service file does not contain any data. - + Corrupt File @@ -3133,42 +3133,42 @@ The content encoding is not UTF-8. - + Untitled Service - + Load an existing service. - + Save this service. - + Select a theme for the service. - + This file is either corrupt or it is not an OpenLP 2.0 service file. - + Slide theme - + Notes - + Service File Missing @@ -3295,17 +3295,17 @@ The content encoding is not UTF-8. - + Previous Service - + Next Service - + Escape Item @@ -3425,36 +3425,51 @@ The content encoding is not UTF-8. Start time is after the finish time of the media item + + + Theme Layout + + + + + The blue box shows the main area. + + + + + The red box shows the footer. + + OpenLP.ThemeForm - + Select Image - + Theme Name Missing - + There is no name for this theme. Please enter one. - + Theme Name Invalid - + Invalid theme name. Please enter one. - + (approximately %d lines per slide) @@ -3532,7 +3547,7 @@ The content encoding is not UTF-8. - + You are unable to delete the default theme. @@ -3572,18 +3587,18 @@ The content encoding is not UTF-8. - + File is not a valid theme. The content encoding is not UTF-8. - + File is not a valid theme. - + Theme %s is used in the %s plugin. @@ -3633,12 +3648,12 @@ The content encoding is not UTF-8. - + Validation Error - + A theme with this name already exists. @@ -3657,260 +3672,270 @@ The content encoding is not UTF-8. OpenLP.ThemeWizard - + Theme Wizard - + Welcome to the Theme Wizard - + Set Up Background - + Set up your theme's background according to the parameters below. - + Background type: - + Solid Color - + Gradient - + Color: - + Gradient: - + Horizontal - + Vertical - + Circular - + Top Left - Bottom Right - + Bottom Left - Top Right - + Main Area Font Details - + Define the font and display characteristics for the Display text - + Font: - + Size: - + Line Spacing: - + &Outline: - + &Shadow: - + Bold - + Italic - + Footer Area Font Details - + Define the font and display characteristics for the Footer text - + Text Formatting Details - + Allows additional display formatting information to be defined - + Horizontal Align: - + Left - + Right - + Center - + Output Area Locations - + Allows you to change and move the main and footer areas. - + &Main Area - + &Use default location - + X position: - + px - + Y position: - + Width: - + Height: - + Use default location - + Save and Preview - + View the theme and save it replacing the current one or change the name to create a new theme - + Theme name: - + This wizard will help you to create and edit your themes. Click the next button below to start the process by setting up your background. - + Transitions: - + &Footer Area - + Edit Theme - %s - + Starting color: - + Ending color: - + Background color: ë°°êČœìƒ‰: + + + Justify + + + + + Layout Preview + + OpenLP.ThemesTab @@ -4555,52 +4580,52 @@ The content encoding is not UTF-8. PresentationPlugin.MediaItem - + Select Presentation(s) - + Automatic - + Present using: - + File Exists - + A presentation with that filename already exists. - + This type of presentation is not supported. - + Presentations (%s) - + Missing Presentation - + The Presentation %s no longer exists. - + The Presentation %s is incomplete, please reload. @@ -4745,30 +4770,35 @@ The content encoding is not UTF-8. RemotePlugin.RemoteTab - + Serve on IP address: - + Port number: - + Server Settings - + Remote URL: - + Stage view URL: + + + Display stage time in 12h format + + SongUsagePlugin @@ -4859,7 +4889,7 @@ The content encoding is not UTF-8. SongUsagePlugin.SongUsageDeleteForm - + Delete Song Usage Data @@ -4884,7 +4914,7 @@ The content encoding is not UTF-8. - + Select the date up to which the song usage data should be deleted. All data recorded before this date will be permanently deleted. @@ -5496,7 +5526,7 @@ The encoding is responsible for the correct character representation. SongsPlugin.ImportWizardForm - + Select Document/Presentation Files @@ -5511,95 +5541,105 @@ The encoding is responsible for the correct character representation. - + Generic Document/Presentation - + Filename: - + Add Files... - + Remove File(s) - + Please wait while your songs are imported. - + 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. - + OpenLP 2.0 Databases - + openlp.org v1.x Databases - + Words Of Worship Song Files - + Songs Of Fellowship Song Files - + SongBeamer Files - + SongShow Plus Song Files - + You need to specify at least one document or presentation file to import from. - + Foilpresenter Song Files - + Copy - + Save to File - + The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. - + The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. + + + OpenLyrics or OpenLP 2.0 Exported Song + + + + + OpenLyrics Files + + SongsPlugin.MediaFilesForm @@ -5627,7 +5667,7 @@ The encoding is responsible for the correct character representation. - + CCLI License: @@ -5649,7 +5689,7 @@ The encoding is responsible for the correct character representation. - + copy For song cloning @@ -5674,7 +5714,7 @@ The encoding is responsible for the correct character representation. SongsPlugin.OpenLyricsExport - + Exporting "%s"... @@ -5746,7 +5786,7 @@ The encoding is responsible for the correct character representation. SongsPlugin.SongImportForm - + Your song import failed. diff --git a/resources/i18n/nb.ts b/resources/i18n/nb.ts index 7a4194aaa..ca9ffa832 100644 --- a/resources/i18n/nb.ts +++ b/resources/i18n/nb.ts @@ -412,38 +412,38 @@ Endringer pĂ„virker ikke vers som alt er lagt til mĂžtet. BiblesPlugin.HTTPBible - + Registering Bible and loading books... - + Registering Language... - + Importing %s... Importing <book name>... - + Download Error Nedlastningsfeil - + There was a problem downloading your verse selection. Please check your Internet connection, and if this error continues to occur please consider reporting a bug. Det oppstod et problem ved nedlastingen av de valgte versene. Vennligst sjekk internettilkoblingen, dersom denne feilen vedvarer, vĂŠr vennlig Ă„ rapportere feilen. - + Parse Error Analysefeil - + There was a problem extracting your verse selection. If this error continues to occur please consider reporting a bug. Det oppstod et problem ved uthenting av de valgte versene. Dersom denne feilen vedvarer, vĂŠr vennlig Ă„ rapportere feilen. @@ -546,27 +546,27 @@ Endringer pĂ„virker ikke vers som alt er lagt til mĂžtet. Du mĂ„ angi en fil med bibelvers som skal importeres. - + You need to specify a version name for your Bible. Du mĂ„ spesifisere et versjonsnavn for Bibelen din. - + Bible Exists Bibelen finnes - + 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. Du mĂ„ angi kopiretten for Bibelen. Offentlige bibler mĂ„ markeres deretter. - + This Bible already exists. Please import a different Bible or first delete the existing one. Denne bibelen finnes alt. Vennligst importer en annen bibel eller slett fĂžrst den eksisterende. @@ -576,7 +576,7 @@ Endringer pĂ„virker ikke vers som alt er lagt til mĂžtet. Tillatelser: - + CSV File CSV-fil @@ -601,17 +601,17 @@ Endringer pĂ„virker ikke vers som alt er lagt til mĂžtet. Versfil: - + openlp.org 1.x Bible Files OpenLP 1.x Bibelfiler - + Registering Bible... - + Registered Bible. Please note, that verses will be downloaded on demand and thus an internet connection is required. @@ -1105,7 +1105,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I ImagePlugin.ExceptionDialog - + Select Attachment Velg vedlegg @@ -1158,17 +1158,17 @@ Vil du likevel legge til de andre bildene? ImagesPlugin.ImageTab - + Background Color - + Default Color: - + Provides border where image is not the correct dimensions for the screen when resized. @@ -1242,7 +1242,7 @@ Vil du likevel legge til de andre bildene? Velg fil - + You must select a media file to delete. Du mĂ„ velge en fil Ă„ slette @@ -1617,7 +1617,7 @@ Portions copyright © 2004-2011 %s - + Description characters to enter : %s @@ -1625,23 +1625,23 @@ Portions copyright © 2004-2011 %s OpenLP.ExceptionForm - + Platform: %s - + Save Crash Report - + Text files (*.txt *.log *.text) - + **OpenLP Bug Report** Version: %s @@ -1659,7 +1659,7 @@ Version: %s - + *OpenLP Bug Report* Version: %s @@ -2742,7 +2742,7 @@ Database: %s OpenLP.MediaManagerItem - + No Items Selected @@ -2752,42 +2752,42 @@ Database: %s - + 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. - + You must select an existing service item to add to. - + Invalid Service Item - + You must select a %s service item. - + You must select one or more items to add. - + No Search Results @@ -2963,12 +2963,12 @@ Suffix not supported OpenLP.ServiceItem - + <strong>Start</strong>: %s - + <strong>Length</strong>: %s @@ -2984,208 +2984,208 @@ Suffix not supported OpenLP.ServiceManager - + Move to &top Flytt til &toppen - + Move item to the top of the service. - + Move &up - + Move item up one position in the service. - + Move &down - + Move item down one position in the service. - + Move to &bottom - + Move item to the end of the service. - + &Delete From Service - + Delete the selected item from the service. - + &Add New Item - + &Add to Selected Item - + &Edit Item - + &Reorder Item - + &Notes &Notis - + &Change Item Theme &Bytt objekttema - + 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 - + &Expand all - + Expand all the service items. - + &Collapse all - + Collapse all the service items. - + Open File - + OpenLP Service Files (*.osz) - + Moves the selection down the window. - + Move up - + Moves the selection up the window. - + Go Live - + Send the selected item to Live. - + Modified Service - + &Start Time - + Show &Preview - + Show &Live - + The current service has been modified. Would you like to save this service? - + File could not be opened because it is corrupt. - + Empty File - + This service file does not contain any data. - + Corrupt File @@ -3205,42 +3205,42 @@ The content encoding is not UTF-8. - + Untitled Service - + Load an existing service. - + Save this service. - + Select a theme for the service. - + This file is either corrupt or it is not an OpenLP 2.0 service file. - + Slide theme - + Notes - + Service File Missing @@ -3367,17 +3367,17 @@ The content encoding is not UTF-8. - + Previous Service - + Next Service - + Escape Item @@ -3497,36 +3497,51 @@ The content encoding is not UTF-8. Start time is after the finish time of the media item + + + Theme Layout + + + + + The blue box shows the main area. + + + + + The red box shows the footer. + + OpenLP.ThemeForm - + Select Image - + Theme Name Missing - + There is no name for this theme. Please enter one. - + Theme Name Invalid - + Invalid theme name. Please enter one. - + (approximately %d lines per slide) @@ -3604,7 +3619,7 @@ The content encoding is not UTF-8. - + You are unable to delete the default theme. Du kan ikke slette det globale temaet. @@ -3644,18 +3659,18 @@ The content encoding is not UTF-8. - + File is not a valid theme. The content encoding is not UTF-8. - + File is not a valid theme. Filen er ikke et gyldig tema. - + Theme %s is used in the %s plugin. @@ -3705,12 +3720,12 @@ The content encoding is not UTF-8. - + Validation Error - + A theme with this name already exists. @@ -3729,260 +3744,270 @@ The content encoding is not UTF-8. OpenLP.ThemeWizard - + Theme Wizard - + Welcome to the Theme Wizard - + Set Up Background - + Set up your theme's background according to the parameters below. - + Background type: - + Solid Color Ensfarget - + Gradient - + Color: - + Gradient: - + Horizontal - + Vertical Vertikal - + Circular - + Top Left - Bottom Right - + Bottom Left - Top Right - + Main Area Font Details - + Define the font and display characteristics for the Display text - + Font: - + Size: StĂžrrelse: - + Line Spacing: - + &Outline: - + &Shadow: - + Bold Fet - + Italic - + Footer Area Font Details - + Define the font and display characteristics for the Footer text - + Text Formatting Details - + Allows additional display formatting information to be defined - + Horizontal Align: - + Left - + Right - + Center Sentrert - + Output Area Locations - + Allows you to change and move the main and footer areas. - + &Main Area - + &Use default location - + X position: - + px - + Y position: - + Width: Bredde: - + Height: HĂžyde: - + Use default location - + Save and Preview - + View the theme and save it replacing the current one or change the name to create a new theme - + Theme name: - + This wizard will help you to create and edit your themes. Click the next button below to start the process by setting up your background. - + Transitions: - + &Footer Area - + Edit Theme - %s - + Starting color: - + Ending color: - + Background color: Bakgrunnsfarge: + + + Justify + + + + + Layout Preview + + OpenLP.ThemesTab @@ -4627,52 +4652,52 @@ The content encoding is not UTF-8. PresentationPlugin.MediaItem - + Select Presentation(s) Velg presentasjon(er) - + Automatic Automatisk - + Present using: Presenter ved hjelp av: - + File Exists - + A presentation with that filename already exists. - + This type of presentation is not supported. - + Presentations (%s) - + Missing Presentation - + The Presentation %s no longer exists. - + The Presentation %s is incomplete, please reload. @@ -4817,30 +4842,35 @@ The content encoding is not UTF-8. RemotePlugin.RemoteTab - + Serve on IP address: - + Port number: - + Server Settings - + Remote URL: - + Stage view URL: + + + Display stage time in 12h format + + SongUsagePlugin @@ -4931,7 +4961,7 @@ The content encoding is not UTF-8. SongUsagePlugin.SongUsageDeleteForm - + Delete Song Usage Data @@ -4956,7 +4986,7 @@ The content encoding is not UTF-8. - + Select the date up to which the song usage data should be deleted. All data recorded before this date will be permanently deleted. @@ -5568,7 +5598,7 @@ The encoding is responsible for the correct character representation. SongsPlugin.ImportWizardForm - + Select Document/Presentation Files @@ -5583,95 +5613,105 @@ The encoding is responsible for the correct character representation. - + Generic Document/Presentation - + Filename: - + Add Files... - + Remove File(s) - + Please wait while your songs are imported. - + 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. - + OpenLP 2.0 Databases - + openlp.org v1.x Databases - + Words Of Worship Song Files - + Songs Of Fellowship Song Files - + SongBeamer Files - + SongShow Plus Song Files - + You need to specify at least one document or presentation file to import from. - + Foilpresenter Song Files - + Copy - + Save to File - + The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. - + The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. + + + OpenLyrics or OpenLP 2.0 Exported Song + + + + + OpenLyrics Files + + SongsPlugin.MediaFilesForm @@ -5699,7 +5739,7 @@ The encoding is responsible for the correct character representation. - + CCLI License: @@ -5722,7 +5762,7 @@ The encoding is responsible for the correct character representation. - + copy For song cloning @@ -5747,7 +5787,7 @@ The encoding is responsible for the correct character representation. SongsPlugin.OpenLyricsExport - + Exporting "%s"... @@ -5819,7 +5859,7 @@ The encoding is responsible for the correct character representation. SongsPlugin.SongImportForm - + Your song import failed. diff --git a/resources/i18n/nl.ts b/resources/i18n/nl.ts index a265a8988..910ac8d38 100644 --- a/resources/i18n/nl.ts +++ b/resources/i18n/nl.ts @@ -412,38 +412,38 @@ Deze wijzigingen hebben geen betrekking op bijbelverzen die al in de liturgie zi BiblesPlugin.HTTPBible - + Registering Bible and loading books... Registreer Bijbel en laad de boeken... - + Registering Language... Registreer de taal... - + Importing %s... Importing <book name>... Importeer "%s"... - + Download Error Download fout - + There was a problem downloading your verse selection. Please check your Internet connection, and if this error continues to occur please consider reporting a bug. Er ging iets mis bij het downloaden van de bijbelverzen. Controleer uw internet verbinding (open bijv. een pagina in de internetbrowser). Als dit probleem zich blijft herhalen is er misschien sprake van een bug. - + Parse Error Verwerkingsfout - + There was a problem extracting your verse selection. If this error continues to occur please consider reporting a bug. Er ging iets mis bij het uitpakken van de bijbelverzen. Als dit probleem zich blijft herhalen is er misschien sprake van een bug. @@ -541,17 +541,17 @@ Deze wijzigingen hebben geen betrekking op bijbelverzen die al in de liturgie zi Er moet een bestand met bijbelverzen opgegeven worden. - + You need to specify a version name for your Bible. Geef de naam van de bijbelvertaling op. - + Bible Exists Deze bijbelvertaling bestaat reeds - + Your Bible import failed. Het importeren is mislukt. @@ -561,12 +561,12 @@ Deze wijzigingen hebben geen betrekking op bijbelverzen die al in de liturgie zi Bijbeluitgave: - + You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. Copyright moet opgegeven worden. Bijbels in het publieke domein moeten als zodanig gemarkeerd worden. - + This Bible already exists. Please import a different Bible or first delete the existing one. Deze bijbel bestaat reeds. Geef een andere naam of verwijder eerst het bestaande exemplaar. @@ -576,7 +576,7 @@ Deze wijzigingen hebben geen betrekking op bijbelverzen die al in de liturgie zi Rechten: - + CSV File CSV bestand @@ -601,17 +601,17 @@ Deze wijzigingen hebben geen betrekking op bijbelverzen die al in de liturgie zi Bijbelverzen bestand: - + openlp.org 1.x Bible Files openlp.org 1.x bijbel bestanden - + Registering Bible... Registreer Bijbel... - + Registered Bible. Please note, that verses will be downloaded on demand and thus an internet connection is required. Bijbel geregistreerd. Let op, de bijbelverzen worden gedownload @@ -1112,7 +1112,7 @@ Let op, de bijbelverzen worden gedownload indien nodig en een internetverbinding ImagePlugin.ExceptionDialog - + Select Attachment Selecteer bijlage @@ -1165,17 +1165,17 @@ De andere afbeeldingen alsnog toevoegen? ImagesPlugin.ImageTab - + Background Color - + Default Color: - + Provides border where image is not the correct dimensions for the screen when resized. @@ -1249,7 +1249,7 @@ De andere afbeeldingen alsnog toevoegen? Secteer media bestand - + You must select a media file to delete. Selecteer een media bestand om te verwijderen. @@ -1637,7 +1637,7 @@ Stuur een e-mail naar: bugs@openlp.org met een gedetailleerde beschrijving van h Voeg bestand toe - + Description characters to enter : %s Toelichting aanvullen met nog %s tekens @@ -1645,24 +1645,24 @@ Stuur een e-mail naar: bugs@openlp.org met een gedetailleerde beschrijving van h OpenLP.ExceptionForm - + Platform: %s Plattform: %s - + Save Crash Report Bewaar Bug Report - + Text files (*.txt *.log *.text) Tekstbestand (*.txt *.log *.text) - + **OpenLP Bug Report** Version: %s @@ -1693,7 +1693,7 @@ Version: %s - + *OpenLP Bug Report* Version: %s @@ -2791,7 +2791,7 @@ Database: %s OpenLP.MediaManagerItem - + No Items Selected Niets geselecteerd @@ -2801,42 +2801,42 @@ Database: %s &Voeg selectie toe aan de liturgie - + You must select one or more items to preview. Selecteer een of meerdere onderdelen om voorbeeld te laten zien. - + You must select one or more items to send live. Selecteer een of meerdere onderdelen om Live te tonen. - + You must select one or more items. Selecteer een of meerdere onderdelen. - + You must select an existing service item to add to. Selecteer een liturgie om deze onderdelen aan toe te voegen. - + Invalid Service Item Ongeldige Liturgie onderdeel - + You must select a %s service item. Selecteer een %s liturgie onderdeel. - + You must select one or more items to add. Selecteer een of meerdere onderdelen om toe te voegen. - + No Search Results Niets gevonden @@ -3012,12 +3012,12 @@ Suffix not supported OpenLP.ServiceItem - + <strong>Start</strong>: %s - + <strong>Length</strong>: %s @@ -3033,209 +3033,209 @@ Suffix not supported OpenLP.ServiceManager - + Move to &top Bovenaan plaa&tsen - + Move item to the top of the service. Plaats dit onderdeel bovenaan. - + Move &up Naar b&oven - + Move item up one position in the service. Verplaats een plek naar boven. - + Move &down Naar bene&den - + Move item down one position in the service. Verplaats een plek naar beneden. - + Move to &bottom Onderaan &plaatsen - + Move item to the end of the service. Plaats dit onderdeel onderaan. - + &Delete From Service Verwij&deren uit de liturgie - + Delete the selected item from the service. Verwijder dit onderdeel uit de liturgie. - + &Add New Item &Voeg toe - + &Add to Selected Item &Voeg selectie toe - + &Edit Item B&ewerk onderdeel - + &Reorder Item He&rschik onderdeel - + &Notes Aa&ntekeningen - + &Change Item Theme &Wijzig onderdeel thema - + File is not a valid service. The content encoding is not UTF-8. Geen geldig liturgie bestand. Tekst codering is geen UTF-8. - + File is not a valid service. Geen geldig liturgie bestand. - + Missing Display Handler Ontbrekende weergave regelaar - + Your item cannot be displayed as there is no handler to display it Dit onderdeel kan niet weergegeven worden, omdat er een regelaar ontbreekt - + Your item cannot be displayed as the plugin required to display it is missing or inactive Dit onderdeel kan niet weergegeven worden omdat de benodigde plugin ontbreekt of inactief is - + &Expand all Alles &uitklappen - + Expand all the service items. Alle liturgie onderdelen uitklappen. - + &Collapse all Alles &inklappen - + Collapse all the service items. Alle liturgie onderdelen inklappen. - + Open File Open bestand - + OpenLP Service Files (*.osz) OpenLP liturgie bestanden (*.osz) - + Moves the selection up the window. Verplaatst de selectie naar boven. - + Move up Naar boven - + Go Live Ga Live - + Send the selected item to Live. Toon selectie Live. - + Moves the selection down the window. Verplaatst de selectie naar beneden. - + Modified Service Gewijzigde liturgie - + &Start Time &Start Tijd - + Show &Preview Toon &Voorbeeld - + Show &Live Toon &Live - + The current service has been modified. Would you like to save this service? De huidige liturgie is gewijzigd. Veranderingen opslaan? - + File could not be opened because it is corrupt. Bestand kan niet worden geopend omdat het beschadigd is. - + Empty File Leeg bestand - + This service file does not contain any data. Deze liturgie bevat nog geen gegevens. - + Corrupt File Corrupt bestand @@ -3255,42 +3255,42 @@ Tekst codering is geen UTF-8. Speeltijd: - + Untitled Service Liturgie zonder naam - + Load an existing service. Laad een bestaande liturgie. - + Save this service. Deze liturgie opslaan. - + Select a theme for the service. Selecteer een thema voor de liturgie. - + This file is either corrupt or it is not an OpenLP 2.0 service file. Dit bestand is beschadigd of geen OpenLP 2.0 liturgie bestand. - + Slide theme - + Notes - + Service File Missing @@ -3417,17 +3417,17 @@ Tekst codering is geen UTF-8. Volgende dia - + Previous Service Vorige liturgie - + Next Service Volgende liturgie - + Escape Item Onderdeel annuleren @@ -3547,36 +3547,51 @@ Tekst codering is geen UTF-8. Start time is after the finish time of the media item Start tijd is ingesteld tot na het eind van het media item + + + Theme Layout + + + + + The blue box shows the main area. + + + + + The red box shows the footer. + + OpenLP.ThemeForm - + Select Image Selecteer afbeelding - + Theme Name Missing Thema naam ontbreekt - + There is no name for this theme. Please enter one. Dit thema heeft nog geen naam. Geef een naam voor dit thema. - + Theme Name Invalid Ongeldige naam - + Invalid theme name. Please enter one. Deze naam kan niet worden gebruikt als thema naam. Kies een andere naam. - + (approximately %d lines per slide) (ongeveer %d regels per dia) @@ -3654,7 +3669,7 @@ Tekst codering is geen UTF-8. Selecteer een thema om te bewerken. - + You are unable to delete the default theme. Het standaard thema kan niet worden verwijderd. @@ -3694,19 +3709,19 @@ Tekst codering is geen UTF-8. Selecteer te importeren thema bestand - + File is not a valid theme. The content encoding is not UTF-8. Geen geldig thema bestand. Tekst codering is geen UTF-8. - + File is not a valid theme. Geen geldig thema bestand. - + Theme %s is used in the %s plugin. Thema %s wordt gebruikt in de %s plugin. @@ -3756,12 +3771,12 @@ Tekst codering is geen UTF-8. %s thema verwijderen? - + Validation Error Validatie fout - + A theme with this name already exists. Er bestaat al een thema met deze naam. @@ -3780,260 +3795,270 @@ Tekst codering is geen UTF-8. OpenLP.ThemeWizard - + Theme Wizard Thema assistent - + Welcome to the Theme Wizard Welkom bij de thema assistent - + Set Up Background Achtergrond instellen - + Set up your theme's background according to the parameters below. Thema achtergrond instellen met onderstaande parameters. - + Background type: Achtergrond type: - + Solid Color Vaste kleur - + Gradient Kleurverloop - + Color: Kleur: - + Gradient: Kleurverloop: - + Horizontal Horizontaal - + Vertical Verticaal - + Circular Radiaal - + Top Left - Bottom Right Links boven - rechts onder - + Bottom Left - Top Right Links onder - Rechts boven - + Main Area Font Details Font instellingen algemeen - + Define the font and display characteristics for the Display text Stel de eigenschappen voor de tekst weergave in - + Font: Font: - + Size: Grootte: - + Line Spacing: Interlinie: - + &Outline: &Omtrek: - + &Shadow: &Schaduw: - + Bold Vet - + Italic Cursief - + Footer Area Font Details Eigenschappen voettekst - + Define the font and display characteristics for the Footer text Stel de eigenschappen voor de voettekst weergave in - + Text Formatting Details Tekst opmaak eigenschappen - + Allows additional display formatting information to be defined Toestaan dat er afwijkende opmaak kan worden bepaald - + Horizontal Align: Horizontaal uitlijnen: - + Left links - + Right rechts - + Center Centreren - + Output Area Locations Uitvoer gebied locaties - + Allows you to change and move the main and footer areas. Toestaan dat tekstvelden gewijzigd en verplaatst worden. - + &Main Area &Hoofdgebied - + &Use default location Gebr&uik standaard locatie - + X position: X positie: - + px px - + Y position: Y positie: - + Width: Breedte: - + Height: Hoogte: - + Use default location Gebruik standaard locatie - + Save and Preview Opslaan en voorbeeld - + View the theme and save it replacing the current one or change the name to create a new theme Thema bekijken en sla het op onder dezelfde naam om te vervangen of onder een andere naam om een nieuw thema te maken - + Theme name: Thema naam: - + This wizard will help you to create and edit your themes. Click the next button below to start the process by setting up your background. Deze assistent helpt bij het maken en bewerken van thema's. Klik op volgende om als eerste een achtergrond in te stellen. - + Transitions: Overgangen: - + &Footer Area &Voettekst gebied - + Edit Theme - %s Bewerk thema - %s - + Starting color: - + Ending color: - + Background color: Achtergrondkleur: + + + Justify + + + + + Layout Preview + + OpenLP.ThemesTab @@ -4678,52 +4703,52 @@ Tekst codering is geen UTF-8. PresentationPlugin.MediaItem - + Select Presentation(s) Selecteer presentatie(s) - + Automatic automatisch - + Present using: Presenteren met: - + A presentation with that filename already exists. Er bestaat al een presentatie met die naam. - + File Exists Bestand bestaat - + This type of presentation is not supported. Dit soort presentatie wordt niet ondersteund. - + Presentations (%s) Presentaties (%s) - + Missing Presentation Ontbrekende presentatie - + The Presentation %s no longer exists. De presentatie %s bestaat niet meer. - + The Presentation %s is incomplete, please reload. De presentatie %s is niet compleet, herladen aub. @@ -4868,30 +4893,35 @@ Tekst codering is geen UTF-8. RemotePlugin.RemoteTab - + Serve on IP address: Beschikbaar via IP-adres: - + Port number: Poort nummer: - + Server Settings Server instellingen - + Remote URL: Remote URL: - + Stage view URL: Podium weergave URL: + + + Display stage time in 12h format + + SongUsagePlugin @@ -4982,7 +5012,7 @@ Tekst codering is geen UTF-8. SongUsagePlugin.SongUsageDeleteForm - + Delete Song Usage Data Gegevens liedgebruik verwijderen @@ -5007,7 +5037,7 @@ Tekst codering is geen UTF-8. Alle opgegeven data is verwijderd. - + Select the date up to which the song usage data should be deleted. All data recorded before this date will be permanently deleted. @@ -5634,100 +5664,110 @@ Meestal voldoet de suggestie van OpenLP. Deze assistent helpt liederen in verschillende bestandsformaten te importeren in OpenLP. Klik op volgende en kies daarna het bestandsformaat van het te importeren lied. - + Add Files... Toevoegen... - + Remove File(s) Verwijder bestand(en) - + Filename: Bestandsnaam: - + Please wait while your songs are imported. Even geduld tijdens het importeren. - + Select Document/Presentation Files Selecteer Documenten/Presentatie bestanden - + Generic Document/Presentation Algemeen Document/Presentatie - + 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. OpenLyrics import is nog niet gemaakt, maar we hebben het voornemen dit te doen. Hopelijk lukt dit in een volgende versie. - + OpenLP 2.0 Databases OpenLP 2.0 Databases - + openlp.org v1.x Databases openlp.org v1.x Databases - + Words Of Worship Song Files Words Of Worship Lied bestanden - + Songs Of Fellowship Song Files Songs Of Fellowship lied bestanden - + SongBeamer Files SongBeamer bestanden - + SongShow Plus Song Files SongShow Plus lied bestanden - + You need to specify at least one document or presentation file to import from. Selecteer minimaal een document of presentatie om te importeren. - + Foilpresenter Song Files Foilpresenter lied bestanden - + Copy Kopieer - + Save to File Opslaan als bestand - + The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. Songs of Fellowship import is uitgeschakeld omdat OpenLP OpenOffice.org niet kan vinden op deze computer. - + The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. Algemeen document/presentatie import is uitgeschakeld omdat OpenLP OpenOffice.org niet kan vinden op deze computer. + + + OpenLyrics or OpenLP 2.0 Exported Song + + + + + OpenLyrics Files + + SongsPlugin.MediaFilesForm @@ -5755,7 +5795,7 @@ Meestal voldoet de suggestie van OpenLP. Liedtekst - + CCLI License: CCLI Licentie: @@ -5778,7 +5818,7 @@ Meestal voldoet de suggestie van OpenLP. Beheer de lijst met auteurs, onderwerpen en liedboeken. - + copy For song cloning @@ -5803,7 +5843,7 @@ Meestal voldoet de suggestie van OpenLP. SongsPlugin.OpenLyricsExport - + Exporting "%s"... Exporteren "%s"... @@ -5875,7 +5915,7 @@ Meestal voldoet de suggestie van OpenLP. SongsPlugin.SongImportForm - + Your song import failed. Lied import mislukt. diff --git a/resources/i18n/pt_BR.ts b/resources/i18n/pt_BR.ts index decee0db4..dce34c7af 100644 --- a/resources/i18n/pt_BR.ts +++ b/resources/i18n/pt_BR.ts @@ -412,38 +412,38 @@ Mudanças nĂŁo afetam os versĂ­culos que jĂĄ estĂŁo no culto. BiblesPlugin.HTTPBible - + Registering Bible and loading books... Registrando BĂ­blia e carregando livros... - + Registering Language... Registrando Idioma... - + Importing %s... Importing <book name>... Importando %s... - + Download Error Erro na TransferĂȘncia - + There was a problem downloading your verse selection. Please check your Internet connection, and if this error continues to occur please consider reporting a bug. Ocorreu um problema ao baixar os versĂ­culos selecionados. Verifique sua conexĂŁo com a Internet, e se este erro continuar ocorrendo, por favor considere relatar um bug. - + Parse Error Erro de Interpretação - + There was a problem extracting your verse selection. If this error continues to occur please consider reporting a bug. Ocorreu um problema extraindo os versĂ­culos selecionados. Se este erro continuar ocorrendo, por favor considere relatar um bug. @@ -546,27 +546,27 @@ Mudanças nĂŁo afetam os versĂ­culos que jĂĄ estĂŁo no culto. VocĂȘ deve especificar um arquivo de versĂ­culos da BĂ­blia para importar. - + You need to specify a version name for your Bible. VocĂȘ deve especificar um nome de versĂŁo para a sua BĂ­blia. - + Bible Exists BĂ­blia Existe - + Your Bible import failed. A sua Importação de BĂ­blia falhou. - + You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. VocĂȘ precisa definir os direitos autorais da sua BĂ­blia. TraduçÔes em DomĂ­nio PĂșblico devem ser marcadas como tal. - + This Bible already exists. Please import a different Bible or first delete the existing one. Esta BĂ­blia jĂĄ existe. Pro favor, importe uma BĂ­blia diferente ou apague a existente primeiro. @@ -576,7 +576,7 @@ Mudanças nĂŁo afetam os versĂ­culos que jĂĄ estĂŁo no culto. PermissĂ”es: - + CSV File Arquivo CSV @@ -601,17 +601,17 @@ Mudanças nĂŁo afetam os versĂ­culos que jĂĄ estĂŁo no culto. Arquivo de VersĂ­culos: - + openlp.org 1.x Bible Files Arquivos de BĂ­blia do openlp.org 1.x - + Registering Bible... Registrando BĂ­blia... - + Registered Bible. Please note, that verses will be downloaded on demand and thus an internet connection is required. BĂ­blia registrada. Por favor, observe que os verĂ­sulos serĂŁo baixados de acordo @@ -1112,7 +1112,7 @@ Observe, que versĂ­culos das BĂ­blias Internet serĂŁo transferidos sob demanda e ImagePlugin.ExceptionDialog - + Select Attachment Selecionar Anexo @@ -1165,17 +1165,17 @@ Mesmo assim, deseja continuar adicionando as outras imagens? ImagesPlugin.ImageTab - + Background Color Cor do Plano de Fundo - + Default Color: Cor PadrĂŁo: - + Provides border where image is not the correct dimensions for the screen when resized. ProvĂȘ uma borda se a imagem nĂŁo estiver nas dimensĂ”es corretas da tela quando redimensionada. @@ -1249,7 +1249,7 @@ Mesmo assim, deseja continuar adicionando as outras imagens? Selecionar MĂ­dia - + You must select a media file to delete. VocĂȘ deve selecionar um arquivo de mĂ­dia para apagar. @@ -1634,7 +1634,7 @@ PorçÔes com direitos autorais © 2004-2011 %s Anexar Arquivo - + Description characters to enter : %s Caracteres que podem ser digitadas na descrição: %s @@ -1642,24 +1642,24 @@ PorçÔes com direitos autorais © 2004-2011 %s OpenLP.ExceptionForm - + Platform: %s Plataforma: %s - + Save Crash Report Salvar RelatĂłrio de Travamento - + Text files (*.txt *.log *.text) Arquivos de texto (*.txt *.log *.text) - + **OpenLP Bug Report** Version: %s @@ -1690,7 +1690,7 @@ VersĂŁo %s - + *OpenLP Bug Report* Version: %s @@ -2803,7 +2803,7 @@ Banco de Dados: %s OpenLP.MediaManagerItem - + No Items Selected Nenhum Item Selecionado @@ -2813,42 +2813,42 @@ Banco de Dados: %s &Adicionar ao Item de Ordem de Culto selecionado - + You must select one or more items to preview. VocĂȘ deve selecionar um ou mais itens para prĂ©-visualizar. - + You must select one or more items to send live. VocĂȘ deve selecionar um ou mais itens para projetar. - + You must select one or more items. VocĂȘ deve selecionar um ou mais itens. - + You must select an existing service item to add to. VocĂȘ deve selecionar um item de culto existente ao qual adicionar. - + Invalid Service Item Item de Culto invĂĄlido - + You must select a %s service item. VocĂȘ deve selecionar um item de culto %s. - + You must select one or more items to add. VocĂȘ deve selecionar um ou mais itens para adicionar. - + No Search Results Nenhum Resultado de Busca @@ -3025,12 +3025,12 @@ Sufixo nĂŁo suportado OpenLP.ServiceItem - + <strong>Start</strong>: %s <strong>InĂ­cio</strong>: %s - + <strong>Length</strong>: %s <strong>Duração</strong>: %s @@ -3046,209 +3046,209 @@ Sufixo nĂŁo suportado OpenLP.ServiceManager - + Move to &top Mover para o &topo - + Move item to the top of the service. Mover item para o topo do culto. - + Move &up Mover para &cima - + Move item up one position in the service. Mover item uma posição para cima no culto. - + Move &down Mover para &baixo - + Move item down one position in the service. Mover item uma posição para baixo no culto. - + Move to &bottom Mover para o &final - + Move item to the end of the service. Mover item para o final do culto. - + &Delete From Service &Excluir do Culto - + Delete the selected item from the service. Excluir o item selecionado do culto. - + &Add New Item &Adicionar um Novo Item - + &Add to Selected Item &Adicionar ao Item Selecionado - + &Edit Item &Editar Item - + &Reorder Item &Reordenar Item - + &Notes &AnotaçÔes - + &Change Item Theme &Alterar Tema do Item - + File is not a valid service. The content encoding is not UTF-8. O arquivo nĂŁo Ă© um culto vĂĄlida. A codificação do conteĂșdo nĂŁo Ă© UTF-8. - + File is not a valid service. Arquivo nĂŁo Ă© uma ordem de culto vĂĄlida. - + Missing Display Handler Faltando o Manipulador de Exibição - + Your item cannot be displayed as there is no handler to display it O seu item nĂŁo pode ser exibido porque nĂŁo existe um manipulador para exibĂ­-lo - + Your item cannot be displayed as the plugin required to display it is missing or inactive O item nĂŁo pode ser exibido porque o plugin necessĂĄrio para visualizĂĄ-lo estĂĄ ausente ou estĂĄ desativado - + &Expand all &Expandir todos - + Expand all the service items. Expandir todos os itens do culto. - + &Collapse all &Recolher todos - + Collapse all the service items. Recolher todos os itens do culto. - + Open File Abrir Arquivo - + OpenLP Service Files (*.osz) Arquivos de Culto do OpenLP (*.osz) - + Moves the selection down the window. Move a seleção para baixo dentro da janela. - + Move up Mover para cima - + Moves the selection up the window. Move a seleção para cima dentro da janela. - + Go Live Projetar - + Send the selected item to Live. Enviar o item selecionado para a Projeção. - + Modified Service Culto Modificado - + &Start Time &HorĂĄrio Inicial - + Show &Preview Exibir &PrĂ©-visualização - + Show &Live Exibir &Projeção - + The current service has been modified. Would you like to save this service? O culto atual foi modificada. VocĂȘ gostaria de salvar este culto? - + File could not be opened because it is corrupt. Arquivo nĂŁo pĂŽde ser aberto porque estĂĄ corrompido. - + Empty File Arquivo vazio - + This service file does not contain any data. Este arquivo de culto nĂŁo contĂ©m dados. - + Corrupt File Arquivo corrompido @@ -3268,42 +3268,42 @@ A codificação do conteĂșdo nĂŁo Ă© UTF-8. Duração: - + Untitled Service Culto Sem Nome - + Load an existing service. Carregar um culto existente. - + Save this service. Salvar este culto. - + Select a theme for the service. Selecionar um tema para o culto. - + This file is either corrupt or it is not an OpenLP 2.0 service file. Este arquivo estĂĄ corrompido ou nĂŁo Ă© um arquivo de culto do OpenLP 2.0. - + Slide theme Tema do Slide - + Notes Notas - + Service File Missing Arquivo do Culto nĂŁo encontrado @@ -3430,17 +3430,17 @@ A codificação do conteĂșdo nĂŁo Ă© UTF-8. Slide Seguinte - + Previous Service Lista Anterior - + Next Service PrĂłxima Lista - + Escape Item Escapar Item @@ -3560,36 +3560,51 @@ A codificação do conteĂșdo nĂŁo Ă© UTF-8. Start time is after the finish time of the media item O tempo inicial estĂĄ apĂłs o fim do item de mĂ­dia + + + Theme Layout + + + + + The blue box shows the main area. + + + + + The red box shows the footer. + + OpenLP.ThemeForm - + Select Image Selecionar Imagem - + Theme Name Missing Faltando Nome do Tema - + There is no name for this theme. Please enter one. NĂŁo hĂĄ nome para este tema. Por favor forneça um. - + Theme Name Invalid Nome do Tema InvĂĄlido - + Invalid theme name. Please enter one. O nome do tema Ă© invĂĄlido. Por favor forneça um. - + (approximately %d lines per slide) (aproximadamente %d linhas por slide) @@ -3667,7 +3682,7 @@ A codificação do conteĂșdo nĂŁo Ă© UTF-8. VocĂȘ precisa selecionar um tema para editar. - + You are unable to delete the default theme. VocĂȘ nĂŁo pode apagar o tema padrĂŁo. @@ -3707,19 +3722,19 @@ A codificação do conteĂșdo nĂŁo Ă© UTF-8. Selecionar Arquivo de Importação de Tema - + File is not a valid theme. The content encoding is not UTF-8. O arquivo nĂŁo Ă© um tema vĂĄlido. A codificação do conteĂșdo nĂŁo Ă© UTF-8. - + File is not a valid theme. O arquivo nĂŁo Ă© um tema vĂĄlido. - + Theme %s is used in the %s plugin. O tema %s Ă© usado no plugin %s. @@ -3769,12 +3784,12 @@ A codificação do conteĂșdo nĂŁo Ă© UTF-8. Apagar o tema %s? - + Validation Error Erro de Validação - + A theme with this name already exists. JĂĄ existe um tema com este nome. @@ -3793,260 +3808,270 @@ A codificação do conteĂșdo nĂŁo Ă© UTF-8. OpenLP.ThemeWizard - + Theme Wizard Assistente de Tema - + Welcome to the Theme Wizard Bem-vindo ao Assistente de Tema - + Set Up Background Configurar Plano de Fundo - + Set up your theme's background according to the parameters below. Configure o plano de fundo de seu tema de acordo com os parĂąmetros abaixo. - + Background type: Tipo de plano de fundo: - + Solid Color Cor SĂłlida - + Gradient DegradĂȘ - + Color: Cor: - + Gradient: DegradĂȘ: - + Horizontal Horizontal - + Vertical Vertical - + Circular Circular - + Top Left - Bottom Right Esquerda Superior - Direita Inferior - + Bottom Left - Top Right Esquerda Inferior - Direita Superior - + Main Area Font Details Detalhes da Fonte da Área Principal - + Define the font and display characteristics for the Display text Definir a fonte e caracterĂ­sticas de exibição para o texto de Exibição - + Font: Fonte: - + Size: Tamanho: - + Line Spacing: Espaçamento entre linhas: - + &Outline: &Contorno: - + &Shadow: &Sombra: - + Bold Negrito - + Italic ItĂĄlico - + Footer Area Font Details Detalhes de Fonte da Área de RodapĂ© - + Define the font and display characteristics for the Footer text Defina a fone e as caracterĂ­sticas de exibição do texto de RodapĂ© - + Text Formatting Details Detalhes da Formatação de Texto - + Allows additional display formatting information to be defined Permite que informaçÔes adicionais de formataçÔes de exibição sejam definidas - + Horizontal Align: Alinhamento Horizontal: - + Left Esquerda - + Right Direita - + Center Centralizado - + Output Area Locations PosiçÔes das Áreas de SaĂ­da - + Allows you to change and move the main and footer areas. Permite modificar e mover as ĂĄreas principal e de rodapĂ©. - + &Main Area &Área Principal - + &Use default location &Usar posição padrĂŁo - + X position: Posição X: - + px px - + Y position: Posição Y: - + Width: Largura: - + Height: Altura: - + Use default location Usar posição padrĂŁo - + Save and Preview Salvar e prĂ©-visualizar - + View the theme and save it replacing the current one or change the name to create a new theme Visualizar o tema e salvĂĄ-lo, substituindo o atual ou mudar o nome para criar um novo tema - + Theme name: Nome do tema: - + This wizard will help you to create and edit your themes. Click the next button below to start the process by setting up your background. Este assistente vai ajudĂĄ-lo a criar e editar seus temas. Clique no botĂŁo avançar abaixo para iniciar o processo, configurando seu plano de fundo. - + Transitions: TransiçÔes: - + &Footer Area Área do &RodapĂ© - + Edit Theme - %s Editar Tema - %s - + Starting color: Cor inicial: - + Ending color: Cor final: - + Background color: Cor do Plano de Fundo: + + + Justify + + + + + Layout Preview + + OpenLP.ThemesTab @@ -4691,52 +4716,52 @@ A codificação do conteĂșdo nĂŁo Ă© UTF-8. PresentationPlugin.MediaItem - + Select Presentation(s) Selecionar Apresentação(Ă”es) - + Automatic AutomĂĄtico - + Present using: Apresentar usando: - + File Exists O Arquivo jĂĄ Existe - + A presentation with that filename already exists. JĂĄ existe uma apresentação com este nome. - + This type of presentation is not supported. Este tipo de apresentação nĂŁo Ă© suportado. - + Presentations (%s) ApresentaçÔes (%s) - + Missing Presentation Apresentação NĂŁo Encontrada - + The Presentation %s no longer exists. A Apresentação %s nĂŁo existe mais. - + The Presentation %s is incomplete, please reload. A Apresentação %s estĂĄ incompleta, por favor recarregue-a. @@ -4881,30 +4906,35 @@ A codificação do conteĂșdo nĂŁo Ă© UTF-8. RemotePlugin.RemoteTab - + Serve on IP address: Endereço IP do servidor: - + Port number: NĂșmero de porta: - + Server Settings ConfiguraçÔes do Servidor - + Remote URL: URL Remoto: - + Stage view URL: URL de Visualização de Palco: + + + Display stage time in 12h format + + SongUsagePlugin @@ -4995,7 +5025,7 @@ A codificação do conteĂșdo nĂŁo Ă© UTF-8. SongUsagePlugin.SongUsageDeleteForm - + Delete Song Usage Data Excluir Dados de Registro das MĂșsicas @@ -5020,7 +5050,7 @@ A codificação do conteĂșdo nĂŁo Ă© UTF-8. Todos os dados solicitados foram apagados com sucesso. - + Select the date up to which the song usage data should be deleted. All data recorded before this date will be permanently deleted. Selecione uma data limite para que os dados de uso de mĂșsicas seja excluĂ­do. Todos os registros antes desta data serĂĄ excluĂ­dos permanentemente. @@ -5639,7 +5669,7 @@ EasyWorship] SongsPlugin.ImportWizardForm - + Select Document/Presentation Files Selecione Arquivos de Documentos/ApresentaçÔes @@ -5654,95 +5684,105 @@ EasyWorship] Este assistente irĂĄ ajudĂĄ-lo a importar mĂșsicas de uma variedade de formatos. Clique no abaixo no botĂŁo PrĂłximo para iniciar o processo, escolhendo um desses formatos. - + Generic Document/Presentation Documento/Apresentação GenĂ©rica - + Filename: Nome do arquivo: - + Add Files... Adicionar Arquivos... - + Remove File(s) Remover Arquivos(s) - + Please wait while your songs are imported. Por favor espere enquanto as suas mĂșsicas sĂŁo importadas. - + 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. O importador para o formato OpenLyrics ainda nĂŁo foi desenvolvido, mas como vocĂȘ pode ver, nĂłs ainda pretendemos desenvolvĂȘ-lo. Possivelmente ele estarĂĄ disponĂ­vel na prĂłxima versĂŁo. - + OpenLP 2.0 Databases Bancos de Dados do OpenLP 2.0 - + openlp.org v1.x Databases Bancos de Dados do openlp.org v1.x - + Words Of Worship Song Files Arquivos de MĂșsica do Words Of Worship - + You need to specify at least one document or presentation file to import from. VocĂȘ precisa especificar pelo menos um documento ou apresentação para importar. - + Songs Of Fellowship Song Files Arquivos do Songs Of Fellowship - + SongBeamer Files Arquivos do SongBeamer - + SongShow Plus Song Files Arquivos do SongShow Plus - + Foilpresenter Song Files Arquivos do Folipresenter - + Copy Copiar - + Save to File Salvar em Arquivo - + The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. A importação Songs of Fellowship foi desabilitada porque OpenLP nĂŁo consegue acessar OpenOffice ou LibreOffice. - + The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. A importação de documentos/apresentaçÔes genĂ©ricos foi desabilitada porque OpenLP nĂŁo consegue acessar OpenOffice ou LibreOffice. + + + OpenLyrics or OpenLP 2.0 Exported Song + + + + + OpenLyrics Files + + SongsPlugin.MediaFilesForm @@ -5770,7 +5810,7 @@ EasyWorship] Letras - + CCLI License: Licença CCLI: @@ -5793,7 +5833,7 @@ EasyWorship] Gerencia a lista de autores, tĂłpicos e hinĂĄrios. - + copy For song cloning copiar @@ -5818,7 +5858,7 @@ EasyWorship] SongsPlugin.OpenLyricsExport - + Exporting "%s"... Exportando "%s"... @@ -5890,7 +5930,7 @@ EasyWorship] SongsPlugin.SongImportForm - + Your song import failed. Sua importação de mĂșsica falhou. diff --git a/resources/i18n/ru.ts b/resources/i18n/ru.ts index 4d799b722..e61edcf80 100644 --- a/resources/i18n/ru.ts +++ b/resources/i18n/ru.ts @@ -412,38 +412,38 @@ Changes do not affect verses already in the service. BiblesPlugin.HTTPBible - + Registering Bible and loading books... Đ Đ”ĐłĐžŃŃ‚Ń€Đ°Ń†ĐžŃ БОблОО Đž Đ·Đ°ĐłŃ€ŃƒĐ·ĐșĐ° ĐșĐœĐžĐł... - + Registering Language... Đ Đ”ĐłĐžŃŃ‚Ń€Đ°Ń†ĐžŃ ŃĐ·Ń‹ĐșĐ°... - + Importing %s... Importing <book name>... Đ˜ĐŒĐżĐŸŃ€Ń‚ %s... - + Download Error ĐžŃˆĐžĐ±ĐșĐ° Đ·Đ°ĐłŃ€ŃƒĐ·ĐșĐž - + There was a problem downloading your verse selection. Please check your Internet connection, and if this error continues to occur please consider reporting a bug. Đ’ĐŸĐ·ĐœĐžĐșла ĐżŃ€ĐŸĐ±Đ»Đ”ĐŒĐ° про Đ·Đ°ĐłŃ€ŃƒĐ·ĐșĐ” сДĐșцоо ŃŃ‚ĐžŃ…ĐŸĐČ. ĐŸĐŸĐ¶Đ°Đ»ŃƒĐčста, ĐżŃ€ĐŸĐČĐ”Ń€ŃŒŃ‚Đ” ĐżĐ°Ń€Đ°ĐŒĐ”Ń‚Ń€Ń‹ Đ˜ĐœŃ‚Đ”Ń€ĐœĐ”Ń‚ ŃĐŸĐ”ĐŽĐžĐœĐ”ĐœĐžŃ, Đž ŃĐ»ŃƒŃ‡Đ°Đ” ДслО ĐŸŃˆĐžĐ±ĐșĐ° ĐżŃ€ĐŸĐžŃŃ…ĐŸĐŽĐžŃ‚ про ĐœĐŸŃ€ĐŒĐ°Đ»ŃŒĐœĐŸĐŒ Đ˜ĐœŃ‚Đ”Ń€ĐœĐ”Ń‚ ŃĐŸĐ”ĐŽĐžĐœĐ”ĐœĐžĐž, ŃĐŸĐŸĐ±Ń‰ĐžŃ‚Đ” ĐŸ ĐœĐ”Đč ĐœĐ° саĐčŃ‚Đ” Ń€Đ°Đ·Ń€Đ°Đ±ĐŸŃ‚Ń‡ĐžĐșĐ° ĐČ Ń€Đ°Đ·ĐŽĐ”Đ»Đ” ĐžŃˆĐžĐ±ĐșĐž. - + Parse Error ĐžŃˆĐžĐ±ĐșĐ° ĐŸĐ±Ń€Đ°Đ±ĐŸŃ‚ĐșĐž - + There was a problem extracting your verse selection. If this error continues to occur please consider reporting a bug. Đ’ĐŸĐ·ĐœĐžĐșла ĐżŃ€ĐŸĐ±Đ»Đ”ĐŒĐ° про распаĐșĐŸĐČĐșĐ” разЎДла ŃŃ‚ĐžŃ…ĐŸĐČ. ЕслО ŃŃ‚ĐŸ ĐŸŃˆĐžĐ±ĐșĐ° Đ±ŃƒĐŽĐ”Ń‚ ĐżĐŸĐČŃ‚ĐŸŃ€ŃŃ‚ŃŒŃŃ, ĐżĐŸĐ¶Đ°Đ»ŃƒĐčста ŃĐŸĐŸĐ±Ń‰ĐžŃ‚Đ” ĐŸ ĐœĐ”Đč. @@ -556,32 +556,32 @@ Changes do not affect verses already in the service. Đ’Đ°ĐŒ ĐœĐ”ĐŸĐ±Ń…ĐŸĐŽĐžĐŒĐŸ уĐșĐ°Đ·Đ°Ń‚ŃŒ фаĐčĐ» с ŃĐŸĐŽĐ”Ń€Đ¶ĐžĐŒŃ‹ĐŒ ŃŃ‚ĐžŃ…ĐŸĐČ Đ‘ĐžĐ±Đ»ĐžĐž ĐŽĐ»Ń ĐžĐŒĐżĐŸŃ€Ń‚Đ°. - + You need to specify a version name for your Bible. Đ’Đ°ĐŒ ĐœĐ”ĐŸĐ±Ń…ĐŸĐŽĐžĐŒĐŸ уĐșĐ°Đ·Đ°Ń‚ŃŒ ĐœĐ°Đ·ĐČĐ°ĐœĐžĐ” пДрДĐČĐŸĐŽĐ° БОблОО. - + 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. Đ‘ĐžĐ±Đ»ĐžŃ ужД ŃŃƒŃ‰Đ”ŃŃ‚ĐČŃƒĐ”Ń‚. Đ’Ń‹ĐżĐŸĐ»ĐœĐžŃ‚Đ” ĐžĐŒĐżĐŸŃ€Ń‚ ĐŽŃ€ŃƒĐłĐŸĐč БОблОО ОлО ŃƒĐŽĐ°Đ»ĐžŃ‚Đ” ŃŃƒŃ‰Đ”ŃŃ‚ĐČующую. - + CSV File ЀаĐčĐ» CSV - + Your Bible import failed. Đ˜ĐŒĐżĐŸŃ€Ń‚ БОблОО ĐżŃ€ĐŸĐČĐ°Đ»ĐžĐ»ŃŃ. @@ -601,17 +601,17 @@ Changes do not affect verses already in the service. ЀаĐčĐ» ŃŃ‚ĐžŃ…ĐŸĐČ: - + openlp.org 1.x Bible Files ЀаĐčĐ» БОблОО openlp.org 1.x - + Registering Bible... Đ Đ”ĐłĐžŃŃ‚Ń€Đ°Ń†ĐžŃ БОблОО... - + Registered Bible. Please note, that verses will be downloaded on demand and thus an internet connection is required. Đ Đ”ĐłĐžŃŃ‚Ń€Đ°Ń†ĐžŃ БОблОО. ĐŸĐŸĐ¶Đ°Đ»ŃƒĐčста, ĐżĐŸĐŒĐœĐžŃ‚Đ” ĐŸ Ń‚ĐŸĐŒ, Ń‡Ń‚ĐŸ стохо @@ -1113,7 +1113,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I ImagePlugin.ExceptionDialog - + Select Attachment Đ’Ń‹Đ±Ń€Đ°Ń‚ŃŒ Đ’Đ»ĐŸĐ¶Đ”ĐœĐžĐ” @@ -1166,17 +1166,17 @@ Do you want to add the other images anyway? ImagesPlugin.ImageTab - + Background Color - + Default Color: - + Provides border where image is not the correct dimensions for the screen when resized. @@ -1270,7 +1270,7 @@ Do you want to add the other images anyway? ЀаĐčĐ» %s ĐœĐ” ŃŃƒŃ‰Đ”ŃŃ‚ĐČŃƒĐ”Ń‚. - + You must select a media file to delete. Вы ĐŽĐŸĐ»Đ¶ĐœŃ‹ ĐČŃ‹Đ±Ń€Đ°Ń‚ŃŒ ĐŒĐ”ĐŽĐžĐ°-фаĐčĐ» ĐŽĐ»Ń ŃƒĐŽĐ°Đ»Đ”ĐœĐžŃ. @@ -1635,7 +1635,7 @@ Portions copyright © 2004-2011 %s Đ”ĐŸĐ±Đ°ĐČоть фаĐčĐ» - + Description characters to enter : %s ĐĄĐžĐŒĐČĐŸĐ»Ń‹ ĐŸĐżĐžŃĐ°ĐœĐžŃ: %s @@ -1643,24 +1643,24 @@ Portions copyright © 2004-2011 %s OpenLP.ExceptionForm - + Platform: %s ĐŸĐ»Đ°Ń‚Ń„ĐŸŃ€ĐŒĐ°: %s - + Save Crash Report ĐĄĐŸŃ…Ń€Đ°ĐœĐžŃ‚ŃŒ ĐŸŃ‚Ń‡Đ”Ń‚ ĐŸĐ± ĐŸŃˆĐžĐ±ĐșĐ” - + Text files (*.txt *.log *.text) йДĐșŃŃ‚ĐŸĐČыĐč фаĐčĐ» (*.txt *.log *.text) - + **OpenLP Bug Report** Version: %s @@ -1691,7 +1691,7 @@ Version: %s - + *OpenLP Bug Report* Version: %s @@ -2791,7 +2791,7 @@ Database: %s OpenLP.MediaManagerItem - + No Items Selected ОбъДĐșты ĐœĐ” ĐČŃ‹Đ±Ń€Đ°ĐœŃ‹ @@ -2801,42 +2801,42 @@ Database: %s &Đ”ĐŸĐ±Đ°ĐČоть ĐČ ĐČŃ‹Đ±Ń€Đ°ĐœĐœŃ‹Đč ĐŸĐ±ŃŠĐ”Đșт ĐĄĐ»ŃƒĐ¶Đ”ĐœĐžŃ - + 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. Вы ĐŽĐŸĐ»Đ¶ĐœŃ‹ ĐČŃ‹Đ±Ń€Đ°Ń‚ŃŒ ĐŸĐŽĐžĐœ ОлО Đ±ĐŸĐ»Đ”Đ” ŃĐ»Đ”ĐŒĐ”ĐœŃ‚ĐŸĐČ. - + You must select an existing service item to add to. Đ”Đ»Ń ĐŽĐŸĐ±Đ°ĐČĐ»Đ”ĐœĐžŃ ĐČы ĐŽĐŸĐ»Đ¶ĐœŃ‹ ĐČŃ‹Đ±Ń€Đ°Ń‚ŃŒ ŃŃƒŃ‰Đ”ŃŃ‚ĐČующоĐč ŃĐ»Đ”ĐŒĐ”ĐœŃ‚ ŃĐ»ŃƒĐ¶Đ”ĐœĐžŃ. - + Invalid Service Item ĐĐ”ĐżŃ€Đ°ĐČĐžĐ»ŃŒĐœŃ‹Đč ŃĐ»Đ”ĐŒĐ”ĐœŃ‚ ĐĄĐ»ŃƒĐ¶Đ”ĐœĐžŃ - + You must select a %s service item. Вы ĐŽĐŸĐ»Đ¶ĐœŃ‹ ĐČŃ‹Đ±Ń€Đ°Ń‚ŃŒ ĐŸĐ±ŃŠĐ”Đșт ŃĐ»ŃƒĐ¶Đ”ĐœĐžŃ %s. - + You must select one or more items to add. Đ”Đ»Ń ĐŽĐŸĐ±Đ°ĐČĐ»Đ”ĐœĐžŃ ĐČы ĐŽĐŸĐ»Đ¶ĐœŃ‹ ĐČŃ‹Đ±Ń€Đ°Ń‚ŃŒ ĐŸĐŽĐžĐœ ОлО Đ±ĐŸĐ»Đ”Đ” ŃĐ»Đ”ĐŒĐ”ĐœŃ‚ĐŸĐČ. - + No Search Results Đ Đ”Đ·ŃƒĐ»ŃŒŃ‚Đ°Ń‚Ń‹ ĐżĐŸĐžŃĐșĐ° ĐŸŃ‚ŃŃƒŃ‚ŃŃ‚ĐČуют @@ -3013,12 +3013,12 @@ Suffix not supported OpenLP.ServiceItem - + <strong>Start</strong>: %s <strong>Начать</strong>: %s - + <strong>Length</strong>: %s <strong>Đ”Đ»ĐžĐœĐ°</strong>: %s @@ -3034,209 +3034,209 @@ Suffix not supported OpenLP.ServiceManager - + Move to &top ĐŸĐ”Ń€Đ”ĐŽĐČĐžĐœŃƒŃ‚ŃŒ &ĐČĐČДрх - + Move item to the top of the service. ĐŸĐ”Ń€Đ”ĐŽĐČĐžĐœŃƒŃ‚ŃŒ ĐŸĐ±ŃŠĐ”Đșт ĐČ ĐœĐ°Ń‡Đ°Đ»ĐŸ ŃĐ»ŃƒĐ¶Đ”ĐœĐžŃ. - + Move &up ĐŸĐ”Ń€Đ”ĐŽĐČĐžĐœŃƒŃ‚ŃŒ &ĐČĐČДрх - + Move item up one position in the service. ĐŸĐ”Ń€Đ”ĐŽĐČĐžĐœŃƒŃ‚ŃŒ ĐŸĐ±ŃŠĐ”Đșт ĐœĐ° ĐŸĐŽĐœŃƒ ĐżĐŸĐ·ĐžŃ†ĐžŃŽ ĐČ ŃĐ»ŃƒĐ¶Đ”ĐœĐžĐž - + Move &down ĐŸĐ”Ń€Đ”ĐŽĐČĐžĐœŃƒŃ‚ŃŒ &ĐČĐœĐžĐ· - + Move item down one position in the service. ĐŸĐ”Ń€Đ”ĐŽĐČĐžĐœŃƒŃ‚ŃŒ ĐŸĐ±ŃŠĐ”Đșт ĐœĐ° ĐŸĐŽĐœŃƒ ĐżĐŸĐ·ĐžŃ†ĐžŃŽ ĐČĐœĐžĐ· ĐČ ŃĐ»ŃƒĐ¶Đ”ĐœĐžĐž. - + Move to &bottom ĐŸĐ”Ń€Đ”ĐŽĐČĐžĐœŃƒŃ‚ŃŒ &ĐČĐœĐžĐ· - + Move item to the end of the service. ĐŸĐ”Ń€Đ”ĐŽĐČĐžĐœŃƒŃ‚ŃŒ ĐŸĐ±ŃŠĐ”Đșт ĐČ ĐșĐŸĐœĐ”Ń† ŃĐ»ŃƒĐ¶Đ”ĐœĐžŃ. - + Moves the selection down the window. ĐŸĐ”Ń€Đ”ĐŽĐČĐžĐœŃƒŃ‚ŃŒ ĐČŃ‹ĐŽĐ”Đ»Đ”ĐœĐœĐŸĐ” ĐČĐœĐžĐ· ĐŸĐșĐœĐ°. - + Move up ĐŸĐ”Ń€Đ”ĐŽĐČĐžĐœŃƒŃ‚ŃŒ ĐČĐČДрх - + Moves the selection up the window. ĐŸĐ”Ń€Đ”ĐŽĐČĐžĐœŃƒŃ‚ŃŒ ĐČŃ‹ĐŽĐ”Đ»Đ”ĐœĐœĐŸĐ” ĐČĐČДрх ĐŸĐșĐœĐ°. - + &Delete From Service &ĐŁĐŽĐ°Đ»ĐžŃ‚ŃŒ Оз ŃĐ»ŃƒĐ¶Đ”ĐœĐžŃ - + Delete the selected item from the service. ĐŁĐŽĐ°Đ»ĐžŃ‚ŃŒ ĐČŃ‹Đ±Ń€Đ°ĐœĐœŃ‹Đč ĐŸĐ±ŃŠĐ”Đșт Оз ŃĐ»ŃƒĐ¶Đ”ĐœĐžŃ. - + &Expand all &Расшороть ĐČсД - + Expand all the service items. Расшороть ĐČсД ĐŸĐ±ŃŠĐ”Đșты ŃĐ»ŃƒĐ¶Đ”ĐœĐžŃ. - + &Collapse all &ĐĄĐČĐ”Ń€ĐœŃƒŃ‚ŃŒ ĐČсД - + Collapse all the service items. ĐĄĐČĐ”Ń€ĐœŃƒŃ‚ŃŒ ĐČсД ĐŸĐ±ŃŠĐ”Đșты ŃĐ»ŃƒĐ¶Đ”ĐœĐžŃ. - + Go Live ĐŸĐŸĐșĐ°Đ·Đ°Ń‚ŃŒ - + Send the selected item to Live. ĐŸĐŸĐșĐ°Đ·Đ°Ń‚ŃŒ ĐČŃ‹Đ±Ń€Đ°ĐœĐœŃ‹Đč ĐŸĐ±ŃŠĐ”Đșт. - + &Add New Item &Đ”ĐŸĐ±Đ°ĐČоть ĐœĐŸĐČыĐč ŃĐ»Đ”ĐŒĐ”ĐœŃ‚ - + &Add to Selected Item &Đ”ĐŸĐ±Đ°ĐČоть Đș ĐČŃ‹Đ±Ń€Đ°ĐœĐœĐŸĐŒŃƒ ŃĐ»Đ”ĐŒĐ”ĐœŃ‚Ńƒ - + &Edit Item &Đ˜Đ·ĐŒĐ”ĐœĐžŃ‚ŃŒ ŃĐ»Đ”ĐŒĐ”ĐœŃ‚ - + &Reorder Item &ĐŁĐżĐŸŃ€ŃĐŽĐŸŃ‡ĐžŃ‚ŃŒ ŃĐ»Đ”ĐŒĐ”ĐœŃ‚Ń‹ - + &Notes &Đ—Đ°ĐŒĐ”Ń‚ĐșĐž - + &Change Item Theme &Đ˜Đ·ĐŒĐ”ĐœĐžŃ‚ŃŒ Ń‚Đ”ĐŒŃƒ ŃĐ»Đ”ĐŒĐ”ĐœŃ‚Đ° - + Open File ОтĐșрыть фаĐčĐ» - + OpenLP Service Files (*.osz) ОтĐșрыть фаĐčĐ» ŃĐ»ŃƒĐ¶Đ”ĐœĐžŃ OpenLP (*.osz) - + Modified Service Đ˜Đ·ĐŒĐ”ĐœĐ”ĐœĐœĐŸĐ” ŃĐ»ŃƒĐ¶Đ”ĐœĐžĐ” - + File is not a valid service. The content encoding is not UTF-8. ЀаĐčĐ» ĐœĐ” яĐČĐ»ŃĐ”Ń‚ŃŃ праĐČĐžĐ»ŃŒĐœŃ‹ĐŒ ŃĐ»ŃƒĐ¶Đ”ĐœĐžĐ”ĐŒ. Đ€ĐŸŃ€ĐŒĐ°Ń‚ ĐșĐŸĐŽĐžŃ€ĐŸĐČĐ°ĐœĐžŃ ĐœĐ” 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 Đ­Đ»Đ”ĐŒĐ”ĐœŃ‚ ŃĐ»ŃƒĐ¶Đ”ĐœĐžŃ ĐœĐ” ĐŒĐŸĐ¶Đ”Ń‚ Đ±Ń‹Ń‚ŃŒ ĐżĐŸĐșĐ°Đ·Đ°Đœ, ĐżĐŸŃĐșĐŸĐ»ŃŒĐșу Ń‚Ń€Đ”Đ±ŃƒĐ”ĐŒŃ‹Đč ĐżĐ»Đ°ĐłĐžĐœ ĐŸŃ‚ŃŃƒŃ‚ŃŃ‚ĐČŃƒĐ”Ń‚ ОлО ĐŸŃ‚ĐșĐ»ŃŽŃ‡Đ”Đœ - + &Start Time &Đ’Ń€Đ”ĐŒŃ ĐœĐ°Ń‡Đ°Đ»Đ° - + Show &Preview ĐŸĐŸĐșĐ°Đ·Đ°Ń‚ŃŒ &ĐŸŃ€ĐŸŃĐŒĐŸŃ‚Ń€ - + Show &Live ĐŸĐŸĐșĐ°Đ·Đ°Ń‚ŃŒ &ĐœĐ° ĐżŃ€ĐŸĐ”ĐșŃ‚ĐŸŃ€ - + The current service has been modified. Would you like to save this service? йДĐșŃƒŃ‰Đ”Đ” ŃĐ»ŃƒĐ¶Đ”ĐœĐžĐ” Đ±Ń‹Đ»ĐŸ ĐžĐ·ĐŒĐ”ĐœĐ”ĐœĐŸ. Вы Ń…ĐŸŃ‚ĐžŃ‚Đ” ŃĐŸŃ…Ń€Đ°ĐœĐžŃ‚ŃŒ ŃŃ‚ĐŸ ŃĐ»ŃƒĐ¶Đ”ĐœĐžĐ”? - + File could not be opened because it is corrupt. ЀаĐčĐ» ĐœĐ” ĐŒĐŸĐ¶Đ”Ń‚ Đ±Ń‹Ń‚ŃŒ ĐŸŃ‚Đșрыт, ĐżĐŸŃĐșĐŸĐ»ŃŒĐșу ĐŸĐœ ĐżĐŸĐČŃ€Đ”Đ¶ĐŽĐ”Đœ. - + Empty File ĐŸŃƒŃŃ‚ĐŸĐč фаĐčĐ» - + This service file does not contain any data. ЀаĐčĐ» ŃĐ»ŃƒĐ¶Đ”ĐœĐžŃ ĐœĐ” ŃĐŸĐŽĐ”Ń€Đ¶ĐžŃ‚ ĐŽĐ°ĐœĐœŃ‹Ń…. - + Corrupt File ĐŸĐŸĐČŃ€Đ”Đ¶ĐŽĐ”ĐœĐœŃ‹Đč фаĐčĐ» @@ -3256,42 +3256,42 @@ The content encoding is not UTF-8. Đ’Ń€Đ”ĐŒŃ огры: - + Untitled Service ĐĄĐ»ŃƒĐ¶Đ”ĐœĐžĐ” бДз ĐœĐ°Đ·ĐČĐ°ĐœĐžŃ - + Load an existing service. Đ—Đ°ĐłŃ€ŃƒĐ·ĐžŃ‚ŃŒ ŃŃƒŃ‰Đ”ŃŃ‚ĐČŃƒŃŽŃ‰Đ”Đ” ŃĐ»ŃƒĐ¶Đ”ĐœĐžĐ”. - + Save this service. ĐĄĐŸŃ…Ń€Đ°ĐœĐžŃ‚ŃŒ ŃŃ‚ĐŸ ŃĐ»ŃƒĐ¶Đ”ĐœĐžĐ”. - + Select a theme for the service. Đ’Ń‹Đ±Ń€Đ°Ń‚ŃŒ Ń‚Đ”ĐŒŃƒ ĐŽĐ»Ń ŃĐ»ŃƒĐ¶Đ”ĐœĐžŃ. - + This file is either corrupt or it is not an OpenLP 2.0 service file. Đ­Ń‚ĐŸŃ‚ фаĐčĐ» ĐżĐŸĐČŃ€Đ”Đ¶ĐŽĐ”Đœ ОлО ĐœĐ” яĐČĐ»ŃĐ”Ń‚ŃŃ фаĐčĐ»ĐŸĐŒ ŃĐ»ŃƒĐ¶Đ”ĐœĐžŃ OpenLP 2.0. - + Slide theme ĐąĐ”ĐŒĐ° слаĐčĐŽĐ° - + Notes Đ—Đ°ĐŒĐ”Ń‚ĐșĐž - + Service File Missing ЀаĐčĐ» ŃĐ»ŃƒĐ¶Đ”ĐœĐžŃ ĐŸŃ‚ŃŃƒŃ‚ŃŃ‚ĐČŃƒĐ”Ń‚ @@ -3418,17 +3418,17 @@ The content encoding is not UTF-8. ĐŸĐ”Ń€Đ”Đčто Đș - + Previous Service ĐŸŃ€Đ”ĐŽŃ‹ĐŽŃƒŃ‰Đ”Đ” ŃĐ»ŃƒĐ¶Đ”ĐœĐžĐ” - + Next Service ĐĄĐ»Đ”ĐŽŃƒŃŽŃ‰Đ”Đ” ŃĐ»ŃƒĐ¶Đ”ĐœĐžĐ” - + Escape Item @@ -3548,36 +3548,51 @@ The content encoding is not UTF-8. Start time is after the finish time of the media item Đ’Ń€Đ”ĐŒŃ ĐœĐ°Ń‡Đ°Đ»ĐŸ Đ±ĐŸĐ»ŃŒŃˆĐ” ĐŽĐ»ĐžŃ‚Đ”Đ»ŃŒĐœĐŸŃŃ‚Đž ĐŒĐ”ĐŽĐžĐ° фаĐčла + + + Theme Layout + + + + + The blue box shows the main area. + + + + + The red box shows the footer. + + OpenLP.ThemeForm - + Select Image Đ’Ń‹Đ±Ń€Đ°Ń‚ŃŒ ĐžĐ·ĐŸĐ±Ń€Đ°Đ¶Đ”ĐœĐžĐ” - + Theme Name Missing ĐĐ°Đ·ĐČĐ°ĐœĐžĐ” Ń‚Đ”ĐŒŃ‹ ĐŸŃ‚ŃŃƒŃ‚ŃŃ‚ĐČŃƒĐ”Ń‚ - + There is no name for this theme. Please enter one. ĐĐ” уĐșĐ°Đ·Đ°ĐœĐŸ ĐœĐ°Đ·ĐČĐ°ĐœĐžĐ” Ń‚Đ”ĐŒŃ‹. ĐŁĐșажОтД Đ”ĐłĐŸ. - + Theme Name Invalid ĐĐ°Đ·ĐČĐ°ĐœĐžĐ” Ń‚Đ”ĐŒŃ‹ ĐœĐ”ĐżŃ€Đ°ĐČĐžĐ»ŃŒĐœĐŸĐ” - + Invalid theme name. Please enter one. НаĐČĐ”Ń€ĐœĐŸĐ” ĐœĐ°Đ·ĐČĐ°ĐœĐžĐ” Ń‚Đ”ĐŒŃ‹. ИспраĐČŃŒŃ‚Đ” Đ”ĐłĐŸ. - + (approximately %d lines per slide) (ĐżŃ€ĐžĐ±Đ»ĐžĐ·ĐžŃ‚Đ”Đ»ŃŒĐœĐŸ %d ŃŃ‚Ń€ĐŸĐș ĐœĐ° слаĐčĐŽ) @@ -3735,34 +3750,34 @@ The content encoding is not UTF-8. ВыбДрОтД фаĐčĐ» Ń‚Đ”ĐŒŃ‹ ĐŽĐ»Ń ĐžĐŒĐżĐŸŃ€Ń‚Đ° - + File is not a valid theme. The content encoding is not UTF-8. ЀаĐčĐ» Ń‚Đ”ĐŒŃ‹ ĐœĐ” ĐČĐ”Ń€ĐœŃ‹Đč. ĐĄĐŸĐŽĐ”Ń€Đ¶ĐžĐŒĐŸĐ” ĐșĐŸĐœŃ‚Đ”ĐœŃ‚Đ° ĐœĐ” ĐżĐŸŃ…ĐŸĐ¶Đ” ĐœĐ° UTF-8. - + Validation Error ĐžŃˆĐžĐ±ĐșĐ° ĐŸŃ€ĐŸĐČДрĐșĐž - + File is not a valid theme. ЀаĐčĐ» ĐœĐ” яĐČĐ»ŃĐ”Ń‚ŃŃ Ń‚Đ”ĐŒĐŸĐč. - + A theme with this name already exists. ĐąĐ”ĐŒĐ° с ĐżĐŸĐŽĐŸĐ±ĐœŃ‹ĐŒ ĐžĐŒĐ”ĐœĐ”ĐŒ ужД ŃŃƒŃ‰Đ”ŃŃ‚ĐČŃƒĐ”Ń‚. - + You are unable to delete the default theme. Вы ĐœĐ” ĐŒĐŸĐ¶Đ”Ń‚Đ” ŃƒĐŽĐ°Đ»ĐžŃ‚ŃŒ Ń‚Đ”ĐŒŃƒ ĐœĐ°Đ·ĐœĐ°Ń‡Đ”ĐœĐœŃƒŃŽ ĐżĐŸ ŃƒĐŒĐŸĐ»Ń‡Đ°ĐœĐžŃŽ. - + Theme %s is used in the %s plugin. ĐąĐ”ĐŒĐ° %s ĐžŃĐżĐŸĐ»ŃŒĐ·ŃƒĐ”Ń‚ŃŃ ĐČ ĐżĐ»Đ°ĐłĐžĐœĐ” %s. @@ -3781,260 +3796,270 @@ The content encoding is not UTF-8. OpenLP.ThemeWizard - + Edit Theme - %s Đ˜Đ·ĐŒĐ”ĐœĐžŃ‚ŃŒ Ń‚Đ”ĐŒŃƒ - %s - + Theme Wizard ĐœĐ°ŃŃ‚Đ”Ń€ ĐąĐ”ĐŒ - + Welcome to the Theme Wizard Đ”ĐŸĐ±Ń€ĐŸ ĐżĐŸĐ¶Đ°Đ»ĐŸĐČать ĐČ ĐœĐ°ŃŃ‚Đ”Ń€ ĐąĐ”ĐŒ - + This wizard will help you to create and edit your themes. Click the next button below to start the process by setting up your background. Đ­Ń‚ĐŸŃ‚ ĐŒĐ°ŃŃ‚Đ”Ń€ ĐżĐŸĐŒĐŸĐ¶Đ”Ń‚ ĐČĐ°ĐŒ ŃĐŸĐ·ĐŽĐ°Ń‚ŃŒ Đž ĐžĐ·ĐŒĐ”ĐœĐžŃ‚ŃŒ Ń‚Đ”ĐŒŃ‹. ВыбДрОтД ĐșĐœĐŸĐżĐșу ДалДД Ń‡Ń‚ĐŸĐ±Ń‹ ĐœĐ°Ń‡Đ°Ń‚ŃŒ ĐżŃ€ĐŸŃ†Đ”ŃŃ ĐœĐ°ŃŃ‚Ń€ĐŸĐčĐșĐž Ń‚Đ”ĐŒŃ‹. - + Set Up Background Đ’Ń‹Đ±ĐŸŃ€ Ń„ĐŸĐœĐ° - + Set up your theme's background according to the parameters below. ĐŁŃŃ‚Đ°ĐœĐŸĐČОтД Ń„ĐŸĐœ Ń‚Đ”ĐŒŃ‹ ĐČ ŃĐŸĐŸŃ‚ĐČДтстĐČОО с ĐżĐ°Ń€Đ°ĐŒĐ”Ń‚Ń€Đ°ĐŒĐž. - + Background type: йОп Ń„ĐŸĐœĐ°: - + Solid Color ĐĄĐżĐ»ĐŸŃˆĐœĐ°Ń залОĐČĐșĐ° - + Gradient Đ“Ń€Đ°ĐŽĐžĐ”ĐœŃ‚ - + Color: ĐŠĐČДт: - + Gradient: Đ“Ń€Đ°ĐŽĐžĐ”ĐœŃ‚: - + Horizontal Đ“ĐŸŃ€ĐžĐ·ĐŸĐœŃ‚Đ°Đ»ŃŒĐœŃ‹Đč - + Vertical ВДртОĐșĐ°Đ»ŃŒĐœŃ‹Đč - + Circular ĐšŃ€ŃƒĐłĐŸĐČĐŸĐč - + Top Left - Bottom Right ВДрх слДĐČĐ° - ĐœĐžĐ· спраĐČĐ° - + Bottom Left - Top Right ĐĐžĐ· слДĐČĐ° - ĐČДрх спраĐČĐ° - + Main Area Font Details йрофт ĐŸŃĐœĐŸĐČĐœĐŸĐč ĐŸĐ±Đ»Đ°ŃŃ‚Đž - + Define the font and display characteristics for the Display text ОпрДЎДлОтД шрофт Đž хараĐșтДрОстОĐșĐž ĐŽĐžŃĐżĐ»Đ”Ń - + Font: йрофт: - + Size: Đ Đ°Đ·ĐŒĐ”Ń€: - + Line Spacing: Đ˜ĐœŃ‚Đ”Ń€ĐČĐ°Đ»: - + &Outline: &ĐšĐŸĐœŃ‚ŃƒŃ€: - + &Shadow: &ĐąĐ”ĐœŃŒ: - + Bold Đ–ĐžŃ€ĐœŃ‹Đč - + Italic КурсоĐČ - + Footer Area Font Details ĐĐ°ŃŃ‚Ń€ĐŸĐčĐșĐž шрофта ĐżĐŸĐŽĐżĐžŃĐž - + Define the font and display characteristics for the Footer text ОпрДЎДлОтД шрофт ĐŽĐ»Ń ĐżĐŸĐŽĐżĐžŃĐž - + Text Formatting Details ĐĐ°ŃŃ‚Ń€ĐŸĐčĐșĐž Ń„ĐŸŃ€ĐŒĐ°Ń‚ĐžŃ€ĐŸĐČĐ°ĐœĐžŃ Ń‚Đ”Đșста - + Allows additional display formatting information to be defined Đ Đ°Đ·Ń€Đ”ŃˆĐžŃ‚ŃŒ ĐŽĐŸĐżĐŸĐ»ĐœĐžŃ‚Đ”Đ»ŃŒĐœŃ‹Đ” ĐœĐ°ŃŃ‚Ń€ĐŸĐčĐșĐž Ń„ĐŸŃ€ĐŒĐ°Ń‚ĐžŃ€ĐŸĐČĐ°ĐœĐžŃ - + Horizontal Align: Đ“ĐŸŃ€ĐžĐ·ĐŸĐœŃ‚Đ°Đ»ŃŒĐœĐ°Ń проĐČŃĐ·ĐșĐ°: - + Left ХлДĐČĐ° - + Right СпраĐČĐ° - + Center ĐŸĐŸ Ń†Đ”ĐœŃ‚Ń€Ńƒ - + Transitions: ĐŸĐ”Ń€Đ”Ń…ĐŸĐŽŃ‹: - + Output Area Locations Đ Đ°ŃĐżĐŸĐ»ĐŸĐ¶Đ”ĐœĐžĐ” ĐŸĐ±Đ»Đ°ŃŃ‚Đž ĐČыĐČĐŸĐŽĐ° - + Allows you to change and move the main and footer areas. Đ Đ°Đ·Ń€Đ”ŃˆĐžŃ‚ŃŒ ĐžĐ·ĐŒĐ”ĐœŃŃ‚ŃŒ Đž ĐżĐ”Ń€Đ”ĐŒĐ”Ń‰Đ°Ń‚ŃŒ ĐŸŃĐœĐŸĐČĐœŃƒŃŽ ĐŸĐ±Đ»Đ°ŃŃ‚ŃŒ Đž ĐŸĐ±Đ»Đ°ŃŃ‚ŃŒ ĐČыĐČĐŸĐŽĐ°. - + &Main Area &ĐžŃĐœĐŸĐČĐœĐ°Ń ĐŸĐ±Đ»Đ°ŃŃ‚ŃŒ - + &Use default location &Đ˜ŃĐżĐŸĐ»ŃŒĐ·ĐŸĐČать ĐżĐŸĐ»ĐŸĐ¶Đ”ĐœĐžĐ” ĐżĐŸ ŃƒĐŒĐŸĐ»Ń‡Đ°ĐœĐžŃŽ - + X position: ĐŸĐŸĐ·ĐžŃ†ĐžŃ Đ„: - + px px - + Y position: ĐŸĐŸĐ·ĐžŃ†ĐžŃ Y: - + Width: ĐšĐžŃ€ĐžĐœĐ°: - + Height: Đ’Ń‹ŃĐŸŃ‚Đ°: - + &Footer Area &ĐžĐ±Đ»Đ°ŃŃ‚ŃŒ ĐżĐŸĐŽĐżĐžŃĐž - + Use default location Đ˜ŃĐżĐŸĐ»ŃŒĐ·ĐŸĐČать Ń€Đ°ŃĐżĐŸĐ»ĐŸĐ¶Đ”ĐœĐžĐ” ĐżĐŸ ŃƒĐŒĐŸĐ»Ń‡Đ°ĐœĐžŃŽ - + Save and Preview ĐĄĐŸŃ…Ń€Đ°ĐœĐžŃ‚ŃŒ Đž ĐżŃ€ĐŸŃĐŒĐŸŃ‚Ń€Đ”Ń‚ŃŒ - + View the theme and save it replacing the current one or change the name to create a new theme ĐŸŃ€ĐŸŃĐŒĐŸŃ‚Ń€Đ”Ń‚ŃŒ Ń‚Đ”ĐŒŃƒ Đž ŃĐŸŃ…Ń€Đ°ĐœĐžŃ‚ŃŒ ДД Đ·Đ°ĐŒĐ”ĐœŃŃ Ń‚Đ”Đșущую ОлО ĐžĐ·ĐŒĐ”ĐœĐžŃ‚ŃŒ ĐœĐ°Đ·ĐČĐ°ĐœĐžĐ” ŃĐŸĐ·ĐŽĐ°ĐČ ĐœĐŸĐČую Ń‚Đ”ĐŒŃƒ - + Theme name: ĐĐ°Đ·ĐČĐ°ĐœĐžĐ” Ń‚Đ”ĐŒŃ‹: - + Starting color: ĐĐ°Ń‡Đ°Đ»ŃŒĐœŃ‹Đč цĐČДт: - + Ending color: ĐšĐŸĐœĐ”Ń‡ĐœŃ‹Đč цĐČДт: - + Background color: ĐŠĐČДт Ń„ĐŸĐœĐ°: + + + Justify + + + + + Layout Preview + + OpenLP.ThemesTab @@ -4679,52 +4704,52 @@ The content encoding is not UTF-8. PresentationPlugin.MediaItem - + Select Presentation(s) - + Automatic - + Present using: - + Presentations (%s) - + File Exists - + A presentation with that filename already exists. - + This type of presentation is not supported. - + Missing Presentation - + The Presentation %s is incomplete, please reload. - + The Presentation %s no longer exists. @@ -4869,30 +4894,35 @@ The content encoding is not UTF-8. RemotePlugin.RemoteTab - + Server Settings - + Serve on IP address: - + Port number: - + Remote URL: - + Stage view URL: + + + Display stage time in 12h format + + SongUsagePlugin @@ -4983,7 +5013,7 @@ The content encoding is not UTF-8. SongUsagePlugin.SongUsageDeleteForm - + Delete Song Usage Data ĐŁĐŽĐ°Đ»ĐžŃ‚ŃŒ ĐŽĐ°ĐœĐœŃ‹Đ” ĐžŃĐżĐŸĐ»ŃŒĐ·ĐŸĐČĐ°ĐœĐžŃ ĐżĐ”ŃĐ”Đœ @@ -5008,7 +5038,7 @@ The content encoding is not UTF-8. ВсД Đ·Đ°ĐżŃ€ĐŸŃŃ‹ былО ŃƒŃĐżĐ”ŃˆĐœĐŸ ŃƒĐŽĐ°Đ»Đ”ĐœŃ‹. - + Select the date up to which the song usage data should be deleted. All data recorded before this date will be permanently deleted. @@ -5634,100 +5664,110 @@ The encoding is responsible for the correct character representation. Đ­Ń‚ĐŸŃ‚ ĐœĐ°ŃŃ‚Đ”Ń€ ĐżĐŸĐŒĐŸĐ¶Đ”Ń‚ Đ’Đ°ĐŒ ĐžĐŒĐżĐŸŃ€Ń‚ĐžŃ€ĐŸĐČать ĐżĐ”ŃĐœĐž Оз Ń€Đ°Đ·Đ»ĐžŃ‡ĐœŃ‹Ń… Ń„ĐŸŃ€ĐŒĐ°Ń‚ĐŸĐČ. ВыбДрОтД ĐșĐœĐŸĐżĐșу ДалДД Ń‡Ń‚ĐŸĐ±Ń‹ ĐœĐ°Ń‡Đ°Ń‚ŃŒ ĐżŃ€ĐŸŃ†Đ”ŃŃ ĐČŃ‹Đ±ĐŸŃ€Đ° Ń„ĐŸŃ€ĐŒĐ°Ń‚Đ° ĐŽĐ»Ń ĐžĐŒĐżĐŸŃ€Ń‚Đ°. - + Generic Document/Presentation ОбщОĐč Ń„ĐŸŃ€ĐŒĐ°Ń‚ ОлО ĐżŃ€Đ”Đ·Đ”ĐœŃ‚Đ°Ń†ĐžŃ - + Filename: Đ˜ĐŒŃ фаĐčла: - + Add Files... Đ”ĐŸĐ±Đ°ĐČоть фаĐčлы... - + Remove File(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. - + Please wait while your songs are imported. Đ”ĐŸĐ¶ĐŽĐžŃ‚Đ”ŃŃŒ, ĐżĐŸĐșĐ° ĐżĐ”ŃĐœĐž Đ±ŃƒĐŽŃƒŃ‚ ĐžĐŒĐżĐŸŃ€Ń‚ĐžŃ€ĐŸĐČĐ°ĐœŃ‹. - + OpenLP 2.0 Databases Đ‘Đ°Đ·Đ° ĐŽĐ°ĐœĐœŃ‹Ń… OpenLP 2.0 - + openlp.org v1.x Databases Đ‘Đ°Đ·Đ° ĐŽĐ°ĐœĐœŃ‹Ń… openlp.org v1.x - + Words Of Worship Song Files - + Select Document/Presentation Files ВыбДрОтД фаĐčĐ» ĐŽĐŸĐșŃƒĐŒĐ”ĐœŃ‚Đ° ОлО ĐżŃ€Đ”Đ·Đ”ĐœŃ‚Đ°Ń†ĐžĐž - + You need to specify at least one document or presentation file to import from. Вы ĐŽĐŸĐ»Đ¶ĐœŃ‹ уĐșĐ°Đ·Đ°Ń‚ŃŒ ĐżĐŸ ĐșраĐčĐœĐ”Đč ĐŒĐ”Ń€Đ” ĐŸĐŽĐžĐœ ĐŽĐŸĐșŃƒĐŒĐ”ĐœŃ‚ ОлО ĐżŃ€Đ”Đ·Đ”ĐœŃ‚Đ°Ń†ĐžŃŽ, Ń‡Ń‚ĐŸĐ±Ń‹ ĐŸŃŃƒŃ‰Đ”ŃŃ‚ĐČоть ĐžĐŒĐżĐŸŃ€Ń‚ Оз ĐœĐžŃ…. - + Songs Of Fellowship Song Files ЀаĐčлы ĐżĐ”ŃĐ”Đœ Songs Of Fellowship - + SongBeamer Files ЀаĐčлы SongBeamer - + SongShow Plus Song Files ЀаĐčлы SongShow Plus - + Foilpresenter Song Files Foilpresenter Song Files - + Copy ĐšĐŸĐżĐžŃ€ĐŸĐČать - + Save to File ĐĄĐŸŃ…Ń€Đ°ĐœĐžŃ‚ŃŒ ĐČ Ń„Đ°ĐčĐ» - + The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. - + The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. + + + OpenLyrics or OpenLP 2.0 Exported Song + + + + + OpenLyrics Files + + SongsPlugin.MediaFilesForm @@ -5769,7 +5809,7 @@ The encoding is responsible for the correct character representation. - + CCLI License: Đ›ĐžŃ†Đ”ĐœĐ·ĐžŃ CCLI: @@ -5779,7 +5819,7 @@ The encoding is responsible for the correct character representation. - + copy For song cloning @@ -5804,7 +5844,7 @@ The encoding is responsible for the correct character representation. SongsPlugin.OpenLyricsExport - + Exporting "%s"... Đ­ĐșŃĐżĐŸŃ€Ń‚ĐžŃ€ŃƒŃŽ "%s"... @@ -5876,7 +5916,7 @@ The encoding is responsible for the correct character representation. SongsPlugin.SongImportForm - + Your song import failed. diff --git a/resources/i18n/sv.ts b/resources/i18n/sv.ts index 409540d5b..7f95b4dac 100644 --- a/resources/i18n/sv.ts +++ b/resources/i18n/sv.ts @@ -412,38 +412,38 @@ Changes do not affect verses already in the service. BiblesPlugin.HTTPBible - + Registering Bible and loading books... Registrerar bibel och laddar böcker... - + Registering Language... Registrerar sprĂ„k... - + Importing %s... Importing <book name>... Importerar %s... - + Download Error Fel vid nedladdning - + There was a problem downloading your verse selection. Please check your Internet connection, and if this error continues to occur please consider reporting a bug. Det uppstod problem vid nedladdningen av versurvalet. Kontrollera Internetanslutningen och om problemet Ă„terkommer, övervĂ€g att rapportera det som en bugg. - + Parse Error Fel vid tolkning - + There was a problem extracting your verse selection. If this error continues to occur please consider reporting a bug. Det uppstod problem vid extraherande av vers-urvalet. Om problemet uppstĂ„r igen, övervĂ€g att rapportera det som en bugg. @@ -546,27 +546,27 @@ Changes do not affect verses already in the service. Du mĂ„ste vĂ€lja en fil med bibelverser att importera. - + You need to specify a version name for your Bible. Du mĂ„ste ange ett namn för bibeln. - + Bible Exists Bibeln finns redan - + Your Bible import failed. Bibelimporten misslyckades. - + You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. Du mĂ„ste ange en copyright-text för bibeln. Biblar i public domain mĂ„ste anges som sĂ„dana. - + This Bible already exists. Please import a different Bible or first delete the existing one. Bibeln finns redan. Importera en annan Bibel eller radera den nuvarande. @@ -576,7 +576,7 @@ Changes do not affect verses already in the service. TillstĂ„nd: - + CSV File CSV-fil @@ -601,17 +601,17 @@ Changes do not affect verses already in the service. Versfil: - + openlp.org 1.x Bible Files openlp.org 1.x bibelfiler - + Registering Bible... Registrerar bibel... - + Registered Bible. Please note, that verses will be downloaded on demand and thus an internet connection is required. Bibeln registrerad. Observera att verser kommer att laddas ner @@ -824,7 +824,7 @@ Misslyckades Upgrading Bible %s of %s: "%s" Upgrading ... Uppgraderar bibel %s av %s: "%s" -Uppgraderar... +Uppgraderar ... @@ -836,7 +836,7 @@ Uppgraderar... Upgrading Bible %s of %s: "%s" Upgrading %s ... Uppgraderar bibel %s av %s: "%s" -Uppgraderar %s... +Uppgraderar %s ... @@ -1043,8 +1043,8 @@ Observera att verser frĂ„n webb-biblar kommer att laddas ner vid behov, och dĂ€r Are you sure you want to delete the %n selected custom slides(s)? - Är du sĂ€ker pĂ„ att du vill ta bort den valda uppsĂ€ttningen sidor? - Är du sĂ€ker pĂ„ att du vill ta bort de %n valda uppsĂ€ttningarna sidor? + Är du sĂ€ker pĂ„ att du vill ta bort den valda anpassade diabilden? + Är du sĂ€ker pĂ„ att du vill ta bort de %n valda anpassade diabilderna? @@ -1053,7 +1053,7 @@ Observera att verser frĂ„n webb-biblar kommer att laddas ner vid behov, och dĂ€r <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>Bildmodul</strong><br />Bildmodulen erbjuder visning av bilder.<br />En av funktionerna i modulen Ă€r möjligheten att gruppera bilder i körschemat, vilket gör visning av flera bilder enklare. Modulen kan Ă€ven anvĂ€nda OpenLP:s funktion för tidsstyrd bildvĂ€xling för att skapa ett bildspel som rullar automatiskt. Dessutom kan bilder frĂ„n modulen anvĂ€ndas för att ersĂ€tta det aktuella temats bakgrund, sĂ„ att textbaserade sidor som till exempel sĂ„nger visas med den valda bilden som bakgrund i stĂ€llet för temats bakgrund. + <strong>Bildmodul</strong><br />Bildmodulen erbjuder visning av bilder.<br />En av funktionerna i modulen Ă€r möjligheten att gruppera bilder i körschemat, vilket gör visning av flera bilder enklare. Modulen kan Ă€ven anvĂ€nda OpenLP:s funktion för "tidsstyrd bildvĂ€xling" för att skapa ett bildspel som rullar automatiskt. Dessutom kan bilder frĂ„n modulen anvĂ€ndas för att ersĂ€tta det aktuella temats bakgrund, sĂ„ att textbaserade sidor som till exempel sĂ„nger visas med den valda bilden som bakgrund i stĂ€llet för temats bakgrund. @@ -1112,7 +1112,7 @@ Observera att verser frĂ„n webb-biblar kommer att laddas ner vid behov, och dĂ€r ImagePlugin.ExceptionDialog - + Select Attachment VĂ€lj bilaga @@ -1165,17 +1165,17 @@ Vill du lĂ€gga till dom andra bilderna Ă€ndĂ„? ImagesPlugin.ImageTab - + Background Color BakgrundsfĂ€rg - + Default Color: StandardfĂ€rg: - + Provides border where image is not the correct dimensions for the screen when resized. Visas som fyllning dĂ€r bilden inte har rĂ€tt dimensioner för skĂ€rmen. @@ -1249,7 +1249,7 @@ Vill du lĂ€gga till dom andra bilderna Ă€ndĂ„? VĂ€lj media - + You must select a media file to delete. Du mĂ„ste vĂ€lja en mediafil för borttagning. @@ -1634,7 +1634,7 @@ Del-copyright © 2004-2011 %s LĂ€gg till fil - + Description characters to enter : %s Beskrivningstecken att ange: %s @@ -1642,24 +1642,24 @@ Del-copyright © 2004-2011 %s OpenLP.ExceptionForm - + Platform: %s Plattform: %s - + Save Crash Report Spara kraschrapport - + Text files (*.txt *.log *.text) Textfiler (*.txt *.log *.text) - + **OpenLP Bug Report** Version: %s @@ -1690,7 +1690,7 @@ Version: %s - + *OpenLP Bug Report* Version: %s @@ -1945,7 +1945,7 @@ Version: %s No Internet connection was found. The First Time Wizard needs an Internet connection in order to be able to download sample songs, Bibles and themes. Press the Finish button now to start OpenLP with initial settings and no sample data. To re-run the First Time Wizard and import this sample data at a later time, check your Internet connection and re-run this wizard by selecting "Tools/Re-run First Time Wizard" from OpenLP. - Ingen Internetanslutning kunde hittas. Kom igĂ„ng-guiden behöver en anslutning till Internet för att kunna ladda ner fria sĂ„nger, biblar och teman. Klicka Slutför för att starta OpenLP med grundinstĂ€llningar och utan hĂ€mtad data. + Ingen Internetanslutning kunde hittas. Kom igĂ„ng-guiden behöver en anslutning till Internet för att kunna ladda ner fria sĂ„nger, biblar och teman. Klicka Slutför för att starta OpenLP med grundinstĂ€llningar och utan hĂ€mtad data. För att köra kom igĂ„ng-guiden och importera den hĂ€r datan senare, kontrollera din Internetanslutning och kör den hĂ€r guiden genom att vĂ€lja "Verktyg/Kör kom igĂ„ng-guide" frĂ„n OpenLP. @@ -2579,7 +2579,7 @@ För att avbryta kom igĂ„ng-guiden helt (och inte starta OpenLP), klicka Avbryt 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 av OpenLP Ă€r nu tillgĂ€nglig för hĂ€mtning (du kör för nĂ€rvarande version %s). + Version %s av OpenLP Ă€r nu tillgĂ€nglig för hĂ€mtning (du kör för nĂ€rvarande version %s). Du kan ladda ner den senaste versionen frĂ„n http://openlp.org/. @@ -2760,7 +2760,7 @@ Att importera instĂ€llningar kan leda till ovĂ€ntade beteenden eller att OpenLP OpenLP will now close. Imported settings will be applied the next time you start OpenLP. - OpenLP kommer nu att avslutas. Importerade instĂ€llningar kommer att tillĂ€mpas nĂ€sta gĂ„ng du startar OpenLP. + OpenLP kommer nu att avslutas. Importerade instĂ€llningar kommer att tillĂ€mpas nĂ€sta gĂ„ng du startar OpenLP. @@ -2802,7 +2802,7 @@ Databas: %s OpenLP.MediaManagerItem - + No Items Selected Inga poster valda @@ -2812,42 +2812,42 @@ Databas: %s &LĂ€gg till i vald post i körschemat - + You must select one or more items to preview. Du mĂ„ste vĂ€lja en eller flera poster att förhandsgranska. - + You must select one or more items to send live. Du mĂ„ste vĂ€lja en eller flera poster att visa live. - + You must select one or more items. Du mĂ„ste vĂ€lja en eller flera poster. - + You must select an existing service item to add to. Du mĂ„ste vĂ€lja en befintlig post i körschemat att lĂ€gga till i. - + Invalid Service Item Ogiltig körschemapost - + You must select a %s service item. Du mĂ„ste vĂ€lja en post av typen %s i körschemat. - + You must select one or more items to add. Du mĂ„ste vĂ€lja en eller flera poster att lĂ€gga till. - + No Search Results Inga sökresultat @@ -2990,7 +2990,7 @@ FilĂ€ndelsen stöds ej Service Sheet - Körkschema + Körschema @@ -3024,12 +3024,12 @@ FilĂ€ndelsen stöds ej OpenLP.ServiceItem - + <strong>Start</strong>: %s <strong>Start</strong>: %s - + <strong>Length</strong>: %s <strong>LĂ€ngd</strong>: %s @@ -3045,209 +3045,209 @@ FilĂ€ndelsen stöds ej OpenLP.ServiceManager - + Move to &top LĂ€gg &först - + Move item to the top of the service. LĂ€gg posten först i körschemat. - + Move &up Flytta &upp - + Move item up one position in the service. Flytta upp posten ett steg i körschemat. - + Move &down Flytta &ner - + Move item down one position in the service. Flytta ner posten ett steg i körschemat. - + Move to &bottom LĂ€gg &sist - + Move item to the end of the service. LĂ€gg posten sist i körschemat. - + &Delete From Service &Ta bort frĂ„n körschemat - + Delete the selected item from the service. Ta bort den valda posten frĂ„n körschemat. - + &Add New Item &LĂ€gg till ny post - + &Add to Selected Item LĂ€gg till i &vald post - + &Edit Item &Redigera post - + &Reorder Item Arrangera &om post - + &Notes &Anteckningar - + &Change Item Theme &Byt postens tema - + File is not a valid service. The content encoding is not UTF-8. Filen Ă€r inte ett giltigt körschema. InnehĂ„llets teckenkodning Ă€r inte UTF-8. - + File is not a valid service. Filen Ă€r inte ett giltigt körschema. - + Missing Display Handler Visningsmodul saknas - + Your item cannot be displayed as there is no handler to display it Posten kan inte visas eftersom det inte finns nĂ„gon visningsmodul för att visa den - + Your item cannot be displayed as the plugin required to display it is missing or inactive Posten kan inte visas eftersom modulen som krĂ€vs för att visa den saknas eller Ă€r inaktiv - + &Expand all &Expandera alla - + Expand all the service items. Expandera alla poster i körschemat. - + &Collapse all &FĂ€ll ihop alla - + Collapse all the service items. FĂ€ll ihop alla poster i körschemat. - + Open File Öppna fil - + OpenLP Service Files (*.osz) OpenLP körschemafiler (*.osz) - + Moves the selection down the window. - Flyttar ner urvalet i fönstret + Flyttar urvalet nerĂ„t i fönstret. - + Move up Flytta upp - + Moves the selection up the window. - Flyttar upp urvalet i fönstret + Flyttar urvalet uppĂ„t i fönstret. - + Go Live LĂ€gg ut live-bilden - + Send the selected item to Live. Visa den valda posten live. - + Modified Service Körschemat Ă€ndrat - + &Start Time &Starttid - + Show &Preview &Förhandsgranska - + Show &Live Visa &Live - + The current service has been modified. Would you like to save this service? Det nuvarande körschemat har Ă€ndrats. Vill du spara körschemat? - + File could not be opened because it is corrupt. Filen kunde inte öppnas eftersom den Ă€r korrupt. - + Empty File Tom fil - + This service file does not contain any data. Det hĂ€r körschemat innehĂ„ller inte nĂ„gon data. - + Corrupt File Korrupt fil @@ -3267,42 +3267,42 @@ InnehĂ„llets teckenkodning Ă€r inte UTF-8. Speltid: - + Untitled Service Nytt körschema - + Load an existing service. Ladda ett befintligt körschema. - + Save this service. Spara körschemat. - + Select a theme for the service. VĂ€lj ett tema för körschemat. - + This file is either corrupt or it is not an OpenLP 2.0 service file. Filen Ă€r antingen korrupt eller inte en OpenLP 2.0 körschemafil. - + Slide theme Sidtema - + Notes Anteckningar - + Service File Missing Körschemafil saknas @@ -3429,17 +3429,17 @@ InnehĂ„llets teckenkodning Ă€r inte UTF-8. NĂ€sta sida - + Previous Service FöregĂ„ende post - + Next Service NĂ€sta post - + Escape Item Avbryt post @@ -3559,36 +3559,51 @@ InnehĂ„llets teckenkodning Ă€r inte UTF-8. Start time is after the finish time of the media item Starttiden Ă€r efter mediapostens slut + + + Theme Layout + + + + + The blue box shows the main area. + + + + + The red box shows the footer. + + OpenLP.ThemeForm - + Select Image VĂ€lj bild - + Theme Name Missing Temanamn saknas - + There is no name for this theme. Please enter one. Det finns inget namn pĂ„ temat. Var vĂ€nlig att ange ett. - + Theme Name Invalid Ogiltigt temanamn - + Invalid theme name. Please enter one. Ogiltigt temanamn. Ange ett giltigt namn. - + (approximately %d lines per slide) (ungefĂ€r %d rader per sida) @@ -3666,7 +3681,7 @@ InnehĂ„llets teckenkodning Ă€r inte UTF-8. Du mĂ„ste vĂ€lja ett tema att redigera. - + You are unable to delete the default theme. Du kan inte ta bort standardtemat. @@ -3706,19 +3721,19 @@ InnehĂ„llets teckenkodning Ă€r inte UTF-8. VĂ€lj temafil - + File is not a valid theme. The content encoding is not UTF-8. Filen Ă€r inte ett giltigt tema. InnehĂ„llets teckenkodning Ă€r inte UTF-8. - + File is not a valid theme. Filen Ă€r inte ett giltigt tema. - + Theme %s is used in the %s plugin. Temat %s anvĂ€nds i modulen %s. @@ -3768,12 +3783,12 @@ InnehĂ„llets teckenkodning Ă€r inte UTF-8. Ta bort temat %s? - + Validation Error Valideringsfel - + A theme with this name already exists. Ett tema med det hĂ€r namnet finns redan. @@ -3792,260 +3807,270 @@ InnehĂ„llets teckenkodning Ă€r inte UTF-8. OpenLP.ThemeWizard - + Theme Wizard Temaguiden - + Welcome to the Theme Wizard VĂ€lkommen till temaguiden - + Set Up Background StĂ€ll in bakgrund - + Set up your theme's background according to the parameters below. StĂ€ll in temats bakgrund enligt parametrarna nedan. - + Background type: Bakgrundstyp: - + Solid Color Solid fĂ€rg - + Gradient Gradient - + Color: FĂ€rg: - + Gradient: Gradient: - + Horizontal Horisontell - + Vertical Vertikal - + Circular CirkulĂ€r - + Top Left - Bottom Right Uppe vĂ€nster - nere höger - + Bottom Left - Top Right Nere vĂ€nster - uppe höger - + Main Area Font Details Huvudytans tecken - + Define the font and display characteristics for the Display text Definiera font och egenskaper för visningstexten - + Font: Teckensnitt: - + Size: Storlek: - + Line Spacing: RadavstĂ„nd: - + &Outline: - &Kant + &Kant: - + &Shadow: - Sk&ugga + Sk&ugga: - + Bold Fetstil - + Italic Kursiv - + Footer Area Font Details Sidfotens tecken - + Define the font and display characteristics for the Footer text Definiera font och egenskaper för sidfotstexten - + Text Formatting Details Textformatering - + Allows additional display formatting information to be defined Ytterligare instĂ€llningsmöjligheter för visningsformatet - + Horizontal Align: Horisontell justering: - + Left VĂ€nster - + Right Höger - + Center Centrera - + Output Area Locations Visningsytornas positioner - + Allows you to change and move the main and footer areas. LĂ„ter dig Ă€ndra och flytta huvud- och sidfotsytorna. - + &Main Area &Huvudyta - + &Use default location AnvĂ€nd &standardposition - + X position: X-position: - + px px - + Y position: Y-position: - + Width: Bredd: - + Height: Höjd: - + Use default location AnvĂ€nd standardposition - + Save and Preview Spara och förhandsgranska - + View the theme and save it replacing the current one or change the name to create a new theme Visa temat och spara det under samma namn för att ersĂ€tta det befintliga, eller under nytt namn för att skapa ett nytt tema - + Theme name: Temanamn: - + This wizard will help you to create and edit your themes. Click the next button below to start the process by setting up your background. Den hĂ€r guiden hjĂ€lper dig att skapa och redigera dina teman. Klicka pĂ„ NĂ€sta för att börja processen med att stĂ€lla in bakgrund. - + Transitions: ÖvergĂ„ngar: - + &Footer Area &Sidfotsyta - + Edit Theme - %s Redigera tema - %s - + Starting color: StartfĂ€rg: - + Ending color: SlutfĂ€rg: - + Background color: BakgrundsfĂ€rg: + + + Justify + + + + + Layout Preview + + OpenLP.ThemesTab @@ -4583,7 +4608,7 @@ InnehĂ„llets teckenkodning Ă€r inte UTF-8. Open service. - Öppna körschema + Öppna körschema. @@ -4690,52 +4715,52 @@ InnehĂ„llets teckenkodning Ă€r inte UTF-8. PresentationPlugin.MediaItem - + Select Presentation(s) VĂ€lj presentation(er) - + Automatic Automatiskt - + Present using: Presentera med: - + File Exists Fil finns redan - + A presentation with that filename already exists. En presentation med det namnet finns redan. - + This type of presentation is not supported. Den hĂ€r presentationstypen stöds inte. - + Presentations (%s) Presentationer (%s) - + Missing Presentation Presentation saknas - + The Presentation %s no longer exists. Presentationen %s finns inte lĂ€ngre. - + The Presentation %s is incomplete, please reload. Presentationen %s Ă€r inte komplett; ladda om den. @@ -4880,30 +4905,35 @@ InnehĂ„llets teckenkodning Ă€r inte UTF-8. RemotePlugin.RemoteTab - + Serve on IP address: Kör pĂ„ IP-adress: - + Port number: Portnummer: - + Server Settings ServerinstĂ€llningar - + Remote URL: FjĂ€rrstyrningsadress: - + Stage view URL: Scenvisningsadress: + + + Display stage time in 12h format + + SongUsagePlugin @@ -4994,7 +5024,7 @@ InnehĂ„llets teckenkodning Ă€r inte UTF-8. SongUsagePlugin.SongUsageDeleteForm - + Delete Song Usage Data Ta bort sĂ„nganvĂ€ndningsdata @@ -5016,10 +5046,10 @@ InnehĂ„llets teckenkodning Ă€r inte UTF-8. All requested data has been deleted successfully. - All vald data har tagits bort. + All vald data har tagits bort. - + Select the date up to which the song usage data should be deleted. All data recorded before this date will be permanently deleted. VĂ€lj datum fram till vilket sĂ„nganvĂ€ndningsdatan ska tas bort. All data loggad före det datumet kommer att tas bort permanent. @@ -5068,7 +5098,7 @@ InnehĂ„llets teckenkodning Ă€r inte UTF-8. has been successfully created. Rapport %s -skapades utan problem. +skapades utan problem. @@ -5632,13 +5662,13 @@ Teckenkodningen ansvarar för rĂ€tt teckenrepresentation. This wizard will help to export your songs to the open and free <strong>OpenLyrics</strong> worship song format. - Den hĂ€r guiden hjĂ€lper dig att exportera dina sĂ„nger till det öppna och fria <strong>OpenLyrics</strong>-lovsĂ„ngsformatet. + Den hĂ€r guiden hjĂ€lper dig att exportera dina sĂ„nger till det öppna och fria lovsĂ„ngsformatet <strong>OpenLyrics</strong>. SongsPlugin.ImportWizardForm - + Select Document/Presentation Files VĂ€lj dokument/presentation @@ -5653,95 +5683,105 @@ Teckenkodningen ansvarar för rĂ€tt teckenrepresentation. Den hĂ€r guiden hjĂ€lper dig att importera sĂ„nger frĂ„n en mĂ€ngd olika format. Klicka pĂ„ NĂ€sta för att börja processen med att vĂ€lja ett format att importera frĂ„n. - + Generic Document/Presentation Vanligt dokument/presentation - + Filename: Filnamn: - + Add Files... LĂ€gg till filer... - + Remove File(s) Ta bort fil(er) - + Please wait while your songs are imported. VĂ€nta medan sĂ„ngerna importeras. - + 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. Import av OpenLyrics Ă€r Ă€nnu inte utvecklat, men som du ser avser vi fortfarande att göra det. Förhoppningsvis finns det i nĂ€sta utgĂ„va. - + OpenLP 2.0 Databases OpenLP 2.0-databas - + openlp.org v1.x Databases openlp.org v1.x-databas - + Words Of Worship Song Files Words of Worship-sĂ„ngfiler - + Songs Of Fellowship Song Files Songs of Fellowship-sĂ„ngfiler - + SongBeamer Files SongBeamer-filer - + SongShow Plus Song Files SongShow Plus-sĂ„ngfiler - + You need to specify at least one document or presentation file to import from. Du mĂ„ste ange minst ett dokument eller en presentation att importera frĂ„n. - + Foilpresenter Song Files Foilpresenter-sĂ„ngfiler - + Copy Kopiera - + Save to File Spara till fil - + The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. Import av Songs of Fellowship har inaktiverats eftersom OpenLP inte kan hitta OpenOffice eller LibreOffice. - + The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. Import av vanliga dokument/presentationer har inaktiverats eftersom OpenLP inte hittar OpenOffice eller LibreOffice. + + + OpenLyrics or OpenLP 2.0 Exported Song + + + + + OpenLyrics Files + + SongsPlugin.MediaFilesForm @@ -5769,7 +5809,7 @@ Teckenkodningen ansvarar för rĂ€tt teckenrepresentation. SĂ„ngtext - + CCLI License: CCLI-licens: @@ -5782,8 +5822,8 @@ Teckenkodningen ansvarar för rĂ€tt teckenrepresentation. Are you sure you want to delete the %n selected song(s)? + Är du sĂ€ker pĂ„ att du vill ta bort den valda sĂ„ngen? Är du sĂ€ker pĂ„ att du vill ta bort de %n valda sĂ„ngerna? - @@ -5792,7 +5832,7 @@ Teckenkodningen ansvarar för rĂ€tt teckenrepresentation. UnderhĂ„ll listan över författare, Ă€mnen och böcker. - + copy For song cloning kopia @@ -5817,7 +5857,7 @@ Teckenkodningen ansvarar för rĂ€tt teckenrepresentation. SongsPlugin.OpenLyricsExport - + Exporting "%s"... Exporterar "%s"... @@ -5850,12 +5890,12 @@ Teckenkodningen ansvarar för rĂ€tt teckenrepresentation. Your song export failed. - SĂ„ngexporten misslyckades + SĂ„ngexporten misslyckades. Finished export. To import these files use the <strong>OpenLyrics</strong> importer. - Exporten Ă€r slutförd. För att importera filerna, anvĂ€nd <OpenLyrics</strong>-import. + Exporten Ă€r slutförd. För att importera filerna, anvĂ€nd importen <strong>OpenLyrics</strong>. @@ -5889,7 +5929,7 @@ Teckenkodningen ansvarar för rĂ€tt teckenrepresentation. SongsPlugin.SongImportForm - + Your song import failed. SĂ„ngimporten misslyckades. diff --git a/resources/i18n/zh_CN.ts b/resources/i18n/zh_CN.ts index 38d5d28e8..532c64720 100644 --- a/resources/i18n/zh_CN.ts +++ b/resources/i18n/zh_CN.ts @@ -401,38 +401,38 @@ Changes do not affect verses already in the service. BiblesPlugin.HTTPBible - + Registering Bible and loading books... - + Registering Language... - + Importing %s... Importing <book name>... - + Download Error - + There was a problem downloading your verse selection. Please check your Internet connection, and if this error continues to occur please consider reporting a bug. - + Parse Error - + There was a problem extracting your verse selection. If this error continues to occur please consider reporting a bug. @@ -535,32 +535,32 @@ Changes do not affect verses already in the service. - + You need to specify a version name for your Bible. - + 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. - + Your Bible import failed. - + CSV File @@ -590,17 +590,17 @@ Changes do not affect verses already in the service. - + openlp.org 1.x Bible Files - + Registering Bible... - + Registered Bible. Please note, that verses will be downloaded on demand and thus an internet connection is required. @@ -1093,7 +1093,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I ImagePlugin.ExceptionDialog - + Select Attachment @@ -1145,17 +1145,17 @@ Do you want to add the other images anyway? ImagesPlugin.ImageTab - + Background Color - + Default Color: - + Provides border where image is not the correct dimensions for the screen when resized. @@ -1229,7 +1229,7 @@ Do you want to add the other images anyway? - + You must select a media file to delete. @@ -1544,7 +1544,7 @@ Portions copyright © 2004-2011 %s - + Description characters to enter : %s @@ -1552,23 +1552,23 @@ Portions copyright © 2004-2011 %s OpenLP.ExceptionForm - + Platform: %s - + Save Crash Report - + Text files (*.txt *.log *.text) - + **OpenLP Bug Report** Version: %s @@ -1586,7 +1586,7 @@ Version: %s - + *OpenLP Bug Report* Version: %s @@ -2669,7 +2669,7 @@ Database: %s OpenLP.MediaManagerItem - + No Items Selected @@ -2679,42 +2679,42 @@ Database: %s - + 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. - + You must select an existing service item to add to. - + Invalid Service Item - + You must select a %s service item. - + You must select one or more items to add. - + No Search Results @@ -2890,12 +2890,12 @@ Suffix not supported OpenLP.ServiceItem - + <strong>Start</strong>: %s - + <strong>Length</strong>: %s @@ -2911,208 +2911,208 @@ Suffix not supported OpenLP.ServiceManager - + Move to &top - + Move item to the top of the service. - + Move &up - + Move item up one position in the service. - + Move &down - + Move item down one position in the service. - + Move to &bottom - + Move item to the end of the service. - + &Delete From Service - + Delete the selected item from the service. - + &Add New Item - + &Add to Selected Item - + &Edit Item - + &Reorder Item - + &Notes - + &Change Item Theme - + OpenLP Service Files (*.osz) - + 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 - + &Expand all - + Expand all the service items. - + &Collapse all - + Collapse all the service items. - + Open File - + Moves the selection down the window. - + Move up - + Moves the selection up the window. - + Go Live - + Send the selected item to Live. - + &Start Time - + Show &Preview - + Show &Live - + Modified Service - + The current service has been modified. Would you like to save this service? - + File could not be opened because it is corrupt. - + Empty File - + This service file does not contain any data. - + Corrupt File @@ -3132,42 +3132,42 @@ The content encoding is not UTF-8. - + Untitled Service - + Load an existing service. - + Save this service. - + Select a theme for the service. - + This file is either corrupt or it is not an OpenLP 2.0 service file. - + Slide theme - + Notes - + Service File Missing @@ -3294,17 +3294,17 @@ The content encoding is not UTF-8. - + Previous Service - + Next Service - + Escape Item @@ -3424,36 +3424,51 @@ The content encoding is not UTF-8. Start time is after the finish time of the media item + + + Theme Layout + + + + + The blue box shows the main area. + + + + + The red box shows the footer. + + OpenLP.ThemeForm - + Select Image - + Theme Name Missing - + There is no name for this theme. Please enter one. - + Theme Name Invalid - + Invalid theme name. Please enter one. - + (approximately %d lines per slide) @@ -3531,12 +3546,12 @@ The content encoding is not UTF-8. - + You are unable to delete the default theme. - + Theme %s is used in the %s plugin. @@ -3576,13 +3591,13 @@ 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. @@ -3632,12 +3647,12 @@ The content encoding is not UTF-8. - + Validation Error - + A theme with this name already exists. @@ -3656,260 +3671,270 @@ The content encoding is not UTF-8. OpenLP.ThemeWizard - + Theme Wizard - + Welcome to the Theme Wizard - + Set Up Background - + Set up your theme's background according to the parameters below. - + Background type: - + Solid Color - + Gradient - + Color: - + Gradient: - + Horizontal - + Vertical - + Circular - + Top Left - Bottom Right - + Bottom Left - Top Right - + Main Area Font Details - + Define the font and display characteristics for the Display text - + Font: - + Size: - + Line Spacing: - + &Outline: - + &Shadow: - + Bold - + Italic - + Footer Area Font Details - + Define the font and display characteristics for the Footer text - + Text Formatting Details - + Allows additional display formatting information to be defined - + Horizontal Align: - + Left - + Right - + Center - + Output Area Locations - + Allows you to change and move the main and footer areas. - + &Main Area - + &Use default location - + X position: - + px - + Y position: - + Width: - + Height: - + Use default location - + Save and Preview - + View the theme and save it replacing the current one or change the name to create a new theme - + Theme name: - + Edit Theme - %s - + This wizard will help you to create and edit your themes. Click the next button below to start the process by setting up your background. - + Transitions: - + &Footer Area - + Starting color: - + Ending color: - + Background color: + + + Justify + + + + + Layout Preview + + OpenLP.ThemesTab @@ -4554,52 +4579,52 @@ The content encoding is not UTF-8. PresentationPlugin.MediaItem - + Select Presentation(s) - + Automatic - + Present using: - + File Exists - + A presentation with that filename already exists. - + This type of presentation is not supported. - + Presentations (%s) - + Missing Presentation - + The Presentation %s no longer exists. - + The Presentation %s is incomplete, please reload. @@ -4744,30 +4769,35 @@ The content encoding is not UTF-8. RemotePlugin.RemoteTab - + Serve on IP address: - + Port number: - + Server Settings - + Remote URL: - + Stage view URL: + + + Display stage time in 12h format + + SongUsagePlugin @@ -4858,7 +4888,7 @@ The content encoding is not UTF-8. SongUsagePlugin.SongUsageDeleteForm - + Delete Song Usage Data @@ -4883,7 +4913,7 @@ The content encoding is not UTF-8. - + Select the date up to which the song usage data should be deleted. All data recorded before this date will be permanently deleted. @@ -5495,7 +5525,7 @@ The encoding is responsible for the correct character representation. SongsPlugin.ImportWizardForm - + Select Document/Presentation Files @@ -5510,95 +5540,105 @@ The encoding is responsible for the correct character representation. - + Generic Document/Presentation - + Filename: - + 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) - + Please wait while your songs are imported. - + OpenLP 2.0 Databases - + openlp.org v1.x Databases - + Words Of Worship Song Files - + You need to specify at least one document or presentation file to import from. - + Songs Of Fellowship Song Files - + SongBeamer Files - + SongShow Plus Song Files - + Foilpresenter Song Files - + Copy - + Save to File - + The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. - + The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. + + + OpenLyrics or OpenLP 2.0 Exported Song + + + + + OpenLyrics Files + + SongsPlugin.MediaFilesForm @@ -5626,7 +5666,7 @@ The encoding is responsible for the correct character representation. - + CCLI License: @@ -5648,7 +5688,7 @@ The encoding is responsible for the correct character representation. - + copy For song cloning @@ -5673,7 +5713,7 @@ The encoding is responsible for the correct character representation. SongsPlugin.OpenLyricsExport - + Exporting "%s"... @@ -5745,7 +5785,7 @@ The encoding is responsible for the correct character representation. SongsPlugin.SongImportForm - + Your song import failed. From 05bf2ec6fa6f3a4bcf83b0c9cc9abd05fed44387 Mon Sep 17 00:00:00 2001 From: Andreas Preikschat Date: Sat, 22 Oct 2011 13:09:01 +0200 Subject: [PATCH 21/24] removed obsolete signals and rearranged the docs --- openlp/core/__init__.py | 2 +- openlp/core/lib/eventreceiver.py | 271 +++++++++--------- openlp/core/ui/maindisplay.py | 6 +- openlp/core/ui/mainwindow.py | 4 +- openlp/core/ui/slidecontroller.py | 20 +- openlp/plugins/alerts/lib/alertsmanager.py | 6 +- .../presentations/lib/messagelistener.py | 8 +- 7 files changed, 157 insertions(+), 160 deletions(-) diff --git a/openlp/core/__init__.py b/openlp/core/__init__.py index 3c8bdfe71..82a30b19f 100644 --- a/openlp/core/__init__.py +++ b/openlp/core/__init__.py @@ -143,7 +143,7 @@ class OpenLP(QtGui.QApplication): u'general/update check', QtCore.QVariant(True)).toBool() if update_check: VersionThread(self.mainWindow).start() - Receiver.send_message(u'maindisplay_blank_check') + Receiver.send_message(u'live_display_blank_check') self.mainWindow.appStartup() DelayStartThread(self.mainWindow).start() # Skip exec_() for gui tests diff --git a/openlp/core/lib/eventreceiver.py b/openlp/core/lib/eventreceiver.py index 2d4134ee3..3970794e4 100644 --- a/openlp/core/lib/eventreceiver.py +++ b/openlp/core/lib/eventreceiver.py @@ -35,193 +35,190 @@ log = logging.getLogger(__name__) class EventReceiver(QtCore.QObject): """ - Class to allow events to be passed from different parts of the - system. This is a private class and should not be used directly - but rather via the Receiver class. + Class to allow events to be passed from different parts of the system. This + is a private class and should not be used directly but rather via the + Receiver class. + + **Mainwindow related and generic signals** + + ``mainwindow_status_text`` + Changes the bottom status bar text on the maindisplay window. + + ``openlp_warning_message`` + Displays a standalone Warning Message. + + ``openlp_error_message`` + Displays a standalone Error Message. + + ``openlp_information_message`` + Displays a standalone Information Message. + + ``cursor_busy`` + Makes the cursor got to a busy form. + + ``cursor_normal`` + Resets the cursor to default. ``openlp_process_events`` - Requests the Application to flush the events queue + Requests the Application to flush the events queue. ``openlp_version_check`` Version has changed so pop up window. + ``openlp_stop_wizard`` + Stops a wizard before completion. + + **Setting related signals** + ``config_updated`` - Informs components the config has changed + Informs components that the config has changed. ``config_screen_changed`` - The display monitor has been changed + The display monitor has been changed. + + **Slidecontroller signals** ``slidecontroller_{live|preview}_next`` - Moves to the next slide + Moves to the next slide. ``slidecontroller_{live|preview}_next_noloop`` - Moves to the next slide without auto advance + Moves to the next slide without auto advance. ``slidecontroller_{live|preview}_previous`` - Moves to the previous slide + Moves to the previous slide. ``slidecontroller_{live|preview}_previous_noloop`` - Moves to the previous slide, without auto advance + Moves to the previous slide, without auto advance. ``slidecontroller_{live|preview}_set`` - Moves to a specific slide, by index + Moves to a specific slide, by index. ``slidecontroller_{live|preview}_started`` - Broadcasts that an item has been made live/previewed + Broadcasts that an item has been made live/previewed. ``slidecontroller_{live|preview}_change`` Informs the slidecontroller that a slide change has occurred and to - update itself + update itself. ``slidecontroller_{live|preview}_changed`` - Broadcasts that the slidecontroller has changed the current slide + Broadcasts that the slidecontroller has changed the current slide. ``slidecontroller_{live|preview}_blank`` - Request that the output screen is blanked + Request that the output screen is blanked. ``slidecontroller_{live|preview}_unblank`` - Request that the output screen is unblanked + Request that the output screen is unblanked. ``slidecontroller_live_spin_delay`` - Pushes out the loop delay + Pushes out the loop delay. ``slidecontroller_live_stop_loop`` - Stop the loop on the main display + Stop the loop on the main display. + + **Servicemanager related signals** ``servicemanager_previous_item`` - Display the previous item in the service + Display the previous item in the service. ``servicemanager_preview_live`` - Requests a Preview item from the Service Manager to update live and - add a new item to the preview panel + Requests a Preview item from the Service Manager to update live and add + a new item to the preview panel. ``servicemanager_next_item`` - Display the next item in the service + Display the next item in the service. ``servicemanager_set_item`` - Go live on a specific item, by index - - ``maindisplay_blank`` - Blank the maindisplay window - - ``maindisplay_hide`` - Hide the maindisplay window - - ``maindisplay_show`` - Return the maindisplay window - - ``maindisplay_active`` - The maindisplay has been made active - - ``maindisplay_status_text`` - Changes the bottom status bar text on the maindisplay window - - ``maindisplay_blank_check`` - Check to see if the blank display message is required - - ``videodisplay_start`` - Open a media item and prepare for playing - - ``videodisplay_play`` - Start playing a media item - - ``videodisplay_pause`` - Pause a media item - - ``videodisplay_stop`` - Stop playing a media item - - ``videodisplay_background`` - Replace the background video - - ``theme_update_list`` - send out message with new themes - - ``theme_update_global`` - Tell the components we have a new global theme - - ``{plugin}_start`` - Requests a plugin to start a external program - Path and file provided in message - - ``{plugin}_first`` - Requests a plugin to handle a first event - - ``{plugin}_previous`` - Requests a plugin to handle a previous event - - ``{plugin}_next`` - Requests a plugin to handle a next event - - ``{plugin}_last`` - Requests a plugin to handle a last event - - ``{plugin}_slide`` - Requests a plugin to handle a go to specific slide event - - ``{plugin}_stop`` - Requests a plugin to handle a stop event - - ``{plugin}_blank`` - Requests a plugin to handle a blank screen event - - ``{plugin}_unblank`` - Requests a plugin to handle an unblank screen event - - ``{plugin}_edit`` - Requests a plugin edit a database item with the key as the payload - - ``{plugin}_edit_clear`` - Editing has been completed - - ``{plugin}_load_list`` - Tells the the plugin to reload the media manager list - - ``{plugin}_preview`` - Tells the plugin it's item can be previewed - - ``{plugin}_add_service_item`` - Ask the plugin to push the selected items to the service item - - ``{plugin}_service_load`` - Ask the plugin to process an individual service item after it has been - loaded + Go live on a specific item, by index. ``service_item_update`` Passes back to the service manager the service item after it has been - processed by the plugin + processed by the plugin. - ``alerts_text`` - Displays an alert message - - ``bibles_nobook`` - Attempt to find book resulted in no match - - ``openlp_stop_wizard`` - Stops a wizard before completion - - ``remotes_poll_request`` - Waits for openlp to do something "interesting" and sends a - remotes_poll_response signal when it does - - ``openlp_warning_message`` - Displays a standalone Warning Message - - ``openlp_error_message`` - Displays a standalone Error Message - - ``openlp_information_message`` - Displays a standalone Information Message - - ``cursor_busy`` - Makes the cursor got to a busy form - - ``cursor_normal`` - Resets the cursor to default + **Display signals** ``update_display_css`` CSS has been updated which needs to be changed on the main display. + **Live Display signals** + + ``live_display_hide`` + Hide the live display. + + ``live_display_show`` + Return the live display. + + ``live_display_active`` + The live display has been made active. + + ``live_display_blank_check`` + Check to see if the blank display message is required. + + **Theme related singlas** + + ``theme_update_list`` + send out message with new themes. + + ``theme_update_global`` + Tell the components we have a new global theme. + + **Plugin specific signals** + + ``{plugin}_start`` + Requests a plugin to start a external program. Path and file have to + be provided in the message. + + ``{plugin}_first`` + Requests a plugin to handle a first event. + + ``{plugin}_previous`` + Requests a plugin to handle a previous event. + + ``{plugin}_next`` + Requests a plugin to handle a next event. + + ``{plugin}_last`` + Requests a plugin to handle a last event. + + ``{plugin}_slide`` + Requests a plugin to handle a go to specific slide event. + + ``{plugin}_stop`` + Requests a plugin to handle a stop event. + + ``{plugin}_blank`` + Requests a plugin to handle a blank screen event. + + ``{plugin}_unblank`` + Requests a plugin to handle an unblank screen event. + + ``{plugin}_edit`` + Requests a plugin edit a database item with the key as the payload. + + ``{plugin}_edit_clear`` + Editing has been completed. + + ``{plugin}_load_list`` + Tells the the plugin to reload the media manager list. + + ``{plugin}_preview`` + Tells the plugin it's item can be previewed. + + ``{plugin}_add_service_item`` + Ask the plugin to push the selected items to the service item. + + ``{plugin}_service_load`` + Ask the plugin to process an individual service item after it has been + loaded. + + ``alerts_text`` + Displays an alert message. + + ``bibles_nobook`` + Attempt to find book resulted in no match. + + ``remotes_poll_request`` + Waits for openlp to do something "interesting" and sends a + ``remotes_poll_response`` signal when it does. """ def __init__(self): diff --git a/openlp/core/ui/maindisplay.py b/openlp/core/ui/maindisplay.py index d2de599f9..aa94454b7 100644 --- a/openlp/core/ui/maindisplay.py +++ b/openlp/core/ui/maindisplay.py @@ -77,9 +77,9 @@ class MainDisplay(QtGui.QGraphicsView): self.setAttribute(QtCore.Qt.WA_DeleteOnClose) if self.isLive: QtCore.QObject.connect(Receiver.get_receiver(), - QtCore.SIGNAL(u'maindisplay_hide'), self.hideDisplay) + QtCore.SIGNAL(u'live_display_hide'), self.hideDisplay) QtCore.QObject.connect(Receiver.get_receiver(), - QtCore.SIGNAL(u'maindisplay_show'), self.showDisplay) + QtCore.SIGNAL(u'live_display_show'), self.showDisplay) QtCore.QObject.connect(Receiver.get_receiver(), QtCore.SIGNAL(u'openlp_phonon_creation'), self.createMediaObject) @@ -570,7 +570,7 @@ class MainDisplay(QtGui.QGraphicsView): self.hideMode = None # Trigger actions when display is active again if self.isLive: - Receiver.send_message(u'maindisplay_active') + Receiver.send_message(u'live_display_active') def __hideMouse(self): # Hide mouse cursor when moved over display if enabled in settings diff --git a/openlp/core/ui/mainwindow.py b/openlp/core/ui/mainwindow.py index 9d58ff82a..47570cd8a 100644 --- a/openlp/core/ui/mainwindow.py +++ b/openlp/core/ui/mainwindow.py @@ -611,11 +611,11 @@ class MainWindow(QtGui.QMainWindow, Ui_MainWindow): QtCore.QObject.connect(Receiver.get_receiver(), QtCore.SIGNAL(u'openlp_version_check'), self.versionNotice) QtCore.QObject.connect(Receiver.get_receiver(), - QtCore.SIGNAL(u'maindisplay_blank_check'), self.blankCheck) + QtCore.SIGNAL(u'live_display_blank_check'), self.blankCheck) QtCore.QObject.connect(Receiver.get_receiver(), QtCore.SIGNAL(u'config_screen_changed'), self.screenChanged) QtCore.QObject.connect(Receiver.get_receiver(), - QtCore.SIGNAL(u'maindisplay_status_text'), self.showStatusMessage) + QtCore.SIGNAL(u'mainwindow_status_text'), self.showStatusMessage) # Media Manager QtCore.QObject.connect(self.mediaToolBox, QtCore.SIGNAL(u'currentChanged(int)'), self.onMediaToolBoxChanged) diff --git a/openlp/core/ui/slidecontroller.py b/openlp/core/ui/slidecontroller.py index 7e6e0d54e..97c30436e 100644 --- a/openlp/core/ui/slidecontroller.py +++ b/openlp/core/ui/slidecontroller.py @@ -743,9 +743,9 @@ class SlideController(QtGui.QWidget): elif display_type == u'blanked': self.onBlankDisplay(True) else: - Receiver.send_message(u'maindisplay_show') + Receiver.send_message(u'live_display_show') else: - Receiver.send_message(u'maindisplay_hide', HideMode.Screen) + Receiver.send_message(u'live_display_hide', HideMode.Screen) def onSlideBlank(self): """ @@ -831,21 +831,21 @@ class SlideController(QtGui.QWidget): if self.serviceItem is not None: if hide_mode: if not self.serviceItem.is_command(): - Receiver.send_message(u'maindisplay_hide', hide_mode) + Receiver.send_message(u'live_display_hide', hide_mode) Receiver.send_message(u'%s_blank' % self.serviceItem.name.lower(), [self.serviceItem, self.isLive, hide_mode]) else: if not self.serviceItem.is_command(): - Receiver.send_message(u'maindisplay_show') + Receiver.send_message(u'live_display_show') Receiver.send_message(u'%s_unblank' % self.serviceItem.name.lower(), [self.serviceItem, self.isLive]) else: if hide_mode: - Receiver.send_message(u'maindisplay_hide', hide_mode) + Receiver.send_message(u'live_display_hide', hide_mode) else: - Receiver.send_message(u'maindisplay_show') + Receiver.send_message(u'live_display_show') def hidePlugin(self, hide): """ @@ -854,21 +854,21 @@ class SlideController(QtGui.QWidget): log.debug(u'hidePlugin %s ', hide) if self.serviceItem is not None: if hide: - Receiver.send_message(u'maindisplay_hide', HideMode.Screen) + Receiver.send_message(u'live_display_hide', HideMode.Screen) Receiver.send_message(u'%s_hide' % self.serviceItem.name.lower(), [self.serviceItem, self.isLive]) else: if not self.serviceItem.is_command(): - Receiver.send_message(u'maindisplay_show') + Receiver.send_message(u'live_display_show') Receiver.send_message(u'%s_unblank' % self.serviceItem.name.lower(), [self.serviceItem, self.isLive]) else: if hide: - Receiver.send_message(u'maindisplay_hide', HideMode.Screen) + Receiver.send_message(u'live_display_hide', HideMode.Screen) else: - Receiver.send_message(u'maindisplay_show') + Receiver.send_message(u'live_display_show') def onSlideSelected(self, start=False): """ diff --git a/openlp/plugins/alerts/lib/alertsmanager.py b/openlp/plugins/alerts/lib/alertsmanager.py index dcf3acafe..8e91aecf5 100644 --- a/openlp/plugins/alerts/lib/alertsmanager.py +++ b/openlp/plugins/alerts/lib/alertsmanager.py @@ -45,7 +45,7 @@ class AlertsManager(QtCore.QObject): self.timer_id = 0 self.alertList = [] QtCore.QObject.connect(Receiver.get_receiver(), - QtCore.SIGNAL(u'maindisplay_active'), self.generateAlert) + QtCore.SIGNAL(u'live_display_active'), self.generateAlert) QtCore.QObject.connect(Receiver.get_receiver(), QtCore.SIGNAL(u'alerts_text'), self.onAlertText) @@ -69,11 +69,11 @@ class AlertsManager(QtCore.QObject): log.debug(u'display alert called %s' % text) self.alertList.append(text) if self.timer_id != 0: - Receiver.send_message(u'maindisplay_status_text', + Receiver.send_message(u'mainwindow_status_text', translate('AlertsPlugin.AlertsManager', 'Alert message created and displayed.')) return - Receiver.send_message(u'maindisplay_status_text', u'') + Receiver.send_message(u'mainwindow_status_text', u'') self.generateAlert() def generateAlert(self): diff --git a/openlp/plugins/presentations/lib/messagelistener.py b/openlp/plugins/presentations/lib/messagelistener.py index d9cc9bdf0..0f38cf02f 100644 --- a/openlp/plugins/presentations/lib/messagelistener.py +++ b/openlp/plugins/presentations/lib/messagelistener.py @@ -68,7 +68,7 @@ class Controller(object): self.doc.slidenumber = slide_no if self.is_live: if hide_mode == HideMode.Screen: - Receiver.send_message(u'maindisplay_hide', HideMode.Screen) + Receiver.send_message(u'live_display_hide', HideMode.Screen) self.stop() elif hide_mode == HideMode.Theme: self.blank(hide_mode) @@ -76,7 +76,7 @@ class Controller(object): self.blank(hide_mode) else: self.doc.start_presentation() - Receiver.send_message(u'maindisplay_hide', HideMode.Screen) + Receiver.send_message(u'live_display_hide', HideMode.Screen) self.doc.slidenumber = 0 if slide_no > 1: self.slide(slide_no) @@ -196,7 +196,7 @@ class Controller(object): if not self.doc.is_active(): return if hide_mode == HideMode.Theme: - Receiver.send_message(u'maindisplay_hide', HideMode.Theme) + Receiver.send_message(u'live_display_hide', HideMode.Theme) self.doc.blank_screen() def stop(self): @@ -224,7 +224,7 @@ class Controller(object): self.doc.slidenumber != self.doc.get_slide_number(): self.doc.goto_slide(self.doc.slidenumber) self.doc.unblank_screen() - Receiver.send_message(u'maindisplay_hide', HideMode.Screen) + Receiver.send_message(u'live_display_hide', HideMode.Screen) def poll(self): self.doc.poll_slidenumber(self.is_live) From 49569746ea8f2e9697648a287b50111455b78ca1 Mon Sep 17 00:00:00 2001 From: Andreas Preikschat Date: Sat, 22 Oct 2011 13:16:25 +0200 Subject: [PATCH 22/24] fixed doc --- openlp/core/lib/eventreceiver.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/openlp/core/lib/eventreceiver.py b/openlp/core/lib/eventreceiver.py index 3970794e4..cb84ed979 100644 --- a/openlp/core/lib/eventreceiver.py +++ b/openlp/core/lib/eventreceiver.py @@ -42,7 +42,7 @@ class EventReceiver(QtCore.QObject): **Mainwindow related and generic signals** ``mainwindow_status_text`` - Changes the bottom status bar text on the maindisplay window. + Changes the bottom status bar text on the mainwindow. ``openlp_warning_message`` Displays a standalone Warning Message. @@ -254,7 +254,7 @@ class Receiver(object): To receive a Message ``QtCore.QObject.connect( Receiver.get_receiver(), - QtCore.SIGNAL(u'<>'), + QtCore.SIGNALvideodisplay(u'<>'), <> )`` """ From acac723b09868bdf3067d104edcc7959baf8202b Mon Sep 17 00:00:00 2001 From: Andreas Preikschat Date: Sat, 22 Oct 2011 13:28:47 +0200 Subject: [PATCH 23/24] copy error --- openlp/core/lib/eventreceiver.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openlp/core/lib/eventreceiver.py b/openlp/core/lib/eventreceiver.py index cb84ed979..14b6126bc 100644 --- a/openlp/core/lib/eventreceiver.py +++ b/openlp/core/lib/eventreceiver.py @@ -254,7 +254,7 @@ class Receiver(object): To receive a Message ``QtCore.QObject.connect( Receiver.get_receiver(), - QtCore.SIGNALvideodisplay(u'<>'), + QtCore.SIGNAL(u'<>'), <> )`` """ From 5f9ed32bfecc35905cd45bcdd69a43db660cadae Mon Sep 17 00:00:00 2001 From: Tim Bentley Date: Sun, 23 Oct 2011 18:22:11 +0100 Subject: [PATCH 24/24] Fix assignment error --- openlp/core/ui/exceptionform.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/openlp/core/ui/exceptionform.py b/openlp/core/ui/exceptionform.py index 10fee7f6f..0cda4bd60 100644 --- a/openlp/core/ui/exceptionform.py +++ b/openlp/core/ui/exceptionform.py @@ -178,6 +178,8 @@ class ExceptionForm(QtGui.QDialog, Ui_ExceptionDialog): 'Please add the information that bug reports are favoured written ' 'in English.')) content = self._createReport() + source = u'' + exception = u'' for line in content[2].split(u'\n'): if re.search(r'[/\\]openlp[/\\]', line): source = re.sub(r'.*[/\\]openlp[/\\](.*)".*', r'\1', line)