diff --git a/openlp/core/ui/servicemanager.py b/openlp/core/ui/servicemanager.py
index 0ffb1fff7..d7f745fca 100644
--- a/openlp/core/ui/servicemanager.py
+++ b/openlp/core/ui/servicemanager.py
@@ -39,7 +39,8 @@ log = logging.getLogger(__name__)
from PyQt4 import QtCore, QtGui
from openlp.core.lib import OpenLPToolbar, ServiceItem, Receiver, build_icon, \
- ItemCapabilities, SettingsManager, translate, str_to_bool
+ ItemCapabilities, SettingsManager, translate, str_to_bool, \
+ check_directory_exists
from openlp.core.lib.theme import ThemeLevel
from openlp.core.lib.settings import Settings
from openlp.core.lib.ui import UiStrings, critical_error_message_box, \
@@ -556,8 +557,7 @@ class ServiceManager(QtGui.QWidget):
audio_from = os.path.join(self.servicePath, audio_from)
save_file = os.path.join(self.servicePath, audio_to)
save_path = os.path.split(save_file)[0]
- if not os.path.exists(save_path):
- os.makedirs(save_path)
+ check_directory_exists(save_path)
if not os.path.exists(save_file):
shutil.copy(audio_from, save_file)
zip.write(audio_from, audio_to.encode(u'utf-8'))
diff --git a/openlp/core/ui/themeform.py b/openlp/core/ui/themeform.py
index 46ad0b773..be8f9bde1 100644
--- a/openlp/core/ui/themeform.py
+++ b/openlp/core/ui/themeform.py
@@ -226,7 +226,7 @@ class ThemeForm(QtGui.QWizard, Ui_ThemeWizard):
def onCurrentIdChanged(self, pageId):
"""
- Detects Page changes and updates as approprate.
+ Detects Page changes and updates as appropriate.
"""
enabled = self.page(pageId) == self.areaPositionPage
self.setOption(QtGui.QWizard.HaveCustomButton1, enabled)
diff --git a/openlp/core/utils/__init__.py b/openlp/core/utils/__init__.py
index 7f2ef08e2..224ab4344 100644
--- a/openlp/core/utils/__init__.py
+++ b/openlp/core/utils/__init__.py
@@ -172,6 +172,11 @@ def _get_os_dir_path(dir_type):
u'Library', u'Application Support', u'openlp')
else:
if dir_type == AppLocation.LanguageDir:
+ prefixes = [u'/usr/local', u'/usr']
+ for prefix in prefixes:
+ directory = os.path.join(prefix, u'share', u'openlp')
+ if os.path.exists(directory):
+ return directory
return os.path.join(u'/usr', u'share', u'openlp')
if XDG_BASE_AVAILABLE:
if dir_type == AppLocation.ConfigDir:
diff --git a/openlp/plugins/presentations/lib/impresscontroller.py b/openlp/plugins/presentations/lib/impresscontroller.py
index 1a8754f80..a85f43592 100644
--- a/openlp/plugins/presentations/lib/impresscontroller.py
+++ b/openlp/plugins/presentations/lib/impresscontroller.py
@@ -227,9 +227,6 @@ class ImpressDocument(PresentationDocument):
OpenOffice task started earlier. If OpenOffice is not present is is
started. Once the environment is available the presentation is loaded
and started.
-
- ``presentation``
- The file name of the presentatios to the run.
"""
log.debug(u'Load Presentation OpenOffice')
if os.name == u'nt':
diff --git a/openlp/plugins/presentations/lib/powerpointcontroller.py b/openlp/plugins/presentations/lib/powerpointcontroller.py
index fcdb5b105..54b9c2144 100644
--- a/openlp/plugins/presentations/lib/powerpointcontroller.py
+++ b/openlp/plugins/presentations/lib/powerpointcontroller.py
@@ -119,10 +119,7 @@ class PowerpointDocument(PresentationDocument):
def load_presentation(self):
"""
Called when a presentation is added to the SlideController.
- Opens the PowerPoint file using the process created earlier
-
- ``presentation``
- The file name of the presentations to run.
+ Opens the PowerPoint file using the process created earlier.
"""
log.debug(u'load_presentation')
if not self.controller.process or not self.controller.process.Visible:
diff --git a/openlp/plugins/presentations/lib/pptviewcontroller.py b/openlp/plugins/presentations/lib/pptviewcontroller.py
index 8f068fa05..2e3b28f6e 100644
--- a/openlp/plugins/presentations/lib/pptviewcontroller.py
+++ b/openlp/plugins/presentations/lib/pptviewcontroller.py
@@ -118,9 +118,6 @@ class PptviewDocument(PresentationDocument):
Called when a presentation is added to the SlideController.
It builds the environment, starts communcations with the background
PptView task started earlier.
-
- ``presentation``
- The file name of the presentations to run.
"""
log.debug(u'LoadPresentation')
renderer = self.controller.plugin.renderer
diff --git a/openlp/plugins/presentations/lib/presentationcontroller.py b/openlp/plugins/presentations/lib/presentationcontroller.py
index e8e49d2e8..b72e1e9d4 100644
--- a/openlp/plugins/presentations/lib/presentationcontroller.py
+++ b/openlp/plugins/presentations/lib/presentationcontroller.py
@@ -47,7 +47,7 @@ class PresentationDocument(object):
**Hook Functions**
- ``load_presentation(presentation)``
+ ``load_presentation()``
Load a presentation file
``close_presentation()``
@@ -104,11 +104,8 @@ class PresentationDocument(object):
def load_presentation(self):
"""
- Called when a presentation is added to the SlideController.
- Loads the presentation and starts it
-
- ``presentation``
- The file name of the presentations to the run.
+ Called when a presentation is added to the SlideController. Loads the
+ presentation and starts it.
Returns False if the file could not be opened
"""
diff --git a/openlp/plugins/songs/forms/authorsform.py b/openlp/plugins/songs/forms/authorsform.py
index 0df330cd1..8dede69a7 100644
--- a/openlp/plugins/songs/forms/authorsform.py
+++ b/openlp/plugins/songs/forms/authorsform.py
@@ -61,14 +61,14 @@ class AuthorsForm(QtGui.QDialog, Ui_AuthorsDialog):
def onFirstNameEditTextEdited(self, display_name):
if not self._autoDisplayName:
return
- if not self.lastNameEdit.text():
+ if self.lastNameEdit.text():
display_name = display_name + u' ' + self.lastNameEdit.text()
self.displayEdit.setText(display_name)
def onLastNameEditTextEdited(self, display_name):
if not self._autoDisplayName:
return
- if not self.firstNameEdit.text():
+ if self.firstNameEdit.text():
display_name = self.firstNameEdit.text() + u' ' + display_name
self.displayEdit.setText(display_name)
diff --git a/openlp/plugins/songs/forms/editsongform.py b/openlp/plugins/songs/forms/editsongform.py
index e3ed07aba..0b3dddcc9 100644
--- a/openlp/plugins/songs/forms/editsongform.py
+++ b/openlp/plugins/songs/forms/editsongform.py
@@ -34,7 +34,7 @@ import shutil
from PyQt4 import QtCore, QtGui
from openlp.core.lib import PluginStatus, Receiver, MediaType, translate, \
- create_separated_list
+ create_separated_list, check_directory_exists
from openlp.core.lib.ui import UiStrings, set_case_insensitive_completer, \
critical_error_message_box, find_and_set_in_combo_box
from openlp.core.utils import AppLocation
@@ -880,8 +880,7 @@ class EditSongForm(QtGui.QDialog, Ui_EditSongDialog):
save_path = os.path.join(
AppLocation.get_section_data_path(self.mediaitem.plugin.name),
'audio', str(self.song.id))
- if not os.path.exists(save_path):
- os.makedirs(save_path)
+ check_directory_exists(save_path)
self.song.media_files = []
files = []
for row in xrange(self.audioListWidget.count()):
diff --git a/openlp/plugins/songs/forms/songimportform.py b/openlp/plugins/songs/forms/songimportform.py
index 1798f2baf..c871cfa87 100644
--- a/openlp/plugins/songs/forms/songimportform.py
+++ b/openlp/plugins/songs/forms/songimportform.py
@@ -541,12 +541,13 @@ class SongImportSourcePage(QtGui.QWizardPage):
if wizard.formatWidgets[format][u'fileListWidget'].count() > 0:
return True
else:
- filepath = wizard.formatWidgets[format][u'filepathEdit'].text()
- if not filepath.isEmpty():
- if select_mode == SongFormatSelect.SingleFile \
- and os.path.isfile(filepath):
+ filepath = unicode(
+ wizard.formatWidgets[format][u'filepathEdit'].text())
+ if filepath:
+ if select_mode == SongFormatSelect.SingleFile and \
+ os.path.isfile(filepath):
return True
- elif select_mode == SongFormatSelect.SingleFolder \
- and os.path.isdir(filepath):
+ elif select_mode == SongFormatSelect.SingleFolder and \
+ os.path.isdir(filepath):
return True
return False
diff --git a/openlp/plugins/songs/lib/__init__.py b/openlp/plugins/songs/lib/__init__.py
index a51f3f2fc..d984d5a8d 100644
--- a/openlp/plugins/songs/lib/__init__.py
+++ b/openlp/plugins/songs/lib/__init__.py
@@ -476,7 +476,7 @@ def get_encoding(font, font_table, default_encoding, failed=False):
Dictionary of fonts and respective encodings.
``default_encoding``
- The defaul encoding to use when font_table is empty or no font is used.
+ The default encoding to use when font_table is empty or no font is used.
``failed``
A boolean indicating whether the previous encoding didn't work.
diff --git a/openlp/plugins/songs/lib/easyslidesimport.py b/openlp/plugins/songs/lib/easyslidesimport.py
index 6e3b937ed..c7c169a1e 100644
--- a/openlp/plugins/songs/lib/easyslidesimport.py
+++ b/openlp/plugins/songs/lib/easyslidesimport.py
@@ -48,15 +48,8 @@ class EasySlidesImport(SongImport):
Initialise the class.
"""
SongImport.__init__(self, manager, **kwargs)
- self.commit = True
def doImport(self):
- """
- Import either each of the files in self.importSources - each element of
- which can be either a single opensong file, or a zipfile containing
- multiple opensong files. If `self.commit` is set False, the
- import will not be committed to the database (useful for test scripts).
- """
log.info(u'Importing EasySlides XML file %s', self.importSource)
parser = etree.XMLParser(remove_blank_text=True)
parsed_file = etree.parse(self.importSource, parser)
diff --git a/openlp/plugins/songs/lib/importer.py b/openlp/plugins/songs/lib/importer.py
index 2b04d6859..0c3a0f07f 100644
--- a/openlp/plugins/songs/lib/importer.py
+++ b/openlp/plugins/songs/lib/importer.py
@@ -28,6 +28,7 @@
"""
The :mod:`importer` modules provides the general song import functionality.
"""
+import os
import logging
from openlp.core.lib import translate
@@ -44,6 +45,7 @@ from powersongimport import PowerSongImport
from ewimport import EasyWorshipSongImport
from songbeamerimport import SongBeamerImport
from songshowplusimport import SongShowPlusImport
+from songproimport import SongProImport
from sundayplusimport import SundayPlusImport
from foilpresenterimport import FoilPresenterImport
from zionworximport import ZionWorxImport
@@ -67,6 +69,13 @@ try:
except ImportError:
log.exception('Error importing %s', 'OooImport')
HAS_OOO = False
+HAS_MEDIASHOUT = False
+if os.name == u'nt':
+ try:
+ from mediashoutimport import MediaShoutImport
+ HAS_MEDIASHOUT = True
+ except ImportError:
+ log.exception('Error importing %s', 'MediaShoutImport')
class SongFormatSelect(object):
@@ -100,6 +109,7 @@ class SongFormat(object):
``u'canDisable'``
Whether song format importer is disablable.
+ If ``True``, then ``u'disabledLabelText'`` must also be defined.
``u'availability'``
Whether song format importer is available.
@@ -141,15 +151,16 @@ class SongFormat(object):
EasySlides = 6
EasyWorship = 7
FoilPresenter = 8
- OpenSong = 9
- PowerSong = 10
- SongBeamer = 11
- SongShowPlus = 12
- SongsOfFellowship = 13
- SundayPlus = 14
- WordsOfWorship = 15
- ZionWorx = 16
- #CSV = 17
+ MediaShout = 9
+ OpenSong = 10
+ PowerSong = 11
+ SongBeamer = 12
+ SongPro = 13
+ SongShowPlus = 14
+ SongsOfFellowship = 15
+ SundayPlus = 16
+ WordsOfWorship = 17
+ ZionWorx = 18
# Set optional attribute defaults
__defaults__ = {
@@ -240,6 +251,14 @@ class SongFormat(object):
u'filter': u'%s (*.foil)' % translate(
'SongsPlugin.ImportWizardForm', 'Foilpresenter Song Files')
},
+ MediaShout: {
+ u'name': u'MediaShout',
+ u'prefix': u'mediaShout',
+ u'canDisable': True,
+ u'selectMode': SongFormatSelect.SingleFile,
+ u'filter': u'%s (*.mdb)' % translate('SongsPlugin.ImportWizardForm',
+ 'MediaShout Database')
+ },
OpenSong: {
u'class': OpenSongImport,
u'name': WizardStrings.OS,
@@ -260,6 +279,18 @@ class SongFormat(object):
u'filter': u'%s (*.sng)' % translate('SongsPlugin.ImportWizardForm',
'SongBeamer Files')
},
+ SongPro: {
+ u'class': SongProImport,
+ u'name': u'SongPro',
+ u'prefix': u'songPro',
+ u'selectMode': SongFormatSelect.SingleFile,
+ u'filter': u'%s (*.txt)' % translate('SongsPlugin.ImportWizardForm',
+ 'SongPro Text Files'),
+ u'comboBoxText': translate('SongsPlugin.ImportWizardForm',
+ 'SongPro (Export File)'),
+ u'descriptionText': translate('SongsPlugin.ImportWizardForm',
+ 'In SongPro, export your songs using the File -> Export menu')
+ },
SongShowPlus: {
u'class': SongShowPlusImport,
u'name': u'SongShow Plus',
@@ -302,12 +333,6 @@ class SongFormat(object):
'First convert your ZionWorx database to a CSV text file, as '
'explained in the User Manual.')
-# },
-# CSV: {
-# u'class': CSVImport,
-# u'name': WizardStrings.CSV,
-# u'prefix': u'csv',
-# u'selectMode': SongFormatSelect.SingleFile
}
}
@@ -326,9 +351,11 @@ class SongFormat(object):
SongFormat.EasySlides,
SongFormat.EasyWorship,
SongFormat.FoilPresenter,
+ SongFormat.MediaShout,
SongFormat.OpenSong,
SongFormat.PowerSong,
SongFormat.SongBeamer,
+ SongFormat.SongPro,
SongFormat.SongShowPlus,
SongFormat.SongsOfFellowship,
SongFormat.SundayPlus,
@@ -383,5 +410,8 @@ if HAS_SOF:
SongFormat.set(SongFormat.Generic, u'availability', HAS_OOO)
if HAS_OOO:
SongFormat.set(SongFormat.Generic, u'class', OooImport)
+SongFormat.set(SongFormat.MediaShout, u'availability', HAS_MEDIASHOUT)
+if HAS_MEDIASHOUT:
+ SongFormat.set(SongFormat.MediaShout, u'class', MediaShoutImport)
__all__ = [u'SongFormat', u'SongFormatSelect']
diff --git a/openlp/plugins/songs/lib/mediaitem.py b/openlp/plugins/songs/lib/mediaitem.py
index 47e9ba742..88999dce4 100644
--- a/openlp/plugins/songs/lib/mediaitem.py
+++ b/openlp/plugins/songs/lib/mediaitem.py
@@ -36,7 +36,8 @@ from PyQt4 import QtCore, QtGui
from sqlalchemy.sql import or_
from openlp.core.lib import MediaManagerItem, Receiver, ItemCapabilities, \
- translate, check_item_selected, PluginStatus, create_separated_list
+ translate, check_item_selected, PluginStatus, create_separated_list, \
+ check_directory_exists
from openlp.core.lib.ui import UiStrings, create_widget_action
from openlp.core.lib.settings import Settings
from openlp.core.utils import AppLocation
@@ -89,8 +90,7 @@ class SongMediaItem(MediaManagerItem):
dest_file = os.path.join(
AppLocation.get_section_data_path(self.plugin.name),
u'audio', str(song.id), os.path.split(bga)[1])
- if not os.path.exists(os.path.split(dest_file)[0]):
- os.makedirs(os.path.split(dest_file)[0])
+ check_directory_exists(os.path.split(dest_file)[0])
shutil.copyfile(os.path.join(
AppLocation.get_section_data_path(
u'servicemanager'), bga),
diff --git a/openlp/plugins/songs/lib/mediashoutimport.py b/openlp/plugins/songs/lib/mediashoutimport.py
new file mode 100644
index 000000000..f81b208ac
--- /dev/null
+++ b/openlp/plugins/songs/lib/mediashoutimport.py
@@ -0,0 +1,112 @@
+# -*- coding: utf-8 -*-
+# vim: autoindent shiftwidth=4 expandtab textwidth=80 tabstop=4 softtabstop=4
+
+###############################################################################
+# OpenLP - Open Source Lyrics Projection #
+# --------------------------------------------------------------------------- #
+# Copyright (c) 2008-2012 Raoul Snyman #
+# Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan #
+# Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, #
+# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, #
+# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, #
+# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon #
+# Tibble, Dave Warnock, Frode Woldsund #
+# --------------------------------------------------------------------------- #
+# This program is free software; you can redistribute it and/or modify it #
+# under the terms of the GNU General Public License as published by the Free #
+# Software Foundation; version 2 of the License. #
+# #
+# This program is distributed in the hope that it will be useful, but WITHOUT #
+# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or #
+# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for #
+# more details. #
+# #
+# You should have received a copy of the GNU General Public License along #
+# with this program; if not, write to the Free Software Foundation, Inc., 59 #
+# Temple Place, Suite 330, Boston, MA 02111-1307 USA #
+###############################################################################
+"""
+The :mod:`mediashoutimport` module provides the functionality for importing
+a MediaShout database into the OpenLP database.
+"""
+import re
+import os
+import pyodbc
+
+from openlp.core.lib import translate
+from openlp.plugins.songs.lib.songimport import SongImport
+
+VERSE_TAGS = [u'V', u'C', u'B', u'O', u'P', u'I', u'E']
+
+class MediaShoutImport(SongImport):
+ """
+ The :class:`MediaShoutImport` class provides the ability to import the
+ MediaShout Access Database
+ """
+ def __init__(self, manager, **kwargs):
+ """
+ Initialise the MediaShout importer.
+ """
+ SongImport.__init__(self, manager, **kwargs)
+
+ def doImport(self):
+ """
+ Receive a single file to import.
+ """
+ try:
+ conn = pyodbc.connect(u'DRIVER={Microsoft Access Driver (*.mdb)};'
+ u'DBQ=%s;PWD=6NOZ4eHK7k' % self.importSource)
+ except:
+ # Unfortunately no specific exception type
+ self.logError(self.importSource,
+ translate('SongsPlugin.MediaShoutImport',
+ 'Unable to open the MediaShout database.'))
+ return
+ cursor = conn.cursor()
+ cursor.execute(u'SELECT Record, Title, Author, Copyright, '
+ u'SongID, CCLI, Notes FROM Songs ORDER BY Title')
+ songs = cursor.fetchall()
+ self.importWizard.progressBar.setMaximum(len(songs))
+ for song in songs:
+ if self.stopImportFlag:
+ break
+ cursor.execute(u'SELECT Type, Number, Text FROM Verses '
+ u'WHERE Record = %s ORDER BY Type, Number' % song.Record)
+ verses = cursor.fetchall()
+ cursor.execute(u'SELECT Type, Number, POrder FROM PlayOrder '
+ u'WHERE Record = %s ORDER BY POrder' % song.Record)
+ verse_order = cursor.fetchall()
+ cursor.execute(u'SELECT Name FROM Themes INNER JOIN SongThemes '
+ u'ON SongThemes.ThemeId = Themes.ThemeId '
+ u'WHERE SongThemes.Record = %s' % song.Record)
+ topics = cursor.fetchall()
+ cursor.execute(u'SELECT Name FROM Groups INNER JOIN SongGroups '
+ u'ON SongGroups.GroupId = Groups.GroupId '
+ u'WHERE SongGroups.Record = %s' % song.Record)
+ topics += cursor.fetchall()
+ self.processSong(song, verses, verse_order, topics)
+
+ def processSong(self, song, verses, verse_order, topics):
+ """
+ Create the song, i.e. title, verse etc.
+ """
+ self.setDefaults()
+ self.title = song.Title
+ self.parseAuthor(song.Author)
+ self.addCopyright(song.Copyright)
+ self.comments = song.Notes
+ for topic in topics:
+ self.topics.append(topic.Name)
+ if u'-' in song.SongID:
+ self.songBookName, self.songNumber = song.SongID.split(u'-', 1)
+ else:
+ self.songBookName = song.SongID
+ for verse in verses:
+ tag = VERSE_TAGS[verse.Type] + unicode(verse.Number) \
+ if verse.Type < len(VERSE_TAGS) else u'O'
+ self.addVerse(verse.Text, tag)
+ for order in verse_order:
+ if order.Type < len(VERSE_TAGS):
+ self.verseOrderList.append(VERSE_TAGS[order.Type]
+ + unicode(order.Number))
+ self.finish()
diff --git a/openlp/plugins/songs/lib/songimport.py b/openlp/plugins/songs/lib/songimport.py
index 8dcf4e9f3..134cbdfdc 100644
--- a/openlp/plugins/songs/lib/songimport.py
+++ b/openlp/plugins/songs/lib/songimport.py
@@ -33,7 +33,7 @@ import os
from PyQt4 import QtCore
-from openlp.core.lib import Receiver, translate
+from openlp.core.lib import Receiver, translate, check_directory_exists
from openlp.core.ui.wizard import WizardStrings
from openlp.core.utils import AppLocation
from openlp.plugins.songs.lib import clean_song, VerseType
@@ -388,8 +388,7 @@ class SongImport(QtCore.QObject):
AppLocation.get_section_data_path(
self.importWizard.plugin.name),
'audio', str(song_id))
- if not os.path.exists(self.save_path):
- os.makedirs(self.save_path)
+ check_directory_exists(self.save_path)
if not filename.startswith(self.save_path):
oldfile, filename = filename, os.path.join(self.save_path,
os.path.split(filename)[1])
diff --git a/openlp/plugins/songs/lib/songproimport.py b/openlp/plugins/songs/lib/songproimport.py
new file mode 100644
index 000000000..44bf0cb44
--- /dev/null
+++ b/openlp/plugins/songs/lib/songproimport.py
@@ -0,0 +1,143 @@
+# -*- coding: utf-8 -*-
+# vim: autoindent shiftwidth=4 expandtab textwidth=80 tabstop=4 softtabstop=4
+
+###############################################################################
+# OpenLP - Open Source Lyrics Projection #
+# --------------------------------------------------------------------------- #
+# Copyright (c) 2008-2012 Raoul Snyman #
+# Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan #
+# Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, #
+# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, #
+# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, #
+# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon #
+# Tibble, Dave Warnock, Frode Woldsund #
+# --------------------------------------------------------------------------- #
+# This program is free software; you can redistribute it and/or modify it #
+# under the terms of the GNU General Public License as published by the Free #
+# Software Foundation; version 2 of the License. #
+# #
+# This program is distributed in the hope that it will be useful, but WITHOUT #
+# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or #
+# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for #
+# more details. #
+# #
+# You should have received a copy of the GNU General Public License along #
+# with this program; if not, write to the Free Software Foundation, Inc., 59 #
+# Temple Place, Suite 330, Boston, MA 02111-1307 USA #
+###############################################################################
+"""
+The :mod:`songproimport` module provides the functionality for importing SongPro
+songs into the OpenLP database.
+"""
+import re
+import os
+
+from openlp.core.lib import translate
+from openlp.plugins.songs.lib import strip_rtf
+from openlp.plugins.songs.lib.songimport import SongImport
+
+class SongProImport(SongImport):
+ """
+ The :class:`SongProImport` class provides the ability to import song files
+ from SongPro export files.
+
+ **SongPro Song File Format:**
+
+ SongPro has the option to export under its File menu
+ This produces files containing single or multiple songs
+ The file is text with lines tagged with # followed by an identifier.
+ This is documented here: http://creationsoftware.com/ImportIdentifiers.php
+ An example here: http://creationsoftware.com/ExampleImportingManySongs.txt
+
+ #A - next line is the Song Author
+ #B - the lines following until next tagged line are the "Bridge" words
+ (can be in rtf or plain text) which we map as B1
+ #C - the lines following until next tagged line are the chorus words
+ (can be in rtf or plain text)
+ which we map as C1
+ #D - the lines following until next tagged line are the "Ending" words
+ (can be in rtf or plain text) which we map as E1
+ #E - this song ends here, so we process the song -
+ and start again at the next line
+ #G - next line is the Group
+ #M - next line is the Song Number
+ #N - next line are Notes
+ #R - next line is the SongCopyright
+ #O - next line is the Verse Sequence
+ #T - next line is the Song Title
+ #1 - #7 the lines following until next tagged line are the verse x words
+ (can be in rtf or plain text)
+ """
+ def __init__(self, manager, **kwargs):
+ """
+ Initialise the SongPro importer.
+ """
+ SongImport.__init__(self, manager, **kwargs)
+
+ def doImport(self):
+ """
+ Receive a single file or a list of files to import.
+ """
+ self.encoding = None
+ with open(self.importSource, 'r') as songs_file:
+ self.importWizard.progressBar.setMaximum(0)
+ tag = u''
+ text = u''
+ for file_line in songs_file:
+ if self.stopImportFlag:
+ break
+ file_line = unicode(file_line, u'cp1252')
+ file_text = file_line.rstrip()
+ if file_text and file_text[0] == u'#':
+ self.processSection(tag, text.rstrip())
+ tag = file_text[1:]
+ text = u''
+ else:
+ text += file_line
+
+ def processSection(self, tag, text):
+ """
+ Process a section of the song, i.e. title, verse etc.
+ """
+ if tag == u'T':
+ self.setDefaults()
+ if text:
+ self.title = text
+ return
+ elif tag == u'E':
+ self.finish()
+ return
+ if u'rtf1' in text:
+ text, self.encoding = strip_rtf(text, self.encoding)
+ text = text.rstrip()
+ if not text:
+ return
+ if tag == u'A':
+ self.parseAuthor(text)
+ elif tag in [u'B', u'C']:
+ self.addVerse(text, tag)
+ elif tag == u'D':
+ self.addVerse(text, u'E')
+ elif tag == u'G':
+ self.topics.append(text)
+ elif tag == u'M':
+ matches = re.findall(r'\d+', text)
+ if matches:
+ self.songNumber = matches[-1]
+ self.songBookName = text[:text.rfind(self.songNumber)]
+ elif tag == u'N':
+ self.comments = text
+ elif tag == u'O':
+ for char in text:
+ if char == u'C':
+ self.verseOrderList.append(u'C1')
+ elif char == u'B':
+ self.verseOrderList.append(u'B1')
+ elif char == u'D':
+ self.verseOrderList.append(u'E1')
+ elif u'1' <= char <= u'7':
+ self.verseOrderList.append(u'V' + char)
+ elif tag == u'R':
+ self.addCopyright(text)
+ elif u'1' <= tag <= u'7':
+ self.addVerse(text, u'V' + tag[1:])
diff --git a/openlp/plugins/songs/lib/zionworximport.py b/openlp/plugins/songs/lib/zionworximport.py
index 0e7a1b425..1a00b3a7c 100644
--- a/openlp/plugins/songs/lib/zionworximport.py
+++ b/openlp/plugins/songs/lib/zionworximport.py
@@ -37,6 +37,9 @@ from openlp.plugins.songs.lib.songimport import SongImport
log = logging.getLogger(__name__)
+# Used to strip control chars (except 10=LF, 13=CR)
+CONTROL_CHARS_MAP = dict.fromkeys(range(10) + [11, 12] + range(14,32) + [127])
+
class ZionWorxImport(SongImport):
"""
The :class:`ZionWorxImport` class provides the ability to import songs
@@ -78,13 +81,10 @@ class ZionWorxImport(SongImport):
"""
Receive a CSV file (from a ZionWorx database dump) to import.
"""
- # Used to strip control chars (10=LF, 13=CR, 127=DEL)
- self.control_chars_map = dict.fromkeys(
- range(10) + [11, 12] + range(14,32) + [127])
with open(self.importSource, 'rb') as songs_file:
- fieldnames = [u'SongNum', u'Title1', u'Title2', u'Lyrics',
+ field_names = [u'SongNum', u'Title1', u'Title2', u'Lyrics',
u'Writer', u'Copyright', u'Keywords', u'DefaultStyle']
- songs_reader = csv.DictReader(songs_file, fieldnames)
+ songs_reader = csv.DictReader(songs_file, field_names)
try:
records = list(songs_reader)
except csv.Error, e:
@@ -140,4 +140,4 @@ class ZionWorxImport(SongImport):
"""
# This encoding choice seems OK. ZionWorx has no option for setting the
# encoding for its songs, so we assume encoding is always the same.
- return unicode(str, u'cp1252').translate(self.control_chars_map)
+ return unicode(str, u'cp1252').translate(CONTROL_CHARS_MAP)
diff --git a/resources/__init__.py b/resources/__init__.py
new file mode 100644
index 000000000..377413191
--- /dev/null
+++ b/resources/__init__.py
@@ -0,0 +1,34 @@
+# -*- coding: utf-8 -*-
+# vim: autoindent shiftwidth=4 expandtab textwidth=80 tabstop=4 softtabstop=4
+
+###############################################################################
+# OpenLP - Open Source Lyrics Projection #
+# --------------------------------------------------------------------------- #
+# Copyright (c) 2008-2012 Raoul Snyman #
+# Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan #
+# Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, #
+# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, #
+# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, #
+# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon #
+# Tibble, Dave Warnock, Frode Woldsund #
+# --------------------------------------------------------------------------- #
+# This program is free software; you can redistribute it and/or modify it #
+# under the terms of the GNU General Public License as published by the Free #
+# Software Foundation; version 2 of the License. #
+# #
+# This program is distributed in the hope that it will be useful, but WITHOUT #
+# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or #
+# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for #
+# more details. #
+# #
+# You should have received a copy of the GNU General Public License along #
+# with this program; if not, write to the Free Software Foundation, Inc., 59 #
+# Temple Place, Suite 330, Boston, MA 02111-1307 USA #
+###############################################################################
+"""
+The :mod:`resources` module contains a bunch of resources for OpenLP.
+
+DO NOT REMOVE THIS FILE, IT IS REQUIRED FOR INCLUDING THE RESOURCES ON SOME
+PLATFORMS!
+"""
+
diff --git a/resources/i18n/af.ts b/resources/i18n/af.ts
index 197d3b964..d1700606c 100644
--- a/resources/i18n/af.ts
+++ b/resources/i18n/af.ts
@@ -3,35 +3,35 @@
AlertsPlugin
-
+
W&aarskuwing
-
+
Vertoon 'n waarskuwing boodskap.
-
+
name singular
Waarskuwing
-
+
name plural
Waarskuwings
-
+
container title
Waarskuwings
-
+
<strong>Waarskuwing Mini-program</strong><br/>Die waarskuwing mini-program beheer die vertoning van moederskamer inligting op die vertoon skerm.
@@ -39,69 +39,69 @@
AlertsPlugin.AlertForm
-
+
Waarskuwing Boodskap
-
+
Waarskuwing &teks:
-
+
&Nuwe
-
+
&Stoor
-
+
V&ertoon
-
+
Vert&oon && Maak toe
-
+
Nuwe Waarskuwing
-
+
Daar is geen teks vir die waarskuwing gespesifiseer nie. Tik asseblief teks in voordat 'n nuwe een bygevoeg word.
-
+
&Parameter:
-
+
Geen Parameter Gevind nie
-
+
Daar is nie 'n parameter gegee om te vervang nie.
Gaan steeds voort?
-
+
Geen Plekhouer Gevind nie
-
+
Die attent-teks bevat nie '<>' nie.
@@ -111,7 +111,7 @@ Gaan steeds voort?
AlertsPlugin.AlertsManager
-
+
Waarskuwing boodskap geskep en vertoon.
@@ -119,32 +119,32 @@ Gaan steeds voort?
AlertsPlugin.AlertsTab
-
+
Skrif
-
+
Skrif naam:
-
+
Skrif kleur:
-
+
Agtergrond kleur:
-
+
Skrif grootte:
-
+
Waarskuwing verstreke-tyd:
@@ -152,510 +152,510 @@ Gaan steeds voort?
BiblesPlugin
-
+
&Bybel
-
+
name singular
Bybel
-
+
name plural
Bybels
-
+
container title
Bybels
-
+
Geen Boek Gevind nie
-
+
Geen passende boek kon in hierdie Bybel gevind word nie. Gaan na dat die naam van die boek korrek gespel is.
-
+
Voer 'n Bybel in.
-
+
Voeg 'n nuwe Bybel by.
-
+
Redigeer geselekteerde Bybel.
-
+
Wis die geselekteerde Bybel uit.
-
+
Voorskou die geselekteerde Bybel.
-
+
Stuur die geselekteerde Bybel regstreeks.
-
+
Voeg die geselekteerde Bybel by die diens.
-
+
<strong>Bybel Mini-program</strong<br />Die Bybel mini-program verskaf die vermoë om Bybelverse vanaf verskillende bronne te vertoon tydens die diens.
-
+
&Opgradeer ouer Bybels
-
+
Opgradeer die Bybel databasisse na die nuutste formaat.
-
+
Genesis
-
+
Eksodus
-
+
Livitikus
-
+
Numeri
-
+
Deuterononium
-
+
Josua
-
+
Rigters
-
+
Rut
-
+
1 Samuel
-
+
2 Samuel
-
+
1 Konings
-
+
2 Konings
-
+
1 Kronieke
-
+
2 Kronieke
-
+
Esra
-
+
Nehemia
-
+
Ester
-
+
Job
-
+
Psalms
-
+
Spreuke van Salomo
-
+
Prediker
-
+
Hooglied van Salomo
-
+
Jesaja
-
+
Jeremia
-
+
Klaagliedere van Jeremia
-
+
Esegiël
-
+
Daniël
-
+
Hosea
-
+
Joël
-
+
Amos
-
+
Obadja
-
+
Jona
-
+
Miga
-
+
Nahum
-
+
Habakuk
-
+
Sefanja
-
+
Haggai
-
+
Sagaria
-
+
Maleagi
-
+
Matteus
-
+
Markus
-
+
Lukas
-
+
Johannes
-
+
Handelinge
-
+
Romeine
-
+
1 Korintiërs
-
+
2 Korintiërs
-
+
Galasiërs
-
+
Effesiërs
-
+
Filippense
-
+
Kolossense
-
+
1 Tessalonisense
-
+
2 Tessalonisense
-
+
1 Timoteus
-
+
2 Timoteus
-
+
Titus
-
+
Filemon
-
+
Hebreërs
-
+
Jakobus
-
+
1 Petrus
-
+
2 Petrus
-
+
1 Johannes
-
+
2 Johannes
-
+
3 Johannes
-
+
Judas
-
+
Openbaring
-
+
Judit
-
+
Wysheid van Salomo
-
+
Tobit
-
+
Sirag
-
+
Barug
-
+
1 Makkabeërs
-
+
2 Makkabeërs
-
+
3 Makkabeërs
-
+
4 Makkabeërs
-
+
Byvoegings tot Daniël
-
+
Byvoegings tot Ester
-
+
Gebed van Manasse
-
+
Brief van Jeremia
-
+
Gebed van Asarja
-
+
Susanna
-
+
Bel en die Draak
-
+
1 Esdras
-
+
2 Esdras
-
+
Double-semicolon delimited separators for parsing references. Consult the developers for further information.
:|v|V|verse|verses;;-|to;;,|and;;end
@@ -664,32 +664,32 @@ Gaan steeds voort?
BiblesPlugin.BibleEditForm
-
+
Dit is nodig dat 'n weergawe naam vir die Bybel gespesifiseer word.
-
+
'n Kopiereg moet vir jou Bybel ingestel word. Bybels in die Publieke Domein moet sodanig gemerk word.
-
+
Bybel Bestaan
-
+
Hierdie Bybel bestaan reeds. Voer asseblief 'n ander Bybel in, of wis eerstens die bestaande een uit.
-
+
'n Boek naam moet vir "%s" gespesifiseer word.
-
+
@@ -699,12 +699,12 @@ en moet gevolg word deur een of meer nie-numeriese
karrakters.
-
+
Duplikaat Boek Naam
-
+
Die Boek Naam "%s" is meer as een keer ingevoer.
@@ -712,39 +712,39 @@ karrakters.
BiblesPlugin.BibleManager
-
+
Skrif Verwysing Fout
-
+
Web Bybel kan nie gebruik word nie
-
+
Teks Soektog is nie beskikbaar met Web Bybels nie.
-
+
Daar is nie 'n soek sleutelwoord ingevoer nie.
Vir 'n soektog wat alle sleutelwoorde bevat, skei die woorde deur middel van 'n spasie. Vir 'n soektog wat een van die sleutelwoorde bevat, skei die woorde deur middel van 'n komma.
-
+
Huidig is daar geen Bybels geïnstalleer nie. Gebruik asseblief die Invoer Gids om een of meer Bybels te installeer.
-
+
Geeb Bybels Beskikbaar nie
-
+
OpenLP.AboutForm
-
+
Credits
Krediete
-
+
License
Lisensie
-
+
Contribute
Dra By
-
+
build %s
bou %s
-
+
This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License.
Hierdie program is gratis sagteware; dit kan verspei en/of verander word onder die terme van die GNU Algemene Publieke Lisensie soos deur die Gratis Sagteware Vondasie gepubliseer is; weergawe 2 van die Lisensie.
-
+
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See below for more details.
Hierdie program word versprei in die hoop dat dit nuttig sal wees, maar SONDER ENIGE WAARBORG; sonder die geïmpliseerde waarborg van VERHANDELBAARHEID of GESKIKTHEID VIR 'N SPESIFIEKE DOEL. Sien hieronder vir meer inligting.
-
+
Project Lead
%s
@@ -2150,7 +2150,7 @@ Finale Krediet
Hy ons vry gemaak het.
-
+
OpenLP <version><revision> - Open Source Lyrics Projection
OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if Impress, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector.
@@ -2167,7 +2167,7 @@ Vind meer uit oor OpenLP: http://openlp.org/
OpenLP is geskryf en word onderhou deur vrywilligers. As u graag wil sien dat meer Christelike sagteware geskryf word, oorweeg dit asseblief om by te dra deur die knoppie hieronder te gebruik.
-
+
Copyright © 2004-2012 %s
Portions copyright © 2004-2012 %s
Kopiereg © 2004-2012 %s
@@ -2177,264 +2177,264 @@ Gedeeltelike kopiereg © 2004-2012 %s
OpenLP.AdvancedTab
-
+
UI Settings
GK (UI) Verstellings
-
+
Number of recent files to display:
Hoeveelheid onlangse lêers om te vertoon:
-
+
Remember active media manager tab on startup
Onthou die laaste media bestuurder oortjie wanneer die program begin
-
+
Double-click to send items straight to live
Dubbel-kliek om die items regstreeks te stuur
-
+
Expand new service items on creation
Sit die nuwe diens items uit wanneer dit geskep word
-
+
Enable application exit confirmation
Stel die program in staat om die uitgang bevestiging te vertoon
-
+
Mouse Cursor
Muis Wyser
-
+
Hide mouse cursor when over display window
Steek die muis wyser weg wanneer dit oor die vertoon venster beweeg
-
+
Default Image
Verstek Beeld
-
+
Background color:
Agtergrond kleur:
-
+
Image file:
Beeld lêer:
-
+
Open File
Maak Lêer oop
-
+
Advanced
Gevorderd
-
+
Preview items when clicked in Media Manager
Skou items wanneer gekliek word in die Media Bestuurder
-
+
Click to select a color.
Kliek om 'n kleur te kies.
-
+
Browse for an image file to display.
Blaai vir 'n beeld lêer om te vertoon.
-
+
Revert to the default OpenLP logo.
Verander terug na die verstek OpenLP logo.
-
+
Service %Y-%m-%d %H-%M
This may not contain any of the following characters: /\?*|<>[]":+
See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for more information.
Diens %Y-%m-%d %H-%M
-
+
Default Service Name
Verstek Diens Naam
-
+
Enable default service name
Laat verstek diens naam toe
-
+
Date and Time:
Datum en Tyd:
-
+
Monday
Maandag
-
+
Tuesday
Dinsdag
-
+
Wednesday
Woensdag
-
+
Thurdsday
Donderdag
-
+
Friday
Vrydag
-
+
Saturday
Saterdag
-
+
Sunday
Sondag
-
+
Now
Nou
-
+
Time when usual service starts.
Tyd wanneer gewone diens begin.
-
+
Name:
Naam:
-
+
Consult the OpenLP manual for usage.
Konsulteer die OpenLP handleiding vir gebruik.
-
+
Revert to the default service name "%s".
Herstel tot die verstek diens naam "%s".
-
+
Example:
Voorbeeld:
-
+
X11
X11
-
+
Bypass X11 Window Manager
Werk om X11 Venster Bestuurder
-
+
Syntax error.
Sintaks fout.
-
+
Data Location
Data Ligging
-
+
Current path:
Huidige pad:
-
+
Custom path:
Eie pad:
-
+
Browse for new data file location.
Blaai vir nuwe data lêer ligging.
-
+
Set the data location to the default.
Stel die data ligging na die verstek ligging.
-
+
Cancel
Kanselleer
-
+
Cancel OpenLP data directory location change.
Kanselleer OpenLP data lêer ligging verandering.
-
+
Copy data to new location.
Kopiër data na nuwe ligging.
-
+
Copy the OpenLP data files to the new location.
Kopiër die OpenLP data lêers na die nuwe ligging.
-
+
<strong>WARNING:</strong> New data directory location contains OpenLP data files. These files WILL be replaced during a copy.
<strong>WAARSKUWING:</strong> Nuwe data lêer ligging bevat OpenLP data lêers. Hierdie lêers SAL vervang word gedurende kopiëring.
-
+
Data Directory Error
Data Lêer Fout
-
+
Select Data Directory Location
Selekteer Data Lêer Ligging
-
+
Confirm Data Directory Change
Bevestig Data Lêer Verandering
-
+
Reset Data Directory
Herstel Data Lêer
-
+
Are you sure you want to change the location of the OpenLP data directory to the default location?
This location will be used after OpenLP is closed.
@@ -2443,7 +2443,7 @@ This location will be used after OpenLP is closed.
Hierdie ligging sal gebruik word nadat OpenLP toegemaak is.
-
+
Overwrite Existing Data
Oorskryf Bestaande Data
@@ -2451,39 +2451,39 @@ Hierdie ligging sal gebruik word nadat OpenLP toegemaak is.
OpenLP.ExceptionDialog
-
+
Error Occurred
'n Fout het opgeduik
-
+
Oops! OpenLP hit a problem, and couldn't recover. The text in the box below contains information that might be helpful to the OpenLP developers, so please e-mail it to bugs@openlp.org, along with a detailed description of what you were doing when the problem occurred.
Oeps! OpenLP het 'n probleem ondervind en kon nie daarvanaf herstel nie. Die teks in die boks hieronder bevat inligting wat van hulp kan wees aan die OpenLP ontwikkelaars, so stuur dit asseblief per e-pos na bugs@openlp.org saam met 'n gedetaileerde beskrywing van wat gedoen was toe die probleem plaasgevind het.
-
+
Send E-Mail
Stuur E-pos
-
+
Save to File
Stoor na Lêer
-
+
Please enter a description of what you were doing to cause this error
(Minimum 20 characters)
Voer asseblief 'n beskrywing in van waarmee jy besig was toe de probleem ontstaan het
(Mimimum 20 karrakters)
-
+
Attach File
Heg 'n Lêer aan
-
+
Description characters to enter : %s
Beskrywende karakters om in te voer: %s
@@ -2491,24 +2491,24 @@ Hierdie ligging sal gebruik word nadat OpenLP toegemaak is.
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
@@ -2539,7 +2539,7 @@ Version: %s
-
+
*OpenLP Bug Report*
Version: %s
@@ -2574,17 +2574,17 @@ Version: %s
OpenLP.FileRenameForm
-
+
File Rename
Lêer Hernoem
-
+
New File Name:
Nuwe Lêer Naam:
-
+
File Copy
Lêer Kopieër
@@ -2592,17 +2592,17 @@ Version: %s
OpenLP.FirstTimeLanguageForm
-
+
Select Translation
Kies Vertaling
-
+
Choose the translation you'd like to use in OpenLP.
Kies die taal wat gebruik moet word in OpenLP.
-
+
Translation:
Vertaling:
@@ -2610,192 +2610,192 @@ Version: %s
OpenLP.FirstTimeWizard
-
+
Songs
Liedere
-
+
First Time Wizard
Eerste Keer Gids
-
+
Welcome to the First Time Wizard
Welkom by die Eerste Keer Gids
-
+
Activate required Plugins
Aktiveer nodige Miniprogramme
-
+
Select the Plugins you wish to use.
Kies die Miniprogramme wat gebruik moet word.
-
+
Bible
Bybel
-
+
Images
Beelde
-
+
Presentations
Aanbiedinge
-
+
Media (Audio and Video)
Media (Klank en Video)
-
+
Allow remote access
Laat afgeleë toegang toe
-
+
Monitor Song Usage
Monitor Lied-Gebruik
-
+
Allow Alerts
Laat Waarskuwings Toe
-
+
Default Settings
Verstek Instellings
-
+
Downloading %s...
Aflaai %s...
-
+
Download complete. Click the finish button to start OpenLP.
Aflaai voltooi. Klik op die klaar knoppie om OpenLP te begin.
-
+
Enabling selected plugins...
Skakel geselekteerde miniprogramme aan...
-
+
No Internet Connection
Geen Internet Verbinding
-
+
Unable to detect an Internet connection.
Nie in staat om 'n Internet verbinding op te spoor nie.
-
+
Sample Songs
Voorbeeld Liedere
-
+
Select and download public domain songs.
Kies en laai liedere vanaf die publieke domein.
-
+
Sample Bibles
Voorbeeld Bybels
-
+
Select and download free Bibles.
Kies en laai gratis Bybels af.
-
+
Sample Themes
Voorbeeld Temas
-
+
Select and download sample themes.
Kies en laai voorbeeld temas af.
-
+
Set up default settings to be used by OpenLP.
Stel verstek instellings wat deur OpenLP gebruik moet word.
-
+
Default output display:
Verstek uitgaande vertoning:
-
+
Select default theme:
Kies verstek tema:
-
+
Starting configuration process...
Konfigurasie proses begin...
-
+
This wizard will help you to configure OpenLP for initial use. Click the next button below to start.
Hierdie gids sal bystand verleen in die proses om OpenLP op te stel vir eerste gebruik. Klik die volgende knoppie hieronder om die seleksie proses te begin.
-
+
Setting Up And Downloading
Opstel en Afliaai
-
+
Please wait while OpenLP is set up and your data is downloaded.
Wag asseblief terwyl OpenLP opgestel en die data afgelaai word.
-
+
Setting Up
Opstel
-
+
Click the finish button to start OpenLP.
Kliek die voltooi knoppie om OpenLP te begin.
-
+
Download complete. Click the finish button to return to OpenLP.
Aflaai voltooi. Klik op die klaar knoppie om na OpenLP terug te keer.
-
+
Click the finish button to return to OpenLP.
Kliek die voltooi knoppie om na OpenLP terug te keer.
-
+
Custom Slides
Aangepasde Skyfies
-
+
Finish
Eindig
-
+
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. Click 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.
@@ -2804,7 +2804,7 @@ To re-run the First Time Wizard and import this sample data at a later time, che
Om weer die Eerste Keer Gids te gebruik en hierdie voorbeeld data om 'n latere stadium in te voer, gaan jou Internet konneksie na en begin weer hierdie gids deur "Gereedskap/Eerste Keer Gids" vanaf OpenLP te begin.
-
+
To cancel the First Time Wizard completely (and not start OpenLP), click the Cancel button now.
@@ -2816,52 +2816,52 @@ Om die Eerste Keer Gids heeltemal te kanselleer (en verhoed dat OpenLP begin), k
OpenLP.FormattingTagDialog
-
+
Configure Formatting Tags
Konfigureer Formattering Etiket
-
+
Edit Selection
Redigeer Seleksie
-
+
Save
Stoor
-
+
Description
Beskrywing
-
+
Tag
Etiket
-
+
Start tag
Begin etiket
-
+
End tag
Eind-etiket
-
+
Tag Id
Etiket Id
-
+
Start HTML
Begin HTML
-
+
End HTML
Eindig HTML
@@ -2869,32 +2869,32 @@ Om die Eerste Keer Gids heeltemal te kanselleer (en verhoed dat OpenLP begin), k
OpenLP.FormattingTagForm
-
+
Update Error
Opdateer Fout
-
+
Tag "n" already defined.
Etiket "n" alreeds gedefinieër.
-
+
New Tag
Nuwe Etiket
-
+
<HTML here>
<HTML hier>
-
+
</and here>
</en hier>
-
+
Tag %s already defined.
Etiket %s alreeds gedefinieër.
@@ -2902,82 +2902,82 @@ Om die Eerste Keer Gids heeltemal te kanselleer (en verhoed dat OpenLP begin), k
OpenLP.FormattingTags
-
+
Red
Rooi
-
+
Black
Swart
-
+
Blue
Blou
-
+
Yellow
Geel
-
+
Green
Groen
-
+
Pink
Pienk
-
+
Orange
Oranje
-
+
Purple
Pers
-
+
White
Wit
-
+
Superscript
Bo-skrif
-
+
Subscript
Onder-skrif
-
+
Paragraph
Paragraaf
-
+
Bold
Vetdruk
-
+
Italics
Italiaans
-
+
Underline
Onderlyn
-
+
Break
Breek
@@ -2985,157 +2985,157 @@ Om die Eerste Keer Gids heeltemal te kanselleer (en verhoed dat OpenLP begin), k
OpenLP.GeneralTab
-
+
General
Algemeen
-
+
Monitors
Monitors
-
+
Select monitor for output display:
Selekteer monitor vir uitgaande vertoning:
-
+
Display if a single screen
Vertoon as dit 'n enkel skerm is
-
+
Application Startup
Applikasie Aanskakel
-
+
Show blank screen warning
Vertoon leë skerm waarskuwing
-
+
Automatically open the last service
Maak vanself die laaste diens oop
-
+
Show the splash screen
Wys die spatsel skerm
-
+
Application Settings
Program Verstellings
-
+
Prompt to save before starting a new service
Vra om te stoor voordat 'n nuwe diens begin word
-
+
Automatically preview next item in service
Wys voorskou van volgende item in diens automaties
-
+
sec
sek
-
+
CCLI Details
CCLI Inligting
-
+
SongSelect username:
SongSelect gebruikersnaam:
-
+
SongSelect password:
SongSelect wagwoord:
-
+
X
X
-
+
Y
Y
-
+
Height
Hoogte
-
+
Width
Wydte
-
+
Check for updates to OpenLP
Kyk vir opdaterings van OpenLP
-
+
Unblank display when adding new live item
Verwyder blanko vertoning wanneer 'n nuwe regstreekse item bygevoeg word
-
+
Timed slide interval:
Tyd-gedrewe skyfie interval:
-
+
Background Audio
Agtergrond Oudio
-
+
Start background audio paused
Begin agtergrond oudio gestop
-
+
Service Item Slide Limits
Diens Item Skyfie Limiete
-
+
Override display position:
Oorheers vertoon ligging:
-
+
Repeat track list
Herhaal snit lys
-
+
Behavior of next/previous on the last/first slide:
Gedrag van die vorige/volgende op die laaste/eerste skyfie:
-
+
&Remain on Slide
&Bly op Skyfie
-
+
&Wrap around
Omvou
-
+
&Move to next/previous service item
Beweeg na volgende/vorige diens ite&m
@@ -3143,12 +3143,12 @@ Om die Eerste Keer Gids heeltemal te kanselleer (en verhoed dat OpenLP begin), k
OpenLP.LanguageManager
-
+
Language
Taal
-
+
Please restart OpenLP to use your new language setting.
Herlaai asseblief OpenLP om die nuwe taal instelling te gebruik.
@@ -3156,7 +3156,7 @@ Om die Eerste Keer Gids heeltemal te kanselleer (en verhoed dat OpenLP begin), k
OpenLP.MainDisplay
-
+
OpenLP Display
OpenLP Vertooning
@@ -3164,287 +3164,287 @@ Om die Eerste Keer Gids heeltemal te kanselleer (en verhoed dat OpenLP begin), k
OpenLP.MainWindow
-
+
&File
&Lêer
-
+
&Import
&Invoer
-
+
&Export
Uitvo&er
-
+
&View
&Bekyk
-
+
M&ode
M&odus
-
+
&Tools
&Gereedskap
-
+
&Settings
Ver&stellings
-
+
&Language
Taa&l
-
+
&Help
&Hulp
-
+
Media Manager
Media Bestuurder
-
+
Service Manager
Diens Bestuurder
-
+
Theme Manager
Tema Bestuurder
-
+
&New
&Nuwe
-
+
&Open
Maak &Oop
-
+
Open an existing service.
Maak 'n bestaande diens oop.
-
+
&Save
&Stoor
-
+
Save the current service to disk.
Stoor die huidige diens na skyf.
-
+
Save &As...
Stoor &As...
-
+
Save Service As
Stoor Diens As
-
+
Save the current service under a new name.
Stoor die huidige diens onder 'n nuwe naam.
-
+
E&xit
&Uitgang
-
+
Quit OpenLP
Sluit OpenLP Af
-
+
&Theme
&Tema
-
+
&Configure OpenLP...
&Konfigureer OpenLP...
-
+
&Media Manager
&Media Bestuurder
-
+
Toggle Media Manager
Wissel Media Bestuurder
-
+
Toggle the visibility of the media manager.
Wissel sigbaarheid van die media bestuurder.
-
+
&Theme Manager
&Tema Bestuurder
-
+
Toggle Theme Manager
Wissel Tema Bestuurder
-
+
Toggle the visibility of the theme manager.
Wissel sigbaarheid van die tema bestuurder.
-
+
&Service Manager
&Diens Bestuurder
-
+
Toggle Service Manager
Wissel Diens Bestuurder
-
+
Toggle the visibility of the service manager.
Wissel sigbaarheid van die diens bestuurder.
-
+
&Preview Panel
Voorskou &Paneel
-
+
Toggle Preview Panel
Wissel Voorskou Paneel
-
+
Toggle the visibility of the preview panel.
Wissel sigbaarheid van die voorskou paneel.
-
+
&Live Panel
Regstreekse Panee&l
-
+
Toggle Live Panel
Wissel Regstreekse Paneel
-
+
Toggle the visibility of the live panel.
Wissel sigbaarheid van die regstreekse paneel.
-
+
&Plugin List
Mini-&program Lys
-
+
List the Plugins
Lys die Mini-programme
-
+
&User Guide
Gebr&uikers Gids
-
+
&About
&Aangaande
-
+
More information about OpenLP
Meer inligting aangaande OpenLP
-
+
&Online Help
&Aanlyn Hulp
-
+
&Web Site
&Web Tuiste
-
+
Use the system language, if available.
Gebruik die sisteem se taal as dit beskikbaar is.
-
+
Set the interface language to %s
Verstel die koppelvlak taal na %s
-
+
Add &Tool...
Voeg Gereedskaps&tuk by...
-
+
Add an application to the list of tools.
Voeg 'n applikasie by die lys van gereedskapstukke.
-
+
&Default
&Verstek
-
+
Set the view mode back to the default.
Verstel skou modus terug na verstek modus.
-
+
&Setup
Op&stel
-
+
Set the view mode to Setup.
Verstel die skou modus na Opstel modus.
-
+
&Live
&Regstreeks
-
+
Set the view mode to Live.
Verstel die skou modus na Regstreeks.
-
+
Version %s of OpenLP is now available for download (you are currently running version %s).
You can download the latest version from http://openlp.org/.
@@ -3453,108 +3453,108 @@ You can download the latest version from http://openlp.org/.
Die nuutste weergawe kan afgelaai word vanaf http://openlp.org/.
-
+
OpenLP Version Updated
OpenLP Weergawe is Opdateer
-
+
OpenLP Main Display Blanked
OpenLP Hoof Vertoning Blanko
-
+
The Main Display has been blanked out
Die Hoof Skerm is afgeskakel
-
+
Default Theme: %s
Verstek Tema: %s
-
+
English
Please add the name of your language here
Afrikaans
-
+
Configure &Shortcuts...
Konfigureer Kor&tpaaie...
-
+
Close OpenLP
Mook OpenLP toe
-
+
Are you sure you want to close OpenLP?
Maak OpenLP sekerlik toe?
-
+
Open &Data Folder...
Maak &Data Lêer oop...
-
+
Open the folder where songs, bibles and other data resides.
Maak die lêer waar liedere, bybels en ander data is, oop.
-
+
&Autodetect
Spoor outom&aties op
-
+
Update Theme Images
Opdateer Tema Beelde
-
+
Update the preview images for all themes.
Opdateer die voorskou beelde vir alle temas.
-
+
Print the current service.
Druk die huidige diens.
-
+
&Recent Files
Onlangse Lêe&rs
-
+
L&ock Panels
Sl&uit Panele
-
+
Prevent the panels being moved.
Voorkom dat die panele rondgeskuif word.
-
+
Re-run First Time Wizard
Her-gebruik Eerste Keer Gids
-
+
Re-run the First Time Wizard, importing songs, Bibles and themes.
Her-gebruik die Eerste Keer Gids om liedere, Bybels en tema's in te voer.
-
+
Re-run First Time Wizard?
Her-gebruik Eerste Keer Gids?
-
+
Are you sure you want to re-run the First Time Wizard?
Re-running this wizard may make changes to your current OpenLP configuration and possibly add songs to your existing songs list and change your default theme.
@@ -3563,43 +3563,43 @@ Re-running this wizard may make changes to your current OpenLP configuration and
Her-gebruik van hierdie gids mag veranderinge aan die huidige OpenLP konfigurasie aanbring en kan moontlik liedere byvoeg by die bestaande liedere lys en kan ook die verstek tema verander.
-
+
Clear List
Clear List of recent files
Maak Lys Skoon
-
+
Clear the list of recent files.
Maak die lys van onlangse lêers skoon.
-
+
Configure &Formatting Tags...
Konfigureer &Formattering Etikette...
-
+
Export OpenLP settings to a specified *.config file
Voer OpenLP verstellings uit na 'n spesifieke *.config lêer
-
+
Settings
Verstellings
-
+
Import OpenLP settings from a specified *.config file previously exported on this or another machine
Voer OpenLP verstellings in vanaf 'n gespesifiseerde *.config lêer wat voorheen op hierdie of 'n ander masjien uitgevoer is
-
+
Import settings?
Voer verstellings in?
-
+
Are you sure you want to import settings?
Importing settings will make permanent changes to your current OpenLP configuration.
@@ -3612,37 +3612,37 @@ Deur verstellings in te voer, sal permanente veranderinge aan die huidige OpenLP
As verkeerde verstellings ingevoer word, mag dit onvoorspelbare optrede tot gevolg hê, of OpenLP kan abnormaal termineer.
-
+
Open File
Maak Lêer oop
-
+
OpenLP Export Settings Files (*.conf)
OpenLP Uitvoer Verstelling Lêers (*.conf)
-
+
Import settings
Voer verstellings in
-
+
OpenLP will now close. Imported settings will be applied the next time you start OpenLP.
OpenLP sal nou toe maak. Ingevoerde verstellings sal toegepas word die volgende keer as OpenLP begin word.
-
+
Export Settings File
Voer Verstellings Lêer Uit
-
+
OpenLP Export Settings File (*.conf)
OpenLP Uitvoer Verstellings Lêer (*.conf)
-
+
New Data Directory Error
Nuwe Data Lêer Fout
@@ -3650,12 +3650,12 @@ As verkeerde verstellings ingevoer word, mag dit onvoorspelbare optrede tot gevo
OpenLP.Manager
-
+
Database Error
Databasis Fout
-
+
The database being loaded was created in a more recent version of OpenLP. The database is version %d, while OpenLP expects version %d. The database will not be loaded.
Database: %s
@@ -3664,7 +3664,7 @@ Database: %s
Databasis: %s
-
+
OpenLP cannot load your database.
Database: %s
@@ -3676,52 +3676,52 @@ Databasis: %s
OpenLP.MediaManagerItem
-
+
No Items Selected
Geen item geselekteer nie
-
+
&Add to selected Service Item
&Voeg by die geselekteerde Diens item
-
+
You must select one or more items to preview.
Kies een of meer items vir die voorskou.
-
+
You must select one or more items to send live.
Kies een of meer items vir regstreekse uitsending.
-
+
You must select one or more items.
Kies een of meer items.
-
+
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
@@ -3737,12 +3737,12 @@ Suffix not supported
Ongeldige Lêer %s. Agtervoegsel nie ondersteun nie
-
+
&Clone
&Kloon
-
+
Duplicate files were found on import and were ignored.
Duplikaat lêers gevind tydens invoer en is geïgnoreer.
@@ -3750,12 +3750,12 @@ Suffix not supported
OpenLP.OpenLyricsImportError
-
+
<lyrics> tag is missing.
<lyrics> etiket is vermis.
-
+
<verse> tag is missing.
<verse> etiket is vermis.
@@ -3763,42 +3763,42 @@ Suffix not supported
OpenLP.PluginForm
-
+
Plugin List
Mini-program Lys
-
+
Plugin Details
Mini-program Besonderhede
-
+
Status:
Status:
-
+
Active
Aktief
-
+
Inactive
Onaktief
-
+
%s (Inactive)
%s (Onaktief)
-
+
%s (Active)
%s (Aktief)
-
+
%s (Disabled)
%s (Onaktief)
@@ -3806,12 +3806,12 @@ Suffix not supported
OpenLP.PrintServiceDialog
-
+
Fit Page
Pas Blaai
-
+
Fit Width
Pas Wydte
@@ -3819,77 +3819,77 @@ Suffix not supported
OpenLP.PrintServiceForm
-
+
Options
Opsies
-
+
Copy
Kopieër
-
+
Copy as HTML
Kopieër as HTML
-
+
Zoom In
Zoom In
-
+
Zoom Out
Zoem Uit
-
+
Zoom Original
Zoem Oorspronklike
-
+
Other Options
Ander Opsies
-
+
Include slide text if available
Sluit skyfie teks in indien beskikbaar
-
+
Include service item notes
Sluit diens item notas in
-
+
Include play length of media items
Sluit die speel tyd van die media items in
-
+
Add page break before each text item
Voeg 'n bladsy-breking voor elke teks item
-
+
Service Sheet
Diens Blad
-
+
Print
Druk
-
+
Title:
Titel:
-
+
Custom Footer Text:
Verpersoonlike Voetskrif Teks:
@@ -3897,12 +3897,12 @@ Suffix not supported
OpenLP.ScreenList
-
+
Screen
Skerm
-
+
primary
primêr
@@ -3910,12 +3910,12 @@ Suffix not supported
OpenLP.ServiceItem
-
+
<strong>Start</strong>: %s
<strong>Begin</strong>: %s
-
+
<strong>Length</strong>: %s
<strong>Durasie</strong>: %s
@@ -3923,7 +3923,7 @@ Suffix not supported
OpenLP.ServiceItemEditForm
-
+
Reorder Service Item
Hergroepeer Diens Item
@@ -3931,279 +3931,279 @@ 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
-
+
OpenLP Service Files (*.osz)
OpenLP Diens Lêers (*.osz)
-
+
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
-
+
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.
-
+
&Start Time
&Begin Tyd
-
+
Show &Preview
Wys &Voorskou
-
+
Modified Service
Redigeer Diens
-
+
The current service has been modified. Would you like to save this service?
Die huidige diens was verander. Stoor hierdie diens?
-
+
Custom Service Notes:
Aangepasde Diens Notas:
-
+
Notes:
Notas:
-
+
Playing time:
Speel tyd:
-
+
Untitled Service
Ongetitelde 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
-
+
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.
-
+
Service File Missing
Diens Lêer Vermis
-
+
Slide theme
Skyfie tema
-
+
Notes
Notas
-
+
Edit
Redigeer
-
+
Service copy only
Slegs diens kopie.
-
+
Error Saving File
Fout gedurende Lêer Stooring
-
+
There was an error saving your file.
Daar was 'n probleem om die lêer te stoor.
@@ -4211,7 +4211,7 @@ Die inhoud enkodering is nie UTF-8 nie.
OpenLP.ServiceNoteForm
-
+
Service Item Notes
Diens Item Notas
@@ -4219,7 +4219,7 @@ Die inhoud enkodering is nie UTF-8 nie.
OpenLP.SettingsForm
-
+
Configure OpenLP
Konfigureer OpenLP
@@ -4227,67 +4227,67 @@ Die inhoud enkodering is nie UTF-8 nie.
OpenLP.ShortcutListDialog
-
+
Action
Aksie
-
+
Shortcut
Kortpad
-
+
Duplicate Shortcut
Duplikaat Kortpad
-
+
The shortcut "%s" is already assigned to another action, please use a different shortcut.
Die kortpad "%s" is alreeds toegeken aan 'n ander aksie, kies asseblief 'n ander kortpad.
-
+
Alternate
Alternatief
-
+
Select an action and click one of the buttons below to start capturing a new primary or alternate shortcut, respectively.
Kies 'n aksie en kliek een van die knoppies hieronder om 'n primêre of alternatiewe kortpad vas te vang.
-
+
Default
Verstek
-
+
Custom
Aanpasing
-
+
Capture shortcut.
Vang kortpad.
-
+
Restore the default shortcut of this action.
Stel die verstek kortpad terug vir hierdie aksie.
-
+
Restore Default Shortcuts
Herstel Verstek Kortpaaie
-
+
Do you want to restore all shortcuts to their defaults?
Herstel alle kortpaaie na hul verstek waarde?
-
+
Configure Shortcuts
Konfigureer Kortpaaie
@@ -4295,172 +4295,172 @@ Die inhoud enkodering is nie UTF-8 nie.
OpenLP.SlideController
-
+
Hide
Verskuil
-
+
Go To
Gaan Na
-
+
Blank Screen
Blanko Skerm
-
+
Blank to Theme
Blanko na Tema
-
+
Show Desktop
Wys Werkskerm
-
+
Previous Service
Vorige Diens
-
+
Next Service
Volgende Diens
-
+
Escape Item
Ontsnap Item
-
+
Move to previous.
Skuif terug.
-
+
Move to next.
Skuif volgende.
-
+
Play Slides
Speel Skyfies
-
+
Delay between slides in seconds.
Vertraging tussen skyfies in sekondes.
-
+
Move to live.
Skuif na regstreeks.
-
+
Add to Service.
Voeg by Diens.
-
+
Edit and reload song preview.
Redigeer en herlaai lied voorskou.
-
+
Start playing media.
Begin media speel.
-
+
Pause audio.
Stop oudio.
-
+
Pause playing media.
Halt spelende media.
-
+
Stop playing media.
Stop spelende media.
-
+
Video position.
Video posisie.
-
+
Audio Volume.
Oudio Volume.
-
+
Go to "Verse"
Gaan na "Vers"
-
+
Go to "Chorus"
Gaan na "Koor"
-
+
Go to "Bridge"
Gaan na "Brug"
-
+
Go to "Pre-Chorus"
Gaan na "Pre-Koor"
-
+
Go to "Intro"
Gaan na "Inleiding"
-
+
Go to "Ending"
Gaan na "Einde"
-
+
Go to "Other"
Gaan na "Ander"
-
+
Previous Slide
Vorige Skyfie
-
+
Next Slide
Volgende Skyfie
-
+
Pause Audio
Hou Oudio
-
+
Background Audio
Agtergrond Oudio
-
+
Go to next audio track.
Gaan na die volgende oudio snit.
-
+
Tracks
Snitte
@@ -4468,17 +4468,17 @@ Die inhoud enkodering is nie UTF-8 nie.
OpenLP.SpellTextEdit
-
+
Spelling Suggestions
Spelling Voorstelle
-
+
Formatting Tags
Uitleg Hakkies
-
+
Language:
Taal:
@@ -4486,67 +4486,67 @@ Die inhoud enkodering is nie UTF-8 nie.
OpenLP.StartTimeForm
-
+
Hours:
Ure:
-
+
Minutes:
Minute:
-
+
Seconds:
Sekondes:
-
+
Item Start and Finish Time
Item Begin en End Tyd
-
+
Start
Begin
-
+
Finish
Eindig
-
+
Length
Lengte
-
+
Time Validation Error
Tyd Validasie Fout
-
+
Finish time is set after the end of the media item
End tyd is na die einde van die media item gestel
-
+
Start time is after the finish time of the media item
Begin tyd is na die eind tyd van die media item
-
+
Theme Layout
Tema Uitleg
-
+
The blue box shows the main area.
Die blou boks wys die hoof area.
-
+
The red box shows the footer.
Die rooi boks wys die voet area.
@@ -4554,32 +4554,32 @@ Die inhoud enkodering is nie UTF-8 nie.
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)
@@ -4587,72 +4587,72 @@ Die inhoud enkodering is nie UTF-8 nie.
OpenLP.ThemeManager
-
+
Create a new theme.
Skep 'n nuwe tema.
-
+
Edit Theme
Redigeer Tema
-
+
Edit a theme.
Redigeer 'n tema.
-
+
Delete Theme
Wis Tema Uit
-
+
Delete a theme.
Wis 'n tema uit.
-
+
Import Theme
Voer Tema In
-
+
Import a theme.
Voer 'n tema in.
-
+
Export Theme
Voer Tema Uit
-
+
Export a theme.
Voer 'n tema uit.
-
+
&Edit Theme
R&edigeer Tema
-
+
&Delete Theme
&Wis Tema uit
-
+
Set As &Global Default
Stel in As &Globale Standaard
-
+
%s (default)
%s (standaard)
-
+
You must select a theme to edit.
Kies 'n tema om te redigeer.
@@ -4667,87 +4667,87 @@ Die inhoud enkodering is nie UTF-8 nie.
Tema %s is in gebruik deur die %s mini-program.
-
+
You have not selected a theme.
Geen tema is geselekteer nie.
-
+
Save Theme - (%s)
Stoor Tema - (%s)
-
+
Theme Exported
Tema Uitvoer
-
+
Your theme has been successfully exported.
Die tema was suksesvol uitgevoer.
-
+
Theme Export Failed
Tema Uitvoer het Misluk
-
+
Your theme could not be exported due to an error.
Die tema kon nie uitgevoer word nie weens 'n fout.
-
+
Select Theme Import File
Kies Tema Invoer Lêer
-
+
File is not a valid theme.
Lêer is nie 'n geldige tema nie.
-
+
&Copy Theme
&Kopieër Tema
-
+
&Rename Theme
He&rnoem Tema
-
+
&Export Theme
Vo&er Tema uit
-
+
You must select a theme to rename.
Kies 'n tema om te hernoem.
-
+
Rename Confirmation
Hernoem Bevestiging
-
+
Rename %s theme?
Hernoem %s tema?
-
+
You must select a theme to delete.
Kies 'n tema om uit te wis.
-
+
Delete Confirmation
Uitwis Bevestiging
-
+
Delete %s theme?
Wis %s tema uit?
@@ -4762,18 +4762,18 @@ Die inhoud enkodering is nie UTF-8 nie.
'n Tema met hierdie naam bestaan alreeds.
-
+
OpenLP Themes (*.theme *.otz)
OpenLP Temas (*.theme *.otz)
-
+
Copy of %s
Copy of <theme name>
Duplikaat van %s
-
+
Theme Already Exists
Tema Bestaan Reeds
@@ -4781,320 +4781,320 @@ 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:
-
+
Edit Theme - %s
Redigeer Tema - %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.
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
-
+
Starting color:
Begin Kleur:
-
+
Ending color:
Eind Kleur:
-
+
Background color:
Agtergrond kleur:
-
+
Justify
Uitsgespan
-
+
Layout Preview
Uitleg Voorskou
-
+
Transparent
Deurskynend
+
+
+ Preview and Save
+
+
+
+
+ Preview the theme and save it.
+
+
OpenLP.ThemesTab
-
+
Global Theme
Globale Tema
-
+
Theme Level
Tema Vlak
-
+
S&ong Level
Lied Vl&ak
-
+
Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme.
Gebruik die tema van elke lied in die lied-databasis. As 'n lied nie 'n geassosieërde tema het nie, gebruik die diens se tema. As die diens nie 'n tema het nie, gebruik dan die globale tema.
-
+
&Service Level
Dien&s Vlak
-
+
Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme.
Gebruik die tema van die diens en verplaas enige van die individuele liedere se temas. As die diens nie 'n tema het nie, gebruik dan die globale tema.
-
+
&Global Level
&Globale Vlak
-
+
Use the global theme, overriding any themes associated with either the service or the songs.
Gebruik die globale tema om enige temas wat met die diens of liedere geassosieer is te vervang.
-
+
Themes
Temas
@@ -5102,591 +5102,591 @@ Die inhoud enkodering is nie UTF-8 nie.
OpenLP.Ui
-
+
Error
Fout
-
+
About
Aangaande
-
+
&Add
&Voeg by
-
+
Advanced
Gevorderd
-
+
All Files
Alle Lêers
-
+
Bottom
Onder
-
+
Browse...
Deursoek...
-
+
Cancel
Kanselleer
-
+
CCLI number:
CCLI nommer:
-
+
Create a new service.
Skep 'n nuwe diens.
-
+
&Delete
&Wis Uit
-
+
&Edit
R&edigeer
-
+
Empty Field
Leë Veld
-
+
Export
Uitvoer
-
+
pt
Abbreviated font pointsize unit
pt
-
+
Image
Beeld
-
+
Import
Voer in
-
+
Live
Regstreeks
-
+
Live Background Error
Regstreekse Agtergrond Fout
-
+
Load
Laai
-
+
Middle
Middel
-
+
New
Nuwe
-
+
New Service
Nuwe Diens
-
+
New Theme
Nuwe Tema
-
+
No File Selected
Singular
Geen Lêer Geselekteer nie
-
+
No Files Selected
Plural
Geen Leêrs Geselekteer nie
-
+
No Item Selected
Singular
Geen Item Geselekteer nie
-
+
No Items Selected
Plural
Geen items geselekteer nie
-
+
openlp.org 1.x
openlp.org 1.x
-
+
OpenLP 2.0
OpenLP 2.0
-
+
Preview
Voorskou
-
+
Replace Background
Vervang Agtergrond
-
+
Reset Background
Herstel Agtergrond
-
+
s
The abbreviated unit for seconds
s
-
+
Save && Preview
Stoor && Voorskou
-
+
Search
Soek
-
+
You must select an item to delete.
Kies 'n item om uit te wis.
-
+
You must select an item to edit.
Selekteer 'n item om te regideer.
-
+
Save Service
Stoor Diens
-
+
Service
Diens
-
+
Start %s
Begin %s
-
+
Theme
Singular
Tema
-
+
Themes
Plural
Temas
-
+
Top
Bo
-
+
Version
Weergawe
-
+
Delete the selected item.
Wis die geselekteerde item uit.
-
+
Move selection up one position.
Skuif die seleksie een posisie op.
-
+
Move selection down one position.
Skuif die seleksie een posisie af.
-
+
&Vertical Align:
&Vertikale Sporing:
-
+
Finished import.
Invoer voltooi.
-
+
Format:
Formaat:
-
+
Importing
Invoer
-
+
Importing "%s"...
"%s" ingevoer...
-
+
Select Import Source
Selekteer Invoer Bron
-
+
Select the import format and the location to import from.
Selekteer die invoer vormaat en die ligging vanwaar invoer geskied.
-
+
The openlp.org 1.x importer has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "python-sqlite" module.
Die openlp.org 1.x invoerder is onaktief gestel weens 'n vermisde Python module. Om van hierdie invoerder gebruik te maak moet die "python-sqlite" module installeer word.
-
+
Open %s File
Maak %s Lêer Oop
-
+
%p%
%p%
-
+
Ready.
Gereed.
-
+
Starting import...
Invoer begin...
-
+
You need to specify at least one %s file to import from.
A file type e.g. OpenSong
Spesifiseer ten minste een %s lêer om vanaf in te voer.
-
+
Welcome to the Bible Import Wizard
Welkom by die Bybel Invoer Gids
-
+
Welcome to the Song Export Wizard
Welkom by die Lied Uitvoer Gids
-
+
Welcome to the Song Import Wizard
Welkom by die Lied Invoer Gids
-
+
Author
Singular
Outeur
-
+
Authors
Plural
Outeure
-
+
©
Copyright symbol.
©
-
+
Song Book
Singular
Lied Boek
-
+
Song Books
Plural
Lied Boeke
-
+
Song Maintenance
Lied Onderhoud
-
+
Topic
Singular
Onderwerp
-
+
Topics
Plural
Onderwerpe
-
+
Continuous
Aaneen-lopend
-
+
Default
Verstek
-
+
Display style:
Vertoon styl:
-
+
Duplicate Error
Dupliseer Fout
-
+
File
Lêer
-
+
Help
Hulp
-
+
h
The abbreviated unit for hours
h
-
+
Layout style:
Uitleg styl:
-
+
Live Toolbar
Regstreekse Gereedskapsbalk
-
+
m
The abbreviated unit for minutes
m
-
+
OpenLP is already running. Do you wish to continue?
OpenLP is reeds ana die gang. Gaan voort?
-
+
Settings
Verstellings
-
+
Tools
Gereedskap
-
+
Unsupported File
Lêer nie Ondersteun nie
-
+
Verse Per Slide
Vers Per Skyfie
-
+
Verse Per Line
Vers Per Lyn
-
+
View
Vertoon
-
+
Title and/or verses not found
Titel en/of verse nie gevind
-
+
XML syntax error
XML sintaks fout
-
+
View Mode
Vertoon Modus
-
+
Open service.
Maak 'n diens oop.
-
+
Print Service
Druk Diens uit
-
+
Replace live background.
Vervang regstreekse agtergrond.
-
+
Reset live background.
Herstel regstreekse agtergrond.
-
+
Split a slide into two only if it does not fit on the screen as one slide.
Verdeel 'n skyfie slegs in twee wanneer dit nie op die skerm as 'n enkele skyfie sal pas nie.
-
+
Welcome to the Bible Upgrade Wizard
Welkom by die Bybel Opgradeer Gids
-
+
Confirm Delete
Bevesting Uitwissing
-
+
Play Slides in Loop
Speel Skyfies in Herhaling
-
+
Play Slides to End
Speel Skyfies tot Einde
-
+
Stop Play Slides in Loop
Staak Skyfies in Herhaling
-
+
Stop Play Slides to End
Staak Skyfies tot Einde
-
+
Next Track
Volgende Snit
-
+
Search Themes...
Search bar place holder text
Soek Temas...
-
+
Optional &Split
Op&sionele Verdeling
-
+
Invalid Folder Selected
Singular
Ongeldige Gids Geselekteer
-
+
Invalid File Selected
Singular
Ongeldige Lêer Geselekteer
-
+
Invalid Files Selected
Plural
Ongeldige Lêer Geselekteer
-
+
No Folder Selected
Singular
Geen Gids Geselekteer nie
-
+
Open %s Folder
Maak %s Gids Oop
-
+
You need to specify one %s file to import from.
A file type e.g. OpenSong
Een %s lêer moet gespesifiseer word om vanaf in te voer.
-
+
You need to specify one %s folder to import from.
A song format e.g. PowerSong
Een %s gids moet gespesifiseer word om vanaf in te voer.
@@ -5695,25 +5695,25 @@ Die inhoud enkodering is nie UTF-8 nie.
OpenLP.core.lib
-
+
%1 and %2
Locale list separator: 2 items
%1 en %2
-
+
%1, and %2
Locale list separator: end
%1, en %2
-
+
%1, %2
Locale list separator: middle
%1, %2
-
+
%1, %2
Locale list separator: start
%1, %2
@@ -5722,50 +5722,50 @@ Die inhoud enkodering is nie UTF-8 nie.
PresentationPlugin
-
+
<strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box.
<strong>Aanbieding Mini-program</strong><br/>Die aanbieding mini-program bied die vermoë om aanbiedings van verskillende programme te vertoon. Die keuse van beskikbare aanbieding-programme word aan die gebruiker vertoon deur 'n hangkieslys.
-
+
Presentation
name singular
Aanbieding
-
+
Presentations
name plural
Aanbiedinge
-
+
Presentations
container title
Aanbiedinge
-
+
Load a new presentation.
Laai 'n nuwe aanbieding.
-
+
Delete the selected presentation.
Wis die geselekteerde aanbieding uit.
-
+
Preview the selected presentation.
Skou die geselekteerde aanbieding.
-
+
Send the selected presentation live.
Stuur die geselekteerde aanbieding regstreeks.
-
+
Add the selected presentation to the service.
Voeg die geselekteerde aanabieding by die diens.
@@ -5773,52 +5773,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 is incomplete, please reload.
Die aanbieding %s is onvolledig, herlaai asseblief.
-
+
The presentation %s no longer exists.
Die aanbieding %s bestaan nie meer nie.
@@ -5826,17 +5826,17 @@ Die inhoud enkodering is nie UTF-8 nie.
PresentationPlugin.PresentationTab
-
+
Available Controllers
Beskikbare Beheerders
-
+
%s (unavailable)
%s (nie beskikbaar nie)
-
+
Allow presentation application to be overridden
Laat toe dat die program oorheers word
@@ -5844,24 +5844,24 @@ Die inhoud enkodering is nie UTF-8 nie.
RemotePlugin
-
+
<strong>Remote Plugin</strong><br />The remote plugin provides the ability to send messages to a running version of OpenLP on a different computer via a web browser or through the remote API.
<strong>Afgeleë Mini-program</strong><br/>Die afgeleë mini-program verskaf die vermoë om boodskappe na 'n lopende weergawe van OpenLP op 'n ander rekenaar te stuur deur 'n web-blaaier of deur die afgeleë PPK (API).
-
+
Remote
name singular
Afstandbeheer
-
+
Remotes
name plural
Afstandbehere
-
+
Remote
container title
Afstandbeheer
@@ -5870,107 +5870,107 @@ Die inhoud enkodering is nie UTF-8 nie.
RemotePlugin.Mobile
-
+
OpenLP 2.0 Remote
OpenLP 2.0 Afgelië
-
+
OpenLP 2.0 Stage View
OpenLP 2.0 Verhoog Aansig
-
+
Service Manager
Diens Bestuurder
-
+
Slide Controller
Skyfie Beheerder
-
+
Alerts
Waarskuwings
-
+
Search
Soek
-
+
Refresh
Verfris
-
+
Blank
Blanko
-
+
Show
Wys
-
+
Prev
Vorige
-
+
Next
Volgende
-
+
Text
Teks
-
+
Show Alert
Wys Waarskuwing
-
+
Go Live
Gaan Regstreeks
-
+
No Results
Geen Resultate
-
+
Options
Opsies
-
+
Add to Service
Voeg By Diens
-
+
Home
Tuis
-
+
Theme
Tema
-
+
Desktop
Werkskerm
-
+
Add & Go to Service
Voeg by & Gaan na Diens
@@ -5978,42 +5978,42 @@ 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
Vertoon verhoog tyd in 12 uur formaat
-
+
Android App
Android Program
-
+
Scan the QR code or click <a href="https://market.android.com/details?id=org.openlp.android">download</a> to install the Android app from the Market.
Skandeer die QR kode of kliek <a href="https://market.android.com/details?id=org.openlp.android">aflaai</a> om die Android program vanaf die Mark af te laai.
@@ -6021,85 +6021,85 @@ Die inhoud enkodering is nie UTF-8 nie.
SongUsagePlugin
-
+
&Song Usage Tracking
&Volg Lied Gebruik
-
+
&Delete Tracking Data
Wis Volg &Data Uit
-
+
Delete song usage data up to a specified date.
Wis lied volg data uit tot en met 'n spesifieke datum.
-
+
&Extract Tracking Data
Onttr&ek Volg Data
-
+
Generate a report on song usage.
Genereer 'n verslag oor lied-gebruik.
-
+
Toggle Tracking
Wissel Volging
-
+
Toggle the tracking of song usage.
Wissel lied-gebruik volging.
-
+
<strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services.
<strong>LiedGebruik Mini-program</strong><br/>Die mini-program volg die gebruik van liedere in dienste.
-
+
SongUsage
name singular
Lied Gebruik
-
+
SongUsage
name plural
Lied Gebruik
-
+
SongUsage
container title
Lied Gebruik
-
+
Song Usage
Lied Gebruik
-
+
Song usage tracking is active.
Lied gebruik volging is aktief.
-
+
Song usage tracking is inactive.
Lied gebruik volging is onaktief.
-
+
display
vertoon
-
+
printed
gedruk
@@ -6107,32 +6107,32 @@ Die inhoud enkodering is nie UTF-8 nie.
SongUsagePlugin.SongUsageDeleteForm
-
+
Delete Song Usage Data
Wis Lied Gebruik Data Uit
-
+
Delete Selected Song Usage Events?
Wis Geselekteerde Lied Gebruik Gebeure uit?
-
+
Are you sure you want to delete selected Song Usage data?
Wis regtig die geselekteerde Diens Gebruik data uit?
-
+
Deletion Successful
Uitwissing Suksesvol
-
+
All requested data has been deleted successfully.
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.
@@ -6140,42 +6140,42 @@ Die inhoud enkodering is nie UTF-8 nie.
SongUsagePlugin.SongUsageDetailForm
-
+
Song Usage Extraction
Diens Gebruik Ontrekking
-
+
Select Date Range
Selekteer Datum Grense
-
+
to
tot
-
+
Report Location
Rapporteer Ligging
-
+
Output File Location
Uitvoer Lêer Ligging
-
+
usage_detail_%s_%s.txt
usage_detail_%s_%s.txt
-
+
Report Creation
Verslag Skepping
-
+
Report
%s
has been successfully created.
@@ -6184,12 +6184,12 @@ has been successfully created.
was suksesvol geskep.
-
+
Output Path Not Selected
Skryf Ligging Nie Gekies Nie
-
+
You have not set a valid output location for your song usage report. Please select an existing path on your computer.
Daar is nie 'n geldige skryf ligging gespesifiseer vir die lied-gebruik verslag nie. Kies asseblief 'n bestaande pad op die rekenaar.
@@ -6197,112 +6197,112 @@ was suksesvol geskep.
SongsPlugin
-
+
&Song
&Lied
-
+
Import songs using the import wizard.
Voer liedere in deur van die invoer helper gebruik te maak.
-
+
<strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs.
<strong>Liedere Mini-program</strong><br/>Die liedere mini-program verskaf die vermoë om liedere te vertoon en te bestuur.
-
+
&Re-index Songs
He&r-indeks Liedere
-
+
Re-index the songs database to improve searching and ordering.
Her-indeks die liedere databasis om lied-soektogte en organisering te verbeter.
-
+
Reindexing songs...
Besig om liedere indek te herskep...
-
+
Arabic (CP-1256)
Arabies (CP-1256)
-
+
Baltic (CP-1257)
Balties (CP-1257)
-
+
Central European (CP-1250)
Sentraal Europees (CP-1250)
-
+
Cyrillic (CP-1251)
Cyrillies (CP-1251)
-
+
Greek (CP-1253)
Grieks (CP-1253)
-
+
Hebrew (CP-1255)
Hebreeus (CP-1255)
-
+
Japanese (CP-932)
Japanees (CP-932)
-
+
Korean (CP-949)
Koreaans (CP-949)
-
+
Simplified Chinese (CP-936)
Vereenvoudigde Chinees (CP-936)
-
+
Thai (CP-874)
Thai (CP-874)
-
+
Traditional Chinese (CP-950)
Tradisionele Chinees (CP-950)
-
+
Turkish (CP-1254)
Turks (CP-1254)
-
+
Vietnam (CP-1258)
Viëtnamees (CP-1258)
-
+
Western European (CP-1252)
Wes-Europees (CP-1252)
-
+
Character Encoding
Karrakter Enkodering
-
+
The codepage setting is responsible
for the correct character representation.
Usually you are fine with the preselected choice.
@@ -6312,62 +6312,62 @@ Gewoonlik is die reeds-geselekteerde
keuse voldoende.
-
+
Please choose the character encoding.
The encoding is responsible for the correct character representation.
Kies asseblief die karrakter enkodering.
Die enkodering is verantwoordelik vir die korrekte karrakter voorstelling.
-
+
Song
name singular
Lied
-
+
Songs
name plural
Liedere
-
+
Songs
container title
Liedere
-
+
Exports songs using the export wizard.
Voer liedere uit deur gebruik te maak van die uitvoer gids.
-
+
Add a new song.
Voeg 'n nuwe lied by.
-
+
Edit the selected song.
Redigeer die geselekteerde lied.
-
+
Delete the selected song.
Wis die geselekteerde lied uit.
-
+
Preview the selected song.
Skou die geselekteerde lied.
-
+
Send the selected song live.
Stuur die geselekteerde lied regstreeks.
-
+
Add the selected song to the service.
Voeg die geselekteerde lied by die diens.
@@ -6375,37 +6375,37 @@ Die enkodering is verantwoordelik vir die korrekte karrakter voorstelling.
SongsPlugin.AuthorsForm
-
+
Author Maintenance
Outeur Onderhoud
-
+
Display name:
Vertoon naam:
-
+
First name:
Voornaam:
-
+
Last name:
Van:
-
+
You need to type in the first name of the author.
U moet die naam van die skrywer invul.
-
+
You need to type in the last name of the author.
U moet ten minste die skrywer se naam invoer.
-
+
You have not set a display name for the author, combine the first and last names?
'n Vertoon naam vir die skrywer is nie opgestel nie. Kan die naam en van gekombineer word?
@@ -6413,7 +6413,7 @@ Die enkodering is verantwoordelik vir die korrekte karrakter voorstelling.
SongsPlugin.CCLIFileImport
-
+
The file does not have a valid extension.
Die lêer het nie 'n geldige verlening nie.
@@ -6421,12 +6421,12 @@ Die enkodering is verantwoordelik vir die korrekte karrakter voorstelling.
SongsPlugin.EasyWorshipSongImport
-
+
Administered by %s
Toegedien deur %s
-
+
[above are Song Tags with notes imported from
EasyWorship]
@@ -6438,12 +6438,12 @@ Die enkodering is verantwoordelik vir die korrekte karrakter voorstelling.
SongsPlugin.EditBibleForm
-
+
Meta Data
Meta Data
-
+
Custom Book Names
Eie Boek Name
@@ -6451,207 +6451,207 @@ Die enkodering is verantwoordelik vir die korrekte karrakter voorstelling.
SongsPlugin.EditSongForm
-
+
Song Editor
Lied Redigeerder
-
+
&Title:
&Titel:
-
+
Alt&ernate title:
Alt&ernatiewe titel:
-
+
&Lyrics:
&Lirieke:
-
+
&Verse order:
&Vers orde:
-
+
Ed&it All
Red&igeer Alles
-
+
Title && Lyrics
Titel && Lirieke
-
+
&Add to Song
&Voeg by Lied
-
+
&Remove
Ve&rwyder
-
+
&Manage Authors, Topics, Song Books
&Bestuur Skrywers, Onderwerpe en Lied Boeke
-
+
A&dd to Song
Voeg by Lie&d
-
+
R&emove
V&erwyder
-
+
Book:
Boek:
-
+
Number:
Nommer:
-
+
Authors, Topics && Song Book
Skrywers, Onderwerpe && Lied Boek
-
+
New &Theme
Nuwe &Tema
-
+
Copyright Information
Kopiereg Informasie
-
+
Comments
Kommentaar
-
+
Theme, Copyright Info && Comments
Tema, Kopiereg Informasie && Kommentaar
-
+
Add Author
Voeg Skrywer By
-
+
This author does not exist, do you want to add them?
Hierdie skrywer bestaan nie, moet die skrywer bygevoeg word?
-
+
This author is already in the list.
Hierdie skrywer is alreeds in die lys.
-
+
You have not selected a valid author. Either select an author from the list, or type in a new author and click the "Add Author to Song" button to add the new author.
Die geselekteerde skrywer is ongeldig. Kies 'n skrywer vanaf die lys of voer 'n nuwe skrywer in en kliek op die "Voeg Skrywer by Lied" knoppie om die skrywer by te voeg.
-
+
Add Topic
Voeg Onderwerp by
-
+
This topic does not exist, do you want to add it?
Die onderwerp bestaan nie. Voeg dit by?
-
+
This topic is already in the list.
Die onderwerp is reeds in die lys.
-
+
You have not selected a valid topic. Either select a topic from the list, or type in a new topic and click the "Add Topic to Song" button to add the new topic.
Geselekteerde onderwerp is ongeldig. Kies 'n onderwerp vanaf die lys of voer 'n nuwe onderwerp in en kliek die "Voeg Onderwerp by Lied" knoppie om die onderwerp by te voeg.
-
+
You need to type in a song title.
Tik 'n lied titel in.
-
+
You need to type in at least one verse.
Ten minste een vers moet ingevoer word.
-
+
The verse order is invalid. There is no verse corresponding to %s. Valid entries are %s.
Die vers orde is ongeldig. Daar is geen vers wat ooreenstem met %s nie. Geldige opsies is %s.
-
+
Add Book
Voeg Boek by
-
+
This song book does not exist, do you want to add it?
Die lied boek bestaan nie. Voeg dit by?
-
+
You need to have an author for this song.
Daar word 'n outeur benodig vir hierdie lied.
-
+
You need to type some text in to the verse.
Daar word teks benodig vir die vers.
-
+
Linked Audio
Geskakelde Oudio
-
+
Add &File(s)
&Voeg Leêr(s) By
-
+
Add &Media
Voeg &Media By
-
+
Remove &All
Verwyder &Alles
-
+
Open File(s)
Maak Lêer(s) Oop
-
+
<strong>Warning:</strong> Not all of the verses are in use.
<strong>Waarskuwing:</strong> Nie al die verse is in gebruik nie.
-
+
The verse order is invalid. There are no verses corresponding to %s. Valid entries are %s.
Die vers orde is ongeldig. Daar is geen verse wat ooreenstem met %s nie. Geldige inskrywings is %s.
@@ -6659,22 +6659,22 @@ Die enkodering is verantwoordelik vir die korrekte karrakter voorstelling.
SongsPlugin.EditVerseForm
-
+
Edit Verse
Redigeer Vers
-
+
&Verse type:
&Vers tipe:
-
+
&Insert
Sit Tussen-&in
-
+
Split a slide into two by inserting a verse splitter.
Verdeel 'n skyfie in twee deur 'n vers-verdeler in te sit.
@@ -6682,82 +6682,82 @@ Die enkodering is verantwoordelik vir die korrekte karrakter voorstelling.
SongsPlugin.ExportWizardForm
-
+
Song Export Wizard
Lied Uitvoer Gids
-
+
Select Songs
Kies Liedere
-
+
Check the songs you want to export.
Merk die liediere wat uitgevoer moet vord.
-
+
Uncheck All
Merk Alles Af
-
+
Check All
Merk Alles Aan
-
+
Select Directory
Kies Lêer-gids
-
+
Directory:
Lêer Gids:
-
+
Exporting
Uitvoer
-
+
Please wait while your songs are exported.
Wag asseblief terwyl die liedere uitgevoer word.
-
+
You need to add at least one Song to export.
Ten minste een lied moet bygevoeg word om uit te voer.
-
+
No Save Location specified
Geen Stoor Ligging gespesifiseer nie
-
+
Starting export...
Uitvoer begin...
-
+
You need to specify a directory.
'n Lêer gids moet gespesifiseer word.
-
+
Select Destination Folder
Kies Bestemming Lêer gids
-
+
Select the directory where you want the songs to be saved.
Kies die gids waar die liedere gestoor moet word.
-
+
This wizard will help to export your songs to the open and free <strong>OpenLyrics</strong> worship song format.
Hierdie gids sal help om die liedere na die oop en gratis <strong>OpenLyrics</strong> aanbiddigs-formaat uit te voer.
@@ -6765,150 +6765,155 @@ Die enkodering is verantwoordelik vir die korrekte karrakter voorstelling.
SongsPlugin.ImportWizardForm
-
+
Select Document/Presentation Files
Selekteer Dokument/Aanbieding Lêers
-
+
Song Import Wizard
Lied Invoer Gids
-
+
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.
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
-
+
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.
-
+
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
-
+
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 of OpenLP 2.0 Uitgevoerde Lied
-
+
OpenLyrics Files
OpenLyrics Lêers
-
+
CCLI SongSelect Files
CCLI SongSelect Lêers
-
+
EasySlides XML File
EeasySlides XML Lêer
-
+
EasyWorship Song Database
EasyWorship Lied Databasis
-
+
DreamBeam Song Files
DreamBeam Lied Lêers
-
+
You need to specify a valid PowerSong 1.0 database folder.
'n Geldige PowerSong 1.0 databasis gids moet gespesifiseer word.
-
+
ZionWorx (CSV)
ZionWorx (CSV)
-
+
First convert your ZionWorx database to a CSV text file, as explained in the <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">User Manual</a>.
Verwerk eers jou ZionWorx databasis na 'n CSV teks lêer, soos verduidelik word in die <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">Gebruikers Handleiding</a>.
+
+
+ SundayPlus Song Files
+
+
SongsPlugin.MediaFilesForm
-
+
Select Media File(s)
Selekteer Media Lêer(s)
-
+
Select one or more audio files from the list below, and click OK to import them into this song.
Selekteer een of meer oudio lêers van die lys hieronder, en kliek OK om hulle na hierdie lied in te voer.
@@ -6916,27 +6921,27 @@ Die enkodering is verantwoordelik vir die korrekte karrakter voorstelling.
SongsPlugin.MediaItem
-
+
Titles
Titels
-
+
Lyrics
Lirieke
-
+
CCLI License:
CCLI Lisensie:
-
+
Entire Song
Volledige Lied
-
+
Are you sure you want to delete the %n selected song(s)?
Wis regtig die %n geselekteerde lied uit?
@@ -6944,38 +6949,38 @@ Die enkodering is verantwoordelik vir die korrekte karrakter voorstelling.
-
+
Maintain the lists of authors, topics and books.
Onderhou die lys van skrywers, onderwerpe en boeke.
-
+
copy
For song cloning
kopieër
-
+
Search Titles...
Soek Titels...
-
+
Search Entire Song...
Soek deur hele Lied...
-
+
Search Lyrics...
Soek Lirieke...
-
+
Search Authors...
Soek Outeure...
-
+
Search Song Books...
Soek Lied Boeke...
@@ -6983,7 +6988,7 @@ Die enkodering is verantwoordelik vir die korrekte karrakter voorstelling.
SongsPlugin.OpenLP1SongImport
-
+
Not a valid openlp.org 1.x song database.
Nie 'n geldige openlp.org 1.x lied databasis.
@@ -6991,7 +6996,7 @@ Die enkodering is verantwoordelik vir die korrekte karrakter voorstelling.
SongsPlugin.OpenLPSongImport
-
+
Not a valid OpenLP 2.0 song database.
Nie 'n geldige OpenLP 2.0 lied databasis.
@@ -6999,7 +7004,7 @@ Die enkodering is verantwoordelik vir die korrekte karrakter voorstelling.
SongsPlugin.OpenLyricsExport
-
+
Exporting "%s"...
Uitvoer "%s"...
@@ -7007,12 +7012,12 @@ Die enkodering is verantwoordelik vir die korrekte karrakter voorstelling.
SongsPlugin.PowerSongImport
-
+
No songs to import.
Geen liedere om in te voer nie.
-
+
Verses not found. Missing "PART" header.
Verse nie gevind nie. Vermis "PART" opskrif.
@@ -7020,22 +7025,22 @@ Die enkodering is verantwoordelik vir die korrekte karrakter voorstelling.
SongsPlugin.SongBookForm
-
+
Song Book Maintenance
Lied Boek Onderhoud
-
+
&Name:
&Naam:
-
+
&Publisher:
&Uitgewer:
-
+
You need to type in a name for the book.
'n Naam vir die boek moet ingevoer word.
@@ -7043,12 +7048,12 @@ Die enkodering is verantwoordelik vir die korrekte karrakter voorstelling.
SongsPlugin.SongExportForm
-
+
Your song export failed.
Die lied uitvoer het misluk.
-
+
Finished export. To import these files use the <strong>OpenLyrics</strong> importer.
Uitvoer voltooi. Om hierdie lêers in te voer, gebruik die <strong>OpenLyrics</strong> invoerder.
@@ -7056,27 +7061,27 @@ Die enkodering is verantwoordelik vir die korrekte karrakter voorstelling.
SongsPlugin.SongImport
-
+
copyright
kopiereg
-
+
The following songs could not be imported:
Die volgende liedere kon nie ingevoer word nie:
-
+
Cannot access OpenOffice or LibreOffice
Het nie toegang tot OpenOffice of LibreOffice nie
-
+
Unable to open file
Kan nie lêer oopmaak nie
-
+
File not found
Lêer nie gevind nie
@@ -7084,107 +7089,107 @@ Die enkodering is verantwoordelik vir die korrekte karrakter voorstelling.
SongsPlugin.SongMaintenanceForm
-
+
Could not add your author.
Skrywer kon nie bygevoeg word nie.
-
+
This author already exists.
Die skrywer bestaan reeds.
-
+
Could not add your topic.
Onderwerp kon nie bygevoeg word nie.
-
+
This topic already exists.
Hierdie onderwerp bestaan reeds.
-
+
Could not add your book.
Boek kon nie bygevoeg word nie.
-
+
This book already exists.
Hierdie boek bestaan reeds.
-
+
Could not save your changes.
Veranderinge kon nie gestoor word nie.
-
+
Could not save your modified author, because the author already exists.
Geredigeerde skrywer kon nie gestoor word nie, omdat die skrywer reeds bestaan.
-
+
Could not save your modified topic, because it already exists.
Geredigeerde onderwerp kon nie gestoor word nie, want dit bestaan alreeds.
-
+
Delete Author
Wis Skrywer Uit
-
+
Are you sure you want to delete the selected author?
Wis die geselekteerde skrywer uit?
-
+
This author cannot be deleted, they are currently assigned to at least one song.
Die skrywer kan nie uitgewis word nie, omdat die skrywer aan ten minste een lied toegeken is.
-
+
Delete Topic
Wis Onderwerp Uit
-
+
Are you sure you want to delete the selected topic?
Wis die geselekteerde onderwerp uit?
-
+
This topic cannot be deleted, it is currently assigned to at least one song.
Die onderwerp kan nie uitgewis word nie, omdat dit aan ten minste een lied toegeken is.
-
+
Delete Book
Wis Boek Uit
-
+
Are you sure you want to delete the selected book?
Wis die geselekteerde boek uit?
-
+
This book cannot be deleted, it is currently assigned to at least one song.
Die boek kan nie uitgewis word nie, omdat dit aan ten minste een lied toegeken is.
-
+
The author %s already exists. Would you like to make songs with author %s use the existing author %s?
Die outeur %s bestaan alreeds. Moet liedere met die outeur %s die bestaande outeur %s gebruik?
-
+
The topic %s already exists. Would you like to make songs with topic %s use the existing topic %s?
Die onderwerp %s bestaan alreeds. Moet liedere met die onderwerp %s die bestaande onderwerp %s gebruik?
-
+
The book %s already exists. Would you like to make songs with book %s use the existing book %s?
Die boek %s bestaan reeds. Moed liedere met die doek %s gebruik maak van bestaande boek %s?
@@ -7192,27 +7197,27 @@ Die enkodering is verantwoordelik vir die korrekte karrakter voorstelling.
SongsPlugin.SongsTab
-
+
Songs Mode
Liedere Modus
-
+
Enable search as you type
Bekragtig soek soos getik word
-
+
Display verses on live tool bar
Vertoon verse op regstreekse gereedskap staaf
-
+
Update service from song edit
Opdateer diens van lied-redigering
-
+
Import missing songs from service files
Voer vermisde liedere in vanaf diens lêers
@@ -7220,17 +7225,17 @@ Die enkodering is verantwoordelik vir die korrekte karrakter voorstelling.
SongsPlugin.TopicsForm
-
+
Topic Maintenance
Onderwerp Onderhoud
-
+
Topic name:
Onderwerp naam:
-
+
You need to type in a topic name.
'n Onderwerp naam moet ingevoer word.
@@ -7238,37 +7243,37 @@ Die enkodering is verantwoordelik vir die korrekte karrakter voorstelling.
SongsPlugin.VerseType
-
+
Verse
Vers
-
+
Chorus
Koor
-
+
Bridge
Brug
-
+
Pre-Chorus
Voor-Refrein
-
+
Intro
Inleiding
-
+
Ending
Slot
-
+
Other
Ander
@@ -7276,12 +7281,12 @@ Die enkodering is verantwoordelik vir die korrekte karrakter voorstelling.
SongsPlugin.ZionWorxImport
-
+
Error reading CSV file.
Probleem om CSV lêer te lees.
-
+
File not valid ZionWorx CSV format.
Lêer nie geldige ZionWorx CSV formaat nie.
diff --git a/resources/i18n/cs.ts b/resources/i18n/cs.ts
index 6405a2155..8e189bd44 100644
--- a/resources/i18n/cs.ts
+++ b/resources/i18n/cs.ts
@@ -3,35 +3,35 @@
AlertsPlugin
-
+
&Alert
&Upozornění
-
+
Show an alert message.
Zobrazit vzkaz upozornění.
-
+
Alert
name singular
Upozornění
-
+
Alerts
name plural
Upozornění
-
+
Alerts
container title
Upozornění
-
+
<strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of nursery alerts on the display screen.
<strong>Modul upozornění</strong><br />Modul upozornění umožňuje zobrazovat různé hlášky a upozornění na zobrazovací obrazovce.
@@ -39,69 +39,69 @@
AlertsPlugin.AlertForm
-
+
Alert Message
Vzkaz upozornění
-
+
Alert &text:
&Text upozornění:
-
+
&New
&Nový
-
+
&Save
&Uložit
-
+
Displ&ay
&Zobrazit
-
+
Display && Cl&ose
Zobrazit a za&vřít
-
+
New Alert
Nové upozornění
-
+
You haven't specified any text for your alert. Please type in some text before clicking New.
Nebyl zadán žádný text upozornění. Před klepnutím na Nový prosím zadejte nějaký text.
-
+
&Parameter:
&Parametr:
-
+
No Parameter Found
Parametr nenalezen
-
+
You have not entered a parameter to be replaced.
Do you want to continue anyway?
Nebyl zadán žádný parametr pro nahrazení.
Chcete přesto pokračovat?
-
+
No Placeholder Found
Zástupný znak nenalezen
-
+
The alert text does not contain '<>'.
Do you want to continue anyway?
Text upozornění neobsahuje '<>'.
@@ -111,7 +111,7 @@ Chcete přesto pokračovat?
AlertsPlugin.AlertsManager
-
+
Alert message created and displayed.
Vzkaz upozornění byl vytvořen a zobrazen.
@@ -119,32 +119,32 @@ Chcete přesto pokračovat?
AlertsPlugin.AlertsTab
-
+
Font
Písmo
-
+
Font name:
Název písma:
-
+
Font color:
Barva písma:
-
+
Background color:
Barva pozadí:
-
+
Font size:
Velikost písma:
-
+
Alert timeout:
Čas vypršení upozornění:
@@ -152,510 +152,510 @@ Chcete přesto pokračovat?
BiblesPlugin
-
+
&Bible
&Bible
-
+
Bible
name singular
Bible
-
+
Bibles
name plural
Více Biblí
-
+
Bibles
container title
Bible
-
+
No Book Found
Kniha nenalezena
-
+
No matching book could be found in this Bible. Check that you have spelled the name of the book correctly.
V Bibli nebyla nalezena odpovídající kniha. Prověřte, že název knihy byl zadán správně.
-
+
Import a Bible.
Import Bible.
-
+
Add a new Bible.
Přidat novou Bibli.
-
+
Edit the selected Bible.
Upravit vybranou Bibli.
-
+
Delete the selected Bible.
Smazat vybranou Bibli.
-
+
Preview the selected Bible.
Náhled vybrané Bible.
-
+
Send the selected Bible live.
Zobrazit vybranou Bibli naživo.
-
+
Add the selected Bible to the service.
Přidat vybranou Bibli ke službě.
-
+
<strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display Bible verses from different sources during the service.
<strong>Modul Bible</strong><br />Modul Bible umožňuje během služby zobrazovat verše z různých zdrojů.
-
+
&Upgrade older Bibles
&Aktualizovat starší Bibles
-
+
Upgrade the Bible databases to the latest format.
Povýšit databáze Bible na nejnovější formát.
-
+
Genesis
1. Mojžíšova
-
+
Exodus
2. Mojžíšova
-
+
Leviticus
3. Mojžíšova
-
+
Numbers
4. Mojžíšova
-
+
Deuteronomy
5. Mojžíšova
-
+
Joshua
Jozue
-
+
Judges
Soudců
-
+
Ruth
Rút
-
+
1 Samuel
1. Samuelova
-
+
2 Samuel
2. Samuelova
-
+
1 Kings
1. Královská
-
+
2 Kings
2. Královská
-
+
1 Chronicles
1. Paralipomenon
-
+
2 Chronicles
2. Paralipomenon
-
+
Ezra
Ezdráš
-
+
Nehemiah
Nehemjáš
-
+
Esther
Ester
-
+
Job
Jób
-
+
Psalms
Žalmy
-
+
Proverbs
Přísloví
-
+
Ecclesiastes
Kazatel
-
+
Song of Solomon
Píseň písní
-
+
Isaiah
Izajáš
-
+
Jeremiah
Jeremjáš
-
+
Lamentations
Pláč
-
+
Ezekiel
Ezechiel
-
+
Daniel
Daniel
-
+
Hosea
Ozeáš
-
+
Joel
Jóel
-
+
Amos
Ámos
-
+
Obadiah
Abdijáš
-
+
Jonah
Jonáš
-
+
Micah
Micheáš
-
+
Nahum
Nahum
-
+
Habakkuk
Abakuk
-
+
Zephaniah
Sofonjáš
-
+
Haggai
Ageus
-
+
Zechariah
Zacharjáš
-
+
Malachi
Malachiáš
-
+
Matthew
Matouš
-
+
Mark
Marek
-
+
Luke
Lukáš
-
+
John
Jan
-
+
Acts
Skutky apoštolské
-
+
Romans
Římanům
-
+
1 Corinthians
1. Korintským
-
+
2 Corinthians
2. Korintským
-
+
Galatians
Galatským
-
+
Ephesians
Efezským
-
+
Philippians
Filipským
-
+
Colossians
Koloským
-
+
1 Thessalonians
1. Tesalonickým
-
+
2 Thessalonians
2. Tesalonickým
-
+
1 Timothy
1. Timoteovi
-
+
2 Timothy
2. Timoteovi
-
+
Titus
Titovi
-
+
Philemon
Filemonovi
-
+
Hebrews
Židům
-
+
James
List Jakubův
-
+
1 Peter
1. list Petrův
-
+
2 Peter
2. list Petrův
-
+
1 John
1. list Janův
-
+
2 John
2. list Janův
-
+
3 John
3. list Janův
-
+
Jude
List Judův
-
+
Revelation
Zjevení Janovo
-
+
Judith
Júdit
-
+
Wisdom
Kniha moudrosti
-
+
Tobit
Tobijáš
-
+
Sirach
Sírachovec
-
+
Baruch
Báruk
-
+
1 Maccabees
1. Makabejská
-
+
2 Maccabees
2. Makabejská
-
+
3 Maccabees
3. Makabejská
-
+
4 Maccabees
4. Makabejská
-
+
Rest of Daniel
Zbytek Daniele
-
+
Rest of Esther
Zbytek Ester
-
+
Prayer of Manasses
Modlitba Manasese
-
+
Letter of Jeremiah
Jeremiášův Dopis
-
+
Prayer of Azariah
Modlitba Azarjáše
-
+
Susanna
Zuzana
-
+
Bel
Bel
-
+
1 Esdras
1. Ezdrášova
-
+
2 Esdras
2. Ezdrášova
-
+
:|v|V|verse|verses;;-|to;;,|and;;end
Double-semicolon delimited separators for parsing references. Consult the developers for further information.
:|v|V|verse|verses;;-|to;;,|and;;end
@@ -664,32 +664,32 @@ Chcete přesto pokračovat?
BiblesPlugin.BibleEditForm
-
+
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 (Public Domain), 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í.
-
+
You need to specify a book name for "%s".
Je nutno uvést název knihy pro "%s".
-
+
The book name "%s" is not correct.
Numbers can only be used at the beginning and must
be followed by one or more non-numeric characters.
@@ -698,12 +698,12 @@ be followed by one or more non-numeric characters.
následovat jeden nebo více nečíslných znaků.
-
+
Duplicate Book Name
Duplicitní název knihy
-
+
The Book Name "%s" has been entered more than once.
"%s" jako název knihy byl zadán více než jednou.
@@ -711,39 +711,39 @@ následovat jeden nebo více nečíslných znaků.
BiblesPlugin.BibleManager
-
+
Scripture Reference Error
Chyba v odkazu do Bible
-
+
Web Bible cannot be used
Bibli z www nelze použít
-
+
Text Search is not available with Web Bibles.
Hledání textu není dostupné v Bibli z www.
-
+
You did not enter a search keyword.
You can separate different keywords by a space to search for all of your keywords and you can separate them by a comma to search for one of them.
Nebylo zadáno slovo pro hledání.
K hledání textu obsahující všechna slova je nutno tato slova oddělit mezerou. Oddělením slov čárkou se bude hledat text obsahující alespoň jedno ze zadaných slov.
-
+
There are no Bibles currently installed. Please use the Import Wizard to install one or more Bibles.
Žádné Bible nejsou nainstalovány. K p?idání jedné nebo více Biblí prosím použijte Pr?vodce importem.
-
+
No Bibles Available
Žádné Bible k dispozici
-
+
Your scripture reference is either not supported by OpenLP or is invalid. Please make sure your reference conforms to one of the following patterns or consult the manual:
Book Chapter
@@ -766,79 +766,79 @@ Kniha Kapitola%(verse)sVerš%(range)sKapitola%(verse)sVerš
BiblesPlugin.BiblesTab
-
+
Verse Display
Zobrazit verš
-
+
Only show new chapter numbers
Zobrazit jen číslo nové kapitoly
-
+
Bible theme:
Motiv Bible:
-
+
No Brackets
Žádné závorky
-
+
( And )
( A )
-
+
{ And }
{ A }
-
+
[ And ]
[ A ]
-
+
Note:
Changes do not affect verses already in the service.
Poznámka:
Verše, které jsou už ve službě, nejsou změnami ovlivněny.
-
+
Display second Bible verses
Zobrazit druhé verše z Bible
-
+
Custom Scripture References
Uživatelské odkazy z Bible
-
+
Verse Separator:
Oddělovač veršů:
-
+
Range Separator:
Oddělovač rozsahů:
-
+
List Separator:
Oddělovač seznamů:
-
+
End Mark:
Ukončovací značka:
-
+
Multiple alternative verse separators may be defined.
They have to be separated by a vertical bar "|".
Please clear this edit line to use the default value.
@@ -847,7 +847,7 @@ Musí být odděleny vislou čárou "|".
Pro použití výchozí hodnoty smažte tento řádek.
-
+
Multiple alternative range separators may be defined.
They have to be separated by a vertical bar "|".
Please clear this edit line to use the default value.
@@ -856,7 +856,7 @@ Musí být odděleny vislou čárou "|".
Pro použití výchozí hodnoty smažte tento řádek.
-
+
Multiple alternative list separators may be defined.
They have to be separated by a vertical bar "|".
Please clear this edit line to use the default value.
@@ -865,7 +865,7 @@ Musí být odděleny vislou čárou "|".
Pro použití výchozí hodnoty smažte tento řádek.
-
+
Multiple alternative end marks may be defined.
They have to be separated by a vertical bar "|".
Please clear this edit line to use the default value.
@@ -874,29 +874,29 @@ Musí být odděleny vislou čárou "|".
Pro použití výchozí hodnoty smažte tento řádek.
-
+
English
Čeština
-
+
Default Bible Language
Výchozí jazyk Bible
-
+
Book name language in search field,
search results and on display:
Jazyk názvů knih ve vyhledávacím poli,
výsledcích vyhledávání a při zobrazení:
-
+
Bible Language
Jazyk Bible
-
+
Application Language
Jazyk aplikace
@@ -904,42 +904,42 @@ výsledcích vyhledávání a při zobrazení:
BiblesPlugin.BookNameDialog
-
+
Select Book Name
Vybrat název knihy
-
+
Current name:
Současný název:
-
+
Corresponding name:
Odpovídající název:
-
+
Show Books From
Zobrazit knihy od
-
+
Old Testament
Starý zákon
-
+
New Testament
Nový zákon
-
+
Apocrypha
Apokryfy
-
+
The following book name cannot be matched up internally. Please select the corresponding name from the list.
Pro následující název knihy není odpovídající vnitřní název. Vyberte prosím odpovídající název ze seznamu.
@@ -947,7 +947,7 @@ výsledcích vyhledávání a při zobrazení:
BiblesPlugin.BookNameForm
-
+
You need to select a book.
Je potřeba vybrat knihu.
@@ -955,18 +955,18 @@ výsledcích vyhledávání a při zobrazení:
BiblesPlugin.CSVBible
-
+
Importing books... %s
Importuji knihy... %s
-
+
Importing verses from %s...
Importing verses from <book name>...
Importuji verše z %s...
-
+
Importing verses... done.
Importuji verše... hotovo.
@@ -974,69 +974,69 @@ výsledcích vyhledávání a při zobrazení:
BiblesPlugin.EditBibleForm
-
+
Bible Editor
Editor Bible
-
+
License Details
Podrobnosti k licenci
-
+
Version name:
Název verze:
-
+
Copyright:
Autorská práva:
-
+
Permissions:
Povolení:
-
+
Default Bible Language
Výchozí jazyk Bible
-
+
Book name language in search field, search results and on display:
Jazyk názvů knih ve vyhledávacím poli, výsledcích vyhledávání a při zobrazení:
-
+
Global Settings
Globální nastavení
-
+
Bible Language
Jazyk Bible
-
+
Application Language
Jazyk aplikace
-
+
English
Angličtina
-
+
This is a Web Download Bible.
It is not possible to customize the Book Names.
Toto je Bible stahovaná z Internetu.
Není možné přizpůsobit si názvy knih.
-
+
To use the customized book names, "Bible language" must be selected on the Meta Data tab or, if "Global settings" is selected, on the Bible page in Configure OpenLP.
Pro přizpůsobení názvů knih musí být vybrán "Jazyk Bible" v kartě Meta Data nebo na stránce Bible v Nastavení OpenLP, pokud je vybráno "Globální nastavení".
@@ -1044,38 +1044,38 @@ Není možné přizpůsobit si názvy knih.
BiblesPlugin.HTTPBible
-
+
Registering Bible and loading books...
Registruji Bibli a stahuji knihy...
-
+
Registering Language...
Registruji jazyk...
-
+
Importing %s...
Importing <book name>...
Importuji %s...
-
+
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.
@@ -1083,167 +1083,167 @@ Není možné přizpůsobit si názvy knih.
BiblesPlugin.ImportWizardForm
-
+
Bible Import Wizard
Průvodce importem Bible
-
+
This wizard will help you to import Bibles from a variety of formats. Click the next button below to start the process by selecting a format to import from.
Tento průvodce usnadní import Biblí z různých formátů. Proces importu se spustí klepnutím níže na tlačítko další. Potom vyberte formát, ze kterého se bude Bible importovat.
-
+
Web Download
Stáhnutí z www
-
+
Location:
Umístění:
-
+
Crosswalk
Crosswalk
-
+
BibleGateway
BibleGateway
-
+
Bible:
Bible:
-
+
Download Options
Volby stahování
-
+
Server:
Server:
-
+
Username:
Uživatelské jméno:
-
+
Password:
Heslo:
-
+
Proxy Server (Optional)
Proxy Server (Volitelné)
-
+
License Details
Podrobnosti licence
-
+
Set up the Bible's license details.
Nastavit podrobnosti k licenci Bible.
-
+
Version name:
Název verze:
-
+
Copyright:
Autorská práva:
-
+
Please wait while your Bible is imported.
Prosím vyčkejte, než se Bible importuje.
-
+
You need to specify a file with books of the Bible to use in the import.
Je potřeba určit soubor s knihami Bible. Tento soubor se použije při importu.
-
+
You need to specify a file of Bible verses to import.
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
-
+
Bibleserver
Bibleserver
-
+
Permissions:
Povolení:
-
+
Bible file:
Soubor s Biblí:
-
+
Books file:
Soubor s knihami:
-
+
Verses file:
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í.
@@ -1252,17 +1252,17 @@ demand and thus an internet connection is required.
BiblesPlugin.LanguageDialog
-
+
Select Language
Vybrat jazyk
-
+
OpenLP is unable to determine the language of this translation of the Bible. Please select the language from the list below.
OpenLP není schopen určit jazyk tohoto překladu Bible. Vyberte prosím jazyk ze seznamu níže.
-
+
Language:
Jazyk:
@@ -1270,7 +1270,7 @@ demand and thus an internet connection is required.
BiblesPlugin.LanguageForm
-
+
You need to choose a language.
Je potřeba vybrat jazyk.
@@ -1278,92 +1278,92 @@ demand and thus an internet connection is required.
BiblesPlugin.MediaItem
-
+
Quick
Rychlý
-
+
Find:
Hledat:
-
+
Book:
Kniha:
-
+
Chapter:
Kapitola:
-
+
Verse:
Verš:
-
+
From:
Od:
-
+
To:
Do:
-
+
Text Search
Hledání textu
-
+
Second:
Druhý:
-
+
Scripture Reference
Odkaz do Bible
-
+
Toggle to keep or clear the previous results.
Přepnout ponechání nebo smazání předchozích výsledků.
-
+
You cannot combine single and dual Bible verse search results. Do you want to delete your search results and start a new search?
Nelze kombinovat jednoduché a dvojité výsledky hledání veršů v Bibli. Přejete si smazat výsledky hledání a začít s novým vyhledáváním?
-
+
Bible not fully loaded.
Bible není načtena celá.
-
+
Information
Informace
-
+
The second Bible does not contain all the verses that are in the main Bible. Only verses found in both Bibles will be shown. %d verses have not been included in the results.
Druhá Bible neobsahuje všechny verše jako jsou v hlavní Bibli. Budou zobrazeny jen verše nalezené v obou Biblích. %d veršů nebylo zahrnuto ve výsledcích.
-
+
Search Scripture Reference...
Hledat odkaz do Bible...
-
+
Search Text...
Hledat text...
-
+
Are you sure you want to delete "%s"?
Jste si jisti, že chcete smazat "%s"?
@@ -1371,7 +1371,7 @@ demand and thus an internet connection is required.
BiblesPlugin.Opensong
-
+
Importing %s %s...
Importing <book name> <chapter>...
Importuji %s %s...
@@ -1380,12 +1380,12 @@ demand and thus an internet connection is required.
BiblesPlugin.OsisImport
-
+
Detecting encoding (this may take a few minutes)...
Zjištuji kódování (může trvat několik minut)...
-
+
Importing %s %s...
Importing <book name> <chapter>...
Importuji %s %s...
@@ -1394,148 +1394,148 @@ demand and thus an internet connection is required.
BiblesPlugin.UpgradeWizardForm
-
+
Select a Backup Directory
Vybrat složku pro zálohu
-
+
Bible Upgrade Wizard
Průvodce aktualizací Bible
-
+
This wizard will help you to upgrade your existing Bibles from a prior version of OpenLP 2. Click the next button below to start the upgrade process.
Tento průvodce pomáhá s aktualizací existujcích Biblí z předchozí verze OpenLP 2. Pro spuštění aktualizace klepně níže na tlačítko Další.
-
+
Select Backup Directory
Vybrat složku pro zálohu
-
+
Please select a backup directory for your Bibles
Vyberte prosím složku pro zálohu Biblí
-
+
Previous releases of OpenLP 2.0 are unable to use upgraded Bibles. This will create a backup of your current Bibles so that you can simply copy the files back to your OpenLP data directory if you need to revert to a previous release of OpenLP. Instructions on how to restore the files can be found in our <a href="http://wiki.openlp.org/faq">Frequently Asked Questions</a>.
Předchozí vydání OpenLP 2.0 nejsou schopny aktualizovat Bible. Bude vytvořena záloha současných Biblí, aby bylo možné v případě potřeby jednoduše nakopírovat soubory zpět do datové složky aplikace OpenLP. Instrukce, jak obnovit soubory, lze nalézt v <a href="http://wiki.openlp.org/faq">často kladené otázky</a>.
-
+
Please select a backup location for your Bibles.
Vyberte prosím umístění pro zálohu Biblí.
-
+
Backup Directory:
Složka pro zálohu:
-
+
There is no need to backup my Bibles
Není potřeba zálohovat Bible
-
+
Select Bibles
Vybrat Bible
-
+
Please select the Bibles to upgrade
Vyberte prosím Bible k aktualizaci
-
+
Upgrading
Aktualizuji
-
+
Please wait while your Bibles are upgraded.
Čekejte prosím, než budou Bible aktualizovány.
-
+
The backup was not successful.
To backup your Bibles you need permission to write to the given directory.
Záloha nebyla úspěšná. Pro zálohu Biblí je nutno oprávnění k zápisu do zadané složky.
-
+
Upgrading Bible %s of %s: "%s"
Failed
Aktualizuji Bibli %s z %s: "%s"
Selhalo
-
+
Upgrading Bible %s of %s: "%s"
Upgrading ...
Aktualizuji Bibli %s z %s: "%s"
Aktualizuji ...
-
+
Download Error
Chyba stahování
-
+
To upgrade your Web Bibles an Internet connection is required.
Pro aktualizaci Biblí z www je vyžadováno internetové připojení.
-
+
Upgrading Bible %s of %s: "%s"
Upgrading %s ...
Aktualizuji Bibli %s z %s: "%s"
Aktualizuji %s ...
-
+
Upgrading Bible %s of %s: "%s"
Complete
Aktualizuji Bibli %s z %s: "%s"
Dokončeno
-
+
, %s failed
, %s selhalo
-
+
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.
Aktualizace Biblí: %s úspěšné%s
Upozornění: Verše z www Bible budou stáhnuty na vyžádání a proto je vyžadováno internetové připojení.
-
+
Upgrading Bible(s): %s successful%s
Aktualizace Biblí: %s úspěšné%s
-
+
Upgrade failed.
Aktualizace selhala.
-
+
You need to specify a backup directory for your Bibles.
Je potřeba upřesnit složku pro zálohu Biblí.
-
+
Starting upgrade...
Spouštím aktualizaci...
-
+
There are no Bibles that need to be upgraded.
Žádné Bible nepotřebují aktualizovat.
@@ -1543,65 +1543,65 @@ Upozornění: Verše z www Bible budou stáhnuty na vyžádání a proto je vyž
CustomPlugin
-
+
<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>Modul uživatelský snímek</strong><br />Modul uživatelský snímek dovoluje nastavit snímkům libovolný text, který může být zobrazen na obrazovce stejným způsobem jako písně. Tento modul poskytuje větší volnost než modul písně.
-
+
Custom Slide
name singular
Uživatelský snímek
-
+
Custom Slides
name plural
Uživatelské snímky
-
+
Custom Slides
container title
Uživatelské snímky
-
+
Load a new custom slide.
Načíst nový uživatelský snímek.
-
+
Import a custom slide.
Import uživatelského snímku.
-
+
Add a new custom slide.
Přidat nový uživatelský snímek.
-
+
Edit the selected custom slide.
Upravit vybraný uživatelský snímek.
-
+
Delete the selected custom slide.
Smazat vybraný uživatelský snímek.
-
+
Preview the selected custom slide.
Náhled vybraného uživatelského snímku.
-
+
Send the selected custom slide live.
Zobrazit vybraný uživatelský snímek naživo.
-
+
Add the selected custom slide to the service.
Přidat vybraný uživatelský snímek ke službě.
@@ -1609,12 +1609,12 @@ Upozornění: Verše z www Bible budou stáhnuty na vyžádání a proto je vyž
CustomPlugin.CustomTab
-
+
Custom Display
Uživatelské zobrazení
-
+
Display footer
Patička zobrazení
@@ -1622,62 +1622,62 @@ Upozornění: Verše z www Bible budou stáhnuty na vyžádání a proto je vyž
CustomPlugin.EditCustomForm
-
+
Edit Custom Slides
Upravit vlastní snímky
-
+
&Title:
&Název:
-
+
Add a new slide at bottom.
Přidat nový snímek na konec.
-
+
Edit the selected slide.
Upravit vybraný snímek.
-
+
Edit all the slides at once.
Upravit všechny snímky najednou.
-
+
Split a slide into two by inserting a slide splitter.
Vložením oddělovače se snímek rozdělí na dva.
-
+
The&me:
&Motiv:
-
+
&Credits:
&Zásluhy:
-
+
You need to type in a title.
Je nutno zadat název.
-
+
You need to add at least one slide
Je nutno přidat alespoň jeden snímek
-
+
Ed&it All
Upra&it vše
-
+
Insert Slide
Vložit snímek
@@ -1685,7 +1685,7 @@ Upozornění: Verše z www Bible budou stáhnuty na vyžádání a proto je vyž
CustomPlugin.MediaItem
-
+
Are you sure you want to delete the %n selected custom slide(s)?
Jste si jisti, že chcete smazat %n vybraný uživatelský snímek?
@@ -1697,60 +1697,60 @@ Upozornění: Verše z www Bible budou stáhnuty na vyžádání a proto je vyž
ImagePlugin
-
+
<strong>Image Plugin</strong><br />The image plugin provides displaying of images.<br />One of the distinguishing features of this plugin is the ability to group a number of images together in the service manager, making the displaying of multiple images easier. This plugin can also make use of OpenLP's "timed looping" feature to create a slide show that runs automatically. In addition to this, images from the plugin can be used to override the current theme's background, which renders text-based items like songs with the selected image as a background instead of the background provided by the theme.
<strong>Modul obrázek</strong><br />Modul obrázek se stará o zobrazování obrázků.<br />Jedna z charakteristických funkcí tohoto modulu je schopnost ve správci služby seskupit několik obrázků dohromady. Tato vlastnost zjednodušuje zobrazení více obrázků. Tento modul také využívá vlastnosti "časová smyčka" aplikace OpenLP a je tudíž možno vytvořit prezentaci obrázků, která poběží samostatně. Nadto lze využitím obrázků z modulu překrýt pozadí současného motivu.
-
+
Image
name singular
Obrázek
-
+
Images
name plural
Obrázky
-
+
Images
container title
Obrázky
-
+
Load a new image.
Načíst nový obrázek.
-
+
Add a new image.
Přidat nový obrázek.
-
+
Edit the selected image.
Upravit vybraný obrázek.
-
+
Delete the selected image.
Smazat vybraný obrázek.
-
+
Preview the selected image.
Náhled vybraného obrázku.
-
+
Send the selected image live.
Zobrazit vybraný obrázek naživo.
-
+
Add the selected image to the service.
Přidat vybraný obrázek ke službě.
@@ -1758,7 +1758,7 @@ Upozornění: Verše z www Bible budou stáhnuty na vyžádání a proto je vyž
ImagePlugin.ExceptionDialog
-
+
Select Attachment
Vybrat přílohu
@@ -1766,32 +1766,32 @@ Upozornění: Verše z www Bible budou stáhnuty na vyžádání a proto je vyž
ImagePlugin.MediaItem
-
+
Select Image(s)
Vybrat obrázky
-
+
You must select an image to delete.
Pro smazání musíte nejdříve vybrat obrázek.
-
+
You must select an image to replace the background with.
K nahrazení pozadí musíte nejdříve vybrat obrázek.
-
+
Missing Image(s)
Chybějící obrázky
-
+
The following image(s) no longer exist: %s
Následující obrázky už neexistují: %s
-
+
The following image(s) no longer exist: %s
Do you want to add the other images anyway?
Následující obrázky už neexistují: %
@@ -1811,17 +1811,17 @@ Chcete přidat ostatní obrázky?
ImagesPlugin.ImageTab
-
+
Background Color
Barva pozadí
-
+
Default Color:
Výchozí barva:
-
+
Visible background for images with aspect ratio different to screen.
Viditelné pozadí pro obrázky s jiným poměrem stran než má obrazovka.
@@ -1829,60 +1829,60 @@ Chcete přidat ostatní obrázky?
MediaPlugin
-
+
<strong>Media Plugin</strong><br />The media plugin provides playback of audio and video.
<strong>Modul média</strong><br />Modul média umožňuje přehrávat audio a video.
-
+
Media
name singular
Médium
-
+
Media
name plural
Média
-
+
Media
container title
Média
-
+
Load new media.
Načíst nové médium.
-
+
Add new media.
Přidat nové médium.
-
+
Edit the selected media.
Upravit vybrané médium.
-
+
Delete the selected media.
Smazat vybrané médium.
-
+
Preview the selected media.
Náhled vybraného média.
-
+
Send the selected media live.
Zobrazit vybrané médium naživo.
-
+
Add the selected media to the service.
Přidat vybrané médium ke službě.
@@ -1890,57 +1890,57 @@ Chcete přidat ostatní obrázky?
MediaPlugin.MediaItem
-
+
Select Media
Vybrat médium
-
+
You must select a media file to delete.
Ke smazání musíte nejdříve vybrat soubor s médiem.
-
+
You must select a media file to replace the background with.
K nahrazení pozadí musíte nejdříve vybrat soubor s médiem.
-
+
There was a problem replacing your background, the media file "%s" no longer exists.
Problém s nahrazením pozadí. Soubor s médiem "%s" už neexistuje.
-
+
Missing Media File
Chybějící soubory s médii
-
+
The file %s no longer exists.
Soubor %s už neexistuje.
-
+
Videos (%s);;Audio (%s);;%s (*)
Video (%s);;Audio (%s);;%s (*)
-
+
There was no display item to amend.
Žádná položka k zobrazení nebyla pozměněna.
-
+
Unsupported File
Nepodporovaný soubor
-
+
Automatic
Automaticky
-
+
Use Player:
Použít přehrávač:
@@ -1948,22 +1948,22 @@ Chcete přidat ostatní obrázky?
MediaPlugin.MediaTab
-
+
Available Media Players
Dostupné přehrávače médií
-
+
%s (unavailable)
%s (nedostupný)
-
+
Player Order
Pořadí přehrávače
-
+
Allow media player to be overridden
Povolit překrytí přehrávače médií
@@ -1971,17 +1971,17 @@ Chcete přidat ostatní obrázky?
OpenLP
-
+
Image Files
Soubory s obrázky
-
+
Information
Informace
-
+
Bible format has changed.
You have to upgrade your existing Bibles.
Should OpenLP upgrade now?
@@ -1993,37 +1993,37 @@ Má se aktualizace provét teď?
OpenLP.AboutForm
-
+
Credits
Zásluhy
-
+
License
Licence
-
+
Contribute
Přispět
-
+
build %s
sestavení %s
-
+
This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License.
Tato aplikace je svobodný software. Lze ji libovolně šířit a upravovat v souladu s GNU General Public licencí, vydané Free Software Foundation; a to v souladu s verzí 2 této licence.
-
+
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See below for more details.
Tato aplikace je šířena v naději, že bude užitečná, avšak BEZ JAKÉKOLI ZÁRUKY; neposkytují se ani odvozené záruky PRODEJNOSTI anebo VHODNOSTI PRO URČITÝ ÚČEL. Další podrobnosti viz níže.
-
+
Project Lead
%s
@@ -2148,7 +2148,7 @@ Finální zásluhy
On nás učinil svobodnými.
-
+
OpenLP <version><revision> - Open Source Lyrics Projection
OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if Impress, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector.
@@ -2165,7 +2165,7 @@ Více informací o OpenLP: http://openlp.org/
OpenLP vytváří a udržují dobrovolníci. Pokud má existovat více volně dostupného křesťanského software, zvažte prosím přispění tlačítkem níže.
-
+
Copyright © 2004-2012 %s
Portions copyright © 2004-2012 %s
Autorská práva © 2004-2012 %s
@@ -2175,264 +2175,264 @@ Portions copyright © 2004-2012 %s
OpenLP.AdvancedTab
-
+
UI Settings
Nastavení rozhraní
-
+
Number of recent files to display:
Počet zobrazených nedávných souborů:
-
+
Remember active media manager tab on startup
Pamatovat si při spuštění aktivní kartu správce médií
-
+
Double-click to send items straight to live
Dvojklik zobrazí položku přímo naživo
-
+
Expand new service items on creation
Při vytvoření rozbalit nové položky služby
-
+
Enable application exit confirmation
Zapnout potvrzování ukončení aplikace
-
+
Mouse Cursor
Kurzor myši
-
+
Hide mouse cursor when over display window
Skrýt kurzor myši v okně zobrazení
-
+
Default Image
Výchozí obrázek
-
+
Background color:
Barva pozadí:
-
+
Image file:
Soubor s obrázkem:
-
+
Open File
Otevřít soubor
-
+
Advanced
Pokročilé
-
+
Preview items when clicked in Media Manager
Náhled položek při klepnutí ve správci médií
-
+
Click to select a color.
Klepnout pro výběr barvy.
-
+
Browse for an image file to display.
Procházet pro obrázek k zobrazení.
-
+
Revert to the default OpenLP logo.
Vrátit na výchozí OpenLP logo.
-
+
Service %Y-%m-%d %H-%M
This may not contain any of the following characters: /\?*|<>[]":+
See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for more information.
Služba %Y-%m-%d %H-%M
-
+
Default Service Name
Výchozí název služby
-
+
Enable default service name
Zapnout výchozí název služby
-
+
Date and Time:
Datum a čas:
-
+
Monday
Pondělí
-
+
Tuesday
Úterý
-
+
Wednesday
Středa
-
+
Thurdsday
Čtvrtek
-
+
Friday
Pátek
-
+
Saturday
Sobota
-
+
Sunday
Neděle
-
+
Now
Teď
-
+
Time when usual service starts.
Čas, kdy obvykle začíná bohoslužba.
-
+
Name:
Název:
-
+
Consult the OpenLP manual for usage.
Pro použití se podívejte do dokumentace.
-
+
Revert to the default service name "%s".
Vrátit na výchozí název služby "%s".
-
+
Example:
Příklad:
-
+
X11
X11
-
+
Bypass X11 Window Manager
Obejít správce oken X11
-
+
Syntax error.
Chyba syntaxe.
-
+
Data Location
Umístění dat
-
+
Current path:
Současná cesta:
-
+
Custom path:
Uživatelská cesta:
-
+
Browse for new data file location.
Procházet pro nové umístění datových souborů.
-
+
Set the data location to the default.
Nastavit umístění dat na výchozí.
-
+
Cancel
Zrušit
-
+
Cancel OpenLP data directory location change.
Zrušit změnu umístění datové složky OpenLP.
-
+
Copy data to new location.
Kopírovat data do nového umístění.
-
+
Copy the OpenLP data files to the new location.
Kopírovat datové soubory OpenLP do nového umístění.
-
+
<strong>WARNING:</strong> New data directory location contains OpenLP data files. These files WILL be replaced during a copy.
<strong>VAROVÁNÍ:</strong> Nové umístnění datové složky už obsahuje datové soubory OpenLP. Tyto soubory BUDOU nahrazeny během kopírování.
-
+
Data Directory Error
Chyba datové složky
-
+
Select Data Directory Location
Vybrat umístění datové složky
-
+
Confirm Data Directory Change
Potvrdit změnu datové složky
-
+
Reset Data Directory
Obnovit datovou složku
-
+
Are you sure you want to change the location of the OpenLP data directory to the default location?
This location will be used after OpenLP is closed.
@@ -2441,7 +2441,7 @@ This location will be used after OpenLP is closed.
Toto umístění se použije po zavření aplikace OpenLP.
-
+
Overwrite Existing Data
Přepsat existující data
@@ -2449,39 +2449,39 @@ Toto umístění se použije po zavření aplikace OpenLP.
OpenLP.ExceptionDialog
-
+
Error Occurred
Vznikla chyba
-
+
Oops! OpenLP hit a problem, and couldn't recover. The text in the box below contains information that might be helpful to the OpenLP developers, so please e-mail it to bugs@openlp.org, along with a detailed description of what you were doing when the problem occurred.
Jejda! V aplikaci OpenLP vznikl problém, ze kterého není možné se zotavit. Text v polícku níže obsahuje informace, které mohou být užitečné pro vývojáře aplikace OpenLP. Zašlete je prosím spolu s podrobným popisem toho, co jste dělal, když problém vzniknul, na adresu bugs@openlp.org.
-
+
Send E-Mail
Poslat e-mail
-
+
Save to File
Uložit do souboru
-
+
Please enter a description of what you were doing to cause this error
(Minimum 20 characters)
Zadejte prosím popis toho, co jste prováděl, když vznikla tato chyba
(Minimálně 20 znaků)
-
+
Attach File
Přiložit soubor
-
+
Description characters to enter : %s
Znaky popisu pro vložení : %s
@@ -2489,24 +2489,24 @@ Toto umístění se použije po zavření aplikace OpenLP.
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
@@ -2537,7 +2537,7 @@ Version: %s
-
+
*OpenLP Bug Report*
Version: %s
@@ -2572,17 +2572,17 @@ Version: %s
OpenLP.FileRenameForm
-
+
File Rename
Přejmenovat soubor
-
+
New File Name:
Nový název souboru:
-
+
File Copy
Kopírovat soubor
@@ -2590,17 +2590,17 @@ Version: %s
OpenLP.FirstTimeLanguageForm
-
+
Select Translation
Vybrat překlad
-
+
Choose the translation you'd like to use in OpenLP.
Vyberte překlad, který bude používat aplikace OpenLP.
-
+
Translation:
Překlad:
@@ -2608,199 +2608,199 @@ Version: %s
OpenLP.FirstTimeWizard
-
+
Songs
Písně
-
+
First Time Wizard
Průvodce prvním spuštění
-
+
Welcome to the First Time Wizard
Vítejte v průvodci prvním spuštění
-
+
Activate required Plugins
Zapnout požadované moduly
-
+
Select the Plugins you wish to use.
Vyberte moduly, které chcete používat.
-
+
Bible
Bible
-
+
Images
Obrázky
-
+
Presentations
Prezentace
-
+
Media (Audio and Video)
Média (audio a video)
-
+
Allow remote access
Povolit vzdálený přístup
-
+
Monitor Song Usage
Sledovat užívání písní
-
+
Allow Alerts
Povolit upozornění
-
+
Default Settings
Výchozí nastavení
-
+
Downloading %s...
Stahuji %s...
-
+
Download complete. Click the finish button to start OpenLP.
Stahování dokončeno. Klepnutím na tlačítko konec se spustí aplikace OpenLP.
-
+
Enabling selected plugins...
Zapínám vybrané moduly...
-
+
No Internet Connection
Žádné připojení k Internetu
-
+
Unable to detect an Internet connection.
Nezdařila se detekce internetového připojení.
-
+
Sample Songs
Ukázky písní
-
+
Select and download public domain songs.
Vybrat a stáhnout písně s nechráněnými autorskými právy.
-
+
Sample Bibles
Ukázky Biblí
-
+
Select and download free Bibles.
Vybrat a stáhnout volně dostupné Bible.
-
+
Sample Themes
Ukázky motivů
-
+
Select and download sample themes.
Vybrat a stáhnout ukázky motivů.
-
+
Set up default settings to be used by OpenLP.
Nastavit výchozí nastavení pro aplikaci OpenLP.
-
+
Default output display:
Výchozí výstup zobrazit na:
-
+
Select default theme:
Vybrat výchozí motiv:
-
+
Starting configuration process...
Spouštím průběh nastavení...
-
+
This wizard will help you to configure OpenLP for initial use. Click the next button below to start.
Tento průvodce pomáhá nastavit OpenLP pro první použití. Pro start klepněte níže na tlačítko další.
-
+
Setting Up And Downloading
Nastavuji a stahuji
-
+
Please wait while OpenLP is set up and your data is downloaded.
Čekejte prosím, než bude aplikace OpenLP nastavena a data stáhnuta.
-
+
Setting Up
Nastavuji
-
+
Click the finish button to start OpenLP.
Klepnutím na tlačítko konec se spustí aplikace OpenLP.
-
+
Download complete. Click the finish button to return to OpenLP.
Stahování dokončeno. Klepnutím na tlačítko konec dojde k návratu do aplikace OpenLP.
-
+
Click the finish button to return to OpenLP.
Klepnutím na tlačítko konec dojde k návratu do aplikace OpenLP.
-
+
Custom Slides
Uživatelské snímky
-
+
Finish
Konec
-
+
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. Click 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.
Internetové připojení není dostupné. Průvodce prvním spuštění potřebuje internetové připojení pro stažení ukázek písní, Biblí a motivů. Klepněte na tlačiko Konec pro spuštění aplikace OpenLP ve výchozím nastavení a bez ukázkových dat.
-
+
To cancel the First Time Wizard completely (and not start OpenLP), click the Cancel button now.
@@ -2810,52 +2810,52 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can
OpenLP.FormattingTagDialog
-
+
Configure Formatting Tags
Nastavit formátovací značky
-
+
Edit Selection
Upravit výběr
-
+
Save
Uložit
-
+
Description
Popis
-
+
Tag
Značka
-
+
Start tag
Začátek značky
-
+
End tag
Konec značky
-
+
Tag Id
Id značky
-
+
Start HTML
Začátek HTML
-
+
End HTML
Konec HTML
@@ -2863,32 +2863,32 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can
OpenLP.FormattingTagForm
-
+
Update Error
Chyba aktualizace
-
+
Tag "n" already defined.
Značka "n" je už definovaná.
-
+
New Tag
Nová značka
-
+
<HTML here>
<HTML zde>
-
+
</and here>
</and zde>
-
+
Tag %s already defined.
Značka %s je už definovaná.
@@ -2896,82 +2896,82 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can
OpenLP.FormattingTags
-
+
Red
Červená
-
+
Black
Černá
-
+
Blue
Modrá
-
+
Yellow
Žlutá
-
+
Green
Zelená
-
+
Pink
Růžová
-
+
Orange
Oranžová
-
+
Purple
Fialová
-
+
White
Bílá
-
+
Superscript
Horní index
-
+
Subscript
Dolní index
-
+
Paragraph
Odstavec
-
+
Bold
Tučné
-
+
Italics
Kurzíva
-
+
Underline
Podtržené
-
+
Break
Zalomení
@@ -2979,157 +2979,157 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can
OpenLP.GeneralTab
-
+
General
Obecné
-
+
Monitors
Monitory
-
+
Select monitor for output display:
Vybrat monitor pro výstupní zobrazení:
-
+
Display if a single screen
Zobrazení při jedné obrazovce
-
+
Application Startup
Spuštění aplikace
-
+
Show blank screen warning
Zobrazit varování při prázdné obrazovce
-
+
Automatically open the last service
Automaticky otevřít poslední službu
-
+
Show the splash screen
Zobrazit úvodní obrazovku
-
+
Application Settings
Nastavení aplikace
-
+
Prompt to save before starting a new service
Před spuštěním nové služby se ptát na uložení
-
+
Automatically preview next item in service
Automatický náhled další položky ve službě
-
+
sec
sek
-
+
CCLI Details
CCLI podrobnosti
-
+
SongSelect username:
SongSelect uživatelské jméno:
-
+
SongSelect password:
SongSelect heslo:
-
+
X
X
-
+
Y
Y
-
+
Height
Výška
-
+
Width
Šířka
-
+
Check for updates to OpenLP
Kontrola aktualizací aplikace OpenLP
-
+
Unblank display when adding new live item
Odkrýt zobrazení při přidání nové položky naživo
-
+
Timed slide interval:
Časový interval mezi snímky:
-
+
Background Audio
Zvuk na pozadí
-
+
Start background audio paused
Spustit audio na pozadí pozastavené
-
+
Service Item Slide Limits
Omezení snímku položky služby
-
+
Override display position:
Překrýt pozici zobrazení:
-
+
Repeat track list
Opakovat seznam stop
-
+
Behavior of next/previous on the last/first slide:
Chování další/předchozí na posledním/prvním snímku:
-
+
&Remain on Slide
&Zůstat na snímku
-
+
&Wrap around
&Skočit na první/poslední snímek
-
+
&Move to next/previous service item
&Přesun na další/předchozí položku ve službě
@@ -3137,12 +3137,12 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can
OpenLP.LanguageManager
-
+
Language
Jazyk
-
+
Please restart OpenLP to use your new language setting.
Změny nastavení jazyka se projeví restartováním aplikace OpenLP.
@@ -3150,7 +3150,7 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can
OpenLP.MainDisplay
-
+
OpenLP Display
Zobrazení OpenLP
@@ -3158,287 +3158,287 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can
OpenLP.MainWindow
-
+
&File
&Soubor
-
+
&Import
&Import
-
+
&Export
&Export
-
+
&View
&Zobrazit
-
+
M&ode
&Režim
-
+
&Tools
&Nástroje
-
+
&Settings
&Nastavení
-
+
&Language
&Jazyk
-
+
&Help
&Nápověda
-
+
Media Manager
Správce médií
-
+
Service Manager
Správce služby
-
+
Theme Manager
Správce motivů
-
+
&New
&Nový
-
+
&Open
&Otevřít
-
+
Open an existing service.
Otevřít existující službu.
-
+
&Save
&Uložit
-
+
Save the current service to disk.
Uložit současnou službu na disk.
-
+
Save &As...
Uložit &jako...
-
+
Save Service As
Uložit službu jako
-
+
Save the current service under a new name.
Uložit současnou službu s novým názvem.
-
+
E&xit
U&končit
-
+
Quit OpenLP
Ukončit OpenLP
-
+
&Theme
&Motiv
-
+
&Configure OpenLP...
&Nastavit OpenLP...
-
+
&Media Manager
Správce &médií
-
+
Toggle Media Manager
Přepnout správce médií
-
+
Toggle the visibility of the media manager.
Přepnout viditelnost správce médií.
-
+
&Theme Manager
Správce &motivů
-
+
Toggle Theme Manager
Přepnout správce motivů
-
+
Toggle the visibility of the theme manager.
Přepnout viditelnost správce motivů.
-
+
&Service Manager
Správce &služby
-
+
Toggle Service Manager
Přepnout správce služby
-
+
Toggle the visibility of the service manager.
Přepnout viditelnost správce služby.
-
+
&Preview Panel
Panel &náhledu
-
+
Toggle Preview Panel
Přepnout panel náhledu
-
+
Toggle the visibility of the preview panel.
Přepnout viditelnost panelu náhled.
-
+
&Live Panel
Panel na&živo
-
+
Toggle Live Panel
Přepnout panel naživo
-
+
Toggle the visibility of the live panel.
Přepnout viditelnost panelu naživo.
-
+
&Plugin List
Seznam &modulů
-
+
List the Plugins
Vypsat moduly
-
+
&User Guide
&Uživatelská příručka
-
+
&About
&O aplikaci
-
+
More information about OpenLP
Více informací o aplikaci OpenLP
-
+
&Online Help
&Online nápověda
-
+
&Web Site
&Webová stránka
-
+
Use the system language, if available.
Použít jazyk systému, pokud je dostupný.
-
+
Set the interface language to %s
Jazyk rozhraní nastaven na %s
-
+
Add &Tool...
Přidat &nástroj...
-
+
Add an application to the list of tools.
Přidat aplikaci do seznamu nástrojů.
-
+
&Default
&Výchozí
-
+
Set the view mode back to the default.
Nastavit režim zobrazení zpět na výchozí.
-
+
&Setup
&Nastavení
-
+
Set the view mode to Setup.
Nastavit režim zobrazení na Nastavení.
-
+
&Live
&Naživo
-
+
Set the view mode to Live.
Nastavit režim zobrazení na Naživo.
-
+
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/.
@@ -3447,108 +3447,108 @@ You can download the latest version from http://openlp.org/.
Nejnovější verzi lze stáhnout z http://openlp.org/.
-
+
OpenLP Version Updated
Verze OpenLP aktualizována
-
+
OpenLP Main Display Blanked
Hlavní zobrazení OpenLP je prázdné
-
+
The Main Display has been blanked out
Hlavní zobrazení nastaveno na prázdný snímek
-
+
Default Theme: %s
Výchozí motiv: %s
-
+
English
Please add the name of your language here
Čeština
-
+
Configure &Shortcuts...
Nastavuji &zkratky...
-
+
Close OpenLP
Zavřít OpenLP
-
+
Are you sure you want to close OpenLP?
Chcete opravdu zavřít aplikaci OpenLP?
-
+
Open &Data Folder...
Otevřít složku s &daty...
-
+
Open the folder where songs, bibles and other data resides.
Otevřít složku, kde se nachází písně, Bible a ostatní data.
-
+
&Autodetect
&Automaticky detekovat
-
+
Update Theme Images
Aktualizovat obrázky motivu
-
+
Update the preview images for all themes.
Aktualizovat náhledy obrázků všech motivů.
-
+
Print the current service.
Tisk současné služby.
-
+
&Recent Files
&Nedávné soubory
-
+
L&ock Panels
&Uzamknout panely
-
+
Prevent the panels being moved.
Zabrání přesunu panelů.
-
+
Re-run First Time Wizard
Znovu spustit Průvodce prvním spuštění
-
+
Re-run the First Time Wizard, importing songs, Bibles and themes.
Znovu spustit Průvodce prvním spuštění, importovat písně, Bible a motivy.
-
+
Re-run First Time Wizard?
Znovu spustit Průvodce prvním spuštění?
-
+
Are you sure you want to re-run the First Time Wizard?
Re-running this wizard may make changes to your current OpenLP configuration and possibly add songs to your existing songs list and change your default theme.
@@ -3557,43 +3557,43 @@ Re-running this wizard may make changes to your current OpenLP configuration and
Znovu spuštěním tohoto průvodce může dojít ke změně současného nastavení aplikace OpenLP a pravděpodobně budou přidány písně k existujícímu seznamu a změněn výchozí motiv.
-
+
Clear List
Clear List of recent files
Vyprázdnit seznam
-
+
Clear the list of recent files.
Vyprázdnit seznam nedávných souborů.
-
+
Configure &Formatting Tags...
Nastavit &formátovací značky...
-
+
Export OpenLP settings to a specified *.config file
Export nastavení OpenLP do určitého *.config souboru
-
+
Settings
Nastavení
-
+
Import OpenLP settings from a specified *.config file previously exported on this or another machine
Import nastavení OpenLP ze určitého *.config souboru dříve exportovaného na tomto nebo jiném stroji
-
+
Import settings?
Importovat nastavení?
-
+
Are you sure you want to import settings?
Importing settings will make permanent changes to your current OpenLP configuration.
@@ -3606,37 +3606,37 @@ Importováním nastavení dojde k trvalým změnám současného nastavení apli
Importování nesprávných nastavení může zapříčinit náladové chování nebo nenormální ukončení aplikace OpenLP.
-
+
Open File
Otevřít soubor
-
+
OpenLP Export Settings Files (*.conf)
Soubory exportovaného nastavení OpenLP (*.conf)
-
+
Import settings
Import nastavení
-
+
OpenLP will now close. Imported settings will be applied the next time you start OpenLP.
Aplikace OpenLP se nyní zavře. Importovaná nastavení se použijí při příštim spuštění.
-
+
Export Settings File
Soubor exportovaného nastavení
-
+
OpenLP Export Settings File (*.conf)
Soubor exportovaného nastavení OpenLP (*.conf)
-
+
New Data Directory Error
Chyba nové datové složky
@@ -3644,12 +3644,12 @@ Importování nesprávných nastavení může zapříčinit náladové chování
OpenLP.Manager
-
+
Database Error
Chyba databáze
-
+
The database being loaded was created in a more recent version of OpenLP. The database is version %d, while OpenLP expects version %d. The database will not be loaded.
Database: %s
@@ -3658,7 +3658,7 @@ Database: %s
Databáze: %s
-
+
OpenLP cannot load your database.
Database: %s
@@ -3670,52 +3670,52 @@ Databáze: %s
OpenLP.MediaManagerItem
-
+
No Items Selected
Nevybraná zádná položka
-
+
&Add to selected Service Item
&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í
@@ -3732,12 +3732,12 @@ Suffix not supported
Přípona není podporována
-
+
&Clone
&Klonovat
-
+
Duplicate files were found on import and were ignored.
Při importu byly nalezeny duplicitní soubory a byly ignorovány.
@@ -3745,12 +3745,12 @@ Přípona není podporována
OpenLP.OpenLyricsImportError
-
+
<lyrics> tag is missing.
Chybějící značka <lyrics>.
-
+
<verse> tag is missing.
Chybějící značka <verse>.
@@ -3758,42 +3758,42 @@ Přípona není podporována
OpenLP.PluginForm
-
+
Plugin List
Seznam modulů
-
+
Plugin Details
Podrobnosti k modulu
-
+
Status:
Stav:
-
+
Active
Aktivní
-
+
Inactive
Neaktivní
-
+
%s (Inactive)
%s (Neaktivní)
-
+
%s (Active)
%s (Aktivní)
-
+
%s (Disabled)
%s (Vypnuto)
@@ -3801,12 +3801,12 @@ Přípona není podporována
OpenLP.PrintServiceDialog
-
+
Fit Page
Přizpůsobit stránce
-
+
Fit Width
Přizpůsobit šířce
@@ -3814,77 +3814,77 @@ Přípona není podporována
OpenLP.PrintServiceForm
-
+
Options
Možnosti
-
+
Copy
Kopírovat
-
+
Copy as HTML
Kopírovat jako HTML
-
+
Zoom In
Zvětšit
-
+
Zoom Out
Zmenšit
-
+
Zoom Original
Původní velikost
-
+
Other Options
Ostatní možnosti
-
+
Include slide text if available
Zahrnout text snímku, pokud je k dispozici
-
+
Include service item notes
Zahrnout poznámky položky služby
-
+
Include play length of media items
Zahrnout délku přehrávání mediálních položek
-
+
Add page break before each text item
Přidat zalomení stránky před každou textovou položku
-
+
Service Sheet
List služby
-
+
Print
Tisk
-
+
Title:
Nadpis:
-
+
Custom Footer Text:
Uživatelský text zápatí:
@@ -3892,12 +3892,12 @@ Přípona není podporována
OpenLP.ScreenList
-
+
Screen
Obrazovka
-
+
primary
Primární
@@ -3905,12 +3905,12 @@ Přípona není podporována
OpenLP.ServiceItem
-
+
<strong>Start</strong>: %s
<strong>Začátek</strong>: %s
-
+
<strong>Length</strong>: %s
<strong>Délka</strong>: %s
@@ -3918,7 +3918,7 @@ Přípona není podporována
OpenLP.ServiceItemEditForm
-
+
Reorder Service Item
Změnit pořadí Položky služby
@@ -3926,279 +3926,279 @@ Přípona není podporována
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
-
+
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?
-
+
Custom Service Notes:
Poznámky Uživatelský služby:
-
+
Notes:
Poznámky:
-
+
Playing time:
Čas přehrávání:
-
+
Untitled Service
Prázdná služba
-
+
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
-
+
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.
Soubor je buďto poškozen nebo se nejedná o soubor se službou z aplikace OpenLP 2.0.
-
+
Service File Missing
Chybějící soubor se službou
-
+
Slide theme
Motiv snímku
-
+
Notes
Poznámky
-
+
Edit
Upravit
-
+
Service copy only
Kopírovat jen službu
-
+
Error Saving File
Chyba při ukládání souboru
-
+
There was an error saving your file.
Vznikla chyba při ukládání souboru.
@@ -4206,7 +4206,7 @@ Obsah souboru není v kódování UTF-8.
OpenLP.ServiceNoteForm
-
+
Service Item Notes
Poznámky položky služby
@@ -4214,7 +4214,7 @@ Obsah souboru není v kódování UTF-8.
OpenLP.SettingsForm
-
+
Configure OpenLP
Nastavit OpenLP
@@ -4222,67 +4222,67 @@ Obsah souboru není v kódování UTF-8.
OpenLP.ShortcutListDialog
-
+
Action
Činnost
-
+
Shortcut
Zkratka
-
+
Duplicate Shortcut
Duplicitní zkratka
-
+
The shortcut "%s" is already assigned to another action, please use a different shortcut.
Zkratka "%s" je už přiřazena jiné činnosti. Použijte prosím jinou zkratku.
-
+
Alternate
Alternativa
-
+
Select an action and click one of the buttons below to start capturing a new primary or alternate shortcut, respectively.
Zadání nové hlavní nebo alternativní zkratky se spustí vybráním činnosti a klepnutím na jedno z tlačítek níže.
-
+
Default
Výchozí
-
+
Custom
Uživatelský
-
+
Capture shortcut.
Zachytit zkratku.
-
+
Restore the default shortcut of this action.
Obnovit výchozí zkratku činnosti.
-
+
Restore Default Shortcuts
Obnovit výchozí zkratku
-
+
Do you want to restore all shortcuts to their defaults?
Chcete obnovit všechny zkratky na jejich výchozí hodnoty?
-
+
Configure Shortcuts
Nastavit zkratky
@@ -4290,172 +4290,172 @@ Obsah souboru není v kódování UTF-8.
OpenLP.SlideController
-
+
Hide
Skrýt
-
+
Go To
Přejít na
-
+
Blank Screen
Prázdná obrazovka
-
+
Blank to Theme
Prázdný motiv
-
+
Show Desktop
Zobrazit plochu
-
+
Previous Service
Předchozí služba
-
+
Next Service
Další služba
-
+
Escape Item
Zrušit položku
-
+
Move to previous.
Přesun na předchozí.
-
+
Move to next.
Přeson na další.
-
+
Play Slides
Přehrát snímky
-
+
Delay between slides in seconds.
Zpoždění mezi s nímky v sekundách.
-
+
Move to live.
Přesun naživo.
-
+
Add to Service.
Přidat ke službě.
-
+
Edit and reload song preview.
Upravit a znovu načíst náhled písně.
-
+
Start playing media.
Spustit přehrávání média.
-
+
Pause audio.
Pozastavit zvuk.
-
+
Pause playing media.
Pozastavit přehrávání média.
-
+
Stop playing media.
Zastavit přehrávání média.
-
+
Video position.
Umístění videa.
-
+
Audio Volume.
Hlasitost zvuku.
-
+
Go to "Verse"
Přejít na "Sloka"
-
+
Go to "Chorus"
Přejít na "Refrén"
-
+
Go to "Bridge"
Přejít na "Přechod"
-
+
Go to "Pre-Chorus"
Přejít na "Předrefrén"
-
+
Go to "Intro"
Přejít na "Úvod"
-
+
Go to "Ending"
Přejít na "Zakončení"
-
+
Go to "Other"
Přejít na "Ostatní"
-
+
Previous Slide
Předchozí snímek
-
+
Next Slide
Další snímek
-
+
Pause Audio
Pozastavit zvuk
-
+
Background Audio
Zvuk na pozadí
-
+
Go to next audio track.
Přejít na další zvukovou stopu.
-
+
Tracks
Stopy
@@ -4463,17 +4463,17 @@ Obsah souboru není v kódování UTF-8.
OpenLP.SpellTextEdit
-
+
Spelling Suggestions
Návrhy pravopisu
-
+
Formatting Tags
Formátovací značky
-
+
Language:
Jazyk:
@@ -4481,67 +4481,67 @@ Obsah souboru není v kódování UTF-8.
OpenLP.StartTimeForm
-
+
Hours:
Hodiny:
-
+
Minutes:
Minuty:
-
+
Seconds:
Sekundy:
-
+
Item Start and Finish Time
Čas začátku a konce položky
-
+
Start
Začátek
-
+
Finish
Konec
-
+
Length
Délka
-
+
Time Validation Error
Chyba při ověření času
-
+
Finish time is set after the end of the media item
Čas konce je nastaven po času konce mediální položky
-
+
Start time is after the finish time of the media item
Čas začátku je nastaven po času konce mediální položky
-
+
Theme Layout
Rozvržení motivu
-
+
The blue box shows the main area.
Modré políčko ukazuje hlavní oblast.
-
+
The red box shows the footer.
Červené políčko ukazuje zápatí.
@@ -4549,32 +4549,32 @@ Obsah souboru není v kódování UTF-8.
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)
(přibližně %d řádek na snímek)
@@ -4582,72 +4582,72 @@ Obsah souboru není v kódování UTF-8.
OpenLP.ThemeManager
-
+
Create a new theme.
Vytvoří nový motiv.
-
+
Edit Theme
Upravit motiv
-
+
Edit a theme.
Upraví motiv.
-
+
Delete Theme
Smazat motiv
-
+
Delete a theme.
Smaže motiv.
-
+
Import Theme
Import motivu
-
+
Import a theme.
Importuje motiv.
-
+
Export Theme
Export motivu
-
+
Export a theme.
Exportuje motiv.
-
+
&Edit Theme
&Upravit motiv
-
+
&Delete Theme
&Smazat motiv
-
+
Set As &Global Default
Nastavit jako &Globální výchozí
-
+
%s (default)
%s (výchozí)
-
+
You must select a theme to edit.
Pro úpravy je třeba vybrat motiv.
@@ -4662,87 +4662,87 @@ Obsah souboru není v kódování UTF-8.
Motiv %s je používán v modulu %s.
-
+
You have not selected a theme.
Není vybrán žádný motiv.
-
+
Save Theme - (%s)
Uložit motiv - (%s)
-
+
Theme Exported
Motiv exportován
-
+
Your theme has been successfully exported.
Motiv byl úspěšně exportován.
-
+
Theme Export Failed
Export motivu selhal
-
+
Your theme could not be exported due to an error.
Kvůli chybě nebylo možno motiv exportovat.
-
+
Select Theme Import File
Vybrat soubor k importu motivu
-
+
File is not a valid theme.
Soubor není platný motiv.
-
+
&Copy Theme
&Kopírovat motiv
-
+
&Rename Theme
&Přejmenovat motiv
-
+
&Export Theme
&Export motivu
-
+
You must select a theme to rename.
K přejmenování je třeba vybrat motiv.
-
+
Rename Confirmation
Potvrzení přejmenování
-
+
Rename %s theme?
Přejmenovat motiv %s?
-
+
You must select a theme to delete.
Pro smazání je třeba vybrat motiv.
-
+
Delete Confirmation
Potvrzení smazání
-
+
Delete %s theme?
Smazat motiv %s?
@@ -4757,18 +4757,18 @@ Obsah souboru není v kódování UTF-8.
Motiv s tímto názvem již existuje.
-
+
OpenLP Themes (*.theme *.otz)
OpenLP motivy (*.theme *.otz)
-
+
Copy of %s
Copy of <theme name>
Kopie %s
-
+
Theme Already Exists
Motiv již existuje
@@ -4776,320 +4776,320 @@ 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:
Barva začátku:
-
+
Ending color:
Barva konce:
-
+
Background color:
Barva pozadí:
-
+
Justify
Do bloku
-
+
Layout Preview
Náhled rozvržení
-
+
Transparent
Průhledný
+
+
+ Preview and Save
+
+
+
+
+ Preview the theme and save it.
+
+
OpenLP.ThemesTab
-
+
Global Theme
Globální motiv
-
+
Theme Level
Úroveň motivu
-
+
S&ong Level
Úroveň &písně
-
+
Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme.
Použít motiv z každé písně z databáze. Pokud píseň nemá přiřazen motiv, potom se použije motiv služby. Pokud služba nemá motiv, pak se použije globální motiv.
-
+
&Service Level
Úroveň &služby
-
+
Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme.
Použitím motivu ze služby se překryje motiv jednotlivých písní. Pokud služba nemá motiv, tak se použije globální motiv.
-
+
&Global Level
&Globální úroveň
-
+
Use the global theme, overriding any themes associated with either the service or the songs.
Použitím globálního motivu se překryjí motivy, které jsou přiřazeny službám nebo písním.
-
+
Themes
Motivy
@@ -5097,591 +5097,591 @@ Obsah souboru není v kódování UTF-8.
OpenLP.Ui
-
+
Error
Chyba
-
+
About
O aplikaci
-
+
&Add
&Přidat
-
+
Advanced
Pokročilé
-
+
All Files
Všechny soubory
-
+
Bottom
Dole
-
+
Browse...
Procházet...
-
+
Cancel
Zrušit
-
+
CCLI number:
CCLI číslo:
-
+
Create a new service.
Vytvořit novou službu.
-
+
&Delete
&Smazat
-
+
&Edit
&Upravit
-
+
Empty Field
Prázdné pole
-
+
Export
Export
-
+
pt
Abbreviated font pointsize unit
pt
-
+
Image
Obrázek
-
+
Import
Import
-
+
Live
Naživo
-
+
Live Background Error
Chyba v pozadí naživo
-
+
Load
Načíst
-
+
Middle
Uprostřed
-
+
New
Nový
-
+
New Service
Nová služba
-
+
New Theme
Nový motiv
-
+
No File Selected
Singular
Nevybrán žádný soubor
-
+
No Files Selected
Plural
Nevybrány žádné soubory
-
+
No Item Selected
Singular
Nevybrána žádná položka
-
+
No Items Selected
Plural
Nevybrány žádné položky
-
+
openlp.org 1.x
openlp.org 1.x
-
+
OpenLP 2.0
OpenLP 2.0
-
+
Preview
Náhled
-
+
Replace Background
Nahradit pozadí
-
+
Reset Background
Obnovit pozadí
-
+
s
The abbreviated unit for seconds
s
-
+
Save && Preview
Uložit a náhled
-
+
Search
Hledat
-
+
You must select an item to delete.
Je třeba vybrat nějakou položku ke smazání.
-
+
You must select an item to edit.
Je třeba vybrat nějakou položku k úpravám.
-
+
Save Service
Uložit službu
-
+
Service
Služba
-
+
Start %s
Spustit %s
-
+
Theme
Singular
Motiv
-
+
Themes
Plural
Motivy
-
+
Top
Nahoře
-
+
Version
Verze
-
+
Delete the selected item.
Smazat vybranou položku.
-
+
Move selection up one position.
Přesun výběru o jednu pozici výše.
-
+
Move selection down one position.
Přesun výběru o jednu pozici níže.
-
+
&Vertical Align:
&Svislé zarovnání:
-
+
Finished import.
Import dokončen.
-
+
Format:
Formát:
-
+
Importing
Importuji
-
+
Importing "%s"...
Importuji "%s"...
-
+
Select Import Source
Vybrat zdroj importu
-
+
Select the import format and the location to import from.
Vyberte formát importu a umístění, ze kterého se má importovat.
-
+
The openlp.org 1.x importer has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "python-sqlite" module.
Import dat z openlp.org 1.x je vypnuté kvůli chybějícímu Python modulu. Pokud chcete využít tohoto importu dat, je třeba nainstallovat modul "python-sqlite".
-
+
Open %s File
Otevřít soubor %s
-
+
%p%
%p%
-
+
Ready.
Připraven.
-
+
Starting import...
Spouštím import...
-
+
You need to specify at least one %s file to import from.
A file type e.g. OpenSong
Je třeba specifikovat alespoň jeden %s soubor, ze kterého se bude importovat.
-
+
Welcome to the Bible Import Wizard
Vítejte v průvodci importu Bible
-
+
Welcome to the Song Export Wizard
Vítejte v průvodci exportu písní
-
+
Welcome to the Song Import Wizard
Vítejte v průvodci importu písní
-
+
Author
Singular
Autor
-
+
Authors
Plural
Autoři
-
+
©
Copyright symbol.
©
-
+
Song Book
Singular
Zpěvník
-
+
Song Books
Plural
Zpěvníky
-
+
Song Maintenance
Údržba písní
-
+
Topic
Singular
Téma
-
+
Topics
Plural
Témata
-
+
Continuous
Spojitý
-
+
Default
Výchozí
-
+
Display style:
Styl zobrazení:
-
+
Duplicate Error
Duplicitní chyba
-
+
File
Soubor
-
+
Help
Nápověda
-
+
h
The abbreviated unit for hours
hod
-
+
Layout style:
Styl rozvržení:
-
+
Live Toolbar
Nástrojová lišta naživo
-
+
m
The abbreviated unit for minutes
min
-
+
OpenLP is already running. Do you wish to continue?
Aplikace OpenLP je už spuštěna. Přejete si pokračovat?
-
+
Settings
Nastavení
-
+
Tools
Nástroje
-
+
Unsupported File
Nepodporovaný soubor
-
+
Verse Per Slide
Verš na snímek
-
+
Verse Per Line
Verš na jeden řádek
-
+
View
Zobrazit
-
+
Title and/or verses not found
Název a/nebo slova nenalezeny
-
+
XML syntax error
Chyba v syntaxi XML
-
+
View Mode
Režim zobrazení
-
+
Open service.
Otevřít službu.
-
+
Print Service
Tisk služby
-
+
Replace live background.
Nahradit pozadí naživo.
-
+
Reset live background.
Obnovit pozadí naživo.
-
+
Split a slide into two only if it does not fit on the screen as one slide.
Rozdělit snímek na dva jen v případě, že se nevejde na obrazovku jako jeden snímek.
-
+
Welcome to the Bible Upgrade Wizard
Vítejte v průvodci aktualizací Biblí
-
+
Confirm Delete
Potvrdit smazání
-
+
Play Slides in Loop
Přehrát snímky ve smyčce
-
+
Play Slides to End
Přehrát snímky ke konci
-
+
Stop Play Slides in Loop
Zastavit přehrávání snímků ve smyčce
-
+
Stop Play Slides to End
Zastavit přehrávání snímků ke konci
-
+
Next Track
Další stopa
-
+
Search Themes...
Search bar place holder text
Hledat motiv...
-
+
Optional &Split
Volitelné &rozdělení
-
+
Invalid Folder Selected
Singular
Vybraná neplatná složka
-
+
Invalid File Selected
Singular
Vybraný neplatný soubor
-
+
Invalid Files Selected
Plural
Vybrané neplatné soubory
-
+
No Folder Selected
Singular
Nevybraná žádná složka
-
+
Open %s Folder
Otevřít složku %s
-
+
You need to specify one %s file to import from.
A file type e.g. OpenSong
Je potřeba upřesnit jeden %s soubor, ze kterého se bude importovat.
-
+
You need to specify one %s folder to import from.
A song format e.g. PowerSong
Je potřeba upřesnit jednu %s složku, ze které se bude importovat.
@@ -5690,25 +5690,25 @@ Obsah souboru není v kódování UTF-8.
OpenLP.core.lib
-
+
%1 and %2
Locale list separator: 2 items
%1 a %2
-
+
%1, and %2
Locale list separator: end
%1 and %2
-
+
%1, %2
Locale list separator: middle
%1, %2
-
+
%1, %2
Locale list separator: start
%1, %2
@@ -5717,50 +5717,50 @@ Obsah souboru není v kódování UTF-8.
PresentationPlugin
-
+
<strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box.
<strong>Modul prezentace</strong><br />Modul prezentace dovoluje zobrazovat prezentace z několika různých programů. Výběr dostupných prezentačních programů je uživateli přístupný v rozbalovacím menu.
-
+
Presentation
name singular
Prezentace
-
+
Presentations
name plural
Prezentace
-
+
Presentations
container title
Prezentace
-
+
Load a new presentation.
Načíst novou prezentaci.
-
+
Delete the selected presentation.
Smazat vybranou prezentaci.
-
+
Preview the selected presentation.
Náhled vybrané prezentace.
-
+
Send the selected presentation live.
Zobrazit vybranou prezentaci naživo.
-
+
Add the selected presentation to the service.
Přidat vybranou prezentaci ke službě.
@@ -5768,52 +5768,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 is incomplete, please reload.
Prezentace %s není kompletní. Načtěte ji znovu.
-
+
The presentation %s no longer exists.
Prezentace %s už neexistuje.
@@ -5821,17 +5821,17 @@ Obsah souboru není v kódování UTF-8.
PresentationPlugin.PresentationTab
-
+
Available Controllers
Dostupné ovládání
-
+
%s (unavailable)
%s (nedostupný)
-
+
Allow presentation application to be overridden
Povolit překrytí prezentační aplikace
@@ -5839,24 +5839,24 @@ Obsah souboru není v kódování UTF-8.
RemotePlugin
-
+
<strong>Remote Plugin</strong><br />The remote plugin provides the ability to send messages to a running version of OpenLP on a different computer via a web browser or through the remote API.
<strong>Modul dálkové ovládání</strong><br />Modul dálkové ovládání poskytuje schopnost zasílat zprávy aplikaci OpenLP běžící na jiném počítači. Zprávy je možno posílat internetovým prohlížečem nebo vzdáleným API.
-
+
Remote
name singular
Dálkové ovládání
-
+
Remotes
name plural
Dálková ovládání
-
+
Remote
container title
Dálkové ovládání
@@ -5865,107 +5865,107 @@ Obsah souboru není v kódování UTF-8.
RemotePlugin.Mobile
-
+
OpenLP 2.0 Remote
OpenLP 2.0 Dálkové ovládání
-
+
OpenLP 2.0 Stage View
OpenLP 2.0 Zobrazení na pódiu
-
+
Service Manager
Správce služby
-
+
Slide Controller
Ovládání snímku
-
+
Alerts
Upozornění
-
+
Search
Hledat
-
+
Refresh
Obnovit
-
+
Blank
Prázdný
-
+
Show
Zobrazit
-
+
Prev
Předchozí
-
+
Next
Další
-
+
Text
Text
-
+
Show Alert
Zobrazit upozornění
-
+
Go Live
Zobrazit naživo
-
+
No Results
Žádné hledání
-
+
Options
Možnosti
-
+
Add to Service
Přidat ke službě
-
+
Home
Domů
-
+
Theme
Motiv
-
+
Desktop
Plocha
-
+
Add & Go to Service
Přidat & Přejít ke službě
@@ -5973,42 +5973,42 @@ 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
Zobrazit čas na pódiu ve 12hodinovém formátu
-
+
Android App
Android aplikace
-
+
Scan the QR code or click <a href="https://market.android.com/details?id=org.openlp.android">download</a> to install the Android app from the Market.
Naskenujte QR kód nebo pro instalaci Android aplikace z marketu klepněte na <a href="https://market.android.com/details?id=org.openlp.android">stáhnout</a>.
@@ -6016,85 +6016,85 @@ Obsah souboru není v kódování UTF-8.
SongUsagePlugin
-
+
&Song Usage Tracking
Sledování použití &písní
-
+
&Delete Tracking Data
&Smazat data sledování
-
+
Delete song usage data up to a specified date.
Smazat data použití písní až ke konkrétnímu kalendářnímu datu.
-
+
&Extract Tracking Data
&Rozbalit data sledování
-
+
Generate a report on song usage.
Vytvořit hlášení z používání písní.
-
+
Toggle Tracking
Přepnout sledování
-
+
Toggle the tracking of song usage.
Přepnout sledování použití písní.
-
+
<strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services.
<strong>Modul používání písní</strong><br />Tento modul sleduje používání písní ve službách.
-
+
SongUsage
name singular
Používání písně
-
+
SongUsage
name plural
Používání písní
-
+
SongUsage
container title
Používání písní
-
+
Song Usage
Používání písní
-
+
Song usage tracking is active.
Sledování použití písní je zapnuto.
-
+
Song usage tracking is inactive.
Sledování použití písní je vypnuto.
-
+
display
zobrazení
-
+
printed
vytisknutý
@@ -6102,32 +6102,32 @@ Obsah souboru není v kódování UTF-8.
SongUsagePlugin.SongUsageDeleteForm
-
+
Delete Song Usage Data
Smazat data používání písní
-
+
Delete Selected Song Usage Events?
Smazat události vybraného používání písní?
-
+
Are you sure you want to delete selected Song Usage data?
Jste si jist, že chcete smazat vybraná data o používání písní?
-
+
Deletion Successful
Smazání úspěšné
-
+
All requested data has been deleted successfully.
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.
Vyberte datum, ke kterému se smažou data o používání písní. Všechna data, zaznamenaná před tímto datumem budou natrvalo smazána.
@@ -6135,42 +6135,42 @@ Obsah souboru není v kódování UTF-8.
SongUsagePlugin.SongUsageDetailForm
-
+
Song Usage Extraction
Rozbalení používání písní
-
+
Select Date Range
Vybrat rozsah datumu
-
+
to
do
-
+
Report Location
Umístění hlášení
-
+
Output File Location
Umístění výstupního souboru
-
+
usage_detail_%s_%s.txt
usage_detail_%s_%s.txt
-
+
Report Creation
Vytvoření hlášení
-
+
Report
%s
has been successfully created.
@@ -6179,12 +6179,12 @@ has been successfully created.
bylo úspěšně vytvořeno.
-
+
Output Path Not Selected
Nevybrána výstupní cesta
-
+
You have not set a valid output location for your song usage report. Please select an existing path on your computer.
Platné výstupní umístění pro hlášení používání písní není nastaveno. Prosím vyberte existující cestu ve vašem počítači.
@@ -6192,112 +6192,112 @@ bylo úspěšně vytvořeno.
SongsPlugin
-
+
&Song
&Píseň
-
+
Import songs using the import wizard.
Import písní průvodcem importu.
-
+
<strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs.
<strong>Modul písně</strong><br />Modul písně umožňuje zobrazovat a spravovat písně.
-
+
&Re-index Songs
&Přeindexovat písně
-
+
Re-index the songs database to improve searching and ordering.
Přeindexovat písně v databázi pro vylepšení hledání a řazení.
-
+
Reindexing songs...
Přeindexovávám písně...
-
+
Arabic (CP-1256)
Arabština (CP-1256)
-
+
Baltic (CP-1257)
Baltské jazyky (CP-1257)
-
+
Central European (CP-1250)
Středoevropské jazyky (CP-1250)
-
+
Cyrillic (CP-1251)
Cyrilice (CP-1251)
-
+
Greek (CP-1253)
Řečtina (CP-1253)
-
+
Hebrew (CP-1255)
Hebrejština (CP-1255)
-
+
Japanese (CP-932)
Japonština (CP-932)
-
+
Korean (CP-949)
Korejština (CP-949)
-
+
Simplified Chinese (CP-936)
Zjednodušená čínština (CP-936)
-
+
Thai (CP-874)
Thajština (CP-874)
-
+
Traditional Chinese (CP-950)
Tradiční čínština (CP-950)
-
+
Turkish (CP-1254)
Turečtina (CP-1254)
-
+
Vietnam (CP-1258)
Vietnamština (CP-1258)
-
+
Western European (CP-1252)
Západoevropské jazyky (CP-1252)
-
+
Character Encoding
Kódování znaků
-
+
The codepage setting is responsible
for the correct character representation.
Usually you are fine with the preselected choice.
@@ -6306,62 +6306,62 @@ za správnou reprezentaci znaků.
Předvybraná volba by obvykle měla být správná.
-
+
Please choose the character encoding.
The encoding is responsible for the correct character representation.
Vyberte prosím kódování znaků.
Kódování zodpovídá za správnou reprezentaci znaků.
-
+
Song
name singular
Píseň
-
+
Songs
name plural
Písně
-
+
Songs
container title
Písně
-
+
Exports songs using the export wizard.
Exportuje písně průvodcem exportu.
-
+
Add a new song.
Přidat novou píseň.
-
+
Edit the selected song.
Upravit vybranou píseň.
-
+
Delete the selected song.
Smazat vybranou píseň.
-
+
Preview the selected song.
Náhled vybrané písně.
-
+
Send the selected song live.
Zobrazit vybranou píseň naživo.
-
+
Add the selected song to the service.
Přidat vybranou píseň ke službě.
@@ -6369,37 +6369,37 @@ Kódování zodpovídá za správnou reprezentaci znaků.
SongsPlugin.AuthorsForm
-
+
Author Maintenance
Údržba autorů
-
+
Display name:
Zobrazené jméno:
-
+
First name:
Křestní jméno:
-
+
Last name:
Příjmení:
-
+
You need to type in the first name of the author.
Je potřeba zadat křestní jméno autora.
-
+
You need to type in the last name of the author.
Je potřeba zadat příjmení autora.
-
+
You have not set a display name for the author, combine the first and last names?
Zobrazené jméno autora není zadáno. Má se zkombinovat křestní jméno a příjmení?
@@ -6407,7 +6407,7 @@ Kódování zodpovídá za správnou reprezentaci znaků.
SongsPlugin.CCLIFileImport
-
+
The file does not have a valid extension.
Soubor nemá platnou příponu.
@@ -6415,12 +6415,12 @@ Kódování zodpovídá za správnou reprezentaci znaků.
SongsPlugin.EasyWorshipSongImport
-
+
Administered by %s
Spravuje %s
-
+
[above are Song Tags with notes imported from
EasyWorship]
@@ -6432,12 +6432,12 @@ Kódování zodpovídá za správnou reprezentaci znaků.
SongsPlugin.EditBibleForm
-
+
Meta Data
Meta data
-
+
Custom Book Names
Uživatelské názvy knih
@@ -6445,207 +6445,207 @@ Kódování zodpovídá za správnou reprezentaci znaků.
SongsPlugin.EditSongForm
-
+
Song Editor
Editor písně
-
+
&Title:
&Název:
-
+
Alt&ernate title:
&Jiný název:
-
+
&Lyrics:
&Text písně:
-
+
&Verse order:
&Pořadí veršů:
-
+
Ed&it All
&Upravit vše
-
+
Title && Lyrics
Název a text písně
-
+
&Add to Song
&Přidat k písni
-
+
&Remove
&Odstranit
-
+
&Manage Authors, Topics, Song Books
&Správa autorů, témat a zpěvníků
-
+
A&dd to Song
&Přidat k písni
-
+
R&emove
&Odstranit
-
+
Book:
Zpěvník:
-
+
Number:
Číslo:
-
+
Authors, Topics && Song Book
Autoři, témata a zpěvníky
-
+
New &Theme
Nový &motiv
-
+
Copyright Information
Informace o autorském právu
-
+
Comments
Komentáře
-
+
Theme, Copyright Info && Comments
Motiv, autorská práva a komentáře
-
+
Add Author
Přidat autora
-
+
This author does not exist, do you want to add them?
Tento autor neexistuje. Chcete ho přidat?
-
+
This author is already in the list.
Tento autor je už v seznamu.
-
+
You have not selected a valid author. Either select an author from the list, or type in a new author and click the "Add Author to Song" button to add the new author.
Není vybrán platný autor. Buďto vyberte autora ze seznamu nebo zadejte nového autora a pro přidání nového autora klepněte na tlačítko "Přidat autora k písni".
-
+
Add Topic
Přidat téma
-
+
This topic does not exist, do you want to add it?
Toto téma neexistuje. Chcete ho přidat?
-
+
This topic is already in the list.
Toto téma je už v seznamu.
-
+
You have not selected a valid topic. Either select a topic from the list, or type in a new topic and click the "Add Topic to Song" button to add the new topic.
Není vybráno platné téma. Buďto vyberte téma ze seznamu nebo zadejte nové téma a pro přidání nového tématu klepněte na tlačítko "Přidat téma k písni".
-
+
You need to type in a song title.
Je potřeba zadat název písne.
-
+
You need to type in at least one verse.
Je potřeba zadat alespoň jednu sloku.
-
+
The verse order is invalid. There is no verse corresponding to %s. Valid entries are %s.
Pořadí částí písně není platné. Část odpovídající %s neexistuje. Platné položky jsou %s.
-
+
Add Book
Přidat zpěvník
-
+
This song book does not exist, do you want to add it?
Tento zpěvník neexistuje. Chcete ho přidat?
-
+
You need to have an author for this song.
Pro tuto píseň je potřeba zadat autora.
-
+
You need to type some text in to the verse.
Ke sloce je potřeba zadat nějaký text.
-
+
Linked Audio
Připojený zvuk
-
+
Add &File(s)
Přidat &soubor(y)
-
+
Add &Media
Přidat &Médium
-
+
Remove &All
Odstranit &Vše
-
+
Open File(s)
Otevřít soubor(y)
-
+
<strong>Warning:</strong> Not all of the verses are in use.
<strong>Varování:</strong> Nejsou použity všechny sloky.
-
+
The verse order is invalid. There are no verses corresponding to %s. Valid entries are %s.
Pořadí částí písně není platné. Část odpovídající %s neexistuje. Platné položky jsou %s.
@@ -6653,22 +6653,22 @@ Kódování zodpovídá za správnou reprezentaci znaků.
SongsPlugin.EditVerseForm
-
+
Edit Verse
Upravit sloku
-
+
&Verse type:
&Typ sloky:
-
+
&Insert
&Vložit
-
+
Split a slide into two by inserting a verse splitter.
Vložením oddělovače slok se snímek rozdělí na dva.
@@ -6676,82 +6676,82 @@ Kódování zodpovídá za správnou reprezentaci znaků.
SongsPlugin.ExportWizardForm
-
+
Song Export Wizard
Průvodce exportem písní
-
+
Select Songs
Vybrat písně
-
+
Check the songs you want to export.
Zaškrtněte písně, které chcete exportovat.
-
+
Uncheck All
Odškrtnout vše
-
+
Check All
Zaškrtnout vše
-
+
Select Directory
Vybrat složku
-
+
Directory:
Složka:
-
+
Exporting
Exportuji
-
+
Please wait while your songs are exported.
Čekejte prosím, než písně budou exportovány.
-
+
You need to add at least one Song to export.
Je potřeba přidat k exportu alespoň jednu píseň.
-
+
No Save Location specified
Není zadáno umístění pro uložení
-
+
Starting export...
Spouštím export...
-
+
You need to specify a directory.
Je potřeba zadat složku.
-
+
Select Destination Folder
Vybrat cílovou složku
-
+
Select the directory where you want the songs to be saved.
Vybrat složku, kam se budou ukládat písně.
-
+
This wizard will help to export your songs to the open and free <strong>OpenLyrics</strong> worship song format.
Tento průvode pomáhá exportovat písně do formátu <strong>OpenLyrics</strong>. Jedná se o otevřený a svobodný formát pro chvály.
@@ -6759,150 +6759,155 @@ Kódování zodpovídá za správnou reprezentaci znaků.
SongsPlugin.ImportWizardForm
-
+
Select Document/Presentation Files
Vybrat dokumentové/prezentační soubory
-
+
Song Import Wizard
Průvodce importem písní
-
+
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.
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
-
+
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
-
+
Songs Of Fellowship Song Files
Soubory s písněmi Songs Of Fellowship
-
+
SongBeamer Files
Soubory SongBeamer
-
+
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.
Import ze Songs of Fellowship byl zakázán, protože aplikace OpenLP nemůže přistupovat k aplikacím OpenOffice nebo LibreOffice.
-
+
The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice.
Import obecných dokumentů/prezentaci byl zakázán, protože aplikace OpenLP nemůže přistupovat k aplikacím OpenOffice nebo LibreOffice.
-
+
OpenLyrics or OpenLP 2.0 Exported Song
OpenLyrics nebo písně exportované z OpenLP 2.0
-
+
OpenLyrics Files
Soubory OpenLyrics
-
+
CCLI SongSelect Files
Soubory CCLI SongSelect
-
+
EasySlides XML File
XML soubory EasySlides
-
+
EasyWorship Song Database
Databáze písní EasyWorship
-
+
DreamBeam Song Files
Soubory s písněmi DreamBeam
-
+
You need to specify a valid PowerSong 1.0 database folder.
Je potřeba upřesnit platnou složku s databází PowerSong 1.0.
-
+
ZionWorx (CSV)
ZionWorx (CSV)
-
+
First convert your ZionWorx database to a CSV text file, as explained in the <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">User Manual</a>.
Nejprve je nutno převést databázi ZionWorx do textového CSV souboru, jak je vysvětleno v <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">uživatelské dokumentaci</a>.
+
+
+ SundayPlus Song Files
+
+
SongsPlugin.MediaFilesForm
-
+
Select Media File(s)
Vybrat mediální soubor(y)
-
+
Select one or more audio files from the list below, and click OK to import them into this song.
Vyberte jeden nebo více zvukových souborů ze seznamu níže a importovat je k písni lze klepnutím na tlačítko OK.
@@ -6910,27 +6915,27 @@ Kódování zodpovídá za správnou reprezentaci znaků.
SongsPlugin.MediaItem
-
+
Titles
Názvy
-
+
Lyrics
Text písně
-
+
CCLI License:
CCLI Licence:
-
+
Entire Song
Celá píseň
-
+
Are you sure you want to delete the %n selected song(s)?
Jste si jisti, že chcete smazat %n vybranou píseň?
@@ -6939,38 +6944,38 @@ Kódování zodpovídá za správnou reprezentaci znaků.
-
+
Maintain the lists of authors, topics and books.
Spravovat seznamy autorů, témat a zpěvníků.
-
+
copy
For song cloning
kopírovat
-
+
Search Titles...
Hledat název...
-
+
Search Entire Song...
Hledat celou píseň...
-
+
Search Lyrics...
Hledat text písně...
-
+
Search Authors...
Hledat autory...
-
+
Search Song Books...
Hledat zpěvníky...
@@ -6978,7 +6983,7 @@ Kódování zodpovídá za správnou reprezentaci znaků.
SongsPlugin.OpenLP1SongImport
-
+
Not a valid openlp.org 1.x song database.
Neplatná databáze písní openlp.org 1.x.
@@ -6986,7 +6991,7 @@ Kódování zodpovídá za správnou reprezentaci znaků.
SongsPlugin.OpenLPSongImport
-
+
Not a valid OpenLP 2.0 song database.
Neplatná databáze písní OpenLP 2.0.
@@ -6994,7 +6999,7 @@ Kódování zodpovídá za správnou reprezentaci znaků.
SongsPlugin.OpenLyricsExport
-
+
Exporting "%s"...
Exportuji "%s"...
@@ -7002,12 +7007,12 @@ Kódování zodpovídá za správnou reprezentaci znaků.
SongsPlugin.PowerSongImport
-
+
No songs to import.
Žádné písně k importu.
-
+
Verses not found. Missing "PART" header.
Sloky nenalezeny. Chybějící hlavička "PART".
@@ -7015,22 +7020,22 @@ Kódování zodpovídá za správnou reprezentaci znaků.
SongsPlugin.SongBookForm
-
+
Song Book Maintenance
Údržba zpěvníku
-
+
&Name:
&Název:
-
+
&Publisher:
&Vydavatel:
-
+
You need to type in a name for the book.
Je potřeba zadat název zpěvníku.
@@ -7038,12 +7043,12 @@ Kódování zodpovídá za správnou reprezentaci znaků.
SongsPlugin.SongExportForm
-
+
Your song export failed.
Export písně selhal.
-
+
Finished export. To import these files use the <strong>OpenLyrics</strong> importer.
Export dokončen. Pro import těchto souborů použijte import z <strong>OpenLyrics</strong>.
@@ -7051,27 +7056,27 @@ Kódování zodpovídá za správnou reprezentaci znaků.
SongsPlugin.SongImport
-
+
copyright
autorská práva
-
+
The following songs could not be imported:
Následující písně nemohly být importovány:
-
+
Cannot access OpenOffice or LibreOffice
Nelze přistupovat k aplikacím OpenOffice nebo LibreOffice
-
+
Unable to open file
Nelze otevřít soubor
-
+
File not found
Soubor nenalezen
@@ -7079,107 +7084,107 @@ Kódování zodpovídá za správnou reprezentaci znaků.
SongsPlugin.SongMaintenanceForm
-
+
Could not add your author.
Nemohu přidat autora.
-
+
This author already exists.
Tento autor již existuje.
-
+
Could not add your topic.
Nemohu přidat téma.
-
+
This topic already exists.
Toto téma již existuje.
-
+
Could not add your book.
Nemohu přidat zpěvník.
-
+
This book already exists.
Tento zpěvník již existuje.
-
+
Could not save your changes.
Nemohu uložit změny.
-
+
Could not save your modified author, because the author already exists.
Nemohu uložit upraveného autora, protože tento autor již existuje.
-
+
Could not save your modified topic, because it already exists.
Nemohu uložit upravené téma, protože již existuje.
-
+
Delete Author
Smazat autora
-
+
Are you sure you want to delete the selected author?
Jste si jisti, že chcete smazat vybraného autora?
-
+
This author cannot be deleted, they are currently assigned to at least one song.
Nemohu smazat autora, protože je v současné době přiřazen alespoň k jedné písni.
-
+
Delete Topic
Smazat téma
-
+
Are you sure you want to delete the selected topic?
Jste si jisti, že opravdu chcete smazat vybrané téma?
-
+
This topic cannot be deleted, it is currently assigned to at least one song.
Nemohu smazat toto téma, protože je v současné době přiřazeno alespoň k jedné písni.
-
+
Delete Book
Smazat zpěvník
-
+
Are you sure you want to delete the selected book?
Jste si jisti, že chcete smazat vybraný zpěvník?
-
+
This book cannot be deleted, it is currently assigned to at least one song.
Nemohu smazat tento zpěvník, protože je v současné době přiřazen alespoň k jedné písni.
-
+
The author %s already exists. Would you like to make songs with author %s use the existing author %s?
Autor %s již existuje. Přejete si vytvořit písně s autorem %s a použít již existujícího autora %s?
-
+
The topic %s already exists. Would you like to make songs with topic %s use the existing topic %s?
Téma %s již existuje. Přejete si vytvořit písně s tématem %s a použít již existující téma %s?
-
+
The book %s already exists. Would you like to make songs with book %s use the existing book %s?
Zpěvník %s již existuje. Přejete si vytvořít písně se zpěvníkem %s a použít již existující zpěvník %s?
@@ -7187,27 +7192,27 @@ Kódování zodpovídá za správnou reprezentaci znaků.
SongsPlugin.SongsTab
-
+
Songs Mode
Režim písně
-
+
Enable search as you type
Zapnout hledat během psaní
-
+
Display verses on live tool bar
Zobrazit sloky v nástrojové liště naživo
-
+
Update service from song edit
Aktualizovat službu při úpravě písně
-
+
Import missing songs from service files
Import chybějících písní ze souborů služby
@@ -7215,17 +7220,17 @@ Kódování zodpovídá za správnou reprezentaci znaků.
SongsPlugin.TopicsForm
-
+
Topic Maintenance
Údržba témat
-
+
Topic name:
Název tématu:
-
+
You need to type in a topic name.
Je potřeba zadat název tématu.
@@ -7233,37 +7238,37 @@ Kódování zodpovídá za správnou reprezentaci znaků.
SongsPlugin.VerseType
-
+
Verse
Sloka
-
+
Chorus
Refrén
-
+
Bridge
Přechod
-
+
Pre-Chorus
Předrefrén
-
+
Intro
Předehra
-
+
Ending
Zakončení
-
+
Other
Ostatní
@@ -7271,12 +7276,12 @@ Kódování zodpovídá za správnou reprezentaci znaků.
SongsPlugin.ZionWorxImport
-
+
Error reading CSV file.
Chyba při čtení CSV souboru.
-
+
File not valid ZionWorx CSV format.
Soubor není platný ZionWorx CSV formát.
diff --git a/resources/i18n/da.ts b/resources/i18n/da.ts
index 437f8b7bc..8b4e289b1 100644
--- a/resources/i18n/da.ts
+++ b/resources/i18n/da.ts
@@ -3,35 +3,35 @@
AlertsPlugin
-
+
&Alert
&Meddelelse
-
+
Show an alert message.
Vis en meddelelse.
-
+
Alert
name singular
Meddelelse
-
+
Alerts
name plural
Meddelelser
-
+
Alerts
container title
Meddelelser
-
+
<strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of nursery alerts on the display screen.
<strong>Meddelelsesudvidelse</strong><br />Meddelelsesudvidelsen kontrollerer visningen af beskeder fra søndagsskolen på skærmen.
@@ -39,69 +39,69 @@
AlertsPlugin.AlertForm
-
+
Alert Message
Meddelelse
-
+
Alert &text:
Te&kst:
-
+
&New
&Ny
-
+
&Save
&Gem
-
+
Displ&ay
V&is
-
+
Display && Cl&ose
Vis && l&uk
-
+
New Alert
Ny meddelelse
-
+
You haven't specified any text for your alert. Please type in some text before clicking New.
Du har ikke angivet nogen tekst til din meddelelse. Skriv noget tekst og tryk så på Ny.
-
+
&Parameter:
&Parameter:
-
+
No Parameter Found
Intet parameter fundet
-
+
You have not entered a parameter to be replaced.
Do you want to continue anyway?
Du har ikke indtastet et parameter der skal erstattes.
Vil du fortsætte alligevel?
-
+
No Placeholder Found
Ingen pladsholder fundet
-
+
The alert text does not contain '<>'.
Do you want to continue anyway?
Meddelelsesteksten indeholder ikke '<>'.
@@ -111,7 +111,7 @@ Vil du fortsætte alligevel?
AlertsPlugin.AlertsManager
-
+
Alert message created and displayed.
Meddelelse oprettet og vist.
@@ -119,32 +119,32 @@ Vil du fortsætte alligevel?
AlertsPlugin.AlertsTab
-
+
Font
Skrifttype
-
+
Font name:
Skriftnavn:
-
+
Font color:
Skriftfarve:
-
+
Background color:
Baggrundsfarve:
-
+
Font size:
Skriftstørrelse:
-
+
Alert timeout:
Varighed af meddelse:
@@ -152,510 +152,510 @@ Vil du fortsætte alligevel?
BiblesPlugin
-
+
&Bible
&Bibel
-
+
Bible
name singular
Bibel
-
+
Bibles
name plural
Bibler
-
+
Bibles
container title
Bibler
-
+
No Book Found
Ingen bog fundet
-
+
No matching book could be found in this Bible. Check that you have spelled the name of the book correctly.
Ingen matchende bog kunne findes i denne bibel. Check om du har stavet bogens navn rigtigt.
-
+
Import a Bible.
Importér en bibel.
-
+
Add a new Bible.
Tilføj en ny bibel.
-
+
Edit the selected Bible.
Redigér den valgte bibel.
-
+
Delete the selected Bible.
Slet den valgte bibel.
-
+
Preview the selected Bible.
Forhåndsvis den valgte bibel.
-
+
Send the selected Bible live.
Send den valgte bibel live.
-
+
Add the selected Bible to the service.
Tilføj den valgte bibel til programmet.
-
+
<strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display Bible verses from different sources during the service.
<strong>Bibeludvidelse</strong><br />Bibeludvidelsen gør det muligt at vise bibelvers fra forskellige kilder i løbet af gudstjenesten.
-
+
&Upgrade older Bibles
&Opgradér ældre bibler
-
+
Upgrade the Bible databases to the latest format.
Opgradér bibel-databaserne til det nyeste format.
-
+
Genesis
-
+
Exodus
-
+
Leviticus
-
+
Numbers
-
+
Deuteronomy
-
+
Joshua
-
+
Judges
-
+
Ruth
-
+
1 Samuel
-
+
2 Samuel
-
+
1 Kings
-
+
2 Kings
-
+
1 Chronicles
-
+
2 Chronicles
-
+
Ezra
-
+
Nehemiah
-
+
Esther
-
+
Job
-
+
Psalms
-
+
Proverbs
-
+
Ecclesiastes
-
+
Song of Solomon
-
+
Isaiah
-
+
Jeremiah
-
+
Lamentations
-
+
Ezekiel
-
+
Daniel
-
+
Hosea
-
+
Joel
-
+
Amos
-
+
Obadiah
-
+
Jonah
-
+
Micah
-
+
Nahum
-
+
Habakkuk
-
+
Zephaniah
-
+
Haggai
-
+
Zechariah
-
+
Malachi
-
+
Matthew
-
+
Mark
-
+
Luke
-
+
John
-
+
Acts
-
+
Romans
-
+
1 Corinthians
-
+
2 Corinthians
-
+
Galatians
-
+
Ephesians
-
+
Philippians
-
+
Colossians
-
+
1 Thessalonians
-
+
2 Thessalonians
-
+
1 Timothy
-
+
2 Timothy
-
+
Titus
-
+
Philemon
-
+
Hebrews
-
+
James
-
+
1 Peter
-
+
2 Peter
-
+
1 John
-
+
2 John
-
+
3 John
-
+
Jude
-
+
Revelation
-
+
Judith
-
+
Wisdom
-
+
Tobit
-
+
Sirach
-
+
Baruch
-
+
1 Maccabees
-
+
2 Maccabees
-
+
3 Maccabees
-
+
4 Maccabees
-
+
Rest of Daniel
-
+
Rest of Esther
-
+
Prayer of Manasses
-
+
Letter of Jeremiah
-
+
Prayer of Azariah
-
+
Susanna
-
+
Bel
-
+
1 Esdras
-
+
2 Esdras
-
+
:|v|V|verse|verses;;-|to;;,|and;;end
Double-semicolon delimited separators for parsing references. Consult the developers for further information.
@@ -664,44 +664,44 @@ Vil du fortsætte alligevel?
BiblesPlugin.BibleEditForm
-
+
You need to specify a version name for your Bible.
Vælg et udgavenavn til din bibel.
-
+
You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such.
Angiv din bibels ophavsret. Bibler i Public Domain skal markeres som værende sådan.
-
+
Bible Exists
Bibel eksisterer
-
+
This Bible already exists. Please import a different Bible or first delete the existing one.
Denne bibel eksisterer allerede. Importér en anden bibel, eller slet først den eksisterende bibel.
-
+
You need to specify a book name for "%s".
-
+
The book name "%s" is not correct.
Numbers can only be used at the beginning and must
be followed by one or more non-numeric characters.
-
+
Duplicate Book Name
-
+
The Book Name "%s" has been entered more than once.
@@ -709,39 +709,39 @@ be followed by one or more non-numeric characters.
BiblesPlugin.BibleManager
-
+
Scripture Reference Error
Fejl med skriftsted
-
+
Web Bible cannot be used
Netbibelen kan ikke bruges
-
+
Text Search is not available with Web Bibles.
Tekstsøgning virker ikke med netbibler.
-
+
You did not enter a search keyword.
You can separate different keywords by a space to search for all of your keywords and you can separate them by a comma to search for one of them.
Du indtastede ikke et søgeord.
Du kan opdele forskellige søgeord med mellemrum for at søge efter alle søgeordene, og du kan opdele dem med et komma for at søge efter ét af dem.
-
+
There are no Bibles currently installed. Please use the Import Wizard to install one or more Bibles.
Der er ikke installeret nogle bibler på nuværende tidspunkt. Benyt import-guiden til at installere én eller flere bibler.
-
+
No Bibles Available
Ingen bibler tilgængelige
-
+
Your scripture reference is either not supported by OpenLP or is invalid. Please make sure your reference conforms to one of the following patterns or consult the manual:
Book Chapter
@@ -757,128 +757,128 @@ Book Chapter%(verse)sVerse%(range)sChapter%(verse)sVerse
BiblesPlugin.BiblesTab
-
+
Verse Display
Visning af vers
-
+
Only show new chapter numbers
Vis kun nye kapitelnumre
-
+
Bible theme:
Bibeltema:
-
+
No Brackets
Ingen paranteser
-
+
( And )
( og )
-
+
{ And }
{ og }
-
+
[ And ]
[ og ]
-
+
Note:
Changes do not affect verses already in the service.
Bemærk:
Ændringer påvirker ikke vers der allerede er tilføjet til programmet.
-
+
Display second Bible verses
Vis sekundære bibelvers
-
+
Custom Scripture References
-
+
Verse Separator:
-
+
Range Separator:
-
+
List Separator:
-
+
End Mark:
-
+
Multiple alternative verse separators may be defined.
They have to be separated by a vertical bar "|".
Please clear this edit line to use the default value.
-
+
Multiple alternative range separators may be defined.
They have to be separated by a vertical bar "|".
Please clear this edit line to use the default value.
-
+
Multiple alternative list separators may be defined.
They have to be separated by a vertical bar "|".
Please clear this edit line to use the default value.
-
+
Multiple alternative end marks may be defined.
They have to be separated by a vertical bar "|".
Please clear this edit line to use the default value.
-
+
English
Dansk
-
+
Default Bible Language
-
+
Book name language in search field,
search results and on display:
-
+
Bible Language
-
+
Application Language
@@ -886,42 +886,42 @@ search results and on display:
BiblesPlugin.BookNameDialog
-
+
Select Book Name
Vælg bogens navn
-
+
Current name:
Nuværende navn:
-
+
Corresponding name:
Tilsvarende navn:
-
+
Show Books From
Vis bøger fra
-
+
Old Testament
Gamle Testamente
-
+
New Testament
Nye Testamente
-
+
Apocrypha
Apokryfe skrifter
-
+
The following book name cannot be matched up internally. Please select the corresponding name from the list.
@@ -929,7 +929,7 @@ search results and on display:
BiblesPlugin.BookNameForm
-
+
You need to select a book.
Du er nødt til først at vælge en bog.
@@ -937,18 +937,18 @@ search results and on display:
BiblesPlugin.CSVBible
-
+
Importing books... %s
Importerer bøger... %s
-
+
Importing verses from %s...
Importing verses from <book name>...
Importerer vers fra %s...
-
+
Importing verses... done.
Importerer vers... færdig.
@@ -956,68 +956,68 @@ search results and on display:
BiblesPlugin.EditBibleForm
-
+
Bible Editor
-
+
License Details
Licens detaljer
-
+
Version name:
Navn på udgave:
-
+
Copyright:
Ophavsret:
-
+
Permissions:
Tilladelser:
-
+
Default Bible Language
-
+
Book name language in search field, search results and on display:
-
+
Global Settings
-
+
Bible Language
-
+
Application Language
-
+
English
Dansk
-
+
This is a Web Download Bible.
It is not possible to customize the Book Names.
-
+
To use the customized book names, "Bible language" must be selected on the Meta Data tab or, if "Global settings" is selected, on the Bible page in Configure OpenLP.
@@ -1025,38 +1025,38 @@ It is not possible to customize the Book Names.
BiblesPlugin.HTTPBible
-
+
Registering Bible and loading books...
Registrerer bibelen og indlæser bøger...
-
+
Registering Language...
Registrerer sprog...
-
+
Importing %s...
Importing <book name>...
Importerer %s...
-
+
Download Error
Hentningsfejl
-
+
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.
Der opstod en fejl ved hentningen af dit valg af vers. Efterse din internetforbindelse, og hvis fejlen fortsat opstår så overvej at rapportere fejlen.
-
+
Parse Error
Fortolkningfejl
-
+
There was a problem extracting your verse selection. If this error continues to occur please consider reporting a bug.
Der opstod et problem med at udpakke dit valg af vers. Hvis denne fejl fortsætter med at opstå, så overvej at rapportere fejlen.
@@ -1064,167 +1064,167 @@ It is not possible to customize the Book Names.
BiblesPlugin.ImportWizardForm
-
+
Bible Import Wizard
Bibel-import guide
-
+
This wizard will help you to import Bibles from a variety of formats. Click the next button below to start the process by selecting a format to import from.
Denne guide vil hjælpe dig med at importere bibler med forskellige formater. Klik på næsteknappen herunder for at begynde processen ved at vælge et format at importere fra.
-
+
Web Download
Hentning fra netten
-
+
Location:
Placering:
-
+
Crosswalk
Crosswalk
-
+
BibleGateway
BibleGateway
-
+
Bible:
Bibel:
-
+
Download Options
Hentingsmuligheder
-
+
Server:
Server:
-
+
Username:
Brugernavn:
-
+
Password:
Adgangskode:
-
+
Proxy Server (Optional)
Proxy server (valgfri)
-
+
License Details
Licens detaljer
-
+
Set up the Bible's license details.
Indstil bibelens licensdetaljer.
-
+
Version name:
Navn på udgave:
-
+
Copyright:
Ophavsret:
-
+
Please wait while your Bible is imported.
Vent venligst imens din bibel bliver importeret.
-
+
You need to specify a file with books of the Bible to use in the import.
Angiv en fil med bøger fra Bibelen der skal importeres.
-
+
You need to specify a file of Bible verses to import.
Vælg en fil med bibelvers der skal importeres.
-
+
You need to specify a version name for your Bible.
Vælg et udgavenavn til din bibel.
-
+
You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such.
Angiv din bibels ophavsret. Bibler i Public Domain skal markeres som værende sådan.
-
+
Bible Exists
Bibel eksisterer
-
+
This Bible already exists. Please import a different Bible or first delete the existing one.
Denne bibel eksisterer allerede. Importér en anden bibel, eller slet først den eksisterende bibel.
-
+
Your Bible import failed.
Din bibelimport slog fejl.
-
+
CSV File
CSV fil
-
+
Bibleserver
Bibelserver
-
+
Permissions:
Tilladelser:
-
+
Bible file:
Bibelfil:
-
+
Books file:
Bogfil:
-
+
Verses file:
Versfil:
-
+
openlp.org 1.x Bible Files
openlp.org 1.x bibelfiler
-
+
Registering Bible...
Registrerer bibel...
-
+
Registered Bible. Please note, that verses will be downloaded on
demand and thus an internet connection is required.
Registrerede bibel. Bemærk venligst at vers hentes på
@@ -1234,17 +1234,17 @@ forespørgsel og en internetforbindelse er derfor påkrævet.
BiblesPlugin.LanguageDialog
-
+
Select Language
Vælg sprog
-
+
OpenLP is unable to determine the language of this translation of the Bible. Please select the language from the list below.
OpenLP er ikke i stand til at bestemme bibeloversættelsens sprog. Vælg sproget fra listen herunder.
-
+
Language:
Sprog:
@@ -1252,7 +1252,7 @@ forespørgsel og en internetforbindelse er derfor påkrævet.
BiblesPlugin.LanguageForm
-
+
You need to choose a language.
Du er nødt til at vælge et sprog.
@@ -1260,92 +1260,92 @@ forespørgsel og en internetforbindelse er derfor påkrævet.
BiblesPlugin.MediaItem
-
+
Quick
Hurtig
-
+
Find:
Find:
-
+
Book:
Bog:
-
+
Chapter:
Kapitel:
-
+
Verse:
Vers:
-
+
From:
Fra:
-
+
To:
Til:
-
+
Text Search
Tekstsøgning
-
+
Second:
Anden:
-
+
Scripture Reference
Skriftsted
-
+
Toggle to keep or clear the previous results.
Vælg om du vil beholde eller fjerne de forrige resultater.
-
+
You cannot combine single and dual Bible verse search results. Do you want to delete your search results and start a new search?
Du kan ikke kombinere søgeresultater med enkelte og dobbelte bibelvers. Vil du slette dine søgeresultater og starte en ny søgning?
-
+
Bible not fully loaded.
Bibel ikke færdigindlæst.
-
+
Information
Information
-
+
The second Bible does not contain all the verses that are in the main Bible. Only verses found in both Bibles will be shown. %d verses have not been included in the results.
Den sekundære bibel indeholder ikke alle versene der er i den primære bibel. Kun de vers der kan findes i begge bibler vil blive vist. %d vers er ikke blevet inkluderet blandt resultaterne.
-
+
Search Scripture Reference...
-
+
Search Text...
-
+
Are you sure you want to delete "%s"?
@@ -1353,7 +1353,7 @@ forespørgsel og en internetforbindelse er derfor påkrævet.
BiblesPlugin.Opensong
-
+
Importing %s %s...
Importing <book name> <chapter>...
Importerer %s %s...
@@ -1362,12 +1362,12 @@ forespørgsel og en internetforbindelse er derfor påkrævet.
BiblesPlugin.OsisImport
-
+
Detecting encoding (this may take a few minutes)...
Bestemmer indkodning (dette kan tage et par minutter)...
-
+
Importing %s %s...
Importing <book name> <chapter>...
Importerer %s %s...
@@ -1376,148 +1376,148 @@ forespørgsel og en internetforbindelse er derfor påkrævet.
BiblesPlugin.UpgradeWizardForm
-
+
Select a Backup Directory
Vælg en mappe til sikkerhedskopiering
-
+
Bible Upgrade Wizard
-
+
This wizard will help you to upgrade your existing Bibles from a prior version of OpenLP 2. Click the next button below to start the upgrade process.
-
+
Select Backup Directory
Vælg mappe til sikkerhedskopiering
-
+
Please select a backup directory for your Bibles
-
+
Previous releases of OpenLP 2.0 are unable to use upgraded Bibles. This will create a backup of your current Bibles so that you can simply copy the files back to your OpenLP data directory if you need to revert to a previous release of OpenLP. Instructions on how to restore the files can be found in our <a href="http://wiki.openlp.org/faq">Frequently Asked Questions</a>.
-
+
Please select a backup location for your Bibles.
-
+
Backup Directory:
Mappe til sikkerhedskopiering:
-
+
There is no need to backup my Bibles
Der er ikke brug for at lave backup af mine bibler
-
+
Select Bibles
Vælg bibler
-
+
Please select the Bibles to upgrade
Vælg de bibler der skal opgraderes
-
+
Upgrading
Opgraderer
-
+
Please wait while your Bibles are upgraded.
Vent imens dine bibler bliver opgraderet.
-
+
The backup was not successful.
To backup your Bibles you need permission to write to the given directory.
Sikkerhedskopieringen lykkedes ikke.
For at sikkerhedskopiere dine bibler skal du have tilladelse til at skrive til den givne mappe.
-
+
Upgrading Bible %s of %s: "%s"
Failed
Opgradering af bibel %s af %s: "%s"
Fejlede
-
+
Upgrading Bible %s of %s: "%s"
Upgrading ...
Opgraderer bibel %s af %s: "%s"
Opgraderer ...
-
+
Download Error
Hentningsfejl
-
+
To upgrade your Web Bibles an Internet connection is required.
-
+
Upgrading Bible %s of %s: "%s"
Upgrading %s ...
Opgraderer bibel %s af %s: "%s"
Opgraderer %s ...
-
+
Upgrading Bible %s of %s: "%s"
Complete
Opgraderer bibel %s af %s: "%s"
Færdig
-
+
, %s failed
, %s slog fejl
-
+
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.
-
+
Upgrading Bible(s): %s successful%s
-
+
Upgrade failed.
Opgradering slog fejl.
-
+
You need to specify a backup directory for your Bibles.
Du er nødt til at vælge en sikkerhedskopi-mappe til dine bibler.
-
+
Starting upgrade...
Starter opgradering...
-
+
There are no Bibles that need to be upgraded.
Der er ingen bibler der har brug for at blive opdateret.
@@ -1525,65 +1525,65 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I
CustomPlugin
-
+
<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>"Brugerdefineret dias"-udvidelse</strong><br />"Brugerdefineret dias"-udvidelsen gør det muligt at lave brugerdefinerede tekstdias der kan vises på skærmen på samme måde som sangteksterne. Denne udvidelse giver større frihed end sangudvidelsen.
-
+
Custom Slide
name singular
Brugerdefineret dias
-
+
Custom Slides
name plural
Brugerdefinerede dias
-
+
Custom Slides
container title
Brugerdefinerede dias
-
+
Load a new custom slide.
Indlæs et nyt brugerdefineret dias.
-
+
Import a custom slide.
Importér et brugerdefineret dias.
-
+
Add a new custom slide.
Tilføj et nyt brugerdefineret dias.
-
+
Edit the selected custom slide.
Redigér det valgte brugerdefinerede dias.
-
+
Delete the selected custom slide.
Slet det valgte brugerdefinerede dias.
-
+
Preview the selected custom slide.
Forhåndsvis det valgte brugerdefinerede dias.
-
+
Send the selected custom slide live.
Send det valgte brugerdefinerede dias live.
-
+
Add the selected custom slide to the service.
Tilføj det valgte brugerdefinerede dias til programmet.
@@ -1591,12 +1591,12 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I
CustomPlugin.CustomTab
-
+
Custom Display
Brugerdefineret visning
-
+
Display footer
Vis sidefod
@@ -1604,62 +1604,62 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I
CustomPlugin.EditCustomForm
-
+
Edit Custom Slides
Redigér brugerdefinerede dias
-
+
&Title:
&Titel:
-
+
Add a new slide at bottom.
Tilføj et nyt dias i bunden.
-
+
Edit the selected slide.
Redigér det valgte dias.
-
+
Edit all the slides at once.
Redigér alle dias på samme tid.
-
+
Split a slide into two by inserting a slide splitter.
Del et dias op i to ved at indsætte en diasopdeler.
-
+
The&me:
T&ema:
-
+
&Credits:
&Bidragsydere:
-
+
You need to type in a title.
Du skal skrive en titel.
-
+
You need to add at least one slide
Du skal tilføje mindst ét dias
-
+
Ed&it All
Re&digér alle
-
+
Insert Slide
Indsæt dias
@@ -1667,7 +1667,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I
CustomPlugin.MediaItem
-
+
Are you sure you want to delete the %n selected custom slide(s)?
@@ -1678,60 +1678,60 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I
ImagePlugin
-
+
<strong>Image Plugin</strong><br />The image plugin provides displaying of images.<br />One of the distinguishing features of this plugin is the ability to group a number of images together in the service manager, making the displaying of multiple images easier. This plugin can also make use of OpenLP's "timed looping" feature to create a slide show that runs automatically. In addition to this, images from the plugin can be used to override the current theme's background, which renders text-based items like songs with the selected image as a background instead of the background provided by the theme.
-
+
Image
name singular
Billede
-
+
Images
name plural
Billeder
-
+
Images
container title
Billeder
-
+
Load a new image.
Indlæs et nyt billede.
-
+
Add a new image.
Tilføj et nyt billede.
-
+
Edit the selected image.
Redigér det valgte billede.
-
+
Delete the selected image.
Slet det valgte billede.
-
+
Preview the selected image.
Forhåndsvis det valgte billede.
-
+
Send the selected image live.
Send det valgte billede live.
-
+
Add the selected image to the service.
Tilføj det valgte billede til programmet.
@@ -1739,7 +1739,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I
ImagePlugin.ExceptionDialog
-
+
Select Attachment
Vælg bilag
@@ -1747,32 +1747,32 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I
ImagePlugin.MediaItem
-
+
Select Image(s)
Vælg billede(r)
-
+
You must select an image to delete.
Du skal vælge et billede som skal slettes.
-
+
You must select an image to replace the background with.
-
+
Missing Image(s)
Manglende billede(r)
-
+
The following image(s) no longer exist: %s
De følgende billeder eksisterer ikke længere: %s
-
+
The following image(s) no longer exist: %s
Do you want to add the other images anyway?
De følgende billeder eksisterer ikke længere: %s
@@ -1792,17 +1792,17 @@ Vil du tilføje de andre billede alligevel?
ImagesPlugin.ImageTab
-
+
Background Color
Baggrundsfarve
-
+
Default Color:
Standardfarve:
-
+
Visible background for images with aspect ratio different to screen.
@@ -1810,60 +1810,60 @@ Vil du tilføje de andre billede alligevel?
MediaPlugin
-
+
<strong>Media Plugin</strong><br />The media plugin provides playback of audio and video.
<strong>Medieudvidelse</strong><br />Medieudvidelsen gør det muligt at afspille lyd og video.
-
+
Media
name singular
Medie
-
+
Media
name plural
Medier
-
+
Media
container title
Medie
-
+
Load new media.
Indlæs nye medier.
-
+
Add new media.
Tilføj nye medier.
-
+
Edit the selected media.
Redigér de valgte medier.
-
+
Delete the selected media.
Slet de valgte medier.
-
+
Preview the selected media.
Forhåndsvis de valgte medier.
-
+
Send the selected media live.
-
+
Add the selected media to the service.
Tilføj de valgte medier til programmet.
@@ -1871,57 +1871,57 @@ Vil du tilføje de andre billede alligevel?
MediaPlugin.MediaItem
-
+
Select Media
Vælg medier
-
+
You must select a media file to delete.
Vælg den mediefil du vil slette.
-
+
You must select a media file to replace the background with.
Vælg den mediefil du vil erstatte baggrunden med.
-
+
There was a problem replacing your background, the media file "%s" no longer exists.
Der opstod et problem med at erstatte din baggrund. Mediefilen "%s" eksisterer ikke længere.
-
+
Missing Media File
Manglende mediefil
-
+
The file %s no longer exists.
Filen %s eksisterer ikke længere.
-
+
Videos (%s);;Audio (%s);;%s (*)
Videoer (%s);;Lyd (%s);;%s (*)
-
+
There was no display item to amend.
-
+
Unsupported File
Ikke-understøttet fil
-
+
Automatic
Automatisk
-
+
Use Player:
Benyt afspiller:
@@ -1929,22 +1929,22 @@ Vil du tilføje de andre billede alligevel?
MediaPlugin.MediaTab
-
+
Available Media Players
Tilgængelige medieafspillere
-
+
%s (unavailable)
%s (utilgængelig)
-
+
Player Order
Afspilningsrækkefølge
-
+
Allow media player to be overridden
@@ -1952,17 +1952,17 @@ Vil du tilføje de andre billede alligevel?
OpenLP
-
+
Image Files
Billedfiler
-
+
Information
Information
-
+
Bible format has changed.
You have to upgrade your existing Bibles.
Should OpenLP upgrade now?
@@ -1974,37 +1974,37 @@ Skal OpenLP opgradere dem nu?
OpenLP.AboutForm
-
+
Credits
Bidragsydere
-
+
License
Licens
-
+
Contribute
Hjælp os
-
+
build %s
build %s
-
+
This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License.
Dette program er fri software; du kan redistribuere det og/eller redigere det under betingelserne i GNU General Public License, som udgivet af Free Software Foundation; version 2 af licensen.
-
+
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See below for more details.
Dette program udgives i håbet om at det vil være brugbart, men UDEN NOGEN GARANTI; endda uden den forudsatte garanti om SALGSEGNETHED eller EGNETHED TIL ET BESTEMT FORMÅL. Se herunder for flere detaljer.
-
+
Project Lead
%s
@@ -2129,7 +2129,7 @@ Afsluttende tak
han har gjort os fri.
-
+
OpenLP <version><revision> - Open Source Lyrics Projection
OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if Impress, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector.
@@ -2140,7 +2140,7 @@ OpenLP is written and maintained by volunteers. If you would like to see more fr
-
+
Copyright © 2004-2012 %s
Portions copyright © 2004-2012 %s
@@ -2149,271 +2149,271 @@ Portions copyright © 2004-2012 %s
OpenLP.AdvancedTab
-
+
UI Settings
Brugerfladeindstillinger
-
+
Number of recent files to display:
-
+
Remember active media manager tab on startup
-
+
Double-click to send items straight to live
-
+
Expand new service items on creation
-
+
Enable application exit confirmation
-
+
Mouse Cursor
Musemarkør
-
+
Hide mouse cursor when over display window
Gem musemarkøren når den er over visningsvinduet
-
+
Default Image
Standardbillede
-
+
Background color:
Baggrundsfarve:
-
+
Image file:
Billedfil:
-
+
Open File
Åben fil
-
+
Advanced
Avanceret
-
+
Preview items when clicked in Media Manager
-
+
Click to select a color.
Klik for at vælge en farve.
-
+
Browse for an image file to display.
Find en billedfil som skal vises.
-
+
Revert to the default OpenLP logo.
Vend tilbage til standard OpenLP logoet.
-
+
Service %Y-%m-%d %H-%M
This may not contain any of the following characters: /\?*|<>[]":+
See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for more information.
-
+
Default Service Name
-
+
Enable default service name
-
+
Date and Time:
-
+
Monday
-
+
Tuesday
-
+
Wednesday
-
+
Thurdsday
-
+
Friday
-
+
Saturday
-
+
Sunday
-
+
Now
-
+
Time when usual service starts.
-
+
Name:
-
+
Consult the OpenLP manual for usage.
-
+
Revert to the default service name "%s".
-
+
Example:
-
+
X11
-
+
Bypass X11 Window Manager
-
+
Syntax error.
-
+
Data Location
-
+
Current path:
-
+
Custom path:
-
+
Browse for new data file location.
-
+
Set the data location to the default.
-
+
Cancel
Annullér
-
+
Cancel OpenLP data directory location change.
-
+
Copy data to new location.
-
+
Copy the OpenLP data files to the new location.
-
+
<strong>WARNING:</strong> New data directory location contains OpenLP data files. These files WILL be replaced during a copy.
-
+
Data Directory Error
-
+
Select Data Directory Location
-
+
Confirm Data Directory Change
-
+
Reset Data Directory
-
+
Are you sure you want to change the location of the OpenLP data directory to the default location?
This location will be used after OpenLP is closed.
-
+
Overwrite Existing Data
@@ -2421,39 +2421,39 @@ This location will be used after OpenLP is closed.
OpenLP.ExceptionDialog
-
+
Error Occurred
Fejl opstod
-
+
Oops! OpenLP hit a problem, and couldn't recover. The text in the box below contains information that might be helpful to the OpenLP developers, so please e-mail it to bugs@openlp.org, along with a detailed description of what you were doing when the problem occurred.
Ups! OpenLP stødte ind i et problem, og kunne ikke gendanne. Teksten i kassen herunder indeholder information som kan være nyttig for OpenLP-udviklerne, så send venligst en e-mail til bugs@openlp.org sammen med en detaljeret beskrivelse af, hvad du foretog dig da problemet opstod.
-
+
Send E-Mail
Send e-mail
-
+
Save to File
Gem til fil
-
+
Please enter a description of what you were doing to cause this error
(Minimum 20 characters)
Indtast venligst en beskrivelse af det du foretog dig der fik denne fejl til at opstå
(Mindst 20 tegn)
-
+
Attach File
Vedhæft fil
-
+
Description characters to enter : %s
Antal tegn i beskrivelsen der skal indtastes : %s
@@ -2461,24 +2461,24 @@ This location will be used after OpenLP is closed.
OpenLP.ExceptionForm
-
+
Platform: %s
Platform: %s
-
+
Save Crash Report
Gem fejlrapport
-
+
Text files (*.txt *.log *.text)
Tekst filer (*.txt *.log *.text)
-
+
**OpenLP Bug Report**
Version: %s
@@ -2496,7 +2496,7 @@ Version: %s
-
+
*OpenLP Bug Report*
Version: %s
@@ -2518,17 +2518,17 @@ Version: %s
OpenLP.FileRenameForm
-
+
File Rename
-
+
New File Name:
Nyt filnavn:
-
+
File Copy
@@ -2536,17 +2536,17 @@ Version: %s
OpenLP.FirstTimeLanguageForm
-
+
Select Translation
Vælg oversættelse
-
+
Choose the translation you'd like to use in OpenLP.
Vælg den oversættelse du ønsker at benytte i OpenLP.
-
+
Translation:
Oversættelse:
@@ -2554,199 +2554,199 @@ Version: %s
OpenLP.FirstTimeWizard
-
+
Songs
Sange
-
+
First Time Wizard
-
+
Welcome to the First Time Wizard
-
+
Activate required Plugins
Aktivér påkrævede tilføjelser
-
+
Select the Plugins you wish to use.
Vælg tilføjelserne du ønsker at benytte.
-
+
Bible
Bibel
-
+
Images
Billeder
-
+
Presentations
Præsentationer
-
+
Media (Audio and Video)
Medier (lyd og video)
-
+
Allow remote access
Tillad fjernadgang
-
+
Monitor Song Usage
Overvåg sangforbrug
-
+
Allow Alerts
Vis meddelelser
-
+
Default Settings
Standardindstillinger
-
+
Downloading %s...
Henter %s...
-
+
Download complete. Click the finish button to start OpenLP.
Hentning færdig. Klik på færdig-knappen for at starte OpenLP.
-
+
Enabling selected plugins...
Aktiverer valgte udvidelser...
-
+
No Internet Connection
Ingen internetforbindelse
-
+
Unable to detect an Internet connection.
Kunne ikke detektere en internetforbindelse.
-
+
Sample Songs
Eksempler på sange
-
+
Select and download public domain songs.
Vælg og hent offentligt tilgængelige sange.
-
+
Sample Bibles
Eksempler på bibler
-
+
Select and download free Bibles.
Vælg og hent gratis bibler.
-
+
Sample Themes
Eksempler på temaer
-
+
Select and download sample themes.
Vælg og hent eksempler på temaer.
-
+
Set up default settings to be used by OpenLP.
-
+
Default output display:
Standard output skærm:
-
+
Select default theme:
Vælg standardtema:
-
+
Starting configuration process...
Starter konfigureringsproces...
-
+
This wizard will help you to configure OpenLP for initial use. Click the next button below to start.
-
+
Setting Up And Downloading
Sætter op og henter
-
+
Please wait while OpenLP is set up and your data is downloaded.
-
+
Setting Up
Sætter op
-
+
Click the finish button to start OpenLP.
Klik på færdig-knappen for at starte OpenLP.
-
+
Download complete. Click the finish button to return to OpenLP.
Hentning færdig. Klik på færdig-knappen for at vende tilbage til OpenLP.
-
+
Click the finish button to return to OpenLP.
Klik på færdig-knappen for at vende tilbage til OpenLP.
-
+
Custom Slides
Brugerdefinerede dias
-
+
Finish
Færdig
-
+
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. Click 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.
-
+
To cancel the First Time Wizard completely (and not start OpenLP), click the Cancel button now.
@@ -2756,52 +2756,52 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can
OpenLP.FormattingTagDialog
-
+
Configure Formatting Tags
Konfigurér formatteringsmærker
-
+
Edit Selection
Redigér markering
-
+
Save
Gem
-
+
Description
Beskrivelse
-
+
Tag
Mærke
-
+
Start tag
Start mærke
-
+
End tag
Afslut mærke
-
+
Tag Id
Mærke id
-
+
Start HTML
Start HTML
-
+
End HTML
Afslut HTML
@@ -2809,32 +2809,32 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can
OpenLP.FormattingTagForm
-
+
Update Error
Opdateringsfejl
-
+
Tag "n" already defined.
Mærke "n" er allerede defineret.
-
+
New Tag
Nyt mærke
-
+
<HTML here>
<HTML her>
-
+
</and here>
</and her>
-
+
Tag %s already defined.
Mærke %s er allerede defineret.
@@ -2842,82 +2842,82 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can
OpenLP.FormattingTags
-
+
Red
Rød
-
+
Black
Sort
-
+
Blue
Blå
-
+
Yellow
Gul
-
+
Green
Grøn
-
+
Pink
Lyserød
-
+
Orange
Orange
-
+
Purple
Lilla
-
+
White
Hvid
-
+
Superscript
Hævet skrift
-
+
Subscript
Sænket skrift
-
+
Paragraph
Afsnit
-
+
Bold
Fed
-
+
Italics
Kursiv
-
+
Underline
Understreget
-
+
Break
Linjeskift
@@ -2925,157 +2925,157 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can
OpenLP.GeneralTab
-
+
General
Generelt
-
+
Monitors
Skærme
-
+
Select monitor for output display:
-
+
Display if a single screen
-
+
Application Startup
Programopstart
-
+
Show blank screen warning
-
+
Automatically open the last service
-
+
Show the splash screen
-
+
Application Settings
Programindstillinger
-
+
Prompt to save before starting a new service
-
+
Automatically preview next item in service
-
+
sec
sek
-
+
CCLI Details
CCLI detaljer
-
+
SongSelect username:
SongSelect brugernavn:
-
+
SongSelect password:
SongSelect adgangskode:
-
+
X
X
-
+
Y
Y
-
+
Height
Højde
-
+
Width
Bredde
-
+
Check for updates to OpenLP
Søg efter opdateringer til OpenLP
-
+
Unblank display when adding new live item
-
+
Timed slide interval:
-
+
Background Audio
Baggrundslyd
-
+
Start background audio paused
Start baggrundslyd på pause
-
+
Service Item Slide Limits
-
+
Override display position:
-
+
Repeat track list
-
+
Behavior of next/previous on the last/first slide:
-
+
&Remain on Slide
-
+
&Wrap around
-
+
&Move to next/previous service item
@@ -3083,12 +3083,12 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can
OpenLP.LanguageManager
-
+
Language
Sprog
-
+
Please restart OpenLP to use your new language setting.
Genstart OpenLP for at benytte dine nye sprogindstillinger.
@@ -3096,7 +3096,7 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can
OpenLP.MainDisplay
-
+
OpenLP Display
@@ -3104,438 +3104,438 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can
OpenLP.MainWindow
-
+
&File
&Fil
-
+
&Import
&Importér
-
+
&Export
&Eksportér
-
+
&View
&Vis
-
+
M&ode
O&psætning
-
+
&Tools
&Værktøjer
-
+
&Settings
&Indstillinger
-
+
&Language
&Sprog
-
+
&Help
&Hjælp
-
+
Media Manager
Mediehåndtering
-
+
Service Manager
-
+
Theme Manager
Temahåndtering
-
+
&New
&Ny
-
+
&Open
&Åben
-
+
Open an existing service.
-
+
&Save
&Gem
-
+
Save the current service to disk.
-
+
Save &As...
Gem &som...
-
+
Save Service As
Gem program som
-
+
Save the current service under a new name.
Gem det nuværende program under et nyt navn.
-
+
E&xit
A&fslut
-
+
Quit OpenLP
Luk OpenLP
-
+
&Theme
&Tema
-
+
&Configure OpenLP...
&Indstil OpenLP...
-
+
&Media Manager
&Mediehåndtering
-
+
Toggle Media Manager
-
+
Toggle the visibility of the media manager.
Skift synligheden af mediehåndteringen.
-
+
&Theme Manager
&Temahåndtering
-
+
Toggle Theme Manager
-
+
Toggle the visibility of the theme manager.
Skift synligheden af temahåndteringen.
-
+
&Service Manager
-
+
Toggle Service Manager
-
+
Toggle the visibility of the service manager.
-
+
&Preview Panel
&Forhåndsvisningspanelet
-
+
Toggle Preview Panel
-
+
Toggle the visibility of the preview panel.
Skift synligheden af forhåndsvisningspanelet.
-
+
&Live Panel
&Livepanel
-
+
Toggle Live Panel
-
+
Toggle the visibility of the live panel.
Skift synligheden af livepanelet.
-
+
&Plugin List
-
+
List the Plugins
-
+
&User Guide
-
+
&About
&Om
-
+
More information about OpenLP
Mere information om OpenLP
-
+
&Online Help
&Online hjælp
-
+
&Web Site
&Hjemmeside
-
+
Use the system language, if available.
Benyt systemsproget, hvis det er muligt.
-
+
Set the interface language to %s
-
+
Add &Tool...
Tilføj &Værktøj...
-
+
Add an application to the list of tools.
Tilføj et program til listen over værktøjer.
-
+
&Default
&Standard
-
+
Set the view mode back to the default.
Sæt visningsopsætningen tilbage til stadard.
-
+
&Setup
&Opsætning
-
+
Set the view mode to Setup.
Sæt visningsopsætningen til Opsætning.
-
+
&Live
&Live
-
+
Set the view mode to Live.
Sæt visningsopsætningen til Live.
-
+
Version %s of OpenLP is now available for download (you are currently running version %s).
You can download the latest version from http://openlp.org/.
-
+
OpenLP Version Updated
OpenLP version opdateret
-
+
OpenLP Main Display Blanked
-
+
The Main Display has been blanked out
-
+
Default Theme: %s
Standard tema: %s
-
+
English
Please add the name of your language here
Dansk
-
+
Configure &Shortcuts...
Konfigurér g&enveje...
-
+
Close OpenLP
Luk OpenLP
-
+
Are you sure you want to close OpenLP?
Er du sikker på at du vil lukke OpenLP?
-
+
Open &Data Folder...
-
+
Open the folder where songs, bibles and other data resides.
-
+
&Autodetect
&Autodetektér
-
+
Update Theme Images
Opdatér temabilleder
-
+
Update the preview images for all themes.
-
+
Print the current service.
Udskriv det nuværende program.
-
+
&Recent Files
-
+
L&ock Panels
L&ås paneler
-
+
Prevent the panels being moved.
-
+
Re-run First Time Wizard
-
+
Re-run the First Time Wizard, importing songs, Bibles and themes.
-
+
Re-run First Time Wizard?
-
+
Are you sure you want to re-run the First Time Wizard?
Re-running this wizard may make changes to your current OpenLP configuration and possibly add songs to your existing songs list and change your default theme.
-
+
Clear List
Clear List of recent files
Ryd liste
-
+
Clear the list of recent files.
-
+
Configure &Formatting Tags...
-
+
Export OpenLP settings to a specified *.config file
-
+
Settings
Indstillinger
-
+
Import OpenLP settings from a specified *.config file previously exported on this or another machine
-
+
Import settings?
Importér indstillinger?
-
+
Are you sure you want to import settings?
Importing settings will make permanent changes to your current OpenLP configuration.
@@ -3544,37 +3544,37 @@ Importing incorrect settings may cause erratic behaviour or OpenLP to terminate
-
+
Open File
Åben fil
-
+
OpenLP Export Settings Files (*.conf)
-
+
Import settings
Importér indstillinger
-
+
OpenLP will now close. Imported settings will be applied the next time you start OpenLP.
-
+
Export Settings File
-
+
OpenLP Export Settings File (*.conf)
-
+
New Data Directory Error
@@ -3582,19 +3582,19 @@ Importing incorrect settings may cause erratic behaviour or OpenLP to terminate
OpenLP.Manager
-
+
Database Error
Databasefejl
-
+
The database being loaded was created in a more recent version of OpenLP. The database is version %d, while OpenLP expects version %d. The database will not be loaded.
Database: %s
-
+
OpenLP cannot load your database.
Database: %s
@@ -3606,52 +3606,52 @@ Database: %s
OpenLP.MediaManagerItem
-
+
No Items Selected
Ingen elementer valgt
-
+
&Add to selected Service Item
-
+
You must select one or more items to preview.
-
+
You must select one or more items to send live.
-
+
You must select one or more items.
-
+
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
Ingen søgeresultater
@@ -3668,12 +3668,12 @@ Suffix not supported
Endelsen er ikke understøttet
-
+
&Clone
-
+
Duplicate files were found on import and were ignored.
@@ -3681,12 +3681,12 @@ Endelsen er ikke understøttet
OpenLP.OpenLyricsImportError
-
+
<lyrics> tag is missing.
-
+
<verse> tag is missing.
@@ -3694,42 +3694,42 @@ Endelsen er ikke understøttet
OpenLP.PluginForm
-
+
Plugin List
Liste over udvidelser
-
+
Plugin Details
Detaljer om udvidelser
-
+
Status:
Status:
-
+
Active
Aktiv
-
+
Inactive
Inaktiv
-
+
%s (Inactive)
%s (Inaktiv)
-
+
%s (Active)
%s (Aktiv)
-
+
%s (Disabled)
%s (deaktiveret)
@@ -3737,12 +3737,12 @@ Endelsen er ikke understøttet
OpenLP.PrintServiceDialog
-
+
Fit Page
Tilpas til siden
-
+
Fit Width
Tilpas til bredden
@@ -3750,77 +3750,77 @@ Endelsen er ikke understøttet
OpenLP.PrintServiceForm
-
+
Options
Indstillinger
-
+
Copy
Kopiér
-
+
Copy as HTML
Kopiér som HTML
-
+
Zoom In
Zoom ind
-
+
Zoom Out
Zoom ud
-
+
Zoom Original
Zoom Original
-
+
Other Options
Andre indstillinger
-
+
Include slide text if available
-
+
Include service item notes
-
+
Include play length of media items
-
+
Add page break before each text item
-
+
Service Sheet
-
+
Print
Udskriv
-
+
Title:
Titel:
-
+
Custom Footer Text:
Brugerdefineret sidefod:
@@ -3828,12 +3828,12 @@ Endelsen er ikke understøttet
OpenLP.ScreenList
-
+
Screen
Skærm
-
+
primary
primær
@@ -3841,12 +3841,12 @@ Endelsen er ikke understøttet
OpenLP.ServiceItem
-
+
<strong>Start</strong>: %s
<strong>Start</strong>: %s
-
+
<strong>Length</strong>: %s
<strong>Varighed</strong>: %s
@@ -3854,7 +3854,7 @@ Endelsen er ikke understøttet
OpenLP.ServiceItemEditForm
-
+
Reorder Service Item
@@ -3862,279 +3862,279 @@ Endelsen er ikke understøttet
OpenLP.ServiceManager
-
+
Move to &top
Flyt til &top
-
+
Move item to the top of the service.
Flyt element til toppen af programmet.
-
+
Move &up
Flyt &op
-
+
Move item up one position in the service.
Flyt element en placering op i programmet.
-
+
Move &down
Flyt &ned
-
+
Move item down one position in the service.
Flyt element en placering ned i programmet.
-
+
Move to &bottom
Flyt til &bunden
-
+
Move item to the end of the service.
Flyt element til slutningen af programmet.
-
+
&Delete From Service
&Slet fra programmet
-
+
Delete the selected item from the service.
Slet det valgte element fra programmet.
-
+
&Add New Item
&Tilføj nyt emne
-
+
&Add to Selected Item
&Tilføj til det valgte emne
-
+
&Edit Item
&Redigér emne
-
+
&Reorder Item
&Omrokér element
-
+
&Notes
&Noter
-
+
&Change Item Theme
-
+
OpenLP Service Files (*.osz)
OpenLP-programfiler (*.osz)
-
+
File is not a valid service.
The content encoding is not UTF-8.
Fil er ikke et gyldigt program.
Indholdet er ikke UTF-8.
-
+
File is not a valid service.
Fil er ikke et gyldigt program.
-
+
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
&Udvid alle
-
+
Expand all the service items.
Udvid alle program-elementerne.
-
+
&Collapse all
&Sammenfold alle
-
+
Collapse all the service items.
Sammenfold alle program-elementerne.
-
+
Open File
Åben fil
-
+
Moves the selection down the window.
-
+
Move up
Flyt op
-
+
Moves the selection up the window.
-
+
Go Live
-
+
Send the selected item to Live.
-
+
&Start Time
&Start tid
-
+
Show &Preview
Vis &forhåndsvisning
-
+
Modified Service
Modificeret program
-
+
The current service has been modified. Would you like to save this service?
Det nuværende program er blevet ændret. Vil du gemme dette program?
-
+
Custom Service Notes:
Brugerdefinerede program-noter:
-
+
Notes:
Noter:
-
+
Playing time:
Afspilningstid:
-
+
Untitled Service
Unavngivet program
-
+
File could not be opened because it is corrupt.
Fil kunne ikke åbnes da den er korrupt.
-
+
Empty File
Tom fil
-
+
This service file does not contain any data.
-
+
Corrupt File
Korrupt fil
-
+
Load an existing service.
Indlæs et eksisterende program.
-
+
Save this service.
Gem dette program.
-
+
Select a theme for the service.
Vælg et tema for dette program.
-
+
This file is either corrupt or it is not an OpenLP 2.0 service file.
-
+
Service File Missing
-
+
Slide theme
Diastema
-
+
Notes
Noter
-
+
Edit
Redigér
-
+
Service copy only
-
+
Error Saving File
-
+
There was an error saving your file.
@@ -4142,7 +4142,7 @@ Indholdet er ikke UTF-8.
OpenLP.ServiceNoteForm
-
+
Service Item Notes
@@ -4150,7 +4150,7 @@ Indholdet er ikke UTF-8.
OpenLP.SettingsForm
-
+
Configure OpenLP
Konfigurér OpenLP
@@ -4158,67 +4158,67 @@ Indholdet er ikke UTF-8.
OpenLP.ShortcutListDialog
-
+
Action
Handling
-
+
Shortcut
Genvej
-
+
Duplicate Shortcut
-
+
The shortcut "%s" is already assigned to another action, please use a different shortcut.
Genvejen "%s" er allerede tilknyttet til en anden handling, brug en anden genvej.
-
+
Alternate
-
+
Select an action and click one of the buttons below to start capturing a new primary or alternate shortcut, respectively.
-
+
Default
Standard
-
+
Custom
Brugerdefineret
-
+
Capture shortcut.
Indfang genvej.
-
+
Restore the default shortcut of this action.
Gendan denne handlings standardgenvej.
-
+
Restore Default Shortcuts
Gendan standardgenveje
-
+
Do you want to restore all shortcuts to their defaults?
Vil du gendanne alle genveje til deres standardværdier?
-
+
Configure Shortcuts
Konfigurér genveje
@@ -4226,172 +4226,172 @@ Indholdet er ikke UTF-8.
OpenLP.SlideController
-
+
Hide
Gem
-
+
Go To
Gå til
-
+
Blank Screen
Blank skærm
-
+
Blank to Theme
Vis temabaggrund
-
+
Show Desktop
Vis skrivebord
-
+
Previous Service
-
+
Next Service
-
+
Escape Item
Forlad emne
-
+
Move to previous.
Gå til forrige.
-
+
Move to next.
Gå til næste.
-
+
Play Slides
Afspil dias
-
+
Delay between slides in seconds.
Forsinkelse mellem dias i sekunder.
-
+
Move to live.
Flyt til live.
-
+
Add to Service.
-
+
Edit and reload song preview.
-
+
Start playing media.
Start afspilning af medie.
-
+
Pause audio.
Sæt lyd på pause.
-
+
Pause playing media.
Sæt afspilning af medie på pause.
-
+
Stop playing media.
Stop afspilning af medie.
-
+
Video position.
Video position.
-
+
Audio Volume.
Lydstyrke.
-
+
Go to "Verse"
Gå til "Vers"
-
+
Go to "Chorus"
Gå til "Omkvæd"
-
+
Go to "Bridge"
Gå til "bro"
-
+
Go to "Pre-Chorus"
-
+
Go to "Intro"
-
+
Go to "Ending"
-
+
Go to "Other"
Gå til "anden"
-
+
Previous Slide
-
+
Next Slide
-
+
Pause Audio
-
+
Background Audio
Baggrundslyd
-
+
Go to next audio track.
-
+
Tracks
@@ -4399,17 +4399,17 @@ Indholdet er ikke UTF-8.
OpenLP.SpellTextEdit
-
+
Spelling Suggestions
-
+
Formatting Tags
-
+
Language:
Sprog:
@@ -4417,67 +4417,67 @@ Indholdet er ikke UTF-8.
OpenLP.StartTimeForm
-
+
Hours:
Timer:
-
+
Minutes:
Minutter:
-
+
Seconds:
Sekunder:
-
+
Item Start and Finish Time
-
+
Start
Begynd
-
+
Finish
Slut
-
+
Length
Længde
-
+
Time Validation Error
-
+
Finish time is set after the end of the media item
-
+
Start time is after the finish time of the media item
-
+
Theme Layout
Tema layout
-
+
The blue box shows the main area.
Den blå kasse viser hovedområdet.
-
+
The red box shows the footer.
Den røde kasse viser sidefoden.
@@ -4485,32 +4485,32 @@ Indholdet er ikke UTF-8.
OpenLP.ThemeForm
-
+
Select Image
Vælg billede
-
+
Theme Name Missing
Temanavn mangler
-
+
There is no name for this theme. Please enter one.
Dette tema har ikke noget navn. Indtast venligst ét.
-
+
Theme Name Invalid
Temanavn ugyldigt
-
+
Invalid theme name. Please enter one.
Ugyldigt temanavn. Indtast venligst et nyt.
-
+
(approximately %d lines per slide)
(cirka %d linjer per dias)
@@ -4518,72 +4518,72 @@ Indholdet er ikke UTF-8.
OpenLP.ThemeManager
-
+
Create a new theme.
Opret et nyt tema.
-
+
Edit Theme
Redigér tema
-
+
Edit a theme.
Redigér et tema.
-
+
Delete Theme
Slet tema
-
+
Delete a theme.
Slet et tema.
-
+
Import Theme
Importér tema
-
+
Import a theme.
Importér et tema.
-
+
Export Theme
Eksportér tema
-
+
Export a theme.
Eksportér et tema.
-
+
&Edit Theme
&Redigér tema
-
+
&Delete Theme
&Slet tema
-
+
Set As &Global Default
Indstil som &global standard
-
+
%s (default)
%s (standard)
-
+
You must select a theme to edit.
Vælg det tema det skal redigeres.
@@ -4598,87 +4598,87 @@ Indholdet er ikke UTF-8.
Temaet %s bruges i tilføjelsen %s.
-
+
You have not selected a theme.
Du har ikke valgt et tema.
-
+
Save Theme - (%s)
Gem tema - (%s)
-
+
Theme Exported
Tema eksporteret
-
+
Your theme has been successfully exported.
Dit tema er nu blevet eksporteret.
-
+
Theme Export Failed
Eksport af tema slog fejl
-
+
Your theme could not be exported due to an error.
Dit tema kunne ikke eksporteres på grund af en fejl.
-
+
Select Theme Import File
Vælg tema-importfil
-
+
File is not a valid theme.
Filen er ikke et gyldigt tema.
-
+
&Copy Theme
&Kopiér tema
-
+
&Rename Theme
&Omdøb tema
-
+
&Export Theme
&Eksportér tema
-
+
You must select a theme to rename.
Vælg det tema der skal omdøbes.
-
+
Rename Confirmation
Bekræt omdøbning
-
+
Rename %s theme?
Omdøb temaet %s?
-
+
You must select a theme to delete.
Vælg det tema der skal slettes.
-
+
Delete Confirmation
Bekræft sletning
-
+
Delete %s theme?
Slet temaet %s?
@@ -4693,18 +4693,18 @@ Indholdet er ikke UTF-8.
Et tema med dette navn eksisterer allerede.
-
+
OpenLP Themes (*.theme *.otz)
OpenLP temaer (*.theme *.otz)
-
+
Copy of %s
Copy of <theme name>
Kopi af %s
-
+
Theme Already Exists
@@ -4712,320 +4712,320 @@ Indholdet er ikke UTF-8.
OpenLP.ThemeWizard
-
+
Theme Wizard
Temaguide
-
+
Welcome to the Theme Wizard
Velkommen til temaguiden
-
+
Set Up Background
Indstil baggrund
-
+
Set up your theme's background according to the parameters below.
Indstil dit temas baggrund i henhold til parametrene herunder.
-
+
Background type:
Baggrundstype:
-
+
Solid Color
Ensfarvet
-
+
Gradient
Overgang
-
+
Color:
Farve:
-
+
Gradient:
Overgang:
-
+
Horizontal
Vandret
-
+
Vertical
Højret
-
+
Circular
Cirkulær
-
+
Top Left - Bottom Right
Øverst til venstre - nederst til højre
-
+
Bottom Left - Top Right
Nederst til venstre - øverst til højre
-
+
Main Area Font Details
Skriftdetaljer for hovedområdet
-
+
Define the font and display characteristics for the Display text
Definér skrifttypen og visningskarakteristik for visningsteksten
-
+
Font:
Skrifttype:
-
+
Size:
Størrelse:
-
+
Line Spacing:
Linjeafstand:
-
+
&Outline:
&Disposition:
-
+
&Shadow:
&Skygge:
-
+
Bold
Fed
-
+
Italic
Kursiv
-
+
Footer Area Font Details
Skriftdetaljer for sidefoden
-
+
Define the font and display characteristics for the Footer text
Definér skrifttypen og visningskarakteristik for teksten i sidefoden
-
+
Text Formatting Details
Detaljeret tekstformattering
-
+
Allows additional display formatting information to be defined
-
+
Horizontal Align:
Justér horisontalt:
-
+
Left
Venstre
-
+
Right
Højre
-
+
Center
Centrér
-
+
Output Area Locations
Placeringer for output-området
-
+
Allows you to change and move the main and footer areas.
-
+
&Main Area
&Hovedområde
-
+
&Use default location
&Benyt standardplacering
-
+
X position:
X position:
-
+
px
px
-
+
Y position:
Y position:
-
+
Width:
Bredde:
-
+
Height:
Højde:
-
+
Use default location
Benyt standardplacering
-
- Save and Preview
- Gem og forhåndsvis
-
-
-
- View the theme and save it replacing the current one or change the name to create a new theme
- Vis temaet og gem det ved at erstatte det nuværende, eller ved at skifte navnet for at oprette et nyt tema
-
-
-
+
Theme name:
Temanavn:
-
+
Edit Theme - %s
Redigér tema - %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.
Denne guide vil hjælp dig med at oprette og redigere dine temaer. Klik på næste-knappen for at begynde processen ved at indstille din baggrund.
-
+
Transitions:
Overgange:
-
+
&Footer Area
&Sidefodsområde
-
+
Starting color:
Startfarve:
-
+
Ending color:
Slutfarve:
-
+
Background color:
Baggrundsfarve:
-
+
Justify
Lige margener
-
+
Layout Preview
Layout forhåndsvisning
-
+
Transparent
+
+
+ Preview and Save
+
+
+
+
+ Preview the theme and save it.
+
+
OpenLP.ThemesTab
-
+
Global Theme
Globalt tema
-
+
Theme Level
Tema niveau
-
+
S&ong Level
S&ang niveau
-
+
Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme.
-
+
&Service Level
-
+
Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme.
-
+
&Global Level
&Globalt niveau
-
+
Use the global theme, overriding any themes associated with either the service or the songs.
-
+
Themes
Temaer
@@ -5033,591 +5033,591 @@ Indholdet er ikke UTF-8.
OpenLP.Ui
-
+
Error
Fejl
-
+
About
Om
-
+
&Add
&Tilføj
-
+
Advanced
Avanceret
-
+
All Files
Alle filer
-
+
Bottom
Bund
-
+
Browse...
Gennemse...
-
+
Cancel
Annullér
-
+
CCLI number:
CCLI nummer:
-
+
Create a new service.
Opret et nyt program.
-
+
&Delete
&Slet
-
+
&Edit
&Redigér
-
+
Empty Field
Tomt felt
-
+
Export
Eksportér
-
+
pt
Abbreviated font pointsize unit
pkt
-
+
Image
Billede
-
+
Import
Importér
-
+
Live
Live
-
+
Live Background Error
-
+
Load
Indlæs
-
+
Middle
Midt
-
+
New
Ny
-
+
New Service
Nyt program
-
+
New Theme
Nyt tema
-
+
No File Selected
Singular
Ingen fil valgt
-
+
No Files Selected
Plural
Ingen filer valgt
-
+
No Item Selected
Singular
Intet element valgt
-
+
No Items Selected
Plural
Ingen elementer valgt
-
+
openlp.org 1.x
openlp.org 1.x
-
+
OpenLP 2.0
OpenLP 2.0
-
+
Preview
Forhåndsvisning
-
+
Replace Background
Erstat baggrund
-
+
Reset Background
Nulstil baggrund
-
+
s
The abbreviated unit for seconds
s
-
+
Save && Preview
Gem && forhåndsvis
-
+
Search
Søg
-
+
You must select an item to delete.
Vælg et element der skal slettes.
-
+
You must select an item to edit.
Vælg et element der skal redigeres.
-
+
Save Service
Gem program
-
+
Service
Program
-
+
Start %s
Start %s
-
+
Theme
Singular
Tema
-
+
Themes
Plural
Temaer
-
+
Top
Top
-
+
Version
Udgave
-
+
Delete the selected item.
Slet det valgte element.
-
+
Move selection up one position.
-
+
Move selection down one position.
-
+
&Vertical Align:
&Justér lodret:
-
+
Finished import.
Færdiggjorde import.
-
+
Format:
Format:
-
+
Importing
Importerer
-
+
Importing "%s"...
Importerer "%s"...
-
+
Select Import Source
Vælg importkilde
-
+
Select the import format and the location to import from.
Vælg importkilden og placeringen der skal importeres fra.
-
+
The openlp.org 1.x importer has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "python-sqlite" module.
-
+
Open %s File
Åben filen %s
-
+
%p%
%p%
-
+
Ready.
Klar.
-
+
Starting import...
Starter import...
-
+
You need to specify at least one %s file to import from.
A file type e.g. OpenSong
-
+
Welcome to the Bible Import Wizard
-
+
Welcome to the Song Export Wizard
-
+
Welcome to the Song Import Wizard
-
+
Author
Singular
Forfatter
-
+
Authors
Plural
Forfattere
-
+
©
Copyright symbol.
©
-
+
Song Book
Singular
Sangbog
-
+
Song Books
Plural
Sangbøger
-
+
Song Maintenance
-
+
Topic
Singular
Emne
-
+
Topics
Plural
Emner
-
+
Continuous
Uafbrudt
-
+
Default
Standard
-
+
Display style:
Visningsstil:
-
+
Duplicate Error
-
+
File
Fil
-
+
Help
Hjælp
-
+
h
The abbreviated unit for hours
t
-
+
Layout style:
Layoutstil:
-
+
Live Toolbar
-
+
m
The abbreviated unit for minutes
m
-
+
OpenLP is already running. Do you wish to continue?
OpenLP kører allerede. Vil du fortsætte?
-
+
Settings
Indstillinger
-
+
Tools
Værktøjer
-
+
Unsupported File
Ikke understøttet fil
-
+
Verse Per Slide
Vers per dias
-
+
Verse Per Line
Vers per linje
-
+
View
Vis
-
+
Title and/or verses not found
Titel og/eller vers ikke fundet
-
+
XML syntax error
XML syntaksfejl
-
+
View Mode
Visningstilstand
-
+
Open service.
Åben program.
-
+
Print Service
Udskriv program
-
+
Replace live background.
Erstat live-baggrund.
-
+
Reset live background.
Nulstil live-baggrund.
-
+
Split a slide into two only if it does not fit on the screen as one slide.
-
+
Welcome to the Bible Upgrade Wizard
-
+
Confirm Delete
Bekræft sletning
-
+
Play Slides in Loop
Afspil dias i løkke
-
+
Play Slides to End
Afspil dias til slut
-
+
Stop Play Slides in Loop
Stop afspilning af dias i løkke
-
+
Stop Play Slides to End
Stop afspilning af dias til slut
-
+
Next Track
-
+
Search Themes...
Search bar place holder text
-
+
Optional &Split
-
+
Invalid Folder Selected
Singular
-
+
Invalid File Selected
Singular
-
+
Invalid Files Selected
Plural
-
+
No Folder Selected
Singular
-
+
Open %s Folder
-
+
You need to specify one %s file to import from.
A file type e.g. OpenSong
-
+
You need to specify one %s folder to import from.
A song format e.g. PowerSong
@@ -5626,25 +5626,25 @@ Indholdet er ikke UTF-8.
OpenLP.core.lib
-
+
%1 and %2
Locale list separator: 2 items
-
+
%1, and %2
Locale list separator: end
-
+
%1, %2
Locale list separator: middle
-
+
%1, %2
Locale list separator: start
@@ -5653,50 +5653,50 @@ Indholdet er ikke UTF-8.
PresentationPlugin
-
+
<strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box.
-
+
Presentation
name singular
Præsentation
-
+
Presentations
name plural
Præsentationer
-
+
Presentations
container title
Præsentationer
-
+
Load a new presentation.
Indlæs en ny præsentation.
-
+
Delete the selected presentation.
Slet den valgte præsentation.
-
+
Preview the selected presentation.
Forhåndsvis den valgte præsentation.
-
+
Send the selected presentation live.
-
+
Add the selected presentation to the service.
@@ -5704,52 +5704,52 @@ Indholdet er ikke UTF-8.
PresentationPlugin.MediaItem
-
+
Select Presentation(s)
Vælg præsentation(er)
-
+
Automatic
Automatisk
-
+
Present using:
Præsentér med:
-
+
File Exists
Fil eksisterer
-
+
A presentation with that filename already exists.
En præsentation med dette filnavn eksisterer allereder.
-
+
This type of presentation is not supported.
Denne type præsentation er ikke understøttet.
-
+
Presentations (%s)
Præsentationer (%s)
-
+
Missing Presentation
Manglende præsentation
-
+
The presentation %s is incomplete, please reload.
-
+
The presentation %s no longer exists.
@@ -5757,17 +5757,17 @@ Indholdet er ikke UTF-8.
PresentationPlugin.PresentationTab
-
+
Available Controllers
-
+
%s (unavailable)
%s (ikke tilgængelig)
-
+
Allow presentation application to be overridden
@@ -5775,24 +5775,24 @@ Indholdet er ikke UTF-8.
RemotePlugin
-
+
<strong>Remote Plugin</strong><br />The remote plugin provides the ability to send messages to a running version of OpenLP on a different computer via a web browser or through the remote API.
-
+
Remote
name singular
Fjernbetjening
-
+
Remotes
name plural
Fjernbetjeninger
-
+
Remote
container title
Fjernbetjening
@@ -5801,107 +5801,107 @@ Indholdet er ikke UTF-8.
RemotePlugin.Mobile
-
+
OpenLP 2.0 Remote
OpenLP 2.0 fjernbetjening
-
+
OpenLP 2.0 Stage View
-
+
Service Manager
-
+
Slide Controller
-
+
Alerts
Meddelelser
-
+
Search
Søg
-
+
Refresh
Opdatér
-
+
Blank
Gør blank
-
+
Show
Vis
-
+
Prev
Forrige
-
+
Next
Næste
-
+
Text
Tekst
-
+
Show Alert
Vis meddelelse
-
+
Go Live
-
+
No Results
Ingen resultater
-
+
Options
Indstillinger
-
+
Add to Service
Tilføj til program
-
+
Home
-
+
Theme
Tema
-
+
Desktop
-
+
Add & Go to Service
@@ -5909,42 +5909,42 @@ Indholdet er ikke UTF-8.
RemotePlugin.RemoteTab
-
+
Serve on IP address:
-
+
Port number:
Port nummer:
-
+
Server Settings
Serverindstillinger
-
+
Remote URL:
Fjern URL:
-
+
Stage view URL:
-
+
Display stage time in 12h format
Vis scenetiden i 12-timer format
-
+
Android App
-
+
Scan the QR code or click <a href="https://market.android.com/details?id=org.openlp.android">download</a> to install the Android app from the Market.
@@ -5952,85 +5952,85 @@ Indholdet er ikke UTF-8.
SongUsagePlugin
-
+
&Song Usage Tracking
&Sporing af sangforbrug
-
+
&Delete Tracking Data
&Slet sporingsdata
-
+
Delete song usage data up to a specified date.
Slet sangforbrugsdata op til en angivet dato.
-
+
&Extract Tracking Data
&Udtræk sporingsdata
-
+
Generate a report on song usage.
Opret en rapport over sangforbruget.
-
+
Toggle Tracking
Slå sporing til/fra
-
+
Toggle the tracking of song usage.
Slå sporing af sangforbrug til/fra.
-
+
<strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services.
<strong>Sangforbrug-udvidelse</strong><br />Denne udvidelse sporer forbruget af sange i programmer.
-
+
SongUsage
name singular
Sangforbrug
-
+
SongUsage
name plural
Sangforbrug
-
+
SongUsage
container title
Sangforbrug
-
+
Song Usage
Sangforbrug
-
+
Song usage tracking is active.
Sporing af sangforbrug er slået til.
-
+
Song usage tracking is inactive.
Sporing af sangforbrug er ikke slået til.
-
+
display
vis
-
+
printed
udskrevet
@@ -6038,32 +6038,32 @@ Indholdet er ikke UTF-8.
SongUsagePlugin.SongUsageDeleteForm
-
+
Delete Song Usage Data
Slet sangforbrugsdata
-
+
Delete Selected Song Usage Events?
-
+
Are you sure you want to delete selected Song Usage data?
Er du sikker på at du vil slette de valgte sangforbrugsdata?
-
+
Deletion Successful
-
+
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.
@@ -6071,42 +6071,42 @@ Indholdet er ikke UTF-8.
SongUsagePlugin.SongUsageDetailForm
-
+
Song Usage Extraction
-
+
Select Date Range
Vælg dataomfang
-
+
to
til
-
+
Report Location
Rapportér lokation
-
+
Output File Location
Placering af output-fil
-
+
usage_detail_%s_%s.txt
forbrugsdetaljer_%s_%s.txt
-
+
Report Creation
Oprettelse af rapport
-
+
Report
%s
has been successfully created.
@@ -6115,12 +6115,12 @@ has been successfully created.
er blevet oprettet.
-
+
Output Path Not Selected
Output-sti er ikke valgt
-
+
You have not set a valid output location for your song usage report. Please select an existing path on your computer.
@@ -6128,173 +6128,173 @@ er blevet oprettet.
SongsPlugin
-
+
&Song
&Sang
-
+
Import songs using the import wizard.
Importér sange med importguiden.
-
+
<strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs.
<strong>Sangudvidelse</strong><br />Sangudvidelsen gør det muligt at vise og håndtere sange.
-
+
&Re-index Songs
&Genindeksér sange
-
+
Re-index the songs database to improve searching and ordering.
Genindeksér sangene i databasen for at forbedre søgning og sortering.
-
+
Reindexing songs...
Genindekserer sange...
-
+
Arabic (CP-1256)
Arabisk (CP-1256)
-
+
Baltic (CP-1257)
Baltisk (CP-1257)
-
+
Central European (CP-1250)
Centraleuropæisk (CP-1250)
-
+
Cyrillic (CP-1251)
Kyrillisk (CP-1251)
-
+
Greek (CP-1253)
Græsk (CP-1253)
-
+
Hebrew (CP-1255)
Hebraisk (CP-1255)
-
+
Japanese (CP-932)
Japansk (CP-932)
-
+
Korean (CP-949)
Koreansk (CP-949)
-
+
Simplified Chinese (CP-936)
Simplificeret kinesisk (CP-936)
-
+
Thai (CP-874)
Thailandsk (CP-874)
-
+
Traditional Chinese (CP-950)
Traditionelt kinesisk (CP-950)
-
+
Turkish (CP-1254)
Tyrkisk (CP-1254)
-
+
Vietnam (CP-1258)
Vietnamesisk (CP-1258)
-
+
Western European (CP-1252)
Vesteuropæisk (CP-1252)
-
+
Character Encoding
Tegnkodning
-
+
The codepage setting is responsible
for the correct character representation.
Usually you are fine with the preselected choice.
-
+
Please choose the character encoding.
The encoding is responsible for the correct character representation.
-
+
Song
name singular
Sang
-
+
Songs
name plural
Sange
-
+
Songs
container title
Sange
-
+
Exports songs using the export wizard.
Eksportér sange med eksportguiden.
-
+
Add a new song.
Tilføj en ny sang.
-
+
Edit the selected song.
Redigér den valgte sang.
-
+
Delete the selected song.
Slet den valgte sang.
-
+
Preview the selected song.
Forhåndsvis den valgte sang.
-
+
Send the selected song live.
-
+
Add the selected song to the service.
Tilføj de valgte sange til programmet.
@@ -6302,37 +6302,37 @@ The encoding is responsible for the correct character representation.
SongsPlugin.AuthorsForm
-
+
Author Maintenance
-
+
Display name:
Visningsnavn:
-
+
First name:
Fornavn:
-
+
Last name:
Efternavn:
-
+
You need to type in the first name of the author.
Skriv forfatterens fornavn.
-
+
You need to type in the last name of the author.
Skriv forfatterens efternavn.
-
+
You have not set a display name for the author, combine the first and last names?
Du har ikke valgt et visningsnavn til forfatteren. Kombinér for- og efternavn?
@@ -6340,7 +6340,7 @@ The encoding is responsible for the correct character representation.
SongsPlugin.CCLIFileImport
-
+
The file does not have a valid extension.
Filen har ikke en gyldig endelse.
@@ -6348,12 +6348,12 @@ The encoding is responsible for the correct character representation.
SongsPlugin.EasyWorshipSongImport
-
+
Administered by %s
Administreret af %s
-
+
[above are Song Tags with notes imported from
EasyWorship]
@@ -6363,12 +6363,12 @@ The encoding is responsible for the correct character representation.
SongsPlugin.EditBibleForm
-
+
Meta Data
-
+
Custom Book Names
@@ -6376,207 +6376,207 @@ The encoding is responsible for the correct character representation.
SongsPlugin.EditSongForm
-
+
Song Editor
-
+
&Title:
&Titel:
-
+
Alt&ernate title:
Alt&ernativ titel:
-
+
&Lyrics:
&Sangtekst:
-
+
&Verse order:
&Rækkefølge af vers:
-
+
Ed&it All
Re&digér alle
-
+
Title && Lyrics
Titel && sangtekst
-
+
&Add to Song
&Tilføj til sang
-
+
&Remove
&Fjern
-
+
&Manage Authors, Topics, Song Books
&Administrér forfattere, emner, sangbøger
-
+
A&dd to Song
T&ilføj til sang
-
+
R&emove
F&jern
-
+
Book:
Bog:
-
+
Number:
Nummer:
-
+
Authors, Topics && Song Book
Forfattere, emner && sangbøger
-
+
New &Theme
Nyt &tema
-
+
Copyright Information
Information om ophavsret
-
+
Comments
Kommentarer
-
+
Theme, Copyright Info && Comments
Tema, ophavsret && kommentarer
-
+
Add Author
Tilføj forfatter
-
+
This author does not exist, do you want to add them?
Denne forfatter eksisterer ikke. Vil du tilføje dem?
-
+
This author is already in the list.
Denne forfatter er allerede på listen.
-
+
You have not selected a valid author. Either select an author from the list, or type in a new author and click the "Add Author to Song" button to add the new author.
Du har ikke valgt en gyldig forfatter. Vælg enten en forfatter fra liste, eller indtast en ny forfatter og klik på "Tilføj forfatter til sang"-knappen for at tilføje den nye forfatter.
-
+
Add Topic
Tilføj emne
-
+
This topic does not exist, do you want to add it?
Dette emne eksisterer ikke. Vil du tilføje det?
-
+
This topic is already in the list.
Dette emne er allerede på listen.
-
+
You have not selected a valid topic. Either select a topic from the list, or type in a new topic and click the "Add Topic to Song" button to add the new topic.
Du har ikke valgt et gyldigt emne. Vælg enten et emne fra listen, eller indtast et nyt emne og klik på "Tilføj emne til sang"-knappen for at tilføje det nye emne.
-
+
You need to type in a song title.
Vælg først en sangtitel.
-
+
You need to type in at least one verse.
Skriv mindst ét vers.
-
+
The verse order is invalid. There is no verse corresponding to %s. Valid entries are %s.
Rækkefølgen af vers er ikke gyldig. Der ikke noget vers som svarer til %s. Gyldige elementer er %s.
-
+
Add Book
Tilføj bog
-
+
This song book does not exist, do you want to add it?
Denne sangbog eksisterer ikke. Ønsker du at tilføje den?
-
+
You need to have an author for this song.
Du mangler en forfatter til denne sang.
-
+
You need to type some text in to the verse.
Du mangler at skrive noget tekst ind til verset.
-
+
Linked Audio
Sammenkædet lydspor
-
+
Add &File(s)
Tilføj &fil(er)
-
+
Add &Media
Tilføj &medier
-
+
Remove &All
Fjern &alt
-
+
Open File(s)
Åben fil(er)
-
+
<strong>Warning:</strong> Not all of the verses are in use.
-
+
The verse order is invalid. There are no verses corresponding to %s. Valid entries are %s.
@@ -6584,22 +6584,22 @@ The encoding is responsible for the correct character representation.
SongsPlugin.EditVerseForm
-
+
Edit Verse
Redigér vers
-
+
&Verse type:
&Verstype:
-
+
&Insert
&Indsæt
-
+
Split a slide into two by inserting a verse splitter.
Del et dias i to ved at indsætte en versdeler.
@@ -6607,82 +6607,82 @@ The encoding is responsible for the correct character representation.
SongsPlugin.ExportWizardForm
-
+
Song Export Wizard
-
+
Select Songs
Vælg sange
-
+
Check the songs you want to export.
Markér de sange du vil eksportere.
-
+
Uncheck All
Afmarkér alle
-
+
Check All
Markér alle
-
+
Select Directory
Vælg mappe
-
+
Directory:
Mappe:
-
+
Exporting
Eksporterer
-
+
Please wait while your songs are exported.
Vent imens dines sange eksporteres.
-
+
You need to add at least one Song to export.
Vælg mindst én sang der skal eksporteres.
-
+
No Save Location specified
-
+
Starting export...
Starter eksport...
-
+
You need to specify a directory.
Vælg en mappe.
-
+
Select Destination Folder
Vælg en destinationsmappe
-
+
Select the directory where you want the songs to be saved.
Vælg den mappe hvori du ønsker at gemme sangene.
-
+
This wizard will help to export your songs to the open and free <strong>OpenLyrics</strong> worship song format.
Denne guide vil hjælp dig med at eksportere dine sange til det åbne og frie <strong>OpenLyrics</strong> lovsangsformat.
@@ -6690,150 +6690,155 @@ The encoding is responsible for the correct character representation.
SongsPlugin.ImportWizardForm
-
+
Select Document/Presentation Files
Vælg dokument-/præsentationfiler
-
+
Song Import Wizard
Sangimport guide
-
+
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.
Denne guide vil hjælpe dig med at importere sange fra forskellige formater. Klik på næste-knappen herunder for at starte processen ved at vælge et format du vil importere fra.
-
+
Generic Document/Presentation
-
+
Add Files...
Tilføj filer...
-
+
Remove File(s)
Fjern fil(er)
-
+
Please wait while your songs are imported.
Vent imens dine sange bliver importeret.
-
+
OpenLP 2.0 Databases
OpenLP 2.0 databaser
-
+
openlp.org v1.x Databases
openlp.org v1.x databaser
-
+
Words Of Worship Song Files
Words Of Worship sangfiler
-
+
Songs Of Fellowship Song Files
Songs Of Fellowship sangfiler
-
+
SongBeamer Files
SongBeamer filer
-
+
SongShow Plus Song Files
SongShow Plus sangfiler
-
+
Foilpresenter Song Files
Foilpresenter sangfiler
-
+
Copy
Kopiér
-
+
Save to File
Gem til fil
-
+
The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice.
Songs of Fellowship-importeringen er blevet deaktiveret på grund af at OpenLP ikke kan oprette forbindelse til OpenOffice, eller LibreOffice.
-
+
The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice.
-
+
OpenLyrics or OpenLP 2.0 Exported Song
OpenLyrics eller OpenLP 2.0 eksporteret sang
-
+
OpenLyrics Files
OpenLyrics filer
-
+
CCLI SongSelect Files
-
+
EasySlides XML File
-
+
EasyWorship Song Database
-
+
DreamBeam Song Files
-
+
You need to specify a valid PowerSong 1.0 database folder.
-
+
ZionWorx (CSV)
-
+
First convert your ZionWorx database to a CSV text file, as explained in the <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">User Manual</a>.
+
+
+ SundayPlus Song Files
+
+
SongsPlugin.MediaFilesForm
-
+
Select Media File(s)
Vælg mediefil(er)
-
+
Select one or more audio files from the list below, and click OK to import them into this song.
Vælg én eller flere lydfiler fra listen herunder, og klik OK for at importere dem ind i denne sang.
@@ -6841,27 +6846,27 @@ The encoding is responsible for the correct character representation.
SongsPlugin.MediaItem
-
+
Titles
Titler
-
+
Lyrics
Sangtekst
-
+
CCLI License:
CCLI Licens:
-
+
Entire Song
-
+
Are you sure you want to delete the %n selected song(s)?
Er du sikker på at du vil slette de %n valgte sange?
@@ -6869,38 +6874,38 @@ The encoding is responsible for the correct character representation.
-
+
Maintain the lists of authors, topics and books.
Vedligehold listen over forfattere, emner og bøger.
-
+
copy
For song cloning
-
+
Search Titles...
-
+
Search Entire Song...
-
+
Search Lyrics...
-
+
Search Authors...
-
+
Search Song Books...
@@ -6908,7 +6913,7 @@ The encoding is responsible for the correct character representation.
SongsPlugin.OpenLP1SongImport
-
+
Not a valid openlp.org 1.x song database.
Ikke en gyldig openlp.org 1.x sangdatabase.
@@ -6916,7 +6921,7 @@ The encoding is responsible for the correct character representation.
SongsPlugin.OpenLPSongImport
-
+
Not a valid OpenLP 2.0 song database.
Ikke en gyldig OpenLP 2.0 sangdatabase.
@@ -6924,7 +6929,7 @@ The encoding is responsible for the correct character representation.
SongsPlugin.OpenLyricsExport
-
+
Exporting "%s"...
Eksporterer "%s"...
@@ -6932,12 +6937,12 @@ The encoding is responsible for the correct character representation.
SongsPlugin.PowerSongImport
-
+
No songs to import.
-
+
Verses not found. Missing "PART" header.
@@ -6945,22 +6950,22 @@ The encoding is responsible for the correct character representation.
SongsPlugin.SongBookForm
-
+
Song Book Maintenance
Vedligeholdelse af sangbøger
-
+
&Name:
&Navn:
-
+
&Publisher:
&Udgiver:
-
+
You need to type in a name for the book.
Då skal indtaste et navn for denne bog.
@@ -6968,12 +6973,12 @@ The encoding is responsible for the correct character representation.
SongsPlugin.SongExportForm
-
+
Your song export failed.
Din sangeksport slog fejl.
-
+
Finished export. To import these files use the <strong>OpenLyrics</strong> importer.
Ekporteringen er færdig. Benyt <strong>OpenLyrics</strong>-importeren for at importere disse filer.
@@ -6981,27 +6986,27 @@ The encoding is responsible for the correct character representation.
SongsPlugin.SongImport
-
+
copyright
ophavsret
-
+
The following songs could not be imported:
De følgende sange kunne ikke importeres:
-
+
Cannot access OpenOffice or LibreOffice
Kan ikke tilgå OpenOffice eller LibreOffice
-
+
Unable to open file
Kunne ikke åbne fil
-
+
File not found
Fil ikke fundet
@@ -7009,107 +7014,107 @@ The encoding is responsible for the correct character representation.
SongsPlugin.SongMaintenanceForm
-
+
Could not add your author.
Kunne ikke tilføje din forfatter.
-
+
This author already exists.
Denne forfatter eksisterer allerede.
-
+
Could not add your topic.
Kunne ikke tilføje dit emne.
-
+
This topic already exists.
Dette emne eksisterer allerede.
-
+
Could not add your book.
Kunne ikke tilføje din bog.
-
+
This book already exists.
Denne bog eksisterer allerede.
-
+
Could not save your changes.
Kunne ikke gemme dine ændringer.
-
+
Could not save your modified author, because the author already exists.
Kunne ikke gemme din ændrede forfatter, da denne forfatter allerede eksisterer.
-
+
Could not save your modified topic, because it already exists.
Kunne ikke gemme dit ændrede emne, da det allerede eksisterer.
-
+
Delete Author
Slet forfatter
-
+
Are you sure you want to delete the selected author?
Er du sikker på at du vil slette den valgte forfatter?
-
+
This author cannot be deleted, they are currently assigned to at least one song.
Denne forfatter kan ikke slettes, da den er tilkyttet til mindst én sang.
-
+
Delete Topic
Slet emne
-
+
Are you sure you want to delete the selected topic?
Er du sikker på at du vil slette det valgte emne?
-
+
This topic cannot be deleted, it is currently assigned to at least one song.
Dette emne kan ikke slettes, da den er tilkyttet til mindst én sang.
-
+
Delete Book
Slet bog
-
+
Are you sure you want to delete the selected book?
Er du sikker på at du vil slette den valgte bog?
-
+
This book cannot be deleted, it is currently assigned to at least one song.
Denne bog kan ikke slettes, da den er tilkyttet til mindst én sang.
-
+
The author %s already exists. Would you like to make songs with author %s use the existing author %s?
Forfatteren %s eksisterer allerede. Vil du få sangene med forfatter %s til at benytte den eksisterende forfatter %s?
-
+
The topic %s already exists. Would you like to make songs with topic %s use the existing topic %s?
Emnet %s eksisterer allerede. Vil du få sangene med emne %s til at benytte det eksisterende emne %s?
-
+
The book %s already exists. Would you like to make songs with book %s use the existing book %s?
Bogen %s eksisterer allerede. Vil du få sangene med bog %s til at benytte den eksisterende bog %s?
@@ -7117,27 +7122,27 @@ The encoding is responsible for the correct character representation.
SongsPlugin.SongsTab
-
+
Songs Mode
Sangtilstand
-
+
Enable search as you type
Slå søg-mens-du-skriver til
-
+
Display verses on live tool bar
Vis vers på live-værktøjslinjen
-
+
Update service from song edit
-
+
Import missing songs from service files
@@ -7145,17 +7150,17 @@ The encoding is responsible for the correct character representation.
SongsPlugin.TopicsForm
-
+
Topic Maintenance
Vedligeholdelse af emner
-
+
Topic name:
Emnenavn:
-
+
You need to type in a topic name.
Du skal skrive et emnenavn.
@@ -7163,37 +7168,37 @@ The encoding is responsible for the correct character representation.
SongsPlugin.VerseType
-
+
Verse
Vers
-
+
Chorus
Omkvæd
-
+
Bridge
Bro
-
+
Pre-Chorus
Før-omkvæd
-
+
Intro
Intro
-
+
Ending
Afslutning
-
+
Other
Anden
@@ -7201,12 +7206,12 @@ The encoding is responsible for the correct character representation.
SongsPlugin.ZionWorxImport
-
+
Error reading CSV file.
-
+
File not valid ZionWorx CSV format.
diff --git a/resources/i18n/de.ts b/resources/i18n/de.ts
index 758164ec4..65f2fed84 100644
--- a/resources/i18n/de.ts
+++ b/resources/i18n/de.ts
@@ -3,35 +3,35 @@
AlertsPlugin
-
+
&Alert
&Hinweis
-
+
Show an alert message.
Hinweis anzeigen.
-
+
Alert
name singular
Hinweis
-
+
Alerts
name plural
Hinweise
-
+
Alerts
container title
Hinweise
-
+
<strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of nursery alerts on the display screen.
<strong>Hinweis Erweiterung</strong><br />Die Erweiterung Hinweis ermöglicht es, Texte auf der Anzeige einzublenden.
@@ -39,69 +39,69 @@
AlertsPlugin.AlertForm
-
+
Alert Message
Hinweistext
-
+
Alert &text:
Hinweis&text:
-
+
&New
&Neu
-
+
&Save
&Speichern
-
+
Displ&ay
&Anzeigen
-
+
Display && Cl&ose
An&zeigen && Schließen
-
+
New Alert
Neuer Hinweis
-
+
You haven't specified any text for your alert. Please type in some text before clicking New.
Der Hinweis enthält noch keinen Text. Bitte geben Sie einen Text an, bevor Sie auf »Neu« klicken.
-
+
&Parameter:
&Parameter:
-
+
No Parameter Found
Kein Parameter gefunden
-
+
You have not entered a parameter to be replaced.
Do you want to continue anyway?
Sie haben keinen Parameter angegeben, der ersetzt werden könnte.
Möchten Sie dennoch fortfahren?
-
+
No Placeholder Found
Kein Platzhalter gefunden
-
+
The alert text does not contain '<>'.
Do you want to continue anyway?
Der Hinweistext enthält nicht '<>'.
@@ -111,7 +111,7 @@ Möchten Sie dennoch fortfahren?
AlertsPlugin.AlertsManager
-
+
Alert message created and displayed.
Hinweis wurde erfolgreich erstellt und angezeigt.
@@ -119,32 +119,32 @@ Möchten Sie dennoch fortfahren?
AlertsPlugin.AlertsTab
-
+
Font
Schrift
-
+
Font name:
Schriftart:
-
+
Font color:
Schriftfarbe:
-
+
Background color:
Hintergrundfarbe:
-
+
Font size:
Schriftgröße:
-
+
Alert timeout:
Anzeigedauer:
@@ -152,510 +152,510 @@ Möchten Sie dennoch fortfahren?
BiblesPlugin
-
+
&Bible
&Bibel
-
+
Bible
name singular
Bibeltext
-
+
Bibles
name plural
Bibeln
-
+
Bibles
container title
Bibeln
-
+
No Book Found
Kein Buch gefunden
-
+
No matching book could be found in this Bible. Check that you have spelled the name of the book correctly.
Es konnte kein passendes Buch gefunden werden. Überprüfen Sie bitte die Schreibweise.
-
+
Import a Bible.
Neue Bibel importieren.
-
+
Add a new Bible.
Füge eine neue Bibel hinzu.
-
+
Edit the selected Bible.
Bearbeite die ausgewählte Bibel.
-
+
Delete the selected Bible.
Lösche die ausgewählte Bibel.
-
+
Preview the selected Bible.
Zeige die ausgewählte Bibelverse in der Vorschau.
-
+
Send the selected Bible live.
Zeige die ausgewählte Bibelverse Live an.
-
+
Add the selected Bible to the service.
Füge die ausgewählten Bibelverse zum Ablauf hinzu.
-
+
<strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display Bible verses from different sources during the service.
<strong>Bibel Erweiterung</strong><br />Die Bibel Erweiterung ermöglicht es Bibelverse aus verschiedenen Quellen anzuzeigen.
-
+
&Upgrade older Bibles
&Upgrade alte Bibeln
-
+
Upgrade the Bible databases to the latest format.
Stelle die Bibeln auf das aktuelle Datenbankformat um.
-
+
Genesis
1. Mose
-
+
Exodus
2. Mose
-
+
Leviticus
3. Mose
-
+
Numbers
4. Mose
-
+
Deuteronomy
5. Mose
-
+
Joshua
Josua
-
+
Judges
Richter
-
+
Ruth
Rut
-
+
1 Samuel
1. Samuel
-
+
2 Samuel
2. Samuel
-
+
1 Kings
1. Könige
-
+
2 Kings
2. Könige
-
+
1 Chronicles
1. Chronik
-
+
2 Chronicles
2. Chronik
-
+
Ezra
Esra
-
+
Nehemiah
Nehemia
-
+
Esther
Ester
-
+
Job
Hiob
-
+
Psalms
Psalm
-
+
Proverbs
Sprüche
-
+
Ecclesiastes
Prediger
-
+
Song of Solomon
Hohelied
-
+
Isaiah
Jesaja
-
+
Jeremiah
Jeremia
-
+
Lamentations
Klagelieder
-
+
Ezekiel
Hesekiel
-
+
Daniel
Daniel
-
+
Hosea
Hosea
-
+
Joel
Joel
-
+
Amos
Amos
-
+
Obadiah
Obadja
-
+
Jonah
Jona
-
+
Micah
Micha
-
+
Nahum
Nahum
-
+
Habakkuk
Habakuk
-
+
Zephaniah
Zefania
-
+
Haggai
Haggai
-
+
Zechariah
Sacharja
-
+
Malachi
Maleachi
-
+
Matthew
Matthäus
-
+
Mark
Markus
-
+
Luke
Lukas
-
+
John
Johannes
-
+
Acts
Apostelgeschichte
-
+
Romans
Römer
-
+
1 Corinthians
1. Korinther
-
+
2 Corinthians
2. Korinther
-
+
Galatians
Galater
-
+
Ephesians
Epheser
-
+
Philippians
Philipper
-
+
Colossians
Kolosser
-
+
1 Thessalonians
1. Thessalonicher
-
+
2 Thessalonians
2. Thessalonicher
-
+
1 Timothy
1. Timotheus
-
+
2 Timothy
2. Timotheus
-
+
Titus
Titus
-
+
Philemon
Philemon
-
+
Hebrews
Hebräer
-
+
James
Jakobus
-
+
1 Peter
1. Petrus
-
+
2 Peter
2. Petrus
-
+
1 John
1. Johannes
-
+
2 John
2. Johannes
-
+
3 John
3. Johannes
-
+
Jude
Judas
-
+
Revelation
Offenbarung
-
+
Judith
Judit
-
+
Wisdom
Weisheit
-
+
Tobit
Tobit
-
+
Sirach
Jesus Sirach
-
+
Baruch
Baruch
-
+
1 Maccabees
1. Makkabäer
-
+
2 Maccabees
2. Makkabäer
-
+
3 Maccabees
3. Makkabäer
-
+
4 Maccabees
4. Makkabäer
-
+
Rest of Daniel
Daniel (Spätschrift)
-
+
Rest of Esther
Ester (Spätschrift)
-
+
Prayer of Manasses
Gebet des Manasse
-
+
Letter of Jeremiah
Brief des Jeremia
-
+
Prayer of Azariah
Daniel (Asarjas Gebet)
-
+
Susanna
Daniel (Susannas Rettung)
-
+
Bel
Daniel (Bel)
-
+
1 Esdras
1. Buch Esdras
-
+
2 Esdras
2. Buch Esdras
-
+
:|v|V|verse|verses;;-|to;;,|and;;end
Double-semicolon delimited separators for parsing references. Consult the developers for further information.
,|v|V|Vers|Verse|:;;-|bis;;.|;|+|und;;Ende
@@ -664,32 +664,32 @@ Möchten Sie dennoch fortfahren?
BiblesPlugin.BibleEditForm
-
+
You need to specify a version name for your Bible.
Bitte geben Sie den Namen der Bibelübersetzung ein.
-
+
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.
-
+
Bible Exists
Bibel existiert bereits
-
+
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.
-
+
You need to specify a book name for "%s".
Sie müssen ein Buchnamen für »%s« angeben.
-
+
The book name "%s" is not correct.
Numbers can only be used at the beginning and must
be followed by one or more non-numeric characters.
@@ -698,12 +698,12 @@ Nummern können nur am Anfang benutzt werden
und ein nichtnumerisches Zeichen muss folgen.
-
+
Duplicate Book Name
Doppelter Buchname
-
+
The Book Name "%s" has been entered more than once.
Der Buchnamen »%s« wurde mehrmals angegeben.
@@ -711,39 +711,39 @@ und ein nichtnumerisches Zeichen muss folgen.
BiblesPlugin.BibleManager
-
+
Scripture Reference Error
Fehler im Textverweis
-
+
Web Bible cannot be used
Für Onlinebibeln nicht verfügbar
-
+
Text Search is not available with Web Bibles.
In Onlinebibeln ist Textsuche nicht möglich.
-
+
You did not enter a search keyword.
You can separate different keywords by a space to search for all of your keywords and you can separate them by a comma to search for one of them.
Es wurde kein Suchbegriff eingegeben.
Um nach mehreren Begriffen gleichzeitig zu suchen, müssen die Begriffe durch ein Leerzeichen getrennt sein. Alternative Suchbegriffe müssen per Komma getrennt sein.
-
+
There are no Bibles currently installed. Please use the Import Wizard to install one or more Bibles.
Zurzeit sind keine Bibelübersetzungen installiert. Zur Suche muss eine solche mit dem Importassistent importiert werden.
-
+
No Bibles Available
Keine Bibeln verfügbar
-
+
Your scripture reference is either not supported by OpenLP or is invalid. Please make sure your reference conforms to one of the following patterns or consult the manual:
Book Chapter
@@ -767,79 +767,79 @@ Buch Kapitel%(verse)sVers%(range)sVers%(list)sKapitel%(verse)sVers
BiblesPlugin.BiblesTab
-
+
Verse Display
Bibelstellenanzeige
-
+
Only show new chapter numbers
Nur neue Kapitelnummern anzeigen
-
+
Bible theme:
Bibel-Design:
-
+
No Brackets
Keine Klammern
-
+
( And )
( und )
-
+
{ And }
{ und }
-
+
[ And ]
[ und ]
-
+
Note:
Changes do not affect verses already in the service.
Hinweis:
Änderungen beeinflussen keine Bibelverse, welche bereits im Ablauf vorhanden sind.
-
+
Display second Bible verses
Vergleichsbibel anzeigen
-
+
Custom Scripture References
Benutzerdefiniertes Bibelstellenformat
-
+
Verse Separator:
Verstrenner:
-
+
Range Separator:
Bereichstrenner:
-
+
List Separator:
Aufzählungstrenner:
-
+
End Mark:
Endmarkierung:
-
+
Multiple alternative verse separators may be defined.
They have to be separated by a vertical bar "|".
Please clear this edit line to use the default value.
@@ -848,7 +848,7 @@ Striche »|« getrennt angegeben werden. Der erste
Trenner wird zur Darstellung in OpenLP genutzt.
-
+
Multiple alternative range separators may be defined.
They have to be separated by a vertical bar "|".
Please clear this edit line to use the default value.
@@ -857,7 +857,7 @@ Striche »|« getrennt angegeben werden. Der erste
Trenner wird zur Darstellung in OpenLP genutzt.
-
+
Multiple alternative list separators may be defined.
They have to be separated by a vertical bar "|".
Please clear this edit line to use the default value.
@@ -866,7 +866,7 @@ Striche »|« getrennt angegeben werden. Der erste
Trenner wird zur Darstellung in OpenLP genutzt.
-
+
Multiple alternative end marks may be defined.
They have to be separated by a vertical bar "|".
Please clear this edit line to use the default value.
@@ -875,29 +875,29 @@ Striche »|« getrennt angegeben werden. Der erste
Trenner wird zur Darstellung in OpenLP genutzt.
-
+
English
Englisch
-
+
Default Bible Language
Standard Bibelsprache
-
+
Book name language in search field,
search results and on display:
Sprache des Buchnames im Suchfeld,
Suchergebnis und Projektionsbildschirm:
-
+
Bible Language
Bibelsprache
-
+
Application Language
Anwendungssprache
@@ -905,42 +905,42 @@ Suchergebnis und Projektionsbildschirm:
BiblesPlugin.BookNameDialog
-
+
Select Book Name
Buchnamen wählen
-
+
Current name:
Aktueller Name:
-
+
Corresponding name:
Entsprechender Name:
-
+
Show Books From
Zeige Bücher aus dem:
-
+
Old Testament
Altes Testament
-
+
New Testament
Neues Testament
-
+
Apocrypha
Apokryphen
-
+
The following book name cannot be matched up internally. Please select the corresponding name from the list.
Der folgende Buchname konnte nicht gefunden werden. Bitte den entsprechenden Namen in der Liste wählen.
@@ -948,7 +948,7 @@ Suchergebnis und Projektionsbildschirm:
BiblesPlugin.BookNameForm
-
+
You need to select a book.
Sie müssen ein Buch wählen.
@@ -956,18 +956,18 @@ Suchergebnis und Projektionsbildschirm:
BiblesPlugin.CSVBible
-
+
Importing books... %s
Importiere Bücher <fehler>... %s
-
+
Importing verses from %s...
Importing verses from <book name>...
Importiere Verse von %s...
-
+
Importing verses... done.
Importiere Verse... Fertig.
@@ -975,69 +975,69 @@ Suchergebnis und Projektionsbildschirm:
BiblesPlugin.EditBibleForm
-
+
Bible Editor
Bibeleditor
-
+
License Details
Lizenzdetails
-
+
Version name:
Bibelausgabe:
-
+
Copyright:
Copyright:
-
+
Permissions:
Genehmigung:
-
+
Default Bible Language
Standard Bibelsprache
-
+
Book name language in search field, search results and on display:
Sprache des Buchnames im Suchfeld, Suchergebnis und Projektionsbildschirm:
-
+
Global Settings
Globale Einstellung
-
+
Bible Language
Bibelsprache
-
+
Application Language
Anwendungssprache
-
+
English
Englisch
-
+
This is a Web Download Bible.
It is not possible to customize the Book Names.
Dies ist eine Webbibel.
Es ist nicht möglich die Büchernamen anzupassen.
-
+
To use the customized book names, "Bible language" must be selected on the Meta Data tab or, if "Global settings" is selected, on the Bible page in Configure OpenLP.
Um die benutzerdefinierten Büchernamen zu nutzen muss im Metadaten Tab "Bibelsprache" ausgewählt werden oder wenn "Globale Einstellung" ausgewählt ist, dann muss in den Bibel-Einstellungen "Bibelsprache" ausgewählt werden.
@@ -1045,38 +1045,38 @@ Es ist nicht möglich die Büchernamen anzupassen.
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. Wenden Sie sich bitte an den OpenLP Support, sollte dieser Fehler weiterhin auftreten.
-
+
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. Wenden Sie sich bitte an den OpenLP Support, sollte dieser Fehler wiederholt auftritt.
@@ -1084,168 +1084,168 @@ Es ist nicht möglich die Büchernamen anzupassen.
BiblesPlugin.ImportWizardForm
-
+
Bible Import Wizard
Bibel Importassistent
-
+
This wizard will help you to import Bibles from a variety of formats. Click the next button below to start the process by selecting a format to import from.
Dieser Assistent hilft Ihnen Bibeln aus verschiedenen Formaten zu importieren. Um den Assistenten zu starten klicken Sie auf »Weiter«.
-
+
Web Download
Onlinebibel
-
+
Location:
Quelle:
-
+
Crosswalk
Crosswalk
-
+
BibleGateway
BibleGateway
-
+
Bible:
Übersetzung:
-
+
Download Options
Download-Optionen
-
+
Server:
Server:
-
+
Username:
Benutzername:
-
+
Password:
Passwort:
-
+
Proxy Server (Optional)
Proxy-Server (optional)
-
+
License Details
Lizenzdetails
-
+
Set up the Bible's license details.
Eingabe der Urheberrechtsangaben der Bibelübersetzung.
-
+
Version name:
Bibelausgabe:
-
+
Copyright:
Copyright:
-
+
Please wait while your Bible is imported.
Bitte warten Sie während Ihre Bibel importiert wird.
-
+
You need to specify a file with books of the Bible to use in the import.
Eine Buchinformations-Datei muss zum Import angegeben werden.
-
+
You need to specify a file of Bible verses to import.
Eine Bibeltext-Datei muss zum Import angegeben werden.
-
+
You need to specify a version name for your Bible.
Es wurde kein Suchbegriff eingegeben.
Um nach mehreren Begriffen gleichzeitig zu suchen, müssen die Begriffe durch ein Leerzeichen getrennt sein. Alternative Suchbegriffe müssen per Komma getrennt sein.
-
+
You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such.
Copyright muss angegeben werden. Gemeinfreie Bibeln ohne Copyright sind als solche zu kennzeichnen.
-
+
Bible Exists
Bibelübersetzung bereits vorhanden
-
+
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.
-
+
Your Bible import failed.
Das importieren der Bibel ist fehlgeschlagen.
-
+
CSV File
CSV-Datei
-
+
Bibleserver
Bibleserver.com
-
+
Permissions:
Genehmigung:
-
+
Bible file:
Bibeldatei:
-
+
Books file:
Bücherdatei:
-
+
Verses file:
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.
@@ -1256,17 +1256,17 @@ werden. Daher ist eine Internetverbindung erforderlich.
BiblesPlugin.LanguageDialog
-
+
Select Language
Sprache auswählen
-
+
OpenLP is unable to determine the language of this translation of the Bible. Please select the language from the list below.
OpenLP kann die Sprache dieser Bibelnübersezung nicht ermitteln. Bitte wählen Sie die Sprache dieser Bibel aus der Liste aus.
-
+
Language:
Sprache:
@@ -1274,7 +1274,7 @@ werden. Daher ist eine Internetverbindung erforderlich.
BiblesPlugin.LanguageForm
-
+
You need to choose a language.
Sie müssen eine Sprache wählen.
@@ -1282,92 +1282,92 @@ werden. Daher ist eine Internetverbindung erforderlich.
BiblesPlugin.MediaItem
-
+
Quick
Schnellsuche
-
+
Find:
Suchen:
-
+
Book:
Buch:
-
+
Chapter:
Kapitel:
-
+
Verse:
Vers:
-
+
From:
Von:
-
+
To:
Bis:
-
+
Text Search
Textsuche
-
+
Second:
Vergleichstext:
-
+
Scripture Reference
Bibelstelle
-
+
Toggle to keep or clear the previous results.
Vorheriges Suchergebnis behalten oder verwerfen.
-
+
You cannot combine single and dual Bible verse search results. Do you want to delete your search results and start a new search?
Es ist nicht möglich Einzel- und Zweifach Bibelvers Suchergebnisse zu kombinieren. Sollen die Suchergebnisse gelöscht und eine neue Suche gestartet werden?
-
+
Bible not fully loaded.
Bibel wurde nicht vollständig geladen.
-
+
Information
Hinweis
-
+
The second Bible does not contain all the verses that are in the main Bible. Only verses found in both Bibles will be shown. %d verses have not been included in the results.
Die Vergleichsbibel enthält nicht alle Verse, die in der Hauptbibel vorhanden sind. Nur die Verse, die in beiden Bibeln vorhanden sind, werden angezeigt. %d Verse sind nicht enthalten.
-
+
Search Scripture Reference...
Suche Bibelstelle...
-
+
Search Text...
Suche Text...
-
+
Are you sure you want to delete "%s"?
Sind Sie sicher, dass Sie "%s" löschen möchten?
@@ -1375,7 +1375,7 @@ werden. Daher ist eine Internetverbindung erforderlich.
BiblesPlugin.Opensong
-
+
Importing %s %s...
Importing <book name> <chapter>...
%s %s wird importiert...
@@ -1384,12 +1384,12 @@ werden. Daher ist eine Internetverbindung erforderlich.
BiblesPlugin.OsisImport
-
+
Detecting encoding (this may take a few minutes)...
Kodierung wird ermittelt (dies kann etwas dauern)...
-
+
Importing %s %s...
Importing <book name> <chapter>...
%s %s wird importiert...
@@ -1398,149 +1398,149 @@ werden. Daher ist eine Internetverbindung erforderlich.
BiblesPlugin.UpgradeWizardForm
-
+
Select a Backup Directory
Ein Backup-Verzeichnis wählen
-
+
Bible Upgrade Wizard
Bibelupgradeassistent
-
+
This wizard will help you to upgrade your existing Bibles from a prior version of OpenLP 2. Click the next button below to start the upgrade process.
Dieser Assistent hilft Ihnen Ihre Bibeln auf das aktuelle Format umzustellen. Klicken Sie »Weiter« um den Prozess zu starten.
-
+
Select Backup Directory
Backup-Verzeichnis wählen
-
+
Please select a backup directory for your Bibles
Bitte wählen Sie ein Backup-Verzeichnis für Ihre Bibeln
-
+
Previous releases of OpenLP 2.0 are unable to use upgraded Bibles. This will create a backup of your current Bibles so that you can simply copy the files back to your OpenLP data directory if you need to revert to a previous release of OpenLP. Instructions on how to restore the files can be found in our <a href="http://wiki.openlp.org/faq">Frequently Asked Questions</a>.
Vorherige Versionen von OpenLP 2.0 können nicht mit den aktualisierten Bibeln umgehen. Sie können eine Backup von ihren Bibeln erstellen. Wie Sie ein Backup wiedereinspielen können Sie in den <a href="http://wiki.openlp.org/faq">Frequently Asked Questions</a> lesen.
-
+
Please select a backup location for your Bibles.
Bitte wählen Sie ein Backup-Verzeichnis für Ihre Bibeln.
-
+
Backup Directory:
Backup-Verzeichnis:
-
+
There is no need to backup my Bibles
Es soll kein Backup gemacht werden
-
+
Select Bibles
Bibeln wählen
-
+
Please select the Bibles to upgrade
Bitte wählen Sie die Bibeln welche aktualisiert werden sollen
-
+
Upgrading
Aktualisiere...
-
+
Please wait while your Bibles are upgraded.
Bitte warten Sie bis Ihre Bibeln aktualisiert sind.
-
+
The backup was not successful.
To backup your Bibles you need permission to write to the given directory.
Das Backup war nicht erfolgreich.
Damit das Backup erstellt werden kann brauchen Sie Schreibrechte in dem Verzeichnis.
-
+
Upgrading Bible %s of %s: "%s"
Failed
Aktualisiere Bibel %s von %s: »%s«
Fehlgeschlagen...
-
+
Upgrading Bible %s of %s: "%s"
Upgrading ...
Aktualisiere Bibel %s von %s: »%s«
Aktualisiere...
-
+
Download Error
Download Fehler
-
+
To upgrade your Web Bibles an Internet connection is required.
Um Onlinebibeln zu aktualisieren ist eine Internetverbindung notwendig.
-
+
Upgrading Bible %s of %s: "%s"
Upgrading %s ...
Aktualisiere Bibel %s von %s: »%s«
Aktualisiere »%s«...
-
+
Upgrading Bible %s of %s: "%s"
Complete
Aktualisiere Bibel %s von %s: »%s«
Fertig
-
+
, %s failed
, %s fehlgeschlagen
-
+
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.
Aktualisiere Bibeln: %s erfolgreich%s
Bitte beachten Sie, dass Bibeltexte von Onlinebibeln bei Bedarf heruntergeladen werden. Daher ist eine Internetverbindung erforderlich.
-
+
Upgrading Bible(s): %s successful%s
Aktualisiere Bibeln: %s erfolgreich%s
-
+
Upgrade failed.
Aktualisierung schlug fehl.
-
+
You need to specify a backup directory for your Bibles.
Sie müssen ein Backup-Verzeichnis für Ihre Bibeln angeben.
-
+
Starting upgrade...
Beginne mit der Aktualisierung...
-
+
There are no Bibles that need to be upgraded.
Es sind keine Bibel für eine Aktualisierung vorhanden.
@@ -1548,65 +1548,65 @@ Bitte beachten Sie, dass Bibeltexte von Onlinebibeln bei Bedarf heruntergeladen
CustomPlugin
-
+
<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>Sonderfolien Erweiterung</strong><br />Die Erweiterung Sonderfolien ermöglicht es beliebige Textfolien zu erstellen. Diese können in der gleichen Weise, wie Lieder dargestellt werden, bieten aber mehr Flexibilität.
-
+
Custom Slide
name singular
Sonderfolien
-
+
Custom Slides
name plural
Sonderfolien
-
+
Custom Slides
container title
Sonderfolien
-
+
Load a new custom slide.
Lade eine neue Sonderfolie.
-
+
Import a custom slide.
Importieren eine Sonderfolie.
-
+
Add a new custom slide.
Erstelle eine neue Sonderfolie.
-
+
Edit the selected custom slide.
Bearbeite die ausgewählte Sonderfolie.
-
+
Delete the selected custom slide.
Lösche die ausgewählte Sonderfolie.
-
+
Preview the selected custom slide.
Zeige die ausgewählte Sonderfolie in der Vorschau.
-
+
Send the selected custom slide live.
Zeige die ausgewählte Sonderfolie Live.
-
+
Add the selected custom slide to the service.
Füge die ausgewählte Sonderfolie zum Ablauf hinzu.
@@ -1614,12 +1614,12 @@ Bitte beachten Sie, dass Bibeltexte von Onlinebibeln bei Bedarf heruntergeladen
CustomPlugin.CustomTab
-
+
Custom Display
Sonderfolie Anzeige
-
+
Display footer
Fußzeile anzeigen
@@ -1627,62 +1627,62 @@ Bitte beachten Sie, dass Bibeltexte von Onlinebibeln bei Bedarf heruntergeladen
CustomPlugin.EditCustomForm
-
+
Edit Custom Slides
Sonderfolien bearbeiten
-
+
&Title:
&Titel:
-
+
Add a new slide at bottom.
Füge eine neue Folie am Ende ein.
-
+
Edit the selected slide.
Bearbeite ausgewählte Folie.
-
+
Edit all the slides at once.
Bearbeite alle Folien.
-
+
Split a slide into two by inserting a slide splitter.
Füge einen Folienumbruch ein.
-
+
The&me:
Desig&n:
-
+
&Credits:
A&utoren:
-
+
You need to type in a title.
Bitte geben Sie einen Titel ein.
-
+
You need to add at least one slide
Es muss mindestens eine Folie erstellt werden.
-
+
Ed&it All
&Alle bearbeiten
-
+
Insert Slide
Folie einfügen
@@ -1690,7 +1690,7 @@ Bitte beachten Sie, dass Bibeltexte von Onlinebibeln bei Bedarf heruntergeladen
CustomPlugin.MediaItem
-
+
Are you sure you want to delete the %n selected custom slide(s)?
Soll die markierte Sonderfolie wirklich gelöscht werden?
@@ -1701,60 +1701,60 @@ Bitte beachten Sie, dass Bibeltexte von Onlinebibeln bei Bedarf heruntergeladen
ImagePlugin
-
+
<strong>Image Plugin</strong><br />The image plugin provides displaying of images.<br />One of the distinguishing features of this plugin is the ability to group a number of images together in the service manager, making the displaying of multiple images easier. This plugin can also make use of OpenLP's "timed looping" feature to create a slide show that runs automatically. In addition to this, images from the plugin can be used to override the current theme's background, which renders text-based items like songs with the selected image as a background instead of the background provided by the theme.
<strong>Bilder Erweiterung</strong><br />Die Bilder Erweiterung ermöglicht die Anzeige von Bildern.<br />Eine der besonderen Eigenschaften dieser Erweiterung ist die Möglichkeit, in der Ablaufverwaltung, mehrere Bilder zu einer Gruppe zusammen zu fassen. Dies vereinfacht die die Anzeige mehrerer Bilder. Ebenso kann mit Hilfe der Zeitschleife, sehr einfach eine Diaschau erzeugt werden, welche dann automatisch abläuft. Des weiteren können mit dieser Erweiterung Bilder benutzt werden, um das Hintergrundbild des aktuellen Design zu ersetzen.
-
+
Image
name singular
Bild
-
+
Images
name plural
Bilder
-
+
Images
container title
Bilder
-
+
Load a new image.
Lade ein neues Bild.
-
+
Add a new image.
Füge eine neues Bild hinzu.
-
+
Edit the selected image.
Bearbeite das ausgewählte Bild.
-
+
Delete the selected image.
Lösche das ausgewählte Bild.
-
+
Preview the selected image.
Zeige das ausgewählte Bild in der Vorschau.
-
+
Send the selected image live.
Zeige die ausgewählte Bild Live.
-
+
Add the selected image to the service.
Füge das ausgewählte Bild zum Ablauf hinzu.
@@ -1762,7 +1762,7 @@ Bitte beachten Sie, dass Bibeltexte von Onlinebibeln bei Bedarf heruntergeladen
ImagePlugin.ExceptionDialog
-
+
Select Attachment
Anhang auswählen
@@ -1770,32 +1770,32 @@ Bitte beachten Sie, dass Bibeltexte von Onlinebibeln bei Bedarf heruntergeladen
ImagePlugin.MediaItem
-
+
Select Image(s)
Bilder auswählen
-
+
You must select an image to delete.
Das Bild, das entfernt werden soll, muss ausgewählt sein.
-
+
You must select an image to replace the background with.
Das Bild, das Sie als Hintergrund setzen möchten, muss ausgewählt sein.
-
+
Missing Image(s)
Fehlende Bilder
-
+
The following image(s) no longer exist: %s
Auf die folgenden Bilder kann nicht mehr zugegriffen werden: %s
-
+
The following image(s) no longer exist: %s
Do you want to add the other images anyway?
Auf die folgenden Bilder kann nicht mehr zugegriffen werden: %s
@@ -1815,17 +1815,17 @@ Wollen Sie die anderen Bilder trotzdem hinzufügen?
ImagesPlugin.ImageTab
-
+
Background Color
Hintergrundfarbe
-
+
Default Color:
Standardfarbe:
-
+
Visible background for images with aspect ratio different to screen.
Sichtbarer Hintergrund für Bilder mit einem anderem Seitenverhältnis als der Projektionsbildschirm.
@@ -1833,60 +1833,60 @@ Wollen Sie die anderen Bilder trotzdem hinzufügen?
MediaPlugin
-
+
<strong>Media Plugin</strong><br />The media plugin provides playback of audio and video.
<strong>Erweiterung Medien</strong><br />Die Erweiterung Medien ermöglicht es Audio- und Videodateien abzuspielen.
-
+
Media
name singular
Medien
-
+
Media
name plural
Medien
-
+
Media
container title
Medien
-
+
Load new media.
Lade eine neue Audio-/Videodatei.
-
+
Add new media.
Füge eine neue Audio-/Videodatei hinzu.
-
+
Edit the selected media.
Bearbeite die ausgewählte Audio-/Videodatei.
-
+
Delete the selected media.
Lösche die ausgewählte Audio-/Videodatei.
-
+
Preview the selected media.
Zeige die ausgewählte Audio-/Videodatei in der Vorschau.
-
+
Send the selected media live.
Zeige die ausgewählte Audio-/Videodatei Live.
-
+
Add the selected media to the service.
Füge die ausgewählte Audio-/Videodatei zum Ablauf hinzu.
@@ -1894,57 +1894,57 @@ Wollen Sie die anderen Bilder trotzdem hinzufügen?
MediaPlugin.MediaItem
-
+
Select Media
Audio-/Videodatei auswählen
-
+
You must select a media file to delete.
Die Audio-/Videodatei, die entfernt werden soll, muss ausgewählt sein.
-
+
You must select a media file to replace the background with.
Das Video, das Sie als Hintergrund setzen möchten, muss ausgewählt sein.
-
+
There was a problem replacing your background, the media file "%s" no longer exists.
Da auf die Mediendatei »%s« nicht mehr zugegriffen werden kann, konnte sie nicht als Hintergrund gesetzt werden.
-
+
Missing Media File
Fehlende Audio-/Videodatei
-
+
The file %s no longer exists.
Die Audio-/Videodatei »%s« existiert nicht mehr.
-
+
Videos (%s);;Audio (%s);;%s (*)
Video (%s);;Audio (%s);;%s (*)
-
+
There was no display item to amend.
Es waren keine Änderungen nötig.
-
+
Unsupported File
Nicht unterstütztes Dateiformat
-
+
Automatic
Automatisch
-
+
Use Player:
Nutze Player:
@@ -1952,22 +1952,22 @@ Wollen Sie die anderen Bilder trotzdem hinzufügen?
MediaPlugin.MediaTab
-
+
Available Media Players
Verfügbare Medien Player
-
+
%s (unavailable)
%s (nicht verfügbar)
-
+
Player Order
Player Reihenfolge
-
+
Allow media player to be overridden
Überschreiben des Multimediabackends zulassen
@@ -1975,17 +1975,17 @@ Wollen Sie die anderen Bilder trotzdem hinzufügen?
OpenLP
-
+
Image Files
Bilddateien
-
+
Information
Hinweis
-
+
Bible format has changed.
You have to upgrade your existing Bibles.
Should OpenLP upgrade now?
@@ -1997,37 +1997,37 @@ Möchten Sie dies jetzt tun?
OpenLP.AboutForm
-
+
Credits
Danksagungen
-
+
License
Lizenz
-
+
Contribute
Mitmachen
-
+
build %s
build %s
-
+
This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License.
This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License.
-
+
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See below for more details.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See below for more details.
-
+
Project Lead
%s
@@ -2155,7 +2155,7 @@ Danke
Halleluja!
-
+
OpenLP <version><revision> - Open Source Lyrics Projection
OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if Impress, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector.
@@ -2172,7 +2172,7 @@ Erkunden Sie OpenLP: http://openlp.org/
OpenLP wird von freiwilligen Helfern programmiert und gewartet. Wenn Sie sich mehr freie christliche Programme wünschen, ermutigen wir Sie, sich doch sich zu beteiligen und den Knopf weiter unten nutzen.
-
+
Copyright © 2004-2012 %s
Portions copyright © 2004-2012 %s
Copyright © 2004-2012 %s
@@ -2182,265 +2182,265 @@ Anteiliges Copyright © 2004-2012 %s
OpenLP.AdvancedTab
-
+
UI Settings
Benutzeroberfläche
-
+
Number of recent files to display:
Anzahl zuletzt geöffneter Abläufe:
-
+
Remember active media manager tab on startup
Erinnere aktiven Reiter der Medienverwaltung
-
+
Double-click to send items straight to live
Objekte bei Doppelklick live anzeigen
-
+
Expand new service items on creation
Neue Ablaufelemente bei ausklappen
-
+
Enable application exit confirmation
Aktiviere Bestätigung beim Schließen
-
+
Mouse Cursor
Mauszeiger
-
+
Hide mouse cursor when over display window
Verstecke den Mauszeiger auf dem Bildschrim
-
+
Default Image
Standardbild
-
+
Background color:
Hintergrundfarbe:
-
+
Image file:
Bild-Datei:
-
+
Open File
Datei öffnen
-
+
Advanced
Erweitert
-
+
Preview items when clicked in Media Manager
Elemente in der Vorschau zeigen, wenn sie in
der Medienverwaltung angklickt werden
-
+
Click to select a color.
Klicken Sie, um eine Farbe aus zu wählen.
-
+
Browse for an image file to display.
Wählen Sie die Bild-Datei aus, die angezeigt werden soll.
-
+
Revert to the default OpenLP logo.
Standard-Logo wiederherstellen.
-
+
Service %Y-%m-%d %H-%M
This may not contain any of the following characters: /\?*|<>[]":+
See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for more information.
Ablauf %Y-%m-%d %H-%M
-
+
Default Service Name
Voreingestellter Ablaufname
-
+
Enable default service name
Ablaufnamen vorschlagen
-
+
Date and Time:
Zeitpunkt:
-
+
Monday
Montag
-
+
Tuesday
Dienstag
-
+
Wednesday
Mittwoch
-
+
Thurdsday
Donnerstag
-
+
Friday
Freitag
-
+
Saturday
Samstag
-
+
Sunday
Sonntag
-
+
Now
Jetzt
-
+
Time when usual service starts.
Übliche Uhrzeit.
-
+
Name:
Name:
-
+
Consult the OpenLP manual for usage.
Verwendungsdetails sind im Handbuch zu finden.
-
+
Revert to the default service name "%s".
Auf den vorgegebenen Ablaufnahmen »%s« zurücksetzen.
-
+
Example:
Beispiel:
-
+
X11
X11
-
+
Bypass X11 Window Manager
Fenstermanager X11 umgehen
-
+
Syntax error.
Syntaxfehler.
-
+
Data Location
Pfad für Datenablage:
-
+
Current path:
Aktueller Pfad:
-
+
Custom path:
Benutzerdefinierter Pfad:
-
+
Browse for new data file location.
Pfad für Datenablage wählen.
-
+
Set the data location to the default.
Pfad für Datenablage zurücksetzen.
-
+
Cancel
Abbruch
-
+
Cancel OpenLP data directory location change.
Aktuelle Änderungen verwerfen.
-
+
Copy data to new location.
Existierende Daten kopieren.
-
+
Copy the OpenLP data files to the new location.
Existierende Daten kopieren.
-
+
<strong>WARNING:</strong> New data directory location contains OpenLP data files. These files WILL be replaced during a copy.
<strong>Warnung:</strong>Der neue Datenpfad enthält bereits Daten. Diese Daten werden während des Kopiervorganges ersetzt.
-
+
Data Directory Error
Fehler im Daten Ordner
-
+
Select Data Directory Location
Bitte wählen Sie Pfad des Daten Ordners
-
+
Confirm Data Directory Change
Bitte bestätigen Sie die Änderung des Daten Ordners
-
+
Reset Data Directory
Daten Ordner zurücksetzen
-
+
Are you sure you want to change the location of the OpenLP data directory to the default location?
This location will be used after OpenLP is closed.
@@ -2449,7 +2449,7 @@ This location will be used after OpenLP is closed.
Dieser Ort wird beim nächsten Start benutzt.
-
+
Overwrite Existing Data
Existierende Daten überschreiben
@@ -2457,40 +2457,40 @@ Dieser Ort wird beim nächsten Start benutzt.
OpenLP.ExceptionDialog
-
+
Error Occurred
Fehler aufgetreten
-
+
Oops! OpenLP hit a problem, and couldn't recover. The text in the box below contains information that might be helpful to the OpenLP developers, so please e-mail it to bugs@openlp.org, along with a detailed description of what you were doing when the problem occurred.
Ups! OpenLP hat ein Problem und kann es nicht beheben. Der Text im unteren Fenster enthält Informationen, welche möglicherweise hilfreich für die OpenLP Entwickler sind.
Bitte senden Sie eine E-Mail an: bugs@openlp.org mit einer ausführlichen Beschreibung was Sie taten als das Problem auftrat.
-
+
Send E-Mail
E-Mail senden
-
+
Save to File
In Datei speichern
-
+
Please enter a description of what you were doing to cause this error
(Minimum 20 characters)
Bitte geben Sie ein Beschreibung ein, was Sie gemacht haben, als
dieser Fehler auftrat. Bitte verwenden Sie (wenn möglich) Englisch.
-
+
Attach File
Datei einhängen
-
+
Description characters to enter : %s
Mindestens noch %s Zeichen eingeben
@@ -2498,24 +2498,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
@@ -2546,7 +2546,7 @@ Version: %s
-
+
*OpenLP Bug Report*
Version: %s
@@ -2581,17 +2581,17 @@ Version: %s
OpenLP.FileRenameForm
-
+
File Rename
Datei umbenennen
-
+
New File Name:
Neuer Dateiname:
-
+
File Copy
Datei kopieren
@@ -2599,17 +2599,17 @@ Version: %s
OpenLP.FirstTimeLanguageForm
-
+
Select Translation
Sprache wählen
-
+
Choose the translation you'd like to use in OpenLP.
Wählen Sie die Sprache, in der OpenLP sein soll.
-
+
Translation:
Sprache:
@@ -2617,192 +2617,192 @@ Version: %s
OpenLP.FirstTimeWizard
-
+
Songs
Lieder
-
+
First Time Wizard
Einrichtungsassistent
-
+
Welcome to the First Time Wizard
Willkommen zum Einrichtungsassistent
-
+
Activate required Plugins
Erweiterungen aktivieren
-
+
Select the Plugins you wish to use.
Wählen Sie die Erweiterungen aus, die Sie nutzen wollen.
-
+
Bible
Bibel
-
+
Images
Bilder
-
+
Presentations
Präsentationen
-
+
Media (Audio and Video)
Medien (Audio und Video)
-
+
Allow remote access
Erlaube Fernsteuerung
-
+
Monitor Song Usage
Lied Benutzung protokollieren
-
+
Allow Alerts
Erlaube Hinweise
-
+
Default Settings
Standardeinstellungen
-
+
Downloading %s...
%s wird heruntergeladen...
-
+
Download complete. Click the finish button to start OpenLP.
Download vollständig. Klicken Sie »Abschließen« um OpenLP zu starten.
-
+
Enabling selected plugins...
Aktiviere ausgewählte Erweiterungen...
-
+
No Internet Connection
Keine Internetverbindung
-
+
Unable to detect an Internet connection.
Es könnte keine Internetverbindung aufgebaut werden.
-
+
Sample Songs
Beispiellieder
-
+
Select and download public domain songs.
Wählen und laden Sie gemeinfreie (bzw. kostenlose) Lieder herunter.
-
+
Sample Bibles
Beispielbibeln
-
+
Select and download free Bibles.
Wählen und laden Sie freie Bibeln runter.
-
+
Sample Themes
Beispieldesigns
-
+
Select and download sample themes.
Wählen und laden Sie Beispieldesigns runter.
-
+
Set up default settings to be used by OpenLP.
Grundeinstellungen konfigurieren.
-
+
Default output display:
Projektionsbildschirm:
-
+
Select default theme:
Standarddesign:
-
+
Starting configuration process...
Starte Konfiguration...
-
+
This wizard will help you to configure OpenLP for initial use. Click the next button below to start.
Dieser Assistent wird Ihnen helfen OpenLP für die erste Benutzung zu konfigurieren. Klicken sie »Weiter« um den Assistenten zu starten.
-
+
Setting Up And Downloading
Konfiguriere und Herunterladen
-
+
Please wait while OpenLP is set up and your data is downloaded.
Bitte warten Sie, während OpenLP eingerichtet wird und die Daten heruntergeladen werden.
-
+
Setting Up
Konfiguriere
-
+
Click the finish button to start OpenLP.
Klicken Sie »Abschließen« um OpenLP zu starten.
-
+
Download complete. Click the finish button to return to OpenLP.
Download vollständig. Klicken Sie »Abschließen« um zurück zu OpenLP zu gelangen.
-
+
Click the finish button to return to OpenLP.
Klicken Sie »Abschließen« um zu OpenLP zurück zu gelangen.
-
+
Custom Slides
Sonderfolien
-
+
Finish
Ende
-
+
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. Click 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.
@@ -2811,7 +2811,7 @@ To re-run the First Time Wizard and import this sample data at a later time, che
Um diesen Einrichtungsassistenten erneut zu starten und die Beispiel Daten zu importieren, prüfen Sie Ihre Internetverbindung und starten den Assistenten im Menü "Extras/Einrichtungsassistenten starten".
-
+
To cancel the First Time Wizard completely (and not start OpenLP), click the Cancel button now.
@@ -2823,52 +2823,52 @@ Um den Einrichtungsassistenten zu unterbrechen (und OpenLP nicht zu starten), bi
OpenLP.FormattingTagDialog
-
+
Configure Formatting Tags
Konfiguriere Formatforlagen
-
+
Edit Selection
Auswahl bearbeiten
-
+
Save
Speichern
-
+
Description
Beschreibung
-
+
Tag
Tag
-
+
Start tag
Anfangs Tag
-
+
End tag
End Tag
-
+
Tag Id
Tag Nr.
-
+
Start HTML
Anfangs HTML
-
+
End HTML
End HTML
@@ -2876,32 +2876,32 @@ Um den Einrichtungsassistenten zu unterbrechen (und OpenLP nicht zu starten), bi
OpenLP.FormattingTagForm
-
+
Update Error
Aktualisierungsfehler
-
+
Tag "n" already defined.
Tag »n« bereits definiert.
-
+
New Tag
Neuer Tag
-
+
<HTML here>
<HTML hier>
-
+
</and here>
</und hier>
-
+
Tag %s already defined.
Tag »%s« bereits definiert.
@@ -2909,82 +2909,82 @@ Um den Einrichtungsassistenten zu unterbrechen (und OpenLP nicht zu starten), bi
OpenLP.FormattingTags
-
+
Red
rot
-
+
Black
schwarz
-
+
Blue
blau
-
+
Yellow
gelb
-
+
Green
grün
-
+
Pink
rosa
-
+
Orange
orange
-
+
Purple
lila
-
+
White
weiß
-
+
Superscript
hochgestellt
-
+
Subscript
tiefgestellt
-
+
Paragraph
Textabsatz
-
+
Bold
fett
-
+
Italics
kursiv
-
+
Underline
unterstrichen
-
+
Break
Textumbruch
@@ -2992,157 +2992,157 @@ Um den Einrichtungsassistenten zu unterbrechen (und OpenLP nicht zu starten), bi
OpenLP.GeneralTab
-
+
General
Allgemein
-
+
Monitors
Bildschirme
-
+
Select monitor for output display:
Projektionsbildschirm:
-
+
Display if a single screen
Anzeige bei nur einem Bildschirm
-
+
Application Startup
Programmstart
-
+
Show blank screen warning
Warnung wenn Projektion deaktiviert wurde
-
+
Automatically open the last service
Zuletzt benutzten Ablauf beim Start laden
-
+
Show the splash screen
Zeige den Startbildschirm
-
+
Application Settings
Anwendungseinstellungen
-
+
Prompt to save before starting a new service
Geänderte Abläufe nicht ungefragt ersetzen
-
+
Automatically preview next item in service
Vorschau des nächsten Ablaufelements
-
+
sec
sek
-
+
CCLI Details
CCLI-Details
-
+
SongSelect username:
SongSelect-Benutzername:
-
+
SongSelect password:
SongSelect-Passwort:
-
+
X
X
-
+
Y
Y
-
+
Height
Höhe
-
+
Width
Breite
-
+
Check for updates to OpenLP
Prüfe nach Aktualisierungen
-
+
Unblank display when adding new live item
Neues Element hellt Anzeige automatisch auf
-
+
Timed slide interval:
Automatischer Folienwechsel:
-
+
Background Audio
Hintergrundmusik
-
+
Start background audio paused
Starte Hintergrundmusik pausiert
-
+
Service Item Slide Limits
Navigation in Folienkontrollfeld
-
+
Override display position:
Anzeigeposition überschreiben:
-
+
Repeat track list
Abspielliste wiederholen
-
+
Behavior of next/previous on the last/first slide:
Verhalten von "Vorherige/Nächste Folie" bei letzter Folie:
-
+
&Remain on Slide
&Halte
-
+
&Wrap around
&Umlauf
-
+
&Move to next/previous service item
&Nächstes/vorheriges Ablaufelement
@@ -3150,12 +3150,12 @@ Um den Einrichtungsassistenten zu unterbrechen (und OpenLP nicht zu starten), bi
OpenLP.LanguageManager
-
+
Language
Sprache
-
+
Please restart OpenLP to use your new language setting.
Bitte starten Sie OpenLP neu, um die neue Spracheinstellung zu verwenden.
@@ -3163,7 +3163,7 @@ Um den Einrichtungsassistenten zu unterbrechen (und OpenLP nicht zu starten), bi
OpenLP.MainDisplay
-
+
OpenLP Display
OpenLP-Anzeige
@@ -3171,287 +3171,287 @@ Um den Einrichtungsassistenten zu unterbrechen (und OpenLP nicht zu starten), bi
OpenLP.MainWindow
-
+
&File
&Datei
-
+
&Import
&Importieren
-
+
&Export
&Exportieren
-
+
&View
&Ansicht
-
+
M&ode
An&sichtsmodus
-
+
&Tools
E&xtras
-
+
&Settings
&Einstellungen
-
+
&Language
&Sprache
-
+
&Help
&Hilfe
-
+
Media Manager
Medienverwaltung
-
+
Service Manager
Ablaufverwaltung
-
+
Theme Manager
Designverwaltung
-
+
&New
&Neu
-
+
&Open
Ö&ffnen
-
+
Open an existing service.
Einen vorhandenen Ablauf öffnen.
-
+
&Save
&Speichern
-
+
Save the current service to disk.
Den aktuellen Ablauf speichern.
-
+
Save &As...
Speichern &unter...
-
+
Save Service As
Den aktuellen Ablauf unter einem neuen Namen speichern
-
+
Save the current service under a new name.
Den aktuellen Ablauf unter einem neuen Namen speichern.
-
+
E&xit
&Beenden
-
+
Quit OpenLP
OpenLP beenden
-
+
&Theme
&Design
-
+
&Configure OpenLP...
&Einstellungen...
-
+
&Media Manager
&Medienverwaltung
-
+
Toggle Media Manager
Die Medienverwaltung ein- bzw. ausblenden
-
+
Toggle the visibility of the media manager.
Die Medienverwaltung ein- bzw. ausblenden.
-
+
&Theme Manager
&Designverwaltung
-
+
Toggle Theme Manager
Die Designverwaltung ein- bzw. ausblenden
-
+
Toggle the visibility of the theme manager.
Die Designverwaltung ein- bzw. ausblenden.
-
+
&Service Manager
&Ablaufverwaltung
-
+
Toggle Service Manager
Die Ablaufverwaltung ein- bzw. ausblenden
-
+
Toggle the visibility of the service manager.
Die Ablaufverwaltung ein- bzw. ausblenden.
-
+
&Preview Panel
&Vorschau-Ansicht
-
+
Toggle Preview Panel
Die Vorschau ein- bzw. ausblenden
-
+
Toggle the visibility of the preview panel.
Die Vorschau ein- bzw. ausschalten.
-
+
&Live Panel
&Live-Ansicht
-
+
Toggle Live Panel
Die Live Ansicht ein- bzw. ausschalten
-
+
Toggle the visibility of the live panel.
Die Live Ansicht ein- bzw. ausschalten.
-
+
&Plugin List
Er&weiterungen...
-
+
List the Plugins
Erweiterungen verwalten
-
+
&User Guide
Benutzer&handbuch
-
+
&About
&Info über OpenLP
-
+
More information about OpenLP
Mehr Informationen über OpenLP
-
+
&Online Help
&Online Hilfe
-
+
&Web Site
&Webseite
-
+
Use the system language, if available.
Die Systemsprache, sofern diese verfügbar ist, verwenden.
-
+
Set the interface language to %s
Die Sprache von OpenLP auf %s stellen
-
+
Add &Tool...
Hilfsprogramm hin&zufügen...
-
+
Add an application to the list of tools.
Eine Anwendung zur Liste der Hilfsprogramme hinzufügen.
-
+
&Default
&Standard
-
+
Set the view mode back to the default.
Den Ansichtsmodus auf Standardeinstellung setzen.
-
+
&Setup
&Einrichten
-
+
Set the view mode to Setup.
Die Ansicht für die Ablauferstellung optimieren.
-
+
&Live
&Live
-
+
Set the view mode to Live.
Die Ansicht für den Live-Betrieb optimieren.
-
+
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/.
@@ -3460,108 +3460,108 @@ You can download the latest version from http://openlp.org/.
Sie können die letzte Version auf http://openlp.org abrufen.
-
+
OpenLP Version Updated
Neue OpenLP Version verfügbar
-
+
OpenLP Main Display Blanked
Hauptbildschirm abgedunkelt
-
+
The Main Display has been blanked out
Die Projektion ist momentan nicht aktiv.
-
+
Default Theme: %s
Standarddesign: %s
-
+
English
Please add the name of your language here
Deutsch
-
+
Configure &Shortcuts...
Konfiguriere &Tastenkürzel...
-
+
Close OpenLP
OpenLP beenden
-
+
Are you sure you want to close OpenLP?
Soll OpenLP wirklich beendet werden?
-
+
Open &Data Folder...
Öffne &Datenverzeichnis...
-
+
Open the folder where songs, bibles and other data resides.
Öffne das Verzeichnis, wo Lieder, Bibeln und andere Daten gespeichert sind.
-
+
&Autodetect
&Automatisch
-
+
Update Theme Images
Aktualisiere Design Bilder
-
+
Update the preview images for all themes.
Aktualisiert die Vorschaubilder aller Designs.
-
+
Print the current service.
Drucke den aktuellen Ablauf.
-
+
&Recent Files
&Zuletzte geöffnete Abläufe
-
+
L&ock Panels
&Sperre Leisten
-
+
Prevent the panels being moved.
Unterbindet das Bewegen der Leisten.
-
+
Re-run First Time Wizard
Einrichtungsassistent starten
-
+
Re-run the First Time Wizard, importing songs, Bibles and themes.
Einrichtungsassistent erneut starten um Beispiel-Lieder, Bibeln und Designs zu importieren.
-
+
Re-run First Time Wizard?
Einrichtungsassistent starten?
-
+
Are you sure you want to re-run the First Time Wizard?
Re-running this wizard may make changes to your current OpenLP configuration and possibly add songs to your existing songs list and change your default theme.
@@ -3570,43 +3570,43 @@ Re-running this wizard may make changes to your current OpenLP configuration and
Der Einrichtungsassistent kann einige Einstellungen verändern und ggf. neue Lieder, Bibeln und Designs zu den bereits vorhandenen hinzufügen.
-
+
Clear List
Clear List of recent files
Leeren
-
+
Clear the list of recent files.
Leert die Liste der zuletzte geöffnete Abläufe.
-
+
Configure &Formatting Tags...
Konfiguriere &Formatvorlagen...
-
+
Export OpenLP settings to a specified *.config file
Exportiere OpenLPs Einstellungen in ein *.config-Datei.
-
+
Settings
Einstellungen
-
+
Import OpenLP settings from a specified *.config file previously exported on this or another machine
Importiere OpenLPs Einstellungen aus ein *.config-Datei, die vorher an diesem oder einem anderen Computer exportiert wurde.
-
+
Import settings?
Importiere Einstellungen?
-
+
Are you sure you want to import settings?
Importing settings will make permanent changes to your current OpenLP configuration.
@@ -3619,37 +3619,37 @@ Der Import wird dauerhafte Veränderungen an Ihrer OpenLP Konfiguration machen.
Falsche Einstellungen können fehlerhaftes Verhalten von OpenLP verursachen.
-
+
Open File
Öffne Datei
-
+
OpenLP Export Settings Files (*.conf)
OpenLP Einstellungsdatei (*.conf)
-
+
Import settings
Importiere Einstellungen
-
+
OpenLP will now close. Imported settings will be applied the next time you start OpenLP.
OpenLP wird nun geschlossen. Importierte Einstellungen werden bei dem nächsten Start übernommen.
-
+
Export Settings File
Exportiere Einstellungsdatei
-
+
OpenLP Export Settings File (*.conf)
OpenLP Einstellungsdatei (*.conf)
-
+
New Data Directory Error
Fehler im neuen Daten Ordner
@@ -3657,12 +3657,12 @@ Falsche Einstellungen können fehlerhaftes Verhalten von OpenLP verursachen.
OpenLP.Manager
-
+
Database Error
Datenbankfehler
-
+
The database being loaded was created in a more recent version of OpenLP. The database is version %d, while OpenLP expects version %d. The database will not be loaded.
Database: %s
@@ -3671,7 +3671,7 @@ Database: %s
Datenbank: %s
-
+
OpenLP cannot load your database.
Database: %s
@@ -3683,52 +3683,52 @@ Datenbank: %s
OpenLP.MediaManagerItem
-
+
No Items Selected
Keine Elemente ausgewählt.
-
+
&Add to selected Service Item
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.
-
+
You must select one or more items to add.
Sie müssen ein oder mehrer Element auswählen.
-
+
No Search Results
Kein Suchergebnis
@@ -3745,12 +3745,12 @@ Suffix not supported
Dateiendung nicht unterstützt.
-
+
&Clone
&Klonen
-
+
Duplicate files were found on import and were ignored.
Duplikate wurden beim Importieren gefunden und wurden ignoriert.
@@ -3758,12 +3758,12 @@ Dateiendung nicht unterstützt.
OpenLP.OpenLyricsImportError
-
+
<lyrics> tag is missing.
Ein <lyrics>-Tag fehlt.
-
+
<verse> tag is missing.
Ein <verse>-Tag fehlt.
@@ -3771,42 +3771,42 @@ Dateiendung nicht unterstützt.
OpenLP.PluginForm
-
+
Plugin List
Erweiterungen
-
+
Plugin Details
Erweiterungsdetails
-
+
Status:
Status:
-
+
Active
aktiv
-
+
Inactive
inaktiv
-
+
%s (Inactive)
%s (inaktiv)
-
+
%s (Active)
%s (aktiv)
-
+
%s (Disabled)
%s (deaktiviert)
@@ -3814,12 +3814,12 @@ Dateiendung nicht unterstützt.
OpenLP.PrintServiceDialog
-
+
Fit Page
Auf Seite einpassen
-
+
Fit Width
An Breite anpassen
@@ -3827,77 +3827,77 @@ Dateiendung nicht unterstützt.
OpenLP.PrintServiceForm
-
+
Options
Optionen
-
+
Copy
Kopieren
-
+
Copy as HTML
Als HTML kopieren
-
+
Zoom In
Heranzoomen
-
+
Zoom Out
Wegzoomen
-
+
Zoom Original
Original Zoom
-
+
Other Options
Andere Optionen
-
+
Include slide text if available
Drucke Folientext wenn verfügbar
-
+
Include service item notes
Drucke Element-Notizen
-
+
Include play length of media items
Drucke Spiellänge von Medien Elementen
-
+
Add page break before each text item
Einen Seitenumbruch nach jedem Text-Element einfügen
-
+
Service Sheet
Ablauf
-
+
Print
Drucken
-
+
Title:
Titel:
-
+
Custom Footer Text:
Ablaufnotizen:
@@ -3905,12 +3905,12 @@ Dateiendung nicht unterstützt.
OpenLP.ScreenList
-
+
Screen
Bildschirm
-
+
primary
Primär
@@ -3918,12 +3918,12 @@ Dateiendung nicht unterstützt.
OpenLP.ServiceItem
-
+
<strong>Start</strong>: %s
<strong>Anfang</strong>: %s
-
+
<strong>Length</strong>: %s
<strong>Spiellänge</strong>: %s
@@ -3931,7 +3931,7 @@ Dateiendung nicht unterstützt.
OpenLP.ServiceItemEditForm
-
+
Reorder Service Item
Reihenfolge der Bilder ändern
@@ -3939,279 +3939,279 @@ 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
-
+
OpenLP Service Files (*.osz)
OpenLP Ablaufdateien (*.osz)
-
+
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
-
+
Moves the selection down the window.
Ausgewähltes nach unten schieben
-
+
Move up
Nach oben
-
+
Moves the selection up the window.
Ausgewähltes nach oben schieben
-
+
Go Live
Live
-
+
Send the selected item to Live.
Zeige das ausgewählte Element Live.
-
+
&Start Time
&Startzeit
-
+
Show &Preview
&Vorschau
-
+
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?
-
+
Custom Service Notes:
Notizen zum Ablauf:
-
+
Notes:
Notizen:
-
+
Playing time:
Spiellänge:
-
+
Untitled Service
Unbenannt
-
+
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
-
+
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.
-
+
Service File Missing
Ablaufdatei fehlt
-
+
Slide theme
Element-Design
-
+
Notes
Notizen
-
+
Edit
Bearbeiten
-
+
Service copy only
Ablaufkopie (nicht in der Datenbank)
-
+
Error Saving File
Fehler beim Speichern der Datei
-
+
There was an error saving your file.
Beim Speichern der Datei ist ein Fehler aufgetreten.
@@ -4219,7 +4219,7 @@ Der Inhalt ist nicht in UTF-8 kodiert.
OpenLP.ServiceNoteForm
-
+
Service Item Notes
Elementnotiz
@@ -4227,7 +4227,7 @@ Der Inhalt ist nicht in UTF-8 kodiert.
OpenLP.SettingsForm
-
+
Configure OpenLP
Konfiguriere OpenLP
@@ -4235,67 +4235,67 @@ Der Inhalt ist nicht in UTF-8 kodiert.
OpenLP.ShortcutListDialog
-
+
Action
Aktion
-
+
Shortcut
Tastenkürzel
-
+
Duplicate Shortcut
Belegtes Tastenkürzel
-
+
The shortcut "%s" is already assigned to another action, please use a different shortcut.
Das Tastenkürzel »%s« ist bereits einer anderen Aktion zugeordnet. Bitte wählen Sie ein anderes Tastenkürzel.
-
+
Alternate
Alternative
-
+
Select an action and click one of the buttons below to start capturing a new primary or alternate shortcut, respectively.
Wählen Sie ein Aktion aus und klicken Sie eine der unteren Buttons um einen primären bzw. alternativen Tastenkürzel auf zuzeichnen.
-
+
Default
Standard
-
+
Custom
Sonderfolien
-
+
Capture shortcut.
Tastenkürzel aufzeichen.
-
+
Restore the default shortcut of this action.
Standard Tastenkürzel dieser Aktion wiederherstellen.
-
+
Restore Default Shortcuts
Standard Tastenkürzel wiederherstellen
-
+
Do you want to restore all shortcuts to their defaults?
Möchten Sie alle standard Tastenkürzel wiederherstellen?
-
+
Configure Shortcuts
Konfiguriere Tastaturkürzel...
@@ -4303,172 +4303,172 @@ Der Inhalt ist nicht in UTF-8 kodiert.
OpenLP.SlideController
-
+
Hide
Verbergen
-
+
Go To
Gehe zu
-
+
Blank Screen
Anzeige abdunkeln
-
+
Blank to Theme
Design leeren
-
+
Show Desktop
Desktop anzeigen
-
+
Previous Service
Vorheriges Element
-
+
Next Service
Nächstes Element
-
+
Escape Item
Folie schließen
-
+
Move to previous.
Vorherige Folie anzeigen.
-
+
Move to next.
Vorherige Folie anzeigen.
-
+
Play Slides
Schleife
-
+
Delay between slides in seconds.
Pause zwischen den Folien in Sekunden.
-
+
Move to live.
Zur Live Ansicht verschieben.
-
+
Add to Service.
Füge zum Ablauf hinzu.
-
+
Edit and reload song preview.
Bearbeiten und Vorschau aktualisieren.
-
+
Start playing media.
Beginne Wiedergabe.
-
+
Pause audio.
Pausiere Musik.
-
+
Pause playing media.
Pausiere Wiedergabe.
-
+
Stop playing media.
Beende Wiedergabe.
-
+
Video position.
Videoposition
-
+
Audio Volume.
Lautstärke
-
+
Go to "Verse"
Gehe zu »Strophe«
-
+
Go to "Chorus"
Gehe zu »Refrain«
-
+
Go to "Bridge"
Gehe zu »Bridge«
-
+
Go to "Pre-Chorus"
Gehe zu »Überleitung«
-
+
Go to "Intro"
Gehe zu »Intro«
-
+
Go to "Ending"
Gehe zu »Ende«
-
+
Go to "Other"
Gehe zu »Anderes«
-
+
Previous Slide
Vorherige Folie
-
+
Next Slide
Nächste Folie
-
+
Pause Audio
Tonausgabe anhalten
-
+
Background Audio
Hintergrundton
-
+
Go to next audio track.
Zum nächsten Stück gehen.
-
+
Tracks
Stücke
@@ -4476,17 +4476,17 @@ Der Inhalt ist nicht in UTF-8 kodiert.
OpenLP.SpellTextEdit
-
+
Spelling Suggestions
Rechtschreibvorschläge
-
+
Formatting Tags
Formatvorlagen
-
+
Language:
Sprache:
@@ -4494,67 +4494,67 @@ Der Inhalt ist nicht in UTF-8 kodiert.
OpenLP.StartTimeForm
-
+
Hours:
Stunden:
-
+
Minutes:
Minuten:
-
+
Seconds:
Sekunden:
-
+
Item Start and Finish Time
Element Start- und Endzeit
-
+
Start
Start
-
+
Finish
Ende
-
+
Length
Länge
-
+
Time Validation Error
Ungültige Zeitangaben
-
+
Finish time is set after the end of the media item
Die Endzeit ist nach dem Ende der Spielzeit gesetzt
-
+
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.
@@ -4562,32 +4562,32 @@ Der Inhalt ist nicht in UTF-8 kodiert.
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)
@@ -4595,72 +4595,72 @@ Der Inhalt ist nicht in UTF-8 kodiert.
OpenLP.ThemeManager
-
+
Create a new theme.
Erstelle ein neues Design.
-
+
Edit Theme
Bearbeite Design
-
+
Edit a theme.
Ein bestehendes Design bearbeiten.
-
+
Delete Theme
Lösche Design
-
+
Delete a theme.
Ein Design löschen.
-
+
Import Theme
Importiere Design
-
+
Import a theme.
Ein Design aus einer Datei importieren.
-
+
Export Theme
Exportiere Design
-
+
Export a theme.
Ein Design in eine Datei exportieren.
-
+
&Edit Theme
Design &bearbeiten
-
+
&Delete Theme
Design &löschen
-
+
Set As &Global Default
Als &globalen Standard setzen
-
+
%s (default)
%s (Standard)
-
+
You must select a theme to edit.
Zum Bearbeiten muss ein Design ausgewählt sein.
@@ -4675,87 +4675,87 @@ Der Inhalt ist nicht in UTF-8 kodiert.
Das Design »%s« wird in der »%s« Erweiterung benutzt.
-
+
You have not selected a theme.
Es ist kein Design ausgewählt.
-
+
Save Theme - (%s)
Speicherort für »%s«
-
+
Theme Exported
Design exportiert
-
+
Your theme has been successfully exported.
Das Design wurde erfolgreich exportiert.
-
+
Theme Export Failed
Designexport fehlgeschlagen
-
+
Your theme could not be exported due to an error.
Dieses Design konnte aufgrund eines Fehlers nicht exportiert werden.
-
+
Select Theme Import File
OpenLP Designdatei importieren
-
+
File is not a valid theme.
Diese Datei ist keine gültige OpenLP Designdatei.
-
+
&Copy Theme
Design &kopieren
-
+
&Rename Theme
Design &umbenennen
-
+
&Export Theme
Design &exportieren
-
+
You must select a theme to rename.
Es ist kein Design zur Umbenennung ausgewählt.
-
+
Rename Confirmation
Umbenennung bestätigen
-
+
Rename %s theme?
Soll das Design »%s« wirklich umbenennt werden?
-
+
You must select a theme to delete.
Es ist kein Design zum Löschen ausgewählt.
-
+
Delete Confirmation
Löschbestätigung
-
+
Delete %s theme?
Soll das Design »%s« wirklich gelöscht werden?
@@ -4770,18 +4770,18 @@ Der Inhalt ist nicht in UTF-8 kodiert.
Ein Design mit diesem Namen existiert bereits.
-
+
OpenLP Themes (*.theme *.otz)
OpenLP Designs (*.theme *.otz)
-
+
Copy of %s
Copy of <theme name>
Kopie von %s
-
+
Theme Already Exists
Design bereits vorhanden
@@ -4789,320 +4789,320 @@ Der Inhalt 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:
-
+
Edit Theme - %s
Bearbeite Design - %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.
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
-
+
Starting color:
Startfarbe:
-
+
Ending color:
Endfarbe
-
+
Background color:
Hintergrundfarbe:
-
+
Justify
bündig
-
+
Layout Preview
Layout-Vorschau
-
+
Transparent
transparent
+
+
+ Preview and Save
+
+
+
+
+ Preview the theme and save it.
+
+
OpenLP.ThemesTab
-
+
Global Theme
Globales Standarddesign
-
+
Theme Level
Designstufe
-
+
S&ong Level
&Liedstufe
-
+
Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme.
Das im jeweiligen Lied eingestellte Design wird verwendet. Wenn für ein Lied kein Design festgelegt ist, wird das Ablaufdesign verwendet. Wenn dort auch kein Design festgelegt wurde, wird das Standarddesign benutzt.
-
+
&Service Level
&Ablaufstufe
-
+
Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme.
Das dem Ablauf zugewiesene Design wird genutzt. Das im Lied eingestellte Design wird ignoriert. Wenn dem Ablauf kein Design zugeordnet ist, dann wird das Standarddesign verwendet.
-
+
&Global Level
&Globale Stufe
-
+
Use the global theme, overriding any themes associated with either the service or the songs.
Das Standarddesign immer verwenden, unabhängig vom Lieddesign oder Ablaufdesign.
-
+
Themes
Designs
@@ -5110,591 +5110,591 @@ Der Inhalt ist nicht in UTF-8 kodiert.
OpenLP.Ui
-
+
Error
Fehler
-
+
About
Über
-
+
&Add
&Hinzufügen
-
+
Advanced
Erweitert
-
+
All Files
Alle Dateien
-
+
Bottom
unten
-
+
Browse...
Durchsuchen...
-
+
Cancel
Abbrechen
-
+
CCLI number:
CCLI-Nummer:
-
+
Create a new service.
Erstelle neuen Ablauf.
-
+
&Delete
&Löschen
-
+
&Edit
&Bearbeiten
-
+
Empty Field
Leeres Feld
-
+
Export
Export
-
+
pt
Abbreviated font pointsize unit
pt
-
+
Image
Bild
-
+
Import
Import
-
+
Live
Live
-
+
Live Background Error
Live-Hintergrund Fehler
-
+
Load
Öffnen
-
+
Middle
mittig
-
+
New
Neu
-
+
New Service
Neuer Ablauf
-
+
New Theme
Neues Design
-
+
No File Selected
Singular
Keine Datei ausgewählt
-
+
No Files Selected
Plural
Keine Dateien ausgewählt
-
+
No Item Selected
Singular
Kein Element ausgewählt
-
+
No Items Selected
Plural
Keine Elemente ausgewählt
-
+
openlp.org 1.x
openlp.org 1.x
-
+
OpenLP 2.0
OpenLP 2.0
-
+
Preview
Vorschau
-
+
Replace Background
Live-Hintergrund ersetzen
-
+
Reset Background
Hintergrund zurücksetzen
-
+
s
The abbreviated unit for seconds
s
-
+
Save && Preview
Speichern && Vorschau
-
+
Search
Suchen
-
+
You must select an item to delete.
Sie müssen ein Element zum Löschen auswählen.
-
+
You must select an item to edit.
Sie müssen ein Element zum Bearbeiten auswählen.
-
+
Save Service
Speicher Ablauf
-
+
Service
Ablauf
-
+
Start %s
Start %s
-
+
Theme
Singular
Design
-
+
Themes
Plural
Designs
-
+
Top
oben
-
+
Version
Version
-
+
Delete the selected item.
Lösche den ausgewählten Eintrag.
-
+
Move selection up one position.
Ausgewählten Eintrag nach oben schieben.
-
+
Move selection down one position.
Ausgewählten Eintrag nach unten schieben.
-
+
&Vertical Align:
&Vertikale Ausrichtung:
-
+
Finished import.
Importvorgang abgeschlossen.
-
+
Format:
Format:
-
+
Importing
Importieren
-
+
Importing "%s"...
»%s« wird importiert...
-
+
Select Import Source
Importquelle auswählen
-
+
Select the import format and the location to import from.
Wählen Sie das Importformat und das Quellverzeichnis aus.
-
+
The openlp.org 1.x importer has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "python-sqlite" module.
Der openlp.ort 1.x Importassistent wurde, wegen einem fehlenden Python Modul deaktiviert. Wenn Sie diesen Importassistenten nutzen wollen, dann müssen Sie das »python-sqlite« Modul installieren.
-
+
Open %s File
Öffne %s Datei
-
+
%p%
%p%
-
+
Ready.
Fertig.
-
+
Starting import...
Beginne Import...
-
+
You need to specify at least one %s file to import from.
A file type e.g. OpenSong
Sie müssen wenigstens eine %s-Datei zum Importieren auswählen.
-
+
Welcome to the Bible Import Wizard
Willkommen beim Bibel Importassistenten
-
+
Welcome to the Song Export Wizard
Willkommen beim Lied Exportassistenten
-
+
Welcome to the Song Import Wizard
Willkommen beim Lied Importassistenten
-
+
Author
Singular
Autor
-
+
Authors
Plural
Autoren
-
+
©
Copyright symbol.
©
-
+
Song Book
Singular
Liederbuch
-
+
Song Books
Plural
Liederbücher
-
+
Song Maintenance
Liedverwaltung
-
+
Topic
Singular
Thema
-
+
Topics
Plural
Themen
-
+
Continuous
Fortlaufend
-
+
Default
Standard
-
+
Display style:
Versangabenformat:
-
+
Duplicate Error
Duplikate gefunden
-
+
File
Datei
-
+
Help
Hilfe
-
+
h
The abbreviated unit for hours
h
-
+
Layout style:
Folienformat:
-
+
Live Toolbar
Live-Ansicht
-
+
m
The abbreviated unit for minutes
m
-
+
OpenLP is already running. Do you wish to continue?
OpenLP läuft bereits. Möchten Sie trotzdem fortfahren?
-
+
Settings
Einstellungen
-
+
Tools
Extras
-
+
Unsupported File
Nicht unterstütztes Dateiformat
-
+
Verse Per Slide
Verse pro Folie
-
+
Verse Per Line
Verse pro Zeile
-
+
View
Ansicht
-
+
Title and/or verses not found
Titel und/oder Strophen nicht gefunden
-
+
XML syntax error
XML Syntax Fehler
-
+
View Mode
Ansichtsmodus
-
+
Open service.
Öffne einen Ablauf.
-
+
Print Service
Ablauf drucken
-
+
Replace live background.
Ersetzen den Live-Hintergrund.
-
+
Reset live background.
Setze den Live-Hintergrund zurück.
-
+
Split a slide into two only if it does not fit on the screen as one slide.
Teile ein Folie dann, wenn sie als Ganzes nicht auf den Bildschirm passt.
-
+
Welcome to the Bible Upgrade Wizard
Willkommen zum Aktualisierungsssistent
-
+
Confirm Delete
Löschbestätigung
-
+
Play Slides in Loop
Endlosschleife
-
+
Play Slides to End
Schleife bis zum Ende
-
+
Stop Play Slides in Loop
Halte Endlosschleife an
-
+
Stop Play Slides to End
Halte Schleife an
-
+
Next Track
Nächstes Stück
-
+
Search Themes...
Search bar place holder text
Suche Designs...
-
+
Optional &Split
Optionale &Teilung
-
+
Invalid Folder Selected
Singular
Ungültiger Ordner gewählt
-
+
Invalid File Selected
Singular
Ungültige Datei ausgewählt
-
+
Invalid Files Selected
Plural
Ungültige Dateien gewählt
-
+
No Folder Selected
Singular
Kein Ordner ausgewählt
-
+
Open %s Folder
Öffne %s Ordner
-
+
You need to specify one %s file to import from.
A file type e.g. OpenSong
Bitte wählen Sie eine %s Datei, welche importiert werden soll.
-
+
You need to specify one %s folder to import from.
A song format e.g. PowerSong
Bitte wählen Sie wenigstens einen %s Ordner der importiert werden soll.
@@ -5703,25 +5703,25 @@ Der Inhalt ist nicht in UTF-8 kodiert.
OpenLP.core.lib
-
+
%1 and %2
Locale list separator: 2 items
%1 und %2
-
+
%1, and %2
Locale list separator: end
%1, und %2
-
+
%1, %2
Locale list separator: middle
%1, %2
-
+
%1, %2
Locale list separator: start
%1,%2
@@ -5730,50 +5730,50 @@ Der Inhalt ist nicht in UTF-8 kodiert.
PresentationPlugin
-
+
<strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box.
<strong>Erweiterung Präsentationen</strong><br />Die Erweiterung Präsentationen ermöglicht die Darstellung von Präsentationen, unter Verwendung verschiedener Programme. In einer Auswahlbox kann eines der verfügbaren Programme gewählt werden.
-
+
Presentation
name singular
Präsentation
-
+
Presentations
name plural
Präsentationen
-
+
Presentations
container title
Präsentationen
-
+
Load a new presentation.
Lade eine neue Präsentation.
-
+
Delete the selected presentation.
Lösche die ausgewählte Präsentation.
-
+
Preview the selected presentation.
Zeige die ausgewählte Präsentation in der Vorschau.
-
+
Send the selected presentation live.
Zeige die ausgewählte Präsentation Live.
-
+
Add the selected presentation to the service.
Füge die ausgewählte Präsentation zum Ablauf hinzu.
@@ -5781,52 +5781,52 @@ Der Inhalt ist nicht in UTF-8 kodiert.
PresentationPlugin.MediaItem
-
+
Select Presentation(s)
Präsentationen auswählen
-
+
Automatic
automatisch
-
+
Present using:
Anzeigen mit:
-
+
File Exists
Datei existiert
-
+
A presentation with that filename already exists.
Eine Präsentation mit diesem Dateinamen existiert bereits.
-
+
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 is incomplete, please reload.
Die Präsentation %s ist unvollständig, bitte erneut laden.
-
+
The presentation %s no longer exists.
Die Präsentation %s existiert nicht mehr.
@@ -5834,17 +5834,17 @@ Der Inhalt ist nicht in UTF-8 kodiert.
PresentationPlugin.PresentationTab
-
+
Available Controllers
Verwendete Präsentationsprogramme
-
+
%s (unavailable)
%s (nicht verfügbar)
-
+
Allow presentation application to be overridden
Überschreiben der Präsentationssoftware zulassen
@@ -5852,24 +5852,24 @@ Der Inhalt ist nicht in UTF-8 kodiert.
RemotePlugin
-
+
<strong>Remote Plugin</strong><br />The remote plugin provides the ability to send messages to a running version of OpenLP on a different computer via a web browser or through the remote API.
<strong>Erweiterung Fernsteuerung</strong><br />Die Erweiterung Fernsteuerung ermöglicht es eine laufende Version von OpenLP von einem anderen Computer über einen Web-Browser oder über die Fernsteuerungsoberfläche zu steuern.
-
+
Remote
name singular
Fernsteuerung
-
+
Remotes
name plural
Fernsteuerung
-
+
Remote
container title
Fernsteuerung
@@ -5878,107 +5878,107 @@ Der Inhalt ist nicht in UTF-8 kodiert.
RemotePlugin.Mobile
-
+
OpenLP 2.0 Remote
OpenLP 2.0 Fernsteuerung
-
+
OpenLP 2.0 Stage View
OpenLP 2.0 Bühnenmonitor
-
+
Service Manager
Ablaufverwaltung
-
+
Slide Controller
Live-Ansicht
-
+
Alerts
Hinweise
-
+
Search
Suchen
-
+
Refresh
Aktualisieren
-
+
Blank
Schwarz
-
+
Show
Zeigen
-
+
Prev
Vorh.
-
+
Next
Nächste
-
+
Text
Text
-
+
Show Alert
Hinweis zeigen
-
+
Go Live
Live
-
+
No Results
Kein Suchergebnis
-
+
Options
Optionen
-
+
Add to Service
Zum Ablauf hinzufügen
-
+
Home
Start
-
+
Theme
Design
-
+
Desktop
Desktop
-
+
Add & Go to Service
Hinzufügen & zum Ablauf gehen
@@ -5986,42 +5986,42 @@ Der Inhalt 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
-
+
Android App
Android App
-
+
Scan the QR code or click <a href="https://market.android.com/details?id=org.openlp.android">download</a> to install the Android app from the Market.
Zur Installation der Android app bitte den QR code einlesen oder auf <a href="https://market.android.com/details?id=org.openlp.android">download</a> klicken.
@@ -6029,85 +6029,85 @@ Der Inhalt ist nicht in UTF-8 kodiert.
SongUsagePlugin
-
+
&Song Usage Tracking
&Protokollierung
-
+
&Delete Tracking Data
&Protokoll löschen
-
+
Delete song usage data up to a specified date.
Das Protokoll ab einem bestimmten Datum löschen.
-
+
&Extract Tracking Data
&Protokoll extrahieren
-
+
Generate a report on song usage.
Einen Protokoll-Bericht erstellen.
-
+
Toggle Tracking
Aktiviere Protokollierung
-
+
Toggle the tracking of song usage.
Setzt die Protokollierung aus.
-
+
<strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services.
<strong>Erweiterung Liedprotokollierung</strong><br />Diese Erweiterung zählt die Verwendung von Liedern in Veranstaltungen.
-
+
SongUsage
name singular
Liedprotokollierung
-
+
SongUsage
name plural
Liedprotokollierung
-
+
SongUsage
container title
Liedprotokollierung
-
+
Song Usage
Liedprotokollierung
-
+
Song usage tracking is active.
Liedprotokollierung ist aktiv.
-
+
Song usage tracking is inactive.
Liedprotokollierung ist nicht aktiv.
-
+
display
Bildschirm
-
+
printed
gedruckt
@@ -6115,32 +6115,32 @@ Der Inhalt ist nicht in UTF-8 kodiert.
SongUsagePlugin.SongUsageDeleteForm
-
+
Delete Song Usage Data
Protokolldaten löschen
-
+
Delete Selected Song Usage Events?
Wollen sie die ausgewählten Ereignisse löschen?
-
+
Are you sure you want to delete selected Song Usage data?
Sollen die ausgewählten Protokolldaten wirklich gelöscht werden?
-
+
Deletion Successful
Löschung erfolgreich
-
+
All requested data has been deleted successfully.
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.
@@ -6148,42 +6148,42 @@ Der Inhalt ist nicht in UTF-8 kodiert.
SongUsagePlugin.SongUsageDetailForm
-
+
Song Usage Extraction
Protokoll extrahieren
-
+
Select Date Range
Zeitspanne
-
+
to
bis
-
+
Report Location
Zielverzeichnis für die Statistiken
-
+
Output File Location
Zielverzeichnis
-
+
usage_detail_%s_%s.txt
Aufrufprotokoll_%s_%s.txt
-
+
Report Creation
Statistik Erstellung
-
+
Report
%s
has been successfully created.
@@ -6192,12 +6192,12 @@ has been successfully created.
wurde erfolgreich erstellt.
-
+
Output Path Not Selected
Kein Zielverzeichnis angegeben
-
+
You have not set a valid output location for your song usage report. Please select an existing path on your computer.
Sie haben kein gültiges Zielverzeichnis für die Statistiken angegeben. Bitte geben Sie ein existierendes Verzeichnis an.
@@ -6205,112 +6205,112 @@ wurde erfolgreich erstellt.
SongsPlugin
-
+
&Song
&Lied
-
+
Import songs using the import wizard.
Lieder importieren.
-
+
<strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs.
<strong>Erweiterung Lieder</strong><br />Die Erweiterung Lieder ermöglicht die Darstellung und Verwaltung von Liedtexten.
-
+
&Re-index Songs
Liederverzeichnis &reindizieren
-
+
Re-index the songs database to improve searching and ordering.
Das reindizieren der Liederdatenbank kann die Suchergebnisse verbessern.
-
+
Reindexing songs...
Reindiziere die Liederdatenbank...
-
+
Arabic (CP-1256)
Arabisch (CP-1256)
-
+
Baltic (CP-1257)
Baltisch (CP-1257)
-
+
Central European (CP-1250)
Zentraleuropäisch (CP-1250)
-
+
Cyrillic (CP-1251)
Kyrillisch (CP-1251)
-
+
Greek (CP-1253)
Griechisch (CP-1253)
-
+
Hebrew (CP-1255)
Hebräisch (CP-1255)
-
+
Japanese (CP-932)
Japanisch (CP-932)
-
+
Korean (CP-949)
Koreanisch (CP-949)
-
+
Simplified Chinese (CP-936)
Chinesisch, vereinfacht (CP-936)
-
+
Thai (CP-874)
Thailändisch (CP-874)
-
+
Traditional Chinese (CP-950)
Chinesisch, traditionell (CP-950)
-
+
Turkish (CP-1254)
Türkisch (CP-1254)
-
+
Vietnam (CP-1258)
Vietnamesisch (CP-1258)
-
+
Western European (CP-1252)
Westeuropäisch (CP-1252)
-
+
Character Encoding
Zeichenkodierung
-
+
The codepage setting is responsible
for the correct character representation.
Usually you are fine with the preselected choice.
@@ -6320,62 +6320,62 @@ Gewöhnlich ist die vorausgewählte
Einstellung korrekt.
-
+
Please choose the character encoding.
The encoding is responsible for the correct character representation.
Bitte wählen sie die Zeichenkodierung.
Diese ist für die korrekte Darstellung der Sonderzeichen verantwortlich.
-
+
Song
name singular
Lied
-
+
Songs
name plural
Lieder
-
+
Songs
container title
Lieder
-
+
Exports songs using the export wizard.
Exportiert Lieder mit dem Exportassistenten.
-
+
Add a new song.
Erstelle eine neues Lied.
-
+
Edit the selected song.
Bearbeite das ausgewählte Lied.
-
+
Delete the selected song.
Lösche das ausgewählte Lied.
-
+
Preview the selected song.
Zeige das ausgewählte Lied in der Vorschau.
-
+
Send the selected song live.
Zeige das ausgewählte Lied Live.
-
+
Add the selected song to the service.
Füge das ausgewählte Lied zum Ablauf hinzu.
@@ -6383,37 +6383,37 @@ Diese ist für die korrekte Darstellung der Sonderzeichen verantwortlich.
SongsPlugin.AuthorsForm
-
+
Author Maintenance
Autorenverwaltung
-
+
Display name:
Anzeigename:
-
+
First name:
Vorname:
-
+
Last name:
Nachname:
-
+
You need to type in the first name of the author.
Der Vornamen des Autors muss angegeben werden.
-
+
You need to type in the last name of the author.
Der Nachname des Autors muss angegeben werden.
-
+
You have not set a display name for the author, combine the first and last names?
Es wurde kein Anzeigename für den Autor angegeben. Soll der Vor- und Nachname kombiniert werden?
@@ -6421,7 +6421,7 @@ Diese ist für die korrekte Darstellung der Sonderzeichen verantwortlich.
SongsPlugin.CCLIFileImport
-
+
The file does not have a valid extension.
Die Datei hat keine gültige Dateiendung.
@@ -6429,12 +6429,12 @@ Diese ist für die korrekte Darstellung der Sonderzeichen verantwortlich.
SongsPlugin.EasyWorshipSongImport
-
+
Administered by %s
Verwaltet durch %s
-
+
[above are Song Tags with notes imported from
EasyWorship]
@@ -6446,12 +6446,12 @@ Easy Worship]
SongsPlugin.EditBibleForm
-
+
Meta Data
Metadaten
-
+
Custom Book Names
Benutzerdefinierte Büchernamen
@@ -6459,207 +6459,207 @@ Easy Worship]
SongsPlugin.EditSongForm
-
+
Song Editor
Lied bearbeiten
-
+
&Title:
&Titel:
-
+
Alt&ernate title:
&Zusatztitel:
-
+
&Lyrics:
Lied&text:
-
+
&Verse order:
&Versfolge:
-
+
Ed&it All
&Alle Bearbeiten
-
+
Title && Lyrics
Titel && Liedtext
-
+
&Add to Song
&Hinzufügen
-
+
&Remove
&Entfernen
-
+
&Manage Authors, Topics, Song Books
&Datenbankeinträge verwalten
-
+
A&dd to Song
H&inzufügen
-
+
R&emove
&Entfernen
-
+
Book:
Liederbuch:
-
+
Number:
Nummer:
-
+
Authors, Topics && Song Book
Autoren, Themen && Liederbücher
-
+
New &Theme
Neues &Design
-
+
Copyright Information
Copyright
-
+
Comments
Kommentare
-
+
Theme, Copyright Info && Comments
Design, Copyright && Kommentare
-
+
Add Author
Autor hinzufügen
-
+
This author does not exist, do you want to add them?
Dieser Autor existiert nicht. Soll er zur Datenbank hinzugefügt werden?
-
+
This author is already in the list.
Dieser Autor ist bereits vorhanden.
-
+
You have not selected a valid author. Either select an author from the list, or type in a new author and click the "Add Author to Song" button to add the new author.
Es wurde kein gültiger Autor ausgewählt. Bitte wählen Sie einen Autor aus der Liste oder geben Sie einen neuen Autor ein und drücken die Schaltfläche »Autor hinzufügen«.
-
+
Add Topic
Thema hinzufügen
-
+
This topic does not exist, do you want to add it?
Dieses Thema existiert nicht. Soll es zur Datenbank hinzugefügt werden?
-
+
This topic is already in the list.
Dieses Thema ist bereits vorhanden.
-
+
You have not selected a valid topic. Either select a topic from the list, or type in a new topic and click the "Add Topic to Song" button to add the new topic.
Es wurde kein gültiges Thema ausgewählt. Bitte wählen Sie ein Thema aus der Liste oder geben Sie ein neues Thema ein und drücken die Schaltfläche »Thema hinzufügen«.
-
+
You need to type in a song title.
Ein Liedtitel muss angegeben sein.
-
+
You need to type in at least one verse.
Mindestens ein Vers muss angegeben sein.
-
+
The verse order is invalid. There is no verse corresponding to %s. Valid entries are %s.
Die Versfolge ist ungültig. Es gibt keinen Vers mit der Kennung »%s«. Gültige Werte sind »%s«.
-
+
Add Book
Liederbuch hinzufügen
-
+
This song book does not exist, do you want to add it?
Dieses Liederbuch existiert nicht. Soll es zur Datenbank hinzugefügt werden?
-
+
You need to have an author for this song.
Das Lied benötigt mindestens einen Autor.
-
+
You need to type some text in to the verse.
Die Strophe benötigt etwas Text.
-
+
Linked Audio
Hintergrundmusik
-
+
Add &File(s)
&Datei(en) hinzufügen
-
+
Add &Media
&Medien hinzufügen
-
+
Remove &All
&Alle Entfernen
-
+
Open File(s)
Datei(en) öffnen
-
+
<strong>Warning:</strong> Not all of the verses are in use.
<strong>Achtung:</strong> Es werden nicht alle Verse verwendet.
-
+
The verse order is invalid. There are no verses corresponding to %s. Valid entries are %s.
Ungültige Versfolge. Es gibt keine passenden Verse für %s. Gültige Einträge sind %s.
@@ -6667,22 +6667,22 @@ Easy Worship]
SongsPlugin.EditVerseForm
-
+
Edit Verse
Vers bearbeiten
-
+
&Verse type:
&Verstyp:
-
+
&Insert
&Einfügen
-
+
Split a slide into two by inserting a verse splitter.
Füge den Verstyp ein.
@@ -6690,82 +6690,82 @@ Easy Worship]
SongsPlugin.ExportWizardForm
-
+
Song Export Wizard
Lied Exportassistent
-
+
Select Songs
Lieder auswählen
-
+
Check the songs you want to export.
Wählen Sie die Lieder aus, die Sie exportieren wollen.
-
+
Uncheck All
Alle abwählen
-
+
Check All
Alle auswählen
-
+
Select Directory
Zielverzeichnis auswählen
-
+
Directory:
Verzeichnis:
-
+
Exporting
Exportiere
-
+
Please wait while your songs are exported.
Bitte warten Sie, während die Lieder exportiert werden.
-
+
You need to add at least one Song to export.
Sie müssen wenigstens ein Lied zum Exportieren auswählen.
-
+
No Save Location specified
Kein Zielverzeichnis angegeben
-
+
Starting export...
Beginne mit dem Export...
-
+
You need to specify a directory.
Sie müssen ein Verzeichnis angeben.
-
+
Select Destination Folder
Zielverzeichnis wählen
-
+
Select the directory where you want the songs to be saved.
Geben Sie das Zielverzeichnis an.
-
+
This wizard will help to export your songs to the open and free <strong>OpenLyrics</strong> worship song format.
Dieser Assistent wird Ihnen helfen Lieder in das freie und offene <strong>OpenLyrics</strong> Lobpreis Lieder Format zu exportieren.
@@ -6773,150 +6773,155 @@ Easy Worship]
SongsPlugin.ImportWizardForm
-
+
Select Document/Presentation Files
Präsentationen/Textdokumente auswählen
-
+
Song Import Wizard
Lied Importassistent
-
+
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.
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.
-
+
Generic Document/Presentation
Präsentation/Textdokument
-
+
Add Files...
Hinzufügen...
-
+
Remove File(s)
Entfernen
-
+
Please wait while your songs are imported.
Die Liedtexte werden importiert. Bitte warten.
-
+
OpenLP 2.0 Databases
»OpenLP 2.0« Lieddatenbanken
-
+
openlp.org v1.x Databases
»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
-
+
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
-
+
CCLI SongSelect Files
CLI SongSelect Dateien
-
+
EasySlides XML File
EasySlides XML Datei
-
+
EasyWorship Song Database
EasyWorship Lieddatenbank
-
+
DreamBeam Song Files
DreamBeam Lied Dateien
-
+
You need to specify a valid PowerSong 1.0 database folder.
Bitte wählen sie einen gültigen PowerSong 1.0 Datenbank Ordner.
-
+
ZionWorx (CSV)
ZionWorx(CSV)
-
+
First convert your ZionWorx database to a CSV text file, as explained in the <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">User Manual</a>.
Bitte konvertieren Sie zuerst die ZionWorx Datenbank in eine CSV Text Datei, wie beschrieben im <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">User Manual</a>.
+
+
+ SundayPlus Song Files
+
+
SongsPlugin.MediaFilesForm
-
+
Select Media File(s)
Wähle Audio-/Videodatei(en)
-
+
Select one or more audio files from the list below, and click OK to import them into this song.
Wähle eine oder mehrere Audio Dateien von der folgenden Liste und klicke >>OK<<, um sie in dieses Lied zu importieren.
@@ -6924,27 +6929,27 @@ Easy Worship]
SongsPlugin.MediaItem
-
+
Titles
Titel
-
+
Lyrics
Liedtext
-
+
CCLI License:
CCLI-Lizenz:
-
+
Entire Song
Ganzes Lied
-
+
Are you sure you want to delete the %n selected song(s)?
Soll das markierte Lied wirklich gelöscht werden?
@@ -6952,38 +6957,38 @@ Easy Worship]
-
+
Maintain the lists of authors, topics and books.
Autoren, Themen und Bücher verwalten.
-
+
copy
For song cloning
Kopie
-
+
Search Titles...
Suche Titel...
-
+
Search Entire Song...
Suche im ganzem Lied...
-
+
Search Lyrics...
Suche Liedtext...
-
+
Search Authors...
Suche Autoren...
-
+
Search Song Books...
Suche Liederbücher...
@@ -6991,7 +6996,7 @@ Easy Worship]
SongsPlugin.OpenLP1SongImport
-
+
Not a valid openlp.org 1.x song database.
Keine gültige openlp.org 1.x Liederdatenbank.
@@ -6999,7 +7004,7 @@ Easy Worship]
SongsPlugin.OpenLPSongImport
-
+
Not a valid OpenLP 2.0 song database.
Keine gültige OpenLP 2.x Liederdatenbank.
@@ -7007,7 +7012,7 @@ Easy Worship]
SongsPlugin.OpenLyricsExport
-
+
Exporting "%s"...
Exportiere »%s«...
@@ -7015,12 +7020,12 @@ Easy Worship]
SongsPlugin.PowerSongImport
-
+
No songs to import.
Keine Lieder zu importieren.
-
+
Verses not found. Missing "PART" header.
Es wurden keine Verse gefunden. "PART" Kopfzeile fehlt.
@@ -7028,22 +7033,22 @@ Easy Worship]
SongsPlugin.SongBookForm
-
+
Song Book Maintenance
Liederbuch-Verwaltung
-
+
&Name:
&Name:
-
+
&Publisher:
&Verlag:
-
+
You need to type in a name for the book.
Ein Buchname muss angegeben werden.
@@ -7051,12 +7056,12 @@ Easy Worship]
SongsPlugin.SongExportForm
-
+
Your song export failed.
Der Liedexport schlug fehl.
-
+
Finished export. To import these files use the <strong>OpenLyrics</strong> importer.
Export beendet. Diese Dateien können mit dem <strong>OpenLyrics</strong> Importer wieder importiert werden.
@@ -7064,27 +7069,27 @@ Easy Worship]
SongsPlugin.SongImport
-
+
copyright
copyright
-
+
The following songs could not be imported:
Die folgenden Lieder konnten nicht importiert werden:
-
+
Cannot access OpenOffice or LibreOffice
Kann OpenOffice.org oder LibreOffice nicht öffnen
-
+
Unable to open file
Konnte Datei nicht öffnen
-
+
File not found
Datei nicht gefunden
@@ -7092,107 +7097,107 @@ Easy Worship]
SongsPlugin.SongMaintenanceForm
-
+
Could not add your author.
Der Autor konnte nicht hinzugefügt werden.
-
+
This author already exists.
Der Autor existiert bereits in der Datenbank.
-
+
Could not add your topic.
Das Thema konnte nicht hinzugefügt werden.
-
+
This topic already exists.
Das Thema existiert bereits in der Datenbank.
-
+
Could not add your book.
Das Liederbuch konnte nicht hinzugefügt werden.
-
+
This book already exists.
Das Liederbuch existiert bereits in der Datenbank.
-
+
Could not save your changes.
Die Änderungen konnten nicht gespeichert werden.
-
+
Could not save your modified author, because the author already exists.
Der geänderte Autor konnte nicht gespeichert werden, da es bereits in der Datenbank existiert.
-
+
Could not save your modified topic, because it already exists.
Das geänderte Thema konnte nicht gespeichert werden, da es bereits in der Datenbank existiert.
-
+
Delete Author
Autor löschen
-
+
Are you sure you want to delete the selected author?
Soll der ausgewählte Autor wirklich gelöscht werden?
-
+
This author cannot be deleted, they are currently assigned to at least one song.
Der Autor konnte nicht gelöscht werden, da er mindestens einem Lied zugeordnet ist.
-
+
Delete Topic
Thema löschen
-
+
Are you sure you want to delete the selected topic?
Soll das ausgewählte Thema wirklich gelöscht werden?
-
+
This topic cannot be deleted, it is currently assigned to at least one song.
Das Thema konnte nicht gelöscht werden, da es mindestens einem Lied zugeordnet ist.
-
+
Delete Book
Liederbuch löschen
-
+
Are you sure you want to delete the selected book?
Soll das ausgewählte Liederbuch wirklich gelöscht werden?
-
+
This book cannot be deleted, it is currently assigned to at least one song.
Das Liederbuch konnte nicht gelöscht werden, da es mindestens einem Lied zugeordnet ist.
-
+
The author %s already exists. Would you like to make songs with author %s use the existing author %s?
Der Autor »%s« existiert bereits. Sollen Lieder von »%s« »%s« als Autor setzen?
-
+
The topic %s already exists. Would you like to make songs with topic %s use the existing topic %s?
Das Thema »%s« existiert bereits. Sollen Lieder zum Thema »%s« das Thema »%s« verwenden?
-
+
The book %s already exists. Would you like to make songs with book %s use the existing book %s?
Das Liederbuch »%s« existiert bereits. Sollen Lieder aus »%s« dem Buch »%s« zugeordnet werden?
@@ -7200,27 +7205,27 @@ Easy Worship]
SongsPlugin.SongsTab
-
+
Songs Mode
Lieder-Einstellungen
-
+
Enable search as you type
Aktiviere Vorschlagssuche (search as you type)
-
+
Display verses on live tool bar
Versauswahl in der Live-Symbolleiste zeigen
-
+
Update service from song edit
Lieder im Ablauf nach Bearbeitung aktualisieren
-
+
Import missing songs from service files
Lieder aus Abläufen in die Datenbank importieren
@@ -7228,17 +7233,17 @@ Easy Worship]
SongsPlugin.TopicsForm
-
+
Topic Maintenance
Themenverwaltung
-
+
Topic name:
Thema:
-
+
You need to type in a topic name.
Ein Thema muss angegeben werden.
@@ -7246,37 +7251,37 @@ Easy Worship]
SongsPlugin.VerseType
-
+
Verse
Strophe
-
+
Chorus
Refrain
-
+
Bridge
Bridge
-
+
Pre-Chorus
Überleitung
-
+
Intro
Intro
-
+
Ending
Ende
-
+
Other
Anderes
@@ -7284,12 +7289,12 @@ Easy Worship]
SongsPlugin.ZionWorxImport
-
+
Error reading CSV file.
Fehler beim Lesen der CSV Datei.
-
+
File not valid ZionWorx CSV format.
Die Datei hat kein gültiges ZionWorx CSV Format.
diff --git a/resources/i18n/el.ts b/resources/i18n/el.ts
index f43389b0d..9764be76b 100644
--- a/resources/i18n/el.ts
+++ b/resources/i18n/el.ts
@@ -3,35 +3,35 @@
AlertsPlugin
-
+
&Alert
&Ειδοποίηση
-
+
Show an alert message.
Εμφάνιση ενός μηνύματος ειδοποίησης.
-
+
Alert
name singular
Ειδοποίηση
-
+
Alerts
name plural
Ειδοποιήσεις
-
+
Alerts
container title
Ειδοποιήσεις
-
+
<strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of nursery alerts on the display screen.
<strong>Πρόσθετο Ειδοποιήσεων</strong><br />Το πρόσθετο ειδοποιήσεων ελέγχει την εμφάνιση βοηθητικών μηνυμάτων στην οθόνη προβολής.
@@ -39,69 +39,69 @@
AlertsPlugin.AlertForm
-
+
Alert Message
Μήνυμα Ειδοποίησης
-
+
Alert &text:
&Κείμενο Ειδοποίησης:
-
+
&New
&Νέο
-
+
&Save
&Αποθήκευση
-
+
Displ&ay
Παρουσί&αση
-
+
Display && Cl&ose
Παρουσίαση && Κλ&είσιμο
-
+
New Alert
Νέα Ειδοποίηση
-
+
You haven't specified any text for your alert. Please type in some text before clicking New.
Δεν έχετε προσδιορίσει κάποιο κείμενο για την ειδοποίησή σας. Παρακαλούμε πληκτρολογείστε ένα κείμενο πριν κάνετε κλικ στο Νέο.
-
+
&Parameter:
&Παράμετρος:
-
+
No Parameter Found
Δεν Βρέθηκε Παράμετρος
-
+
You have not entered a parameter to be replaced.
Do you want to continue anyway?
Δεν έχετε εισαγάγει μια παράμετρο προς αντικατάσταση.
Θέλετε να συνεχίσετε οπωσδήποτε;
-
+
No Placeholder Found
Δεν Βρέθηκε Σελιδοδείκτης
-
+
The alert text does not contain '<>'.
Do you want to continue anyway?
Η ειδοποίηση δεν περιέχει '<>'.
@@ -111,7 +111,7 @@ Do you want to continue anyway?
AlertsPlugin.AlertsManager
-
+
Alert message created and displayed.
Η ειδοποίηση δημιουργήθηκε και προβλήθηκε.
@@ -119,32 +119,32 @@ Do you want to continue anyway?
AlertsPlugin.AlertsTab
-
+
Font
Γραμματοσειρά
-
+
Font name:
Ονομασία γραμματοσειράς:
-
+
Font color:
Χρώμα γραμματοσειράς:
-
+
Background color:
Χρώμα φόντου:
-
+
Font size:
Μέγεθος γραμματοσειράς:
-
+
Alert timeout:
Χρόνος αναμονής:
@@ -152,510 +152,510 @@ Do you want to continue anyway?
BiblesPlugin
-
+
&Bible
&Βίβλος
-
+
Bible
name singular
Βίβλος
-
+
Bibles
name plural
Βίβλοι
-
+
Bibles
container title
Βίβλοι
-
+
No Book Found
Δεν βρέθηκε κανένα βιβλίο
-
+
No matching book could be found in this Bible. Check that you have spelled the name of the book correctly.
Δεν βρέθηκε βιβλίο που να ταιριάζει στην Βίβλο αυτή. Ελέγξτε την ορθογραφία του βιβλίου.
-
+
Import a Bible.
Εισαγωγή μιας Βίβλου.
-
+
Add a new Bible.
Προσθήκη νέας Βίβλου.
-
+
Edit the selected Bible.
Επεξεργασία επιλεγμένης Βίβλου.
-
+
Delete the selected Bible.
Διαγραφή της επιλεγμένης Βίβλου.
-
+
Preview the selected Bible.
Προεπισκόπηση επιλεγμένης Βίβλου.
-
+
Send the selected Bible live.
Προβολή της επιλεγμένης Βίβλου.
-
+
Add the selected Bible to the service.
Προσθήκη της επιλεγμένης Βίβλου προς χρήση.
-
+
<strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display Bible verses from different sources during the service.
<strong>Πρόσθετο Βίβλων</strong><br />Το πρόσθετο Βίβλων παρέχει την δυνατότητα να εμφανίζονται εδάφια Βίβλων από διαφορετικές πηγές κατά την λειτουργία.
-
+
&Upgrade older Bibles
&Αναβάθμιση παλαιότερων Βίβλων
-
+
Upgrade the Bible databases to the latest format.
Αναβάθμιση της βάσης δεδομένων Βίβλων στην τελευταία μορφή.
-
+
Genesis
Γένεση
-
+
Exodus
Έξοδος
-
+
Leviticus
Λευιτικό
-
+
Numbers
Αριθμοί
-
+
Deuteronomy
Δευτερονόμιο
-
+
Joshua
Ιησούς του Ναυή
-
+
Judges
Κριτές
-
+
Ruth
Ρουθ
-
+
1 Samuel
1 Σαμουήλ
-
+
2 Samuel
2 Σαμουήλ
-
+
1 Kings
1 Βασιλέων
-
+
2 Kings
2 Βασιλέων
-
+
1 Chronicles
1 Χρονικών
-
+
2 Chronicles
2 Χρονικών
-
+
Ezra
Έσδρας
-
+
Nehemiah
Νεεμίας
-
+
Esther
Εσθήρ
-
+
Job
Ιώβ
-
+
Psalms
Ψαλμοί
-
+
Proverbs
Παροιμίες
-
+
Ecclesiastes
Εκκλησιαστής
-
+
Song of Solomon
Άσμα Ασμάτων
-
+
Isaiah
Ησαΐας
-
+
Jeremiah
Ιερεμίας
-
+
Lamentations
Θρήνοι
-
+
Ezekiel
Ιεζεκιήλ
-
+
Daniel
Δανιήλ
-
+
Hosea
Ωσηέ
-
+
Joel
Ιωήλ
-
+
Amos
Αμώς
-
+
Obadiah
Αβδιού
-
+
Jonah
Ιωνάς
-
+
Micah
Μιχαίας
-
+
Nahum
Ναούμ
-
+
Habakkuk
Αββακούμ
-
+
Zephaniah
Σοφονίας
-
+
Haggai
Αγγαίος
-
+
Zechariah
Ζαχαρίας
-
+
Malachi
Μαλαχίας
-
+
Matthew
Ματθαίος
-
+
Mark
Μάρκος
-
+
Luke
Λουκάς
-
+
John
Ιωάννης
-
+
Acts
Πράξεις
-
+
Romans
Ρωμαίους
-
+
1 Corinthians
1 Κορινθίους
-
+
2 Corinthians
2 Κορινθίους
-
+
Galatians
Γαλάτες
-
+
Ephesians
Εφεσίους
-
+
Philippians
Φιλιππησίους
-
+
Colossians
Κολοσσαείς
-
+
1 Thessalonians
1 Θεσσαλονικείς
-
+
2 Thessalonians
2 Θεσσαλονικείς
-
+
1 Timothy
1 Τιμόθεο
-
+
2 Timothy
2 Τιμόθεο
-
+
Titus
Τίτο
-
+
Philemon
Φιλήμονα
-
+
Hebrews
Εβραίους
-
+
James
Ιακώβου
-
+
1 Peter
1 Πέτρου
-
+
2 Peter
2 Πέτρου
-
+
1 John
1 Ιωάννου
-
+
2 John
2 Ιωάννου
-
+
3 John
3 Ιωάννου
-
+
Jude
Ιούδα
-
+
Revelation
Αποκάλυψη
-
+
Judith
Ιουδίθ
-
+
Wisdom
Σοφία Σολομώντος
-
+
Tobit
Τωβίτ
-
+
Sirach
Σοφία Σειράχ
-
+
Baruch
Βαρούχ
-
+
1 Maccabees
1 Μακκαβαίων
-
+
2 Maccabees
2 Μακκαβαίων
-
+
3 Maccabees
3 Μακκαβαίων
-
+
4 Maccabees
4 Μακκαβαίων
-
+
Rest of Daniel
Υπόλοιπο Δανιήλ
-
+
Rest of Esther
Υπόλοιπο Εσθήρ
-
+
Prayer of Manasses
Προσευχή του Μανασσή
-
+
Letter of Jeremiah
Επιστολή του Ιερεμία
-
+
Prayer of Azariah
Προσευχή Αζαρίου
-
+
Susanna
Σουσάννα
-
+
Bel
Βηλ
-
+
1 Esdras
1 Έσδρας
-
+
2 Esdras
2 Έσδρας
-
+
:|v|V|verse|verses;;-|to;;,|and;;end
Double-semicolon delimited separators for parsing references. Consult the developers for further information.
:|v|V|verse|verses;;-|to;;,|and;;end
@@ -664,32 +664,32 @@ Do you want to continue anyway?
BiblesPlugin.BibleEditForm
-
+
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.
Πρέπει να θέσετε πνευματικά δικαιώματα για την Βίβλο σας. Οι Βίβλοι στο Δημόσιο Domain πρέπει να σημειώνονται ως δημόσιες.
-
+
Bible Exists
Υπάρχουσα Βίβλος
-
+
This Bible already exists. Please import a different Bible or first delete the existing one.
Αυτή η Βίβλος υπάρχει ήδη. Παρακαλούμε εισάγετε μια διαφορετική Βίβλο ή πρώτα διαγράψτε την ήδη υπάρχουσα.
-
+
You need to specify a book name for "%s".
Πρέπει να ορίσετε όνομα βιβλίου για το "%s".
-
+
The book name "%s" is not correct.
Numbers can only be used at the beginning and must
be followed by one or more non-numeric characters.
@@ -698,12 +698,12 @@ be followed by one or more non-numeric characters.
ακολουθούνται από έναν ή παραπάνω μη αριθμητικούς χαρακτήρες.
-
+
Duplicate Book Name
Αντίγραφο Ονομασίας Βιβλίου
-
+
The Book Name "%s" has been entered more than once.
Η Ονομασία Βιβλίου "%s" έχει εισαχθεί πάνω από μία φορές.
@@ -711,39 +711,39 @@ be followed by one or more non-numeric characters.
BiblesPlugin.BibleManager
-
+
Scripture Reference Error
Σφάλμα Αναφοράς Βίβλου
-
+
Web Bible cannot be used
Η Βίβλος Web δεν μπορεί να χρησιμοποιηθεί
-
+
Text Search is not available with Web Bibles.
Η Αναζήτηση Κειμένου δεν είναι διαθέσιμη με Βίβλους Web.
-
+
You did not enter a search keyword.
You can separate different keywords by a space to search for all of your keywords and you can separate them by a comma to search for one of them.
Δεν δώσατε λέξη προς αναζήτηση.
Μπορείτε να διαχωρίσετε διαφορετικές λέξεις με κενό για να αναζητήσετε για όλες τις λέξεις και μπορείτε να τις διαχωρίσετε με κόμμα για να αναζητήσετε για μια από αυτές.
-
+
There are no Bibles currently installed. Please use the Import Wizard to install one or more Bibles.
Δεν υπάρχουν εγκατεστημένες Βίβλοι. Χρησιμοποιήστε τον Οδηγό Εισαγωγής για να εγκαταστήσετε μία η περισσότερες Βίβλους.
-
+
No Bibles Available
Βίβλοι Μη Διαθέσιμοι
-
+
Your scripture reference is either not supported by OpenLP or is invalid. Please make sure your reference conforms to one of the following patterns or consult the manual:
Book Chapter
@@ -766,79 +766,79 @@ Book Chapter%(verse)sVerse%(range)sChapter%(verse)sVerse
BiblesPlugin.BiblesTab
-
+
Verse Display
Εμφάνιση Εδαφίου
-
+
Only show new chapter numbers
Εμφάνιση μόνο των αριθμών νέων κεφαλαίων
-
+
Bible theme:
Θέμα Βίβλου:
-
+
No Brackets
Απουσία Παρενθέσεων
-
+
( And )
( Και )
-
+
{ And }
{ Και }
-
+
[ And ]
[ Και ]
-
+
Note:
Changes do not affect verses already in the service.
Σημείωση:
Οι αλλαγές δεν επηρεάζουν τα εδάφια που χρησιμοποιούνται.
-
+
Display second Bible verses
Εμφάνιση εδαφίων δεύτερης Βίβλου
-
+
Custom Scripture References
Εξατομικευμένες Βιβλικές Παραπομπές
-
+
Verse Separator:
Διαχωριστής Εδαφίων:
-
+
Range Separator:
Διαχωριστής Εύρους:
-
+
List Separator:
Διαχωριστής Λίστας:
-
+
End Mark:
Σήμανση Τέλους
-
+
Multiple alternative verse separators may be defined.
They have to be separated by a vertical bar "|".
Please clear this edit line to use the default value.
@@ -847,7 +847,7 @@ Please clear this edit line to use the default value.
Παρακαλώ σβήστε αυτή την γραμμή για χρήση της προκαθορισμένης τιμής.
-
+
Multiple alternative range separators may be defined.
They have to be separated by a vertical bar "|".
Please clear this edit line to use the default value.
@@ -856,7 +856,7 @@ Please clear this edit line to use the default value.
Παρακαλώ σβήστε αυτή την γραμμή για χρήση της προκαθορισμένης τιμής.
-
+
Multiple alternative list separators may be defined.
They have to be separated by a vertical bar "|".
Please clear this edit line to use the default value.
@@ -865,7 +865,7 @@ Please clear this edit line to use the default value.
Παρακαλώ σβήστε αυτή την γραμμή για χρήση της προκαθορισμένης τιμής.
-
+
Multiple alternative end marks may be defined.
They have to be separated by a vertical bar "|".
Please clear this edit line to use the default value.
@@ -874,29 +874,29 @@ Please clear this edit line to use the default value.
Παρακαλώ σβήστε αυτή την γραμμή για χρήση της προκαθορισμένης τιμής.
-
+
English
Αγγλικά
-
+
Default Bible Language
Προεπιλεγμένη Γλώσσα Βίβλου
-
+
Book name language in search field,
search results and on display:
Γλώσσα ονομασίας βιβλίου στο πεδίο αναζήτησης,
στα αποτελέσματα αναζήτησης και στην εμφάνιση:
-
+
Bible Language
Γλώσσα Βίβλου
-
+
Application Language
Γλώσσα Εφαρμογής
@@ -904,42 +904,42 @@ search results and on display:
BiblesPlugin.BookNameDialog
-
+
Select Book Name
Επιλέξτε Όνομα Βιβλίου
-
+
Current name:
Τρέχον όνομα:
-
+
Corresponding name:
Αντίστοιχο όνομα:
-
+
Show Books From
Εμφάνιση Βιβλίων Από
-
+
Old Testament
Παλαιά Διαθήκη
-
+
New Testament
Καινή Διαθήκη
-
+
Apocrypha
Απόκρυφα
-
+
The following book name cannot be matched up internally. Please select the corresponding name from the list.
Το ακόλουθο όνομα βιβλίου δεν βρέθηκε εσωτερικά. Παρακαλούμε επιλέξτε το αντίστοιχο αγγλικό όνομα από την λίστα.
@@ -947,7 +947,7 @@ search results and on display:
BiblesPlugin.BookNameForm
-
+
You need to select a book.
Πρέπει να επιλέξετε ένα βιβλίο.
@@ -955,18 +955,18 @@ search results and on display:
BiblesPlugin.CSVBible
-
+
Importing books... %s
Εισαγωγή βιβλίων... %s
-
+
Importing verses from %s...
Importing verses from <book name>...
Εισαγωγή εδαφίων από %s...
-
+
Importing verses... done.
Εισαγωγή εδαφίων... ολοκληρώθηκε.
@@ -974,69 +974,69 @@ search results and on display:
BiblesPlugin.EditBibleForm
-
+
Bible Editor
Συντάκτης Βίβλου
-
+
License Details
Λεπτομέρειες Άδειας
-
+
Version name:
Όνομα έκδοσης:
-
+
Copyright:
Πνευματικά Δικαιώματα:
-
+
Permissions:
Άδειες:
-
+
Default Bible Language
Προεπιλεγμένη Γλώσσα Βίβλου
-
+
Book name language in search field, search results and on display:
Γλώσσα ονομασίας βιβλίου στο πεδίο αναζήτησης, στα αποτελέσματα αναζήτησης και στην εμφάνιση:
-
+
Global Settings
Καθολικές Ρυθμίσεις
-
+
Bible Language
Γλώσσα Βίβλου
-
+
Application Language
Γλώσσα Εφαρμογής
-
+
English
Αγγλικά
-
+
This is a Web Download Bible.
It is not possible to customize the Book Names.
Αυτή είναι μία Βίβλος Κατεβασμένη από το Internet.
Δεν είναι δυνατή η τροποποίηση των ονομάτων των Βιβλίων.
-
+
To use the customized book names, "Bible language" must be selected on the Meta Data tab or, if "Global settings" is selected, on the Bible page in Configure OpenLP.
Για χρήση των παραμετροποιημένων ονομάτων βιβλίων, η "Γλώσσα Βίβλου" πρέπει να έχει επιλεχθεί στην καρτέλα Meta Data, ή αν έχει επιλεχθεί το "Καθολικές Ρυθμίσεις", στην σελίδα Βίβλων του μενού Ρύθμιση του OpenLP.
@@ -1044,38 +1044,38 @@ It is not possible to customize the Book Names.
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.
Υπήρξε ένα πρόβλημα κατά την λήψη των επιλεγμένων εδαφίων. Παρακαλούμε ελέγξτε την σύνδεση στο Internet και αν αυτό το σφάλμα επανεμφανιστεί παρακαλούμε σκεφτείτε να κάνετε αναφορά σφάλματος.
-
+
Parse Error
Σφάλμα Ανάλυσης
-
+
There was a problem extracting your verse selection. If this error continues to occur please consider reporting a bug.
Υπήρξε πρόβλημα κατά την εξαγωγή των επιλεγμένων εδαφίων σας. Αν αυτό το σφάλμα επανεμφανιστεί σκεφτείτε να κάνετε μια αναφορά σφάλματος.
@@ -1083,167 +1083,167 @@ It is not possible to customize the Book Names.
BiblesPlugin.ImportWizardForm
-
+
Bible Import Wizard
Οδηγός Εισαγωγής Βίβλου
-
+
This wizard will help you to import Bibles from a variety of formats. Click the next button below to start the process by selecting a format to import from.
Ο οδηγός αυτός θα σας βοηθήσει στην εισαγωγή Βίβλων από μια ποικιλία τύπων. Κάντε κλικ στο πλήκτρο επόμενο παρακάτω για να ξεκινήσετε την διαδικασία επιλέγοντας έναν τύπο αρχείου προς εισαγωγή.
-
+
Web Download
Λήψη μέσω Web
-
+
Location:
Τοποθεσία:
-
+
Crosswalk
Crosswalk
-
+
BibleGateway
BibleGateway
-
+
Bible:
Βίβλος:
-
+
Download Options
Επιλογές Λήψης
-
+
Server:
Εξυπηρετητής:
-
+
Username:
Όνομα Χρήστη:
-
+
Password:
Κωδικός:
-
+
Proxy Server (Optional)
Εξυπηρετητής Proxy (Προαιρετικό)
-
+
License Details
Λεπτομέρειες Άδειας
-
+
Set up the Bible's license details.
Ρυθμίστε τις λεπτομέρειες άδειας της Βίβλου.
-
+
Version name:
Όνομα έκδοσης:
-
+
Copyright:
Πνευματικά Δικαιώματα:
-
+
Please wait while your Bible is imported.
Παρακαλούμε περιμένετε όσο η Βίβλος σας εισάγεται.
-
+
You need to specify a file with books of the Bible to use in the import.
Πρέπει να καθορίσετε ένα αρχείο με βιβλία της Βίβλου για να χρησιμοποιήσετε για εισαγωγή.
-
+
You need to specify a file of Bible verses to import.
Πρέπει να καθορίσετε ένα αρχείο εδαφίων της Βίβλου προς εισαγωγή.
-
+
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
Αρχείο CSV
-
+
Bibleserver
Εξυπηρετητής Βίβλου
-
+
Permissions:
Άδειες:
-
+
Bible file:
Αρχείο Βίβλου:
-
+
Books file:
Αρχείο Βιβλίων:
-
+
Verses file:
Αρχείο εδαφίων:
-
+
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.
Η Βίβλος καταχωρήθηκε. Σημειώστε ότι τα εδάφια θα κατέβουν
@@ -1253,17 +1253,17 @@ demand and thus an internet connection is required.
BiblesPlugin.LanguageDialog
-
+
Select Language
Επιλογή Γλώσσας
-
+
OpenLP is unable to determine the language of this translation of the Bible. Please select the language from the list below.
Το OpenLP δεν μπορεί να αναγνωρίσει την γλώσσα αυτής της μετάφρασης της Βίβλου. Παρακαλούμε επιλέξτε την γλώσσα από την παρακάτω λίστα.
-
+
Language:
Γλώσσα:
@@ -1271,7 +1271,7 @@ demand and thus an internet connection is required.
BiblesPlugin.LanguageForm
-
+
You need to choose a language.
Πρέπει να επιλέξετε μια γλώσσα.
@@ -1279,92 +1279,92 @@ demand and thus an internet connection is required.
BiblesPlugin.MediaItem
-
+
Quick
Γρήγορο
-
+
Find:
Εύρεση:
-
+
Book:
Βιβλίο:
-
+
Chapter:
Κεφάλαιο:
-
+
Verse:
Εδάφιο:
-
+
From:
Από:
-
+
To:
Έως:
-
+
Text Search
Αναζήτηση Κειμένου
-
+
Second:
Δεύτερο:
-
+
Scripture Reference
Αναφορά Γραφής
-
+
Toggle to keep or clear the previous results.
Εναλλαγή διατήρησης ή καθαρισμού των προηγούμενων αποτελεσμάτων.
-
+
You cannot combine single and dual Bible verse search results. Do you want to delete your search results and start a new search?
Δεν μπορείτε να συνδυάσετε αποτελέσματα αναζητήσεων μονών και διπλών εδαφίων Βίβλου. Θέλετε να διαγράψετε τα αποτελέσματα αναζήτησης και να ξεκινήσετε νέα αναζήτηση;
-
+
Bible not fully loaded.
Βίβλος ατελώς φορτωμένη.
-
+
Information
Πληροφορίες
-
+
The second Bible does not contain all the verses that are in the main Bible. Only verses found in both Bibles will be shown. %d verses have not been included in the results.
Η δεύτερη Βίβλος δεν περιέχει όλα τα εδάφια που υπάρχουν στην κύρια Βίβλο. Θα εμφανιστούν μόνο τα εδάφια που βρίσκονται και στις δύο Βίβλους. %d εδάφια δεν έχουν συμπεριληφθεί στα αποτελέσματα.
-
+
Search Scripture Reference...
Αναζήτηση Αναφοράς Βίβλου...
-
+
Search Text...
Αναζήτηση Κειμένου...
-
+
Are you sure you want to delete "%s"?
Είστε σίγουροι ότι θέλετε να διαγράψετε το "%s" ;
@@ -1372,7 +1372,7 @@ demand and thus an internet connection is required.
BiblesPlugin.Opensong
-
+
Importing %s %s...
Importing <book name> <chapter>...
Εισαγωγή %s %s...
@@ -1381,12 +1381,12 @@ demand and thus an internet connection is required.
BiblesPlugin.OsisImport
-
+
Detecting encoding (this may take a few minutes)...
Ανίχνευση κωδικοποίησης (μπορεί να χρειαστεί μερικά λεπτά)...
-
+
Importing %s %s...
Importing <book name> <chapter>...
Εισαγωγή %s %s...
@@ -1395,149 +1395,149 @@ demand and thus an internet connection is required.
BiblesPlugin.UpgradeWizardForm
-
+
Select a Backup Directory
Επιλέξτε έναν Κατάλογο Αντιγράφων Ασφαλείας
-
+
Bible Upgrade Wizard
Οδηγός Αναβάθμισης Βίβλου
-
+
This wizard will help you to upgrade your existing Bibles from a prior version of OpenLP 2. Click the next button below to start the upgrade process.
Ο οδηγός αυτός θα σας βοηθήσει να αναβαθμίσετε τις υπάρχουσες Βίβλους σας από μία προηγούμενη έκδοση του OpenLP 2. Κάντε κλικ στο πλήκτρο επόμενο παρακάτω για να ξεκινήσετε την διαδικασία αναβάθμισης.
-
+
Select Backup Directory
Επιλέξτε Φάκελο Αντιγράφων Ασφαλείας
-
+
Please select a backup directory for your Bibles
Παρακαλούμε επιλέξτε έναν φάκελο αντιγράφων ασφαλείας για τις Βίβλους σας
-
+
Previous releases of OpenLP 2.0 are unable to use upgraded Bibles. This will create a backup of your current Bibles so that you can simply copy the files back to your OpenLP data directory if you need to revert to a previous release of OpenLP. Instructions on how to restore the files can be found in our <a href="http://wiki.openlp.org/faq">Frequently Asked Questions</a>.
Οι προηγούμενες εκδόσεις του OpenLP 2.0 δεν μπορούν να χρησιμοποιήσουν αναβαθμισμένες Βίβλους. Ετούτο το εργαλείο θα δημιουργήσει αντίγραφο ασφαλείας των τρεχόντων Βίβλων σας ώστε να αντιγράψετε απλά τα αρχεία πίσω στον φάκελο του OpenLP αν χρειαστείτε να γυρίσετε σε μια προηγούμενη έκδοση του OpenLP. Οδηγίες για το πως θα επαναφέρετε τα αρχεία μπορείτε να βρείτε στις <a href="http://wiki.openlp.org/faq"> Συχνές Ερωτήσεις</a>.
-
+
Please select a backup location for your Bibles.
Παρακαλούμε επιλέξτε μία τοποθεσία για αντίγραφα ασφαλείας για τις Βίβλους σας.
-
+
Backup Directory:
Φάκελος Αντιγράφων Ασφαλείας:
-
+
There is no need to backup my Bibles
Δεν είναι απαραίτητο να κάνω αντίγραφα ασφαλείας των Βίβλων μου
-
+
Select Bibles
Επιλογή Βίβλων
-
+
Please select the Bibles to upgrade
Παρακαλούμε επιλέξτε τις Βίβλους προς αναβάθμιση
-
+
Upgrading
Αναβάθμιση
-
+
Please wait while your Bibles are upgraded.
Παρακαλούμε περιμένετε όσο αναβαθμίζονται οι Βίβλοι σας.
-
+
The backup was not successful.
To backup your Bibles you need permission to write to the given directory.
Η δημιουργία αντιγράφων ασφαλείας δεν ήταν επιτυχής.
Για αντίγραφα ασφαλείας των Βίβλων σας χρειάζεστε δικαιώματα εγγραφής στον δηλωμένο φάκελο.
-
+
Upgrading Bible %s of %s: "%s"
Failed
Αναβάθμιση Βίβλου %s από %s: "%s"
Απέτυχε
-
+
Upgrading Bible %s of %s: "%s"
Upgrading ...
Αναβάθμιση Βίβλου %s από %s: "%s"
Αναβάθμιση ...
-
+
Download Error
Σφάλμα Λήψης
-
+
To upgrade your Web Bibles an Internet connection is required.
Για αναβάθμιση των Βίβλων Web χρειάζεστε σύνδεση στο Internet.
-
+
Upgrading Bible %s of %s: "%s"
Upgrading %s ...
Αναβάθμιση Βίβλου %s από %s: "%s"
Αναβάθμιση %s ...
-
+
Upgrading Bible %s of %s: "%s"
Complete
Αναβάθμιση Βίβλου %s από %s: "%s"
Ολοκληρώθηκε
-
+
, %s failed
, %s απέτυχε
-
+
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.
Αναβάθμιση Βίβλου(-ων): %s επιτυχής%s
Παρακαλούμε έχετε υπόψη ότι εδάφια από τις Βίβλους Web θα κατέβουν κατά απαίτηση και έτσι μια σύνδεση στο Internet είναι απαραίτητη.
-
+
Upgrading Bible(s): %s successful%s
Αναβάθμιση Βίβλου(-ων): %s επιτυχής%s
-
+
Upgrade failed.
Η Αναβάθμιση απέτυχε.
-
+
You need to specify a backup directory for your Bibles.
Πρέπει να καθορίσετε έναν φάκελο αντιγράφων ασφαλείας για τις Βίβλους σας.
-
+
Starting upgrade...
Έναρξη αναβάθμισης...
-
+
There are no Bibles that need to be upgraded.
Δεν υπάρχουν Βίβλοι που χρειάζονται αναβάθμιση.
@@ -1545,65 +1545,65 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I
CustomPlugin
-
+
<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>Πρόσθετο Εξατομικευμένης Διαφάνειας</strong><br />Το πρόσθετο εξατομικευμένης διαφάνειας παρέχει την δυνατότητα να στήσετε διαφάνειες που μπορούν να προβληθούν στην οθόνη όπως τα τραγούδια. Αυτό το πρόσθετο παρέχει περισσότερη ελευθερία από το πρόσθετο τραγουδιών.
-
+
Custom Slide
name singular
Εξατομικευμένη Διαφάνεια
-
+
Custom Slides
name plural
Εξατομικευμένες Διαφάνειες
-
+
Custom Slides
container title
Εξατομικευμένες Διαφάνειες
-
+
Load a new custom slide.
Φόρτωση νέας εξατομικευμένης διαφάνειας.
-
+
Import a custom slide.
Εισαγωγή εξατομικευμένης διαφάνειας.
-
+
Add a new custom slide.
Προσθήκη νέας εξατομικευμένης διαφάνειας.
-
+
Edit the selected custom slide.
Επεξεργασία της επιλεγμένης εξατομικευμένης διαφάνειας.
-
+
Delete the selected custom slide.
Διαγραφή της επιλεγμένης εξατομικευμένης διαφάνειας.
-
+
Preview the selected custom slide.
Προεπισκόπηση της επιλεγμένης εξατομικευμένης διαφάνειας.
-
+
Send the selected custom slide live.
Προβολή της επιλεγμένης εξατομικευμένης διαφάνειας.
-
+
Add the selected custom slide to the service.
Προσθήκη της επιλεγμένης εξατομικευμένης διαφάνειας σε λειτουργία.
@@ -1611,12 +1611,12 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I
CustomPlugin.CustomTab
-
+
Custom Display
Εξατομικευμένη Προβολή
-
+
Display footer
Προβολή υποσέλιδου
@@ -1624,62 +1624,62 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I
CustomPlugin.EditCustomForm
-
+
Edit Custom Slides
Επεξεργασία Εξατομικευμένων Διαφανειών
-
+
&Title:
&Τίτλος:
-
+
Add a new slide at bottom.
Προσθήκη νέας διαφάνειας κάτω.
-
+
Edit the selected slide.
Επεξεργασία επιλεγμένης διαφάνειας.
-
+
Edit all the slides at once.
Επεξεργασία όλων των διαφανειών ταυτόχρονα.
-
+
Split a slide into two by inserting a slide splitter.
Χωρίστε μια διαφάνεια σε δύο με εισαγωγή ενός διαχωριστή διαφανειών.
-
+
The&me:
Θέ&μα:
-
+
&Credits:
&Πιστώσεις:
-
+
You need to type in a title.
Πρέπει να δηλώσετε έναν τίτλο.
-
+
You need to add at least one slide
Πρέπει να προσθέσετε τουλάχιστον μία διαφάνεια
-
+
Ed&it All
&Επεξεργασία Όλων
-
+
Insert Slide
Εισαγωγή Διαφάνειας
@@ -1687,7 +1687,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I
CustomPlugin.MediaItem
-
+
Are you sure you want to delete the %n selected custom slide(s)?
Είστε σίγουροι ότι θέλετε να διαγράψετε την %n επιλεγμένη εξατομικευμένη διαφάνεια;
@@ -1698,60 +1698,60 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I
ImagePlugin
-
+
<strong>Image Plugin</strong><br />The image plugin provides displaying of images.<br />One of the distinguishing features of this plugin is the ability to group a number of images together in the service manager, making the displaying of multiple images easier. This plugin can also make use of OpenLP's "timed looping" feature to create a slide show that runs automatically. In addition to this, images from the plugin can be used to override the current theme's background, which renders text-based items like songs with the selected image as a background instead of the background provided by the theme.
<strong>Πρόσθετο Εικόνας</strong><br />Το πρόσθετο εικόνας παρέχει την προβολή εικόνων.<br />Ένα από τα εξέχοντα χαρακτηριστικά αυτού του πρόσθετου είναι η δυνατότητα να ομαδοποιήσετε πολλές εικόνες μαζί στον διαχειριστή λειτουργίας, κάνοντας την εμφάνιση πολλών εικόνων ευκολότερη. Επίσης μπορεί να κάνει χρήση του χαρακτηριστικού "προγραμματισμένη επανάληψη" για την δημιουργία παρουσίασης διαφανειών που τρέχει αυτόματα. Επιπρόσθετα εικόνες του πρόσθετου μπορούν να χρησιμοποιηθούν για παράκαμψη του φόντου του τρέχοντος θέματος, το οποίο αποδίδει αντικείμενα κειμένου όπως τα τραγούδια με την επιλεγμένη εικόνα ως φόντο αντί του φόντου που παρέχεται από το θέμα.
-
+
Image
name singular
Εικόνα
-
+
Images
name plural
Εικόνες
-
+
Images
container title
Εικόνες
-
+
Load a new image.
Φόρτωση νέας εικόνας.
-
+
Add a new image.
Προσθήκη νέας εικόνας.
-
+
Edit the selected image.
Επεξεργασία επιλεγμένης εικόνας.
-
+
Delete the selected image.
Διαγραφή επιλεγμένης εικόνας.
-
+
Preview the selected image.
Προεπισκόπηση επιλεγμένης εικόνας.
-
+
Send the selected image live.
Προβολή της επιλεγμένης εικόνας.
-
+
Add the selected image to the service.
Προβολή της επιλεγμένης εικόνας σε λειτουργία.
@@ -1759,7 +1759,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I
ImagePlugin.ExceptionDialog
-
+
Select Attachment
Επιλογή Επισυναπτόμενου
@@ -1767,32 +1767,32 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I
ImagePlugin.MediaItem
-
+
Select Image(s)
Επιλογή Εικόνας(-ων)
-
+
You must select an image to delete.
Πρέπει να επιλέξετε μια εικόνα προς διαγραφή.
-
+
You must select an image to replace the background with.
Πρέπει να επιλέξετε μια εικόνα με την οποία θα αντικαταστήσετε το φόντο.
-
+
Missing Image(s)
Απούσες Εικόνες
-
+
The following image(s) no longer exist: %s
Οι ακόλουθες εικόνες δεν υπάρχουν πια: %s
-
+
The following image(s) no longer exist: %s
Do you want to add the other images anyway?
Οι ακόλουθες εικόνες δεν υπάρχουν πια: %s
@@ -1812,17 +1812,17 @@ Do you want to add the other images anyway?
ImagesPlugin.ImageTab
-
+
Background Color
Χρώμα Φόντου
-
+
Default Color:
Προκαθορισμένο Χρώμα:
-
+
Visible background for images with aspect ratio different to screen.
Ορατό φόντο για εικόνες με διαφορετικές αναλογίες από την οθόνη.
@@ -1830,60 +1830,60 @@ Do you want to add the other images anyway?
MediaPlugin
-
+
<strong>Media Plugin</strong><br />The media plugin provides playback of audio and video.
<strong>Πρόσθετο Πολυμέσων</strong><br />Το πρόσθετο πολυμέσων παρέχει την αναπαραγωγή ήχου και βίντεο.
-
+
Media
name singular
Πολυμέσο
-
+
Media
name plural
Πολυμέσα
-
+
Media
container title
Πολυμέσα
-
+
Load new media.
Φόρτωση νέων πολυμέσων.
-
+
Add new media.
Προσθήκη νέων πολυμέσων.
-
+
Edit the selected media.
Επεξεργασία επιλεγμένων πολυμέσων.
-
+
Delete the selected media.
Διαγραφή επιλεγμένων πολυμέσων.
-
+
Preview the selected media.
Προεπισκόπηση επιλεγμένων πολυμέσων.
-
+
Send the selected media live.
Προβολή επιλεγμένων πολυμέσων.
-
+
Add the selected media to the service.
Προσθήκη επιλεγμένων πολυμέσων σε λειτουργία.
@@ -1891,57 +1891,57 @@ Do you want to add the other images anyway?
MediaPlugin.MediaItem
-
+
Select Media
Επιλογή πολυμέσων
-
+
You must select a media file to delete.
Πρέπει να επιλέξετε ένα αρχείο πολυμέσων για διαγραφή.
-
+
You must select a media file to replace the background with.
Πρέπει να επιλέξετε ένα αρχείο πολυμέσων με το οποίο θα αντικαταστήσετε το φόντο.
-
+
There was a problem replacing your background, the media file "%s" no longer exists.
Υπήρξε πρόβλημα κατά την αντικατάσταση του φόντου, τα αρχεία πολυμέσων "%s" δεν υπάρχουν πια.
-
+
Missing Media File
Απόντα Αρχεία Πολυμέσων
-
+
The file %s no longer exists.
Το αρχείο %s δεν υπάρχει πια.
-
+
Videos (%s);;Audio (%s);;%s (*)
Βίντεο (%s);;Ήχος (%s);;%s (*)
-
+
There was no display item to amend.
Δεν υπήρξε αντικείμενο προς προβολή για διόρθωση.
-
+
Unsupported File
Μη υποστηριζόμενο Αρχείο
-
+
Automatic
Αυτόματο
-
+
Use Player:
Χρήση Προγράμματος Αναπαραγωγής:
@@ -1949,22 +1949,22 @@ Do you want to add the other images anyway?
MediaPlugin.MediaTab
-
+
Available Media Players
Διαθέσιμα Προγράμματα Αναπαραγωγής
-
+
%s (unavailable)
%s (μη διαθέσιμο)
-
+
Player Order
Σειρά Αναπαραγωγής
-
+
Allow media player to be overridden
Επιτρέψτε την παράκαμψη του προγράμματος αναπαραγωγής πολυμέσων
@@ -1972,17 +1972,17 @@ Do you want to add the other images anyway?
OpenLP
-
+
Image Files
Αρχεία Εικόνων
-
+
Information
Πληροφορίες
-
+
Bible format has changed.
You have to upgrade your existing Bibles.
Should OpenLP upgrade now?
@@ -1994,37 +1994,37 @@ Should OpenLP upgrade now?
OpenLP.AboutForm
-
+
Credits
Πιστώσεις
-
+
License
Άδεια
-
+
Contribute
Συνεισφέρετε
-
+
build %s
έκδοση %s
-
+
This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License.
Αυτό το πρόγραμμα είναι ανοιχτό λογισμικό, μπορείτε να το διανείμετε και/ή να το τροποποιήσετε υπό τους όρους της άδειας GNU General Public License όπως δημοσιεύτηκε από το Ίδρυμα Ελεύθερου Λογισμικού, έκδοση 2 της Άδειας.
-
+
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See below for more details.
Αυτό το πρόγραμμα διανέμεται με την ελπίδα ότι θα είναι χρήσιμο, αλλά ΧΩΡΙΣ ΚΑΜΙΑ ΕΓΓΥΗΣΗ, χωρίς καν την συνεπαγόμενη εγγύηση ΕΜΠΟΡΙΚΟΤΗΤΑΣ ή ΧΡΗΣΗΣ ΓΙΑ ΣΥΓΚΕΚΡΙΜΕΝΟ ΣΚΟΠΟ. Δείτε παρακάτω για περισσότερες λεπτομέρειες.
-
+
Project Lead
%s
@@ -2149,7 +2149,7 @@ Final Credit
Αυτός μας ελευθέρωσε.
-
+
OpenLP <version><revision> - Open Source Lyrics Projection
OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if Impress, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector.
@@ -2166,7 +2166,7 @@ OpenLP is written and maintained by volunteers. If you would like to see more fr
Το OpenLP έχει γραφτεί και συντηρείται από εθελοντές. Αν θα θέλατε να δείτε περισσότερα δωρεάν Χριστιανικά προγράμματα να υλοποιούνται, παρακαλούμε σκεφτείτε να συνεισφέρετε χρησιμοποιώντας το παρακάτω πλήκτρο.
-
+
Copyright © 2004-2012 %s
Portions copyright © 2004-2012 %s
Πνευματικά Δικαιώματα © 2004-2012 %s
@@ -2176,264 +2176,264 @@ Portions copyright © 2004-2012 %s
OpenLP.AdvancedTab
-
+
UI Settings
Επιλογές Διεπαφής
-
+
Number of recent files to display:
Αριθμός πρόσφατων αρχείων προς απεικόνιση:
-
+
Remember active media manager tab on startup
Θυμήσου την καρτέλα του ενεργού διαχειριστή πολυμέσων κατά την εκκίνηση
-
+
Double-click to send items straight to live
Προβολή αντικειμένου άμεσα με διπλό κλικ
-
+
Expand new service items on creation
Ανάπτυξη νέων αντικειμένων λειτουργίας κατά την δημιουργία
-
+
Enable application exit confirmation
Ενεργοποίηση επιβεβαίωσης κατά την έξοδο
-
+
Mouse Cursor
Δείκτης Ποντικιού
-
+
Hide mouse cursor when over display window
Απόκρυψη δείκτη ποντικιού από το παράθυρο προβολής
-
+
Default Image
Προκαθορισμένη Εικόνα
-
+
Background color:
Χρώμα φόντου:
-
+
Image file:
Αρχείο εικόνας:
-
+
Open File
Άνοιγμα Αρχείου
-
+
Advanced
Για προχωρημένους
-
+
Preview items when clicked in Media Manager
Προεπισκόπηση αντικειμένων κατά το κλικ στον Διαχειριστή Πολυμέσων
-
+
Click to select a color.
Κάντε κλικ για επιλογή χρώματος.
-
+
Browse for an image file to display.
Αναζήτηση για αρχείο εικόνας προς προβολή.
-
+
Revert to the default OpenLP logo.
Επαναφορά στο προκαθορισμένο λογότυπο του OpenLP.
-
+
Service %Y-%m-%d %H-%M
This may not contain any of the following characters: /\?*|<>[]":+
See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for more information.
Λειτουργία %Y-%m-%d %H-%M
-
+
Default Service Name
Προκαθορισμένη Ονομασία Λειτουργίας
-
+
Enable default service name
Ενεργοποίηση Προκαθορισμένης Ονομασίας Λειτουργίας
-
+
Date and Time:
Ημερομηνία και Ώρα:
-
+
Monday
Δευτέρα
-
+
Tuesday
Τρίτη
-
+
Wednesday
Τετάρτη
-
+
Thurdsday
Πέμπτη
-
+
Friday
Παρασκευή
-
+
Saturday
Σάββατο
-
+
Sunday
Κυριακή
-
+
Now
Τώρα
-
+
Time when usual service starts.
Συνήθης ώρα έναρξης λειτουργίας.
-
+
Name:
Όνομα:
-
+
Consult the OpenLP manual for usage.
Συμβουλευτείτε το εγχειρίδιο του OpenLP για την χρήση.
-
+
Revert to the default service name "%s".
Επαναφορά στο προκαθορισμένο όνομα λειτουργίας "%s"
-
+
Example:
Παράδειγμα:
-
+
X11
X11
-
+
Bypass X11 Window Manager
Παράκαμψη Διαχειριστή Παραθύρων X11
-
+
Syntax error.
Σφάλμα Σύνταξης.
-
+
Data Location
Τοποθεσία Δεδομένων
-
+
Current path:
Τρέχουσα τοποθεσία:
-
+
Custom path:
Παραμετροποιημένη τοποθεσία:
-
+
Browse for new data file location.
Άνοιγμα περιηγητή για νέα τοποθεσία αρχείων δεδομένων.
-
+
Set the data location to the default.
Ορίστε την τοποθεσία δεδομένων στην προκαθορισμένη τοποθεσία.
-
+
Cancel
Ακύρωση
-
+
Cancel OpenLP data directory location change.
Ακυρώστε την αλλαγή τοποθεσίας του φακέλου δεδομένων του OpenLP.
-
+
Copy data to new location.
Αντιγραφή δεδομένων σε νέα τοποθεσία.
-
+
Copy the OpenLP data files to the new location.
Αντιγραφή των αρχείων δεδομένων του OpenLP στην νέα τοποθεσία.
-
+
<strong>WARNING:</strong> New data directory location contains OpenLP data files. These files WILL be replaced during a copy.
<strong>ΠΡΟΣΟΧΗ:</strong> Η τοποθεσία του νέου φακέλου δεδομένων περιέχει τα αρχεία δεδομένων του OpenLP. Τα αρχεία αυτά θα αντικατασταθούν κατά την αντιγραφή.
-
+
Data Directory Error
Σφάλμα Φακέλου Δεδομένων
-
+
Select Data Directory Location
Επιλογή Τοποθεσίας Φακέλου Δεδομένων
-
+
Confirm Data Directory Change
Επιβεβαίωση Αλλαγής Φακέλου Δεδομένων
-
+
Reset Data Directory
Επαναφορά Φακέλου Δεδομένων
-
+
Are you sure you want to change the location of the OpenLP data directory to the default location?
This location will be used after OpenLP is closed.
@@ -2442,7 +2442,7 @@ This location will be used after OpenLP is closed.
Η τοποθεσία αυτή θα χρησιμοποιηθεί αφού κλείσετε το OpenLP.
-
+
Overwrite Existing Data
Αντικατάσταση Υπάρχοντων Δεδομένων
@@ -2450,39 +2450,39 @@ This location will be used after OpenLP is closed.
OpenLP.ExceptionDialog
-
+
Error Occurred
Παρουσιάστηκε Σφάλμα
-
+
Oops! OpenLP hit a problem, and couldn't recover. The text in the box below contains information that might be helpful to the OpenLP developers, so please e-mail it to bugs@openlp.org, along with a detailed description of what you were doing when the problem occurred.
Ωχ! Το OpenLP αντιμετώπισε πρόβλημα και δεν επανήλθε. Το κείμενο στο παρακάτω πλαίσιο περιέχει πληροφορίες που μπορεί να είναι χρήσιμες στους προγραμματιστές του OpenLP, οπότε παρακαλούμε να το στείλετε με e-mail στην διεύθυνση bugs@openlp.org, μαζί με μία λεπτομερή αναφορά του τι κάνατε όταν παρουσιάστηκε το πρόβλημα.
-
+
Send E-Mail
Αποστολή E-Mail
-
+
Save to File
Αποθήκευση σε Αρχείο
-
+
Please enter a description of what you were doing to cause this error
(Minimum 20 characters)
Παρακαλούμε να περιγράψετε τι κάνατε που προκάλεσε αυτό το πρόβλημα
(20 χαρακτήρες τουλάχιστον)
-
+
Attach File
Επισύναψη Αρχείου
-
+
Description characters to enter : %s
Χαρακτήρες περιγραφής προς εισαγωγή: %s
@@ -2490,24 +2490,24 @@ This location will be used after OpenLP is closed.
OpenLP.ExceptionForm
-
+
Platform: %s
Πλατφόρμα: %s
-
+
Save Crash Report
Αποθήκευση Αναφοράς Σφάλματος
-
+
Text files (*.txt *.log *.text)
Αρχεία κειμένου (*.txt *.log *.text)
-
+
**OpenLP Bug Report**
Version: %s
@@ -2538,7 +2538,7 @@ Version: %s
-
+
*OpenLP Bug Report*
Version: %s
@@ -2574,17 +2574,17 @@ Version: %s
OpenLP.FileRenameForm
-
+
File Rename
Μετονομασία Αρχείου
-
+
New File Name:
Νέο Όνομα Αρχείου:
-
+
File Copy
Αντιγραφή Αρχείου
@@ -2592,17 +2592,17 @@ Version: %s
OpenLP.FirstTimeLanguageForm
-
+
Select Translation
Επιλογή Μετάφρασης
-
+
Choose the translation you'd like to use in OpenLP.
Επιλέξτε την μετάφραση που θέλετε να χρησιμοποιήσετε στο OpenLP.
-
+
Translation:
Μετάφραση:
@@ -2610,192 +2610,192 @@ Version: %s
OpenLP.FirstTimeWizard
-
+
Songs
Τραγούδια
-
+
First Time Wizard
Οδηγός Πρώτης Εκτέλεσης
-
+
Welcome to the First Time Wizard
Καλώς ορίσατε στον Οδηγό Πρώτης Εκτέλεσης
-
+
Activate required Plugins
Ενεργοποίηση απαιτούμενων Πρόσθετων
-
+
Select the Plugins you wish to use.
Επιλέξτε τα Πρόσθετα που θέλετε να χρησιμοποιήσετε.
-
+
Bible
Βίβλος
-
+
Images
Εικόνες
-
+
Presentations
Παρουσιάσεις
-
+
Media (Audio and Video)
Πολυμέσα (Ήχος και Βίντεο)
-
+
Allow remote access
Επιτρέψτε απομακρυσμένη πρόσβαση
-
+
Monitor Song Usage
Επίβλεψη Χρήσης Τραγουδιών
-
+
Allow Alerts
Επιτρέψτε τις Ειδοποιήσεις
-
+
Default Settings
Προκαθορισμένες Ρυθμίσεις
-
+
Downloading %s...
Λήψη %s...
-
+
Download complete. Click the finish button to start OpenLP.
Η λήψη ολοκληρώθηκε. Κάντε κλικ στο κουμπί τερματισμού για να ξεκινήσετε το OpenLP.
-
+
Enabling selected plugins...
Ενεργοποίηση των επιλεγμένων Πρόσθετων...
-
+
No Internet Connection
Καμία Σύνδεση Διαδικτύου
-
+
Unable to detect an Internet connection.
Δεν μπορεί να ανιχνευθεί σύνδεση στο διαδίκτυο.
-
+
Sample Songs
Δείγματα Τραγουδιών
-
+
Select and download public domain songs.
Επιλογή και λήψη τραγουδιών του δημόσιου πεδίου.
-
+
Sample Bibles
Δείγματα Βίβλων
-
+
Select and download free Bibles.
Επιλογή και λήψη δωρεάν Βίβλων.
-
+
Sample Themes
Δείγματα Θεμάτων
-
+
Select and download sample themes.
Επιλογή και λήψη δειγμάτων θεμάτων.
-
+
Set up default settings to be used by OpenLP.
Θέστε τις προκαθορισμένες ρυθμίσεις για χρήση από το OpenLP.
-
+
Default output display:
Προκαθορισμένη έξοδος προβολής:
-
+
Select default theme:
Επιλογή προκαθορισμένου θέματος:
-
+
Starting configuration process...
Εκκίνηση διαδικασίας διαμόρφωσης...
-
+
This wizard will help you to configure OpenLP for initial use. Click the next button below to start.
Αυτός ο οδηγός θα σας βοηθήσει να διαμορφώσετε το OpenLP για αρχική χρήση. Κάντε κλικ στο πλήκτρο Επόμενο παρακάτω για να ξεκινήσετε.
-
+
Setting Up And Downloading
Διαμόρφωση Και Λήψη
-
+
Please wait while OpenLP is set up and your data is downloaded.
Περιμένετε όσο το OpenLP διαμορφώνεται και γίνεται λήψη των δεδομένων σας.
-
+
Setting Up
Διαμόρφωση
-
+
Click the finish button to start OpenLP.
Κάντε κλικ στο πλήκτρο τερματισμού για να ξεκινήσετε το OpenLP.
-
+
Download complete. Click the finish button to return to OpenLP.
Λήψη ολοκληρώθηκε. Κάντε κλικ στο πλήκτρο τερματισμού για να γυρίσετε στο OpenLP.
-
+
Click the finish button to return to OpenLP.
Κάντε κλικ στο πλήκτρο τερματισμού για να γυρίσετε στο OpenLP.
-
+
Custom Slides
Εξατομικευμένες Διαφάνειες
-
+
Finish
Τέλος
-
+
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. Click 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.
@@ -2804,7 +2804,7 @@ To re-run the First Time Wizard and import this sample data at a later time, che
Για επανεκτέλεση του Οδηγού Πρώτης Εκτέλεσης και εισαγωγή των δειγμάτων δεδομένων σε ύστερη στιγμή, ελέγξτε την σύνδεσή σας στο διαδίκτυο και ξανατρέξτε αυτόν τον οδηγό επιλέγοντας "Εργαλεία/ Επανεκτέλεση Οδηγού Πρώτης Εκτέλεσης" από το OpenLP.
-
+
To cancel the First Time Wizard completely (and not start OpenLP), click the Cancel button now.
@@ -2816,52 +2816,52 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can
OpenLP.FormattingTagDialog
-
+
Configure Formatting Tags
Ρύθμιση Ετικετών Μορφοποίησης
-
+
Edit Selection
Επεξεργασία Επιλογής
-
+
Save
Αποθήκευση
-
+
Description
Περιγραφή
-
+
Tag
Ετικέτα
-
+
Start tag
Ετικέτα έναρξης
-
+
End tag
Ετικέτα λήξης
-
+
Tag Id
ID ετικέτας
-
+
Start HTML
Έναρξη HTML
-
+
End HTML
Τέλος HTML
@@ -2869,32 +2869,32 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can
OpenLP.FormattingTagForm
-
+
Update Error
Σφάλμα Ενημέρωσης
-
+
Tag "n" already defined.
Η ετικέτα "n" έχει ήδη οριστεί.
-
+
New Tag
Νέα Ετικέτα
-
+
<HTML here>
<HTML εδώ>
-
+
</and here>
</και εδώ>
-
+
Tag %s already defined.
Η ετικέτα %s έχει ήδη οριστεί.
@@ -2902,82 +2902,82 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can
OpenLP.FormattingTags
-
+
Red
Κόκκινο
-
+
Black
Μαύρο
-
+
Blue
Μπλε
-
+
Yellow
Κίτρινο
-
+
Green
Πράσινο
-
+
Pink
Ροζ
-
+
Orange
Πορτοκαλί
-
+
Purple
Μωβ
-
+
White
Άσπρο
-
+
Superscript
Εκθέτης
-
+
Subscript
Δείκτης
-
+
Paragraph
Παράγραφος
-
+
Bold
Έντονη γραφή
-
+
Italics
Πλάγια γραφή
-
+
Underline
Υπογράμμιση
-
+
Break
Διακοπή
@@ -2985,157 +2985,157 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can
OpenLP.GeneralTab
-
+
General
Γενικά
-
+
Monitors
Οθόνες
-
+
Select monitor for output display:
Επιλογή οθόνης για προβολή:
-
+
Display if a single screen
Εμφάνιση αν υπάρχει μόνο μια οθόνη
-
+
Application Startup
Έναρξη Εφαρμογής
-
+
Show blank screen warning
Εμφάνιση ειδοποίησης κενής οθόνης
-
+
Automatically open the last service
Αυτόματο άνοιγμα της τελευταίας λειτουργίας
-
+
Show the splash screen
Εμφάνιση της οθόνης καλωσορίσματος
-
+
Application Settings
Ρυθμίσεις Εφαρμογής
-
+
Prompt to save before starting a new service
Ερώτηση για αποθήκευση πριν την έναρξη νέας λειτουργίας
-
+
Automatically preview next item in service
Αυτόματη προεπισκόπηση του επόμενου αντικειμένου στην λειτουργία
-
+
sec
δευτ
-
+
CCLI Details
Πληροφορίες CCLI
-
+
SongSelect username:
Όνομα χρήστη SongSelect:
-
+
SongSelect password:
Κωδικός SongSelect:
-
+
X
X
-
+
Y
Y
-
+
Height
Ύψος
-
+
Width
Πλάτος
-
+
Check for updates to OpenLP
Έλεγχος για ενημερώσεις του OpenLP
-
+
Unblank display when adding new live item
Απευθείας προβολή όταν προστίθεται νέο αντικείμενο
-
+
Timed slide interval:
Χρονικό διάστημα διαφάνειας:
-
+
Background Audio
Ήχος Υπόβαθρου
-
+
Start background audio paused
Εκκίνηση του ήχου υπόβαθρου σε παύση
-
+
Service Item Slide Limits
Όρια Διαφάνειας Αντικειμένου Λειτουργίας
-
+
Override display position:
Αγνόηση θέσης εμφάνισης:
-
+
Repeat track list
Επανάληψη λίστας κομματιών
-
+
Behavior of next/previous on the last/first slide:
Συμπεριφορά επόμενης/προηγούμενης κατά την τελευταία/πρώτη διαφάνεια:
-
+
&Remain on Slide
&Παραμονή στην Διαφάνεια
-
+
&Wrap around
&Περιτύλιξη
-
+
&Move to next/previous service item
&Μετακίνηση στην επόμενο/προηγούμενο στοιχείο λειτουργίας
@@ -3143,12 +3143,12 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can
OpenLP.LanguageManager
-
+
Language
Γλώσσα
-
+
Please restart OpenLP to use your new language setting.
Παρακαλούμε επανεκκινήστε το OpenLP για να ενεργοποιηθεί η νέα γλώσσα.
@@ -3156,7 +3156,7 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can
OpenLP.MainDisplay
-
+
OpenLP Display
Προβολή του OpenLP
@@ -3164,287 +3164,287 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can
OpenLP.MainWindow
-
+
&File
&Αρχείο
-
+
&Import
&Εισαγωγή
-
+
&Export
Εξα&γωγή
-
+
&View
&Προβολή
-
+
M&ode
Λ&ειτουργία
-
+
&Tools
&Εργαλεία
-
+
&Settings
&Ρυθμίσεις
-
+
&Language
&Γλώσσα
-
+
&Help
&Βοήθεια
-
+
Media Manager
Διαχειριστής Πολυμέσων
-
+
Service Manager
Διαχειριστής Λειτουργίας
-
+
Theme Manager
Διαχειριστής Θεμάτων
-
+
&New
&Νέο
-
+
&Open
&Άνοιγμα
-
+
Open an existing service.
Άνοιγμα υπάρχουσας λειτουργίας.
-
+
&Save
&Αποθήκευση
-
+
Save the current service to disk.
Αποθήκευση τρέχουσας λειτουργίας στον δίσκο.
-
+
Save &As...
Αποθήκευση &Ως...
-
+
Save Service As
Αποθήκευση Λειτουργίας Ως
-
+
Save the current service under a new name.
Αποθήκευση τρέχουσας λειτουργίας υπό νέο όνομα.
-
+
E&xit
Έ&ξοδος
-
+
Quit OpenLP
Έξοδος από το OpenLP
-
+
&Theme
&Θέμα
-
+
&Configure OpenLP...
&Ρύθμιση του OpenLP...
-
+
&Media Manager
&Διαχειριστής Πολυμέσων
-
+
Toggle Media Manager
Εναλλαγή Διαχειριστή Πολυμέσων
-
+
Toggle the visibility of the media manager.
Εναλλαγή εμφάνισης του διαχειριστή πολυμέσων.
-
+
&Theme Manager
Διαχειριστής &Θεμάτων
-
+
Toggle Theme Manager
Εναλλαγή Διαχειριστή Θεμάτων
-
+
Toggle the visibility of the theme manager.
Εναλλαγή εμφάνισης του διαχειριστή θεμάτων.
-
+
&Service Manager
Διαχειριστής &Λειτουργίας
-
+
Toggle Service Manager
Εναλλαγή Διαχειριστή Λειτουργίας
-
+
Toggle the visibility of the service manager.
Εναλλαγή εμφάνισης του διαχειριστή λειτουργίας.
-
+
&Preview Panel
&Οθόνη Προεπισκόπησης
-
+
Toggle Preview Panel
Εναλλαγή Οθόνης Προεπισκόπησης
-
+
Toggle the visibility of the preview panel.
Εναλλαγή εμφάνισης της οθόνης προεπισκόπησης.
-
+
&Live Panel
Οθόνη Π&ροβολής
-
+
Toggle Live Panel
Εναλλαγή Οθόνης Προβολής
-
+
Toggle the visibility of the live panel.
Εναλλαγή εμφάνισης της οθόνης προβολής.
-
+
&Plugin List
&Λίστα Πρόσθετων
-
+
List the Plugins
Λίστα των Πρόσθετων
-
+
&User Guide
&Οδηγίες Χρήστη
-
+
&About
&Σχετικά
-
+
More information about OpenLP
Περισσότερες πληροφορίες για το OpenLP
-
+
&Online Help
&Online Βοήθεια
-
+
&Web Site
&Ιστοσελίδα
-
+
Use the system language, if available.
Χρήση της γλώσσας συστήματος, αν διατίθεται.
-
+
Set the interface language to %s
Θέστε την γλώσσα σε %s
-
+
Add &Tool...
Εργαλείο &Προσθήκης...
-
+
Add an application to the list of tools.
Προσθήκη εφαρμογής στην λίστα των εργαλείων.
-
+
&Default
&Προκαθορισμένο
-
+
Set the view mode back to the default.
Θέστε την προβολή στην προκαθορισμένη.
-
+
&Setup
&Εγκατάσταση
-
+
Set the view mode to Setup.
Θέστε την προβολή στην Εγκατάσταση.
-
+
&Live
&Ζωντανά
-
+
Set the view mode to Live.
Θέστε την προβολή σε Ζωντανά.
-
+
Version %s of OpenLP is now available for download (you are currently running version %s).
You can download the latest version from http://openlp.org/.
@@ -3453,108 +3453,108 @@ You can download the latest version from http://openlp.org/.
Μπορείτε να κατεβάσετε την τελευταία έκδοση από το http://openlp.org/.
-
+
OpenLP Version Updated
Η έκδοση του OpenLP αναβαθμίστηκε
-
+
OpenLP Main Display Blanked
Κύρια Οθόνη του OpenLP Κενή
-
+
The Main Display has been blanked out
Η Κύρια Οθόνη εκκενώθηκε
-
+
Default Theme: %s
Προκαθορισμένο Θέμα: %s
-
+
English
Please add the name of your language here
Αγγλικά
-
+
Configure &Shortcuts...
Ρύθμιση &Συντομεύσεων...
-
+
Close OpenLP
Κλείσιμο του OpenLP
-
+
Are you sure you want to close OpenLP?
Είστε σίγουροι ότι θέλετε να κλείσετε το OpenLP;
-
+
Open &Data Folder...
Άνοιγμα Φακέλου &Δεδομένων...
-
+
Open the folder where songs, bibles and other data resides.
Άνοιγμα του φακέλου που περιέχει τους ύμνους, τις βίβλους και άλλα δεδομένα.
-
+
&Autodetect
&Αυτόματη Ανίχνευση
-
+
Update Theme Images
Ενημέρωση Εικόνων Θέματος
-
+
Update the preview images for all themes.
Ενημέρωση των εικόνων προεπισκόπησης όλων των θεμάτων.
-
+
Print the current service.
Εκτύπωση της τρέχουσας λειτουργίας.
-
+
&Recent Files
&Πρόσφατα Αρχεία
-
+
L&ock Panels
&Κλείδωμα των Πάνελ
-
+
Prevent the panels being moved.
Αποτροπή της μετακίνησης των πάνελ.
-
+
Re-run First Time Wizard
Επανεκτέλεση Οδηγού Πρώτης Εκτέλεσης
-
+
Re-run the First Time Wizard, importing songs, Bibles and themes.
Επανεκτέλεση του Οδηγού Πρώτης Εκτέλεσης, για την εισαγωγή ύμνων, Βίβλων και θεμάτων.
-
+
Re-run First Time Wizard?
Επανεκτέλεση Οδηγού Πρώτης Εκτέλεσης;
-
+
Are you sure you want to re-run the First Time Wizard?
Re-running this wizard may make changes to your current OpenLP configuration and possibly add songs to your existing songs list and change your default theme.
@@ -3563,43 +3563,43 @@ Re-running this wizard may make changes to your current OpenLP configuration and
Η επαντεκτέλεσή του μπορεί να επιφέρει αλλαγές στις τρέχουσες ρυθμίσεις του OpenLP και πιθανότατα να προσθέσει ύμνους στην υπάρχουσα λίστα ύμνων σας και να αλλάξει το προκαθορισμένο θέμα σας.
-
+
Clear List
Clear List of recent files
Εκκαθάριση Λίστας
-
+
Clear the list of recent files.
Εκκαθάριση της λίστας πρόσφατων αρχείων.
-
+
Configure &Formatting Tags...
Ρύθμιση Ετικετών &Μορφοποίησης...
-
+
Export OpenLP settings to a specified *.config file
Εξαγωγή των ρυθμίσεων το OpenLP σε καθορισμένο αρχείο *.config
-
+
Settings
Ρυθμίσεις
-
+
Import OpenLP settings from a specified *.config file previously exported on this or another machine
Εισαγωγή ρυθμίσεων του OpenLP από καθορισμένο αρχείο *.config που έχει εξαχθεί προηγουμένως από αυτόν ή άλλον υπολογιστή
-
+
Import settings?
Εισαγωγή Ρυθμίσεων;
-
+
Are you sure you want to import settings?
Importing settings will make permanent changes to your current OpenLP configuration.
@@ -3612,37 +3612,37 @@ Importing incorrect settings may cause erratic behaviour or OpenLP to terminate
Η εισαγωγή λανθασμένων ρυθμίσεων μπορεί να προκαλέσει εσφαλμένη συμπεριφορά ή ανώμαλο τερματισμό του OpenLP.
-
+
Open File
Άνοιγμα Αρχείου
-
+
OpenLP Export Settings Files (*.conf)
Εξαγωγή Αρχείων Ρυθμίσεων του OpenLP (*.conf)
-
+
Import settings
Ρυθμίσεις εισαγωγής
-
+
OpenLP will now close. Imported settings will be applied the next time you start OpenLP.
Το OpenLP θα τερματιστεί. Οι εισηγμένες ρυθμίσεις θα εφαρμοστούν την επόμενη φορά που θα ξεκινήσετε το OpenLP.
-
+
Export Settings File
Εξαγωγή Αρχείου Ρυθμίσεων
-
+
OpenLP Export Settings File (*.conf)
Εξαγωγή Αρχείων Ρυθμίσεων του OpenLP (*.conf)
-
+
New Data Directory Error
Σφάλμα Νέου Φακέλου Δεδομένων
@@ -3650,12 +3650,12 @@ Importing incorrect settings may cause erratic behaviour or OpenLP to terminate
OpenLP.Manager
-
+
Database Error
Σφάλμα Βάσης Δεδομένων
-
+
The database being loaded was created in a more recent version of OpenLP. The database is version %d, while OpenLP expects version %d. The database will not be loaded.
Database: %s
@@ -3664,7 +3664,7 @@ Database: %s
Βάση Δεδομένων: %s
-
+
OpenLP cannot load your database.
Database: %s
@@ -3676,52 +3676,52 @@ Database: %s
OpenLP.MediaManagerItem
-
+
No Items Selected
Δεν Επιλέχθηκαν Αντικείμενα
-
+
&Add to selected Service Item
&Προσθήκη στο επιλεγμένο Αντικείμενο Λειτουργίας
-
+
You must select one or more items to preview.
Πρέπει να επιλέξετε ένα ή περισσότερα αντικείμενα για προεπισκόπηση.
-
+
You must select one or more items to send live.
Πρέπει να επιλέξετε ένα ή περισσότερα αντικείμενα για προβολή.
-
+
You must select one or more items.
Πρέπει να επιλέξετε ένα ή περισσότερα αντικείμενα.
-
+
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
Κανένα Αποτέλεσμα Αναζήτησης
@@ -3738,12 +3738,12 @@ Suffix not supported
Μη υποστηριζόμενη κατάληξη
-
+
&Clone
&Αντιγραφή
-
+
Duplicate files were found on import and were ignored.
Κατά την εισαγωγή των αρχείων βρέθηκαν διπλά αρχεία που αγνοήθηκαν.
@@ -3751,12 +3751,12 @@ Suffix not supported
OpenLP.OpenLyricsImportError
-
+
<lyrics> tag is missing.
Η ετικέτα <lyrics> απουσιάζει.
-
+
<verse> tag is missing.
Η ετικέτα <verse> απουσιάζει.
@@ -3764,42 +3764,42 @@ Suffix not supported
OpenLP.PluginForm
-
+
Plugin List
Λίστα Πρόσθετων
-
+
Plugin Details
Λεπτομέρειες Πρόσθετου
-
+
Status:
Κατάσταση:
-
+
Active
Ενεργό
-
+
Inactive
Ανενεργό
-
+
%s (Inactive)
%s (Ανενεργό)
-
+
%s (Active)
%s (Ενεργό)
-
+
%s (Disabled)
%s (Απενεργοποιημένο)
@@ -3807,12 +3807,12 @@ Suffix not supported
OpenLP.PrintServiceDialog
-
+
Fit Page
Πλάτος Σελίδας
-
+
Fit Width
Πλάτος Κειμένου
@@ -3820,77 +3820,77 @@ Suffix not supported
OpenLP.PrintServiceForm
-
+
Options
Επιλογές
-
+
Copy
Αντιγραφή
-
+
Copy as HTML
Αντιγραφή ως HTML
-
+
Zoom In
Μεγέθυνση
-
+
Zoom Out
Σμίκρυνση
-
+
Zoom Original
Αρχικό Ζουμ
-
+
Other Options
Άλλες Επιλογές
-
+
Include slide text if available
Συμπερίληψη κειμένου διαφάνειας αν διατίθεται
-
+
Include service item notes
Συμπερίληψη σημειώσεων αντικειμένου λειτουργίας
-
+
Include play length of media items
Συμπερίληψη διάρκειας των αντικειμένων πολυμέσων
-
+
Add page break before each text item
Προσθήκη αλλαγής σελίδας πριν από κάθε αντικείμενο κειμένου
-
+
Service Sheet
Σελίδα Λειτουργίας
-
+
Print
Εκτύπωση
-
+
Title:
Τίτλος:
-
+
Custom Footer Text:
Εξατομικευμένο Κείμενο Υποσέλιδου:
@@ -3898,12 +3898,12 @@ Suffix not supported
OpenLP.ScreenList
-
+
Screen
Οθόνη
-
+
primary
Πρωτεύων
@@ -3911,12 +3911,12 @@ Suffix not supported
OpenLP.ServiceItem
-
+
<strong>Start</strong>: %s
<strong>Έναρξη</strong>: %s
-
+
<strong>Length</strong>: %s
<strong>Διάρκεια</strong>: %s
@@ -3924,7 +3924,7 @@ Suffix not supported
OpenLP.ServiceItemEditForm
-
+
Reorder Service Item
Ανακατανομή Αντικειμένων Λειτουργίας
@@ -3932,279 +3932,279 @@ 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)
Αρχεία Λειτουργίας του OpenLP (*.osz)
-
+
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
&Ανάπτυξη όλων
-
+
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
Προβολή &Προεπισκόπησης
-
+
Modified Service
Τροποποιημένη Λειτουργία
-
+
The current service has been modified. Would you like to save this service?
Η τρέχουσα λειτουργία έχει τροποποιηθεί. Θέλετε να αποθηκεύσετε ετούτη την λειτουργία;
-
+
Custom Service Notes:
Εξατομικευμένες Σημειώσεις Λειτουργίας:
-
+
Notes:
Σημειώσεις:
-
+
Playing time:
Χρόνος Αναπαραγωγής:
-
+
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.
Αυτό το αρχείο είναι είτε φθαρμένο είτε δεν είναι αρχείο λειτουργίας του OpenLP 2.0.
-
+
Service File Missing
Απουσία Αρχείου Λειτουργίας
-
+
Slide theme
Θέμα διαφάνειας
-
+
Notes
Σημειώσεις
-
+
Edit
Επεξεργασία
-
+
Service copy only
Επεξεργασία αντιγράφου μόνο
-
+
Error Saving File
Σφάλμα Αποθήκευσης Αρχείου
-
+
There was an error saving your file.
Υπήρξε σφάλμα κατά την αποθήκευση του αρχείου σας.
@@ -4212,7 +4212,7 @@ The content encoding is not UTF-8.
OpenLP.ServiceNoteForm
-
+
Service Item Notes
Σημειώσεις Αντικειμένου Λειτουργίας
@@ -4220,7 +4220,7 @@ The content encoding is not UTF-8.
OpenLP.SettingsForm
-
+
Configure OpenLP
Ρύθμιση του OpenLP
@@ -4228,67 +4228,67 @@ The content encoding is not UTF-8.
OpenLP.ShortcutListDialog
-
+
Action
Ενέργεια
-
+
Shortcut
Συντόμευση
-
+
Duplicate Shortcut
Αντίγραφο Συντόμευσης
-
+
The shortcut "%s" is already assigned to another action, please use a different shortcut.
Η συντόμευση "%s" έχει ήδη ανατεθεί σε άλλη ενέργεια, παρακαλούμε χρησιμοποιήστε διαφορετική συντόμευση.
-
+
Alternate
Εναλλακτική
-
+
Select an action and click one of the buttons below to start capturing a new primary or alternate shortcut, respectively.
Επιλέξτε μια ενέργεια και πιέστε ένα από τα παρακάτω πλήκτρα για να ξεκινήσετε την καταγραφή μιας κύριας ή εναλλακτικής συντόμευσης, αντίστοιχα.
-
+
Default
Προκαθορισμένο
-
+
Custom
Εξατομικευμένο
-
+
Capture shortcut.
Καταγραφή συντόμευσης.
-
+
Restore the default shortcut of this action.
Αποκατάσταση της προκαθορισμένης συντόμευσης αυτής της ενέργειας.
-
+
Restore Default Shortcuts
Αποκατάσταση Προκαθορισμένων Συντομεύσεων
-
+
Do you want to restore all shortcuts to their defaults?
Θέλετε να αποκαταστήσετε όλες τις συντομεύσεις στις προκαθορισμένες;
-
+
Configure Shortcuts
Ρύθμιση Συντομεύσεων
@@ -4296,172 +4296,172 @@ The content encoding is not UTF-8.
OpenLP.SlideController
-
+
Hide
Απόκρυψη
-
+
Go To
Μετάβαση
-
+
Blank Screen
Κενή Οθόνη
-
+
Blank to Theme
Προβολή Θέματος
-
+
Show Desktop
Εμφάνιση Επιφάνειας Εργασίας
-
+
Previous Service
Προηγούμενη Λειτουργία
-
+
Next Service
Επόμενη Λειτουργία
-
+
Escape Item
Αποφυγή Αντικειμένου
-
+
Move to previous.
Μετακίνηση στο προηγούμενο.
-
+
Move to next.
Μετακίνηση στο επόμενο.
-
+
Play Slides
Αναπαραγωγή Διαφανειών
-
+
Delay between slides in seconds.
Καθυστέρηση μεταξύ διαφανειών σε δευτερόλεπτα.
-
+
Move to live.
Μεταφορά σε προβολή.
-
+
Add to Service.
Προσθήκη στην Λειτουργία.
-
+
Edit and reload song preview.
Επεξεργασία και επαναφόρτωση προεπισκόπισης ύμνου.
-
+
Start playing media.
Έναρξη αναπαραγωγής πολυμέσων.
-
+
Pause audio.
Παύση ήχου.
-
+
Pause playing media.
Παύση αναπαραγωγής πολυμέσων.
-
+
Stop playing media.
Σταμάτημα αναπαργωγής πολυμέσων.
-
+
Video position.
Θέση Video.
-
+
Audio Volume.
Ένταση Ήχου.
-
+
Go to "Verse"
Πήγαινε στην "Στροφή"
-
+
Go to "Chorus"
Πήγαινε στην "Επωδό"
-
+
Go to "Bridge"
Πήγαινε στην "Γέφυρα"
-
+
Go to "Pre-Chorus"
Πήγαινε στην "Προ-Επωδό"
-
+
Go to "Intro"
Πήγαινε στην "Εισαγωγή"
-
+
Go to "Ending"
Πήγαινε στο"Τέλος"
-
+
Go to "Other"
Πήγαινε στο "Άλλο"
-
+
Previous Slide
Προηγούμενη Διαφάνεια
-
+
Next Slide
Επόμενη Διαφάνεια
-
+
Pause Audio
Κομμάτι σε Αναμονή
-
+
Background Audio
Κομμάτι Φόντου
-
+
Go to next audio track.
Μετάβαση στο επόμενο κομμάτι.
-
+
Tracks
Κομμάτια
@@ -4469,17 +4469,17 @@ The content encoding is not UTF-8.
OpenLP.SpellTextEdit
-
+
Spelling Suggestions
Προτάσεις Ορθογραφίας
-
+
Formatting Tags
Ετικέτες Μορφοποίησης
-
+
Language:
Γλώσσα:
@@ -4487,67 +4487,67 @@ The content encoding is not UTF-8.
OpenLP.StartTimeForm
-
+
Hours:
Ώρες:
-
+
Minutes:
Λεπτά:
-
+
Seconds:
Δευτερόλεπτα:
-
+
Item Start and Finish Time
Ώρα Έναρξης και Λήξης Αντικειμένου
-
+
Start
Έναρξη
-
+
Finish
Τέλος
-
+
Length
Διάρκεια
-
+
Time Validation Error
Σφάλμα Ελέγχου Χρόνου
-
+
Finish time is set after the end 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.
Το κόκκινο κουτί δείχνει το υποσέλιδο.
@@ -4555,32 +4555,32 @@ The content encoding is not UTF-8.
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 γραμμές ανά διαφάνεια)
@@ -4588,72 +4588,72 @@ The content encoding is not UTF-8.
OpenLP.ThemeManager
-
+
Create a new theme.
Δημιουργία νέου θέματος.
-
+
Edit Theme
Επεξεργασία Θέματος
-
+
Edit a theme.
Επεξεργασία ενός θέματος.
-
+
Delete Theme
Διαγραφή Θέματος
-
+
Delete a theme.
Διαγραφή ενός θέματος.
-
+
Import Theme
Εισαγωγή Θέματος
-
+
Import a theme.
Εισαγωγή ενός θέματος.
-
+
Export Theme
Εξαγωγή Θέματος
-
+
Export a theme.
Εξαγωγή ενός θέματος.
-
+
&Edit Theme
&Επεξεργασία Θέματος
-
+
&Delete Theme
&Διαγραφή Θέματος
-
+
Set As &Global Default
Ορισμός Ως &Γενικής Προεπιλογής
-
+
%s (default)
%s (προκαθορισμένο)
-
+
You must select a theme to edit.
Πρέπει να επιλέξετε ένα θέμα προς επεξεργασία.
@@ -4668,87 +4668,87 @@ The content encoding is not UTF-8.
Το Θέμα %s χρησιμοποιείται στο πρόσθετο %s.
-
+
You have not selected a theme.
Δεν έχετε επιλέξει θέμα.
-
+
Save Theme - (%s)
Αποθήκευση Θέματος - (%s)
-
+
Theme Exported
Θέμα Εξήχθη
-
+
Your theme has been successfully exported.
Το θέμα σας εξήχθη επιτυχώς.
-
+
Theme Export Failed
Εξαγωγή Θέματος Απέτυχε
-
+
Your theme could not be exported due to an error.
Το θέμα σας δεν εξήχθη λόγω σφάλματος.
-
+
Select Theme Import File
Επιλέξτε Αρχείο Εισαγωγής Θέματος
-
+
File is not a valid theme.
Το αρχείο δεν αποτελεί έγκυρο θέμα.
-
+
&Copy Theme
&Αντιγραφή Θέματος
-
+
&Rename Theme
&Μετονομασία Θέματος
-
+
&Export Theme
&Εξαγωγή Θέματος
-
+
You must select a theme to rename.
Πρέπει να επιλέξετε ένα θέμα για μετονομασία.
-
+
Rename Confirmation
Επιβεβαίωση Μετονομασίας
-
+
Rename %s theme?
Μετονομασία θέματος %s;
-
+
You must select a theme to delete.
Πρέπει να επιλέξετε ένα θέμα προς διαγραφή.
-
+
Delete Confirmation
Επιβεβαίωση Διαγραφής
-
+
Delete %s theme?
Διαγραφή θέματος %s;
@@ -4763,18 +4763,18 @@ The content encoding is not UTF-8.
Υπάρχει ήδη θέμα με αυτό το όνομα.
-
+
OpenLP Themes (*.theme *.otz)
Θέματα OpenLP (*.theme *.otz)
-
+
Copy of %s
Copy of <theme name>
Αντιγραφή του %s
-
+
Theme Already Exists
Ήδη Υπαρκτό Θέμα
@@ -4782,320 +4782,320 @@ 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:
Θέση 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:
Όνομα θέματος:
-
+
Edit Theme - %s
Επεξεργασία Θέματος - %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
Προεπισκόπηση Σχεδίου
-
+
Transparent
Διαφανές
+
+
+ Preview and Save
+
+
+
+
+ Preview the theme and save it.
+
+
OpenLP.ThemesTab
-
+
Global Theme
Καθολικό Θέμα
-
+
Theme Level
Επίπεδο Θέματος
-
+
S&ong Level
Επίπεδο &Ύμνου
-
+
Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme.
Χρήση του θέματος από κάθε ύμνο στην βάση δεδομένων. Αν ένας ύμνος δεν έχει ένα θέμα συνδεόμενο με αυτόν, θα γίνει χρήση του θέματος της λειτουργίας. Αν η λειτουργία δεν έχει θέμα, τότε θα γίνει χρήση του καθολικού θέματος.
-
+
&Service Level
Επίπεδο &Λειτουργίας
-
+
Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme.
Χρήση του θέματος της λειτουργίας, παρακάμπτοντας τα θέματα των ύμνων. Αν η λειτουργία δεν έχει θέμα, θα χρησιμοποιηθεί το καθολικό θέμα.
-
+
&Global Level
&Καθολικό Επίπεδο
-
+
Use the global theme, overriding any themes associated with either the service or the songs.
Χρήση του καθολικού θέματος, παρακάμπτοντας όλα τα υπόλοιπα θέματα λειτουργίας ή ύμνων.
-
+
Themes
Θέματα
@@ -5103,591 +5103,591 @@ The content encoding is not UTF-8.
OpenLP.Ui
-
+
Error
Σφάλμα
-
+
About
Σχετικά
-
+
&Add
&Προσθήκη
-
+
Advanced
Για προχωρημένους
-
+
All Files
Όλα τα Αρχεία
-
+
Bottom
Κάτω
-
+
Browse...
Αναζήτηση...
-
+
Cancel
Άκυρο
-
+
CCLI number:
Αριθμός CCLI:
-
+
Create a new service.
Δημιουργία νέας λειτουργίας.
-
+
&Delete
&Διαγραφή
-
+
&Edit
&Επεξεργασία
-
+
Empty Field
Κενό Πεδίο
-
+
Export
Εξαγωγή
-
+
pt
Abbreviated font pointsize unit
pt
-
+
Image
Εικόνα
-
+
Import
Εισαγωγή
-
+
Live
Ζωντανά
-
+
Live Background Error
Σφάλμα Φόντου Προβολής
-
+
Load
Φόρτωση
-
+
Middle
Μέσο
-
+
New
Νέο
-
+
New Service
Νέα Λειτουργία
-
+
New Theme
Νέο Θέμα
-
+
No File Selected
Singular
Δεν Επιλέχθηκε Αρχείο
-
+
No Files Selected
Plural
Δεν Επιλέχθηκαν Αρχεία
-
+
No Item Selected
Singular
Δεν Επιλέχθηκε Αντικείμενο
-
+
No Items Selected
Plural
Δεν Επιλέχθηκαν Αντικείμενα
-
+
openlp.org 1.x
openlp.org 1.x
-
+
OpenLP 2.0
OpenLP 2.0
-
+
Preview
Προεπισκόπηση
-
+
Replace Background
Αντικατάσταση Φόντου
-
+
Reset Background
Επαναφορά Φόντου
-
+
s
The abbreviated unit for seconds
δ
-
+
Save && Preview
Αποθήκευση && Προεπισκόπηση
-
+
Search
Αναζήτηση
-
+
You must select an item to delete.
Πρέπει να επιλέξετε ένα αντικείμενο προς διαγραφή.
-
+
You must select an item to edit.
Πρέπει να επιλέξετε ένα αντικείμενο για επεξεργασία.
-
+
Save Service
Αποθήκευση Λειτουργίας
-
+
Service
Λειτουργία
-
+
Start %s
Έναρξη %s
-
+
Theme
Singular
Θέμα
-
+
Themes
Plural
Θέματα
-
+
Top
Κορυφή
-
+
Version
Έκδοση
-
+
Delete the selected item.
Διαγραφή επιλεγμένου αντικειμένου.
-
+
Move selection up one position.
Μεταφορά επιλογής μία θέση επάνω.
-
+
Move selection down one position.
Μεταφορά επιλογής μία θέση κάτω.
-
+
&Vertical Align:
&Κάθετη Ευθυγράμμιση:
-
+
Finished import.
Τέλος εισαγωγής.
-
+
Format:
Μορφή:
-
+
Importing
Εισαγωγή
-
+
Importing "%s"...
Εισαγωγή του "%s"...
-
+
Select Import Source
Επιλέξτε Μέσο Εισαγωγής
-
+
Select the import format and the location to import from.
Επιλέξτε την μορφή εισαγωγής και την τοποθεσία από την οποία θα γίνει η εισαγωγή.
-
+
The openlp.org 1.x importer has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "python-sqlite" module.
Ο εισαγωγέας του openlp.org 1.x έχει απενεργοποιηθεί εξαιτίας απόντος module του python. Αν θέλετε να χρησιμοποιήσετε αυτόν τον εισαγωγέα, θα χρειαστεί να εγκαταστήσετε το module "python-sqllite".
-
+
Open %s File
Άνοιγμα %s Αρχείου
-
+
%p%
%p%
-
+
Ready.
Έτοιμο.
-
+
Starting import...
Έναρξη εισαγωγής...
-
+
You need to specify at least one %s file to import from.
A file type e.g. OpenSong
Πρέπει να καθορίσετε τουλάχιστον ένα %s αρχείο από το οποίο να γίνει εισαγωγή.
-
+
Welcome to the Bible Import Wizard
Καλωσορίσατε στον Οδηγό Εισαγωγής Βίβλου
-
+
Welcome to the Song Export Wizard
Καλωσορίσατε στον Οδηγό Εξαγωγής Ύμνου
-
+
Welcome to the Song Import Wizard
Καλωσορίσατε στον Οδηγό Εισαγωγής Ύμνου
-
+
Author
Singular
Συγγραφέας
-
+
Authors
Plural
Συγγραφείς
-
+
©
Copyright symbol.
©
-
+
Song Book
Singular
Υμνολόγιο
-
+
Song Books
Plural
Υμνολόγια
-
+
Song Maintenance
Διαχείριση Ύμνων
-
+
Topic
Singular
Κατηγορία
-
+
Topics
Plural
Κατηγορίες
-
+
Continuous
Συνεχές
-
+
Default
Προκαθορισμένο
-
+
Display style:
Στυλ Παρουσίασης:
-
+
Duplicate Error
Σφάλμα Αντίγραφου
-
+
File
Αρχείο
-
+
Help
Βοήθεια
-
+
h
The abbreviated unit for hours
ω
-
+
Layout style:
Στυλ σχεδίου:
-
+
Live Toolbar
Εργαλειοθήκη Προβολής
-
+
m
The abbreviated unit for minutes
λ
-
+
OpenLP is already running. Do you wish to continue?
Το OpenLP ήδη εκτελείται. Θέλετε να συνεχίσετε;
-
+
Settings
Ρυθμίσεις
-
+
Tools
Εργαλεία
-
+
Unsupported File
Μη Υποστηριζόμενο Αρχείο
-
+
Verse Per Slide
Εδάφιο Ανά Διαφάνεια
-
+
Verse Per Line
Εδάφιο Ανά Γραμμή
-
+
View
Προβολή
-
+
Title and/or verses not found
Δεν βρέθηκαν τίτλος και/ή εδάφια
-
+
XML syntax error
Συντακτικό λάθος XML
-
+
View Mode
Λειτουργία Προβολής
-
+
Open service.
Άνοιγμα λειτουργίας.
-
+
Print Service
Εκτύπωση Λειτουργίας
-
+
Replace live background.
Αντικατάσταση του προβαλλόμενου φόντου.
-
+
Reset live background.
Επαναφορά προβαλλόμενου φόντου.
-
+
Split a slide into two only if it does not fit on the screen as one slide.
Διαίρεση μιας διαφάνειας σε δύο μόνο αν δεν χωρά στην οθόνη ως μια διαφάνεια.
-
+
Welcome to the Bible Upgrade Wizard
Καλωσορίσατε στον Οδηγό Αναβάθμισης Βίβλου
-
+
Confirm Delete
Επιβεβαίωση Διαγραφής
-
+
Play Slides in Loop
Αναπαραγωγή Διαφανειών Κυκλικά
-
+
Play Slides to End
Αναπαραγωγή Διαφανειών έως Τέλους
-
+
Stop Play Slides in Loop
Τερματισμός Κυκλικής Αναπαραγωγής Διαφανειών
-
+
Stop Play Slides to End
Τερματισμός Αναπαραγωγής Διαφανειών έως Τέλους
-
+
Next Track
Επόμενο Κομμάτι
-
+
Search Themes...
Search bar place holder text
Αναζήτηση Θεμάτων...
-
+
Optional &Split
Προαιρετικός &Διαχωρισμός
-
+
Invalid Folder Selected
Singular
Επιλέχθηκε Ακατάλληλος Φάκελος
-
+
Invalid File Selected
Singular
Επιλέχθηκε Ακατάλληλο Αρχείο
-
+
Invalid Files Selected
Plural
Επιλέχθηκαν Ακατάλληλα Αρχεία
-
+
No Folder Selected
Singular
Δεν Επιλέχτηκε Φάκελος
-
+
Open %s Folder
Άνοιγμα %s Φακέλου
-
+
You need to specify one %s file to import from.
A file type e.g. OpenSong
Πρέπει να καθορίσετε ένα %s αρχείο από το οποίο να γίνει εισαγωγή.
-
+
You need to specify one %s folder to import from.
A song format e.g. PowerSong
Πρέπει να καθορίσετε έναν %s φάκελο από τον οποίο θα γίνει εισαγωγή.
@@ -5696,25 +5696,25 @@ The content encoding is not UTF-8.
OpenLP.core.lib
-
+
%1 and %2
Locale list separator: 2 items
%1 και %2
-
+
%1, and %2
Locale list separator: end
%1, και %2
-
+
%1, %2
Locale list separator: middle
%1, %2
-
+
%1, %2
Locale list separator: start
%1, %2
@@ -5723,50 +5723,50 @@ The content encoding is not UTF-8.
PresentationPlugin
-
+
<strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box.
<strong>Πρόσθετο Παρουσιάσεων</strong><br />Το πρόσθετο παρουσιάσεων παρέχει την δυνατότητα να εμφανίζονται παρουσιάσεις με χρήση μιας σειράς διαφορετικών προγραμμάτων. Η επιλογή από τα διαθέσιμα προγράμματα είναι δυνατή στον χρήστη μέσω σχετικής λίστας.
-
+
Presentation
name singular
Παρουσίαση
-
+
Presentations
name plural
Παρουσιάσεις
-
+
Presentations
container title
Παρουσιάσεις
-
+
Load a new presentation.
Φόρτωση νέας παρουσίασης.
-
+
Delete the selected presentation.
Διαγραφή επιλεγμένης παρουσίασης.
-
+
Preview the selected presentation.
Προεπισκόπηση επιλεγμένης παρουσίασης.
-
+
Send the selected presentation live.
Προβολή της επιλεγμένης παρουσίασης.
-
+
Add the selected presentation to the service.
Πρόσθεση της επιλεγμένης παρουσίασης στην λειτουργία.
@@ -5774,52 +5774,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 is incomplete, please reload.
Η παρουσίαση %s είναι ατελής, παρακαλούμε φορτώστε την ξανά.
-
+
The presentation %s no longer exists.
Η παρουσίαση %s δεν υπάρχει πλέον.
@@ -5827,17 +5827,17 @@ The content encoding is not UTF-8.
PresentationPlugin.PresentationTab
-
+
Available Controllers
Διαθέσιμοι Ελεγκτές
-
+
%s (unavailable)
%s (μη διαθέσιμο)
-
+
Allow presentation application to be overridden
Επιτρέψτε την παράκαμψη του προγράμματος παρουσίασης
@@ -5845,24 +5845,24 @@ The content encoding is not UTF-8.
RemotePlugin
-
+
<strong>Remote Plugin</strong><br />The remote plugin provides the ability to send messages to a running version of OpenLP on a different computer via a web browser or through the remote API.
<strong>Πρόσθετο Τηλεχειρισμού</strong><br />Το πρόσθετο τηλεχειρισμού παρέχει την δυνατότητα να αποστείλετε μηνύματα σε μία υπό εκτέλεση έκδοση του OpenLP σε διαφορετικό υπολογιστή μέσω web browser είτε μέσω του API τηλεχειρισμού.
-
+
Remote
name singular
Τηλεχειρισμός
-
+
Remotes
name plural
Τηλεχειριστήρια
-
+
Remote
container title
Απομακρυσμένη Πρόσβαση
@@ -5871,107 +5871,107 @@ The content encoding is not UTF-8.
RemotePlugin.Mobile
-
+
OpenLP 2.0 Remote
Τηλεχειρισμός OpenLP 2.0
-
+
OpenLP 2.0 Stage View
Προβολή Πίστας OpenLP 2.0
-
+
Service Manager
Διαχειριστής Λειτουργίας
-
+
Slide Controller
Ελεγκτής Διαφανειών
-
+
Alerts
Ειδοποιήσεις
-
+
Search
Αναζήτηση
-
+
Refresh
Ανανέωση
-
+
Blank
Κενή
-
+
Show
Προβολή
-
+
Prev
Προήγ
-
+
Next
Επόμ
-
+
Text
Κείμενο
-
+
Show Alert
Εμφάνιση Ειδοποίησης
-
+
Go Live
Μετάβαση σε Προβολή
-
+
No Results
Κανένα Αποτέλεσμα
-
+
Options
Επιλογές
-
+
Add to Service
Προσθήκη στην Λειτουργία
-
+
Home
Αρχική Σελίδα
-
+
Theme
Θέμα
-
+
Desktop
Επιφάνεια Εργασίας
-
+
Add & Go to Service
Προσθήκη & Μετάβαση στην Λειτουργία
@@ -5979,42 +5979,42 @@ 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
Εμφάνιση χρόνου πίστας σε 12ωρη μορφή
-
+
Android App
Εφαρμογή Android
-
+
Scan the QR code or click <a href="https://market.android.com/details?id=org.openlp.android">download</a> to install the Android app from the Market.
Σκανάρετε τον κώδικα QR ή κάντε κλικ στο <a href="https://market.android.com/details?id=org.openlp.android">download</a> για να εγκαταστήσετε την εφαρμογή για Android από το Κατάστημα.
@@ -6022,85 +6022,85 @@ The content encoding is not UTF-8.
SongUsagePlugin
-
+
&Song Usage Tracking
&Παρακολούθηση Χρήσης Ύμνων
-
+
&Delete Tracking Data
&Διαγραφή Δεδομένων Παρακολούθησης
-
+
Delete song usage data up to a specified date.
Διαγραφή των δεδομένων χρήσης έως μια καθορισμένη ημερομηνία.
-
+
&Extract Tracking Data
&Εξαγωγή Δεδομένων Παρακολούθησης
-
+
Generate a report on song usage.
Παραγωγή αναφοράς για την χρήση ύμνων.
-
+
Toggle Tracking
Εναλλαγή Παρακολούθησης
-
+
Toggle the tracking of song usage.
Εναλλαγή της παρακολούθησης της χρήσης ύμνων.
-
+
<strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services.
<strong>Πρόσθετο Παρακολούθησης Ύμνων</strong><br />Αυτό το πρόσθετο παρακολουθε'ι την χρήση των ύμνων στις λειτουργίες.
-
+
SongUsage
name singular
Χρήση Ύμνου
-
+
SongUsage
name plural
Χρήση Ύμνων
-
+
SongUsage
container title
Χρήση Ύμνων
-
+
Song Usage
Χρήση Ύμνων
-
+
Song usage tracking is active.
Η παρακολούθηση της χρήσης Ύμνων είναι ενεργή.
-
+
Song usage tracking is inactive.
Η παρακολούθηση της χρήσης Ύμνων είναι ανενεργή.
-
+
display
εμφάνιση
-
+
printed
εκτυπώθηκε
@@ -6108,32 +6108,32 @@ The content encoding is not UTF-8.
SongUsagePlugin.SongUsageDeleteForm
-
+
Delete Song Usage Data
Διαγραφή Δεδομένων Χρήσης Ύμνων
-
+
Delete Selected Song Usage Events?
Διαγραφή των Επιλεγμένων Συμβάντων Χρήσης Ύμνων;
-
+
Are you sure you want to delete selected Song Usage data?
Είστε σιγουροι ότι θέλετε να διαγράψετε τα επιλεγμένα δεδομένα Χρήσης Ύμνων;
-
+
Deletion Successful
Διαγραφή Επιτυχής
-
+
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.
Επιλέξτε την ημερομηνία έως την οποία τα δεδομένα χρησης ύμνων θα πρέπει να διαγραφούν. Όλα τα δεδομένα πριν από αυτήν την ημερομηνία θα διαγραφούν οριστικά.
@@ -6141,42 +6141,42 @@ The content encoding is not UTF-8.
SongUsagePlugin.SongUsageDetailForm
-
+
Song Usage Extraction
Εξαγωγή Χρήσης Ύμνων
-
+
Select Date Range
Επιλέξτε Χρονική Περίοδο
-
+
to
έως
-
+
Report Location
Αναφέρατε Τοποθεσία
-
+
Output File Location
Τοποθεσία Εξαγωγής Αρχείου
-
+
usage_detail_%s_%s.txt
usage_detail_%s_%s.txt
-
+
Report Creation
Δημιουργία Αναφοράς
-
+
Report
%s
has been successfully created.
@@ -6185,12 +6185,12 @@ has been successfully created.
έχει δημιουργηθεί επιτυχώς.
-
+
Output Path Not Selected
Δεν Επιλέχθηκε Τοποθεσία Εξαγωγής
-
+
You have not set a valid output location for your song usage report. Please select an existing path on your computer.
Δεν θέσατε έγκυρη τοποθεσία για την εξαγωγή της αναφοράς χρήσης ύμνων. Παρακαλούμε επιλέξτε μια υπάρχουσα τοποθεσία στον υπολογιστή σας.
@@ -6198,112 +6198,112 @@ has been successfully created.
SongsPlugin
-
+
&Song
&Ύμνος
-
+
Import songs using the import wizard.
Εισαγωγή ύμνων με χρηση του οδηγού εισαγωγής.
-
+
<strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs.
<strong>Προσθετο Ύμνων</strong><br />Το προσθετο ύμνων παρέχει την δυνατότητα προβολής και διαχείρισης ύμνων.
-
+
&Re-index Songs
&Ανακατανομή Ύμνων
-
+
Re-index the songs database to improve searching and ordering.
Ανακατανομή της βάσης δεδομένων ύμνων για την βελτίωση της αναζήτησης και της κατανομής.
-
+
Reindexing songs...
Ανακατομή Ύμνων...
-
+
Arabic (CP-1256)
Αραβικά (CP-1256)
-
+
Baltic (CP-1257)
Βαλτική (CP-1257)
-
+
Central European (CP-1250)
Κεντρικής Ευρώπης (CP-1250)
-
+
Cyrillic (CP-1251)
Κυριλλικά (CP-1251)
-
+
Greek (CP-1253)
Ελληνικά (CP-1253)
-
+
Hebrew (CP-1255)
Εβραϊκά (CP-1255)
-
+
Japanese (CP-932)
Ιαπωνέζικα (CP-932)
-
+
Korean (CP-949)
Κορεάτικα (CP-949)
-
+
Simplified Chinese (CP-936)
Απλοποιημένα Κινέζικα (CP-936)
-
+
Thai (CP-874)
Τάυ (CP-874)
-
+
Traditional Chinese (CP-950)
Παραδοσιακά Κινέζικα (CP-950)
-
+
Turkish (CP-1254)
Τούρκικα (CP-1254)
-
+
Vietnam (CP-1258)
Βιετναμέζικα (CP-1258)
-
+
Western European (CP-1252)
Δυτικής Ευρώπης (CP-1252)
-
+
Character Encoding
Κωδικοποίηση Χαρακτήρων
-
+
The codepage setting is responsible
for the correct character representation.
Usually you are fine with the preselected choice.
@@ -6312,62 +6312,62 @@ Usually you are fine with the preselected choice.
Συνήθως είστε εντάξει με την προεπιλεγμένη κωδικοσελίδα.
-
+
Please choose the character encoding.
The encoding is responsible for the correct character representation.
Παρακαλούμε επιλέξτε την κωδικοποίηση των χαρακτήρων.
Η κωδικοποιήση ειναι υπεύθυνη για την ορθή εμφάνιση των χαρακτήρων.
-
+
Song
name singular
Ύμνος
-
+
Songs
name plural
Ύμνοι
-
+
Songs
container title
Ύμνοι
-
+
Exports songs using the export wizard.
Εξαγωγή ύμνων με χρήση του οδηγού εξαγωγής.
-
+
Add a new song.
Προσθήκη νέου ύμνου.
-
+
Edit the selected song.
Επεξεργασία του επιλεγμένου ύμνου.
-
+
Delete the selected song.
Διαγραφή του επιλεγμένου ύμνου.
-
+
Preview the selected song.
Προεπισκόπηση του επιλεγμένου ύμνου.
-
+
Send the selected song live.
Μετάβαση του επιελεγμένου ύμνου προς προβολή.
-
+
Add the selected song to the service.
Προσθήκη του επιλεγμένου ύμνου στην λειτουργία.
@@ -6375,37 +6375,37 @@ The encoding is responsible for the correct character representation.
SongsPlugin.AuthorsForm
-
+
Author Maintenance
Επεξεργασία Συγγραφέα
-
+
Display name:
Εμαφανιζ'ομενο όνομα:
-
+
First name:
Όνομα:
-
+
Last name:
Επίθετο:
-
+
You need to type in the first name of the author.
Πρέπει να εισάγετε το όνομα του συγγραφέα.
-
+
You need to type in the last name of the author.
Πρέπει να εισάγετε το επίθετο του συγγραφέα.
-
+
You have not set a display name for the author, combine the first and last names?
Δεν δηλώσατε εμφανιζομενο όνομα συγγραφέα, να συνδυαστούν όνομα και επίθετο;
@@ -6413,7 +6413,7 @@ The encoding is responsible for the correct character representation.
SongsPlugin.CCLIFileImport
-
+
The file does not have a valid extension.
Το αρχείο δεν έχει έγκυρη επέκταση.
@@ -6421,12 +6421,12 @@ The encoding is responsible for the correct character representation.
SongsPlugin.EasyWorshipSongImport
-
+
Administered by %s
Διαχείριση από %s
-
+
[above are Song Tags with notes imported from
EasyWorship]
@@ -6438,12 +6438,12 @@ The encoding is responsible for the correct character representation.
SongsPlugin.EditBibleForm
-
+
Meta Data
Meta Data
-
+
Custom Book Names
Παραμετροποιημένα Ονόματα Βιβλίων
@@ -6451,207 +6451,207 @@ The encoding is responsible for the correct character representation.
SongsPlugin.EditSongForm
-
+
Song Editor
Επεξεργασία Ύμνων
-
+
&Title:
&Τίτλος:
-
+
Alt&ernate title:
&Εναλλαγή τίτλου:
-
+
&Lyrics:
&Στίχοι:
-
+
&Verse order:
Σειρά &Στροφών:
-
+
Ed&it All
Ε&πεξεργασία Όλων
-
+
Title && Lyrics
Τίτλος && Στίχοι
-
+
&Add to Song
&Προσθήκη στον Ύμνο
-
+
&Remove
&Αφαίρεση
-
+
&Manage Authors, Topics, Song Books
&Διαχείριση Συγγραφέων, Θεμάτων, Βιβλίων Ύμνων
-
+
A&dd to Song
Προ&σθήκη στον Ύμνο
-
+
R&emove
Αφαίρεσ&η
-
+
Book:
Βιβλίο:
-
+
Number:
Αριθμός:
-
+
Authors, Topics && Song Book
Συγγραφεις, Θέματα && Βιβλία Ύμνων
-
+
New &Theme
Νέο &Θέμα
-
+
Copyright Information
Πληροφορίες Πνευματικών Δικαιωμάτων
-
+
Comments
Σχόλια
-
+
Theme, Copyright Info && Comments
Θέμα, Πληροφορίες Πνευματικών Δικαιωμάτων && Σχόλια
-
+
Add Author
Προσθήκη Συγγραφέα
-
+
This author does not exist, do you want to add them?
Αυτός ο συγγραφέας δεν υπάρχει, θέλετε να τον προσθέσετε;
-
+
This author is already in the list.
Αυτός ο συγγραφέας είναι ήδη στην λίστα.
-
+
You have not selected a valid author. Either select an author from the list, or type in a new author and click the "Add Author to Song" button to add the new author.
Δεν επιλέξατε έγκυρο συγγραφέα. Είτε επιλέξτε έναν συγγραφέα από την λίστα, είτε πληκτρολογείστε έναν νέο συγγραφέα και πιέστε "Προσθήκη Συγγραφέα στον Ύμνο" για να προσθέσετε τον νέο συγγραφέα.
-
+
Add Topic
Προσθήκη Κατηγορίας
-
+
This topic does not exist, do you want to add it?
Η κατηγορία δεν υπάρχει, θέλετε να την προσθέσετε;
-
+
This topic is already in the list.
Η κατηγορία υπάρχει ήδη στην λίστα.
-
+
You have not selected a valid topic. Either select a topic from the list, or type in a new topic and click the "Add Topic to Song" button to add the new topic.
Δεν επιλέξατε έγκυρη κατηγορία. Είτε επιλέξτε μια κατηγορία από την λίστα, είτε πληκτρολογήστε μια νέα κατηγορία και πιέστε "Προσθήκη Κατηγορίας στον Ύμνο" για να προσθέσετε την νέα κατηγορία.
-
+
You need to type in a song title.
Πρέπει να δώσετε έναν τίτλο στον ύμνο.
-
+
You need to type in at least one verse.
Πρέπει να πληκτρολογήσετε τουλάχιστον ένα εδάφιο.
-
+
The verse order is invalid. There is no verse corresponding to %s. Valid entries are %s.
Η σειρά των εδαφίων δεν είναι έγκυρη. Δεν υπάρχει εδάφιο αντίστοιχο στο %s. Έγκυρες καταχωρήσεις είναι οι %s.
-
+
Add Book
Προσθήκη Βιβλίου
-
+
This song book does not exist, do you want to add it?
Αυτό το βιβλίο ύμνων δεν υπάρχει, θέλετε να το προσθέσετε;
-
+
You need to have an author for this song.
Πρέπει να έχετε έναν συγγραφέα για αυτόν τον ύμνο.
-
+
You need to type some text in to the verse.
Πρέπει να πληκτρολογήσετε λίγο κείμενο στο εδάφιο.
-
+
Linked Audio
Συνδεδεμένος Ήχος
-
+
Add &File(s)
Προσθήκη &Αρχείου(-ων)
-
+
Add &Media
Προσθήκη &Πολυμέσων
-
+
Remove &All
&Αφαίρεση Όλων
-
+
Open File(s)
Άνοιγμα Αρχείου(-ων)
-
+
<strong>Warning:</strong> Not all of the verses are in use.
<strong>Προειδοποίηση:</strong> Δεν χρησιμοποιούνται όλα τα εδάφια.
-
+
The verse order is invalid. There are no verses corresponding to %s. Valid entries are %s.
Η σειρά εδαφίων είναι ακατάλληλη. Δεν υπάρχουν εδάφια που να αντιστοιχούν στο %s. Κατάλληλες καταχωρήσεις είναι %s.
@@ -6659,22 +6659,22 @@ The encoding is responsible for the correct character representation.
SongsPlugin.EditVerseForm
-
+
Edit Verse
Επεξεργασία Εδαφίου
-
+
&Verse type:
&Τύπος Στροφής:
-
+
&Insert
&Εισαγωγή
-
+
Split a slide into two by inserting a verse splitter.
Διαχωρισμός μιας διαφάνειας σε δύο με εισαγωγή ενός διαχωριστή στροφών.
@@ -6682,82 +6682,82 @@ The encoding is responsible for the correct character representation.
SongsPlugin.ExportWizardForm
-
+
Song Export Wizard
Οδηγός Εξαγωγής Ύμνων
-
+
Select Songs
Επιλέξτε Ύμνους
-
+
Check the songs you want to export.
Επιλέξτε τους ύμνους που θέλετε να εξάγετε.
-
+
Uncheck All
Αποεπιλογή Όλων
-
+
Check All
Επιλογή Όλων
-
+
Select Directory
Επιλογή Φακέλου
-
+
Directory:
Φάκελος:
-
+
Exporting
Εγαγωγή
-
+
Please wait while your songs are exported.
Παρακαλούμε περιμένετε όσο εξάγονται οι ύμνοι σας.
-
+
You need to add at least one Song to export.
Πρέπει να επιλέξετε τουλάχιστον έναν Ύμνο προς εξαγωγή.
-
+
No Save Location specified
Δεν ορίστηκε Τοποθεσία Αποθήκευσης
-
+
Starting export...
Εκκίνηση εξαγωγής...
-
+
You need to specify a directory.
Πρέπει να ορίσετε έναν φάκελο.
-
+
Select Destination Folder
Επιλογή Φακέλου Προορισμού
-
+
Select the directory where you want the songs to be saved.
Επιλέξτε τον φάκελο στον οποίο θέλετε να αποθηκεύσετε τους ύμνους σας.
-
+
This wizard will help to export your songs to the open and free <strong>OpenLyrics</strong> worship song format.
Αυτός ο οδηγός θα σας βοηθήσει να εξάγετε τους ύμνους σας στην ανοιχτή και δωρεάν μορφή του <strong>OpenLyrics</strong>.
@@ -6765,150 +6765,155 @@ The encoding is responsible for the correct character representation.
SongsPlugin.ImportWizardForm
-
+
Select Document/Presentation Files
Επιλέξτε Αρχεία Εγγράφων/Παρουσιάσεων
-
+
Song Import Wizard
Οδηγός Εισαγωγής Ύμνων
-
+
This wizard will help you to import songs from a variety of formats. Click the next button below to start the process by selecting a format to import from.
Ο οδηγός αυτος θα σας βοηθήσει να εισάγετε ύμνους διαφόρων μορφών. Κάντε κλικ στο κουμπί "επόμενο" παρακάτω για να ξεκινήσετε την διαδικασία επιλέγοντας την μορφή από την οποία θέλετε να εισάγετε.
-
+
Generic Document/Presentation
Γενικό Έγγραφο/Παρουσίαση
-
+
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 v 1.x
-
+
Words Of Worship Song Files
Αρχεία Ύμνων Words Of Worship
-
+
Songs Of Fellowship Song Files
Αρχεία Ύμνων Songs Of Fellowship
-
+
SongBeamer Files
Αρχεία SongBeamer
-
+
SongShow Plus Song Files
Αρχεία Ύμνων SongShow Plus
-
+
Foilpresenter Song Files
Αρχεία Ύμνων Foilpresenter
-
+
Copy
Αντιγραφή
-
+
Save to File
Αποθήκευση στο Αρχείο
-
+
The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice.
Η εισαγωγή αρχείων τύπου Songs of Fellowship έχει απενεργοποιηθεί επειδή το OpenLP δεν έχει προσβαση στο OpenOffice ή το Libreoffice.
-
+
The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice.
Η εισαγωγή αρχείων γενικού τύπου έχει απενεργοποιηθεί επειδή το OpenLP δεν έχει προσβαση στο OpenOffice ή το Libreoffice.
-
+
OpenLyrics or OpenLP 2.0 Exported Song
Ύμνος εξηγμένος από το OpenLyrics ή το OpenLP 2.0
-
+
OpenLyrics Files
Αρχεία OpenLyrics
-
+
CCLI SongSelect Files
Αρχεία CCLI SongSelect
-
+
EasySlides XML File
Αρχείο EasySlides XML
-
+
EasyWorship Song Database
Βάση Δεδομένων Ύμνων EasyWorship
-
+
DreamBeam Song Files
Αρχεία Ύμνων DreamBeam
-
+
You need to specify a valid PowerSong 1.0 database folder.
Πρέπει να καθορίσετε έναν έγκυρο φάκελο βάσης δεδομένων του PowerSong 1.0.
-
+
ZionWorx (CSV)
ZionWorx (CSV)
-
+
First convert your ZionWorx database to a CSV text file, as explained in the <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">User Manual</a>.
Πρώτα μετατρέψτε την βάση δεδομένων του ZionWorx σε αρχείο κειμένου CSV, όπως περιγράφεται στο <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">User Manual</a>.
+
+
+ SundayPlus Song Files
+
+
SongsPlugin.MediaFilesForm
-
+
Select Media File(s)
Επιλογή Αρχείων Πολυμέσων
-
+
Select one or more audio files from the list below, and click OK to import them into this song.
Επιλέξτε ένα ή περισσοτερα αρχεία ήχου από την παρακάτω λίστα και κάντε κλικ στο OK για να τα εισάγετε σε αυτόν τον ύμνο.
@@ -6916,27 +6921,27 @@ The encoding is responsible for the correct character representation.
SongsPlugin.MediaItem
-
+
Titles
Τίτλοι
-
+
Lyrics
Στίχοι
-
+
CCLI License:
Άδεια CCLI:
-
+
Entire Song
Ολόκληρος Ύμνος
-
+
Are you sure you want to delete the %n selected song(s)?
Είστε σίγουροι ότι θέλετε να διαγράψετε τον %n επιλεγμένο ύμνο;
@@ -6944,38 +6949,38 @@ The encoding is responsible for the correct character representation.
-
+
Maintain the lists of authors, topics and books.
Διατήρηση της λίστας συγγραφέων, θεμάτων και βιβλίων.
-
+
copy
For song cloning
αντιγραφή
-
+
Search Titles...
Αναζήτηση Τίτλων...
-
+
Search Entire Song...
Αναζήτηση Ολόκληρου Ύμνου...
-
+
Search Lyrics...
Αναζήτηση Στίχων...
-
+
Search Authors...
Αναζήτηση Συγγραφέων...
-
+
Search Song Books...
Αναζήτηση Βιβλίων Ύμνων...
@@ -6983,7 +6988,7 @@ The encoding is responsible for the correct character representation.
SongsPlugin.OpenLP1SongImport
-
+
Not a valid openlp.org 1.x song database.
Μη έγκυρη βάση δεδομένων openlp.org 1.x.
@@ -6991,7 +6996,7 @@ The encoding is responsible for the correct character representation.
SongsPlugin.OpenLPSongImport
-
+
Not a valid OpenLP 2.0 song database.
Μη έγκυρη βάση δεδομένων OpenLP 2.0.
@@ -6999,7 +7004,7 @@ The encoding is responsible for the correct character representation.
SongsPlugin.OpenLyricsExport
-
+
Exporting "%s"...
Εξαγωγή "%s"...
@@ -7007,12 +7012,12 @@ The encoding is responsible for the correct character representation.
SongsPlugin.PowerSongImport
-
+
No songs to import.
Κανένας ύμνος προς εισαγωγή.
-
+
Verses not found. Missing "PART" header.
Δεν βρέθηκαν εδάφια. Απουσιάζει η κεφαλίδα "PART".
@@ -7020,22 +7025,22 @@ The encoding is responsible for the correct character representation.
SongsPlugin.SongBookForm
-
+
Song Book Maintenance
Συντήρηση Βιβλίου Ύμνων
-
+
&Name:
Όν&ομα:
-
+
&Publisher:
&Εκδότης:
-
+
You need to type in a name for the book.
Πρέπει να δώσετε ένα όνομα για το βιβλίο.
@@ -7043,12 +7048,12 @@ The encoding is responsible for the correct character representation.
SongsPlugin.SongExportForm
-
+
Your song export failed.
Η εξαγωγή του βιβλίου σας απέτυχε.
-
+
Finished export. To import these files use the <strong>OpenLyrics</strong> importer.
Τέλος Εξαγωγής. Για εισαγωγή αυτών των αρχείων χρησιμοποιήστε το <strong>OpenLyrics</strong>.
@@ -7056,27 +7061,27 @@ The encoding is responsible for the correct character representation.
SongsPlugin.SongImport
-
+
copyright
πνευματικά δικαιώματα
-
+
The following songs could not be imported:
Τα ακόλουθα τραγούδια δεν εισήχθηκαν:
-
+
Cannot access OpenOffice or LibreOffice
Δεν είναι δυνατή η πρόσβαση στο OpenOffice ή το LibreOffice
-
+
Unable to open file
Αδύνατο το άνοιγμα του αρχείου
-
+
File not found
Το αρχείο δεν βρέθηκε
@@ -7084,107 +7089,107 @@ The encoding is responsible for the correct character representation.
SongsPlugin.SongMaintenanceForm
-
+
Could not add your author.
Ο συγγραφέας σας δεν προστέθηκε.
-
+
This author already exists.
Ο συγγραφέας ήδη υπάρχει.
-
+
Could not add your topic.
Δεν προστέθηκε η κατηγορία σας.
-
+
This topic already exists.
Η κατηγορία υπάρχει ήδη.
-
+
Could not add your book.
Το βιβλίο σας δεν προστέθηκε.
-
+
This book already exists.
Αυτό το βιβλίο ήδη υπάρχει.
-
+
Could not save your changes.
Οι αλλαγές σαν δεν αποθηκεύτηκαν.
-
+
Could not save your modified author, because the author already exists.
Ο συγγραφέας σας δεν αποθηκεύτηκε, επειδή υπάρχει ήδη.
-
+
Could not save your modified topic, because it already exists.
Η τροποποιημένη κατηγορία σας δεν αποθηκεύτηκε, επειδή υπάρχει ήδη.
-
+
Delete Author
Διαγραφή Συγγραφέα
-
+
Are you sure you want to delete the selected author?
Σίγουρα θέλετε να διαγράψετε τον επιλεγμένο συγγραφέα;
-
+
This author cannot be deleted, they are currently assigned to at least one song.
Αυτός ο συγγραφέας δεν μπορεί να διαγραφεί, είναι συνδεδεμένος με τουλάχιστον έναν ύμνο.
-
+
Delete Topic
Διαγραφή Κατηγορίας
-
+
Are you sure you want to delete the selected topic?
Σίγουρα θέλετε να διαγράψετε την επιλεγμένη κατηγορία;
-
+
This topic cannot be deleted, it is currently assigned to at least one song.
Η κατηγορία δεν μπορεί να διαγραφεί, είναι συνδεδεμένη με τουλάχιστον έναν ύμνο.
-
+
Delete Book
Διαγραφή Βιβλίου
-
+
Are you sure you want to delete the selected book?
Σίγουρα θέλετε να διαγράψετε το επιλεγμένο βιβλίο;
-
+
This book cannot be deleted, it is currently assigned to at least one song.
Αυτό το βιβλίο δεν μπορεί να διαγραφεί, είναι συνδεδεμένο με τουλάχιστον έναν ύμνο.
-
+
The author %s already exists. Would you like to make songs with author %s use the existing author %s?
Ο συγγραφέας %s υπάρχει ήδη. Θέλετε να κάνετε τους ύμνους με συγγραφέα τον %s να χρησιμοποιούν τον υπάρχοντα συγγραφέα %s;
-
+
The topic %s already exists. Would you like to make songs with topic %s use the existing topic %s?
Η κατηγορία %s υπάρχει ήδη. Θέλετε να κάνετε τους ύμνους με κατηγορία %s να χρησιμοποιούν την υπάρχουσα κατηγορία %s;
-
+
The book %s already exists. Would you like to make songs with book %s use the existing book %s?
Το βιβλίο %s υπάρχει ήδη. Θέλετε να κάνετε τους ύμνους με το βιβλίο %s να χρησιμοποιούν το υπάρχον βιβλίο %s;
@@ -7192,27 +7197,27 @@ The encoding is responsible for the correct character representation.
SongsPlugin.SongsTab
-
+
Songs Mode
Λειτουργία Ύμνων
-
+
Enable search as you type
Ενεργοποίηση αναζήτησης κατά την πληκτρολόγηση
-
+
Display verses on live tool bar
Προβολή των εδαφίων στην εργαλειοθήκη προβολής
-
+
Update service from song edit
Ενημέρωση λειτουργίας από την επεξεργασία ύμνων
-
+
Import missing songs from service files
Εισαγωγή απόντων ύμνων από αρχεία λειτουργίας
@@ -7220,17 +7225,17 @@ The encoding is responsible for the correct character representation.
SongsPlugin.TopicsForm
-
+
Topic Maintenance
Συντήρηση Κατηγοριών
-
+
Topic name:
Όνομα κατηγορίας:
-
+
You need to type in a topic name.
Πρέπει να δώσετε ένα όνομα κατηγορίας.
@@ -7238,37 +7243,37 @@ The encoding is responsible for the correct character representation.
SongsPlugin.VerseType
-
+
Verse
Εδάφιο
-
+
Chorus
Ρεφραίν
-
+
Bridge
Γέφυρα
-
+
Pre-Chorus
Προ-Ρεφραίν
-
+
Intro
Εισαγωγή
-
+
Ending
Τέλος
-
+
Other
Άλλο
@@ -7276,12 +7281,12 @@ The encoding is responsible for the correct character representation.
SongsPlugin.ZionWorxImport
-
+
Error reading CSV file.
Σφάλμα κατά την ανάγνωση του αρχείου CSV.
-
+
File not valid ZionWorx CSV format.
Το αρχείο δεν έχει την κατάλληλη μορφή του ZionWorx CSV.
diff --git a/resources/i18n/en.ts b/resources/i18n/en.ts
index b9e5b7ec9..37ffe8a90 100644
--- a/resources/i18n/en.ts
+++ b/resources/i18n/en.ts
@@ -3,35 +3,35 @@
AlertsPlugin
-
+
&Alert
&Alert
-
+
Show an alert message.
Show an alert message.
-
+
Alert
name singular
Alert
-
+
Alerts
name plural
Alerts
-
+
Alerts
container title
Alerts
-
+
<strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of nursery alerts on the display screen.
<strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of nursery alerts on the display screen.
@@ -39,69 +39,69 @@
AlertsPlugin.AlertForm
-
+
Alert Message
Alert Message
-
+
Alert &text:
Alert &text:
-
+
&New
&New
-
+
&Save
&Save
-
+
Displ&ay
Displ&ay
-
+
Display && Cl&ose
Display && Cl&ose
-
+
New Alert
New Alert
-
+
You haven't specified any text for your alert. Please type in some text before clicking New.
You haven't specified any text for your alert. Please type in some text before clicking New.
-
+
&Parameter:
&Parameter:
-
+
No Parameter Found
No Parameter Found
-
+
You have not entered a parameter to be replaced.
Do you want to continue anyway?
You have not entered a parameter to be replaced.
Do you want to continue anyway?
-
+
No Placeholder Found
No Placeholder Found
-
+
The alert text does not contain '<>'.
Do you want to continue anyway?
The alert text does not contain '<>'.
@@ -111,7 +111,7 @@ Do you want to continue anyway?
AlertsPlugin.AlertsManager
-
+
Alert message created and displayed.
Alert message created and displayed.
@@ -119,32 +119,32 @@ Do you want to continue anyway?
AlertsPlugin.AlertsTab
-
+
Font
Font
-
+
Font name:
Font name:
-
+
Font color:
Font color:
-
+
Background color:
Background color:
-
+
Font size:
Font size:
-
+
Alert timeout:
Alert timeout:
@@ -152,510 +152,510 @@ Do you want to continue anyway?
BiblesPlugin
-
+
&Bible
&Bible
-
+
Bible
name singular
Bible
-
+
Bibles
name plural
Bibles
-
+
Bibles
container title
Bibles
-
+
No Book Found
No Book Found
-
+
No matching book could be found in this Bible. Check that you have spelled the name of the book correctly.
No matching book could be found in this Bible. Check that you have spelled the name of the book correctly.
-
+
Import a Bible.
Import a Bible.
-
+
Add a new Bible.
Add a new Bible.
-
+
Edit the selected Bible.
Edit the selected Bible.
-
+
Delete the selected Bible.
Delete the selected Bible.
-
+
Preview the selected Bible.
Preview the selected Bible.
-
+
Send the selected Bible live.
Send the selected Bible live.
-
+
Add the selected Bible to the service.
Add the selected Bible to the service.
-
+
<strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display Bible verses from different sources during the service.
<strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display Bible verses from different sources during the service.
-
+
&Upgrade older Bibles
&Upgrade older Bibles
-
+
Upgrade the Bible databases to the latest format.
Upgrade the Bible databases to the latest format.
-
+
Genesis
Genesis
-
+
Exodus
Exodus
-
+
Leviticus
Leviticus
-
+
Numbers
Numbers
-
+
Deuteronomy
Deuteronomy
-
+
Joshua
Joshua
-
+
Judges
Judges
-
+
Ruth
Ruth
-
+
1 Samuel
1 Samuel
-
+
2 Samuel
2 Samuel
-
+
1 Kings
1 Kings
-
+
2 Kings
2 Kings
-
+
1 Chronicles
1 Chronicles
-
+
2 Chronicles
2 Chronicles
-
+
Ezra
Ezra
-
+
Nehemiah
Nehemiah
-
+
Esther
Esther
-
+
Job
Job
-
+
Psalms
Psalms
-
+
Proverbs
Proverbs
-
+
Ecclesiastes
Ecclesiastes
-
+
Song of Solomon
Song of Solomon
-
+
Isaiah
Isaiah
-
+
Jeremiah
Jeremiah
-
+
Lamentations
Lamentations
-
+
Ezekiel
Ezekiel
-
+
Daniel
Daniel
-
+
Hosea
Hosea
-
+
Joel
Joel
-
+
Amos
Amos
-
+
Obadiah
Obadiah
-
+
Jonah
Jonah
-
+
Micah
Micah
-
+
Nahum
Nahum
-
+
Habakkuk
Habakkuk
-
+
Zephaniah
Zephaniah
-
+
Haggai
Haggai
-
+
Zechariah
Zechariah
-
+
Malachi
Malachi
-
+
Matthew
Matthew
-
+
Mark
Mark
-
+
Luke
Luke
-
+
John
John
-
+
Acts
Acts
-
+
Romans
Romans
-
+
1 Corinthians
1 Corinthians
-
+
2 Corinthians
2 Corinthians
-
+
Galatians
Galatians
-
+
Ephesians
Ephesians
-
+
Philippians
Philippians
-
+
Colossians
Colossians
-
+
1 Thessalonians
1 Thessalonians
-
+
2 Thessalonians
2 Thessalonians
-
+
1 Timothy
1 Timothy
-
+
2 Timothy
2 Timothy
-
+
Titus
Titus
-
+
Philemon
Philemon
-
+
Hebrews
Hebrews
-
+
James
James
-
+
1 Peter
1 Peter
-
+
2 Peter
2 Peter
-
+
1 John
1 John
-
+
2 John
2 John
-
+
3 John
3 John
-
+
Jude
Jude
-
+
Revelation
Revelation
-
+
Judith
Judith
-
+
Wisdom
Wisdom
-
+
Tobit
Tobit
-
+
Sirach
Sirach
-
+
Baruch
Baruch
-
+
1 Maccabees
1 Maccabees
-
+
2 Maccabees
2 Maccabees
-
+
3 Maccabees
3 Maccabees
-
+
4 Maccabees
4 Maccabees
-
+
Rest of Daniel
Rest of Daniel
-
+
Rest of Esther
Rest of Esther
-
+
Prayer of Manasses
Prayer of Manasses
-
+
Letter of Jeremiah
Letter of Jeremiah
-
+
Prayer of Azariah
Prayer of Azariah
-
+
Susanna
Susanna
-
+
Bel
Bel
-
+
1 Esdras
1 Esdras
-
+
2 Esdras
2 Esdras
-
+
:|v|V|verse|verses;;-|to;;,|and;;end
Double-semicolon delimited separators for parsing references. Consult the developers for further information.
:|v|V|verse|verses;;-|to;;,|and;;end
@@ -664,32 +664,32 @@ Do you want to continue anyway?
BiblesPlugin.BibleEditForm
-
+
You need to specify a version name for your Bible.
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.
You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such.
-
+
Bible Exists
Bible Exists
-
+
This Bible already exists. Please import a different Bible or first delete the existing one.
This Bible already exists. Please import a different Bible or first delete the existing one.
-
+
You need to specify a book name for "%s".
You need to specify a book name for "%s".
-
+
The book name "%s" is not correct.
Numbers can only be used at the beginning and must
be followed by one or more non-numeric characters.
@@ -698,12 +698,12 @@ Numbers can only be used at the beginning and must
be followed by one or more non-numeric characters.
-
+
Duplicate Book Name
Duplicate Book Name
-
+
The Book Name "%s" has been entered more than once.
The Book Name "%s" has been entered more than once.
@@ -711,39 +711,39 @@ be followed by one or more non-numeric characters.
BiblesPlugin.BibleManager
-
+
Scripture Reference Error
Scripture Reference Error
-
+
Web Bible cannot be used
Web Bible cannot be used
-
+
Text Search is not available with Web Bibles.
Text Search is not available with Web Bibles.
-
+
You did not enter a search keyword.
You can separate different keywords by a space to search for all of your keywords and you can separate them by a comma to search for one of them.
You did not enter a search keyword.
You can separate different keywords by a space to search for all of your keywords and you can separate them by a comma to search for one of them.
-
+
There are no Bibles currently installed. Please use the Import Wizard to install one or more Bibles.
There are no Bibles currently installed. Please use the Import Wizard to install one or more Bibles.
-
+
No Bibles Available
No Bibles Available
-
+
Your scripture reference is either not supported by OpenLP or is invalid. Please make sure your reference conforms to one of the following patterns or consult the manual:
Book Chapter
@@ -766,79 +766,79 @@ Book Chapter%(verse)sVerse%(range)sChapter%(verse)sVerse
BiblesPlugin.BiblesTab
-
+
Verse Display
Verse Display
-
+
Only show new chapter numbers
Only show new chapter numbers
-
+
Bible theme:
Bible theme:
-
+
No Brackets
No Brackets
-
+
( And )
( And )
-
+
{ And }
{ And }
-
+
[ And ]
[ And ]
-
+
Note:
Changes do not affect verses already in the service.
Note:
Changes do not affect verses already in the service.
-
+
Display second Bible verses
Display second Bible verses
-
+
Custom Scripture References
Custom Scripture References
-
+
Verse Separator:
Verse Separator:
-
+
Range Separator:
Range Separator:
-
+
List Separator:
List Separator:
-
+
End Mark:
End Mark:
-
+
Multiple alternative verse separators may be defined.
They have to be separated by a vertical bar "|".
Please clear this edit line to use the default value.
@@ -847,7 +847,7 @@ They have to be separated by a vertical bar "|".
Please clear this edit line to use the default value.
-
+
Multiple alternative range separators may be defined.
They have to be separated by a vertical bar "|".
Please clear this edit line to use the default value.
@@ -856,7 +856,7 @@ They have to be separated by a vertical bar "|".
Please clear this edit line to use the default value.
-
+
Multiple alternative list separators may be defined.
They have to be separated by a vertical bar "|".
Please clear this edit line to use the default value.
@@ -865,7 +865,7 @@ They have to be separated by a vertical bar "|".
Please clear this edit line to use the default value.
-
+
Multiple alternative end marks may be defined.
They have to be separated by a vertical bar "|".
Please clear this edit line to use the default value.
@@ -874,29 +874,29 @@ They have to be separated by a vertical bar "|".
Please clear this edit line to use the default value.
-
+
English
English
-
+
Default Bible Language
Default Bible Language
-
+
Book name language in search field,
search results and on display:
Book name language in search field,
search results and on display:
-
+
Bible Language
Bible Language
-
+
Application Language
Application Language
@@ -904,42 +904,42 @@ search results and on display:
BiblesPlugin.BookNameDialog
-
+
Select Book Name
Select Book Name
-
+
Current name:
Current name:
-
+
Corresponding name:
Corresponding name:
-
+
Show Books From
Show Books From
-
+
Old Testament
Old Testament
-
+
New Testament
New Testament
-
+
Apocrypha
Apocrypha
-
+
The following book name cannot be matched up internally. Please select the corresponding name from the list.
The following book name cannot be matched up internally. Please select the corresponding name from the list.
@@ -947,7 +947,7 @@ search results and on display:
BiblesPlugin.BookNameForm
-
+
You need to select a book.
You need to select a book.
@@ -955,18 +955,18 @@ search results and on display:
BiblesPlugin.CSVBible
-
+
Importing books... %s
Importing books... %s
-
+
Importing verses from %s...
Importing verses from <book name>...
Importing verses from %s...
-
+
Importing verses... done.
Importing verses... done.
@@ -974,69 +974,69 @@ search results and on display:
BiblesPlugin.EditBibleForm
-
+
Bible Editor
Bible Editor
-
+
License Details
License Details
-
+
Version name:
Version name:
-
+
Copyright:
Copyright:
-
+
Permissions:
Permissions:
-
+
Default Bible Language
Default Bible Language
-
+
Book name language in search field, search results and on display:
Book name language in search field, search results and on display:
-
+
Global Settings
Global Settings
-
+
Bible Language
Bible Language
-
+
Application Language
Application Language
-
+
English
English
-
+
This is a Web Download Bible.
It is not possible to customize the Book Names.
This is a Web Download Bible.
It is not possible to customize the Book Names.
-
+
To use the customized book names, "Bible language" must be selected on the Meta Data tab or, if "Global settings" is selected, on the Bible page in Configure OpenLP.
To use the customized book names, "Bible language" must be selected on the Meta Data tab or, if "Global settings" is selected, on the Bible page in Configure OpenLP.
@@ -1044,38 +1044,38 @@ It is not possible to customize the Book Names.
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.
@@ -1083,167 +1083,167 @@ It is not possible to customize the Book Names.
BiblesPlugin.ImportWizardForm
-
+
Bible Import Wizard
Bible Import Wizard
-
+
This wizard will help you to import Bibles from a variety of formats. Click the next button below to start the process by selecting a format to import from.
This wizard will help you to import Bibles from a variety of formats. Click the next button below to start the process by selecting a format to import from.
-
+
Web Download
Web Download
-
+
Location:
Location:
-
+
Crosswalk
Crosswalk
-
+
BibleGateway
BibleGateway
-
+
Bible:
Bible:
-
+
Download Options
Download Options
-
+
Server:
Server:
-
+
Username:
Username:
-
+
Password:
Password:
-
+
Proxy Server (Optional)
Proxy Server (Optional)
-
+
License Details
License Details
-
+
Set up the Bible's license details.
Set up the Bible's license details.
-
+
Version name:
Version name:
-
+
Copyright:
Copyright:
-
+
Please wait while your Bible is imported.
Please wait while your Bible is imported.
-
+
You need to specify a file with books of the Bible to use in the import.
You need to specify a file with books of the Bible to use in the import.
-
+
You need to specify a file of Bible verses to import.
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.
-
+
You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such.
You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such.
-
+
Bible Exists
Bible Exists
-
+
This Bible already exists. Please import a different Bible or first delete the existing one.
This Bible already exists. Please import a different Bible or first delete the existing one.
-
+
Your Bible import failed.
Your Bible import failed.
-
+
CSV File
CSV File
-
+
Bibleserver
Bibleserver
-
+
Permissions:
Permissions:
-
+
Bible file:
Bible file:
-
+
Books file:
Books file:
-
+
Verses file:
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
@@ -1253,17 +1253,17 @@ demand and thus an internet connection is required.
BiblesPlugin.LanguageDialog
-
+
Select Language
Select Language
-
+
OpenLP is unable to determine the language of this translation of the Bible. Please select the language from the list below.
OpenLP is unable to determine the language of this translation of the Bible. Please select the language from the list below.
-
+
Language:
Language:
@@ -1271,7 +1271,7 @@ demand and thus an internet connection is required.
BiblesPlugin.LanguageForm
-
+
You need to choose a language.
You need to choose a language.
@@ -1279,92 +1279,92 @@ demand and thus an internet connection is required.
BiblesPlugin.MediaItem
-
+
Quick
Quick
-
+
Find:
Find:
-
+
Book:
Book:
-
+
Chapter:
Chapter:
-
+
Verse:
Verse:
-
+
From:
From:
-
+
To:
To:
-
+
Text Search
Text Search
-
+
Second:
Second:
-
+
Scripture Reference
Scripture Reference
-
+
Toggle to keep or clear the previous results.
Toggle to keep or clear the previous results.
-
+
You cannot combine single and dual Bible verse search results. Do you want to delete your search results and start a new search?
You cannot combine single and dual Bible verse search results. Do you want to delete your search results and start a new search?
-
+
Bible not fully loaded.
Bible not fully loaded.
-
+
Information
Information
-
+
The second Bible does not contain all the verses that are in the main Bible. Only verses found in both Bibles will be shown. %d verses have not been included in the results.
The second Bible does not contain all the verses that are in the main Bible. Only verses found in both Bibles will be shown. %d verses have not been included in the results.
-
+
Search Scripture Reference...
Search Scripture Reference...
-
+
Search Text...
Search Text...
-
+
Are you sure you want to delete "%s"?
Are you sure you want to delete "%s"?
@@ -1372,7 +1372,7 @@ demand and thus an internet connection is required.
BiblesPlugin.Opensong
-
+
Importing %s %s...
Importing <book name> <chapter>...
Importing %s %s...
@@ -1381,12 +1381,12 @@ demand and thus an internet connection is required.
BiblesPlugin.OsisImport
-
+
Detecting encoding (this may take a few minutes)...
Detecting encoding (this may take a few minutes)...
-
+
Importing %s %s...
Importing <book name> <chapter>...
Importing %s %s...
@@ -1395,149 +1395,149 @@ demand and thus an internet connection is required.
BiblesPlugin.UpgradeWizardForm
-
+
Select a Backup Directory
Select a Backup Directory
-
+
Bible Upgrade Wizard
Bible Upgrade Wizard
-
+
This wizard will help you to upgrade your existing Bibles from a prior version of OpenLP 2. Click the next button below to start the upgrade process.
This wizard will help you to upgrade your existing Bibles from a prior version of OpenLP 2. Click the next button below to start the upgrade process.
-
+
Select Backup Directory
Select Backup Directory
-
+
Please select a backup directory for your Bibles
Please select a backup directory for your Bibles
-
+
Previous releases of OpenLP 2.0 are unable to use upgraded Bibles. This will create a backup of your current Bibles so that you can simply copy the files back to your OpenLP data directory if you need to revert to a previous release of OpenLP. Instructions on how to restore the files can be found in our <a href="http://wiki.openlp.org/faq">Frequently Asked Questions</a>.
Previous releases of OpenLP 2.0 are unable to use upgraded Bibles. This will create a backup of your current Bibles so that you can simply copy the files back to your OpenLP data directory if you need to revert to a previous release of OpenLP. Instructions on how to restore the files can be found in our <a href="http://wiki.openlp.org/faq">Frequently Asked Questions</a>.
-
+
Please select a backup location for your Bibles.
Please select a backup location for your Bibles.
-
+
Backup Directory:
Backup Directory:
-
+
There is no need to backup my Bibles
There is no need to backup my Bibles
-
+
Select Bibles
Select Bibles
-
+
Please select the Bibles to upgrade
Please select the Bibles to upgrade
-
+
Upgrading
Upgrading
-
+
Please wait while your Bibles are upgraded.
Please wait while your Bibles are upgraded.
-
+
The backup was not successful.
To backup your Bibles you need permission to write to the given directory.
The backup was not successful.
To backup your Bibles you need permission to write to the given directory.
-
+
Upgrading Bible %s of %s: "%s"
Failed
Upgrading Bible %s of %s: "%s"
Failed
-
+
Upgrading Bible %s of %s: "%s"
Upgrading ...
Upgrading Bible %s of %s: "%s"
Upgrading ...
-
+
Download Error
Download Error
-
+
To upgrade your Web Bibles an Internet connection is required.
To upgrade your Web Bibles an Internet connection is required.
-
+
Upgrading Bible %s of %s: "%s"
Upgrading %s ...
Upgrading Bible %s of %s: "%s"
Upgrading %s ...
-
+
Upgrading Bible %s of %s: "%s"
Complete
Upgrading Bible %s of %s: "%s"
Complete
-
+
, %s failed
, %s failed
-
+
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.
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.
-
+
Upgrading Bible(s): %s successful%s
Upgrading Bible(s): %s successful%s
-
+
Upgrade failed.
Upgrade failed.
-
+
You need to specify a backup directory for your Bibles.
You need to specify a backup directory for your Bibles.
-
+
Starting upgrade...
Starting upgrade...
-
+
There are no Bibles that need to be upgraded.
There are no Bibles that need to be upgraded.
@@ -1545,65 +1545,65 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I
CustomPlugin
-
+
<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>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.
-
+
Custom Slide
name singular
Custom Slide
-
+
Custom Slides
name plural
Custom Slides
-
+
Custom Slides
container title
Custom Slides
-
+
Load a new custom slide.
Load a new custom slide.
-
+
Import a custom slide.
Import a custom slide.
-
+
Add a new custom slide.
Add a new custom slide.
-
+
Edit the selected custom slide.
Edit the selected custom slide.
-
+
Delete the selected custom slide.
Delete the selected custom slide.
-
+
Preview the selected custom slide.
Preview the selected custom slide.
-
+
Send the selected custom slide live.
Send the selected custom slide live.
-
+
Add the selected custom slide to the service.
Add the selected custom slide to the service.
@@ -1611,12 +1611,12 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I
CustomPlugin.CustomTab
-
+
Custom Display
Custom Display
-
+
Display footer
Display footer
@@ -1624,62 +1624,62 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I
CustomPlugin.EditCustomForm
-
+
Edit Custom Slides
Edit Custom Slides
-
+
&Title:
&Title:
-
+
Add a new slide at bottom.
Add a new slide at bottom.
-
+
Edit the selected slide.
Edit the selected slide.
-
+
Edit all the slides at once.
Edit all the slides at once.
-
+
Split a slide into two by inserting a slide splitter.
Split a slide into two by inserting a slide splitter.
-
+
The&me:
The&me:
-
+
&Credits:
&Credits:
-
+
You need to type in a title.
You need to type in a title.
-
+
You need to add at least one slide
You need to add at least one slide
-
+
Ed&it All
Ed&it All
-
+
Insert Slide
Insert Slide
@@ -1687,7 +1687,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I
CustomPlugin.MediaItem
-
+
Are you sure you want to delete the %n selected custom slide(s)?
Are you sure you want to delete the %n selected custom slide(s)?
@@ -1698,60 +1698,60 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I
ImagePlugin
-
+
<strong>Image Plugin</strong><br />The image plugin provides displaying of images.<br />One of the distinguishing features of this plugin is the ability to group a number of images together in the service manager, making the displaying of multiple images easier. This plugin can also make use of OpenLP's "timed looping" feature to create a slide show that runs automatically. In addition to this, images from the plugin can be used to override the current theme's background, which renders text-based items like songs with the selected image as a background instead of the background provided by the theme.
<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.
-
+
Image
name singular
Image
-
+
Images
name plural
Images
-
+
Images
container title
Images
-
+
Load a new image.
Load a new image.
-
+
Add a new image.
Add a new image.
-
+
Edit the selected image.
Edit the selected image.
-
+
Delete the selected image.
Delete the selected image.
-
+
Preview the selected image.
Preview the selected image.
-
+
Send the selected image live.
Send the selected image live.
-
+
Add the selected image to the service.
Add the selected image to the service.
@@ -1759,7 +1759,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I
ImagePlugin.ExceptionDialog
-
+
Select Attachment
Select Attachment
@@ -1767,32 +1767,32 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I
ImagePlugin.MediaItem
-
+
Select Image(s)
Select Image(s)
-
+
You must select an image to delete.
You must select an image to delete.
-
+
You must select an image to replace the background with.
You must select an image to replace the background with.
-
+
Missing Image(s)
Missing Image(s)
-
+
The following image(s) no longer exist: %s
The following image(s) no longer exist: %s
-
+
The following image(s) no longer exist: %s
Do you want to add the other images anyway?
The following image(s) no longer exist: %s
@@ -1812,17 +1812,17 @@ Do you want to add the other images anyway?
ImagesPlugin.ImageTab
-
+
Background Color
Background Color
-
+
Default Color:
Default Color:
-
+
Visible background for images with aspect ratio different to screen.
Visible background for images with aspect ratio different to screen.
@@ -1830,60 +1830,60 @@ Do you want to add the other images anyway?
MediaPlugin
-
+
<strong>Media Plugin</strong><br />The media plugin provides playback of audio and video.
<strong>Media Plugin</strong><br />The media plugin provides playback of audio and video.
-
+
Media
name singular
Media
-
+
Media
name plural
Media
-
+
Media
container title
Media
-
+
Load new media.
Load new media.
-
+
Add new media.
Add new media.
-
+
Edit the selected media.
Edit the selected media.
-
+
Delete the selected media.
Delete the selected media.
-
+
Preview the selected media.
Preview the selected media.
-
+
Send the selected media live.
Send the selected media live.
-
+
Add the selected media to the service.
Add the selected media to the service.
@@ -1891,57 +1891,57 @@ Do you want to add the other images anyway?
MediaPlugin.MediaItem
-
+
Select Media
Select Media
-
+
You must select a media file to delete.
You must select a media file to delete.
-
+
You must select a media file to replace the background with.
You must select a media file to replace the background with.
-
+
There was a problem replacing your background, the media file "%s" no longer exists.
There was a problem replacing your background, the media file "%s" no longer exists.
-
+
Missing Media File
Missing Media File
-
+
The file %s no longer exists.
The file %s no longer exists.
-
+
Videos (%s);;Audio (%s);;%s (*)
Videos (%s);;Audio (%s);;%s (*)
-
+
There was no display item to amend.
There was no display item to amend.
-
+
Unsupported File
Unsupported File
-
+
Automatic
Automatic
-
+
Use Player:
Use Player:
@@ -1949,22 +1949,22 @@ Do you want to add the other images anyway?
MediaPlugin.MediaTab
-
+
Available Media Players
Available Media Players
-
+
%s (unavailable)
%s (unavailable)
-
+
Player Order
Player Order
-
+
Allow media player to be overridden
Allow media player to be overridden
@@ -1972,17 +1972,17 @@ Do you want to add the other images anyway?
OpenLP
-
+
Image Files
Image Files
-
+
Information
Information
-
+
Bible format has changed.
You have to upgrade your existing Bibles.
Should OpenLP upgrade now?
@@ -1994,37 +1994,37 @@ Should OpenLP upgrade now?
OpenLP.AboutForm
-
+
Credits
Credits
-
+
License
License
-
+
Contribute
Contribute
-
+
build %s
build %s
-
+
This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License.
This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License.
-
+
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See below for more details.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See below for more details.
-
+
Project Lead
%s
@@ -2149,7 +2149,7 @@ Final Credit
He has set us free.
-
+
OpenLP <version><revision> - Open Source Lyrics Projection
OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if Impress, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector.
@@ -2166,7 +2166,7 @@ Find out more about OpenLP: http://openlp.org/
OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider contributing by using the button below.
-
+
Copyright © 2004-2012 %s
Portions copyright © 2004-2012 %s
Copyright © 2004-2012 %s
@@ -2176,264 +2176,264 @@ Portions copyright © 2004-2012 %s
OpenLP.AdvancedTab
-
+
UI Settings
UI Settings
-
+
Number of recent files to display:
Number of recent files to display:
-
+
Remember active media manager tab on startup
Remember active media manager tab on startup
-
+
Double-click to send items straight to live
Double-click to send items straight to live
-
+
Expand new service items on creation
Expand new service items on creation
-
+
Enable application exit confirmation
Enable application exit confirmation
-
+
Mouse Cursor
Mouse Cursor
-
+
Hide mouse cursor when over display window
Hide mouse cursor when over display window
-
+
Default Image
Default Image
-
+
Background color:
Background color:
-
+
Image file:
Image file:
-
+
Open File
Open File
-
+
Advanced
Advanced
-
+
Preview items when clicked in Media Manager
Preview items when clicked in Media Manager
-
+
Click to select a color.
Click to select a color.
-
+
Browse for an image file to display.
Browse for an image file to display.
-
+
Revert to the default OpenLP logo.
Revert to the default OpenLP logo.
-
+
Service %Y-%m-%d %H-%M
This may not contain any of the following characters: /\?*|<>[]":+
See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for more information.
Service %Y-%m-%d %H-%M
-
+
Default Service Name
Default Service Name
-
+
Enable default service name
Enable default service name
-
+
Date and Time:
Date and Time:
-
+
Monday
Monday
-
+
Tuesday
Tuesday
-
+
Wednesday
Wednesday
-
+
Thurdsday
Thurdsday
-
+
Friday
Friday
-
+
Saturday
Saturday
-
+
Sunday
Sunday
-
+
Now
Now
-
+
Time when usual service starts.
Time when usual service starts.
-
+
Name:
Name:
-
+
Consult the OpenLP manual for usage.
Consult the OpenLP manual for usage.
-
+
Revert to the default service name "%s".
Revert to the default service name "%s".
-
+
Example:
Example:
-
+
X11
X11
-
+
Bypass X11 Window Manager
Bypass X11 Window Manager
-
+
Syntax error.
Syntax error.
-
+
Data Location
Data Location
-
+
Current path:
Current path:
-
+
Custom path:
Custom path:
-
+
Browse for new data file location.
Browse for new data file location.
-
+
Set the data location to the default.
Set the data location to the default.
-
+
Cancel
Cancel
-
+
Cancel OpenLP data directory location change.
Cancel OpenLP data directory location change.
-
+
Copy data to new location.
Copy data to new location.
-
+
Copy the OpenLP data files to the new location.
Copy the OpenLP data files to the new location.
-
+
<strong>WARNING:</strong> New data directory location contains OpenLP data files. These files WILL be replaced during a copy.
<strong>WARNING:</strong> New data directory location contains OpenLP data files. These files WILL be replaced during a copy.
-
+
Data Directory Error
Data Directory Error
-
+
Select Data Directory Location
Select Data Directory Location
-
+
Confirm Data Directory Change
Confirm Data Directory Change
-
+
Reset Data Directory
Reset Data Directory
-
+
Are you sure you want to change the location of the OpenLP data directory to the default location?
This location will be used after OpenLP is closed.
@@ -2442,7 +2442,7 @@ This location will be used after OpenLP is closed.
This location will be used after OpenLP is closed.
-
+
Overwrite Existing Data
Overwrite Existing Data
@@ -2450,39 +2450,39 @@ This location will be used after OpenLP is closed.
OpenLP.ExceptionDialog
-
+
Error Occurred
Error Occurred
-
+
Oops! OpenLP hit a problem, and couldn't recover. The text in the box below contains information that might be helpful to the OpenLP developers, so please e-mail it to bugs@openlp.org, along with a detailed description of what you were doing when the problem occurred.
Oops! OpenLP hit a problem, and couldn't recover. The text in the box below contains information that might be helpful to the OpenLP developers, so please e-mail it to bugs@openlp.org, along with a detailed description of what you were doing when the problem occurred.
-
+
Send E-Mail
Send E-Mail
-
+
Save to File
Save to File
-
+
Please enter a description of what you were doing to cause this error
(Minimum 20 characters)
Please enter a description of what you were doing to cause this error
(Minimum 20 characters)
-
+
Attach File
Attach File
-
+
Description characters to enter : %s
Description characters to enter : %s
@@ -2490,24 +2490,24 @@ This location will be used after OpenLP is closed.
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
@@ -2538,7 +2538,7 @@ Version: %s
-
+
*OpenLP Bug Report*
Version: %s
@@ -2573,17 +2573,17 @@ Version: %s
OpenLP.FileRenameForm
-
+
File Rename
File Rename
-
+
New File Name:
New File Name:
-
+
File Copy
File Copy
@@ -2591,17 +2591,17 @@ Version: %s
OpenLP.FirstTimeLanguageForm
-
+
Select Translation
Select Translation
-
+
Choose the translation you'd like to use in OpenLP.
Choose the translation you'd like to use in OpenLP.
-
+
Translation:
Translation:
@@ -2609,192 +2609,192 @@ Version: %s
OpenLP.FirstTimeWizard
-
+
Songs
Songs
-
+
First Time Wizard
First Time Wizard
-
+
Welcome to the First Time Wizard
Welcome to the First Time Wizard
-
+
Activate required Plugins
Activate required Plugins
-
+
Select the Plugins you wish to use.
Select the Plugins you wish to use.
-
+
Bible
Bible
-
+
Images
Images
-
+
Presentations
Presentations
-
+
Media (Audio and Video)
Media (Audio and Video)
-
+
Allow remote access
Allow remote access
-
+
Monitor Song Usage
Monitor Song Usage
-
+
Allow Alerts
Allow Alerts
-
+
Default Settings
Default Settings
-
+
Downloading %s...
Downloading %s...
-
+
Download complete. Click the finish button to start OpenLP.
Download complete. Click the finish button to start OpenLP.
-
+
Enabling selected plugins...
Enabling selected plugins...
-
+
No Internet Connection
No Internet Connection
-
+
Unable to detect an Internet connection.
Unable to detect an Internet connection.
-
+
Sample Songs
Sample Songs
-
+
Select and download public domain songs.
Select and download public domain songs.
-
+
Sample Bibles
Sample Bibles
-
+
Select and download free Bibles.
Select and download free Bibles.
-
+
Sample Themes
Sample Themes
-
+
Select and download sample themes.
Select and download sample themes.
-
+
Set up default settings to be used by OpenLP.
Set up default settings to be used by OpenLP.
-
+
Default output display:
Default output display:
-
+
Select default theme:
Select default theme:
-
+
Starting configuration process...
Starting configuration process...
-
+
This wizard will help you to configure OpenLP for initial use. Click the next button below to start.
This wizard will help you to configure OpenLP for initial use. Click the next button below to start.
-
+
Setting Up And Downloading
Setting Up And Downloading
-
+
Please wait while OpenLP is set up and your data is downloaded.
Please wait while OpenLP is set up and your data is downloaded.
-
+
Setting Up
Setting Up
-
+
Click the finish button to start OpenLP.
Click the finish button to start OpenLP.
-
+
Download complete. Click the finish button to return to OpenLP.
Download complete. Click the finish button to return to OpenLP.
-
+
Click the finish button to return to OpenLP.
Click the finish button to return to OpenLP.
-
+
Custom Slides
Custom Slides
-
+
Finish
Finish
-
+
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. Click 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.
@@ -2803,7 +2803,7 @@ To re-run the First Time Wizard and import this sample data at a later time, che
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.
-
+
To cancel the First Time Wizard completely (and not start OpenLP), click the Cancel button now.
@@ -2815,52 +2815,52 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can
OpenLP.FormattingTagDialog
-
+
Configure Formatting Tags
Configure Formatting Tags
-
+
Edit Selection
Edit Selection
-
+
Save
Save
-
+
Description
Description
-
+
Tag
Tag
-
+
Start tag
Start tag
-
+
End tag
End tag
-
+
Tag Id
Tag Id
-
+
Start HTML
Start HTML
-
+
End HTML
End HTML
@@ -2868,32 +2868,32 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can
OpenLP.FormattingTagForm
-
+
Update Error
Update Error
-
+
Tag "n" already defined.
Tag "n" already defined.
-
+
New Tag
New Tag
-
+
<HTML here>
<HTML here>
-
+
</and here>
</and here>
-
+
Tag %s already defined.
Tag %s already defined.
@@ -2901,82 +2901,82 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can
OpenLP.FormattingTags
-
+
Red
Red
-
+
Black
Black
-
+
Blue
Blue
-
+
Yellow
Yellow
-
+
Green
Green
-
+
Pink
Pink
-
+
Orange
Orange
-
+
Purple
Purple
-
+
White
White
-
+
Superscript
Superscript
-
+
Subscript
Subscript
-
+
Paragraph
Paragraph
-
+
Bold
Bold
-
+
Italics
Italics
-
+
Underline
Underline
-
+
Break
Break
@@ -2984,157 +2984,157 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can
OpenLP.GeneralTab
-
+
General
General
-
+
Monitors
Monitors
-
+
Select monitor for output display:
Select monitor for output display:
-
+
Display if a single screen
Display if a single screen
-
+
Application Startup
Application Startup
-
+
Show blank screen warning
Show blank screen warning
-
+
Automatically open the last service
Automatically open the last service
-
+
Show the splash screen
Show the splash screen
-
+
Application Settings
Application Settings
-
+
Prompt to save before starting a new service
Prompt to save before starting a new service
-
+
Automatically preview next item in service
Automatically preview next item in service
-
+
sec
sec
-
+
CCLI Details
CCLI Details
-
+
SongSelect username:
SongSelect username:
-
+
SongSelect password:
SongSelect password:
-
+
X
X
-
+
Y
Y
-
+
Height
Height
-
+
Width
Width
-
+
Check for updates to OpenLP
Check for updates to OpenLP
-
+
Unblank display when adding new live item
Unblank display when adding new live item
-
+
Timed slide interval:
Timed slide interval:
-
+
Background Audio
Background Audio
-
+
Start background audio paused
Start background audio paused
-
+
Service Item Slide Limits
Service Item Slide Limits
-
+
Override display position:
Override display position:
-
+
Repeat track list
Repeat track list
-
+
Behavior of next/previous on the last/first slide:
Behavior of next/previous on the last/first slide:
-
+
&Remain on Slide
&Remain on Slide
-
+
&Wrap around
&Wrap around
-
+
&Move to next/previous service item
&Move to next/previous service item
@@ -3142,12 +3142,12 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can
OpenLP.LanguageManager
-
+
Language
Language
-
+
Please restart OpenLP to use your new language setting.
Please restart OpenLP to use your new language setting.
@@ -3155,7 +3155,7 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can
OpenLP.MainDisplay
-
+
OpenLP Display
OpenLP Display
@@ -3163,287 +3163,287 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can
OpenLP.MainWindow
-
+
&File
&File
-
+
&Import
&Import
-
+
&Export
&Export
-
+
&View
&View
-
+
M&ode
M&ode
-
+
&Tools
&Tools
-
+
&Settings
&Settings
-
+
&Language
&Language
-
+
&Help
&Help
-
+
Media Manager
Media Manager
-
+
Service Manager
Service Manager
-
+
Theme Manager
Theme Manager
-
+
&New
&New
-
+
&Open
&Open
-
+
Open an existing service.
Open an existing service.
-
+
&Save
&Save
-
+
Save the current service to disk.
Save the current service to disk.
-
+
Save &As...
Save &As...
-
+
Save Service As
Save Service As
-
+
Save the current service under a new name.
Save the current service under a new name.
-
+
E&xit
E&xit
-
+
Quit OpenLP
Quit OpenLP
-
+
&Theme
&Theme
-
+
&Configure OpenLP...
&Configure OpenLP...
-
+
&Media Manager
&Media Manager
-
+
Toggle Media Manager
Toggle Media Manager
-
+
Toggle the visibility of the media manager.
Toggle the visibility of the media manager.
-
+
&Theme Manager
&Theme Manager
-
+
Toggle Theme Manager
Toggle Theme Manager
-
+
Toggle the visibility of the theme manager.
Toggle the visibility of the theme manager.
-
+
&Service Manager
&Service Manager
-
+
Toggle Service Manager
Toggle Service Manager
-
+
Toggle the visibility of the service manager.
Toggle the visibility of the service manager.
-
+
&Preview Panel
&Preview Panel
-
+
Toggle Preview Panel
Toggle Preview Panel
-
+
Toggle the visibility of the preview panel.
Toggle the visibility of the preview panel.
-
+
&Live Panel
&Live Panel
-
+
Toggle Live Panel
Toggle Live Panel
-
+
Toggle the visibility of the live panel.
Toggle the visibility of the live panel.
-
+
&Plugin List
&Plugin List
-
+
List the Plugins
List the Plugins
-
+
&User Guide
&User Guide
-
+
&About
&About
-
+
More information about OpenLP
More information about OpenLP
-
+
&Online Help
&Online Help
-
+
&Web Site
&Web Site
-
+
Use the system language, if available.
Use the system language, if available.
-
+
Set the interface language to %s
Set the interface language to %s
-
+
Add &Tool...
Add &Tool...
-
+
Add an application to the list of tools.
Add an application to the list of tools.
-
+
&Default
&Default
-
+
Set the view mode back to the default.
Set the view mode back to the default.
-
+
&Setup
&Setup
-
+
Set the view mode to Setup.
Set the view mode to Setup.
-
+
&Live
&Live
-
+
Set the view mode to Live.
Set the view mode to Live.
-
+
Version %s of OpenLP is now available for download (you are currently running version %s).
You can download the latest version from http://openlp.org/.
@@ -3452,108 +3452,108 @@ You can download the latest version from http://openlp.org/.
You can download the latest version from http://openlp.org/.
-
+
OpenLP Version Updated
OpenLP Version Updated
-
+
OpenLP Main Display Blanked
OpenLP Main Display Blanked
-
+
The Main Display has been blanked out
The Main Display has been blanked out
-
+
Default Theme: %s
Default Theme: %s
-
+
English
Please add the name of your language here
English
-
+
Configure &Shortcuts...
Configure &Shortcuts...
-
+
Close OpenLP
Close OpenLP
-
+
Are you sure you want to close OpenLP?
Are you sure you want to close OpenLP?
-
+
Open &Data Folder...
Open &Data Folder...
-
+
Open the folder where songs, bibles and other data resides.
Open the folder where songs, bibles and other data resides.
-
+
&Autodetect
&Autodetect
-
+
Update Theme Images
Update Theme Images
-
+
Update the preview images for all themes.
Update the preview images for all themes.
-
+
Print the current service.
Print the current service.
-
+
&Recent Files
&Recent Files
-
+
L&ock Panels
L&ock Panels
-
+
Prevent the panels being moved.
Prevent the panels being moved.
-
+
Re-run First Time Wizard
Re-run First Time Wizard
-
+
Re-run the First Time Wizard, importing songs, Bibles and themes.
Re-run the First Time Wizard, importing songs, Bibles and themes.
-
+
Re-run First Time Wizard?
Re-run First Time Wizard?
-
+
Are you sure you want to re-run the First Time Wizard?
Re-running this wizard may make changes to your current OpenLP configuration and possibly add songs to your existing songs list and change your default theme.
@@ -3562,43 +3562,43 @@ Re-running this wizard may make changes to your current OpenLP configuration and
Re-running this wizard may make changes to your current OpenLP configuration and possibly add songs to your existing songs list and change your default theme.
-
+
Clear List
Clear List of recent files
Clear List
-
+
Clear the list of recent files.
Clear the list of recent files.
-
+
Configure &Formatting Tags...
Configure &Formatting Tags...
-
+
Export OpenLP settings to a specified *.config file
Export OpenLP settings to a specified *.config file
-
+
Settings
Settings
-
+
Import OpenLP settings from a specified *.config file previously exported on this or another machine
Import OpenLP settings from a specified *.config file previously exported on this or another machine
-
+
Import settings?
Import settings?
-
+
Are you sure you want to import settings?
Importing settings will make permanent changes to your current OpenLP configuration.
@@ -3611,37 +3611,37 @@ Importing settings will make permanent changes to your current OpenLP configurat
Importing incorrect settings may cause erratic behaviour or OpenLP to terminate abnormally.
-
+
Open File
Open File
-
+
OpenLP Export Settings Files (*.conf)
OpenLP Export Settings Files (*.conf)
-
+
Import settings
Import settings
-
+
OpenLP will now close. Imported settings will be applied the next time you start OpenLP.
OpenLP will now close. Imported settings will be applied the next time you start OpenLP.
-
+
Export Settings File
Export Settings File
-
+
OpenLP Export Settings File (*.conf)
OpenLP Export Settings File (*.conf)
-
+
New Data Directory Error
New Data Directory Error
@@ -3649,12 +3649,12 @@ Importing incorrect settings may cause erratic behaviour or OpenLP to terminate
OpenLP.Manager
-
+
Database Error
Database Error
-
+
The database being loaded was created in a more recent version of OpenLP. The database is version %d, while OpenLP expects version %d. The database will not be loaded.
Database: %s
@@ -3663,7 +3663,7 @@ Database: %s
Database: %s
-
+
OpenLP cannot load your database.
Database: %s
@@ -3675,52 +3675,52 @@ Database: %s
OpenLP.MediaManagerItem
-
+
No Items Selected
No Items Selected
-
+
&Add to selected Service Item
&Add to selected Service Item
-
+
You must select one or more items to preview.
You must select one or more items to preview.
-
+
You must select one or more items to send live.
You must select one or more items to send live.
-
+
You must select one or more items.
You must select one or more items.
-
+
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
@@ -3737,12 +3737,12 @@ Suffix not supported
Suffix not supported
-
+
&Clone
&Clone
-
+
Duplicate files were found on import and were ignored.
Duplicate files were found on import and were ignored.
@@ -3750,12 +3750,12 @@ Suffix not supported
OpenLP.OpenLyricsImportError
-
+
<lyrics> tag is missing.
<lyrics> tag is missing.
-
+
<verse> tag is missing.
<verse> tag is missing.
@@ -3763,42 +3763,42 @@ Suffix not supported
OpenLP.PluginForm
-
+
Plugin List
Plugin List
-
+
Plugin Details
Plugin Details
-
+
Status:
Status:
-
+
Active
Active
-
+
Inactive
Inactive
-
+
%s (Inactive)
%s (Inactive)
-
+
%s (Active)
%s (Active)
-
+
%s (Disabled)
%s (Disabled)
@@ -3806,12 +3806,12 @@ Suffix not supported
OpenLP.PrintServiceDialog
-
+
Fit Page
Fit Page
-
+
Fit Width
Fit Width
@@ -3819,77 +3819,77 @@ Suffix not supported
OpenLP.PrintServiceForm
-
+
Options
Options
-
+
Copy
Copy
-
+
Copy as HTML
Copy as HTML
-
+
Zoom In
Zoom In
-
+
Zoom Out
Zoom Out
-
+
Zoom Original
Zoom Original
-
+
Other Options
Other Options
-
+
Include slide text if available
Include slide text if available
-
+
Include service item notes
Include service item notes
-
+
Include play length of media items
Include play length of media items
-
+
Add page break before each text item
Add page break before each text item
-
+
Service Sheet
Service Sheet
-
+
Print
Print
-
+
Title:
Title:
-
+
Custom Footer Text:
Custom Footer Text:
@@ -3897,12 +3897,12 @@ Suffix not supported
OpenLP.ScreenList
-
+
Screen
Screen
-
+
primary
primary
@@ -3910,12 +3910,12 @@ Suffix not supported
OpenLP.ServiceItem
-
+
<strong>Start</strong>: %s
<strong>Start</strong>: %s
-
+
<strong>Length</strong>: %s
<strong>Length</strong>: %s
@@ -3923,7 +3923,7 @@ Suffix not supported
OpenLP.ServiceItemEditForm
-
+
Reorder Service Item
Reorder Service Item
@@ -3931,279 +3931,279 @@ 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
-
+
OpenLP Service Files (*.osz)
OpenLP Service Files (*.osz)
-
+
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
-
+
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.
-
+
&Start Time
&Start Time
-
+
Show &Preview
Show &Preview
-
+
Modified Service
Modified Service
-
+
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?
-
+
Custom Service Notes:
Custom Service Notes:
-
+
Notes:
Notes:
-
+
Playing time:
Playing time:
-
+
Untitled Service
Untitled 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
-
+
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.
-
+
Service File Missing
Service File Missing
-
+
Slide theme
Slide theme
-
+
Notes
Notes
-
+
Edit
Edit
-
+
Service copy only
Service copy only
-
+
Error Saving File
Error Saving File
-
+
There was an error saving your file.
There was an error saving your file.
@@ -4211,7 +4211,7 @@ The content encoding is not UTF-8.
OpenLP.ServiceNoteForm
-
+
Service Item Notes
Service Item Notes
@@ -4219,7 +4219,7 @@ The content encoding is not UTF-8.
OpenLP.SettingsForm
-
+
Configure OpenLP
Configure OpenLP
@@ -4227,67 +4227,67 @@ The content encoding is not UTF-8.
OpenLP.ShortcutListDialog
-
+
Action
Action
-
+
Shortcut
Shortcut
-
+
Duplicate Shortcut
Duplicate Shortcut
-
+
The shortcut "%s" is already assigned to another action, please use a different shortcut.
The shortcut "%s" is already assigned to another action, please use a different shortcut.
-
+
Alternate
Alternate
-
+
Select an action and click one of the buttons below to start capturing a new primary or alternate shortcut, respectively.
Select an action and click one of the buttons below to start capturing a new primary or alternate shortcut, respectively.
-
+
Default
Default
-
+
Custom
Custom
-
+
Capture shortcut.
Capture shortcut.
-
+
Restore the default shortcut of this action.
Restore the default shortcut of this action.
-
+
Restore Default Shortcuts
Restore Default Shortcuts
-
+
Do you want to restore all shortcuts to their defaults?
Do you want to restore all shortcuts to their defaults?
-
+
Configure Shortcuts
Configure Shortcuts
@@ -4295,172 +4295,172 @@ The content encoding is not UTF-8.
OpenLP.SlideController
-
+
Hide
Hide
-
+
Go To
Go To
-
+
Blank Screen
Blank Screen
-
+
Blank to Theme
Blank to Theme
-
+
Show Desktop
Show Desktop
-
+
Previous Service
Previous Service
-
+
Next Service
Next Service
-
+
Escape Item
Escape Item
-
+
Move to previous.
Move to previous.
-
+
Move to next.
Move to next.
-
+
Play Slides
Play Slides
-
+
Delay between slides in seconds.
Delay between slides in seconds.
-
+
Move to live.
Move to live.
-
+
Add to Service.
Add to Service.
-
+
Edit and reload song preview.
Edit and reload song preview.
-
+
Start playing media.
Start playing media.
-
+
Pause audio.
Pause audio.
-
+
Pause playing media.
Pause playing media.
-
+
Stop playing media.
Stop playing media.
-
+
Video position.
Video position.
-
+
Audio Volume.
Audio Volume.
-
+
Go to "Verse"
Go to "Verse"
-
+
Go to "Chorus"
Go to "Chorus"
-
+
Go to "Bridge"
Go to "Bridge"
-
+
Go to "Pre-Chorus"
Go to "Pre-Chorus"
-
+
Go to "Intro"
Go to "Intro"
-
+
Go to "Ending"
Go to "Ending"
-
+
Go to "Other"
Go to "Other"
-
+
Previous Slide
Previous Slide
-
+
Next Slide
Next Slide
-
+
Pause Audio
Pause Audio
-
+
Background Audio
Background Audio
-
+
Go to next audio track.
Go to next audio track.
-
+
Tracks
Tracks
@@ -4468,17 +4468,17 @@ The content encoding is not UTF-8.
OpenLP.SpellTextEdit
-
+
Spelling Suggestions
Spelling Suggestions
-
+
Formatting Tags
Formatting Tags
-
+
Language:
Language:
@@ -4486,67 +4486,67 @@ The content encoding is not UTF-8.
OpenLP.StartTimeForm
-
+
Hours:
Hours:
-
+
Minutes:
Minutes:
-
+
Seconds:
Seconds:
-
+
Item Start and Finish Time
Item Start and Finish Time
-
+
Start
Start
-
+
Finish
Finish
-
+
Length
Length
-
+
Time Validation Error
Time Validation Error
-
+
Finish time is set after the end of the media item
Finish time is set after the end of the media item
-
+
Start time is after the finish time of the media item
Start time is after the finish time of the media item
-
+
Theme Layout
Theme Layout
-
+
The blue box shows the main area.
The blue box shows the main area.
-
+
The red box shows the footer.
The red box shows the footer.
@@ -4554,32 +4554,32 @@ The content encoding is not UTF-8.
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)
@@ -4587,72 +4587,72 @@ The content encoding is not UTF-8.
OpenLP.ThemeManager
-
+
Create a new theme.
Create a new theme.
-
+
Edit Theme
Edit Theme
-
+
Edit a theme.
Edit a theme.
-
+
Delete Theme
Delete Theme
-
+
Delete a theme.
Delete a theme.
-
+
Import Theme
Import Theme
-
+
Import a theme.
Import a theme.
-
+
Export Theme
Export Theme
-
+
Export a theme.
Export a theme.
-
+
&Edit Theme
&Edit Theme
-
+
&Delete Theme
&Delete Theme
-
+
Set As &Global Default
Set As &Global Default
-
+
%s (default)
%s (default)
-
+
You must select a theme to edit.
You must select a theme to edit.
@@ -4667,87 +4667,87 @@ The content encoding is not UTF-8.
Theme %s is used in the %s plugin.
-
+
You have not selected a theme.
You have not selected a theme.
-
+
Save Theme - (%s)
Save Theme - (%s)
-
+
Theme Exported
Theme Exported
-
+
Your theme has been successfully exported.
Your theme has been successfully exported.
-
+
Theme Export Failed
Theme Export Failed
-
+
Your theme could not be exported due to an error.
Your theme could not be exported due to an error.
-
+
Select Theme Import File
Select Theme Import File
-
+
File is not a valid theme.
File is not a valid theme.
-
+
&Copy Theme
&Copy Theme
-
+
&Rename Theme
&Rename Theme
-
+
&Export Theme
&Export Theme
-
+
You must select a theme to rename.
You must select a theme to rename.
-
+
Rename Confirmation
Rename Confirmation
-
+
Rename %s theme?
Rename %s theme?
-
+
You must select a theme to delete.
You must select a theme to delete.
-
+
Delete Confirmation
Delete Confirmation
-
+
Delete %s theme?
Delete %s theme?
@@ -4762,18 +4762,18 @@ The content encoding is not UTF-8.
A theme with this name already exists.
-
+
OpenLP Themes (*.theme *.otz)
OpenLP Themes (*.theme *.otz)
-
+
Copy of %s
Copy of <theme name>
Copy of %s
-
+
Theme Already Exists
Theme Already Exists
@@ -4781,320 +4781,320 @@ 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 Color
-
+
Gradient
Gradient
-
+
Color:
Color:
-
+
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
Center
-
+
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:
-
+
Edit Theme - %s
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.
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
-
+
Starting color:
Starting color:
-
+
Ending color:
Ending color:
-
+
Background color:
Background color:
-
+
Justify
Justify
-
+
Layout Preview
Layout Preview
-
+
Transparent
Transparent
+
+
+ Preview and Save
+
+
+
+
+ Preview the theme and save it.
+
+
OpenLP.ThemesTab
-
+
Global Theme
Global Theme
-
+
Theme Level
Theme Level
-
+
S&ong Level
S&ong Level
-
+
Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme.
Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme.
-
+
&Service Level
&Service Level
-
+
Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme.
Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme.
-
+
&Global Level
&Global Level
-
+
Use the global theme, overriding any themes associated with either the service or the songs.
Use the global theme, overriding any themes associated with either the service or the songs.
-
+
Themes
Themes
@@ -5102,591 +5102,591 @@ The content encoding is not UTF-8.
OpenLP.Ui
-
+
Error
Error
-
+
About
About
-
+
&Add
&Add
-
+
Advanced
Advanced
-
+
All Files
All Files
-
+
Bottom
Bottom
-
+
Browse...
Browse...
-
+
Cancel
Cancel
-
+
CCLI number:
CCLI number:
-
+
Create a new service.
Create a new service.
-
+
&Delete
&Delete
-
+
&Edit
&Edit
-
+
Empty Field
Empty Field
-
+
Export
Export
-
+
pt
Abbreviated font pointsize unit
pt
-
+
Image
Image
-
+
Import
Import
-
+
Live
Live
-
+
Live Background Error
Live Background Error
-
+
Load
Load
-
+
Middle
Middle
-
+
New
New
-
+
New Service
New Service
-
+
New Theme
New Theme
-
+
No File Selected
Singular
No File Selected
-
+
No Files Selected
Plural
No Files Selected
-
+
No Item Selected
Singular
No Item Selected
-
+
No Items Selected
Plural
No Items Selected
-
+
openlp.org 1.x
openlp.org 1.x
-
+
OpenLP 2.0
OpenLP 2.0
-
+
Preview
Preview
-
+
Replace Background
Replace Background
-
+
Reset Background
Reset Background
-
+
s
The abbreviated unit for seconds
s
-
+
Save && Preview
Save && Preview
-
+
Search
Search
-
+
You must select an item to delete.
You must select an item to delete.
-
+
You must select an item to edit.
You must select an item to edit.
-
+
Save Service
Save Service
-
+
Service
Service
-
+
Start %s
Start %s
-
+
Theme
Singular
Theme
-
+
Themes
Plural
Themes
-
+
Top
Top
-
+
Version
Version
-
+
Delete the selected item.
Delete the selected item.
-
+
Move selection up one position.
Move selection up one position.
-
+
Move selection down one position.
Move selection down one position.
-
+
&Vertical Align:
&Vertical Align:
-
+
Finished import.
Finished import.
-
+
Format:
Format:
-
+
Importing
Importing
-
+
Importing "%s"...
Importing "%s"...
-
+
Select Import Source
Select Import Source
-
+
Select the import format and the location to import from.
Select the import format and the location to import from.
-
+
The openlp.org 1.x importer has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "python-sqlite" module.
The openlp.org 1.x importer has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "python-sqlite" module.
-
+
Open %s File
Open %s File
-
+
%p%
%p%
-
+
Ready.
Ready.
-
+
Starting import...
Starting import...
-
+
You need to specify at least one %s file to import from.
A file type e.g. OpenSong
You need to specify at least one %s file to import from.
-
+
Welcome to the Bible Import Wizard
Welcome to the Bible Import Wizard
-
+
Welcome to the Song Export Wizard
Welcome to the Song Export Wizard
-
+
Welcome to the Song Import Wizard
Welcome to the Song Import Wizard
-
+
Author
Singular
Author
-
+
Authors
Plural
Authors
-
+
©
Copyright symbol.
©
-
+
Song Book
Singular
Song Book
-
+
Song Books
Plural
Song Books
-
+
Song Maintenance
Song Maintenance
-
+
Topic
Singular
Topic
-
+
Topics
Plural
Topics
-
+
Continuous
Continuous
-
+
Default
Default
-
+
Display style:
Display style:
-
+
Duplicate Error
Duplicate Error
-
+
File
File
-
+
Help
Help
-
+
h
The abbreviated unit for hours
h
-
+
Layout style:
Layout style:
-
+
Live Toolbar
Live Toolbar
-
+
m
The abbreviated unit for minutes
m
-
+
OpenLP is already running. Do you wish to continue?
OpenLP is already running. Do you wish to continue?
-
+
Settings
Settings
-
+
Tools
Tools
-
+
Unsupported File
Unsupported File
-
+
Verse Per Slide
Verse Per Slide
-
+
Verse Per Line
Verse Per Line
-
+
View
View
-
+
Title and/or verses not found
Title and/or verses not found
-
+
XML syntax error
XML syntax error
-
+
View Mode
View Mode
-
+
Open service.
Open service.
-
+
Print Service
Print Service
-
+
Replace live background.
Replace live background.
-
+
Reset live background.
Reset live background.
-
+
Split a slide into two only if it does not fit on the screen as one slide.
Split a slide into two only if it does not fit on the screen as one slide.
-
+
Welcome to the Bible Upgrade Wizard
Welcome to the Bible Upgrade Wizard
-
+
Confirm Delete
Confirm Delete
-
+
Play Slides in Loop
Play Slides in Loop
-
+
Play Slides to End
Play Slides to End
-
+
Stop Play Slides in Loop
Stop Play Slides in Loop
-
+
Stop Play Slides to End
Stop Play Slides to End
-
+
Next Track
Next Track
-
+
Search Themes...
Search bar place holder text
Search Themes...
-
+
Optional &Split
Optional &Split
-
+
Invalid Folder Selected
Singular
Invalid Folder Selected
-
+
Invalid File Selected
Singular
Invalid File Selected
-
+
Invalid Files Selected
Plural
Invalid Files Selected
-
+
No Folder Selected
Singular
No Folder Selected
-
+
Open %s Folder
Open %s Folder
-
+
You need to specify one %s file to import from.
A file type e.g. OpenSong
You need to specify one %s file to import from.
-
+
You need to specify one %s folder to import from.
A song format e.g. PowerSong
You need to specify one %s folder to import from.
@@ -5695,25 +5695,25 @@ The content encoding is not UTF-8.
OpenLP.core.lib
-
+
%1 and %2
Locale list separator: 2 items
%1 and %2
-
+
%1, and %2
Locale list separator: end
%1, and %2
-
+
%1, %2
Locale list separator: middle
%1, %2
-
+
%1, %2
Locale list separator: start
%1, %2
@@ -5722,50 +5722,50 @@ The content encoding is not UTF-8.
PresentationPlugin
-
+
<strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box.
<strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box.
-
+
Presentation
name singular
Presentation
-
+
Presentations
name plural
Presentations
-
+
Presentations
container title
Presentations
-
+
Load a new presentation.
Load a new presentation.
-
+
Delete the selected presentation.
Delete the selected presentation.
-
+
Preview the selected presentation.
Preview the selected presentation.
-
+
Send the selected presentation live.
Send the selected presentation live.
-
+
Add the selected presentation to the service.
Add the selected presentation to the service.
@@ -5773,52 +5773,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 is incomplete, please reload.
The presentation %s is incomplete, please reload.
-
+
The presentation %s no longer exists.
The presentation %s no longer exists.
@@ -5826,17 +5826,17 @@ The content encoding is not UTF-8.
PresentationPlugin.PresentationTab
-
+
Available Controllers
Available Controllers
-
+
%s (unavailable)
%s (unavailable)
-
+
Allow presentation application to be overridden
Allow presentation application to be overridden
@@ -5844,24 +5844,24 @@ The content encoding is not UTF-8.
RemotePlugin
-
+
<strong>Remote Plugin</strong><br />The remote plugin provides the ability to send messages to a running version of OpenLP on a different computer via a web browser or through the remote API.
<strong>Remote Plugin</strong><br />The remote plugin provides the ability to send messages to a running version of OpenLP on a different computer via a web browser or through the remote API.
-
+
Remote
name singular
Remote
-
+
Remotes
name plural
Remotes
-
+
Remote
container title
Remote
@@ -5870,107 +5870,107 @@ The content encoding is not UTF-8.
RemotePlugin.Mobile
-
+
OpenLP 2.0 Remote
OpenLP 2.0 Remote
-
+
OpenLP 2.0 Stage View
OpenLP 2.0 Stage View
-
+
Service Manager
Service Manager
-
+
Slide Controller
Slide Controller
-
+
Alerts
Alerts
-
+
Search
Search
-
+
Refresh
Refresh
-
+
Blank
Blank
-
+
Show
Show
-
+
Prev
Prev
-
+
Next
Next
-
+
Text
Text
-
+
Show Alert
Show Alert
-
+
Go Live
Go Live
-
+
No Results
No Results
-
+
Options
Options
-
+
Add to Service
Add to Service
-
+
Home
Home
-
+
Theme
Theme
-
+
Desktop
Desktop
-
+
Add & Go to Service
Add & Go to Service
@@ -5978,42 +5978,42 @@ 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
Display stage time in 12h format
-
+
Android App
Android App
-
+
Scan the QR code or click <a href="https://market.android.com/details?id=org.openlp.android">download</a> to install the Android app from the Market.
Scan the QR code or click <a href="https://market.android.com/details?id=org.openlp.android">download</a> to install the Android app from the Market.
@@ -6021,85 +6021,85 @@ The content encoding is not UTF-8.
SongUsagePlugin
-
+
&Song Usage Tracking
&Song Usage Tracking
-
+
&Delete Tracking Data
&Delete Tracking Data
-
+
Delete song usage data up to a specified date.
Delete song usage data up to a specified date.
-
+
&Extract Tracking Data
&Extract Tracking Data
-
+
Generate a report on song usage.
Generate a report on song usage.
-
+
Toggle Tracking
Toggle Tracking
-
+
Toggle the tracking of song usage.
Toggle the tracking of song usage.
-
+
<strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services.
<strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services.
-
+
SongUsage
name singular
SongUsage
-
+
SongUsage
name plural
SongUsage
-
+
SongUsage
container title
SongUsage
-
+
Song Usage
Song Usage
-
+
Song usage tracking is active.
Song usage tracking is active.
-
+
Song usage tracking is inactive.
Song usage tracking is inactive.
-
+
display
display
-
+
printed
printed
@@ -6107,32 +6107,32 @@ The content encoding is not UTF-8.
SongUsagePlugin.SongUsageDeleteForm
-
+
Delete Song Usage Data
Delete Song Usage Data
-
+
Delete Selected Song Usage Events?
Delete Selected Song Usage Events?
-
+
Are you sure you want to delete selected Song Usage data?
Are you sure you want to delete selected Song Usage data?
-
+
Deletion Successful
Deletion Successful
-
+
All requested data has been deleted successfully.
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.
@@ -6140,42 +6140,42 @@ The content encoding is not UTF-8.
SongUsagePlugin.SongUsageDetailForm
-
+
Song Usage Extraction
Song Usage Extraction
-
+
Select Date Range
Select Date Range
-
+
to
to
-
+
Report Location
Report Location
-
+
Output File Location
Output File Location
-
+
usage_detail_%s_%s.txt
usage_detail_%s_%s.txt
-
+
Report Creation
Report Creation
-
+
Report
%s
has been successfully created.
@@ -6184,12 +6184,12 @@ has been successfully created.
has been successfully created.
-
+
Output Path Not Selected
Output Path Not Selected
-
+
You have not set a valid output location for your song usage report. Please select an existing path on your computer.
You have not set a valid output location for your song usage report. Please select an existing path on your computer.
@@ -6197,112 +6197,112 @@ has been successfully created.
SongsPlugin
-
+
&Song
&Song
-
+
Import songs using the import wizard.
Import songs using the import wizard.
-
+
<strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs.
<strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs.
-
+
&Re-index Songs
&Re-index Songs
-
+
Re-index the songs database to improve searching and ordering.
Re-index the songs database to improve searching and ordering.
-
+
Reindexing songs...
Reindexing songs...
-
+
Arabic (CP-1256)
Arabic (CP-1256)
-
+
Baltic (CP-1257)
Baltic (CP-1257)
-
+
Central European (CP-1250)
Central European (CP-1250)
-
+
Cyrillic (CP-1251)
Cyrillic (CP-1251)
-
+
Greek (CP-1253)
Greek (CP-1253)
-
+
Hebrew (CP-1255)
Hebrew (CP-1255)
-
+
Japanese (CP-932)
Japanese (CP-932)
-
+
Korean (CP-949)
Korean (CP-949)
-
+
Simplified Chinese (CP-936)
Simplified Chinese (CP-936)
-
+
Thai (CP-874)
Thai (CP-874)
-
+
Traditional Chinese (CP-950)
Traditional Chinese (CP-950)
-
+
Turkish (CP-1254)
Turkish (CP-1254)
-
+
Vietnam (CP-1258)
Vietnam (CP-1258)
-
+
Western European (CP-1252)
Western European (CP-1252)
-
+
Character Encoding
Character Encoding
-
+
The codepage setting is responsible
for the correct character representation.
Usually you are fine with the preselected choice.
@@ -6311,62 +6311,62 @@ for the correct character representation.
Usually you are fine with the preselected choice.
-
+
Please choose the character encoding.
The encoding is responsible for the correct character representation.
Please choose the character encoding.
The encoding is responsible for the correct character representation.
-
+
Song
name singular
Song
-
+
Songs
name plural
Songs
-
+
Songs
container title
Songs
-
+
Exports songs using the export wizard.
Exports songs using the export wizard.
-
+
Add a new song.
Add a new song.
-
+
Edit the selected song.
Edit the selected song.
-
+
Delete the selected song.
Delete the selected song.
-
+
Preview the selected song.
Preview the selected song.
-
+
Send the selected song live.
Send the selected song live.
-
+
Add the selected song to the service.
Add the selected song to the service.
@@ -6374,37 +6374,37 @@ The encoding is responsible for the correct character representation.
SongsPlugin.AuthorsForm
-
+
Author Maintenance
Author Maintenance
-
+
Display name:
Display name:
-
+
First name:
First name:
-
+
Last name:
Last name:
-
+
You need to type in the first name of the author.
You need to type in the first name of the author.
-
+
You need to type in the last name of the author.
You need to type in the last name of the author.
-
+
You have not set a display name for the author, combine the first and last names?
You have not set a display name for the author, combine the first and last names?
@@ -6412,7 +6412,7 @@ The encoding is responsible for the correct character representation.
SongsPlugin.CCLIFileImport
-
+
The file does not have a valid extension.
The file does not have a valid extension.
@@ -6420,12 +6420,12 @@ The encoding is responsible for the correct character representation.
SongsPlugin.EasyWorshipSongImport
-
+
Administered by %s
Administered by %s
-
+
[above are Song Tags with notes imported from
EasyWorship]
@@ -6437,12 +6437,12 @@ The encoding is responsible for the correct character representation.
SongsPlugin.EditBibleForm
-
+
Meta Data
Meta Data
-
+
Custom Book Names
Custom Book Names
@@ -6450,207 +6450,207 @@ The encoding is responsible for the correct character representation.
SongsPlugin.EditSongForm
-
+
Song Editor
Song Editor
-
+
&Title:
&Title:
-
+
Alt&ernate title:
Alt&ernate title:
-
+
&Lyrics:
&Lyrics:
-
+
&Verse order:
&Verse order:
-
+
Ed&it All
Ed&it All
-
+
Title && Lyrics
Title && Lyrics
-
+
&Add to Song
&Add to Song
-
+
&Remove
&Remove
-
+
&Manage Authors, Topics, Song Books
&Manage Authors, Topics, Song Books
-
+
A&dd to Song
A&dd to Song
-
+
R&emove
R&emove
-
+
Book:
Book:
-
+
Number:
Number:
-
+
Authors, Topics && Song Book
Authors, Topics && Song Book
-
+
New &Theme
New &Theme
-
+
Copyright Information
Copyright Information
-
+
Comments
Comments
-
+
Theme, Copyright Info && Comments
Theme, Copyright Info && Comments
-
+
Add Author
Add Author
-
+
This author does not exist, do you want to add them?
This author does not exist, do you want to add them?
-
+
This author is already in the list.
This author is already in the list.
-
+
You have not selected a valid author. Either select an author from the list, or type in a new author and click the "Add Author to Song" button to add the new author.
You have not selected a valid author. Either select an author from the list, or type in a new author and click the "Add Author to Song" button to add the new author.
-
+
Add Topic
Add Topic
-
+
This topic does not exist, do you want to add it?
This topic does not exist, do you want to add it?
-
+
This topic is already in the list.
This topic is already in the list.
-
+
You have not selected a valid topic. Either select a topic from the list, or type in a new topic and click the "Add Topic to Song" button to add the new topic.
You have not selected a valid topic. Either select a topic from the list, or type in a new topic and click the "Add Topic to Song" button to add the new topic.
-
+
You need to type in a song title.
You need to type in a song title.
-
+
You need to type in at least one verse.
You need to type in at least one verse.
-
+
The verse order is invalid. There is no verse corresponding to %s. Valid entries are %s.
The verse order is invalid. There is no verse corresponding to %s. Valid entries are %s.
-
+
Add Book
Add Book
-
+
This song book does not exist, do you want to add it?
This song book does not exist, do you want to add it?
-
+
You need to have an author for this song.
You need to have an author for this song.
-
+
You need to type some text in to the verse.
You need to type some text in to the verse.
-
+
Linked Audio
Linked Audio
-
+
Add &File(s)
Add &File(s)
-
+
Add &Media
Add &Media
-
+
Remove &All
Remove &All
-
+
Open File(s)
Open File(s)
-
+
<strong>Warning:</strong> Not all of the verses are in use.
<strong>Warning:</strong> Not all of the verses are in use.
-
+
The verse order is invalid. There are no verses corresponding to %s. Valid entries are %s.
The verse order is invalid. There are no verses corresponding to %s. Valid entries are %s.
@@ -6658,22 +6658,22 @@ The encoding is responsible for the correct character representation.
SongsPlugin.EditVerseForm
-
+
Edit Verse
Edit Verse
-
+
&Verse type:
&Verse type:
-
+
&Insert
&Insert
-
+
Split a slide into two by inserting a verse splitter.
Split a slide into two by inserting a verse splitter.
@@ -6681,82 +6681,82 @@ The encoding is responsible for the correct character representation.
SongsPlugin.ExportWizardForm
-
+
Song Export Wizard
Song Export Wizard
-
+
Select Songs
Select Songs
-
+
Check the songs you want to export.
Check the songs you want to export.
-
+
Uncheck All
Uncheck All
-
+
Check All
Check All
-
+
Select Directory
Select Directory
-
+
Directory:
Directory:
-
+
Exporting
Exporting
-
+
Please wait while your songs are exported.
Please wait while your songs are exported.
-
+
You need to add at least one Song to export.
You need to add at least one Song to export.
-
+
No Save Location specified
No Save Location specified
-
+
Starting export...
Starting export...
-
+
You need to specify a directory.
You need to specify a directory.
-
+
Select Destination Folder
Select Destination Folder
-
+
Select the directory where you want the songs to be saved.
Select the directory where you want the songs to be saved.
-
+
This wizard will help to export your songs to the open and free <strong>OpenLyrics</strong> worship song format.
This wizard will help to export your songs to the open and free <strong>OpenLyrics</strong> worship song format.
@@ -6764,150 +6764,155 @@ The encoding is responsible for the correct character representation.
SongsPlugin.ImportWizardForm
-
+
Select Document/Presentation Files
Select Document/Presentation Files
-
+
Song Import Wizard
Song Import Wizard
-
+
This wizard will help you to import songs from a variety of formats. Click the next button below to start the process by selecting a format to import from.
This wizard will help you to import songs from a variety of formats. Click the next button below to start the process by selecting a format to import from.
-
+
Generic Document/Presentation
Generic Document/Presentation
-
+
Add Files...
Add Files...
-
+
Remove File(s)
Remove File(s)
-
+
Please wait while your songs are imported.
Please wait while your songs are imported.
-
+
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
-
+
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 or OpenLP 2.0 Exported Song
-
+
OpenLyrics Files
OpenLyrics Files
-
+
CCLI SongSelect Files
CCLI SongSelect Files
-
+
EasySlides XML File
EasySlides XML File
-
+
EasyWorship Song Database
EasyWorship Song Database
-
+
DreamBeam Song Files
DreamBeam Song Files
-
+
You need to specify a valid PowerSong 1.0 database folder.
You need to specify a valid PowerSong 1.0 database folder.
-
+
ZionWorx (CSV)
ZionWorx (CSV)
-
+
First convert your ZionWorx database to a CSV text file, as explained in the <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">User Manual</a>.
First convert your ZionWorx database to a CSV text file, as explained in the <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">User Manual</a>.
+
+
+ SundayPlus Song Files
+
+
SongsPlugin.MediaFilesForm
-
+
Select Media File(s)
Select Media File(s)
-
+
Select one or more audio files from the list below, and click OK to import them into this song.
Select one or more audio files from the list below, and click OK to import them into this song.
@@ -6915,27 +6920,27 @@ The encoding is responsible for the correct character representation.
SongsPlugin.MediaItem
-
+
Titles
Titles
-
+
Lyrics
Lyrics
-
+
CCLI License:
CCLI License:
-
+
Entire Song
Entire Song
-
+
Are you sure you want to delete the %n selected song(s)?
Are you sure you want to delete the %n selected song(s)?
@@ -6943,38 +6948,38 @@ The encoding is responsible for the correct character representation.
-
+
Maintain the lists of authors, topics and books.
Maintain the lists of authors, topics and books.
-
+
copy
For song cloning
copy
-
+
Search Titles...
Search Titles...
-
+
Search Entire Song...
Search Entire Song...
-
+
Search Lyrics...
Search Lyrics...
-
+
Search Authors...
Search Authors...
-
+
Search Song Books...
Search Song Books...
@@ -6982,7 +6987,7 @@ The encoding is responsible for the correct character representation.
SongsPlugin.OpenLP1SongImport
-
+
Not a valid openlp.org 1.x song database.
Not a valid openlp.org 1.x song database.
@@ -6990,7 +6995,7 @@ The encoding is responsible for the correct character representation.
SongsPlugin.OpenLPSongImport
-
+
Not a valid OpenLP 2.0 song database.
Not a valid OpenLP 2.0 song database.
@@ -6998,7 +7003,7 @@ The encoding is responsible for the correct character representation.
SongsPlugin.OpenLyricsExport
-
+
Exporting "%s"...
Exporting "%s"...
@@ -7006,12 +7011,12 @@ The encoding is responsible for the correct character representation.
SongsPlugin.PowerSongImport
-
+
No songs to import.
No songs to import.
-
+
Verses not found. Missing "PART" header.
Verses not found. Missing "PART" header.
@@ -7019,22 +7024,22 @@ The encoding is responsible for the correct character representation.
SongsPlugin.SongBookForm
-
+
Song Book Maintenance
Song Book Maintenance
-
+
&Name:
&Name:
-
+
&Publisher:
&Publisher:
-
+
You need to type in a name for the book.
You need to type in a name for the book.
@@ -7042,12 +7047,12 @@ The encoding is responsible for the correct character representation.
SongsPlugin.SongExportForm
-
+
Your song export failed.
Your song export failed.
-
+
Finished export. To import these files use the <strong>OpenLyrics</strong> importer.
Finished export. To import these files use the <strong>OpenLyrics</strong> importer.
@@ -7055,27 +7060,27 @@ The encoding is responsible for the correct character representation.
SongsPlugin.SongImport
-
+
copyright
copyright
-
+
The following songs could not be imported:
The following songs could not be imported:
-
+
Cannot access OpenOffice or LibreOffice
Cannot access OpenOffice or LibreOffice
-
+
Unable to open file
Unable to open file
-
+
File not found
File not found
@@ -7083,107 +7088,107 @@ The encoding is responsible for the correct character representation.
SongsPlugin.SongMaintenanceForm
-
+
Could not add your author.
Could not add your author.
-
+
This author already exists.
This author already exists.
-
+
Could not add your topic.
Could not add your topic.
-
+
This topic already exists.
This topic already exists.
-
+
Could not add your book.
Could not add your book.
-
+
This book already exists.
This book already exists.
-
+
Could not save your changes.
Could not save your changes.
-
+
Could not save your modified author, because the author already exists.
Could not save your modified author, because the author already exists.
-
+
Could not save your modified topic, because it already exists.
Could not save your modified topic, because it already exists.
-
+
Delete Author
Delete Author
-
+
Are you sure you want to delete the selected author?
Are you sure you want to delete the selected author?
-
+
This author cannot be deleted, they are currently assigned to at least one song.
This author cannot be deleted, they are currently assigned to at least one song.
-
+
Delete Topic
Delete Topic
-
+
Are you sure you want to delete the selected topic?
Are you sure you want to delete the selected topic?
-
+
This topic cannot be deleted, it is currently assigned to at least one song.
This topic cannot be deleted, it is currently assigned to at least one song.
-
+
Delete Book
Delete Book
-
+
Are you sure you want to delete the selected book?
Are you sure you want to delete the selected book?
-
+
This book cannot be deleted, it is currently assigned to at least one song.
This book cannot be deleted, it is currently assigned to at least one song.
-
+
The author %s already exists. Would you like to make songs with author %s use the existing author %s?
The author %s already exists. Would you like to make songs with author %s use the existing author %s?
-
+
The topic %s already exists. Would you like to make songs with topic %s use the existing topic %s?
The topic %s already exists. Would you like to make songs with topic %s use the existing topic %s?
-
+
The book %s already exists. Would you like to make songs with book %s use the existing book %s?
The book %s already exists. Would you like to make songs with book %s use the existing book %s?
@@ -7191,27 +7196,27 @@ The encoding is responsible for the correct character representation.
SongsPlugin.SongsTab
-
+
Songs Mode
Songs Mode
-
+
Enable search as you type
Enable search as you type
-
+
Display verses on live tool bar
Display verses on live tool bar
-
+
Update service from song edit
Update service from song edit
-
+
Import missing songs from service files
Import missing songs from service files
@@ -7219,17 +7224,17 @@ The encoding is responsible for the correct character representation.
SongsPlugin.TopicsForm
-
+
Topic Maintenance
Topic Maintenance
-
+
Topic name:
Topic name:
-
+
You need to type in a topic name.
You need to type in a topic name.
@@ -7237,37 +7242,37 @@ The encoding is responsible for the correct character representation.
SongsPlugin.VerseType
-
+
Verse
Verse
-
+
Chorus
Chorus
-
+
Bridge
Bridge
-
+
Pre-Chorus
Pre-Chorus
-
+
Intro
Intro
-
+
Ending
Ending
-
+
Other
Other
@@ -7275,12 +7280,12 @@ The encoding is responsible for the correct character representation.
SongsPlugin.ZionWorxImport
-
+
Error reading CSV file.
Error reading CSV file.
-
+
File not valid ZionWorx CSV format.
File not valid ZionWorx CSV format.
diff --git a/resources/i18n/en_GB.ts b/resources/i18n/en_GB.ts
index 262afefb6..061457490 100644
--- a/resources/i18n/en_GB.ts
+++ b/resources/i18n/en_GB.ts
@@ -3,35 +3,35 @@
AlertsPlugin
-
+
&Alert
&Alert
-
+
Show an alert message.
Show an alert message.
-
+
Alert
name singular
Alert
-
+
Alerts
name plural
Alerts
-
+
Alerts
container title
Alerts
-
+
<strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of nursery alerts on the display screen.
<strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of nursery alerts on the display screen.
@@ -39,69 +39,69 @@
AlertsPlugin.AlertForm
-
+
Alert Message
Alert Message
-
+
Alert &text:
Alert &text:
-
+
&New
&New
-
+
&Save
&Save
-
+
Displ&ay
Displ&ay
-
+
Display && Cl&ose
Display && Cl&ose
-
+
New Alert
New Alert
-
+
You haven't specified any text for your alert. Please type in some text before clicking New.
You haven't specified any text for your alert. Please type in some text before clicking New.
-
+
&Parameter:
&Parameter:
-
+
No Parameter Found
No Parameter Found
-
+
You have not entered a parameter to be replaced.
Do you want to continue anyway?
You have not entered a parameter to be replaced.
Do you want to continue anyway?
-
+
No Placeholder Found
No Placeholder Found
-
+
The alert text does not contain '<>'.
Do you want to continue anyway?
The alert text does not contain '<>'.
@@ -111,7 +111,7 @@ Do you want to continue anyway?
AlertsPlugin.AlertsManager
-
+
Alert message created and displayed.
Alert message created and displayed.
@@ -119,32 +119,32 @@ Do you want to continue anyway?
AlertsPlugin.AlertsTab
-
+
Font
Font
-
+
Font name:
Font name:
-
+
Font color:
Font colour:
-
+
Background color:
Background colour:
-
+
Font size:
Font size:
-
+
Alert timeout:
Alert timeout:
@@ -152,510 +152,510 @@ Do you want to continue anyway?
BiblesPlugin
-
+
&Bible
&Bible
-
+
Bible
name singular
Bible
-
+
Bibles
name plural
Bibles
-
+
Bibles
container title
Bibles
-
+
No Book Found
No Book Found
-
+
No matching book could be found in this Bible. Check that you have spelled the name of the book correctly.
No matching book could be found in this Bible. Check that you have spelled the name of the book correctly.
-
+
Import a Bible.
Import a Bible.
-
+
Add a new Bible.
Add a new Bible.
-
+
Edit the selected Bible.
Edit the selected Bible.
-
+
Delete the selected Bible.
Delete the selected Bible.
-
+
Preview the selected Bible.
Preview the selected Bible.
-
+
Send the selected Bible live.
Send the selected Bible live.
-
+
Add the selected Bible to the service.
Add the selected Bible to the service.
-
+
<strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display Bible verses from different sources during the service.
<strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display Bible verses from different sources during the service.
-
+
&Upgrade older Bibles
&Upgrade older Bibles
-
+
Upgrade the Bible databases to the latest format.
Upgrade the Bible databases to the latest format.
-
+
Genesis
Genesis
-
+
Exodus
Exodus
-
+
Leviticus
Leviticus
-
+
Numbers
Numbers
-
+
Deuteronomy
Deuteronomy
-
+
Joshua
Joshua
-
+
Judges
Judges
-
+
Ruth
Ruth
-
+
1 Samuel
1 Samuel
-
+
2 Samuel
2 Samuel
-
+
1 Kings
1 Kings
-
+
2 Kings
2 Kings
-
+
1 Chronicles
1 Chronicles
-
+
2 Chronicles
2 Chronicles
-
+
Ezra
Ezra
-
+
Nehemiah
Nehemiah
-
+
Esther
Esther
-
+
Job
Job
-
+
Psalms
Psalms
-
+
Proverbs
Proverbs
-
+
Ecclesiastes
Ecclesiastes
-
+
Song of Solomon
Song of Solomon
-
+
Isaiah
Isaiah
-
+
Jeremiah
Jeremiah
-
+
Lamentations
Lamentations
-
+
Ezekiel
Ezekiel
-
+
Daniel
Daniel
-
+
Hosea
Hosea
-
+
Joel
Joel
-
+
Amos
Amos
-
+
Obadiah
Obadiah
-
+
Jonah
Jonah
-
+
Micah
Micah
-
+
Nahum
Nahum
-
+
Habakkuk
Habakkuk
-
+
Zephaniah
Zephaniah
-
+
Haggai
Haggai
-
+
Zechariah
Zechariah
-
+
Malachi
Malachi
-
+
Matthew
Matthew
-
+
Mark
Mark
-
+
Luke
Luke
-
+
John
John
-
+
Acts
Acts
-
+
Romans
Romans
-
+
1 Corinthians
1 Corinthians
-
+
2 Corinthians
2 Corinthians
-
+
Galatians
Galatians
-
+
Ephesians
Ephesians
-
+
Philippians
Philippians
-
+
Colossians
Colossians
-
+
1 Thessalonians
1 Thessalonians
-
+
2 Thessalonians
2 Thessalonians
-
+
1 Timothy
1 Timothy
-
+
2 Timothy
2 Timothy
-
+
Titus
Titus
-
+
Philemon
Philemon
-
+
Hebrews
Hebrews
-
+
James
James
-
+
1 Peter
1 Peter
-
+
2 Peter
2 Peter
-
+
1 John
1 John
-
+
2 John
2 John
-
+
3 John
3 John
-
+
Jude
Jude
-
+
Revelation
Revelation
-
+
Judith
Judith
-
+
Wisdom
Wisdom
-
+
Tobit
Tobit
-
+
Sirach
Sirach
-
+
Baruch
Baruch
-
+
1 Maccabees
1 Maccabees
-
+
2 Maccabees
2 Maccabees
-
+
3 Maccabees
3 Maccabees
-
+
4 Maccabees
4 Maccabees
-
+
Rest of Daniel
Rest of Daniel
-
+
Rest of Esther
Rest of Esther
-
+
Prayer of Manasses
Prayer of Manasses
-
+
Letter of Jeremiah
Letter of Jeremiah
-
+
Prayer of Azariah
Prayer of Azariah
-
+
Susanna
Susanna
-
+
Bel
Bel
-
+
1 Esdras
1 Esdras
-
+
2 Esdras
2 Esdras
-
+
:|v|V|verse|verses;;-|to;;,|and;;end
Double-semicolon delimited separators for parsing references. Consult the developers for further information.
:|v|V|verse|verses;;-|to;;,|and;;end
@@ -664,32 +664,32 @@ Do you want to continue anyway?
BiblesPlugin.BibleEditForm
-
+
You need to specify a version name for your Bible.
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.
You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such.
-
+
Bible Exists
Bible Exists
-
+
This Bible already exists. Please import a different Bible or first delete the existing one.
This Bible already exists. Please import a different Bible or first delete the existing one.
-
+
You need to specify a book name for "%s".
You need to specify a book name for "%s".
-
+
The book name "%s" is not correct.
Numbers can only be used at the beginning and must
be followed by one or more non-numeric characters.
@@ -698,12 +698,12 @@ Numbers can only be used at the beginning and must
be followed by one or more non-numeric characters.
-
+
Duplicate Book Name
Duplicate Book Name
-
+
The Book Name "%s" has been entered more than once.
The Book Name "%s" has been entered more than once.
@@ -711,39 +711,39 @@ be followed by one or more non-numeric characters.
BiblesPlugin.BibleManager
-
+
Scripture Reference Error
Scripture Reference Error
-
+
Web Bible cannot be used
Web Bible cannot be used
-
+
Text Search is not available with Web Bibles.
Text Search is not available with Web Bibles.
-
+
You did not enter a search keyword.
You can separate different keywords by a space to search for all of your keywords and you can separate them by a comma to search for one of them.
You did not enter a search keyword.
You can separate different keywords by a space to search for all of your keywords and you can separate them by a comma to search for one of them.
-
+
There are no Bibles currently installed. Please use the Import Wizard to install one or more Bibles.
There are no Bibles currently installed. Please use the Import Wizard to install one or more Bibles.
-
+
No Bibles Available
No Bibles Available
-
+
Your scripture reference is either not supported by OpenLP or is invalid. Please make sure your reference conforms to one of the following patterns or consult the manual:
Book Chapter
@@ -766,79 +766,79 @@ Book Chapter%(verse)sVerse%(range)sChapter%(verse)sVerse
BiblesPlugin.BiblesTab
-
+
Verse Display
Verse Display
-
+
Only show new chapter numbers
Only show new chapter numbers
-
+
Bible theme:
Bible theme:
-
+
No Brackets
No Brackets
-
+
( And )
( And )
-
+
{ And }
{ And }
-
+
[ And ]
[ And ]
-
+
Note:
Changes do not affect verses already in the service.
Note:
Changes do not affect verses already in the service.
-
+
Display second Bible verses
Display second Bible verses
-
+
Custom Scripture References
Custom Scripture References
-
+
Verse Separator:
Verse Separator:
-
+
Range Separator:
Range Separator:
-
+
List Separator:
List Separator:
-
+
End Mark:
End Mark:
-
+
Multiple alternative verse separators may be defined.
They have to be separated by a vertical bar "|".
Please clear this edit line to use the default value.
@@ -847,7 +847,7 @@ They have to be separated by a vertical bar "|".
Please clear this edit line to use the default value.
-
+
Multiple alternative range separators may be defined.
They have to be separated by a vertical bar "|".
Please clear this edit line to use the default value.
@@ -856,7 +856,7 @@ They have to be separated by a vertical bar "|".
Please clear this edit line to use the default value.
-
+
Multiple alternative list separators may be defined.
They have to be separated by a vertical bar "|".
Please clear this edit line to use the default value.
@@ -865,7 +865,7 @@ They have to be separated by a vertical bar "|".
Please clear this edit line to use the default value.
-
+
Multiple alternative end marks may be defined.
They have to be separated by a vertical bar "|".
Please clear this edit line to use the default value.
@@ -874,29 +874,29 @@ They have to be separated by a vertical bar "|".
Please clear this edit line to use the default value.
-
+
English
English
-
+
Default Bible Language
Default Bible Language
-
+
Book name language in search field,
search results and on display:
Book name language in search field,
search results and on display:
-
+
Bible Language
Bible Language
-
+
Application Language
Application Language
@@ -904,42 +904,42 @@ search results and on display:
BiblesPlugin.BookNameDialog
-
+
Select Book Name
Select Book Name
-
+
Current name:
Current name:
-
+
Corresponding name:
Corresponding name:
-
+
Show Books From
Show Books From
-
+
Old Testament
Old Testament
-
+
New Testament
New Testament
-
+
Apocrypha
Apocrypha
-
+
The following book name cannot be matched up internally. Please select the corresponding name from the list.
The following book name cannot be matched up internally. Please select the corresponding name from the list.
@@ -947,7 +947,7 @@ search results and on display:
BiblesPlugin.BookNameForm
-
+
You need to select a book.
You need to select a book.
@@ -955,18 +955,18 @@ search results and on display:
BiblesPlugin.CSVBible
-
+
Importing books... %s
Importing books... %s
-
+
Importing verses from %s...
Importing verses from <book name>...
Importing verses from %s...
-
+
Importing verses... done.
Importing verses... done.
@@ -974,69 +974,69 @@ search results and on display:
BiblesPlugin.EditBibleForm
-
+
Bible Editor
Bible Editor
-
+
License Details
License Details
-
+
Version name:
Version name:
-
+
Copyright:
Copyright:
-
+
Permissions:
Permissions:
-
+
Default Bible Language
Default Bible Language
-
+
Book name language in search field, search results and on display:
Book name language in search field, search results and on display:
-
+
Global Settings
Global Settings
-
+
Bible Language
Bible Language
-
+
Application Language
Application Language
-
+
English
English
-
+
This is a Web Download Bible.
It is not possible to customize the Book Names.
This is a Web Download Bible.
It is not possible to customize the Book Names.
-
+
To use the customized book names, "Bible language" must be selected on the Meta Data tab or, if "Global settings" is selected, on the Bible page in Configure OpenLP.
To use the customized book names, "Bible language" must be selected on the Meta Data tab or, if "Global settings" is selected, on the Bible page in Configure OpenLP.
@@ -1044,38 +1044,38 @@ It is not possible to customize the Book Names.
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.
@@ -1083,167 +1083,167 @@ It is not possible to customize the Book Names.
BiblesPlugin.ImportWizardForm
-
+
Bible Import Wizard
Bible Import Wizard
-
+
This wizard will help you to import Bibles from a variety of formats. Click the next button below to start the process by selecting a format to import from.
This wizard will help you to import Bibles from a variety of formats. Click the next button below to start the process by selecting a format to import from.
-
+
Web Download
Web Download
-
+
Location:
Location:
-
+
Crosswalk
Crosswalk
-
+
BibleGateway
BibleGateway
-
+
Bible:
Bible:
-
+
Download Options
Download Options
-
+
Server:
Server:
-
+
Username:
Username:
-
+
Password:
Password:
-
+
Proxy Server (Optional)
Proxy Server (Optional)
-
+
License Details
License Details
-
+
Set up the Bible's license details.
Set up the Bible's license details.
-
+
Version name:
Version name:
-
+
Copyright:
Copyright:
-
+
Please wait while your Bible is imported.
Please wait while your Bible is imported.
-
+
You need to specify a file with books of the Bible to use in the import.
You need to specify a file with books of the Bible to use in the import.
-
+
You need to specify a file of Bible verses to import.
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.
-
+
You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such.
You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such.
-
+
Bible Exists
Bible Exists
-
+
This Bible already exists. Please import a different Bible or first delete the existing one.
This Bible already exists. Please import a different Bible or first delete the existing one.
-
+
Your Bible import failed.
Your Bible import failed.
-
+
CSV File
CSV File
-
+
Bibleserver
Bibleserver
-
+
Permissions:
Permissions:
-
+
Bible file:
Bible file:
-
+
Books file:
Books file:
-
+
Verses file:
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
@@ -1253,17 +1253,17 @@ demand and thus an internet connection is required.
BiblesPlugin.LanguageDialog
-
+
Select Language
Select Language
-
+
OpenLP is unable to determine the language of this translation of the Bible. Please select the language from the list below.
OpenLP is unable to determine the language of this translation of the Bible. Please select the language from the list below.
-
+
Language:
Language:
@@ -1271,7 +1271,7 @@ demand and thus an internet connection is required.
BiblesPlugin.LanguageForm
-
+
You need to choose a language.
You need to choose a language.
@@ -1279,92 +1279,92 @@ demand and thus an internet connection is required.
BiblesPlugin.MediaItem
-
+
Quick
Quick
-
+
Find:
Find:
-
+
Book:
Book:
-
+
Chapter:
Chapter:
-
+
Verse:
Verse:
-
+
From:
From:
-
+
To:
To:
-
+
Text Search
Text Search
-
+
Second:
Second:
-
+
Scripture Reference
Scripture Reference
-
+
Toggle to keep or clear the previous results.
Toggle to keep or clear the previous results.
-
+
You cannot combine single and dual Bible verse search results. Do you want to delete your search results and start a new search?
You cannot combine single and dual Bible verse search results. Do you want to delete your search results and start a new search?
-
+
Bible not fully loaded.
Bible not fully loaded.
-
+
Information
Information
-
+
The second Bible does not contain all the verses that are in the main Bible. Only verses found in both Bibles will be shown. %d verses have not been included in the results.
The second Bible does not contain all the verses that are in the main Bible. Only verses found in both Bibles will be shown. %d verses have not been included in the results.
-
+
Search Scripture Reference...
Search Scripture Reference...
-
+
Search Text...
Search Text...
-
+
Are you sure you want to delete "%s"?
Are you sure you want to delete "%s"?
@@ -1372,7 +1372,7 @@ demand and thus an internet connection is required.
BiblesPlugin.Opensong
-
+
Importing %s %s...
Importing <book name> <chapter>...
Importing %s %s...
@@ -1381,12 +1381,12 @@ demand and thus an internet connection is required.
BiblesPlugin.OsisImport
-
+
Detecting encoding (this may take a few minutes)...
Detecting encoding (this may take a few minutes)...
-
+
Importing %s %s...
Importing <book name> <chapter>...
Importing %s %s...
@@ -1395,149 +1395,149 @@ demand and thus an internet connection is required.
BiblesPlugin.UpgradeWizardForm
-
+
Select a Backup Directory
Select a Backup Directory
-
+
Bible Upgrade Wizard
Bible Upgrade Wizard
-
+
This wizard will help you to upgrade your existing Bibles from a prior version of OpenLP 2. Click the next button below to start the upgrade process.
This wizard will help you to upgrade your existing Bibles from a prior version of OpenLP 2. Click the next button below to start the upgrade process.
-
+
Select Backup Directory
Select Backup Directory
-
+
Please select a backup directory for your Bibles
Please select a backup directory for your Bibles
-
+
Previous releases of OpenLP 2.0 are unable to use upgraded Bibles. This will create a backup of your current Bibles so that you can simply copy the files back to your OpenLP data directory if you need to revert to a previous release of OpenLP. Instructions on how to restore the files can be found in our <a href="http://wiki.openlp.org/faq">Frequently Asked Questions</a>.
Previous releases of OpenLP 2.0 are unable to use upgraded Bibles. This will create a backup of your current Bibles so that you can simply copy the files back to your OpenLP data directory if you need to revert to a previous release of OpenLP. Instructions on how to restore the files can be found in our <a href="http://wiki.openlp.org/faq">Frequently Asked Questions</a>.
-
+
Please select a backup location for your Bibles.
Please select a backup location for your Bibles.
-
+
Backup Directory:
Backup Directory:
-
+
There is no need to backup my Bibles
There is no need to backup my Bibles
-
+
Select Bibles
Select Bibles
-
+
Please select the Bibles to upgrade
Please select the Bibles to upgrade
-
+
Upgrading
Upgrading
-
+
Please wait while your Bibles are upgraded.
Please wait while your Bibles are upgraded.
-
+
The backup was not successful.
To backup your Bibles you need permission to write to the given directory.
The backup was not successful.
To backup your Bibles you need permission to write to the given directory.
-
+
Upgrading Bible %s of %s: "%s"
Failed
Upgrading Bible %s of %s: "%s"
Failed
-
+
Upgrading Bible %s of %s: "%s"
Upgrading ...
Upgrading Bible %s of %s: "%s"
Upgrading ...
-
+
Download Error
Download Error
-
+
To upgrade your Web Bibles an Internet connection is required.
To upgrade your Web Bibles an Internet connection is required.
-
+
Upgrading Bible %s of %s: "%s"
Upgrading %s ...
Upgrading Bible %s of %s: "%s"
Upgrading %s ...
-
+
Upgrading Bible %s of %s: "%s"
Complete
Upgrading Bible %s of %s: "%s"
Complete
-
+
, %s failed
, %s failed
-
+
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.
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.
-
+
Upgrading Bible(s): %s successful%s
Upgrading Bible(s): %s successful%s
-
+
Upgrade failed.
Upgrade failed.
-
+
You need to specify a backup directory for your Bibles.
You need to specify a backup directory for your Bibles.
-
+
Starting upgrade...
Starting upgrade...
-
+
There are no Bibles that need to be upgraded.
There are no Bibles that need to be upgraded.
@@ -1545,65 +1545,65 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I
CustomPlugin
-