diff --git a/copyright.txt b/copyright.txt index f66573d8f..19fcb099e 100644 --- a/copyright.txt +++ b/copyright.txt @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/__init__.py b/openlp/__init__.py index db5ca32d8..6d30697eb 100644 --- a/openlp/__init__.py +++ b/openlp/__init__.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/core/__init__.py b/openlp/core/__init__.py index 52aa81376..647398934 100644 --- a/openlp/core/__init__.py +++ b/openlp/core/__init__.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/core/lib/__init__.py b/openlp/core/lib/__init__.py index 6f7d4c557..81fb6fd2a 100644 --- a/openlp/core/lib/__init__.py +++ b/openlp/core/lib/__init__.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/core/lib/db.py b/openlp/core/lib/db.py index eae6ef4a1..4df80ebe5 100644 --- a/openlp/core/lib/db.py +++ b/openlp/core/lib/db.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # @@ -85,11 +85,13 @@ def upgrade_db(url, upgrade): Provides a class for the metadata table. """ pass - load_changes = True + load_changes = False + tables = [] try: tables = upgrade.upgrade_setup(metadata) + load_changes = True except (SQLAlchemyError, DBAPIError): - load_changes = False + pass metadata_table = Table(u'metadata', metadata, Column(u'key', types.Unicode(64), primary_key=True), Column(u'value', types.UnicodeText(), default=None) @@ -99,6 +101,7 @@ def upgrade_db(url, upgrade): version_meta = session.query(Metadata).get(u'version') if version_meta is None: version_meta = Metadata.populate(key=u'version', value=u'0') + session.add(version_meta) version = 0 else: version = int(version_meta.value) @@ -111,17 +114,17 @@ def upgrade_db(url, upgrade): try: getattr(upgrade, u'upgrade_%d' % version) \ (session, metadata, tables) - version_meta.value = unicode(version) except (SQLAlchemyError, DBAPIError): log.exception(u'Could not run database upgrade script ' '"upgrade_%s", upgrade process has been halted.', version) break + version_meta.value = unicode(version) + session.commit() version += 1 else: version_meta = Metadata.populate(key=u'version', value=int(upgrade.__version__)) - session.add(version_meta) - session.commit() + session.commit() return int(version_meta.value), upgrade.__version__ diff --git a/openlp/core/lib/dockwidget.py b/openlp/core/lib/dockwidget.py index 4ec3bf5f3..ab147fa00 100644 --- a/openlp/core/lib/dockwidget.py +++ b/openlp/core/lib/dockwidget.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/core/lib/eventreceiver.py b/openlp/core/lib/eventreceiver.py index 408e0b781..52e06bc78 100644 --- a/openlp/core/lib/eventreceiver.py +++ b/openlp/core/lib/eventreceiver.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/core/lib/formattingtags.py b/openlp/core/lib/formattingtags.py index 838aa81b3..26ae397a4 100644 --- a/openlp/core/lib/formattingtags.py +++ b/openlp/core/lib/formattingtags.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/core/lib/htmlbuilder.py b/openlp/core/lib/htmlbuilder.py index 442cdec90..7230f1b17 100644 --- a/openlp/core/lib/htmlbuilder.py +++ b/openlp/core/lib/htmlbuilder.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/core/lib/imagemanager.py b/openlp/core/lib/imagemanager.py index 15ea7c46d..2dcb05b47 100644 --- a/openlp/core/lib/imagemanager.py +++ b/openlp/core/lib/imagemanager.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/core/lib/listwidgetwithdnd.py b/openlp/core/lib/listwidgetwithdnd.py index 4cc29c14a..2a2ae8158 100644 --- a/openlp/core/lib/listwidgetwithdnd.py +++ b/openlp/core/lib/listwidgetwithdnd.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/core/lib/mediamanageritem.py b/openlp/core/lib/mediamanageritem.py index 70205b5d1..1f63d291d 100644 --- a/openlp/core/lib/mediamanageritem.py +++ b/openlp/core/lib/mediamanageritem.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # @@ -255,9 +255,11 @@ class MediaManagerItem(QtGui.QWidget): shortcuts=[QtCore.Qt.Key_Plus, QtCore.Qt.Key_Equal], triggers=self.onAddClick) if self.addToServiceItem: + create_widget_action(self.listView, separator=True) create_widget_action(self.listView, text=translate( 'OpenLP.MediaManagerItem', '&Add to selected Service Item'), - icon=u':/general/general_add.png', triggers=self.onAddEditClick) + icon=u':/general/general_add.png', + triggers=self.onAddEditClick) self.addCustomContextActions() # Create the context menu and add all actions from the listView. self.menu = QtGui.QMenu() diff --git a/openlp/core/lib/plugin.py b/openlp/core/lib/plugin.py index 04b4a5818..70261bad3 100644 --- a/openlp/core/lib/plugin.py +++ b/openlp/core/lib/plugin.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/core/lib/pluginmanager.py b/openlp/core/lib/pluginmanager.py index a8f192202..3fdaec1f5 100644 --- a/openlp/core/lib/pluginmanager.py +++ b/openlp/core/lib/pluginmanager.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/core/lib/renderer.py b/openlp/core/lib/renderer.py index 8b1cc2f6e..bb6daed82 100644 --- a/openlp/core/lib/renderer.py +++ b/openlp/core/lib/renderer.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/core/lib/searchedit.py b/openlp/core/lib/searchedit.py index af0073362..ca93d77ba 100644 --- a/openlp/core/lib/searchedit.py +++ b/openlp/core/lib/searchedit.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/core/lib/serviceitem.py b/openlp/core/lib/serviceitem.py index ab8d92c5e..0c55b64b8 100644 --- a/openlp/core/lib/serviceitem.py +++ b/openlp/core/lib/serviceitem.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/core/lib/settings.py b/openlp/core/lib/settings.py index b4376b898..082ef0fc6 100644 --- a/openlp/core/lib/settings.py +++ b/openlp/core/lib/settings.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/core/lib/settingsmanager.py b/openlp/core/lib/settingsmanager.py index 9106435d0..357b87352 100644 --- a/openlp/core/lib/settingsmanager.py +++ b/openlp/core/lib/settingsmanager.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/core/lib/settingstab.py b/openlp/core/lib/settingstab.py index d8367fbf4..a5e30914c 100644 --- a/openlp/core/lib/settingstab.py +++ b/openlp/core/lib/settingstab.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/core/lib/spelltextedit.py b/openlp/core/lib/spelltextedit.py index 0cd05495b..5b539e3ca 100644 --- a/openlp/core/lib/spelltextedit.py +++ b/openlp/core/lib/spelltextedit.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/core/lib/theme.py b/openlp/core/lib/theme.py index 38aab919e..88b4b84b3 100644 --- a/openlp/core/lib/theme.py +++ b/openlp/core/lib/theme.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/core/lib/toolbar.py b/openlp/core/lib/toolbar.py index 996234914..bec3c1642 100644 --- a/openlp/core/lib/toolbar.py +++ b/openlp/core/lib/toolbar.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/core/lib/ui.py b/openlp/core/lib/ui.py index 45a54c9ea..c96472fe3 100644 --- a/openlp/core/lib/ui.py +++ b/openlp/core/lib/ui.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/core/theme/__init__.py b/openlp/core/theme/__init__.py index ad21cf196..468baf091 100644 --- a/openlp/core/theme/__init__.py +++ b/openlp/core/theme/__init__.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/core/theme/theme.py b/openlp/core/theme/theme.py index b4b7184c9..fe6cf443c 100644 --- a/openlp/core/theme/theme.py +++ b/openlp/core/theme/theme.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/core/ui/__init__.py b/openlp/core/ui/__init__.py index 640aac446..6c2d17f3e 100644 --- a/openlp/core/ui/__init__.py +++ b/openlp/core/ui/__init__.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/core/ui/aboutdialog.py b/openlp/core/ui/aboutdialog.py index 3d6c9fabd..fb0a4d1c2 100644 --- a/openlp/core/ui/aboutdialog.py +++ b/openlp/core/ui/aboutdialog.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # @@ -109,7 +109,7 @@ class Ui_AboutDialog(object): contributors = [u'Gerald "jerryb" Britton', u'Samuel "MrGamgee" Findlay', u'Scott "sguerrieri" Guerrieri', u'Matthias "matthub" Hub', u'Meinert "m2j" Jordan', - u'Armin "orangeshirt" K\xf6hler', u'Eric "luen" Ludin', + u'Armin "orangeshirt" K\xf6hler', u'Erik "luen" Lundin', u'Edwin "edwinlunando" Lunando', u'Brian "brianmeyer" Meyer', u'Joshua "milleja46" Miller', u'Stevan "ElderP" Pettit', u'Mattias "mahfiaz" P\xf5ldaru', u'Christian "crichter" Richter', @@ -149,7 +149,7 @@ class Ui_AboutDialog(object): u'Gustavo Bim', u'Rog\xeanio Bel\xe9m', u'Samuel' u'Simon "samscudder" Scudder', u'Van Der Fran'], u'ru': [u'Sergey "ratz" Ratz'], - u'sv': [u'Eric "luen" Ludin'] + u'sv': [u'Erik "luen" Lundin'] } documentors = [u'Wesley "wrst" Stout', u'John "jseagull1" Cegalis (lead)'] @@ -252,7 +252,7 @@ class Ui_AboutDialog(object): 'Portions copyright \xa9 2004-2012 %s')) % (u'Raoul Snyman', u'Tim Bentley, Gerald Britton, Jonathan Corwin, Samuel Findlay, ' u'Michael Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, ' - u'Armin K\xf6hler, Eric Ludin, Edwin Lunando, Joshua Miller, ' + u'Armin K\xf6hler, Erik Lundin, Edwin Lunando, Joshua Miller, ' u'Brian T. Meyer, Stevan Pettit, Andreas Preikschat, ' u'Mattias P\xf5ldaru, Christian Richter, ' u'Philip Ridout, Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, ' diff --git a/openlp/core/ui/aboutform.py b/openlp/core/ui/aboutform.py index 24ed439c3..496e5d494 100644 --- a/openlp/core/ui/aboutform.py +++ b/openlp/core/ui/aboutform.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/core/ui/advancedtab.py b/openlp/core/ui/advancedtab.py index 8b97c140b..193fc63d7 100644 --- a/openlp/core/ui/advancedtab.py +++ b/openlp/core/ui/advancedtab.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/core/ui/exceptiondialog.py b/openlp/core/ui/exceptiondialog.py index f7c066874..8f402b593 100644 --- a/openlp/core/ui/exceptiondialog.py +++ b/openlp/core/ui/exceptiondialog.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/core/ui/exceptionform.py b/openlp/core/ui/exceptionform.py index a7839ec03..49ec2818f 100644 --- a/openlp/core/ui/exceptionform.py +++ b/openlp/core/ui/exceptionform.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/core/ui/filerenamedialog.py b/openlp/core/ui/filerenamedialog.py index c6f7b7c6d..7edfccbde 100644 --- a/openlp/core/ui/filerenamedialog.py +++ b/openlp/core/ui/filerenamedialog.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/core/ui/filerenameform.py b/openlp/core/ui/filerenameform.py index 021945f3d..d47c5e81e 100644 --- a/openlp/core/ui/filerenameform.py +++ b/openlp/core/ui/filerenameform.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/core/ui/firsttimeform.py b/openlp/core/ui/firsttimeform.py index 7b44288b9..c6ee8ea58 100644 --- a/openlp/core/ui/firsttimeform.py +++ b/openlp/core/ui/firsttimeform.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/core/ui/firsttimelanguagedialog.py b/openlp/core/ui/firsttimelanguagedialog.py index 634ef7246..b431bd2ec 100644 --- a/openlp/core/ui/firsttimelanguagedialog.py +++ b/openlp/core/ui/firsttimelanguagedialog.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/core/ui/firsttimelanguageform.py b/openlp/core/ui/firsttimelanguageform.py index 06247656a..aada5a63d 100644 --- a/openlp/core/ui/firsttimelanguageform.py +++ b/openlp/core/ui/firsttimelanguageform.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/core/ui/firsttimewizard.py b/openlp/core/ui/firsttimewizard.py index 18d74ed09..3eec05895 100644 --- a/openlp/core/ui/firsttimewizard.py +++ b/openlp/core/ui/firsttimewizard.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/core/ui/formattingtagdialog.py b/openlp/core/ui/formattingtagdialog.py index f6b3ff136..f3ae06fe0 100644 --- a/openlp/core/ui/formattingtagdialog.py +++ b/openlp/core/ui/formattingtagdialog.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/core/ui/formattingtagform.py b/openlp/core/ui/formattingtagform.py index b18f63849..3bbcbc9ad 100644 --- a/openlp/core/ui/formattingtagform.py +++ b/openlp/core/ui/formattingtagform.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/core/ui/generaltab.py b/openlp/core/ui/generaltab.py index b0c6b18cd..a88a2243c 100644 --- a/openlp/core/ui/generaltab.py +++ b/openlp/core/ui/generaltab.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/core/ui/maindisplay.py b/openlp/core/ui/maindisplay.py index d446765ed..85fcc8e94 100644 --- a/openlp/core/ui/maindisplay.py +++ b/openlp/core/ui/maindisplay.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/core/ui/mainwindow.py b/openlp/core/ui/mainwindow.py index 6817dee36..7c83ca518 100644 --- a/openlp/core/ui/mainwindow.py +++ b/openlp/core/ui/mainwindow.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/core/ui/media/__init__.py b/openlp/core/ui/media/__init__.py index 5a5138835..9737d03e5 100644 --- a/openlp/core/ui/media/__init__.py +++ b/openlp/core/ui/media/__init__.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/core/ui/media/mediacontroller.py b/openlp/core/ui/media/mediacontroller.py index 800a85cba..ae320579f 100644 --- a/openlp/core/ui/media/mediacontroller.py +++ b/openlp/core/ui/media/mediacontroller.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/core/ui/media/mediaplayer.py b/openlp/core/ui/media/mediaplayer.py index fd883ebe8..2c34c4624 100644 --- a/openlp/core/ui/media/mediaplayer.py +++ b/openlp/core/ui/media/mediaplayer.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/core/ui/media/phononplayer.py b/openlp/core/ui/media/phononplayer.py index 497cc144f..c77c052da 100644 --- a/openlp/core/ui/media/phononplayer.py +++ b/openlp/core/ui/media/phononplayer.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/core/ui/media/vlcplayer.py b/openlp/core/ui/media/vlcplayer.py index f3fb37dad..4fbe2f710 100644 --- a/openlp/core/ui/media/vlcplayer.py +++ b/openlp/core/ui/media/vlcplayer.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/core/ui/media/webkitplayer.py b/openlp/core/ui/media/webkitplayer.py index 62c3c1d47..9efa44ca9 100644 --- a/openlp/core/ui/media/webkitplayer.py +++ b/openlp/core/ui/media/webkitplayer.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/core/ui/mediadockmanager.py b/openlp/core/ui/mediadockmanager.py index 7795916b9..57c325eb9 100644 --- a/openlp/core/ui/mediadockmanager.py +++ b/openlp/core/ui/mediadockmanager.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/core/ui/plugindialog.py b/openlp/core/ui/plugindialog.py index a78fa0b27..685689e2d 100644 --- a/openlp/core/ui/plugindialog.py +++ b/openlp/core/ui/plugindialog.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/core/ui/pluginform.py b/openlp/core/ui/pluginform.py index 427004f71..ce42d19d5 100644 --- a/openlp/core/ui/pluginform.py +++ b/openlp/core/ui/pluginform.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/core/ui/printservicedialog.py b/openlp/core/ui/printservicedialog.py index d1eab4c6d..190b0bce4 100644 --- a/openlp/core/ui/printservicedialog.py +++ b/openlp/core/ui/printservicedialog.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/core/ui/printserviceform.py b/openlp/core/ui/printserviceform.py index 92696892c..1d2ac8dd8 100644 --- a/openlp/core/ui/printserviceform.py +++ b/openlp/core/ui/printserviceform.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/core/ui/screen.py b/openlp/core/ui/screen.py index 0ffb10e92..67aa88ca8 100644 --- a/openlp/core/ui/screen.py +++ b/openlp/core/ui/screen.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/core/ui/serviceitemeditdialog.py b/openlp/core/ui/serviceitemeditdialog.py index e572b99ba..127906671 100644 --- a/openlp/core/ui/serviceitemeditdialog.py +++ b/openlp/core/ui/serviceitemeditdialog.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/core/ui/serviceitemeditform.py b/openlp/core/ui/serviceitemeditform.py index 0c96241c8..5dcde6bd5 100644 --- a/openlp/core/ui/serviceitemeditform.py +++ b/openlp/core/ui/serviceitemeditform.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/core/ui/servicemanager.py b/openlp/core/ui/servicemanager.py index 3c2f86247..9db0deb78 100644 --- a/openlp/core/ui/servicemanager.py +++ b/openlp/core/ui/servicemanager.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/core/ui/servicenoteform.py b/openlp/core/ui/servicenoteform.py index 3405e27c0..4a29a283f 100644 --- a/openlp/core/ui/servicenoteform.py +++ b/openlp/core/ui/servicenoteform.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/core/ui/settingsdialog.py b/openlp/core/ui/settingsdialog.py index 7752a7168..7d81fc052 100644 --- a/openlp/core/ui/settingsdialog.py +++ b/openlp/core/ui/settingsdialog.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/core/ui/settingsform.py b/openlp/core/ui/settingsform.py index a5401e9e5..b06c2b1ea 100644 --- a/openlp/core/ui/settingsform.py +++ b/openlp/core/ui/settingsform.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/core/ui/shortcutlistdialog.py b/openlp/core/ui/shortcutlistdialog.py index 16ae9d2b0..555507c04 100644 --- a/openlp/core/ui/shortcutlistdialog.py +++ b/openlp/core/ui/shortcutlistdialog.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/core/ui/shortcutlistform.py b/openlp/core/ui/shortcutlistform.py index 44692c383..9dcbfc7f1 100644 --- a/openlp/core/ui/shortcutlistform.py +++ b/openlp/core/ui/shortcutlistform.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/core/ui/slidecontroller.py b/openlp/core/ui/slidecontroller.py index bc55e000d..da15514e9 100644 --- a/openlp/core/ui/slidecontroller.py +++ b/openlp/core/ui/slidecontroller.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/core/ui/splashscreen.py b/openlp/core/ui/splashscreen.py index 5fe6838af..692bd5001 100644 --- a/openlp/core/ui/splashscreen.py +++ b/openlp/core/ui/splashscreen.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/core/ui/starttimedialog.py b/openlp/core/ui/starttimedialog.py index 70fd8a915..590fd1954 100644 --- a/openlp/core/ui/starttimedialog.py +++ b/openlp/core/ui/starttimedialog.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/core/ui/starttimeform.py b/openlp/core/ui/starttimeform.py index 0136939a8..30a667857 100644 --- a/openlp/core/ui/starttimeform.py +++ b/openlp/core/ui/starttimeform.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/core/ui/themeform.py b/openlp/core/ui/themeform.py index 9d02bbb05..3a3a59939 100644 --- a/openlp/core/ui/themeform.py +++ b/openlp/core/ui/themeform.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/core/ui/themelayoutdialog.py b/openlp/core/ui/themelayoutdialog.py index 20a6c3bc9..4d610dd42 100644 --- a/openlp/core/ui/themelayoutdialog.py +++ b/openlp/core/ui/themelayoutdialog.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/core/ui/themelayoutform.py b/openlp/core/ui/themelayoutform.py index b7eefee03..2751e102a 100644 --- a/openlp/core/ui/themelayoutform.py +++ b/openlp/core/ui/themelayoutform.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/core/ui/thememanager.py b/openlp/core/ui/thememanager.py index de2ac47d5..eba51f973 100644 --- a/openlp/core/ui/thememanager.py +++ b/openlp/core/ui/thememanager.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/core/ui/themestab.py b/openlp/core/ui/themestab.py index 0e981af15..7e84892e6 100644 --- a/openlp/core/ui/themestab.py +++ b/openlp/core/ui/themestab.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/core/ui/themewizard.py b/openlp/core/ui/themewizard.py index 7577f6dd3..48592dc79 100644 --- a/openlp/core/ui/themewizard.py +++ b/openlp/core/ui/themewizard.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/core/ui/wizard.py b/openlp/core/ui/wizard.py index a4ec6e606..722d8d22d 100644 --- a/openlp/core/ui/wizard.py +++ b/openlp/core/ui/wizard.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/core/utils/__init__.py b/openlp/core/utils/__init__.py index 7bed2801a..f3a36b475 100644 --- a/openlp/core/utils/__init__.py +++ b/openlp/core/utils/__init__.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/core/utils/actions.py b/openlp/core/utils/actions.py index 2f4c78fb7..54ff6570a 100644 --- a/openlp/core/utils/actions.py +++ b/openlp/core/utils/actions.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/core/utils/languagemanager.py b/openlp/core/utils/languagemanager.py index 17586d34a..fd8615727 100644 --- a/openlp/core/utils/languagemanager.py +++ b/openlp/core/utils/languagemanager.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/plugins/__init__.py b/openlp/plugins/__init__.py index b23ba9f71..01d839fdb 100644 --- a/openlp/plugins/__init__.py +++ b/openlp/plugins/__init__.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/plugins/alerts/__init__.py b/openlp/plugins/alerts/__init__.py index 3ad0a8fe3..c8a9511b0 100644 --- a/openlp/plugins/alerts/__init__.py +++ b/openlp/plugins/alerts/__init__.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/plugins/alerts/alertsplugin.py b/openlp/plugins/alerts/alertsplugin.py index 19737b0aa..2d58a3ce9 100644 --- a/openlp/plugins/alerts/alertsplugin.py +++ b/openlp/plugins/alerts/alertsplugin.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/plugins/alerts/forms/__init__.py b/openlp/plugins/alerts/forms/__init__.py index 82055b24a..4ee0cdc01 100644 --- a/openlp/plugins/alerts/forms/__init__.py +++ b/openlp/plugins/alerts/forms/__init__.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/plugins/alerts/forms/alertdialog.py b/openlp/plugins/alerts/forms/alertdialog.py index 84b85390c..6e61277bd 100644 --- a/openlp/plugins/alerts/forms/alertdialog.py +++ b/openlp/plugins/alerts/forms/alertdialog.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/plugins/alerts/forms/alertform.py b/openlp/plugins/alerts/forms/alertform.py index 2f775f281..26938ab86 100644 --- a/openlp/plugins/alerts/forms/alertform.py +++ b/openlp/plugins/alerts/forms/alertform.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/plugins/alerts/lib/__init__.py b/openlp/plugins/alerts/lib/__init__.py index 9a3e23c1e..84a95d653 100644 --- a/openlp/plugins/alerts/lib/__init__.py +++ b/openlp/plugins/alerts/lib/__init__.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/plugins/alerts/lib/alertsmanager.py b/openlp/plugins/alerts/lib/alertsmanager.py index f9ba7684c..acae972c6 100644 --- a/openlp/plugins/alerts/lib/alertsmanager.py +++ b/openlp/plugins/alerts/lib/alertsmanager.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/plugins/alerts/lib/alertstab.py b/openlp/plugins/alerts/lib/alertstab.py index 28c6b011c..4b8d24243 100644 --- a/openlp/plugins/alerts/lib/alertstab.py +++ b/openlp/plugins/alerts/lib/alertstab.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/plugins/alerts/lib/db.py b/openlp/plugins/alerts/lib/db.py index e30e1108c..6e4296a4c 100644 --- a/openlp/plugins/alerts/lib/db.py +++ b/openlp/plugins/alerts/lib/db.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/plugins/bibles/__init__.py b/openlp/plugins/bibles/__init__.py index 1523d2747..e37655849 100644 --- a/openlp/plugins/bibles/__init__.py +++ b/openlp/plugins/bibles/__init__.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/plugins/bibles/bibleplugin.py b/openlp/plugins/bibles/bibleplugin.py index a879937d0..b75d5123a 100644 --- a/openlp/plugins/bibles/bibleplugin.py +++ b/openlp/plugins/bibles/bibleplugin.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/plugins/bibles/forms/__init__.py b/openlp/plugins/bibles/forms/__init__.py index 4060e87c5..2f6678311 100644 --- a/openlp/plugins/bibles/forms/__init__.py +++ b/openlp/plugins/bibles/forms/__init__.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/plugins/bibles/forms/bibleimportform.py b/openlp/plugins/bibles/forms/bibleimportform.py index cbd1eb3fd..c0ff694cf 100644 --- a/openlp/plugins/bibles/forms/bibleimportform.py +++ b/openlp/plugins/bibles/forms/bibleimportform.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/plugins/bibles/forms/bibleupgradeform.py b/openlp/plugins/bibles/forms/bibleupgradeform.py index 569cd142a..ff192ac6c 100644 --- a/openlp/plugins/bibles/forms/bibleupgradeform.py +++ b/openlp/plugins/bibles/forms/bibleupgradeform.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/plugins/bibles/forms/booknamedialog.py b/openlp/plugins/bibles/forms/booknamedialog.py index f4f4c1add..82c3bc416 100644 --- a/openlp/plugins/bibles/forms/booknamedialog.py +++ b/openlp/plugins/bibles/forms/booknamedialog.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/plugins/bibles/forms/booknameform.py b/openlp/plugins/bibles/forms/booknameform.py index 3d88c6584..774afa6ee 100644 --- a/openlp/plugins/bibles/forms/booknameform.py +++ b/openlp/plugins/bibles/forms/booknameform.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/plugins/bibles/forms/editbibledialog.py b/openlp/plugins/bibles/forms/editbibledialog.py index 994e65c38..b686e0a4a 100644 --- a/openlp/plugins/bibles/forms/editbibledialog.py +++ b/openlp/plugins/bibles/forms/editbibledialog.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/plugins/bibles/forms/editbibleform.py b/openlp/plugins/bibles/forms/editbibleform.py index 5fb9b643c..0a71ce299 100644 --- a/openlp/plugins/bibles/forms/editbibleform.py +++ b/openlp/plugins/bibles/forms/editbibleform.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/plugins/bibles/forms/languagedialog.py b/openlp/plugins/bibles/forms/languagedialog.py index 90d32101f..444293df9 100644 --- a/openlp/plugins/bibles/forms/languagedialog.py +++ b/openlp/plugins/bibles/forms/languagedialog.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/plugins/bibles/forms/languageform.py b/openlp/plugins/bibles/forms/languageform.py index 4f29ea3aa..5b38932c4 100644 --- a/openlp/plugins/bibles/forms/languageform.py +++ b/openlp/plugins/bibles/forms/languageform.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/plugins/bibles/lib/__init__.py b/openlp/plugins/bibles/lib/__init__.py index 5d897840a..de7f68bdc 100644 --- a/openlp/plugins/bibles/lib/__init__.py +++ b/openlp/plugins/bibles/lib/__init__.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/plugins/bibles/lib/biblestab.py b/openlp/plugins/bibles/lib/biblestab.py index 980bb98ab..f2573ba2c 100644 --- a/openlp/plugins/bibles/lib/biblestab.py +++ b/openlp/plugins/bibles/lib/biblestab.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/plugins/bibles/lib/csvbible.py b/openlp/plugins/bibles/lib/csvbible.py index 8ac1a6482..562be3521 100644 --- a/openlp/plugins/bibles/lib/csvbible.py +++ b/openlp/plugins/bibles/lib/csvbible.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/plugins/bibles/lib/db.py b/openlp/plugins/bibles/lib/db.py index 86ccf0a0a..e8a14da47 100644 --- a/openlp/plugins/bibles/lib/db.py +++ b/openlp/plugins/bibles/lib/db.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/plugins/bibles/lib/http.py b/openlp/plugins/bibles/lib/http.py index 28968372b..487ffef9e 100644 --- a/openlp/plugins/bibles/lib/http.py +++ b/openlp/plugins/bibles/lib/http.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # @@ -279,14 +279,8 @@ class BGExtract(object): page_source = unicode(page_source, u'utf8') except UnicodeDecodeError: page_source = unicode(page_source, u'cp1251') - page_source_temp = re.search(u'.*?'\ - u'
', page_source, re.DOTALL) - if page_source_temp: - soup = page_source_temp.group(0) - else: - soup = None try: - soup = BeautifulSoup(soup) + soup = BeautifulSoup(page_source) except HTMLParseError: log.error(u'BeautifulSoup could not parse the Bible page.') send_error_message(u'parse') @@ -295,8 +289,9 @@ class BGExtract(object): send_error_message(u'parse') return None Receiver.send_message(u'openlp_process_events') - content = soup.find(u'table', {u'class': u'infotable'}) - content = content.findAll(u'tr') + content = soup.find(u'table', u'infotable') + if content: + content = content.findAll(u'tr') if not content: log.error(u'No books found in the Biblegateway response.') send_error_message(u'parse') diff --git a/openlp/plugins/bibles/lib/manager.py b/openlp/plugins/bibles/lib/manager.py index 2fa5631df..f4b67334c 100644 --- a/openlp/plugins/bibles/lib/manager.py +++ b/openlp/plugins/bibles/lib/manager.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/plugins/bibles/lib/mediaitem.py b/openlp/plugins/bibles/lib/mediaitem.py index a8c568fc9..75888354c 100644 --- a/openlp/plugins/bibles/lib/mediaitem.py +++ b/openlp/plugins/bibles/lib/mediaitem.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/plugins/bibles/lib/openlp1.py b/openlp/plugins/bibles/lib/openlp1.py index cfe53ff76..5d564112e 100644 --- a/openlp/plugins/bibles/lib/openlp1.py +++ b/openlp/plugins/bibles/lib/openlp1.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/plugins/bibles/lib/opensong.py b/openlp/plugins/bibles/lib/opensong.py index 0d91dd00d..2ce2b015a 100644 --- a/openlp/plugins/bibles/lib/opensong.py +++ b/openlp/plugins/bibles/lib/opensong.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/plugins/bibles/lib/osis.py b/openlp/plugins/bibles/lib/osis.py index 449d87bf1..b9e1139a4 100644 --- a/openlp/plugins/bibles/lib/osis.py +++ b/openlp/plugins/bibles/lib/osis.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/plugins/bibles/lib/upgrade.py b/openlp/plugins/bibles/lib/upgrade.py index 5abc07e75..215c981e6 100644 --- a/openlp/plugins/bibles/lib/upgrade.py +++ b/openlp/plugins/bibles/lib/upgrade.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/plugins/bibles/lib/versereferencelist.py b/openlp/plugins/bibles/lib/versereferencelist.py index aa77b416f..18e234dad 100644 --- a/openlp/plugins/bibles/lib/versereferencelist.py +++ b/openlp/plugins/bibles/lib/versereferencelist.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/plugins/custom/__init__.py b/openlp/plugins/custom/__init__.py index ae558f8ca..02429c312 100644 --- a/openlp/plugins/custom/__init__.py +++ b/openlp/plugins/custom/__init__.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/plugins/custom/customplugin.py b/openlp/plugins/custom/customplugin.py index abb566110..090368672 100644 --- a/openlp/plugins/custom/customplugin.py +++ b/openlp/plugins/custom/customplugin.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/plugins/custom/forms/__init__.py b/openlp/plugins/custom/forms/__init__.py index 9f64aaa11..bdd573613 100644 --- a/openlp/plugins/custom/forms/__init__.py +++ b/openlp/plugins/custom/forms/__init__.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/plugins/custom/forms/editcustomdialog.py b/openlp/plugins/custom/forms/editcustomdialog.py index 2bf15532c..a9eba86c0 100644 --- a/openlp/plugins/custom/forms/editcustomdialog.py +++ b/openlp/plugins/custom/forms/editcustomdialog.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/plugins/custom/forms/editcustomform.py b/openlp/plugins/custom/forms/editcustomform.py index 1510a3b39..3b4e58332 100644 --- a/openlp/plugins/custom/forms/editcustomform.py +++ b/openlp/plugins/custom/forms/editcustomform.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/plugins/custom/forms/editcustomslidedialog.py b/openlp/plugins/custom/forms/editcustomslidedialog.py index 6e7355564..e203a3f36 100644 --- a/openlp/plugins/custom/forms/editcustomslidedialog.py +++ b/openlp/plugins/custom/forms/editcustomslidedialog.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/plugins/custom/forms/editcustomslideform.py b/openlp/plugins/custom/forms/editcustomslideform.py index 043d82df5..bb6844432 100644 --- a/openlp/plugins/custom/forms/editcustomslideform.py +++ b/openlp/plugins/custom/forms/editcustomslideform.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/plugins/custom/lib/__init__.py b/openlp/plugins/custom/lib/__init__.py index 675aee050..54c3fd42a 100644 --- a/openlp/plugins/custom/lib/__init__.py +++ b/openlp/plugins/custom/lib/__init__.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/plugins/custom/lib/customtab.py b/openlp/plugins/custom/lib/customtab.py index aa0a0cab4..4367cc641 100644 --- a/openlp/plugins/custom/lib/customtab.py +++ b/openlp/plugins/custom/lib/customtab.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/plugins/custom/lib/customxmlhandler.py b/openlp/plugins/custom/lib/customxmlhandler.py index a90077e86..c81033267 100644 --- a/openlp/plugins/custom/lib/customxmlhandler.py +++ b/openlp/plugins/custom/lib/customxmlhandler.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/plugins/custom/lib/db.py b/openlp/plugins/custom/lib/db.py index ed26801c8..f4ec51821 100644 --- a/openlp/plugins/custom/lib/db.py +++ b/openlp/plugins/custom/lib/db.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/plugins/custom/lib/mediaitem.py b/openlp/plugins/custom/lib/mediaitem.py index 8550dfaf7..158ec7c71 100644 --- a/openlp/plugins/custom/lib/mediaitem.py +++ b/openlp/plugins/custom/lib/mediaitem.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/plugins/images/__init__.py b/openlp/plugins/images/__init__.py index c64f2a94e..f426b6047 100644 --- a/openlp/plugins/images/__init__.py +++ b/openlp/plugins/images/__init__.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/plugins/images/imageplugin.py b/openlp/plugins/images/imageplugin.py index f169f5e77..633db6366 100644 --- a/openlp/plugins/images/imageplugin.py +++ b/openlp/plugins/images/imageplugin.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/plugins/images/lib/__init__.py b/openlp/plugins/images/lib/__init__.py index ea74da80c..a05a18552 100644 --- a/openlp/plugins/images/lib/__init__.py +++ b/openlp/plugins/images/lib/__init__.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/plugins/images/lib/imagetab.py b/openlp/plugins/images/lib/imagetab.py index b07d3bcaa..dfb294e1c 100644 --- a/openlp/plugins/images/lib/imagetab.py +++ b/openlp/plugins/images/lib/imagetab.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/plugins/images/lib/mediaitem.py b/openlp/plugins/images/lib/mediaitem.py index 3f28c0bb3..cb4e58be8 100644 --- a/openlp/plugins/images/lib/mediaitem.py +++ b/openlp/plugins/images/lib/mediaitem.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/plugins/media/__init__.py b/openlp/plugins/media/__init__.py index 9c17bd6d0..d24f48edc 100644 --- a/openlp/plugins/media/__init__.py +++ b/openlp/plugins/media/__init__.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/plugins/media/lib/__init__.py b/openlp/plugins/media/lib/__init__.py index 1c00502c8..c73f19af4 100644 --- a/openlp/plugins/media/lib/__init__.py +++ b/openlp/plugins/media/lib/__init__.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/plugins/media/lib/mediaitem.py b/openlp/plugins/media/lib/mediaitem.py index afda1ba2e..015c9b509 100644 --- a/openlp/plugins/media/lib/mediaitem.py +++ b/openlp/plugins/media/lib/mediaitem.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/plugins/media/lib/mediatab.py b/openlp/plugins/media/lib/mediatab.py index ab5a5f7f3..941ee766e 100644 --- a/openlp/plugins/media/lib/mediatab.py +++ b/openlp/plugins/media/lib/mediatab.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/plugins/media/mediaplugin.py b/openlp/plugins/media/mediaplugin.py index fda2144bf..0848d9411 100644 --- a/openlp/plugins/media/mediaplugin.py +++ b/openlp/plugins/media/mediaplugin.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/plugins/presentations/__init__.py b/openlp/plugins/presentations/__init__.py index bfc51a899..ce699483a 100644 --- a/openlp/plugins/presentations/__init__.py +++ b/openlp/plugins/presentations/__init__.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/plugins/presentations/lib/__init__.py b/openlp/plugins/presentations/lib/__init__.py index 3371d7217..43de2fa67 100644 --- a/openlp/plugins/presentations/lib/__init__.py +++ b/openlp/plugins/presentations/lib/__init__.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/plugins/presentations/lib/impresscontroller.py b/openlp/plugins/presentations/lib/impresscontroller.py index bd436cfe9..8c714c485 100644 --- a/openlp/plugins/presentations/lib/impresscontroller.py +++ b/openlp/plugins/presentations/lib/impresscontroller.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/plugins/presentations/lib/mediaitem.py b/openlp/plugins/presentations/lib/mediaitem.py index cee7077e1..bb038f87f 100644 --- a/openlp/plugins/presentations/lib/mediaitem.py +++ b/openlp/plugins/presentations/lib/mediaitem.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/plugins/presentations/lib/messagelistener.py b/openlp/plugins/presentations/lib/messagelistener.py index ee07222f5..78b0ca2b8 100644 --- a/openlp/plugins/presentations/lib/messagelistener.py +++ b/openlp/plugins/presentations/lib/messagelistener.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/plugins/presentations/lib/powerpointcontroller.py b/openlp/plugins/presentations/lib/powerpointcontroller.py index cca909821..2c8fc03f8 100644 --- a/openlp/plugins/presentations/lib/powerpointcontroller.py +++ b/openlp/plugins/presentations/lib/powerpointcontroller.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/plugins/presentations/lib/pptviewcontroller.py b/openlp/plugins/presentations/lib/pptviewcontroller.py index 0954bbda4..0b3605b3e 100644 --- a/openlp/plugins/presentations/lib/pptviewcontroller.py +++ b/openlp/plugins/presentations/lib/pptviewcontroller.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/plugins/presentations/lib/pptviewlib/ppttest.py b/openlp/plugins/presentations/lib/pptviewlib/ppttest.py index 18333ba29..777ade7ad 100644 --- a/openlp/plugins/presentations/lib/pptviewlib/ppttest.py +++ b/openlp/plugins/presentations/lib/pptviewlib/ppttest.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/plugins/presentations/lib/pptviewlib/pptviewlib.cpp b/openlp/plugins/presentations/lib/pptviewlib/pptviewlib.cpp index 220477ce6..a40a7e8a5 100644 --- a/openlp/plugins/presentations/lib/pptviewlib/pptviewlib.cpp +++ b/openlp/plugins/presentations/lib/pptviewlib/pptviewlib.cpp @@ -4,7 +4,7 @@ * 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, * +* Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. * * 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, * diff --git a/openlp/plugins/presentations/lib/pptviewlib/pptviewlib.h b/openlp/plugins/presentations/lib/pptviewlib/pptviewlib.h index 7ea0f8aef..21460e7f0 100644 --- a/openlp/plugins/presentations/lib/pptviewlib/pptviewlib.h +++ b/openlp/plugins/presentations/lib/pptviewlib/pptviewlib.h @@ -4,7 +4,7 @@ * 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, * +* Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. * * 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, * diff --git a/openlp/plugins/presentations/lib/presentationcontroller.py b/openlp/plugins/presentations/lib/presentationcontroller.py index 9a5e77b09..7caa4db72 100644 --- a/openlp/plugins/presentations/lib/presentationcontroller.py +++ b/openlp/plugins/presentations/lib/presentationcontroller.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/plugins/presentations/lib/presentationtab.py b/openlp/plugins/presentations/lib/presentationtab.py index 9819e68d9..7a9f29b74 100644 --- a/openlp/plugins/presentations/lib/presentationtab.py +++ b/openlp/plugins/presentations/lib/presentationtab.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/plugins/presentations/presentationplugin.py b/openlp/plugins/presentations/presentationplugin.py index c92c16553..f01bd9c3d 100644 --- a/openlp/plugins/presentations/presentationplugin.py +++ b/openlp/plugins/presentations/presentationplugin.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/plugins/remotes/__init__.py b/openlp/plugins/remotes/__init__.py index 97316315f..26b39d018 100644 --- a/openlp/plugins/remotes/__init__.py +++ b/openlp/plugins/remotes/__init__.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/plugins/remotes/html/index.html b/openlp/plugins/remotes/html/index.html index 1d11980fb..22fd90c13 100644 --- a/openlp/plugins/remotes/html/index.html +++ b/openlp/plugins/remotes/html/index.html @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/plugins/remotes/html/openlp.css b/openlp/plugins/remotes/html/openlp.css index 8620d7192..a99e74539 100644 --- a/openlp/plugins/remotes/html/openlp.css +++ b/openlp/plugins/remotes/html/openlp.css @@ -4,7 +4,7 @@ * 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, * +* Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. * * 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, * diff --git a/openlp/plugins/remotes/html/openlp.js b/openlp/plugins/remotes/html/openlp.js index 8dd38d399..34f4c11e2 100644 --- a/openlp/plugins/remotes/html/openlp.js +++ b/openlp/plugins/remotes/html/openlp.js @@ -4,7 +4,7 @@ * 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, * + * Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. * * 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, * diff --git a/openlp/plugins/remotes/html/stage.css b/openlp/plugins/remotes/html/stage.css index ecf380e61..ebc1f8890 100644 --- a/openlp/plugins/remotes/html/stage.css +++ b/openlp/plugins/remotes/html/stage.css @@ -4,7 +4,7 @@ * 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, * +* Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. * * 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, * diff --git a/openlp/plugins/remotes/html/stage.html b/openlp/plugins/remotes/html/stage.html index e286c1ab0..10c28efb6 100644 --- a/openlp/plugins/remotes/html/stage.html +++ b/openlp/plugins/remotes/html/stage.html @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/plugins/remotes/html/stage.js b/openlp/plugins/remotes/html/stage.js index 057c7b95f..6a191481d 100644 --- a/openlp/plugins/remotes/html/stage.js +++ b/openlp/plugins/remotes/html/stage.js @@ -4,7 +4,7 @@ * 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, * + * Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. * * 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, * diff --git a/openlp/plugins/remotes/lib/__init__.py b/openlp/plugins/remotes/lib/__init__.py index f3b04bb45..f01d8981b 100644 --- a/openlp/plugins/remotes/lib/__init__.py +++ b/openlp/plugins/remotes/lib/__init__.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/plugins/remotes/lib/httpserver.py b/openlp/plugins/remotes/lib/httpserver.py index 6978df853..c5eeb960d 100644 --- a/openlp/plugins/remotes/lib/httpserver.py +++ b/openlp/plugins/remotes/lib/httpserver.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/plugins/remotes/lib/remotetab.py b/openlp/plugins/remotes/lib/remotetab.py index 06858e3e9..b4688e52e 100644 --- a/openlp/plugins/remotes/lib/remotetab.py +++ b/openlp/plugins/remotes/lib/remotetab.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/plugins/remotes/remoteplugin.py b/openlp/plugins/remotes/remoteplugin.py index cb50f1ae9..8a6eb5c3e 100644 --- a/openlp/plugins/remotes/remoteplugin.py +++ b/openlp/plugins/remotes/remoteplugin.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/plugins/songs/__init__.py b/openlp/plugins/songs/__init__.py index 53be49007..5903a26ff 100644 --- a/openlp/plugins/songs/__init__.py +++ b/openlp/plugins/songs/__init__.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/plugins/songs/forms/__init__.py b/openlp/plugins/songs/forms/__init__.py index 92f10f363..ff2ebf593 100644 --- a/openlp/plugins/songs/forms/__init__.py +++ b/openlp/plugins/songs/forms/__init__.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/plugins/songs/forms/authorsdialog.py b/openlp/plugins/songs/forms/authorsdialog.py index 9ce262d97..220e308ee 100644 --- a/openlp/plugins/songs/forms/authorsdialog.py +++ b/openlp/plugins/songs/forms/authorsdialog.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/plugins/songs/forms/authorsform.py b/openlp/plugins/songs/forms/authorsform.py index 591661588..d804f03b7 100644 --- a/openlp/plugins/songs/forms/authorsform.py +++ b/openlp/plugins/songs/forms/authorsform.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/plugins/songs/forms/editsongdialog.py b/openlp/plugins/songs/forms/editsongdialog.py index ea9c71714..7619fa17a 100644 --- a/openlp/plugins/songs/forms/editsongdialog.py +++ b/openlp/plugins/songs/forms/editsongdialog.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/plugins/songs/forms/editsongform.py b/openlp/plugins/songs/forms/editsongform.py index a74122c41..a6f2a46e9 100644 --- a/openlp/plugins/songs/forms/editsongform.py +++ b/openlp/plugins/songs/forms/editsongform.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/plugins/songs/forms/editversedialog.py b/openlp/plugins/songs/forms/editversedialog.py index a615ae84c..1bbf28f55 100644 --- a/openlp/plugins/songs/forms/editversedialog.py +++ b/openlp/plugins/songs/forms/editversedialog.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/plugins/songs/forms/editverseform.py b/openlp/plugins/songs/forms/editverseform.py index 5f830f22a..d0711dea2 100644 --- a/openlp/plugins/songs/forms/editverseform.py +++ b/openlp/plugins/songs/forms/editverseform.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/plugins/songs/forms/mediafilesdialog.py b/openlp/plugins/songs/forms/mediafilesdialog.py index e2c993ae1..d0da42626 100644 --- a/openlp/plugins/songs/forms/mediafilesdialog.py +++ b/openlp/plugins/songs/forms/mediafilesdialog.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/plugins/songs/forms/mediafilesform.py b/openlp/plugins/songs/forms/mediafilesform.py index 94e53fae1..ad057fb0b 100644 --- a/openlp/plugins/songs/forms/mediafilesform.py +++ b/openlp/plugins/songs/forms/mediafilesform.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/plugins/songs/forms/songbookdialog.py b/openlp/plugins/songs/forms/songbookdialog.py index 07f5f1116..6f2edb76a 100644 --- a/openlp/plugins/songs/forms/songbookdialog.py +++ b/openlp/plugins/songs/forms/songbookdialog.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/plugins/songs/forms/songbookform.py b/openlp/plugins/songs/forms/songbookform.py index 0d0c96d69..806ced052 100644 --- a/openlp/plugins/songs/forms/songbookform.py +++ b/openlp/plugins/songs/forms/songbookform.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/plugins/songs/forms/songexportform.py b/openlp/plugins/songs/forms/songexportform.py index 2e1daff31..52d63e964 100644 --- a/openlp/plugins/songs/forms/songexportform.py +++ b/openlp/plugins/songs/forms/songexportform.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/plugins/songs/forms/songimportform.py b/openlp/plugins/songs/forms/songimportform.py index 8681c9cd4..8d4e21d5e 100644 --- a/openlp/plugins/songs/forms/songimportform.py +++ b/openlp/plugins/songs/forms/songimportform.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/plugins/songs/forms/songmaintenancedialog.py b/openlp/plugins/songs/forms/songmaintenancedialog.py index 855db2d1f..c33b79cb9 100644 --- a/openlp/plugins/songs/forms/songmaintenancedialog.py +++ b/openlp/plugins/songs/forms/songmaintenancedialog.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/plugins/songs/forms/songmaintenanceform.py b/openlp/plugins/songs/forms/songmaintenanceform.py index df7b36dc5..0adeace7b 100644 --- a/openlp/plugins/songs/forms/songmaintenanceform.py +++ b/openlp/plugins/songs/forms/songmaintenanceform.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/plugins/songs/forms/topicsdialog.py b/openlp/plugins/songs/forms/topicsdialog.py index 98a0c52e6..8d1b6d23e 100644 --- a/openlp/plugins/songs/forms/topicsdialog.py +++ b/openlp/plugins/songs/forms/topicsdialog.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/plugins/songs/forms/topicsform.py b/openlp/plugins/songs/forms/topicsform.py index 329de082a..d2046cf41 100644 --- a/openlp/plugins/songs/forms/topicsform.py +++ b/openlp/plugins/songs/forms/topicsform.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/plugins/songs/lib/__init__.py b/openlp/plugins/songs/lib/__init__.py index 556009508..67a6cd80a 100644 --- a/openlp/plugins/songs/lib/__init__.py +++ b/openlp/plugins/songs/lib/__init__.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/plugins/songs/lib/cclifileimport.py b/openlp/plugins/songs/lib/cclifileimport.py index f25fd194a..3d881fe67 100644 --- a/openlp/plugins/songs/lib/cclifileimport.py +++ b/openlp/plugins/songs/lib/cclifileimport.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/plugins/songs/lib/db.py b/openlp/plugins/songs/lib/db.py index ff632acbf..aad902bf4 100644 --- a/openlp/plugins/songs/lib/db.py +++ b/openlp/plugins/songs/lib/db.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/plugins/songs/lib/dreambeamimport.py b/openlp/plugins/songs/lib/dreambeamimport.py index 65e162f84..3684e098d 100644 --- a/openlp/plugins/songs/lib/dreambeamimport.py +++ b/openlp/plugins/songs/lib/dreambeamimport.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/plugins/songs/lib/easyslidesimport.py b/openlp/plugins/songs/lib/easyslidesimport.py index 89369b371..c08b8d69d 100644 --- a/openlp/plugins/songs/lib/easyslidesimport.py +++ b/openlp/plugins/songs/lib/easyslidesimport.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/plugins/songs/lib/ewimport.py b/openlp/plugins/songs/lib/ewimport.py index 910455173..35a1f3551 100644 --- a/openlp/plugins/songs/lib/ewimport.py +++ b/openlp/plugins/songs/lib/ewimport.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/plugins/songs/lib/foilpresenterimport.py b/openlp/plugins/songs/lib/foilpresenterimport.py index 89dc5236b..a7b1e9f45 100644 --- a/openlp/plugins/songs/lib/foilpresenterimport.py +++ b/openlp/plugins/songs/lib/foilpresenterimport.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/plugins/songs/lib/importer.py b/openlp/plugins/songs/lib/importer.py index e64e28db5..772b93dee 100644 --- a/openlp/plugins/songs/lib/importer.py +++ b/openlp/plugins/songs/lib/importer.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/plugins/songs/lib/mediaitem.py b/openlp/plugins/songs/lib/mediaitem.py index 5b56a6bd3..23ce7ac79 100644 --- a/openlp/plugins/songs/lib/mediaitem.py +++ b/openlp/plugins/songs/lib/mediaitem.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/plugins/songs/lib/mediashoutimport.py b/openlp/plugins/songs/lib/mediashoutimport.py index 7dfa64843..d50b4e8ff 100644 --- a/openlp/plugins/songs/lib/mediashoutimport.py +++ b/openlp/plugins/songs/lib/mediashoutimport.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/plugins/songs/lib/olp1import.py b/openlp/plugins/songs/lib/olp1import.py index 14733210c..231c09c02 100644 --- a/openlp/plugins/songs/lib/olp1import.py +++ b/openlp/plugins/songs/lib/olp1import.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/plugins/songs/lib/olpimport.py b/openlp/plugins/songs/lib/olpimport.py index 23a30405e..d71c7957e 100644 --- a/openlp/plugins/songs/lib/olpimport.py +++ b/openlp/plugins/songs/lib/olpimport.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/plugins/songs/lib/oooimport.py b/openlp/plugins/songs/lib/oooimport.py index 952766443..2ee49df4b 100644 --- a/openlp/plugins/songs/lib/oooimport.py +++ b/openlp/plugins/songs/lib/oooimport.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/plugins/songs/lib/openlyricsexport.py b/openlp/plugins/songs/lib/openlyricsexport.py index ffa4b60e9..5ca21f085 100644 --- a/openlp/plugins/songs/lib/openlyricsexport.py +++ b/openlp/plugins/songs/lib/openlyricsexport.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/plugins/songs/lib/openlyricsimport.py b/openlp/plugins/songs/lib/openlyricsimport.py index 721582e4a..3ae185179 100644 --- a/openlp/plugins/songs/lib/openlyricsimport.py +++ b/openlp/plugins/songs/lib/openlyricsimport.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/plugins/songs/lib/opensongimport.py b/openlp/plugins/songs/lib/opensongimport.py index 37e14aa0f..54a882b65 100644 --- a/openlp/plugins/songs/lib/opensongimport.py +++ b/openlp/plugins/songs/lib/opensongimport.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/plugins/songs/lib/powersongimport.py b/openlp/plugins/songs/lib/powersongimport.py index de32946fb..c9ff415e7 100644 --- a/openlp/plugins/songs/lib/powersongimport.py +++ b/openlp/plugins/songs/lib/powersongimport.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/plugins/songs/lib/sofimport.py b/openlp/plugins/songs/lib/sofimport.py index cef33f10d..7a499c409 100644 --- a/openlp/plugins/songs/lib/sofimport.py +++ b/openlp/plugins/songs/lib/sofimport.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/plugins/songs/lib/songbeamerimport.py b/openlp/plugins/songs/lib/songbeamerimport.py index 862c2abe5..1756b71a0 100644 --- a/openlp/plugins/songs/lib/songbeamerimport.py +++ b/openlp/plugins/songs/lib/songbeamerimport.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/plugins/songs/lib/songimport.py b/openlp/plugins/songs/lib/songimport.py index 48a35d299..a35c6fc4e 100644 --- a/openlp/plugins/songs/lib/songimport.py +++ b/openlp/plugins/songs/lib/songimport.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/plugins/songs/lib/songproimport.py b/openlp/plugins/songs/lib/songproimport.py index 96f26ede7..7f08fcdad 100644 --- a/openlp/plugins/songs/lib/songproimport.py +++ b/openlp/plugins/songs/lib/songproimport.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/plugins/songs/lib/songshowplusimport.py b/openlp/plugins/songs/lib/songshowplusimport.py index f88a86dbd..11e826430 100644 --- a/openlp/plugins/songs/lib/songshowplusimport.py +++ b/openlp/plugins/songs/lib/songshowplusimport.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/plugins/songs/lib/songstab.py b/openlp/plugins/songs/lib/songstab.py index afdf11123..37c99e499 100644 --- a/openlp/plugins/songs/lib/songstab.py +++ b/openlp/plugins/songs/lib/songstab.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/plugins/songs/lib/sundayplusimport.py b/openlp/plugins/songs/lib/sundayplusimport.py index e65983f6d..46e17abdd 100644 --- a/openlp/plugins/songs/lib/sundayplusimport.py +++ b/openlp/plugins/songs/lib/sundayplusimport.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/plugins/songs/lib/test/test_import_file.py b/openlp/plugins/songs/lib/test/test_import_file.py index 34d94985e..44f992dba 100644 --- a/openlp/plugins/songs/lib/test/test_import_file.py +++ b/openlp/plugins/songs/lib/test/test_import_file.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/plugins/songs/lib/test/test_importing_lots.py b/openlp/plugins/songs/lib/test/test_importing_lots.py index 6d22e0a5b..b5e7272af 100644 --- a/openlp/plugins/songs/lib/test/test_importing_lots.py +++ b/openlp/plugins/songs/lib/test/test_importing_lots.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/plugins/songs/lib/test/test_opensongimport.py b/openlp/plugins/songs/lib/test/test_opensongimport.py index cb4bca925..8cb9e427b 100644 --- a/openlp/plugins/songs/lib/test/test_opensongimport.py +++ b/openlp/plugins/songs/lib/test/test_opensongimport.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/plugins/songs/lib/ui.py b/openlp/plugins/songs/lib/ui.py index e9866bf02..eb73485fe 100644 --- a/openlp/plugins/songs/lib/ui.py +++ b/openlp/plugins/songs/lib/ui.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/plugins/songs/lib/upgrade.py b/openlp/plugins/songs/lib/upgrade.py index a0286f78d..46fcb7746 100644 --- a/openlp/plugins/songs/lib/upgrade.py +++ b/openlp/plugins/songs/lib/upgrade.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/plugins/songs/lib/wowimport.py b/openlp/plugins/songs/lib/wowimport.py index 3c1c2009e..3ac298775 100644 --- a/openlp/plugins/songs/lib/wowimport.py +++ b/openlp/plugins/songs/lib/wowimport.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/plugins/songs/lib/xml.py b/openlp/plugins/songs/lib/xml.py index 724da6033..7f465d199 100644 --- a/openlp/plugins/songs/lib/xml.py +++ b/openlp/plugins/songs/lib/xml.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/plugins/songs/lib/zionworximport.py b/openlp/plugins/songs/lib/zionworximport.py index 53a9a80db..b813b1551 100644 --- a/openlp/plugins/songs/lib/zionworximport.py +++ b/openlp/plugins/songs/lib/zionworximport.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/plugins/songs/songsplugin.py b/openlp/plugins/songs/songsplugin.py index 3ad17790e..110b5745e 100644 --- a/openlp/plugins/songs/songsplugin.py +++ b/openlp/plugins/songs/songsplugin.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/plugins/songusage/__init__.py b/openlp/plugins/songusage/__init__.py index 761d385cf..4e3b4a055 100644 --- a/openlp/plugins/songusage/__init__.py +++ b/openlp/plugins/songusage/__init__.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/plugins/songusage/forms/__init__.py b/openlp/plugins/songusage/forms/__init__.py index 39b32269f..e2438ea42 100644 --- a/openlp/plugins/songusage/forms/__init__.py +++ b/openlp/plugins/songusage/forms/__init__.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/plugins/songusage/forms/songusagedeletedialog.py b/openlp/plugins/songusage/forms/songusagedeletedialog.py index 24f1ee1e6..ea50352ef 100644 --- a/openlp/plugins/songusage/forms/songusagedeletedialog.py +++ b/openlp/plugins/songusage/forms/songusagedeletedialog.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/plugins/songusage/forms/songusagedeleteform.py b/openlp/plugins/songusage/forms/songusagedeleteform.py index 0eacc344d..02b064c24 100644 --- a/openlp/plugins/songusage/forms/songusagedeleteform.py +++ b/openlp/plugins/songusage/forms/songusagedeleteform.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/plugins/songusage/forms/songusagedetaildialog.py b/openlp/plugins/songusage/forms/songusagedetaildialog.py index eb1739bea..f4276ed79 100644 --- a/openlp/plugins/songusage/forms/songusagedetaildialog.py +++ b/openlp/plugins/songusage/forms/songusagedetaildialog.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/plugins/songusage/forms/songusagedetailform.py b/openlp/plugins/songusage/forms/songusagedetailform.py index a0629b7fa..5259f0dfd 100644 --- a/openlp/plugins/songusage/forms/songusagedetailform.py +++ b/openlp/plugins/songusage/forms/songusagedetailform.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/plugins/songusage/lib/__init__.py b/openlp/plugins/songusage/lib/__init__.py index 11b590cdc..f6250a6d3 100644 --- a/openlp/plugins/songusage/lib/__init__.py +++ b/openlp/plugins/songusage/lib/__init__.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/plugins/songusage/lib/db.py b/openlp/plugins/songusage/lib/db.py index 7d7e75cdb..20add7181 100644 --- a/openlp/plugins/songusage/lib/db.py +++ b/openlp/plugins/songusage/lib/db.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/plugins/songusage/lib/upgrade.py b/openlp/plugins/songusage/lib/upgrade.py index d4f31fc29..c14d21214 100644 --- a/openlp/plugins/songusage/lib/upgrade.py +++ b/openlp/plugins/songusage/lib/upgrade.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/openlp/plugins/songusage/songusageplugin.py b/openlp/plugins/songusage/songusageplugin.py index ce9dc5b64..c9daffc8b 100644 --- a/openlp/plugins/songusage/songusageplugin.py +++ b/openlp/plugins/songusage/songusageplugin.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/resources/__init__.py b/resources/__init__.py index e5697ebbe..193021890 100644 --- a/resources/__init__.py +++ b/resources/__init__.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/resources/i18n/af.ts b/resources/i18n/af.ts index 11358cf7a..8e41e407c 100644 --- a/resources/i18n/af.ts +++ b/resources/i18n/af.ts @@ -3,35 +3,35 @@ AlertsPlugin - + &Alert W&aarskuwing - + Show an alert message. Vertoon 'n waarskuwing boodskap. - + Alert name singular Waarskuwing - + Alerts name plural Waarskuwings - + Alerts container title Waarskuwings - + <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of nursery alerts on the display screen. <strong>Waarskuwing Mini-program</strong><br/>Die waarskuwing mini-program beheer die vertoning van moederskamer inligting op die vertoon skerm. @@ -39,69 +39,69 @@ AlertsPlugin.AlertForm - + Alert Message Waarskuwing Boodskap - + Alert &text: Waarskuwing &teks: - + &New &Nuwe - + &Save &Stoor - + Displ&ay V&ertoon - + Display && Cl&ose Vert&oon && Maak toe - + New Alert Nuwe Waarskuwing - + You haven't specified any text for your alert. Please type in some text before clicking New. Daar is geen teks vir die waarskuwing gespesifiseer nie. Tik asseblief teks in voordat 'n nuwe een bygevoeg word. - + &Parameter: &Parameter: - + No Parameter Found Geen Parameter Gevind nie - + You have not entered a parameter to be replaced. Do you want to continue anyway? Daar is nie 'n parameter gegee om te vervang nie. Gaan steeds voort? - + No Placeholder Found Geen Plekhouer Gevind nie - + The alert text does not contain '<>'. Do you want to continue anyway? Die attent-teks bevat nie '<>' nie. @@ -119,32 +119,32 @@ Gaan steeds voort? AlertsPlugin.AlertsTab - + Font Skrif - + Font name: Skrif naam: - + Font color: Skrif kleur: - + Background color: Agtergrond kleur: - + Font size: Skrif grootte: - + Alert timeout: Waarskuwing verstreke-tyd: @@ -152,510 +152,510 @@ Gaan steeds voort? BiblesPlugin - + &Bible &Bybel - + Bible name singular Bybel - + Bibles name plural Bybels - + Bibles container title Bybels - + No Book Found Geen Boek Gevind nie - + No matching book could be found in this Bible. Check that you have spelled the name of the book correctly. Geen passende boek kon in hierdie Bybel gevind word nie. Gaan na dat die naam van die boek korrek gespel is. - + Import a Bible. Voer 'n Bybel in. - + Add a new Bible. Voeg 'n nuwe Bybel by. - + Edit the selected Bible. Redigeer geselekteerde Bybel. - + Delete the selected Bible. Wis die geselekteerde Bybel uit. - + Preview the selected Bible. Voorskou die geselekteerde Bybel. - + Send the selected Bible live. Stuur die geselekteerde Bybel regstreeks. - + Add the selected Bible to the service. Voeg die geselekteerde Bybel by die diens. - + <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display Bible verses from different sources during the service. <strong>Bybel Mini-program</strong<br />Die Bybel mini-program verskaf die vermoë om Bybelverse vanaf verskillende bronne te vertoon tydens die diens. - + &Upgrade older Bibles &Opgradeer ouer Bybels - + Upgrade the Bible databases to the latest format. Opgradeer die Bybel databasisse na die nuutste formaat. - + Genesis Genesis - + Exodus Eksodus - + Leviticus Livitikus - + Numbers Numeri - + Deuteronomy Deuterononium - + Joshua Josua - + Judges Rigters - + Ruth Rut - + 1 Samuel 1 Samuel - + 2 Samuel 2 Samuel - + 1 Kings 1 Konings - + 2 Kings 2 Konings - + 1 Chronicles 1 Kronieke - + 2 Chronicles 2 Kronieke - + Ezra Esra - + Nehemiah Nehemia - + Esther Ester - + Job Job - + Psalms Psalms - + Proverbs Spreuke van Salomo - + Ecclesiastes Prediker - + Song of Solomon Hooglied van Salomo - + Isaiah Jesaja - + Jeremiah Jeremia - + Lamentations Klaagliedere van Jeremia - + Ezekiel Esegiël - + Daniel Daniël - + Hosea Hosea - + Joel Joël - + Amos Amos - + Obadiah Obadja - + Jonah Jona - + Micah Miga - + Nahum Nahum - + Habakkuk Habakuk - + Zephaniah Sefanja - + Haggai Haggai - + Zechariah Sagaria - + Malachi Maleagi - + Matthew Matteus - + Mark Markus - + Luke Lukas - + John Johannes - + Acts Handelinge - + Romans Romeine - + 1 Corinthians 1 Korintiërs - + 2 Corinthians 2 Korintiërs - + Galatians Galasiërs - + Ephesians Effesiërs - + Philippians Filippense - + Colossians Kolossense - + 1 Thessalonians 1 Tessalonisense - + 2 Thessalonians 2 Tessalonisense - + 1 Timothy 1 Timoteus - + 2 Timothy 2 Timoteus - + Titus Titus - + Philemon Filemon - + Hebrews Hebreërs - + 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 Openbaring - + Judith Judit - + Wisdom Wysheid van Salomo - + Tobit Tobit - + Sirach Sirag - + Baruch Barug - + 1 Maccabees 1 Makkabeërs - + 2 Maccabees 2 Makkabeërs - + 3 Maccabees 3 Makkabeërs - + 4 Maccabees 4 Makkabeërs - + Rest of Daniel Byvoegings tot Daniël - + Rest of Esther Byvoegings tot Ester - + Prayer of Manasses Gebed van Manasse - + Letter of Jeremiah Brief van Jeremia - + Prayer of Azariah Gebed van Asarja - + Susanna Susanna - + Bel Bel en die Draak - + 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 @@ Gaan steeds voort? BiblesPlugin.BibleEditForm - + You need to specify a version name for your Bible. Dit is nodig dat 'n weergawe naam vir die Bybel gespesifiseer word. - + You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. 'n Kopiereg moet vir jou Bybel ingestel word. Bybels in die Publieke Domein moet sodanig gemerk word. - + Bible Exists Bybel Bestaan - + This Bible already exists. Please import a different Bible or first delete the existing one. Hierdie Bybel bestaan reeds. Voer asseblief 'n ander Bybel in, of wis eerstens die bestaande een uit. - + You need to specify a book name for "%s". 'n Boek naam moet vir "%s" gespesifiseer word. - + 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. @@ -699,12 +699,12 @@ en moet gevolg word deur een of meer nie-numeriese karrakters. - + Duplicate Book Name Duplikaat Boek Naam - + The Book Name "%s" has been entered more than once. Die Boek Naam "%s" is meer as een keer ingevoer. @@ -712,39 +712,39 @@ karrakters. BiblesPlugin.BibleManager - + Scripture Reference Error Skrif Verwysing Fout - + Web Bible cannot be used Web Bybel kan nie gebruik word nie - + Text Search is not available with Web Bibles. Teks Soektog is nie beskikbaar met Web Bybels nie. - + 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. 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. - + There are no Bibles currently installed. Please use the Import Wizard to install one or more Bibles. Huidig is daar geen Bybels geïnstalleer nie. Gebruik asseblief die Invoer Gids om een of meer Bybels te installeer. - + No Bibles Available Geeb Bybels Beskikbaar nie - + 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 @@ Boek Hoofstuk%(verse)sVers%(range)sHoofstuk%(verse)sVers BiblesPlugin.BiblesTab - + Verse Display Vers Vertoning - + Only show new chapter numbers Vertoon net nuwe hoofstuk nommers - + Bible theme: Bybel tema: - + No Brackets Geen Hakkies - + ( And ) ( En ) - + { And } { En } - + [ And ] [ En ] - + Note: Changes do not affect verses already in the service. Nota: Veranderinge affekteer nie verse wat reeds in die diens is nie. - + Display second Bible verses Vertoon tweede Bybel se verse - + Custom Scripture References Aangepasde Skrifgedeelte Verwysing - + Verse Separator: Vers Verdeler: - + Range Separator: Reeks Verdeler: - + List Separator: Lys Verdeler: - + End Mark: End Merk: - + 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 @@ Hulle moet geskei word deur 'n vertikale staaf "|". Maak asseblief hierdie redigeer lyn skoon om die verstek waarde te gebruik. - + 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 @@ Hulle moet geskei word deur 'n vertikale staaf "|". Maak asseblief hierdie redigeer lyn skoon om die verstek waarde te gebruik. - + 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 @@ Hulle moet geskei word deur 'n vertikale staaf "|". Maak asseblief hierdie redigeer lyn skoon om die verstek waarde te gebruik. - + 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 @@ Hulle moet geskei word deur 'n vertikale staaf "|". Maak asseblief hierdie redigeer lyn skoon om die verstek waarde te gebruik. - + English Engels - + Default Bible Language Verstek Bybel Taal - + Book name language in search field, search results and on display: Boek naam taal in soek veld, soek resultate en op die vertoning: - + Bible Language Bybel Taal - + Application Language Program Taal @@ -905,42 +905,42 @@ soek resultate en op die vertoning: BiblesPlugin.BookNameDialog - + Select Book Name Selekteer Boek Naam - + Current name: Huidige naam: - + Corresponding name: Ooreenstemmende naam: - + Show Books From Wys Boeke Van - + Old Testament Ou Testament - + New Testament Nuwe Testament - + Apocrypha Apokriewe - + The following book name cannot be matched up internally. Please select the corresponding name from the list. Die volgende boek name kon nie intern gepas word nie. Kies asseblief die ooreenstemmende naam van die lys. @@ -948,7 +948,7 @@ soek resultate en op die vertoning: BiblesPlugin.BookNameForm - + You need to select a book. Kies asseblief 'n boek. @@ -956,18 +956,18 @@ soek resultate en op die vertoning: BiblesPlugin.CSVBible - + Importing books... %s Boek invoer... %s - + Importing verses from %s... Importing verses from <book name>... Vers invoer vanaf %s... - + Importing verses... done. Vers invoer... voltooi. @@ -975,69 +975,69 @@ soek resultate en op die vertoning: BiblesPlugin.EditBibleForm - + Bible Editor Bybel Redigeerder - + License Details Lisensie Besonderhede - + Version name: Weergawe naam: - + Copyright: Kopiereg: - + Permissions: Toestemming: - + Default Bible Language Verstek Bybel Taal - + Book name language in search field, search results and on display: Boek naam taal in soek veld, soek resultate en op die vertoning: - + Global Settings Globale Instellings - + Bible Language Bybel Taal - + Application Language Program Taal - + English Engels - + This is a Web Download Bible. It is not possible to customize the Book Names. Hierdie is 'n Web Aflaai Bybel. Dit is nie moontlik om die Boek Name aan te pas nie. - + 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. Om eie boek name te gebruik, "Bybel taal" moet in die Meta Data blad gekies wees, of wanneer "Globale instellings" geselekteer is, op die Bybel bladsy OpenLP Instelling. @@ -1045,38 +1045,38 @@ Dit is nie moontlik om die Boek Name aan te pas nie. BiblesPlugin.HTTPBible - + Registering Bible and loading books... Registreer Bybel en laai boeke... - + Registering Language... Taal registrasie... - + Importing %s... Importing <book name>... Voer %s in... - + Download Error Aflaai Fout - + There was a problem downloading your verse selection. Please check your Internet connection, and if this error continues to occur please consider reporting a bug. Daar was 'n probleem om die vers seleksie af te laai. Gaan die Internet konneksie na en as hierdie probleem voortduur, oorweeg dit asseblief om 'n gogga te rapporteer. - + Parse Error Ontleed Fout - + There was a problem extracting your verse selection. If this error continues to occur please consider reporting a bug. Daar was 'n probleem om die vers seleksie te onttrek. As hierdie probleem voortduur, oorweeg dit asseblief om 'n gogga te rapporteer. @@ -1254,17 +1254,17 @@ vraag afgelaai word en dus is 'n internet konneksie nodig. BiblesPlugin.LanguageDialog - + Select Language Kies 'n Taal - + OpenLP is unable to determine the language of this translation of the Bible. Please select the language from the list below. OpenLP is nie in staat om die taal van hierdie vertaling Bybel te bepaal nie. Kies asseblief die taal van die lys hieronder. - + Language: Taal: @@ -1272,7 +1272,7 @@ vraag afgelaai word en dus is 'n internet konneksie nodig. BiblesPlugin.LanguageForm - + You need to choose a language. Kies asseblief 'n taal. @@ -1280,92 +1280,92 @@ vraag afgelaai word en dus is 'n internet konneksie nodig. BiblesPlugin.MediaItem - + Quick Vinnig - + Find: Vind: - + Book: Boek: - + Chapter: Hoofstuk: - + Verse: Vers: - + From: Vanaf: - + To: Tot: - + Text Search Teks Soektog - + Second: Tweede: - + Scripture Reference Skrif Verwysing - + Toggle to keep or clear the previous results. Wissel om die vorige resultate te behou of te verwyder. - + You cannot combine single and dual Bible verse search results. Do you want to delete your search results and start a new search? Enkel en dubbel Bybel-vers soek-resultate kan nie gekombineer word nie. Wis die resultate uit en begin 'n nuwe soektog? - + Bible not fully loaded. Die Bybel is nie ten volle gelaai nie. - + Information Informasie - + 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 tweede Bybel het nie al die verse wat in die hoof Bybel is nie. Slegs verse wat in beide Bybels voorkom, sal gewys word. %d verse is nie by die resultate ingesluit nie. - + Search Scripture Reference... Soek Skriflesing Verwysing... - + Search Text... Soek Teks... - + Are you sure you want to completely delete "%s" Bible from OpenLP? You will need to re-import this Bible to use it again. @@ -1377,7 +1377,7 @@ Hierdie Bybel sal weer ingevoer moet word voordat dit gebruik geneem kan word. BiblesPlugin.OpenSongImport - + Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. Ongeldige Bybel lêer @@ -1385,7 +1385,7 @@ Hierdie Bybel sal weer ingevoer moet word voordat dit gebruik geneem kan word. BiblesPlugin.Opensong - + Importing %s %s... Importing <book name> <chapter>... Invoer %s %s... @@ -1394,12 +1394,12 @@ Hierdie Bybel sal weer ingevoer moet word voordat dit gebruik geneem kan word. BiblesPlugin.OsisImport - + Detecting encoding (this may take a few minutes)... Bepaal enkodering (dit mag 'n paar minuute neem)... - + Importing %s %s... Importing <book name> <chapter>... Invoer %s %s... @@ -1408,122 +1408,122 @@ Hierdie Bybel sal weer ingevoer moet word voordat dit gebruik geneem kan word. BiblesPlugin.UpgradeWizardForm - + Select a Backup Directory Kies 'n Rugsteun Ligging - + Bible Upgrade Wizard Bybel Opgradeer Gids - + 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. Hierdie gids sal help om die bestaande Bybels vanaf 'n vorige weergawe van OpenLP 2.0 op te gradeer. Kliek die volgende knoppie hier-onder om die opgradeer proses te begin. - + Select Backup Directory Kies Rugsteun Ligging - + Please select a backup directory for your Bibles Kies asseblief 'n rugsteun liging vir die Bybels - + 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>. Vorige weergawes van OpenLP 2.0 is nie in staat om opgegradeerde Bybels te gebruik nie. Hierdie sal 'n rugsteun van die bestaande Bybels maak sodat indien dit nodig is om terug te gaan na 'n vorige weergawe van OpenLP, die Bybels net terug gekopiër kan word. Instruksies oor hoe om lêers te herstel kan gevind word by ons <a href="http://wiki.openlp.org/faq">Gereelde Vrae</a>. - + Please select a backup location for your Bibles. Kies asseblief 'n rugsteun ligging vir die Bybels. - + Backup Directory: Rugsteun Ligging: - + There is no need to backup my Bibles Dit is nie nodig om die Bybels op te gradeer nie - + Select Bibles Kies Bybels - + Please select the Bibles to upgrade Kies asseblief die Bybels om op te gradeer - + Upgrading Opgradeer - + Please wait while your Bibles are upgraded. Wag asseblief terwyl die Bybels opgradeer word. - + The backup was not successful. To backup your Bibles you need permission to write to the given directory. Die rugsteun was nie suksesvol nie. Om die Bybels op te gradeer word skryf-toestemming benodig vir die gegewe lêer. - + Upgrading Bible %s of %s: "%s" Failed Opgradeer Bybel %s van %s: "%s" Gevaal - + Upgrading Bible %s of %s: "%s" Upgrading ... Opgradeer Bybel %s van %s: "%s" Opgradeer ... - + Download Error Aflaai Fout - + To upgrade your Web Bibles an Internet connection is required. Om die Web Bybels op te gradeer is 'n Internet verbinding nodig. - + Upgrading Bible %s of %s: "%s" Upgrading %s ... Opgradeer Bybel %s van %s: "%s" Opgradering %s... - + Upgrading Bible %s of %s: "%s" Complete Opgradeer Bybel %s van %s: "%s" Volledig - + , %s failed , %s het gevaal - + 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. Opgradeer Bybel(s): %s suksesvol %s @@ -1531,27 +1531,27 @@ Neem kennis dat verse van Web Bybels op aanvraag afgelaai word en dus is 'n Internet verbinding nodig. - + Upgrading Bible(s): %s successful%s Opgradeer Bybel(s): %s suksesvol %s - + Upgrade failed. Opgradeer het gevaal. - + You need to specify a backup directory for your Bibles. 'n Rugsteun Ligging moet vir die Bybels gespesifiseer word. - + Starting upgrade... Opgradering begin... - + There are no Bibles that need to be upgraded. Daar is geen Bybels wat opgradering benodig nie. @@ -1559,65 +1559,65 @@ word en dus is 'n Internet verbinding nodig. 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>Aanpas Skyfie Mini-program</strong><br/>Die aanpas syfie mini-program verskaf die vermoë om aangepasde teks skyfies op te stel wat in dieselfde manier gebruik word as die liedere mini-program. Dié mini-program verskaf grooter vryheid as die liedere mini-program. - + Custom Slide name singular Aangepasde Skyfie - + Custom Slides name plural Aangepasde Skyfies - + Custom Slides container title Aangepasde Skyfies - + Load a new custom slide. Laai 'n nuwe aangepasde skyfie. - + Import a custom slide. Voer 'n aangepasde skyfie in. - + Add a new custom slide. Voeg 'n nuwe aangepasde skyfie by. - + Edit the selected custom slide. Redigeer die geselekteerde aangepasde skyfie. - + Delete the selected custom slide. Wis die geselekteerde aangepasde skyfie uit. - + Preview the selected custom slide. Skou die geselekteerde aangepasde skyfie. - + Send the selected custom slide live. Stuur die geselekteerde aangepasde skuifie regstreeks. - + Add the selected custom slide to the service. Voeg die geselekteerde aangepasde skyfie by die diens. @@ -1625,12 +1625,12 @@ word en dus is 'n Internet verbinding nodig. CustomPlugin.CustomTab - + Custom Display Aangepasde Vertoning - + Display footer Vertoon voetspasie @@ -1638,62 +1638,62 @@ word en dus is 'n Internet verbinding nodig. CustomPlugin.EditCustomForm - + Edit Custom Slides Redigeer Aangepaste Skyfies - + &Title: &Titel: - + Add a new slide at bottom. Voeg nuwe skyfie by aan die onderkant. - + Edit the selected slide. Redigeer die geselekteerde skyfie. - + Edit all the slides at once. Redigeer al die skyfies tegelyk. - + Split a slide into two by inserting a slide splitter. Verdeel 'n skyfie deur 'n skyfie-verdeler te gebruik. - + The&me: Te&ma: - + &Credits: &Krediete: - + You need to type in a title. 'n Titel word benodig. - + You need to add at least one slide Ten minste een skyfie moet bygevoeg word - + Ed&it All Red&igeer Alles - + Insert Slide Voeg 'n Skyfie in @@ -1701,7 +1701,7 @@ word en dus is 'n Internet verbinding nodig. CustomPlugin.EditVerseForm - + Edit Slide Redigeer Skyfie @@ -1709,7 +1709,7 @@ word en dus is 'n Internet verbinding nodig. CustomPlugin.MediaItem - + Are you sure you want to delete the %n selected custom slide(s)? Wis sekerlik die %n gekose aangepasde skyfie uit? @@ -1720,60 +1720,60 @@ word en dus is 'n Internet verbinding nodig. 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>Beeld Mini-program</strong><br/>Die beeld mini-program verskaf vertoning van beelde.<br/>Een van die onderskeidende kenmerke van hierdie mini-program is die vermoë om beelde te groepeer in die diensbestuurder wat dit maklik maak om verskeie beelde te vertoon. Die mini-program kan ook van OpenLP se "tydgebonde herhaling"-funksie gebruik maak om 'n automatiese skyfe-vertoning te verkry. Verder kan beelde van hierdie mini-program gebruik word om die huidige tema se agtergrond te vervang hoewel 'n tema sy eie agtergrond het. - + Image name singular Beeld - + Images name plural Beelde - + Images container title Beelde - + Load a new image. Laai 'n nuwe beeld. - + Add a new image. Voeg 'n nuwe beeld by. - + Edit the selected image. Redigeer die geselekteerde beeld. - + Delete the selected image. Wis die geselekteerde beeld uit. - + Preview the selected image. Skou die geselekteerde beeld. - + Send the selected image live. Stuur die geselekteerde beeld regstreeks. - + Add the selected image to the service. Voeg die geselekteerde beeld by die diens. @@ -1781,7 +1781,7 @@ word en dus is 'n Internet verbinding nodig. ImagePlugin.ExceptionDialog - + Select Attachment Selekteer Aanhangsel @@ -1789,44 +1789,44 @@ word en dus is 'n Internet verbinding nodig. ImagePlugin.MediaItem - + Select Image(s) Selekteer beeld(e) - + You must select an image to delete. 'n Beeld om uit te wis moet geselekteer word. - + You must select an image to replace the background with. 'n Beeld wat die agtergrond vervang moet gekies word. - + Missing Image(s) Vermisde Beeld(e) - + The following image(s) no longer exist: %s Die volgende beeld(e) bestaan nie meer nie: %s - + The following image(s) no longer exist: %s Do you want to add the other images anyway? Die volgende beeld(e) bestaan nie meer nie: %s Voeg steeds die ander beelde by? - + There was a problem replacing your background, the image file "%s" no longer exists. Daar was 'n probleem om die agtergrond te vervang. Die beeld lêer "%s" bestaan ine meer nie. - + There was no display item to amend. Daar was geen vertoon item om by te voeg nie. @@ -1834,17 +1834,17 @@ Voeg steeds die ander beelde by? ImagesPlugin.ImageTab - + Background Color Agtergrond Kleur - + Default Color: Verstek Kleur: - + Visible background for images with aspect ratio different to screen. Visuele agtergrond vir beelde met 'n aspek verhouding wat verskil met dié van die skerm. @@ -1852,60 +1852,60 @@ Voeg steeds die ander beelde by? MediaPlugin - + <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. <strong>Media Mini-program</strong><br/>Die media mini-program verskaf speel funksies van audio en video. - + Media name singular Media - + Media name plural Media - + Media container title Media - + Load new media. Laai nuwe media. - + Add new media. Voeg nuwe media by. - + Edit the selected media. Redigeer di geselekteerde media. - + Delete the selected media. Wis die giselekteerde media uit. - + Preview the selected media. Skou die geselekteerde media. - + Send the selected media live. Stuur die geselekteerde media regstreeks. - + Add the selected media to the service. Voeg die geselekteerde media by die diens. @@ -1913,57 +1913,57 @@ Voeg steeds die ander beelde by? MediaPlugin.MediaItem - + Select Media Selekteer Media - + You must select a media file to delete. 'n Media lêer om uit te wis moet geselekteer word. - + You must select a media file to replace the background with. 'n Media lêer wat die agtergrond vervang moet gekies word. - + There was a problem replacing your background, the media file "%s" no longer exists. Daar was 'n probleem om die agtergrond te vervang. Die media lêer "%s" bestaan nie meer nie. - + Missing Media File Vermisde Media Lêer - + The file %s no longer exists. Die lêer %s bestaan nie meer nie. - + Videos (%s);;Audio (%s);;%s (*) Videos (%s);;Audio (%s);;%s (*) - + There was no display item to amend. Daar was geen vertoon item om by te voeg nie. - + Unsupported File Lêer nie Ondersteun nie - + Automatic Automaties - + Use Player: Gebruik Speler: @@ -1971,22 +1971,22 @@ Voeg steeds die ander beelde by? MediaPlugin.MediaTab - + Available Media Players Beskikbare Media Spelers - + %s (unavailable) %s (onbeskikbaar) - + Player Order Speler Orde - + Allow media player to be overridden Laat toe dat media speler oorheers word @@ -1994,17 +1994,17 @@ Voeg steeds die ander beelde by? OpenLP - + Image Files Beeld Lêers - + Information Informasie - + Bible format has changed. You have to upgrade your existing Bibles. Should OpenLP upgrade now? @@ -2014,32 +2014,61 @@ Should OpenLP upgrade now? OpenLP.AboutForm - + Credits Krediete - + License Lisensie - + 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. - + + Copyright © 2004-2012 %s +Portions copyright © 2004-2012 %s + Kopiereg © 2004-2012 %s +Gedeeltelike kopiereg © 2004-2012 %s + + + + 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. + +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 volunteering by using the button below. + OpenLP <version><revision> - Open Source Lyrics Projection + +OpenLP is gratis kerklike aanbieding of liedere projeksie sagteware, wat gebruik word om skyfies van liedere, Bybel verse, videos, beelde en selfs aanbiedinge (as Impress, PowerPoint of PowerPoint Viewer geïnstalleer is) te vertoon deur gebruik te maak van 'n rekenaar en 'n data projektor. + +Vind meer uit aangaande OpenLP: http://openlp.org/ + +OpenLP is geskryf en word onderhou deur vrywilligers. As jy meer gratis Christelike sagteware wil sien, oorweeg dit asseblief om ook vrywillig te wees deur die knoppie hieronder te gebruik. + + + + Volunteer + Vrywilliger + + + Project Lead %s @@ -2058,12 +2087,20 @@ Packagers Translators Afrikaans (af) %s + Czeck (cs) + %s + Danish (da) + %s German (de) %s + Greek (el) + %s English, United Kingdom (en_GB) %s English, South Africa (en_ZA) %s + Spanish (es) + %s Estonian (et) %s French (fr) @@ -2080,13 +2117,15 @@ Translators %s Russian (ru) %s + Swedish (sv) + %s Documentation %s Built With Python: http://www.python.org/ - Qt4: http://qt.nokia.com/ + Qt4: http://qt.digia.com/ PyQt4: http://www.riverbankcomputing.co.uk/software/pyqt/intro Oxygen Icons: http://oxygen-icons.org/ @@ -2101,269 +2140,185 @@ Final Credit on the cross, setting us free from sin. We bring this software to you for free because He has set us free. - Projek Leier - %s - -Ontwikkelaars - %s - -Bydraers - %s - -Toetsers - %s - -Verpakkers - %s - -Vertalers - Afrikaans (af) - %s - Duits (de) - %s - Engels, Verenigde Koningkryk (en_GB) - %s - Engels, Suid-Afrika (en_ZA) - %s - Estonian (et) - %s - Frans (fr) - %s - Hongaars (hu) - %s - Japanees (ja) - %s - Noors Bokmål (nb) - %s - Nederlands (nl) - %s - Portugees, Brazilië (pt_BR) - %s - Russies (ru) - %s - -Dokumentasie - %s - -Gebou Met - Python: http://www.python.org/ - Qt4: http://qt.nokia.com/ - PyQt4: http://www.riverbankcomputing.co.uk/software/pyqt/intro - Oxygen Ikone: http://oxygen-icons.org/ - -Finale Krediet - "Want so lief het God die wêreld gehad, - dat Hy sy eniggebore Seun gegee het, sodat - elkeen wat in Hom glo, nie verlore mag gaan - nie, maar die ewige lewe kan hê." -- Johannes 3:16 - - En laaste maar nie die minste nie. Finale - krediet gaan aan God ons Vader, wat Sy - Seun vir ons gestuur het om aan die kruis - te sterf en ons vry te maak van sonde. Ons - bring hierdie sagteware gratis voort omdat - Hy ons vry gemaak het. - - - - Copyright © 2004-2012 %s -Portions copyright © 2004-2012 %s - Kopiereg © 2004-2012 %s -Gedeeltelike kopiereg © 2004-2012 %s - - - - 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. - -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 volunteering by using the button below. - - - - - Volunteer 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 @@ -2373,82 +2328,82 @@ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for 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. @@ -2457,12 +2412,12 @@ This location will be used after OpenLP is closed. Hierdie ligging sal gebruik word nadat OpenLP toegemaak is. - + Overwrite Existing Data Oorskryf Bestaande Data - + OpenLP data directory was not found %s @@ -2472,19 +2427,29 @@ This data directory was previously changed from the OpenLP default location. If Click "No" to stop loading OpenLP. allowing you to fix the the problem. Click "Yes" to reset the data directory to the default location. - + OpenLP data gids was nie gevind nie + +%s + +Hierdie data gids was voorheen verander vanaf die OpenLP verstek ligging. As die nuwe op verwyderbare media was, moet daardie media weer beskikbaar gemaak word. + +Kliek "Nee" om die laai van OpenLP te staak, en jou toe te laat om die probleem op te los. Kliek "Ja" om die data gids na die verstek ligging te herstel. - + Are you sure you want to change the location of the OpenLP data directory to: %s The data directory will be changed when OpenLP is closed. - + Verander die ligging van die OpenLP data gids sekerlik na: + +%s + +Die data gids sal verander word wanneer OpenLP toe gemaak word. - + WARNING: The location you have selected @@ -2492,45 +2457,51 @@ The location you have selected %s appears to contain OpenLP data files. Do you wish to replace these files with the current data files? - + WAARSKUWING: + +Die ligging wat gekies is + +%s + +blyk of dit OpenLP data lêers bevat. Wil jy graag hierdie lêers vervang met die huidige data lêers? 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 @@ -2538,24 +2509,24 @@ appears to contain OpenLP data files. Do you wish to replace these files with t 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 @@ -2586,7 +2557,7 @@ Version: %s - + *OpenLP Bug Report* Version: %s @@ -2621,17 +2592,17 @@ Version: %s OpenLP.FileRenameForm - + File Rename Lêer Hernoem - + New File Name: Nuwe Lêer Naam: - + File Copy Lêer Kopieër @@ -2639,17 +2610,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: @@ -2657,192 +2628,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. @@ -2851,7 +2822,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. @@ -2863,37 +2834,37 @@ 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 HTML Begin HTML - + End HTML Eindig HTML @@ -2901,32 +2872,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. @@ -2934,82 +2905,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 @@ -3017,122 +2988,122 @@ 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 @@ -3142,12 +3113,12 @@ Om die Eerste Keer Gids heeltemal te kanselleer (en verhoed dat OpenLP begin), k Diens Item Skyfie Limiete - + Override display position: Oorheers vertoon ligging: - + Repeat track list Herhaal snit lys @@ -3175,12 +3146,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. @@ -3188,7 +3159,7 @@ Om die Eerste Keer Gids heeltemal te kanselleer (en verhoed dat OpenLP begin), k OpenLP.MainDisplay - + OpenLP Display OpenLP Vertooning @@ -3196,287 +3167,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/. @@ -3485,108 +3456,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. @@ -3595,43 +3566,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. @@ -3644,71 +3615,77 @@ 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 - + The file you selected does appear to be a valid OpenLP settings file. Section [%s] is not valid Processing has terminated and no changed have been made. - + Die lêer wat gekies is blyk nie 'n geldige OpenLP instellings lêer te wees nie. + +Seksie [%s] is ongeldig. + +Verwerking is getermineer en verandering was gemaak nie. - + Copying OpenLP data to new data directory location - %s - Please wait for copy to finish - + OpenLP data word na 'n nuwe data gids - %s - gekopiër. Wag asseblief totdat dit voltooi is. - + OpenLP Data directory copy failed %s - + Kopiëring van OpenLP Data gids het gevaal + +%s 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 @@ -3717,7 +3694,7 @@ Database: %s Databasis: %s - + OpenLP cannot load your database. Database: %s @@ -3729,62 +3706,62 @@ 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 - + Invalid File Type Ongeldige Lêer Tipe - + Invalid File %s. Suffix not supported Ongeldige Lêer %s. Agtervoegsel nie ondersteun nie @@ -3795,7 +3772,7 @@ Suffix not supported &Kloon - + Duplicate files were found on import and were ignored. Duplikaat lêers gevind tydens invoer en is geïgnoreer. @@ -3803,12 +3780,12 @@ Suffix not supported OpenLP.OpenLyricsImportError - + <lyrics> tag is missing. <lyrics> etiket is vermis. - + <verse> tag is missing. <verse> etiket is vermis. @@ -3816,42 +3793,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) @@ -3859,12 +3836,12 @@ Suffix not supported OpenLP.PrintServiceDialog - + Fit Page Pas Blaai - + Fit Width Pas Wydte @@ -3872,77 +3849,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: @@ -3950,12 +3927,12 @@ Suffix not supported OpenLP.ScreenList - + Screen Skerm - + primary primêr @@ -3963,12 +3940,12 @@ Suffix not supported OpenLP.ServiceItem - + <strong>Start</strong>: %s <strong>Begin</strong>: %s - + <strong>Length</strong>: %s <strong>Durasie</strong>: %s @@ -3976,7 +3953,7 @@ Suffix not supported OpenLP.ServiceItemEditForm - + Reorder Service Item Hergroepeer Diens Item @@ -3984,296 +3961,295 @@ 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. - - File missing from service + + Service File(s) Missing + + + + + The following file(s) in the service are missing: +%s - %s - -Continue saving? +These files will be removed if you continue to save. OpenLP.ServiceNoteForm - + Service Item Notes Diens Item Notas @@ -4281,7 +4257,7 @@ Continue saving? OpenLP.SettingsForm - + Configure OpenLP Konfigureer OpenLP @@ -4289,67 +4265,67 @@ Continue saving? 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 @@ -4357,172 +4333,172 @@ Continue saving? 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 @@ -4530,17 +4506,17 @@ Continue saving? OpenLP.SpellTextEdit - + Spelling Suggestions Spelling Voorstelle - + Formatting Tags Uitleg Hakkies - + Language: Taal: @@ -4548,67 +4524,67 @@ Continue saving? 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. @@ -4616,559 +4592,559 @@ Continue saving? 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. - + You are unable to delete the default theme. Die standaard tema kan nie uitgewis word nie. - + Theme %s is used in the %s plugin. 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? - + Validation Error Validerings Fout - + A theme with this name already exists. '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 - + Theme %s already exists. Do you want to replace it? - + Tema %s bestaan alreeds. Wil jy dit vervang? 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 - + 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 Skou en Stoor - + Preview the theme and save it. Skou die tema en stoor dit. - + (approximately %d lines per slide) - + (ongeveer %d lyne per skyfie) - + Background Image Empty - + Leë Agtergrond Beeld - + You have not selected a background image. Please select one before continuing. - + 'n Agtergrond beeld is nie gekies nie. Kies asseblief een voor jy aangaan. - + Select Image - + Selekteer Beeld - + Theme Name Missing - + Tema Naam Vermis - + There is no name for this theme. Please enter one. - + Daar is geen 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. 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 @@ -5176,315 +5152,315 @@ Continue saving? 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. @@ -5495,304 +5471,304 @@ Continue saving? 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. - + Importing Songs - + Voer Liedere In 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 @@ -5801,50 +5777,50 @@ Continue saving? 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. @@ -5852,52 +5828,52 @@ Continue saving? 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. @@ -5905,17 +5881,17 @@ Continue saving? 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 @@ -5923,24 +5899,24 @@ Continue saving? 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 @@ -5949,236 +5925,246 @@ Continue saving? 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 &amp; Go to Service Voeg by &amp; Gaan na Diens + + + Service + Diens + + + + Slides + Skyfies + 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://play.google.com/store/apps/details?id=org.openlp.android">download</a> to install the Android app from Google Play. - + Tas die QR kode af of kliek <a href="https://play.google.com/store/apps/details?id=org.openlp.android">aflaai</a> om die Android program vanaf Google Play te installeer. 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 @@ -6186,32 +6172,32 @@ Continue saving? 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. @@ -6219,42 +6205,42 @@ Continue saving? 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. @@ -6263,12 +6249,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. @@ -6276,112 +6262,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. @@ -6391,105 +6377,105 @@ 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. - + Reindexing songs - + Her-indekseer liedere 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? @@ -6497,7 +6483,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. @@ -6505,12 +6491,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] @@ -6522,12 +6508,12 @@ Die enkodering is verantwoordelik vir die korrekte karrakter voorstelling. SongsPlugin.EditBibleForm - + Meta Data Meta Data - + Custom Book Names Eie Boek Name @@ -6535,202 +6521,202 @@ 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. - + 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. @@ -6738,22 +6724,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. @@ -6761,82 +6747,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. @@ -6844,172 +6830,172 @@ 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 SundayPlus Lied Leêrs - + This importer has been disabled. Hierdie invoerder is onaktief gestel. - + MediaShout Database MediaShout Databasis - + The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. Die MediaShout invoerder word slegs ondersteun op Windows. Dit is vanweë 'n vermiste Python module, gedeaktiveer. As jy hierdie invoerder wil gebruik, sal jy die "pyodbc" module moet installeer. - + SongPro Text Files SongPro Teks Leêrs - + SongPro (Export File) SongPro (Voer Leêr uit) - + In SongPro, export your songs using the File -> Export menu In SongPro, voer liedere uit deur middel van die Leêr -> Uitvoer spyskaart @@ -7017,12 +7003,12 @@ Die enkodering is verantwoordelik vir die korrekte karrakter voorstelling. 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. @@ -7040,7 +7026,7 @@ Die enkodering is verantwoordelik vir die korrekte karrakter voorstelling.Lirieke - + CCLI License: CCLI Lisensie: @@ -7050,7 +7036,7 @@ Die enkodering is verantwoordelik vir die korrekte karrakter voorstelling.Volledige Lied - + Are you sure you want to delete the %n selected song(s)? Wis regtig die %n geselekteerde lied uit? @@ -7063,7 +7049,7 @@ Die enkodering is verantwoordelik vir die korrekte karrakter voorstelling.Onderhou die lys van skrywers, onderwerpe en boeke. - + copy For song cloning kopieër @@ -7097,7 +7083,7 @@ Die enkodering is verantwoordelik vir die korrekte karrakter voorstelling. SongsPlugin.MediaShoutImport - + Unable to open the MediaShout database. Die MediaShout databasis kan nie oopgemaak word nie. @@ -7105,7 +7091,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. @@ -7113,7 +7099,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. @@ -7121,7 +7107,7 @@ Die enkodering is verantwoordelik vir die korrekte karrakter voorstelling. SongsPlugin.OpenLyricsExport - + Exporting "%s"... Uitvoer "%s"... @@ -7129,55 +7115,55 @@ 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. - + No %s files found. - + Geen %s lêers gevind nie. - + Invalid %s file. Unexpected byte value. - + Ongeldige %s lêer. Onverwagse greep waarde. - + Invalid %s file. Missing "TITLE" header. - + Ongeldige %s lêer. Vermis "TITLE" hofie. - + Invalid %s file. Missing "COPYRIGHTLINE" header. - + Ongeldige %s lêer. Vermis "COPYRIGHTLINE" hofie. 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. @@ -7185,12 +7171,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. @@ -7198,27 +7184,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 @@ -7226,107 +7212,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? @@ -7334,27 +7320,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 @@ -7362,17 +7348,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. @@ -7380,37 +7366,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 @@ -7418,29 +7404,29 @@ 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. - + Line %d: %s - + Lyn %d: %s - + Decoding error: %s - + Dekodering fout: %s - + Record %d - + Opname %d diff --git a/resources/i18n/bg.ts b/resources/i18n/bg.ts new file mode 100644 index 000000000..d42e87eab --- /dev/null +++ b/resources/i18n/bg.ts @@ -0,0 +1,7321 @@ + + + + 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 />Добавката за сигнали контролира показването на обслужващи сигнали на екрана. + + + + 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? + Сигналът не съдържа '<>'.⏎ Искате ли да продължите все пак? + + + + AlertsPlugin.AlertsManager + + + Alert message created and displayed. + Сигналното съобщение е създадено и показано. + + + + AlertsPlugin.AlertsTab + + + Font + Шрифт + + + + Font name: + Име на шрифта: + + + + Font color: + Цвят на шрифта: + + + + Background color: + Цвят на фона: + + + + Font size: + Размер на шрифта: + + + + Alert timeout: + Срок на сигнала + + + + 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 + + + + + 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. + + + + + 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. + Има нужда да зададете "авторското право" за вашата библия. Библиите които са публични има нужда да се отбележат като такива. + + + + 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". + + + + + 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. + + + + + BiblesPlugin.BibleManager + + + Scripture Reference Error + Грешна препратка + + + + Web Bible cannot be used + Библията от Мрежата не може да бъде използвана + + + + 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. + Не сте въвели дума за търсене. +За търсене на всички от няколко кодови думи, може да ги раделите с интервал, а за търсене на всяка една поотделно - може да ги разделите с запетая. + + + + 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 +Book Chapter%(range)sChapter +Book Chapter%(verse)sVerse%(range)sVerse +Book Chapter%(verse)sVerse%(range)sVerse%(list)sVerse%(range)sVerse +Book Chapter%(verse)sVerse%(range)sVerse%(list)sChapter%(verse)sVerse%(range)sVerse +Book Chapter%(verse)sVerse%(range)sChapter%(verse)sVerse + Please pay attention to the appended "s" of the wildcards and refrain from translating the words inside the names in the brackets. + + + + + 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. + + + + + 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 + + + + + Default Bible Language + + + + + Book name language in search field, +search results and on display: + + + + + Bible Language + + + + + Application Language + + + + + 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. + + + + + BiblesPlugin.BookNameForm + + + You need to select a book. + Трябва да избереш книга. + + + + BiblesPlugin.CSVBible + + + Importing books... %s + Импортиране на книги... %s + + + + Importing verses from %s... + Importing verses from <book name>... + Импортиране на стихове от %s... + + + + Importing verses... done. + Импортиране на стихове... готво. + + + + 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. + + + + + 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. + + + + + BiblesPlugin.HTTPBible + + + Registering Bible and loading books... + Регистриране на превода и зареждане на книгите... + + + + Registering Language... + Регистриране на Език... + + + + Importing %s... + Importing <book name>... + Импортиране %s... + + + + Download Error + Грешка при сваляне + + + + There was a problem downloading your verse selection. Please check your Internet connection, and if this error continues to occur please consider reporting a bug. + Имаше проблем при свалянето на избраните стихове. Моля проверете си връзката към Интернет, и в случай, че грешката продължи да се получава, моля обмислете възможността да съобщите за грешка в програмата. + + + + Parse Error + Грешка при синтактичния разбор. + + + + There was a problem extracting your verse selection. If this error continues to occur please consider reporting a bug. + Имаше проблем при извличането на избрания от вас стихове. В случай, че грешката продължи да се получава, моля обмислете възможността да съобщите за грешка в програмата. + + + + 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 + Сваляне от Мрежата + + + + Location: + Място: + + + + Crosswalk + Crosswalk + + + + BibleGateway + BibleGateway + + + + Bible: + Библейски превод: + + + + Download Options + Опции за сваляне + + + + Server: + Сървър: + + + + Username: + Потребителско име: + + + + Password: + Парола: + + + + Proxy Server (Optional) + Прокси сървър (Optional) + + + + 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 + Bibleserver + + + + Permissions: + Разрешения: + + + + Bible file: + Файл с Библия + + + + Books file: + Файл с книги: + + + + Verses file: + Файл със стихове: + + + + openlp.org 1.x Bible Files + Файлове на Библията за версия 1.х на openlp.org + + + + Registering Bible... + Регистриране на Библията + + + + Registered Bible. Please note, that verses will be downloaded on +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: + Език: + + + + BiblesPlugin.LanguageForm + + + You need to choose a language. + Има нужда да изберете езика. + + + + 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 completely delete "%s" Bible from OpenLP? + +You will need to re-import this Bible to use it again. + + + + + BiblesPlugin.OpenSongImport + + + Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. + + + + + BiblesPlugin.Opensong + + + Importing %s %s... + Importing <book name> <chapter>... + Импортиране %s %s... + + + + BiblesPlugin.OsisImport + + + Detecting encoding (this may take a few minutes)... + Засичане на кодиране(може да отнеме няколко минути)... + + + + Importing %s %s... + Importing <book name> <chapter>... + Импортиране %s %s... + + + + 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 ако трябва да се върнете към предишна версия на програмата. Инструкции как да възтановите файловете можете да намерите в нашите <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 of %s: "%s"⏎ Провалено + + + + Upgrading Bible %s of %s: "%s" +Upgrading ... + Актуализиране на Библията %s of %s: "%s"⏎ Актуализиране ... + + + + Download Error + Грешка при сваляне + + + + To upgrade your Web Bibles an Internet connection is required. + За да обновите Библиите ползвани през Мрежата се изисква връзка към Интернет. + + + + Upgrading Bible %s of %s: "%s" +Upgrading %s ... + Актуализиране на Библията %s of %s: "%s"⏎ Актуализиране %s ... + + + + Upgrading Bible %s of %s: "%s" +Complete + Актуализиране на Библията %s of %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 +Моля, имайте в предвид че стиховете от Библиите ползвани директно от мрежата се свалят при ползването им и има нужда от връзка към Интернет. + + + + 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. + Няма Библии които да е необходимо да се надградят. + + + + 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. + Добави избрания потребителски слайд към службата + + + + CustomPlugin.CustomTab + + + Custom Display + Потребителски екран + + + + Display footer + Бележка под линия на екрана + + + + 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 + Вмъкни слайд + + + + CustomPlugin.EditVerseForm + + + Edit Slide + + + + + CustomPlugin.MediaItem + + + Are you sure you want to delete the %n selected custom slide(s)? + + + + + + + + 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 /> Една от отличителните черти на тази надбавка е възможността да групирате няколко изображения заедно в мениджъра за службата, като прави показването на няколко изображения по-лесно. Тази надбавка може да се ползва OpenLP функцията "времева нишка" за създаване на слайдшоу, което върви автоматично. В допълнение към това, надбавката за картини може да се използва за заобикаляне на фона на текущата тема, което прави текстово-базирани продукти като песни с избраното изображение като фон, вместо на фона от темата. + + + + 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. + Добавете избраната картина към службата. + + + + ImagePlugin.ExceptionDialog + + + Select Attachment + Изберете прикачен файл + + + + 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 ⏎ Искате ли да добавите другите картини все пак? + + + + There was a problem replacing your background, the image file "%s" no longer exists. + Имаше проблем при заместването на фона, файла с изображението "%s" вече не съществува. + + + + There was no display item to amend. + Няма какво да се коригира. + + + + ImagesPlugin.ImageTab + + + Background Color + Цвят на фона + + + + Default Color: + Основен цвят + + + + Visible background for images with aspect ratio different to screen. + + + + + 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. + Добави избраната медия към службата. + + + + 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: + Използвай Плейър. + + + + MediaPlugin.MediaTab + + + Available Media Players + Налични медийни програми. + + + + %s (unavailable) + %s (не е наличен) + + + + Player Order + Ред на просвирване. + + + + Allow media player to be overridden + + + + + OpenLP + + + Image Files + Файлове с изображения + + + + Information + Информация + + + + Bible format has changed. +You have to upgrade your existing Bibles. +Should OpenLP upgrade now? + Формата на Библията се промени. +Трябва да надградите съществуващите Библии. +Да ги надгради ли OpenLP сега? + + + + OpenLP.AboutForm + + + Credits + Заслужили + + + + License + Лиценз + + + + 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. + Тази програма е свободно приложение, можете да да я разпространявате и/или да внасяте промени в нея спазвайки условията на ГНУ Общ Публичен Лиценз, както е публикуван от Фондация Свободен Софтуер; версия 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. + Тази програма се разпространява с надеждата, че ще бъде полезна, но за това не се дава никаква гаранция; без дори косвена гаранция като ПРОДУКТ ГОДЕН ЗА ПРОДАЖБА или ВЪВ ВЪЗМОЖНОСТ ДА СЛУЖИ ЗА ОПРЕДЕЛЕНА ЦЕЛ. За повече информация, погледнете по-долу. + + + + Copyright © 2004-2012 %s +Portions copyright © 2004-2012 %s + + + + + 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. + +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 volunteering by using the button below. + + + + + Volunteer + + + + + Project Lead + %s + +Developers + %s + +Contributors + %s + +Testers + %s + +Packagers + %s + +Translators + Afrikaans (af) + %s + Czeck (cs) + %s + Danish (da) + %s + German (de) + %s + Greek (el) + %s + English, United Kingdom (en_GB) + %s + English, South Africa (en_ZA) + %s + Spanish (es) + %s + Estonian (et) + %s + French (fr) + %s + Hungarian (hu) + %s + Japanese (ja) + %s + Norwegian Bokmål (nb) + %s + Dutch (nl) + %s + Portuguese, Brazil (pt_BR) + %s + Russian (ru) + %s + Swedish (sv) + %s + +Documentation + %s + +Built With + Python: http://www.python.org/ + Qt4: http://qt.digia.com/ + PyQt4: http://www.riverbankcomputing.co.uk/software/pyqt/intro + Oxygen Icons: http://oxygen-icons.org/ + +Final Credit + "For God so loved the world that He gave + His one and only Son, so that whoever + believes in Him will not perish but inherit + eternal life." -- John 3:16 + + And last but not least, final credit goes to + God our Father, for sending His Son to die + on the cross, setting us free from sin. We + bring this software to you for free because + He has set us free. + + + + + 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. + + + + + 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 + + + + + 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 + + + + + OpenLP data directory was not found + +%s + +This data directory was previously changed from the OpenLP default location. If the new location was on removable media, that media needs to be made available. + +Click "No" to stop loading OpenLP. allowing you to fix the the problem. + +Click "Yes" to reset the data directory to the default location. + + + + + Are you sure you want to change the location of the OpenLP data directory to: + +%s + +The data directory will be changed when OpenLP is closed. + + + + + WARNING: + +The location you have selected + +%s + +appears to contain OpenLP data files. Do you wish to replace these files with the current data files? + + + + + 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 се натъкна на проблем, и не можа да се оправи с него. Текста по-долу съдържа информация която може да се окаже полезна за разработчиците, така че моля изпратете тази информация на електронен адрес bugs@openlp.org, заедно със подробно описание на това което сте правили когато проблема се е случил. + + + + Send 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 + + + + + OpenLP.ExceptionForm + + + Platform: %s + + + + + + Save Crash Report + + + + + Text files (*.txt *.log *.text) + + + + + **OpenLP Bug Report** +Version: %s + +--- Details of the Exception. --- + +%s + + --- Exception Traceback --- +%s +--- System information --- +%s +--- Library Versions --- +%s + + + + + + *OpenLP Bug Report* +Version: %s + +--- Details of the Exception. --- + +%s + + --- Exception Traceback --- +%s +--- System information --- +%s +--- Library Versions --- +%s + + Please add the information that bug reports are favoured written in English. + + + + + OpenLP.FileRenameForm + + + File Rename + + + + + New File Name: + + + + + File Copy + + + + + OpenLP.FirstTimeLanguageForm + + + Select Translation + + + + + Choose the translation you'd like to use in OpenLP. + + + + + Translation: + + + + + 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... + + + + + Download complete. Click the finish button to start 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. + + + + + 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. + + + + + Setting Up And Downloading + + + + + Please wait while OpenLP is set up and your data is downloaded. + + + + + Setting Up + + + + + Click the finish button to start OpenLP. + + + + + Download complete. Click the finish button to return to OpenLP. + + + + + Click the finish button to return to 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. + + + + + + +To cancel the First Time Wizard completely (and not start OpenLP), click the Cancel button now. + + + + + OpenLP.FormattingTagDialog + + + Configure Formatting Tags + + + + + Edit Selection + + + + + Save + + + + + Description + + + + + Tag + + + + + Start HTML + + + + + End HTML + + + + + OpenLP.FormattingTagForm + + + Update Error + + + + + Tag "n" already defined. + + + + + New Tag + + + + + <HTML here> + + + + + </and here> + + + + + Tag %s already defined. + + + + + OpenLP.FormattingTags + + + Red + + + + + Black + + + + + Blue + + + + + Yellow + + + + + Green + + + + + Pink + + + + + Orange + + + + + Purple + + + + + White + + + + + Superscript + + + + + Subscript + + + + + Paragraph + + + + + Bold + + + + + Italics + + + + + Underline + + + + + Break + + + + + 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 + + + + + SongSelect username: + + + + + SongSelect password: + + + + + X + + + + + Y + + + + + Height + + + + + Width + + + + + Check for updates to 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 + + + + + OpenLP.LanguageManager + + + Language + + + + + Please restart OpenLP to use your new language setting. + + + + + OpenLP.MainDisplay + + + OpenLP Display + + + + + 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 + + + + + &Theme + + + + + &Configure 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 + + + + + &Online Help + + + + + &Web Site + + + + + Use the system language, if available. + + + + + Set the interface language to %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/. + + + + + OpenLP Version Updated + + + + + OpenLP Main Display Blanked + + + + + The Main Display has been blanked out + + + + + Default Theme: %s + + + + + English + Please add the name of your language here + + + + + Configure &Shortcuts... + + + + + Close OpenLP + + + + + Are you sure you want to close 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. + + + + + Clear List + Clear List of recent files + + + + + Clear the list of recent files. + + + + + Configure &Formatting Tags... + + + + + Export OpenLP settings to a specified *.config file + + + + + Settings + + + + + Import OpenLP settings from a specified *.config file previously exported on this or another machine + + + + + Import settings? + + + + + Are you sure you want to import settings? + +Importing settings will make permanent changes to your current OpenLP configuration. + +Importing incorrect settings may cause erratic behaviour or OpenLP to terminate abnormally. + + + + + Open File + Отвори файл + + + + OpenLP Export Settings Files (*.conf) + + + + + Import settings + + + + + 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 + + + + + The file you selected does appear to be a valid OpenLP settings file. + +Section [%s] is not valid + +Processing has terminated and no changed have been made. + + + + + Copying OpenLP data to new data directory location - %s - Please wait for copy to finish + + + + + OpenLP Data directory copy failed + +%s + + + + + 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 + + + + + OpenLP cannot load your database. + +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. + + + + + You must select one or more items to add. + + + + + No Search Results + + + + + Invalid File Type + + + + + Invalid File %s. +Suffix not supported + + + + + &Clone + + + + + Duplicate files were found on import and were ignored. + + + + + OpenLP.OpenLyricsImportError + + + <lyrics> tag is missing. + + + + + <verse> tag is missing. + + + + + OpenLP.PluginForm + + + Plugin List + + + + + Plugin Details + + + + + Status: + + + + + Active + + + + + Inactive + + + + + %s (Inactive) + + + + + %s (Active) + + + + + %s (Disabled) + + + + + OpenLP.PrintServiceDialog + + + Fit Page + + + + + Fit Width + + + + + OpenLP.PrintServiceForm + + + Options + + + + + Copy + + + + + Copy as 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: + + + + + OpenLP.ScreenList + + + Screen + + + + + primary + + + + + OpenLP.ServiceItem + + + <strong>Start</strong>: %s + + + + + <strong>Length</strong>: %s + + + + + OpenLP.ServiceItemEditForm + + + Reorder Service Item + + + + + OpenLP.ServiceManager + + + Move to &top + + + + + Move item to the top of the service. + + + + + Move &up + + + + + Move item up one position in the service. + + + + + Move &down + + + + + Move item down one position in the service. + + + + + Move to &bottom + + + + + Move item to the end of the service. + + + + + &Delete From Service + + + + + Delete the selected item from the service. + + + + + &Add New Item + + + + + &Add to Selected Item + + + + + &Edit Item + + + + + &Reorder Item + + + + + &Notes + + + + + &Change Item Theme + + + + + OpenLP Service Files (*.osz) + + + + + File is not a valid service. +The content encoding is not UTF-8. + + + + + File is not a valid service. + + + + + Missing Display Handler + + + + + Your item cannot be displayed as there is no handler to display it + + + + + Your item cannot be displayed as the plugin required to display it is missing or inactive + + + + + &Expand all + + + + + Expand all the service items. + + + + + &Collapse all + + + + + Collapse all the service items. + + + + + Open File + Отвори файл + + + + Moves the selection down the window. + + + + + Move up + + + + + Moves the selection up the window. + + + + + Go Live + + + + + Send the selected item to Live. + + + + + &Start Time + + + + + Show &Preview + + + + + 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. + + + + + Slide theme + + + + + Notes + + + + + Edit + + + + + Service copy only + + + + + Error Saving File + + + + + There was an error saving your file. + + + + + Service File(s) Missing + + + + + The following file(s) in the service are missing: +%s + +These files will be removed if you continue to save. + + + + + OpenLP.ServiceNoteForm + + + Service Item Notes + + + + + OpenLP.SettingsForm + + + Configure OpenLP + + + + + OpenLP.ShortcutListDialog + + + Action + + + + + Shortcut + + + + + Duplicate Shortcut + + + + + The shortcut "%s" is already assigned to another action, please use a different shortcut. + + + + + 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 + + + + + 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. + + + + + 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 + + + + + OpenLP.SpellTextEdit + + + Spelling Suggestions + + + + + Formatting Tags + + + + + Language: + Език: + + + + 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. + + + + + 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) + + + + + You must select a theme to edit. + + + + + You are unable to delete the default theme. + + + + + Theme %s is used in the %s plugin. + + + + + You have not selected a theme. + + + + + Save Theme - (%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? + + + + + You must select a theme to delete. + + + + + Delete Confirmation + + + + + Delete %s theme? + + + + + Validation Error + + + + + A theme with this name already exists. + + + + + OpenLP Themes (*.theme *.otz) + + + + + Copy of %s + Copy of <theme name> + + + + + Theme Already Exists + + + + + Theme %s already exists. Do you want to replace it? + + + + + OpenLP.ThemeWizard + + + Theme Wizard + + + + + Welcome to the Theme Wizard + + + + + Set Up Background + + + + + Set up your theme's background according to the parameters below. + + + + + Background type: + + + + + Solid Color + + + + + Gradient + + + + + Color: + + + + + Gradient: + + + + + Horizontal + + + + + Vertical + + + + + Circular + + + + + Top Left - Bottom Right + + + + + Bottom Left - Top Right + + + + + Main Area Font Details + + + + + Define the font and display characteristics for the Display text + + + + + Font: + + + + + Size: + + + + + Line Spacing: + + + + + &Outline: + + + + + &Shadow: + + + + + Bold + + + + + Italic + + + + + Footer Area Font Details + + + + + Define the font and display characteristics for the Footer text + + + + + Text Formatting Details + + + + + Allows additional display formatting information to be defined + + + + + Horizontal Align: + + + + + Left + + + + + Right + + + + + Center + + + + + Output Area Locations + + + + + Allows you to change and move the main and footer areas. + + + + + &Main Area + + + + + &Use default location + + + + + X position: + + + + + px + + + + + Y position: + + + + + Width: + + + + + Height: + + + + + Use default location + + + + + Theme name: + + + + + Edit Theme - %s + + + + + This wizard will help you to create and edit your themes. Click the next button below to start the process by setting up your background. + + + + + Transitions: + + + + + &Footer Area + + + + + Starting color: + + + + + Ending color: + + + + + Background color: + + + + + Justify + + + + + Layout Preview + + + + + Transparent + + + + + Preview and Save + + + + + Preview the theme and save it. + + + + + (approximately %d lines per slide) + + + + + Background Image Empty + + + + + You have not selected a background image. Please select one before continuing. + + + + + Select Image + + + + + Theme Name Missing + + + + + There is no name for this theme. Please enter one. + + + + + Theme Name Invalid + + + + + Invalid theme name. Please enter one. + + + + + 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 + + + + + OpenLP.Ui + + + Error + + + + + About + + + + + &Add + + + + + Advanced + Допълнителни + + + + All Files + + + + + Bottom + + + + + Browse... + + + + + Cancel + + + + + CCLI number: + + + + + Create a new service. + + + + + &Delete + + + + + &Edit + + + + + Empty Field + + + + + Export + + + + + pt + Abbreviated font pointsize unit + + + + + 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 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 + + + + + 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"... + + + + + 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. + + + + + Open %s File + + + + + %p% + + + + + Ready. + + + + + Starting 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 + + + + + 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? + + + + + Settings + + + + + Tools + + + + + Unsupported File + Неподдържан се файл. + + + + Verse Per Slide + + + + + Verse Per Line + + + + + View + + + + + Title and/or verses not found + + + + + XML syntax error + + + + + 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 + + + + + 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 + + + + + Importing Songs + + + + + 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 + + + + + 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 + + + + + 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. + + + + + PresentationPlugin.MediaItem + + + Select Presentation(s) + + + + + Automatic + Автоматично + + + + Present using: + + + + + File Exists + + + + + A presentation with that filename already exists. + + + + + This type of presentation is not supported. + + + + + Presentations (%s) + + + + + Missing Presentation + + + + + The presentation %s is incomplete, please reload. + + + + + The presentation %s no longer exists. + + + + + PresentationPlugin.PresentationTab + + + Available Controllers + + + + + %s (unavailable) + %s (не е наличен) + + + + Allow presentation application to be overridden + + + + + 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 + + + + + Remotes + name plural + + + + + Remote + container title + + + + + RemotePlugin.Mobile + + + OpenLP 2.0 Remote + + + + + OpenLP 2.0 Stage View + + + + + 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 &amp; Go to Service + + + + + Service + + + + + Slides + + + + + RemotePlugin.RemoteTab + + + Serve on IP address: + + + + + Port number: + + + + + Server Settings + + + + + Remote URL: + + + + + Stage view URL: + + + + + Display stage time in 12h format + + + + + Android App + + + + + Scan the QR code or click <a href="https://play.google.com/store/apps/details?id=org.openlp.android">download</a> to install the Android app from Google Play. + + + + + 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. + + + + + SongUsage + name singular + + + + + SongUsage + name plural + + + + + SongUsage + container title + + + + + Song Usage + + + + + Song usage tracking is active. + + + + + Song usage tracking is inactive. + + + + + display + + + + + printed + + + + + 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. + + + + + SongUsagePlugin.SongUsageDetailForm + + + Song Usage Extraction + + + + + Select Date Range + + + + + to + + + + + Report Location + + + + + Output File Location + + + + + usage_detail_%s_%s.txt + + + + + Report Creation + + + + + Report +%s +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. + + + + + SongsPlugin + + + &Song + + + + + Import songs using the import wizard. + + + + + <strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs. + + + + + &Re-index Songs + + + + + Re-index the songs database to improve searching and ordering. + + + + + Reindexing songs... + + + + + Arabic (CP-1256) + + + + + Baltic (CP-1257) + + + + + Central European (CP-1250) + + + + + Cyrillic (CP-1251) + + + + + Greek (CP-1253) + + + + + Hebrew (CP-1255) + + + + + Japanese (CP-932) + + + + + Korean (CP-949) + + + + + Simplified Chinese (CP-936) + + + + + Thai (CP-874) + + + + + Traditional Chinese (CP-950) + + + + + Turkish (CP-1254) + + + + + Vietnam (CP-1258) + + + + + Western European (CP-1252) + + + + + Character Encoding + + + + + 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 + + + + + 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. + + + + + Reindexing songs + + + + + 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? + + + + + SongsPlugin.CCLIFileImport + + + The file does not have a valid extension. + + + + + SongsPlugin.EasyWorshipSongImport + + + Administered by %s + + + + + +[above are Song Tags with notes imported from + EasyWorship] + + + + + SongsPlugin.EditBibleForm + + + Meta Data + + + + + Custom Book Names + + + + + 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. + + + + + Add Book + + + + + This song book does not exist, do you want to add it? + + + + + You need to have an author for this song. + + + + + Linked Audio + + + + + Add &File(s) + + + + + Add &Media + + + + + Remove &All + + + + + Open File(s) + + + + + <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. + + + + + SongsPlugin.EditVerseForm + + + Edit Verse + + + + + &Verse type: + + + + + &Insert + + + + + Split a slide into two by inserting a verse splitter. + + + + + 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. + + + + + 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.org v1.x Databases + + + + + Words Of Worship Song Files + + + + + Songs Of Fellowship Song Files + + + + + SongBeamer Files + + + + + SongShow Plus Song Files + + + + + Foilpresenter Song Files + + + + + Copy + + + + + Save to File + Запази във файл + + + + The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. + + + + + The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. + + + + + OpenLyrics or OpenLP 2.0 Exported Song + + + + + OpenLyrics Files + + + + + 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 + + + + + This importer has been disabled. + + + + + MediaShout Database + + + + + The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. + + + + + SongPro Text Files + + + + + SongPro (Export File) + + + + + In SongPro, export your songs using the File -> Export menu + + + + + 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. + + + + + SongsPlugin.MediaItem + + + Titles + + + + + Lyrics + + + + + CCLI License: + + + + + Entire Song + + + + + Are you sure you want to delete the %n selected song(s)? + + + + + + + + Maintain the lists of authors, topics and books. + + + + + copy + For song cloning + + + + + Search Titles... + + + + + Search Entire Song... + + + + + Search Lyrics... + + + + + Search Authors... + + + + + Search Song Books... + + + + + SongsPlugin.MediaShoutImport + + + Unable to open the MediaShout database. + + + + + SongsPlugin.OpenLP1SongImport + + + Not a valid openlp.org 1.x song database. + + + + + SongsPlugin.OpenLPSongImport + + + Not a valid OpenLP 2.0 song database. + + + + + SongsPlugin.OpenLyricsExport + + + Exporting "%s"... + + + + + SongsPlugin.PowerSongImport + + + No songs to import. + + + + + Verses not found. Missing "PART" header. + + + + + No %s files found. + + + + + Invalid %s file. Unexpected byte value. + + + + + Invalid %s file. Missing "TITLE" header. + + + + + Invalid %s file. Missing "COPYRIGHTLINE" header. + + + + + SongsPlugin.SongBookForm + + + Song Book Maintenance + + + + + &Name: + + + + + &Publisher: + + + + + You need to type in a name for the book. + + + + + SongsPlugin.SongExportForm + + + Your song export failed. + + + + + Finished export. To import these files use the <strong>OpenLyrics</strong> importer. + + + + + SongsPlugin.SongImport + + + copyright + + + + + The following songs could not be imported: + + + + + Cannot access OpenOffice or LibreOffice + + + + + Unable to open file + + + + + File not found + + + + + 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? + + + + + 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? + + + + + 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 + + + + + SongsPlugin.TopicsForm + + + Topic Maintenance + + + + + Topic name: + + + + + You need to type in a topic name. + + + + + SongsPlugin.VerseType + + + Verse + + + + + Chorus + + + + + Bridge + + + + + Pre-Chorus + + + + + Intro + + + + + Ending + + + + + Other + + + + + SongsPlugin.ZionWorxImport + + + Error reading CSV file. + + + + + File not valid ZionWorx CSV format. + + + + + Line %d: %s + + + + + Decoding error: %s + + + + + Record %d + + + + diff --git a/resources/i18n/cs.ts b/resources/i18n/cs.ts index 6b610d111..90609a29d 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 '<>'. @@ -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. @@ -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 completely delete "%s" Bible from OpenLP? You will need to re-import this Bible to use it again. @@ -1375,7 +1375,7 @@ Pro použití bude potřeba naimportovat Bibli znovu. BiblesPlugin.OpenSongImport - + Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. Zadán nesprávný typ souboru s Biblí. OpenSong Bible mohou být komprimovány. Před importem je třeba je rozbalit. @@ -1383,7 +1383,7 @@ Pro použití bude potřeba naimportovat Bibli znovu. BiblesPlugin.Opensong - + Importing %s %s... Importing <book name> <chapter>... Importuji %s %s... @@ -1392,12 +1392,12 @@ Pro použití bude potřeba naimportovat Bibli znovu. 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... @@ -1406,148 +1406,148 @@ Pro použití bude potřeba naimportovat Bibli znovu. 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. @@ -1555,65 +1555,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ě. @@ -1621,12 +1621,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í @@ -1634,62 +1634,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 @@ -1697,7 +1697,7 @@ Upozornění: Verše z www Bible budou stáhnuty na vyžádání a proto je vyž CustomPlugin.EditVerseForm - + Edit Slide Upravit snímek @@ -1705,7 +1705,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? @@ -1717,60 +1717,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ě. @@ -1778,7 +1778,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 @@ -1786,44 +1786,44 @@ 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í: % Chcete přidat ostatní obrázky? - + There was a problem replacing your background, the image file "%s" no longer exists. Problém s nahrazením pozadí. Obrázek "%s" už neexistuje. - + There was no display item to amend. Žádná položka k zobrazení nebyla pozměněna. @@ -1831,17 +1831,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. @@ -1849,60 +1849,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ě. @@ -1910,57 +1910,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č: @@ -1968,22 +1968,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í @@ -1991,17 +1991,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? @@ -2013,32 +2013,61 @@ Má se aktualizace provét teď? OpenLP.AboutForm - + Credits Zásluhy - + License Licence - + 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. - + + Copyright © 2004-2012 %s +Portions copyright © 2004-2012 %s + Autorská práva © 2004-2012 %s +Částečná autorská práva © 2004-2012 %s + + + + 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. + +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 volunteering by using the button below. + OpenLP <version><revision> - Open Source prezentace textů písní + +OpenLP je volně dostupný křesťanský software nebo také software pro prezentaci textů písní. Při křesťanských bohoslužbách slouží k zobrazení písní, veršů z Bible, videí, obrázků a dokonce prezentací (pokud Impress, PowerPoint nebo PowerPoint Viewer je instalován). K používání je nutný počítač a dataprojektor. + +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 jestli se také nezapojit do vytváření OpenLP. Můžete tak učinit tlačítkem níže. + + + + Volunteer + Dobrovolník + + + Project Lead %s @@ -2057,12 +2086,20 @@ Packagers Translators Afrikaans (af) %s + Czeck (cs) + %s + Danish (da) + %s German (de) %s + Greek (el) + %s English, United Kingdom (en_GB) %s English, South Africa (en_ZA) %s + Spanish (es) + %s Estonian (et) %s French (fr) @@ -2079,13 +2116,15 @@ Translators %s Russian (ru) %s + Swedish (sv) + %s Documentation %s Built With Python: http://www.python.org/ - Qt4: http://qt.nokia.com/ + Qt4: http://qt.digia.com/ PyQt4: http://www.riverbankcomputing.co.uk/software/pyqt/intro Oxygen Icons: http://oxygen-icons.org/ @@ -2100,268 +2139,185 @@ Final Credit on the cross, setting us free from sin. We bring this software to you for free because He has set us free. - Vedení projektu - %s - -Vývojáři - %s - -Přispěvatelé - %s - -Testeři - %s - -Balíčkovači - %s - -Překladatelé - Afrikaans (af) - %s - German (de) - %s - English, United Kingdom (en_GB) - %s - English, South Africa (en_ZA) - %s - Estonian (et) - %s - French (fr) - %s - Hungarian (hu) - %s - Japanese (ja) - %s - Norwegian Bokmål (nb) - %s - Dutch (nl) - %s - Portuguese, Brazil (pt_BR) - %s - Russian (ru) - %s - -Dokumentace - %s - -Vytvořeno za použití - Python: http://www.python.org/ - Qt4: http://qt.nokia.com/ - PyQt4: http://www.riverbankcomputing.co.uk/software/pyqt/intro - Oxygen Icons: http://oxygen-icons.org/ - -Finální zásluhy - "Neboť Bůh tak miloval svět, že dal - svého jednorozeného Syna, aby žádný, - kdo v něj věří, nezahynul, ale měl věčný - život." -- Jan 3:16 - - V neposlední řadě, konečné zásluhy patří - Bohu, našemu Otci, že poslal Svého Syna - zemřít na kříži, osvobodit nás od hříchu. - Přinášíme tuto aplikaci zdarma, protože - On nás učinil svobodnými. - - - - Copyright © 2004-2012 %s -Portions copyright © 2004-2012 %s - Autorská práva © 2004-2012 %s -Částečná autorská práva © 2004-2012 %s - - - - 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. - -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 volunteering by using the button below. - - - - - Volunteer 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 @@ -2371,82 +2327,82 @@ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for 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. @@ -2455,12 +2411,12 @@ 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 - + OpenLP data directory was not found %s @@ -2470,19 +2426,31 @@ This data directory was previously changed from the OpenLP default location. If Click "No" to stop loading OpenLP. allowing you to fix the the problem. Click "Yes" to reset the data directory to the default location. - + Datová složka OpenLP nebyla nalezena + +%s + +Výchozí umístění OpenLP bylo dříve změněno na tuto složku. Pokud nové umístění bylo na výměnném zařízení, je nutno dané zařízení nejdříve připojit. + +Klepněte na "Ne", aby se přerušilo načítání OpenLP. To umožní opravit daný problém. + +Klepněte na "Ano", aby se datová složka nastavila na výchozí umístění. - + Are you sure you want to change the location of the OpenLP data directory to: %s The data directory will be changed when OpenLP is closed. - + Jste si jisti, že chcede změnit umístění datové složky OpenLP na: + +%s + +Toto umístění se použije po zavření aplikace OpenLP. - + WARNING: The location you have selected @@ -2490,45 +2458,51 @@ The location you have selected %s appears to contain OpenLP data files. Do you wish to replace these files with the current data files? - + VAROVÁNÍ: + +Vypadá to, že vybrané umístění + +%s + +už datové soubory OpenLP. Přejete si nahradit tyto soubory současnými datovými soubory? 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 @@ -2536,24 +2510,24 @@ appears to contain OpenLP data files. Do you wish to replace these files with t 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 @@ -2584,7 +2558,7 @@ Version: %s - + *OpenLP Bug Report* Version: %s @@ -2619,17 +2593,17 @@ Version: %s OpenLP.FileRenameForm - + File Rename Přejmenovat soubor - + New File Name: Nový název souboru: - + File Copy Kopírovat soubor @@ -2637,17 +2611,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: @@ -2655,199 +2629,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. @@ -2857,37 +2831,37 @@ 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 HTML Začátek HTML - + End HTML Konec HTML @@ -2895,32 +2869,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á. @@ -2928,82 +2902,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í @@ -3011,122 +2985,122 @@ 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é @@ -3136,12 +3110,12 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can Omezení snímku položky služby - + Override display position: Překrýt pozici zobrazení: - + Repeat track list Opakovat seznam stop @@ -3169,12 +3143,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. @@ -3182,7 +3156,7 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can OpenLP.MainDisplay - + OpenLP Display Zobrazení OpenLP @@ -3190,287 +3164,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/. @@ -3479,108 +3453,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. @@ -3589,43 +3563,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. @@ -3638,71 +3612,77 @@ 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 - + The file you selected does appear to be a valid OpenLP settings file. Section [%s] is not valid Processing has terminated and no changed have been made. - + Vybraný soubor vypadá jako platný soubor s nastavením OpenLP. + +Sekce [%s] není platná. + +Zpracování bylo přerušeno a žádná změna se neprovedla. - + Copying OpenLP data to new data directory location - %s - Please wait for copy to finish - + Kopíruji OpenLP data do nového umístění datové složky - %s - Počkejte prosím na dokončení kopírování - + OpenLP Data directory copy failed %s - + Kopírování datové složky OpenLP selhalo + +%s 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 @@ -3711,7 +3691,7 @@ Database: %s Databáze: %s - + OpenLP cannot load your database. Database: %s @@ -3723,62 +3703,62 @@ 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í - + Invalid File Type Neplatný typ souboru - + Invalid File %s. Suffix not supported Neplatný soubor %s. @@ -3790,7 +3770,7 @@ Přípona není podporována &Klonovat - + Duplicate files were found on import and were ignored. Při importu byly nalezeny duplicitní soubory a byly ignorovány. @@ -3798,12 +3778,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>. @@ -3811,42 +3791,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) @@ -3854,12 +3834,12 @@ Přípona není podporována OpenLP.PrintServiceDialog - + Fit Page Přizpůsobit stránce - + Fit Width Přizpůsobit šířce @@ -3867,77 +3847,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í: @@ -3945,12 +3925,12 @@ Přípona není podporována OpenLP.ScreenList - + Screen Obrazovka - + primary Primární @@ -3958,12 +3938,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 @@ -3971,7 +3951,7 @@ Přípona není podporována OpenLP.ServiceItemEditForm - + Reorder Service Item Změnit pořadí Položky služby @@ -3979,296 +3959,295 @@ 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. - - File missing from service + + Service File(s) Missing + + + + + The following file(s) in the service are missing: +%s - %s - -Continue saving? +These files will be removed if you continue to save. OpenLP.ServiceNoteForm - + Service Item Notes Poznámky položky služby @@ -4276,7 +4255,7 @@ Continue saving? OpenLP.SettingsForm - + Configure OpenLP Nastavit OpenLP @@ -4284,67 +4263,67 @@ Continue saving? 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 @@ -4352,172 +4331,172 @@ Continue saving? 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 @@ -4525,17 +4504,17 @@ Continue saving? OpenLP.SpellTextEdit - + Spelling Suggestions Návrhy pravopisu - + Formatting Tags Formátovací značky - + Language: Jazyk: @@ -4543,67 +4522,67 @@ Continue saving? 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í. @@ -4611,559 +4590,559 @@ Continue saving? 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. - + You are unable to delete the default theme. Není možno smazat výchozí motiv. - + Theme %s is used in the %s plugin. Motiv %s je používán v modulu %s. - + 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? - + Validation Error Chyba ověřování - + A theme with this name already exists. 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 - + Theme %s already exists. Do you want to replace it? - + Motiv %s již existuje. Chcete ho nahradit? 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í - + 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 Náhled a uložit - + Preview the theme and save it. Náhled motivu a motiv uložit. - + (approximately %d lines per slide) - + (přibližně %d řádek na snímek) - + Background Image Empty - + Prázdný obrázek pozadí - + You have not selected a background image. Please select one before continuing. - + Nebyl vybrán obrázek pozadí. Před pokračování prosím jeden vyberte. - + 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ý. 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 @@ -5171,315 +5150,315 @@ Continue saving? 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. @@ -5490,304 +5469,304 @@ Continue saving? 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. - + Importing Songs - + Import písní 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 @@ -5796,50 +5775,50 @@ Continue saving? 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ě. @@ -5847,52 +5826,52 @@ Continue saving? 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. @@ -5900,17 +5879,17 @@ Continue saving? PresentationPlugin.PresentationTab - + Available Controllers Dostupné ovládání - + %s (unavailable) %s (nedostupný) - + Allow presentation application to be overridden Povolit překrytí prezentační aplikace @@ -5918,24 +5897,24 @@ Continue saving? 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í @@ -5944,236 +5923,246 @@ Continue saving? 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 &amp; Go to Service Přidat &amp; Přejít ke službě + + + Service + Služba + + + + Slides + Snímky + 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://play.google.com/store/apps/details?id=org.openlp.android">download</a> to install the Android app from Google Play. - + Naskenujte QR kód nebo pro instalaci Android aplikace ze služby Google Play klepněte na <a href="https://play.google.com/store/apps/details?id=org.openlp.android">stáhnout</a>. 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ý @@ -6181,32 +6170,32 @@ Continue saving? 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. @@ -6214,42 +6203,42 @@ Continue saving? 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. @@ -6258,12 +6247,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. @@ -6271,112 +6260,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. @@ -6385,105 +6374,105 @@ 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ě. - + Reindexing songs - + Přeindexovávám písně 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í? @@ -6491,7 +6480,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. @@ -6499,12 +6488,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] @@ -6516,12 +6505,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 @@ -6529,202 +6518,202 @@ 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. - + 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. @@ -6732,22 +6721,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. @@ -6755,82 +6744,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. @@ -6838,172 +6827,172 @@ 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 Soubory s písněmi SundayPlus - + This importer has been disabled. Tento importér byl zakázán. - + MediaShout Database Databáze MediaShout - + The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. MediaShout importér je podporován jen ve Windows. Byl zakázán kvůli chybějícímu Python modulu. Pokud si přejete používat tento importér, bude potřeba nainstalovat modul "pyodbc". - + SongPro Text Files Textové soubory SongPro - + SongPro (Export File) SongPro (exportovaný soubor) - + In SongPro, export your songs using the File -> Export menu V aplikaci SongPro se písně exportují přes menu File -> Export @@ -7011,12 +7000,12 @@ Kódování zodpovídá za správnou reprezentaci znaků. 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. @@ -7034,7 +7023,7 @@ Kódování zodpovídá za správnou reprezentaci znaků. Text písně - + CCLI License: CCLI Licence: @@ -7044,7 +7033,7 @@ Kódování zodpovídá za správnou reprezentaci znaků. 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ň? @@ -7058,7 +7047,7 @@ Kódování zodpovídá za správnou reprezentaci znaků. Spravovat seznamy autorů, témat a zpěvníků. - + copy For song cloning kopírovat @@ -7092,7 +7081,7 @@ Kódování zodpovídá za správnou reprezentaci znaků. SongsPlugin.MediaShoutImport - + Unable to open the MediaShout database. Není možno otevřít databázi MediaShout. @@ -7100,7 +7089,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. @@ -7108,7 +7097,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. @@ -7116,7 +7105,7 @@ Kódování zodpovídá za správnou reprezentaci znaků. SongsPlugin.OpenLyricsExport - + Exporting "%s"... Exportuji "%s"... @@ -7124,55 +7113,55 @@ 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". - + No %s files found. - + Nenalezeny žádné soubory %s. - + Invalid %s file. Unexpected byte value. - + Neplatný soubor %s. Neočekávaná bajtová hodnota. - + Invalid %s file. Missing "TITLE" header. - + Neplatný soubor %s. Chybějící hlavička "TITLE". - + Invalid %s file. Missing "COPYRIGHTLINE" header. - + Neplatný soubor %s. Chybějící hlavička "COPYRIGHTLINE". 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. @@ -7180,12 +7169,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>. @@ -7193,27 +7182,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 @@ -7221,107 +7210,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? @@ -7329,27 +7318,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 @@ -7357,17 +7346,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. @@ -7375,37 +7364,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í @@ -7413,29 +7402,29 @@ 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. - + Line %d: %s - + Řádek %d: %s - + Decoding error: %s - + Chyba dekódování: %s - + Record %d - + Záznam %d diff --git a/resources/i18n/da.ts b/resources/i18n/da.ts index 257c967dc..bc364b7e6 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 i 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 '<>'. @@ -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,511 +152,511 @@ 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. Tjek 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. Fremvis den valgte bibel. - + 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>Bibel-udvidelsesmodul</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 1. Mosebog - + Exodus 2. Mosebog - + Leviticus 3. Mosebog - + Numbers 4. Mosebog - + Deuteronomy 5. Mosebog - + Joshua Josvabogen - + Judges Dommerbogen - + Ruth Ruths Bog - + 1 Samuel 1. Samuelsbog - + 2 Samuel 2. Samuelsbog - + 1 Kings 1. Kongebog - + 2 Kings 2. Kongebog - + 1 Chronicles 1. Krønikebog - + 2 Chronicles 2. Krønikebog - + Ezra Ezras Bog - + Nehemiah Nehemias' Bog - + Esther Esters Bog - + Job Jobs Bog - + Psalms Salmernes Bog - + Proverbs Ordsprogenes Bog - + Ecclesiastes Prædikerens Bog - + Song of Solomon Højsangen - + Isaiah Esajas' Bog - + Jeremiah Jeremias' Bog - + Lamentations Klagesangene - + Ezekiel Ezekiels Bog - + Daniel Daniels Bog - + Hosea Hoseas' Bog - + Joel Joels Bog - + Amos Amos' Bog - + Obadiah Obadias' Bog - + Jonah Jonas' Bog - + Micah Mikas Bog - + Nahum Nahums Bog - + Habakkuk Habakkuks Bog - + Zephaniah Sefanias' Bog - + Haggai Haggajs Bog - + Zechariah Zakarias' Bog - + Malachi Malakias' Bog - + Matthew Matthæusevangeliet - + Mark Markusevangeliet - + Luke Lukasevangeliet - + John Johannesevangeliet - + Acts Apostlenes Gerninger - + Romans Romerbrevet - + 1 Corinthians 1. Korintherbrev - + 2 Corinthians 2. Korintherbrev - + Galatians Galaterbrevet - + Ephesians Efeserbrevet - + Philippians Filipperbrevet - + Colossians Kolossenserbrevet - + 1 Thessalonians 1. Thessalonikerbrev - + 2 Thessalonians 2. Thessalonikerbrev - + 1 Timothy 1. Timotheusbrev - + 2 Timothy 2. Timotheusbrev - + Titus Titusbrevet - + Philemon Filemonbrevet - + Hebrews Hebræerbrevet - + James Jakobsbrevet - + 1 Peter 1. Petersbrev - + 2 Peter 2. Petersbrev - + 1 John 1. Johannesbrev - + 2 John 2. Johannesbrev - + 3 John 3. Johannesbrev - + Jude Judasbrevet - + Revelation Johannes' Åbenbaring - + Judith Judits Bog - + Wisdom Visdommens Bog - + Tobit Tobits Bog - + Sirach Siraks Bog - + Baruch Baruks Bog - + 1 Maccabees 1. Makkabæerbog - + 2 Maccabees 2. Makkabæerbog - + 3 Maccabees 3. Makkabæerbog - + 4 Maccabees 4. Makkabæerbog - + Rest of Daniel Tilføjelser til Daniels Bog - + Rest of Esther Tilføjelser til Esters Bog - + Prayer of Manasses Manasses Bøn - + Letter of Jeremiah Jeremias' Brev - + Prayer of Azariah Azarias bøn - + Susanna Susannah - + Bel Bel og Dragen - + 1 Esdras 3. Esdras - + 2 Esdras 4. Esdras - + :|v|V|verse|verses;;-|to;;,|and;;end Double-semicolon delimited separators for parsing references. Consult the developers for further information. .|v|V|vers;;-|til;;,|og;;slut @@ -665,32 +665,32 @@ Vil du fortsætte alligevel? BiblesPlugin.BibleEditForm - + You need to specify a version name for your Bible. Du skal angive et navn til denne udgave af Bibelen. - + You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. Du skal angive din bibels ophavsret. Bibler i Public Domain skal markeres som 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 for at slette den eksisterende. - + You need to specify a book name for "%s". Du skal angive et bognavn 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. @@ -699,12 +699,12 @@ Tal kan kun bruges i begyndelsen og skal følges af et eller flere ikke-numeriske tegn. - + Duplicate Book Name Duplikeret bognavn - + The Book Name "%s" has been entered more than once. Bognavnet "%s" er blevet brugt mere end én gang. @@ -712,39 +712,39 @@ eller flere ikke-numeriske tegn. 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 @@ -767,79 +767,79 @@ Bog Kapitel%(verse)sVers%(range)sKapitel%(verse)sVers 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 Brugerdefinerede skriftstedshenvisninger - + Verse Separator: Vers-separator: - + Range Separator: Rækkevidde-separator: - + List Separator: Liste-separator: - + End Mark: Slutmærke: - + 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 @@ De skal adskilles af en lodret bjælke "|". Ryd denne linje for at benytte standardværdien. - + 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 @@ De skal adskilles af en lodret bjælke "|". Ryd denne linje for at benytte standardværdien. - + 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 @@ De skal adskilles af en lodret bjælke "|". Ryd denne linje for at benytte standardværdien. - + 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 @@ De skal adskilles af en lodret bjælke "|". Ryd denne linje for at benytte standardværdien. - + English Engelsk - + Default Bible Language Standard bibelsprog - + Book name language in search field, search results and on display: Sproget for bognavne i søgefelt, søgeresultater og på skærmen: - + Bible Language Bibelsprog - + Application Language Programsprog @@ -905,42 +905,42 @@ søgeresultater og på skærmen: 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. @@ -948,7 +948,7 @@ søgeresultater og på skærmen: BiblesPlugin.BookNameForm - + You need to select a book. Du er nødt til først at vælge en bog. @@ -956,18 +956,18 @@ søgeresultater og på skærmen: 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. @@ -975,69 +975,69 @@ søgeresultater og på skærmen: BiblesPlugin.EditBibleForm - + Bible Editor Bibelredigering - + License Details Licensdetaljer - + Version name: Navn på udgave: - + Copyright: Ophavsret: - + Permissions: Tilladelser: - + Default Bible Language Standardsprog for bibler - + Book name language in search field, search results and on display: - + Global Settings Globale indstillinger - + Bible Language Bibelsprog - + Application Language Programsprog - + English Engelsk - + This is a Web Download Bible. It is not possible to customize the Book Names. Dette er en bibel som er hentet fra nettet. Det er ikke muligt at tilpasse bognavnene. - + 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. @@ -1045,38 +1045,38 @@ Det er ikke muligt at tilpasse bognavnene. 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. @@ -1254,17 +1254,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: @@ -1272,7 +1272,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. @@ -1280,92 +1280,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... Søg skriftstedshenvisning... - + Search Text... Søgetekst... - + Are you sure you want to completely delete "%s" Bible from OpenLP? You will need to re-import this Bible to use it again. @@ -1377,7 +1377,7 @@ Du bliver nødt til at genimportere denne bibel for at bruge den igen. BiblesPlugin.OpenSongImport - + Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. @@ -1385,7 +1385,7 @@ Du bliver nødt til at genimportere denne bibel for at bruge den igen. BiblesPlugin.Opensong - + Importing %s %s... Importing <book name> <chapter>... Importerer %s %s... @@ -1394,12 +1394,12 @@ Du bliver nødt til at genimportere denne bibel for at bruge den igen. 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... @@ -1408,148 +1408,148 @@ Du bliver nødt til at genimportere denne bibel for at bruge den igen. 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 Vælg en mappe til sikkerhedskopiering af dine bibler - + 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 Opgradering af bibler: %s fuldført%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. @@ -1557,65 +1557,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. @@ -1623,12 +1623,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 @@ -1636,62 +1636,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 @@ -1699,7 +1699,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I CustomPlugin.EditVerseForm - + Edit Slide Redigér dias @@ -1707,7 +1707,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)? Er du sikker på at du vil slette det %n valgte dias? @@ -1718,60 +1718,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. @@ -1779,7 +1779,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I ImagePlugin.ExceptionDialog - + Select Attachment Vælg bilag @@ -1787,44 +1787,44 @@ 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. Du skal vælge et billede til at erstatte baggrunden. - + 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 Vil du tilføje de andre billede alligevel? - + There was a problem replacing your background, the image file "%s" no longer exists. Der opstod et problem med at erstatte din baggrund; billedfilen "%s" eksisterer ikke længere. - + There was no display item to amend. @@ -1832,17 +1832,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. @@ -1850,60 +1850,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. Fremvis det valgte medie. - + Add the selected media to the service. Tilføj de valgte medier til programmet. @@ -1911,57 +1911,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: @@ -1969,22 +1969,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 Tillad at medieafspilleren bliver tilsidesat @@ -1992,17 +1992,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? @@ -2014,32 +2014,55 @@ Skal OpenLP opgradere dem nu? OpenLP.AboutForm - + Credits Bidragsydere - + License Licens - + 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. - + + Copyright © 2004-2012 %s +Portions copyright © 2004-2012 %s + Ophavsret © 2004-2012 %s +Delvis ophavsret © 2004-2012 %s + + + + 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. + +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 volunteering by using the button below. + + + + + Volunteer + + + + Project Lead %s @@ -2058,12 +2081,20 @@ Packagers Translators Afrikaans (af) %s + Czeck (cs) + %s + Danish (da) + %s German (de) %s + Greek (el) + %s English, United Kingdom (en_GB) %s English, South Africa (en_ZA) %s + Spanish (es) + %s Estonian (et) %s French (fr) @@ -2080,13 +2111,15 @@ Translators %s Russian (ru) %s + Swedish (sv) + %s Documentation %s Built With Python: http://www.python.org/ - Qt4: http://qt.nokia.com/ + Qt4: http://qt.digia.com/ PyQt4: http://www.riverbankcomputing.co.uk/software/pyqt/intro Oxygen Icons: http://oxygen-icons.org/ @@ -2101,268 +2134,185 @@ Final Credit on the cross, setting us free from sin. We bring this software to you for free because He has set us free. - Projektleder - %s - -Udviklere - %s - -Bidragsydere - %s - -Testere - %s - -Pakkere - %s - -Oversættere - Afrikaans (af) - %s - Tysk (de) - %s - Engelsk, Storbritannien (en_GB) - %s - Engelsk, Sydafrika (en_ZA) - %s - Estland (et) - %s - Fransk (fr) - %s - Ungarnsk (hu) - %s - Japansk (ja) - %s - Norsk Bokmål (nb) - %s - Hollandsk (nl) - %s - Portugisisk, Brasilien (pt_BR) - %s - Russisk (ru) - %s - -Brugervejledning - %s - -Bygget med - Python: http://www.python.org/ - Qt4: http://qt.nokia.com/ - PyQt4: http://www.riverbankcomputing.co.uk/software/pyqt/intro - Oxygen ikoner: http://oxygen-icons.org/ - -Afsluttende tak - "For således elskede Gud verden - at han gav sin enebårne søn for at enhver - som tror på ham ikke skal fortabes, - men have evigt liv." -- Johannes 3:16 - - Og sidst, men ikke mindst, går den sidste tak til - Gud vor fader, for at sende sin søn til at dø - på korset, og derved sætte os fri fra synd. Vi - bringer dette stykke software gratis til dig fordi - han har gjort os fri. - - - - Copyright © 2004-2012 %s -Portions copyright © 2004-2012 %s - Ophavsret © 2004-2012 %s -Delvis ophavsret © 2004-2012 %s - - - - 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. - -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 volunteering by using the button below. - - - - - Volunteer OpenLP.AdvancedTab - + UI Settings Brugerfladeindstillinger - + Number of recent files to display: Antal af seneste filer der skal vises: - + Remember active media manager tab on startup Husk den aktive mediehåndteringsfane ved opstart - + Double-click to send items straight to live Dobbeltklik for at fremvise emner direkte - + 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. Program %d-%m-%Y %H-%M - + Default Service Name Standard programnavn - + Enable default service name - + Date and Time: Dato og tid: - + Monday Mandag - + Tuesday Tirsdag - + Wednesday Onsdag - + Thurdsday Torsdag - + Friday Fredag - + Saturday Lørdag - + Sunday Søndag - + Now Nu - + Time when usual service starts. - + Name: Navn: - + Consult the OpenLP manual for usage. - + Revert to the default service name "%s". - + Example: Eksempel: - + X11 X11 @@ -2372,94 +2322,94 @@ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for Omgå X11 vindueshåndtering - + Syntax error. - + Data Location - + Current path: Nuværende sti: - + Custom path: Brugerdefineret sti: - + 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. Kopiér data til ny placering. - + Copy the OpenLP data files to the new location. Kopiér OpenLP datafilerne til en ny placering. - + <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 - + OpenLP data directory was not found %s @@ -2472,7 +2422,7 @@ Click "Yes" to reset the data directory to the default location. - + Are you sure you want to change the location of the OpenLP data directory to: %s @@ -2481,7 +2431,7 @@ The data directory will be changed when OpenLP is closed. - + WARNING: The location you have selected @@ -2495,39 +2445,39 @@ appears to contain OpenLP data files. Do you wish to replace these files with t 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 @@ -2535,24 +2485,24 @@ appears to contain OpenLP data files. Do you wish to replace these files with t 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 @@ -2570,7 +2520,7 @@ Version: %s - + *OpenLP Bug Report* Version: %s @@ -2592,17 +2542,17 @@ Version: %s OpenLP.FileRenameForm - + File Rename - + New File Name: Nyt filnavn: - + File Copy @@ -2610,17 +2560,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: @@ -2628,199 +2578,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. Denne guide vil hjælpe dig med at konfigurere OpenLP til brug for første gang. Tryk på næste-knappen herunder for at begynde. - + Setting Up And Downloading Sætter op og henter - + Please wait while OpenLP is set up and your data is downloaded. Vent venligst på at OpenLP indstilles og dine data hentes. - + 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. @@ -2830,37 +2780,37 @@ 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 HTML Start HTML - + End HTML Afslut HTML @@ -2868,32 +2818,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. @@ -2901,82 +2851,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 @@ -2984,122 +2934,122 @@ 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: Vælg skærm til visning af output: - + Display if a single screen - + Application Startup Programopstart - + Show blank screen warning Vis advarsel ved blank skærm - + Automatically open the last service Åbn automatisk det seneste program - + Show the splash screen Vis logo - + 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 @@ -3109,12 +3059,12 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can - + Override display position: - + Repeat track list Gentag sætliste @@ -3142,12 +3092,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. @@ -3155,7 +3105,7 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can OpenLP.MainDisplay - + OpenLP Display @@ -3163,287 +3113,287 @@ 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 Programhåndtering - + Theme Manager Temahåndtering - + &New &Ny - + &Open &Åben - + Open an existing service. Åben et eksisterende program. - + &Save &Gem - + Save the current service to disk. Gem det nuværende program på 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 Slå mediehåndteringen til - + Toggle the visibility of the media manager. Angiv om mediehåndteringen skal være synlig. - + &Theme Manager &Temahåndtering - + Toggle Theme Manager Slå temahåndteringen til - + Toggle the visibility of the theme manager. Angiv om temahåndteringen skal være synlig. - + &Service Manager &Programhåndtering - + Toggle Service Manager Slå programhåndteringen til - + Toggle the visibility of the service manager. Angiv om programhåndteringen skal være synlig. - + &Preview Panel &Forhåndsvisningspanelet - + Toggle Preview Panel Alå forhåndsvisningspanelet til - + Toggle the visibility of the preview panel. Angiv om forhåndsvisningspanelet skal være synlig. - + &Live Panel &Livepanel - + Toggle Live Panel Slå fremvisningspanelet til - + Toggle the visibility of the live panel. Skift synligheden af livepanelet. - + &Plugin List Liste over &udvidelsesmoduler - + List the Plugins Vis udvidelsesmodulerne - + &User Guide &Brugerguide - + &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 Sæt brugerfladens sprog til %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/. @@ -3452,151 +3402,151 @@ You can download the latest version from http://openlp.org/. Du kan hente den seneste udgave fra 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... Åben &datamappe... - + Open the folder where songs, bibles and other data resides. Åben den mappe hvor sange, bibler og andre data er placeret. - + &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 &Seneste filer - + L&ock Panels L&ås paneler - + Prevent the panels being moved. Forhindr panelerne i at flyttes. - + 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. Ryd liste over seneste filer. - + Configure &Formatting Tags... Konfigurér &formateringsmærker... - + 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. @@ -3605,42 +3555,42 @@ 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. OpenLP lukker nu ned. Importerede indstillinger vil blive anvendt næste gang du starter OpenLP. - + Export Settings File Eksportér indstillingsfil - + OpenLP Export Settings File (*.conf) OpenLP eksportér indstillingsfil (*.conf) - + New Data Directory Error - + The file you selected does appear to be a valid OpenLP settings file. Section [%s] is not valid @@ -3649,12 +3599,12 @@ Processing has terminated and no changed have been made. - + Copying OpenLP data to new data directory location - %s - Please wait for copy to finish - + OpenLP Data directory copy failed %s @@ -3664,19 +3614,19 @@ Processing has terminated and no changed have been made. 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 @@ -3688,62 +3638,62 @@ 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. Du skal vælge et, eller flere elementer. - + You must select an existing service item to add to. - + Invalid Service Item Ugyldigt programelement - + You must select a %s service item. - + You must select one or more items to add. - + No Search Results Ingen søgeresultater - + Invalid File Type Ugyldig filtype - + Invalid File %s. Suffix not supported Ugyldig fil %s. @@ -3755,7 +3705,7 @@ Endelsen er ikke understøttet - + Duplicate files were found on import and were ignored. @@ -3763,12 +3713,12 @@ Endelsen er ikke understøttet OpenLP.OpenLyricsImportError - + <lyrics> tag is missing. <lyrics> mærke mangler. - + <verse> tag is missing. <verse> mærke mangler. @@ -3776,42 +3726,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) @@ -3819,12 +3769,12 @@ Endelsen er ikke understøttet OpenLP.PrintServiceDialog - + Fit Page Tilpas til siden - + Fit Width Tilpas til bredden @@ -3832,77 +3782,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 Inkludér diastekst hvis tilgængelig - + Include service item notes - + Include play length of media items - + Add page break before each text item - + Service Sheet Program - + Print Udskriv - + Title: Titel: - + Custom Footer Text: Brugerdefineret sidefod: @@ -3910,12 +3860,12 @@ Endelsen er ikke understøttet OpenLP.ScreenList - + Screen Skærm - + primary primær @@ -3923,12 +3873,12 @@ Endelsen er ikke understøttet OpenLP.ServiceItem - + <strong>Start</strong>: %s <strong>Start</strong>: %s - + <strong>Length</strong>: %s <strong>Varighed</strong>: %s @@ -3936,7 +3886,7 @@ Endelsen er ikke understøttet OpenLP.ServiceItemEditForm - + Reorder Service Item @@ -3944,296 +3894,295 @@ 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 Fremvis - + Send the selected item to Live. Fremvis det valgte element. - + &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 - Programfil mangler - - - + Slide theme Diastema - + Notes Noter - + Edit Redigér - + Service copy only - + Error Saving File Fejl ved lagring af fil - + There was an error saving your file. Der opstod en fejl ved gemning af din fil. - - File missing from service + + Service File(s) Missing + + + + + The following file(s) in the service are missing: +%s - %s - -Continue saving? +These files will be removed if you continue to save. OpenLP.ServiceNoteForm - + Service Item Notes @@ -4241,7 +4190,7 @@ Continue saving? OpenLP.SettingsForm - + Configure OpenLP Konfigurér OpenLP @@ -4249,67 +4198,67 @@ Continue saving? OpenLP.ShortcutListDialog - + Action Handling - + Shortcut Genvej - + Duplicate Shortcut Duplikér genvej - + 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 Alternativ - + Select an action and click one of the buttons below to start capturing a new primary or alternate shortcut, respectively. Vælg en handling og tryk på en af knapperne herunder for at opfange en ny primær- eller alternativ genvej. - + 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 @@ -4317,172 +4266,172 @@ Continue saving? OpenLP.SlideController - + Hide Gem - + Go To Gå til - + Blank Screen Blank skærm - + Blank to Theme Vis temabaggrund - + Show Desktop Vis skrivebord - + Previous Service Forrige program - + Next Service Næste Program - + 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. Tilføj til program. - + 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" Gå til "intro" - + Go to "Ending" - + Go to "Other" Gå til "anden" - + Previous Slide Forrige dias - + Next Slide Næste dias - + Pause Audio - + Background Audio Baggrundslyd - + Go to next audio track. - + Tracks Spor @@ -4490,17 +4439,17 @@ Continue saving? OpenLP.SpellTextEdit - + Spelling Suggestions - + Formatting Tags Formatteringsmærker - + Language: Sprog: @@ -4508,67 +4457,67 @@ Continue saving? 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. @@ -4576,198 +4525,198 @@ Continue saving? 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. - + You are unable to delete the default theme. Du kan ikke slette standardtemaet. - + Theme %s is used in the %s plugin. 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? - + Validation Error Fejl - + A theme with this name already exists. 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 Tema eksisterer allerede - + Theme %s already exists. Do you want to replace it? @@ -4775,312 +4724,312 @@ Continue saving? 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 - + 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 Gennemsigtig - + Preview and Save Forhåndsvis og gem - + Preview the theme and save it. Forhåndsvis temaet og gem det. - + (approximately %d lines per slide) - + Background Image Empty - + You have not selected a background image. Please select one before continuing. - + Select Image - + Theme Name Missing - + There is no name for this theme. Please enter one. - + Theme Name Invalid - + Invalid theme name. Please enter one. @@ -5088,47 +5037,47 @@ Continue saving? OpenLP.ThemesTab - + Global Theme Globalt tema - + Theme Level Temaniveau - + S&ong Level S&angniveau - + 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 &Programniveau - + 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. Benyt det globale tema, hvormed alle temaer tilknyttet til enten programmet eller sangene tilsidesættes. - + Themes Temaer @@ -5136,315 +5085,315 @@ Continue saving? 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 Fejl med fremvisningsbaggrund - + 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. Openlp.org 1.x importeringen er slået fra på grund af at der mangler et Python-modul. Hvis du vil benytte denne importering, er du nødt til at installere modulet "python-sqlite" først. - + 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 Du skal angive mindst én %s-fil at importere fra. @@ -5455,278 +5404,278 @@ Continue saving? - + 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 Sanghåndtering - + 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 Værktøjslinje for fremvisning - + 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. Del kun et dias op i to, hvis det ikke kan passe ind på skærmen som ét dias. - + 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 Næste spor - + Search Themes... Search bar place holder text Søg efter temaer... - + Optional &Split - + Invalid Folder Selected Singular Ugyldig mappe valgt - + Invalid File Selected Singular Ugyldigt fil valgt - + Invalid Files Selected Plural Ugyldige filer valgt - + No Folder Selected Singular Ingen mappe valgt - + Open %s Folder Åben %s mappe - + You need to specify one %s file to import from. A file type e.g. OpenSong Du skal vælge en %s-fil at importere fra. - + You need to specify one %s folder to import from. A song format e.g. PowerSong Du skal vælge en %s-mappe at importere fra. - + Importing Songs @@ -5734,25 +5683,25 @@ Continue saving? OpenLP.core.lib - + %1 and %2 Locale list separator: 2 items %1 og %2 - + %1, and %2 Locale list separator: end %1, og %2 - + %1, %2 Locale list separator: middle %1, %2 - + %1, %2 Locale list separator: start %1, %2 @@ -5761,50 +5710,50 @@ Continue saving? 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. Fremvis den valgte præsentation. - + Add the selected presentation to the service. Tilføj den valgte præsentation til programmet. @@ -5812,52 +5761,52 @@ Continue saving? 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. @@ -5865,17 +5814,17 @@ Continue saving? PresentationPlugin.PresentationTab - + Available Controllers - + %s (unavailable) %s (ikke tilgængelig) - + Allow presentation application to be overridden Tillad at præsentationsprogrammet tilsidesættes @@ -5883,24 +5832,24 @@ Continue saving? 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 @@ -5909,150 +5858,160 @@ Continue saving? RemotePlugin.Mobile - + OpenLP 2.0 Remote OpenLP 2.0 fjernbetjening - + OpenLP 2.0 Stage View - + Service Manager Programhåndtering - + 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 Fremvis - + No Results Ingen resultater - + Options Indstillinger - + Add to Service Tilføj til program - + Home Hjem - + Theme Tema - + Desktop Skrivebord - + Add &amp; Go to Service + + + Service + Program + + + + Slides + + 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 Android App - + Scan the QR code or click <a href="https://play.google.com/store/apps/details?id=org.openlp.android">download</a> to install the Android app from Google Play. @@ -6060,85 +6019,85 @@ Continue saving? 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 @@ -6146,32 +6105,32 @@ Continue saving? 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. @@ -6179,42 +6138,42 @@ Continue saving? 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. @@ -6223,12 +6182,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. @@ -6236,178 +6195,178 @@ 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. Fremvis den valgte sang. - + Add the selected song to the service. Tilføj de valgte sange til programmet. - + Reindexing songs @@ -6415,37 +6374,37 @@ The encoding is responsible for the correct character representation. SongsPlugin.AuthorsForm - + Author Maintenance Vedligeholdelse af forfattere - + 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? @@ -6453,7 +6412,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. @@ -6461,12 +6420,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] @@ -6478,12 +6437,12 @@ The encoding is responsible for the correct character representation. SongsPlugin.EditBibleForm - + Meta Data Metadata - + Custom Book Names Brugerdefinerede bognavne @@ -6491,202 +6450,202 @@ The encoding is responsible for the correct character representation. SongsPlugin.EditSongForm - + Song Editor Sangredigering - + &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. - + 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. <strong>Advarsel:</strong> Ikke alle versene er i brug. - + The verse order is invalid. There are no verses corresponding to %s. Valid entries are %s. Denne rækkefølge af vers er ikke gyldig. Der er ikke nogen vers der svarer til %s. Gyldige elementer er %s. @@ -6694,22 +6653,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. @@ -6717,82 +6676,82 @@ The encoding is responsible for the correct character representation. SongsPlugin.ExportWizardForm - + Song Export Wizard Guide til eksportering af sange - + 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 Ingen placering angivet til at gemme - + 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. @@ -6800,172 +6759,172 @@ The encoding is responsible for the correct character representation. SongsPlugin.ImportWizardForm - + Select Document/Presentation Files Vælg dokument-/præsentationfiler - + Song Import Wizard Guide til import af sange - + 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 Almindeligt dokument/præsentation - + 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. Importeringen af dokumenter/præsentationer er blevet slået fra, da OpenLP ikke kan tilgå OpenOffice eller LibreOffice. - + OpenLyrics or OpenLP 2.0 Exported Song OpenLyrics eller OpenLP 2.0 eksporteret sang - + OpenLyrics Files OpenLyrics filer - + CCLI SongSelect Files CCLI SongSelect-filer - + EasySlides XML File EasySlides XML-fil - + EasyWorship Song Database EasyWorship sangdatabase - + DreamBeam Song Files DreamBeam sangfiler - + You need to specify a valid PowerSong 1.0 database folder. Du skal angive en gyldig PowerSong 1.0-database-mappe. - + 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>. Konvertér først din ZionWorx-database til en CSV-tekstfil, som forklaret i<a href="http://manual.openlp.org/songs.html#importing-from-zionworx">Brugerguidenl</a>. - + SundayPlus Song Files SundayPlus sangfiler - + This importer has been disabled. Denne importør er slået fra. - + MediaShout Database MediaShout-database - + The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. Importeringen fra MediaShout er kun understøttet på Windows. Det er deaktiveret på grund af et manglende Python-modul. Hvis du ønsker at bruge denne importør, skal du installere "pyodbc"-modulet. - + SongPro Text Files SongPro-tekstfiler - + SongPro (Export File) SongPro (Eksportfil) - + In SongPro, export your songs using the File -> Export menu I SongPro eksporterer du dine sange ved at benytte eksportmenuen i File -> Export menu @@ -6973,12 +6932,12 @@ The encoding is responsible for the correct character representation. 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. @@ -6996,7 +6955,7 @@ The encoding is responsible for the correct character representation. Sangtekst - + CCLI License: CCLI Licens: @@ -7006,7 +6965,7 @@ The encoding is responsible for the correct character representation. Hele sang - + Are you sure you want to delete the %n selected song(s)? Er du sikker på at du vil slette den %n valgte sang? @@ -7019,7 +6978,7 @@ The encoding is responsible for the correct character representation. Vedligehold listen over forfattere, emner og bøger. - + copy For song cloning kopi @@ -7053,7 +7012,7 @@ The encoding is responsible for the correct character representation. SongsPlugin.MediaShoutImport - + Unable to open the MediaShout database. Kunne ikke åbne MediaShout databasen. @@ -7061,7 +7020,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. @@ -7069,7 +7028,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. @@ -7077,7 +7036,7 @@ The encoding is responsible for the correct character representation. SongsPlugin.OpenLyricsExport - + Exporting "%s"... Eksporterer "%s"... @@ -7085,32 +7044,32 @@ The encoding is responsible for the correct character representation. SongsPlugin.PowerSongImport - + No songs to import. Ingen sange der kan importeres. - + Verses not found. Missing "PART" header. Versene kunne ikke findes. Manglende "PART" header. - + No %s files found. - + Invalid %s file. Unexpected byte value. - + Invalid %s file. Missing "TITLE" header. - + Invalid %s file. Missing "COPYRIGHTLINE" header. @@ -7118,22 +7077,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. @@ -7141,12 +7100,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. @@ -7154,27 +7113,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 @@ -7182,107 +7141,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? @@ -7290,27 +7249,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 @@ -7318,17 +7277,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. @@ -7336,37 +7295,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 @@ -7374,27 +7333,27 @@ The encoding is responsible for the correct character representation. SongsPlugin.ZionWorxImport - + Error reading CSV file. Fejl ved læsning af CSV-fil. - + File not valid ZionWorx CSV format. Filen er ikke i et gyldigt ZionWorx CSV-format. - + Line %d: %s - + Decoding error: %s - + Record %d diff --git a/resources/i18n/de.ts b/resources/i18n/de.ts index 0fcd44184..c46a61b1e 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 '<>'. @@ -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 + Importiere Bücher... %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. @@ -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 completely delete "%s" Bible from OpenLP? You will need to re-import this Bible to use it again. @@ -1378,7 +1378,7 @@ Um sie wieder zu benutzen, muss sie erneut importier werden. BiblesPlugin.OpenSongImport - + Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. Falscher Dateityp. OpenSong Bibeln sind möglicherweise komprimiert und müssen entpackt werden, bevor sie importiert werden. @@ -1386,7 +1386,7 @@ Um sie wieder zu benutzen, muss sie erneut importier werden. BiblesPlugin.Opensong - + Importing %s %s... Importing <book name> <chapter>... %s %s wird importiert... @@ -1395,12 +1395,12 @@ Um sie wieder zu benutzen, muss sie erneut importier werden. 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... @@ -1409,149 +1409,149 @@ Um sie wieder zu benutzen, muss sie erneut importier werden. 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. @@ -1559,65 +1559,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. @@ -1625,12 +1625,12 @@ Bitte beachten Sie, dass Bibeltexte von Onlinebibeln bei Bedarf heruntergeladen CustomPlugin.CustomTab - + Custom Display Sonderfolie Anzeige - + Display footer Fußzeile anzeigen @@ -1638,62 +1638,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 @@ -1701,7 +1701,7 @@ Bitte beachten Sie, dass Bibeltexte von Onlinebibeln bei Bedarf heruntergeladen CustomPlugin.EditVerseForm - + Edit Slide Folie bearbeiten @@ -1709,7 +1709,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? @@ -1720,60 +1720,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. @@ -1781,7 +1781,7 @@ Bitte beachten Sie, dass Bibeltexte von Onlinebibeln bei Bedarf heruntergeladen ImagePlugin.ExceptionDialog - + Select Attachment Anhang auswählen @@ -1789,44 +1789,44 @@ 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 Wollen Sie die anderen Bilder trotzdem hinzufügen? - + There was a problem replacing your background, the image file "%s" no longer exists. Da auf das Bild »%s« nicht mehr zugegriffen werden kann, konnte es nicht als Hintergrund gesetzt werden. - + There was no display item to amend. Es waren keine Änderungen nötig. @@ -1834,17 +1834,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. @@ -1852,60 +1852,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. @@ -1913,57 +1913,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: @@ -1971,22 +1971,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 @@ -1994,17 +1994,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? @@ -2016,32 +2016,55 @@ Möchten Sie dies jetzt tun? OpenLP.AboutForm - + Credits Danksagungen - + License Lizenz - + 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. - + + Copyright © 2004-2012 %s +Portions copyright © 2004-2012 %s + Copyright © 2004-2012 %s +Anteiliges Copyright © 2004-2012 %s + + + + 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. + +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 volunteering by using the button below. + OpenLP <version><revision> - Open Lyrics Projection⏎ ⏎OpenLP ist ein freies Programm für Präsentationen in Kirchen. Es können Liedtexte, Bibelverse, Videos, Bilder und Präsentationen (wenn Impress, PowerPoint oder der PowerPoint Viewer installiert sind) mittels Beamer und Computer angezeigt werden. ⏎ ⏎Weitere Informationen finden Sie unter: http://openlp.org/⏎ ⏎OpenLP wird von Freiwilligen Helfern entwickelt und unterstützt. Wenn Sie sich beteiligen wollen betätigen Sie untenstehende Schaltfläche und in ihrem Browser wird ihnen angezeigt, welche Möglichkeiten es gibt. + + + + Volunteer + Mitmachen + + + Project Lead %s @@ -2060,12 +2083,20 @@ Packagers Translators Afrikaans (af) %s + Czeck (cs) + %s + Danish (da) + %s German (de) %s + Greek (el) + %s English, United Kingdom (en_GB) %s English, South Africa (en_ZA) %s + Spanish (es) + %s Estonian (et) %s French (fr) @@ -2082,13 +2113,15 @@ Translators %s Russian (ru) %s + Swedish (sv) + %s Documentation %s Built With Python: http://www.python.org/ - Qt4: http://qt.nokia.com/ + Qt4: http://qt.digia.com/ PyQt4: http://www.riverbankcomputing.co.uk/software/pyqt/intro Oxygen Icons: http://oxygen-icons.org/ @@ -2103,272 +2136,186 @@ Final Credit on the cross, setting us free from sin. We bring this software to you for free because He has set us free. - Projektleitung - %s - -Entwickler - %s - -Mitwirkende - %s - -Tester - %s - -Paketierer - %s - -Übersetzer - Afrikaans (af) - %s - Deutsch (de) - %s - Englisch, Vereinigtes Königreich (en_GB) - %s - Englisch, Südafrika (en_ZA) - %s - Estnisch (et) - %s - Französisch (fr) - %s - Ungarisch (hu) - %s - Japanisch (ja) - %s - Norwegisch (nb) - %s - Niederländisch (nl) - %s - Portugiesisch, Brasilien (pt_BR) - %s - Russisch (ru) - %s - -Dokumentation - %s - -Erstellt mit - Python: http://www.python.org/ - Qt4: http://qt.nokia.com/ - PyQt4: http://www.riverbankcomputing.co.uk/software/pyqt/intro - Oxygen Icons: http://oxygen-icons.org/ - -Danke - »Denn so sehr hat Gott die Welt geliebt, - daß er seinen eingeborenen Sohn - hingegeben hat, damit alle, die an ihn - glauben, nicht verloren gehen, sondern - ewiges Leben haben.« -- Johannes 3, 16 - - Als Letztes, aber nicht zuletzt, geht unser - Dank an Gott, unseren Vater, dafür, dass er - uns seinen Sohn gesandt hat, der am Kreuz - für uns gestorben ist und uns so von der - Sünde befreite. Wir veröffentlichen dieses - Programm frei, weil er uns befreit hat. - Halleluja! - - - - Copyright © 2004-2012 %s -Portions copyright © 2004-2012 %s - Copyright © 2004-2012 %s -Anteiliges Copyright © 2004-2012 %s - - - - 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. - -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 volunteering by using the button below. - - - - - Volunteer 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 @@ -2378,82 +2325,82 @@ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for 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. @@ -2462,12 +2409,12 @@ This location will be used after OpenLP is closed. Dieser Ort wird beim nächsten Start benutzt. - + Overwrite Existing Data Existierende Daten überschreiben - + OpenLP data directory was not found %s @@ -2477,19 +2424,19 @@ This data directory was previously changed from the OpenLP default location. If Click "No" to stop loading OpenLP. allowing you to fix the the problem. Click "Yes" to reset the data directory to the default location. - + Das OpenLP Daten Verzeichnis konnte nicht gefunden werden⏎ ⏎%s⏎ ⏎Befindet sich dieses Verzeichnis auf einem Wechseldatenträger, aktivieren Sie dieses bitte.⏎ ⏎Wählen Sie "Nein" um den Start von OpenLP abzubrechen, um das Problem zu beheben. Wählen Sie "Ja" um das Daten Verzeichnis auf seinen Auslieferungzustand zurück zu setzen. - + Are you sure you want to change the location of the OpenLP data directory to: %s The data directory will be changed when OpenLP is closed. - + Sollen die OpenLP Daten wirklich in folgendem Verzeichnis abgelegt werden:⏎ ⏎%s⏎ ⏎ Das Datenverzeichnis wird geändert, wenn OpenLP geschlossen wird. - + WARNING: The location you have selected @@ -2497,46 +2444,46 @@ The location you have selected %s appears to contain OpenLP data files. Do you wish to replace these files with the current data files? - + ACHTUNG:⏎ ⏎Das gewählte Verzeichnis⏎ ⏎%s⏎ ⏎enthält bereits Daten von OpenLP. Sollen diese Daten durch die aktuellen Daten ersetzt werden? 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 @@ -2544,24 +2491,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 @@ -2592,7 +2539,7 @@ Version: %s - + *OpenLP Bug Report* Version: %s @@ -2627,17 +2574,17 @@ Version: %s OpenLP.FileRenameForm - + File Rename Datei umbenennen - + New File Name: Neuer Dateiname: - + File Copy Datei kopieren @@ -2645,17 +2592,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: @@ -2663,192 +2610,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. @@ -2857,7 +2804,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. @@ -2869,37 +2816,37 @@ 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 HTML Anfangs HTML - + End HTML End HTML @@ -2907,32 +2854,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. @@ -2940,82 +2887,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 @@ -3023,122 +2970,122 @@ 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 @@ -3148,12 +3095,12 @@ Um den Einrichtungsassistenten zu unterbrechen (und OpenLP nicht zu starten), bi Navigation in Folienkontrollfeld - + Override display position: Anzeigeposition überschreiben: - + Repeat track list Abspielliste wiederholen @@ -3181,12 +3128,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. @@ -3194,7 +3141,7 @@ Um den Einrichtungsassistenten zu unterbrechen (und OpenLP nicht zu starten), bi OpenLP.MainDisplay - + OpenLP Display OpenLP-Anzeige @@ -3202,287 +3149,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/. @@ -3491,108 +3438,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. @@ -3601,43 +3548,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. @@ -3650,71 +3597,73 @@ 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 - + The file you selected does appear to be a valid OpenLP settings file. Section [%s] is not valid Processing has terminated and no changed have been made. - + Die gewählte Datei enthält ungültige Einträge.⏎ ⏎Der Abschnitt[%s] ist ungültig.⏎ ⏎Der Vorgang wurde abgebrochen und es wurden keine Änderungen vorgenommen. - + Copying OpenLP data to new data directory location - %s - Please wait for copy to finish - + Kopieren OpenLP Daten in das neue Datenverzeichnis - %s - Bitte warten Sie, bis das Kopieren beendet ist - + OpenLP Data directory copy failed %s - + OpenLP Datenverzeichnis Kopievorgang ist fehlgeschlagen + +%s 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 @@ -3723,7 +3672,7 @@ Database: %s Datenbank: %s - + OpenLP cannot load your database. Database: %s @@ -3735,62 +3684,62 @@ 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 - + Invalid File Type Ungültige Dateiendung - + Invalid File %s. Suffix not supported Ungültige Datei %s. @@ -3802,7 +3751,7 @@ Dateiendung nicht unterstützt. &Klonen - + Duplicate files were found on import and were ignored. Duplikate wurden beim Importieren gefunden und wurden ignoriert. @@ -3810,12 +3759,12 @@ Dateiendung nicht unterstützt. OpenLP.OpenLyricsImportError - + <lyrics> tag is missing. Ein <lyrics>-Tag fehlt. - + <verse> tag is missing. Ein <verse>-Tag fehlt. @@ -3823,42 +3772,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) @@ -3866,12 +3815,12 @@ Dateiendung nicht unterstützt. OpenLP.PrintServiceDialog - + Fit Page Auf Seite einpassen - + Fit Width An Breite anpassen @@ -3879,77 +3828,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: @@ -3957,12 +3906,12 @@ Dateiendung nicht unterstützt. OpenLP.ScreenList - + Screen Bildschirm - + primary Primär @@ -3970,12 +3919,12 @@ Dateiendung nicht unterstützt. OpenLP.ServiceItem - + <strong>Start</strong>: %s <strong>Anfang</strong>: %s - + <strong>Length</strong>: %s <strong>Spiellänge</strong>: %s @@ -3983,7 +3932,7 @@ Dateiendung nicht unterstützt. OpenLP.ServiceItemEditForm - + Reorder Service Item Reihenfolge der Bilder ändern @@ -3991,296 +3940,295 @@ 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. - - File missing from service + + Service File(s) Missing + + + + + The following file(s) in the service are missing: +%s - %s - -Continue saving? +These files will be removed if you continue to save. OpenLP.ServiceNoteForm - + Service Item Notes Elementnotiz @@ -4288,7 +4236,7 @@ Continue saving? OpenLP.SettingsForm - + Configure OpenLP Konfiguriere OpenLP @@ -4296,67 +4244,67 @@ Continue saving? 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... @@ -4364,172 +4312,172 @@ Continue saving? 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 @@ -4537,17 +4485,17 @@ Continue saving? OpenLP.SpellTextEdit - + Spelling Suggestions Rechtschreibvorschläge - + Formatting Tags Formatvorlagen - + Language: Sprache: @@ -4555,67 +4503,67 @@ Continue saving? 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. @@ -4623,559 +4571,559 @@ Continue saving? 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. - + You are unable to delete the default theme. Es ist nicht möglich das Standarddesign zu entfernen. - + Theme %s is used in the %s plugin. 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? - + Validation Error Validierungsfehler - + A theme with this name already exists. 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 - + Theme %s already exists. Do you want to replace it? - + Design »%s« existiert bereits. Möchten Sie es ersetzten? 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 - + 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 Vorschau und Speichern - + Preview the theme and save it. Vorschau des Designs zeigen und speichern. - + (approximately %d lines per slide) - + (ungefähr %d Zeilen pro Folie) - + Background Image Empty - + Hintergrundbild fehlt - + You have not selected a background image. Please select one before continuing. - + Sie müssen ein Hintergrundbild auswählen. - + 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. - + Theme Name Invalid - + Designname ungültig - + Invalid theme name. Please enter one. - + Ungültiger Designname. Bitte geben Sie einen gültigen Namen ein. 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 @@ -5183,315 +5131,315 @@ Continue saving? 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. @@ -5502,304 +5450,304 @@ Continue saving? 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. - + Importing Songs - + Lieder importieren 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 @@ -5808,50 +5756,50 @@ Continue saving? 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. @@ -5859,52 +5807,52 @@ Continue saving? 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. @@ -5912,17 +5860,17 @@ Continue saving? PresentationPlugin.PresentationTab - + Available Controllers Verwendete Präsentationsprogramme - + %s (unavailable) %s (nicht verfügbar) - + Allow presentation application to be overridden Überschreiben der Präsentationssoftware zulassen @@ -5930,24 +5878,24 @@ Continue saving? 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 @@ -5956,236 +5904,246 @@ Continue saving? RemotePlugin.Mobile - + OpenLP 2.0 Remote OpenLP 2.0 Fernsteuerung - + OpenLP 2.0 Stage View OpenLP 2.0 Bühnenmonitor - + Service Manager - Ablaufverwaltung + Ablauf - + 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 &amp; Go to Service Hinzufügen & zum Ablauf gehen + + + Service + Ablauf + + + + Slides + Live-Ansicht + 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://play.google.com/store/apps/details?id=org.openlp.android">download</a> to install the Android app from Google Play. - + Den QR Code einscannen oder auf <a href="https://play.google.com/store/apps/details?id=org.openlp.android">Herunterladen</a> klicken, um die Android Applikation von Google Play zu installieren. 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 @@ -6193,32 +6151,32 @@ Continue saving? 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. @@ -6226,42 +6184,42 @@ Continue saving? 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. @@ -6270,12 +6228,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. @@ -6283,112 +6241,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. @@ -6398,105 +6356,105 @@ 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. - + Reindexing songs - + Neuindizierung der Lieder 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? @@ -6504,7 +6462,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. @@ -6512,12 +6470,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] @@ -6529,12 +6487,12 @@ Easy Worship] SongsPlugin.EditBibleForm - + Meta Data Metadaten - + Custom Book Names Benutzerdefinierte Büchernamen @@ -6542,202 +6500,202 @@ 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. - + 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. @@ -6745,22 +6703,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. @@ -6768,82 +6726,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. @@ -6851,172 +6809,172 @@ 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 SundayPlus Lied Dateien - + This importer has been disabled. Dieser Import Typ wurde deaktiviert. - + MediaShout Database Media Shout Datenbestand - + The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. Der Import von MediaShout Datensätzen wird nur unter Windows unterstützt. Er wurde aufgrund fehlender Python Module deaktiviert. Wenn Sie diese Dateien importieren wollen, müssen sie das "pyodbc" Modul installieren. - + SongPro Text Files SongPro Text Dateien - + SongPro (Export File) SongPro (Export Datei) - + In SongPro, export your songs using the File -> Export menu Um in SongPro Dateien zu exportieren, nutzen Sie dort das Menü "Datei -> Export" @@ -7024,12 +6982,12 @@ Easy Worship] 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. @@ -7047,7 +7005,7 @@ Easy Worship] Liedtext - + CCLI License: CCLI-Lizenz: @@ -7057,7 +7015,7 @@ Easy Worship] Ganzes Lied - + Are you sure you want to delete the %n selected song(s)? Soll das markierte Lied wirklich gelöscht werden? @@ -7070,7 +7028,7 @@ Easy Worship] Autoren, Themen und Bücher verwalten. - + copy For song cloning Kopie @@ -7104,7 +7062,7 @@ Easy Worship] SongsPlugin.MediaShoutImport - + Unable to open the MediaShout database. Der MediaShout Datensatz kann nicht geöffnet werden. @@ -7112,7 +7070,7 @@ Easy Worship] SongsPlugin.OpenLP1SongImport - + Not a valid openlp.org 1.x song database. Keine gültige openlp.org 1.x Liederdatenbank. @@ -7120,7 +7078,7 @@ Easy Worship] SongsPlugin.OpenLPSongImport - + Not a valid OpenLP 2.0 song database. Keine gültige OpenLP 2.x Liederdatenbank. @@ -7128,7 +7086,7 @@ Easy Worship] SongsPlugin.OpenLyricsExport - + Exporting "%s"... Exportiere »%s«... @@ -7136,55 +7094,55 @@ 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. - + No %s files found. - + Keine %s Dateien gefunden. - + Invalid %s file. Unexpected byte value. - + Ungültige %s Datei. Unerwarteter Inhalt. - + Invalid %s file. Missing "TITLE" header. - + Ungültige »%s« Datei. Die "TITLE" Eigenschaft fehlt. - + Invalid %s file. Missing "COPYRIGHTLINE" header. - + Ungültige »%s« Datei. Die "COPYRIGHTLINE" Eigenschaft fehlt. 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. @@ -7192,12 +7150,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. @@ -7205,27 +7163,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 @@ -7233,107 +7191,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? @@ -7341,27 +7299,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 @@ -7369,17 +7327,17 @@ Easy Worship] SongsPlugin.TopicsForm - + Topic Maintenance Themenverwaltung - + Topic name: Thema: - + You need to type in a topic name. Ein Thema muss angegeben werden. @@ -7387,37 +7345,37 @@ Easy Worship] SongsPlugin.VerseType - + Verse Strophe - + Chorus Refrain - + Bridge Bridge - + Pre-Chorus Überleitung - + Intro Intro - + Ending Ende - + Other Anderes @@ -7425,29 +7383,29 @@ 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. - + Line %d: %s - + Zeile %d: %s - + Decoding error: %s - + Dekodier Fehler: %s - + Record %d - + Datensatz %d diff --git a/resources/i18n/el.ts b/resources/i18n/el.ts index f63fbf975..215998b39 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? Η ειδοποίηση δεν περιέχει '<>'. @@ -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. Υπήρξε πρόβλημα κατά την εξαγωγή των επιλεγμένων εδαφίων σας. Αν αυτό το σφάλμα επανεμφανιστεί σκεφτείτε να κάνετε μια αναφορά σφάλματος. @@ -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 completely delete "%s" Bible from OpenLP? You will need to re-import this Bible to use it again. @@ -1374,7 +1374,7 @@ You will need to re-import this Bible to use it again. BiblesPlugin.OpenSongImport - + Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. @@ -1382,7 +1382,7 @@ You will need to re-import this Bible to use it again. BiblesPlugin.Opensong - + Importing %s %s... Importing <book name> <chapter>... Εισαγωγή %s %s... @@ -1391,12 +1391,12 @@ You will need to re-import this Bible to use it again. BiblesPlugin.OsisImport - + Detecting encoding (this may take a few minutes)... Ανίχνευση κωδικοποίησης (μπορεί να χρειαστεί μερικά λεπτά)... - + Importing %s %s... Importing <book name> <chapter>... Εισαγωγή %s %s... @@ -1405,149 +1405,149 @@ You will need to re-import this Bible to use it again. 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. Δεν υπάρχουν Βίβλοι που χρειάζονται αναβάθμιση. @@ -1555,65 +1555,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. Προσθήκη της επιλεγμένης εξατομικευμένης διαφάνειας σε λειτουργία. @@ -1621,12 +1621,12 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I CustomPlugin.CustomTab - + Custom Display Εξατομικευμένη Προβολή - + Display footer Προβολή υποσέλιδου @@ -1634,62 +1634,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 Εισαγωγή Διαφάνειας @@ -1697,7 +1697,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I CustomPlugin.EditVerseForm - + Edit Slide @@ -1705,7 +1705,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 επιλεγμένη εξατομικευμένη διαφάνεια; @@ -1716,60 +1716,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. Προβολή της επιλεγμένης εικόνας σε λειτουργία. @@ -1777,7 +1777,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I ImagePlugin.ExceptionDialog - + Select Attachment Επιλογή Επισυναπτόμενου @@ -1785,44 +1785,44 @@ 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 Θέλετε να προσθέσετε τις άλλες εικόνες οπωσδήποτε; - + There was a problem replacing your background, the image file "%s" no longer exists. Υπήρξε πρόβλημα κατά την αντικατάσταση του φόντου, το αρχείο εικόνας "%s" δεν υπάρχει πια. - + There was no display item to amend. Δεν υπήρξε κανένα αντικείμενο προς απεικόνιση για διόρθωση. @@ -1830,17 +1830,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. Ορατό φόντο για εικόνες με διαφορετικές αναλογίες από την οθόνη. @@ -1848,60 +1848,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. Προσθήκη επιλεγμένων πολυμέσων σε λειτουργία. @@ -1909,57 +1909,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: Χρήση Προγράμματος Αναπαραγωγής: @@ -1967,22 +1967,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 Επιτρέψτε την παράκαμψη του προγράμματος αναπαραγωγής πολυμέσων @@ -1990,17 +1990,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? @@ -2012,32 +2012,55 @@ Should OpenLP upgrade now? OpenLP.AboutForm - + Credits Πιστώσεις - + License Άδεια - + 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. Αυτό το πρόγραμμα διανέμεται με την ελπίδα ότι θα είναι χρήσιμο, αλλά ΧΩΡΙΣ ΚΑΜΙΑ ΕΓΓΥΗΣΗ, χωρίς καν την συνεπαγόμενη εγγύηση ΕΜΠΟΡΙΚΟΤΗΤΑΣ ή ΧΡΗΣΗΣ ΓΙΑ ΣΥΓΚΕΚΡΙΜΕΝΟ ΣΚΟΠΟ. Δείτε παρακάτω για περισσότερες λεπτομέρειες. - + + Copyright © 2004-2012 %s +Portions copyright © 2004-2012 %s + Πνευματικά Δικαιώματα © 2004-2012 %s +Τμηματικά πνευματικά δικαιώματα © 2004-2012 %s + + + + 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. + +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 volunteering by using the button below. + + + + + Volunteer + + + + Project Lead %s @@ -2056,12 +2079,20 @@ Packagers Translators Afrikaans (af) %s + Czeck (cs) + %s + Danish (da) + %s German (de) %s + Greek (el) + %s English, United Kingdom (en_GB) %s English, South Africa (en_ZA) %s + Spanish (es) + %s Estonian (et) %s French (fr) @@ -2078,13 +2109,15 @@ Translators %s Russian (ru) %s + Swedish (sv) + %s Documentation %s Built With Python: http://www.python.org/ - Qt4: http://qt.nokia.com/ + Qt4: http://qt.digia.com/ PyQt4: http://www.riverbankcomputing.co.uk/software/pyqt/intro Oxygen Icons: http://oxygen-icons.org/ @@ -2099,268 +2132,185 @@ Final Credit on the cross, setting us free from sin. We bring this software to you for free because He has set us free. - Υπεύθυνοι Project -%s - -Ανάπτυξη -%s - -Συνεισφέροντες -%s - -Ελεγκτές -%s - -Packagers -%s - -Μεταφραστές -Αφρικανικά (af) -%s -Γερμανικά (de) -%s -Αγγλικά, Ηνωμένο Βασίλειο (en_GB) -%s -Αγγλικά, Νότιος Αφρική (en_ZA) -%s -Εσθονικά (et) -%s -Γαλλικά (fr) -%s -Ουγγρικά (hu) -%s -Ιαπωνικά (ja) -%s -Νορβηγικά Bokmål (nb) -%s -Ολλανδικά (nl) -%s -Πορτογαλικά, Βραζιλία (pt_BR) -%s -Ρώσικα (ru) -%s - -Documentation -%s - -Χτίστηκε με -Python: http://www.python.org/ -Qt4: http://qt.nokia.com/ -PyQt4: http://www.riverbankcomputing.co.uk/software/pyqt/intro -Oxygen Icons: http://oxygen-icons.org/ - -Final Credit -"Επειδή, με τέτοιον τρόπο αγάπησε ο Θεός τον κόσμο, -ώστε έδωσε τον Υιό του τον μονογενή, -για να μη χαθεί καθένας ο οποίος πιστεύει σ' αυτόν, -αλλά να έχει αιώνια ζωή." -- Ιωάννης 3:16 - -Τέλος οι ευχαριστίες μας πάνε στον -Πατέρα μας Θεό, γιατί έστειλε τον Υιό Του να πεθάνει -στον σταυρό, ελευθερώνοντάς μας από την αμαρτία. -Σας προσφέρουμε αυτό το πρόγραμμα δωρεάν επειδή -Αυτός μας ελευθέρωσε. - - - - Copyright © 2004-2012 %s -Portions copyright © 2004-2012 %s - Πνευματικά Δικαιώματα © 2004-2012 %s -Τμηματικά πνευματικά δικαιώματα © 2004-2012 %s - - - - 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. - -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 volunteering by using the button below. - - - - - Volunteer 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 @@ -2370,82 +2320,82 @@ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for Παράκαμψη Διαχειριστή Παραθύρων 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. @@ -2454,12 +2404,12 @@ This location will be used after OpenLP is closed. Η τοποθεσία αυτή θα χρησιμοποιηθεί αφού κλείσετε το OpenLP. - + Overwrite Existing Data Αντικατάσταση Υπάρχοντων Δεδομένων - + OpenLP data directory was not found %s @@ -2472,7 +2422,7 @@ Click "Yes" to reset the data directory to the default location. - + Are you sure you want to change the location of the OpenLP data directory to: %s @@ -2481,7 +2431,7 @@ The data directory will be changed when OpenLP is closed. - + WARNING: The location you have selected @@ -2495,39 +2445,39 @@ appears to contain OpenLP data files. Do you wish to replace these files with t 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 @@ -2535,24 +2485,24 @@ appears to contain OpenLP data files. Do you wish to replace these files with t OpenLP.ExceptionForm - + Platform: %s Πλατφόρμα: %s - + Save Crash Report Αποθήκευση Αναφοράς Σφάλματος - + Text files (*.txt *.log *.text) Αρχεία κειμένου (*.txt *.log *.text) - + **OpenLP Bug Report** Version: %s @@ -2583,7 +2533,7 @@ Version: %s - + *OpenLP Bug Report* Version: %s @@ -2619,17 +2569,17 @@ Version: %s OpenLP.FileRenameForm - + File Rename Μετονομασία Αρχείου - + New File Name: Νέο Όνομα Αρχείου: - + File Copy Αντιγραφή Αρχείου @@ -2637,17 +2587,17 @@ Version: %s OpenLP.FirstTimeLanguageForm - + Select Translation Επιλογή Μετάφρασης - + Choose the translation you'd like to use in OpenLP. Επιλέξτε την μετάφραση που θέλετε να χρησιμοποιήσετε στο OpenLP. - + Translation: Μετάφραση: @@ -2655,192 +2605,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. @@ -2849,7 +2799,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. @@ -2861,37 +2811,37 @@ 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 HTML Έναρξη HTML - + End HTML Τέλος HTML @@ -2899,32 +2849,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 έχει ήδη οριστεί. @@ -2932,82 +2882,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 Διακοπή @@ -3015,122 +2965,122 @@ 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 Εκκίνηση του ήχου υπόβαθρου σε παύση @@ -3140,12 +3090,12 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can Όρια Διαφάνειας Αντικειμένου Λειτουργίας - + Override display position: Αγνόηση θέσης εμφάνισης: - + Repeat track list Επανάληψη λίστας κομματιών @@ -3173,12 +3123,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 για να ενεργοποιηθεί η νέα γλώσσα. @@ -3186,7 +3136,7 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can OpenLP.MainDisplay - + OpenLP Display Προβολή του OpenLP @@ -3194,287 +3144,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/. @@ -3483,108 +3433,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. @@ -3593,43 +3543,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. @@ -3642,42 +3592,42 @@ 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 Σφάλμα Νέου Φακέλου Δεδομένων - + The file you selected does appear to be a valid OpenLP settings file. Section [%s] is not valid @@ -3686,12 +3636,12 @@ Processing has terminated and no changed have been made. - + Copying OpenLP data to new data directory location - %s - Please wait for copy to finish - + OpenLP Data directory copy failed %s @@ -3701,12 +3651,12 @@ Processing has terminated and no changed have been made. 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 @@ -3715,7 +3665,7 @@ Database: %s Βάση Δεδομένων: %s - + OpenLP cannot load your database. Database: %s @@ -3727,62 +3677,62 @@ 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 Κανένα Αποτέλεσμα Αναζήτησης - + Invalid File Type Ακατάλληλος Τύπος Αρχείου - + Invalid File %s. Suffix not supported Ακατάλληλο Αρχείο %s. @@ -3794,7 +3744,7 @@ Suffix not supported &Αντιγραφή - + Duplicate files were found on import and were ignored. Κατά την εισαγωγή των αρχείων βρέθηκαν διπλά αρχεία που αγνοήθηκαν. @@ -3802,12 +3752,12 @@ Suffix not supported OpenLP.OpenLyricsImportError - + <lyrics> tag is missing. Η ετικέτα <lyrics> απουσιάζει. - + <verse> tag is missing. Η ετικέτα <verse> απουσιάζει. @@ -3815,42 +3765,42 @@ Suffix not supported OpenLP.PluginForm - + Plugin List Λίστα Πρόσθετων - + Plugin Details Λεπτομέρειες Πρόσθετου - + Status: Κατάσταση: - + Active Ενεργό - + Inactive Ανενεργό - + %s (Inactive) %s (Ανενεργό) - + %s (Active) %s (Ενεργό) - + %s (Disabled) %s (Απενεργοποιημένο) @@ -3858,12 +3808,12 @@ Suffix not supported OpenLP.PrintServiceDialog - + Fit Page Πλάτος Σελίδας - + Fit Width Πλάτος Κειμένου @@ -3871,77 +3821,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: Εξατομικευμένο Κείμενο Υποσέλιδου: @@ -3949,12 +3899,12 @@ Suffix not supported OpenLP.ScreenList - + Screen Οθόνη - + primary Πρωτεύων @@ -3962,12 +3912,12 @@ Suffix not supported OpenLP.ServiceItem - + <strong>Start</strong>: %s <strong>Έναρξη</strong>: %s - + <strong>Length</strong>: %s <strong>Διάρκεια</strong>: %s @@ -3975,7 +3925,7 @@ Suffix not supported OpenLP.ServiceItemEditForm - + Reorder Service Item Ανακατανομή Αντικειμένων Λειτουργίας @@ -3983,296 +3933,295 @@ 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. Υπήρξε σφάλμα κατά την αποθήκευση του αρχείου σας. - - File missing from service + + Service File(s) Missing + + + + + The following file(s) in the service are missing: +%s - %s - -Continue saving? +These files will be removed if you continue to save. OpenLP.ServiceNoteForm - + Service Item Notes Σημειώσεις Αντικειμένου Λειτουργίας @@ -4280,7 +4229,7 @@ Continue saving? OpenLP.SettingsForm - + Configure OpenLP Ρύθμιση του OpenLP @@ -4288,67 +4237,67 @@ Continue saving? 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 Ρύθμιση Συντομεύσεων @@ -4356,172 +4305,172 @@ Continue saving? 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 Κομμάτια @@ -4529,17 +4478,17 @@ Continue saving? OpenLP.SpellTextEdit - + Spelling Suggestions Προτάσεις Ορθογραφίας - + Formatting Tags Ετικέτες Μορφοποίησης - + Language: Γλώσσα: @@ -4547,67 +4496,67 @@ Continue saving? 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. Το κόκκινο κουτί δείχνει το υποσέλιδο. @@ -4615,198 +4564,198 @@ Continue saving? 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. Πρέπει να επιλέξετε ένα θέμα προς επεξεργασία. - + You are unable to delete the default theme. Δεν μπορείτε να διαγράψετε το προκαθορισμένο θέμα. - + Theme %s is used in the %s plugin. Το Θέμα %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; - + Validation Error Σφάλμα Ελέγχου - + A theme with this name already exists. Υπάρχει ήδη θέμα με αυτό το όνομα. - + OpenLP Themes (*.theme *.otz) Θέματα OpenLP (*.theme *.otz) - + Copy of %s Copy of <theme name> Αντιγραφή του %s - + Theme Already Exists Ήδη Υπαρκτό Θέμα - + Theme %s already exists. Do you want to replace it? @@ -4814,312 +4763,312 @@ Continue saving? 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 Χρήση προκαθορισμένης θέσης - + 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. - + (approximately %d lines per slide) - + Background Image Empty - + You have not selected a background image. Please select one before continuing. - + Select Image - + Theme Name Missing - + There is no name for this theme. Please enter one. - + Theme Name Invalid - + Invalid theme name. Please enter one. @@ -5127,47 +5076,47 @@ Continue saving? 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 Θέματα @@ -5175,315 +5124,315 @@ Continue saving? 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 αρχείο από το οποίο να γίνει εισαγωγή. @@ -5494,278 +5443,278 @@ Continue saving? Καλωσορίσατε στον Οδηγό Εισαγωγής Βίβλου - + 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 φάκελο από τον οποίο θα γίνει εισαγωγή. - + Importing Songs @@ -5773,25 +5722,25 @@ Continue saving? 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 @@ -5800,50 +5749,50 @@ Continue saving? 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. Πρόσθεση της επιλεγμένης παρουσίασης στην λειτουργία. @@ -5851,52 +5800,52 @@ Continue saving? 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 δεν υπάρχει πλέον. @@ -5904,17 +5853,17 @@ Continue saving? PresentationPlugin.PresentationTab - + Available Controllers Διαθέσιμοι Ελεγκτές - + %s (unavailable) %s (μη διαθέσιμο) - + Allow presentation application to be overridden Επιτρέψτε την παράκαμψη του προγράμματος παρουσίασης @@ -5922,24 +5871,24 @@ Continue saving? 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 Απομακρυσμένη Πρόσβαση @@ -5948,150 +5897,160 @@ Continue saving? 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 &amp; Go to Service Προσθήκη &amp; Μετάβαση στην Λειτουργία + + + Service + Λειτουργία + + + + Slides + + 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://play.google.com/store/apps/details?id=org.openlp.android">download</a> to install the Android app from Google Play. @@ -6099,85 +6058,85 @@ Continue saving? 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 εκτυπώθηκε @@ -6185,32 +6144,32 @@ Continue saving? 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. Επιλέξτε την ημερομηνία έως την οποία τα δεδομένα χρησης ύμνων θα πρέπει να διαγραφούν. Όλα τα δεδομένα πριν από αυτήν την ημερομηνία θα διαγραφούν οριστικά. @@ -6218,42 +6177,42 @@ Continue saving? 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. @@ -6262,12 +6221,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. Δεν θέσατε έγκυρη τοποθεσία για την εξαγωγή της αναφοράς χρήσης ύμνων. Παρακαλούμε επιλέξτε μια υπάρχουσα τοποθεσία στον υπολογιστή σας. @@ -6275,112 +6234,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. @@ -6389,67 +6348,67 @@ 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. Προσθήκη του επιλεγμένου ύμνου στην λειτουργία. - + Reindexing songs @@ -6457,37 +6416,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? Δεν δηλώσατε εμφανιζομενο όνομα συγγραφέα, να συνδυαστούν όνομα και επίθετο; @@ -6495,7 +6454,7 @@ The encoding is responsible for the correct character representation. SongsPlugin.CCLIFileImport - + The file does not have a valid extension. Το αρχείο δεν έχει έγκυρη επέκταση. @@ -6503,12 +6462,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] @@ -6520,12 +6479,12 @@ The encoding is responsible for the correct character representation. SongsPlugin.EditBibleForm - + Meta Data Meta Data - + Custom Book Names Παραμετροποιημένα Ονόματα Βιβλίων @@ -6533,202 +6492,202 @@ 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. Πρέπει να έχετε έναν συγγραφέα για αυτόν τον ύμνο. - + 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. @@ -6736,22 +6695,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. Διαχωρισμός μιας διαφάνειας σε δύο με εισαγωγή ενός διαχωριστή στροφών. @@ -6759,82 +6718,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>. @@ -6842,172 +6801,172 @@ 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 - + This importer has been disabled. - + MediaShout Database - + The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. - + SongPro Text Files - + SongPro (Export File) - + In SongPro, export your songs using the File -> Export menu @@ -7015,12 +6974,12 @@ The encoding is responsible for the correct character representation. 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 για να τα εισάγετε σε αυτόν τον ύμνο. @@ -7038,7 +6997,7 @@ The encoding is responsible for the correct character representation. Στίχοι - + CCLI License: Άδεια CCLI: @@ -7048,7 +7007,7 @@ The encoding is responsible for the correct character representation. Ολόκληρος Ύμνος - + Are you sure you want to delete the %n selected song(s)? Είστε σίγουροι ότι θέλετε να διαγράψετε τον %n επιλεγμένο ύμνο; @@ -7061,7 +7020,7 @@ The encoding is responsible for the correct character representation. Διατήρηση της λίστας συγγραφέων, θεμάτων και βιβλίων. - + copy For song cloning αντιγραφή @@ -7095,7 +7054,7 @@ The encoding is responsible for the correct character representation. SongsPlugin.MediaShoutImport - + Unable to open the MediaShout database. @@ -7103,7 +7062,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. @@ -7111,7 +7070,7 @@ The encoding is responsible for the correct character representation. SongsPlugin.OpenLPSongImport - + Not a valid OpenLP 2.0 song database. Μη έγκυρη βάση δεδομένων OpenLP 2.0. @@ -7119,7 +7078,7 @@ The encoding is responsible for the correct character representation. SongsPlugin.OpenLyricsExport - + Exporting "%s"... Εξαγωγή "%s"... @@ -7127,32 +7086,32 @@ The encoding is responsible for the correct character representation. SongsPlugin.PowerSongImport - + No songs to import. Κανένας ύμνος προς εισαγωγή. - + Verses not found. Missing "PART" header. Δεν βρέθηκαν εδάφια. Απουσιάζει η κεφαλίδα "PART". - + No %s files found. - + Invalid %s file. Unexpected byte value. - + Invalid %s file. Missing "TITLE" header. - + Invalid %s file. Missing "COPYRIGHTLINE" header. @@ -7160,22 +7119,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. Πρέπει να δώσετε ένα όνομα για το βιβλίο. @@ -7183,12 +7142,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>. @@ -7196,27 +7155,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 Το αρχείο δεν βρέθηκε @@ -7224,107 +7183,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; @@ -7332,27 +7291,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 Εισαγωγή απόντων ύμνων από αρχεία λειτουργίας @@ -7360,17 +7319,17 @@ The encoding is responsible for the correct character representation. SongsPlugin.TopicsForm - + Topic Maintenance Συντήρηση Κατηγοριών - + Topic name: Όνομα κατηγορίας: - + You need to type in a topic name. Πρέπει να δώσετε ένα όνομα κατηγορίας. @@ -7378,37 +7337,37 @@ The encoding is responsible for the correct character representation. SongsPlugin.VerseType - + Verse Εδάφιο - + Chorus Ρεφραίν - + Bridge Γέφυρα - + Pre-Chorus Προ-Ρεφραίν - + Intro Εισαγωγή - + Ending Τέλος - + Other Άλλο @@ -7416,27 +7375,27 @@ The encoding is responsible for the correct character representation. SongsPlugin.ZionWorxImport - + Error reading CSV file. Σφάλμα κατά την ανάγνωση του αρχείου CSV. - + File not valid ZionWorx CSV format. Το αρχείο δεν έχει την κατάλληλη μορφή του ZionWorx CSV. - + Line %d: %s - + Decoding error: %s - + Record %d diff --git a/resources/i18n/en.ts b/resources/i18n/en.ts index 9ea4e7e6c..da253afaf 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 '<>'. @@ -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. @@ -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 completely delete "%s" Bible from OpenLP? You will need to re-import this Bible to use it again. @@ -1376,7 +1376,7 @@ You will need to re-import this Bible to use it again. BiblesPlugin.OpenSongImport - + Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. @@ -1384,7 +1384,7 @@ You will need to re-import this Bible to use it again. BiblesPlugin.Opensong - + Importing %s %s... Importing <book name> <chapter>... Importing %s %s... @@ -1393,12 +1393,12 @@ You will need to re-import this Bible to use it again. 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... @@ -1407,149 +1407,149 @@ You will need to re-import this Bible to use it again. 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. @@ -1557,65 +1557,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. @@ -1623,12 +1623,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 @@ -1636,62 +1636,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 @@ -1699,7 +1699,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I CustomPlugin.EditVerseForm - + Edit Slide Edit Slide @@ -1707,7 +1707,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)? @@ -1718,60 +1718,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. @@ -1779,7 +1779,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I ImagePlugin.ExceptionDialog - + Select Attachment Select Attachment @@ -1787,44 +1787,44 @@ 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 Do you want to add the other images anyway? - + There was a problem replacing your background, the image file "%s" no longer exists. There was a problem replacing your background, the image file "%s" no longer exists. - + There was no display item to amend. There was no display item to amend. @@ -1832,17 +1832,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. @@ -1850,60 +1850,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. @@ -1911,57 +1911,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: @@ -1969,22 +1969,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 @@ -1992,17 +1992,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? @@ -2014,32 +2014,61 @@ Should OpenLP upgrade now? OpenLP.AboutForm - + Credits Credits - + License License - + 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. - + + Copyright © 2004-2012 %s +Portions copyright © 2004-2012 %s + Copyright © 2004-2012 %s +Portions copyright © 2004-2012 %s + + + + 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. + +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 volunteering by using the button below. + OpenLP <version><revision> - Open Source Lyrics Projection + +OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if Impress, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. + +Find out more about OpenLP: http://openlp.org/ + +OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider volunteering by using the button below. + + + + Volunteer + Volunteer + + + Project Lead %s @@ -2058,12 +2087,20 @@ Packagers Translators Afrikaans (af) %s + Czeck (cs) + %s + Danish (da) + %s German (de) %s + Greek (el) + %s English, United Kingdom (en_GB) %s English, South Africa (en_ZA) %s + Spanish (es) + %s Estonian (et) %s French (fr) @@ -2080,13 +2117,15 @@ Translators %s Russian (ru) %s + Swedish (sv) + %s Documentation %s Built With Python: http://www.python.org/ - Qt4: http://qt.nokia.com/ + Qt4: http://qt.digia.com/ PyQt4: http://www.riverbankcomputing.co.uk/software/pyqt/intro Oxygen Icons: http://oxygen-icons.org/ @@ -2101,274 +2140,185 @@ Final Credit on the cross, setting us free from sin. We bring this software to you for free because He has set us free. - Project Lead - %s - -Developers - %s - -Contributors - %s - -Testers - %s - -Packagers - %s - -Translators - Afrikaans (af) - %s - German (de) - %s - English, United Kingdom (en_GB) - %s - English, South Africa (en_ZA) - %s - Estonian (et) - %s - French (fr) - %s - Hungarian (hu) - %s - Japanese (ja) - %s - Norwegian Bokmål (nb) - %s - Dutch (nl) - %s - Portuguese, Brazil (pt_BR) - %s - Russian (ru) - %s - -Documentation - %s - -Built With - Python: http://www.python.org/ - Qt4: http://qt.nokia.com/ - PyQt4: http://www.riverbankcomputing.co.uk/software/pyqt/intro - Oxygen Icons: http://oxygen-icons.org/ - -Final Credit - "For God so loved the world that He gave - His one and only Son, so that whoever - believes in Him will not perish but inherit - eternal life." -- John 3:16 - - And last but not least, final credit goes to - God our Father, for sending His Son to die - on the cross, setting us free from sin. We - bring this software to you for free because - He has set us free. - - - - Copyright © 2004-2012 %s -Portions copyright © 2004-2012 %s - Copyright © 2004-2012 %s -Portions copyright © 2004-2012 %s - - - - 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. - -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 volunteering by using the button below. - OpenLP <version><revision> - Open Source Lyrics Projection - -OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if Impress, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. - -Find out more about OpenLP: http://openlp.org/ - -OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider volunteering by using the button below. - - - - Volunteer - Volunteer + 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 @@ -2378,82 +2328,82 @@ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for 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. @@ -2462,12 +2412,12 @@ This location will be used after OpenLP is closed. This location will be used after OpenLP is closed. - + Overwrite Existing Data Overwrite Existing Data - + OpenLP data directory was not found %s @@ -2488,7 +2438,7 @@ Click "No" to stop loading OpenLP. allowing you to fix the the problem Click "Yes" to reset the data directory to the default location. - + Are you sure you want to change the location of the OpenLP data directory to: %s @@ -2501,7 +2451,7 @@ The data directory will be changed when OpenLP is closed. The data directory will be changed when OpenLP is closed. - + WARNING: The location you have selected @@ -2521,39 +2471,39 @@ appears to contain OpenLP data files. Do you wish to replace these files with t 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 @@ -2561,24 +2511,24 @@ appears to contain OpenLP data files. Do you wish to replace these files with t 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 @@ -2609,7 +2559,7 @@ Version: %s - + *OpenLP Bug Report* Version: %s @@ -2644,17 +2594,17 @@ Version: %s OpenLP.FileRenameForm - + File Rename File Rename - + New File Name: New File Name: - + File Copy File Copy @@ -2662,17 +2612,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: @@ -2680,192 +2630,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. @@ -2874,7 +2824,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. @@ -2886,37 +2836,37 @@ 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 HTML Start HTML - + End HTML End HTML @@ -2924,32 +2874,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. @@ -2957,82 +2907,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 @@ -3040,122 +2990,122 @@ 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 @@ -3165,12 +3115,12 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can Service Item Slide Limits - + Override display position: Override display position: - + Repeat track list Repeat track list @@ -3198,12 +3148,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. @@ -3211,7 +3161,7 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can OpenLP.MainDisplay - + OpenLP Display OpenLP Display @@ -3219,287 +3169,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/. @@ -3508,108 +3458,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. @@ -3618,43 +3568,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. @@ -3667,42 +3617,42 @@ 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 - + The file you selected does appear to be a valid OpenLP settings file. Section [%s] is not valid @@ -3715,12 +3665,12 @@ Section [%s] is not valid Processing has terminated and no changed have been made. - + Copying OpenLP data to new data directory location - %s - Please wait for copy to finish Copying OpenLP data to new data directory location - %s - Please wait for copy to finish - + OpenLP Data directory copy failed %s @@ -3732,12 +3682,12 @@ Processing has terminated and no changed have been made. 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 @@ -3746,7 +3696,7 @@ Database: %s Database: %s - + OpenLP cannot load your database. Database: %s @@ -3758,62 +3708,62 @@ 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 - + Invalid File Type Invalid File Type - + Invalid File %s. Suffix not supported Invalid File %s. @@ -3825,7 +3775,7 @@ Suffix not supported &Clone - + Duplicate files were found on import and were ignored. Duplicate files were found on import and were ignored. @@ -3833,12 +3783,12 @@ Suffix not supported OpenLP.OpenLyricsImportError - + <lyrics> tag is missing. <lyrics> tag is missing. - + <verse> tag is missing. <verse> tag is missing. @@ -3846,42 +3796,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) @@ -3889,12 +3839,12 @@ Suffix not supported OpenLP.PrintServiceDialog - + Fit Page Fit Page - + Fit Width Fit Width @@ -3902,77 +3852,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: @@ -3980,12 +3930,12 @@ Suffix not supported OpenLP.ScreenList - + Screen Screen - + primary primary @@ -3993,12 +3943,12 @@ Suffix not supported OpenLP.ServiceItem - + <strong>Start</strong>: %s <strong>Start</strong>: %s - + <strong>Length</strong>: %s <strong>Length</strong>: %s @@ -4006,7 +3956,7 @@ Suffix not supported OpenLP.ServiceItemEditForm - + Reorder Service Item Reorder Service Item @@ -4014,300 +3964,295 @@ 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. - - File missing from service + + Service File(s) Missing + + + + + The following file(s) in the service are missing: +%s - %s - -Continue saving? - File missing from service - - %s - -Continue saving? +These files will be removed if you continue to save. + OpenLP.ServiceNoteForm - + Service Item Notes Service Item Notes @@ -4315,7 +4260,7 @@ Continue saving? OpenLP.SettingsForm - + Configure OpenLP Configure OpenLP @@ -4323,67 +4268,67 @@ Continue saving? 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 @@ -4391,172 +4336,172 @@ Continue saving? 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 @@ -4564,17 +4509,17 @@ Continue saving? OpenLP.SpellTextEdit - + Spelling Suggestions Spelling Suggestions - + Formatting Tags Formatting Tags - + Language: Language: @@ -4582,67 +4527,67 @@ Continue saving? 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. @@ -4650,198 +4595,198 @@ Continue saving? 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. - + You are unable to delete the default theme. You are unable to delete the default theme. - + Theme %s is used in the %s plugin. 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? - + Validation Error Validation Error - + A theme with this name already exists. 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 - + Theme %s already exists. Do you want to replace it? Theme %s already exists. Do you want to replace it? @@ -4849,312 +4794,312 @@ Continue saving? 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 - + 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 and Save - + Preview the theme and save it. Preview the theme and save it. - + (approximately %d lines per slide) (approximately %d lines per slide) - + Background Image Empty Background Image Empty - + You have not selected a background image. Please select one before continuing. You have not selected a background image. Please select one before continuing. - + 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. @@ -5162,47 +5107,47 @@ Continue saving? 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 @@ -5210,315 +5155,315 @@ Continue saving? 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. @@ -5529,278 +5474,278 @@ Continue saving? 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. - + Importing Songs Importing Songs @@ -5808,25 +5753,25 @@ Continue saving? 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 @@ -5835,50 +5780,50 @@ Continue saving? 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. @@ -5886,52 +5831,52 @@ Continue saving? 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. @@ -5939,17 +5884,17 @@ Continue saving? PresentationPlugin.PresentationTab - + Available Controllers Available Controllers - + %s (unavailable) %s (unavailable) - + Allow presentation application to be overridden Allow presentation application to be overridden @@ -5957,24 +5902,24 @@ Continue saving? 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 @@ -5983,150 +5928,160 @@ Continue saving? 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 &amp; Go to Service Add &amp; Go to Service + + + Service + Service + + + + Slides + Slides + 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://play.google.com/store/apps/details?id=org.openlp.android">download</a> to install the Android app from Google Play. Scan the QR code or click <a href="https://play.google.com/store/apps/details?id=org.openlp.android">download</a> to install the Android app from Google Play. @@ -6134,85 +6089,85 @@ Continue saving? 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 @@ -6220,32 +6175,32 @@ Continue saving? 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. @@ -6253,42 +6208,42 @@ Continue saving? 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. @@ -6297,12 +6252,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. @@ -6310,112 +6265,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. @@ -6424,67 +6379,67 @@ 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. - + Reindexing songs Reindexing songs @@ -6492,37 +6447,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? @@ -6530,7 +6485,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. @@ -6538,12 +6493,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] @@ -6555,12 +6510,12 @@ The encoding is responsible for the correct character representation. SongsPlugin.EditBibleForm - + Meta Data Meta Data - + Custom Book Names Custom Book Names @@ -6568,202 +6523,202 @@ 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. - + 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. @@ -6771,22 +6726,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. @@ -6794,82 +6749,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. @@ -6877,172 +6832,172 @@ 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 SundayPlus Song Files - + This importer has been disabled. This importer has been disabled. - + MediaShout Database MediaShout Database - + The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. - + SongPro Text Files SongPro Text Files - + SongPro (Export File) SongPro (Export File) - + In SongPro, export your songs using the File -> Export menu In SongPro, export your songs using the File -> Export menu @@ -7050,12 +7005,12 @@ The encoding is responsible for the correct character representation. 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. @@ -7073,7 +7028,7 @@ The encoding is responsible for the correct character representation.Lyrics - + CCLI License: CCLI License: @@ -7083,7 +7038,7 @@ The encoding is responsible for the correct character representation.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)? @@ -7096,7 +7051,7 @@ The encoding is responsible for the correct character representation.Maintain the lists of authors, topics and books. - + copy For song cloning copy @@ -7130,7 +7085,7 @@ The encoding is responsible for the correct character representation. SongsPlugin.MediaShoutImport - + Unable to open the MediaShout database. Unable to open the MediaShout database. @@ -7138,7 +7093,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. @@ -7146,7 +7101,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. @@ -7154,7 +7109,7 @@ The encoding is responsible for the correct character representation. SongsPlugin.OpenLyricsExport - + Exporting "%s"... Exporting "%s"... @@ -7162,32 +7117,32 @@ 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. - + No %s files found. No %s files found. - + Invalid %s file. Unexpected byte value. Invalid %s file. Unexpected byte value. - + Invalid %s file. Missing "TITLE" header. Invalid %s file. Missing "TITLE" header. - + Invalid %s file. Missing "COPYRIGHTLINE" header. Invalid %s file. Missing "COPYRIGHTLINE" header. @@ -7195,22 +7150,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. @@ -7218,12 +7173,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. @@ -7231,27 +7186,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 @@ -7259,107 +7214,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? @@ -7367,27 +7322,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 @@ -7395,17 +7350,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. @@ -7413,37 +7368,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 @@ -7451,27 +7406,27 @@ 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. - + Line %d: %s Line %d: %s - + Decoding error: %s Decoding error: %s - + Record %d Record %d diff --git a/resources/i18n/en_GB.ts b/resources/i18n/en_GB.ts index 7f38b48ee..c82735ad4 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 '<>'. @@ -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. @@ -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 completely delete "%s" Bible from OpenLP? You will need to re-import this Bible to use it again. @@ -1376,7 +1376,7 @@ You will need to re-import this Bible to use it again. BiblesPlugin.OpenSongImport - + Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. @@ -1384,7 +1384,7 @@ You will need to re-import this Bible to use it again. BiblesPlugin.Opensong - + Importing %s %s... Importing <book name> <chapter>... Importing %s %s... @@ -1393,12 +1393,12 @@ You will need to re-import this Bible to use it again. 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... @@ -1407,149 +1407,149 @@ You will need to re-import this Bible to use it again. 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. @@ -1557,65 +1557,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. @@ -1623,12 +1623,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 @@ -1636,62 +1636,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 @@ -1699,7 +1699,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I CustomPlugin.EditVerseForm - + Edit Slide Edit Slide @@ -1707,7 +1707,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)? @@ -1718,60 +1718,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. @@ -1779,7 +1779,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I ImagePlugin.ExceptionDialog - + Select Attachment Select Attachment @@ -1787,44 +1787,44 @@ 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 Do you want to add the other images anyway? - + There was a problem replacing your background, the image file "%s" no longer exists. There was a problem replacing your background, the image file "%s" no longer exists. - + There was no display item to amend. There was no display item to amend. @@ -1832,17 +1832,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. @@ -1850,60 +1850,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. @@ -1911,57 +1911,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: @@ -1969,22 +1969,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 @@ -1992,17 +1992,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? @@ -2014,32 +2014,61 @@ Should OpenLP upgrade now? OpenLP.AboutForm - + Credits Credits - + License Licence - + 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 Licence as published by the Free Software Foundation; version 2 of the Licence. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See below for more details. 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. - + + Copyright © 2004-2012 %s +Portions copyright © 2004-2012 %s + Copyright © 2004-2012 %s +Portions copyright © 2004-2012 %s + + + + 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. + +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 volunteering by using the button below. + OpenLP <version><revision> - Open Source Lyrics Projection + +OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if Impress, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. + +Find out more about OpenLP: http://openlp.org/ + +OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider volunteering by using the button below. + + + + Volunteer + Volunteer + + + Project Lead %s @@ -2058,12 +2087,20 @@ Packagers Translators Afrikaans (af) %s + Czeck (cs) + %s + Danish (da) + %s German (de) %s + Greek (el) + %s English, United Kingdom (en_GB) %s English, South Africa (en_ZA) %s + Spanish (es) + %s Estonian (et) %s French (fr) @@ -2080,13 +2117,15 @@ Translators %s Russian (ru) %s + Swedish (sv) + %s Documentation %s Built With Python: http://www.python.org/ - Qt4: http://qt.nokia.com/ + Qt4: http://qt.digia.com/ PyQt4: http://www.riverbankcomputing.co.uk/software/pyqt/intro Oxygen Icons: http://oxygen-icons.org/ @@ -2101,268 +2140,185 @@ Final Credit on the cross, setting us free from sin. We bring this software to you for free because He has set us free. - Project Lead - %s - -Developers - %s - -Contributors - %s - -Testers - %s - -Packagers - %s - -Translators - Afrikaans (af) - %s - German (de) - %s - English, United Kingdom (en_GB) - %s - English, South Africa (en_ZA) - %s - Estonian (et) - %s - French (fr) - %s - Hungarian (hu) - %s - Japanese (ja) - %s - Norwegian Bokmål (nb) - %s - Dutch (nl) - %s - Portuguese, Brazil (pt_BR) - %s - Russian (ru) - %s - -Documentation - %s - -Built With - Python: http://www.python.org/ - Qt4: http://qt.nokia.com/ - PyQt4: http://www.riverbankcomputing.co.uk/software/pyqt/intro - Oxygen Icons: http://oxygen-icons.org/ - -Final Credit - "For God so loved the world that He gave - His one and only Son, so that whoever - believes in Him will not perish but inherit - eternal life." -- John 3:16 - - And last but not least, final credit goes to - God our Father, for sending His Son to die - on the cross, setting us free from sin. We - bring this software to you for free because - He has set us free. - - - - Copyright © 2004-2012 %s -Portions copyright © 2004-2012 %s - Copyright © 2004-2012 %s -Portions copyright © 2004-2012 %s - - - - 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. - -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 volunteering by using the button below. - - - - - Volunteer 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 colour: - + 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 colour. - + 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 @@ -2372,82 +2328,82 @@ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for 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. @@ -2456,12 +2412,12 @@ This location will be used after OpenLP is closed. This location will be used after OpenLP is closed. - + Overwrite Existing Data Overwrite Existing Data - + OpenLP data directory was not found %s @@ -2471,19 +2427,31 @@ This data directory was previously changed from the OpenLP default location. If Click "No" to stop loading OpenLP. allowing you to fix the the problem. Click "Yes" to reset the data directory to the default location. - + OpenLP data directory was not found + +%s + +This data directory was previously changed from the OpenLP default location. If the new location was on removable media, that media needs to be made available. + +Click "No" to stop loading OpenLP. allowing you to fix the the problem. + +Click "Yes" to reset the data directory to the default location. - + Are you sure you want to change the location of the OpenLP data directory to: %s The data directory will be changed when OpenLP is closed. - + Are you sure you want to change the location of the OpenLP data directory to: + +%s + +The data directory will be changed when OpenLP is closed. - + WARNING: The location you have selected @@ -2491,45 +2459,51 @@ The location you have selected %s appears to contain OpenLP data files. Do you wish to replace these files with the current data files? - + WARNING: + +The location you have selected + +%s + +appears to contain OpenLP data files. Do you wish to replace these files with the current data files? 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 @@ -2537,24 +2511,24 @@ appears to contain OpenLP data files. Do you wish to replace these files with t 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 @@ -2585,7 +2559,7 @@ Version: %s - + *OpenLP Bug Report* Version: %s @@ -2620,17 +2594,17 @@ Version: %s OpenLP.FileRenameForm - + File Rename File Rename - + New File Name: New File Name: - + File Copy File Copy @@ -2638,17 +2612,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: @@ -2656,192 +2630,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. @@ -2850,7 +2824,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. @@ -2862,37 +2836,37 @@ 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 HTML Start HTML - + End HTML End HTML @@ -2900,32 +2874,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. @@ -2933,82 +2907,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 @@ -3016,122 +2990,122 @@ 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 @@ -3141,12 +3115,12 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can Service Item Slide Limits - + Override display position: Override display position: - + Repeat track list Repeat track list @@ -3174,12 +3148,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. @@ -3187,7 +3161,7 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can OpenLP.MainDisplay - + OpenLP Display OpenLP Display @@ -3195,287 +3169,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/. @@ -3483,108 +3457,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 (United Kingdom) - + 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. @@ -3593,43 +3567,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. @@ -3642,71 +3616,77 @@ 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 - + The file you selected does appear to be a valid OpenLP settings file. Section [%s] is not valid Processing has terminated and no changed have been made. - + The file you selected does appear to be a valid OpenLP settings file. + +Section [%s] is not valid + +Processing has terminated and no changed have been made. - + Copying OpenLP data to new data directory location - %s - Please wait for copy to finish - + Copying OpenLP data to new data directory location - %s - Please wait for copy to finish - + OpenLP Data directory copy failed %s - + OpenLP Data directory copy failed + +%s 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 @@ -3715,7 +3695,7 @@ Database: %s Database: %s - + OpenLP cannot load your database. Database: %s @@ -3727,62 +3707,62 @@ 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 - + Invalid File Type Invalid File Type - + Invalid File %s. Suffix not supported Invalid File %s. @@ -3794,7 +3774,7 @@ Suffix not supported &Clone - + Duplicate files were found on import and were ignored. Duplicate files were found on import and were ignored. @@ -3802,12 +3782,12 @@ Suffix not supported OpenLP.OpenLyricsImportError - + <lyrics> tag is missing. <lyrics> tag is missing. - + <verse> tag is missing. <verse> tag is missing. @@ -3815,42 +3795,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) @@ -3858,12 +3838,12 @@ Suffix not supported OpenLP.PrintServiceDialog - + Fit Page Fit Page - + Fit Width Fit Width @@ -3871,77 +3851,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: @@ -3949,12 +3929,12 @@ Suffix not supported OpenLP.ScreenList - + Screen Screen - + primary primary @@ -3962,12 +3942,12 @@ Suffix not supported OpenLP.ServiceItem - + <strong>Start</strong>: %s <strong>Start</strong>: %s - + <strong>Length</strong>: %s <strong>Length</strong>: %s @@ -3975,7 +3955,7 @@ Suffix not supported OpenLP.ServiceItemEditForm - + Reorder Service Item Reorder Service Item @@ -3983,296 +3963,295 @@ 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. - - File missing from service + + Service File(s) Missing + + + + + The following file(s) in the service are missing: +%s - %s - -Continue saving? +These files will be removed if you continue to save. OpenLP.ServiceNoteForm - + Service Item Notes Service Item Notes @@ -4280,7 +4259,7 @@ Continue saving? OpenLP.SettingsForm - + Configure OpenLP Configure OpenLP @@ -4288,67 +4267,67 @@ Continue saving? 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 @@ -4356,172 +4335,172 @@ Continue saving? 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 @@ -4529,17 +4508,17 @@ Continue saving? OpenLP.SpellTextEdit - + Spelling Suggestions Spelling Suggestions - + Formatting Tags Formatting Tags - + Language: Language: @@ -4547,67 +4526,67 @@ Continue saving? 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. @@ -4615,559 +4594,559 @@ Continue saving? 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. - + You are unable to delete the default theme. You are unable to delete the default theme. - + Theme %s is used in the %s plugin. 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? - + Validation Error Validation Error - + A theme with this name already exists. 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 - + Theme %s already exists. Do you want to replace it? - + Theme %s already exists. Do you want to replace it? OpenLP.ThemeWizard - + Theme Wizard Theme Wizard - + Welcome to the Theme Wizard Welcome to the Theme Wizard - + Set Up Background Set Up Background - + Set up your theme's background according to the parameters below. Set up your theme's background according to the parameters below. - + Background type: Background type: - + Solid Color Solid Colour - + Gradient Gradient - + Color: Colour: - + Gradient: Gradient: - + Horizontal Horizontal - + Vertical Vertical - + Circular Circular - + Top Left - Bottom Right Top Left - Bottom Right - + Bottom Left - Top Right Bottom Left - Top Right - + Main Area Font Details Main Area Font Details - + Define the font and display characteristics for the Display text Define the font and display characteristics for the Display text - + Font: Font: - + Size: Size: - + Line Spacing: Line Spacing: - + &Outline: &Outline: - + &Shadow: &Shadow: - + Bold Bold - + Italic Italic - + Footer Area Font Details Footer Area Font Details - + Define the font and display characteristics for the Footer text Define the font and display characteristics for the Footer text - + Text Formatting Details Text Formatting Details - + Allows additional display formatting information to be defined Allows additional display formatting information to be defined - + Horizontal Align: Horizontal Align: - + Left Left - + Right Right - + Center Centre - + Output Area Locations Output Area Locations - + Allows you to change and move the main and footer areas. Allows you to change and move the main and footer areas. - + &Main Area &Main Area - + &Use default location &Use default location - + X position: X position: - + px px - + Y position: Y position: - + Width: Width: - + Height: Height: - + Use default location Use default location - + 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 and Save - + Preview the theme and save it. Preview the theme and save it. - + (approximately %d lines per slide) - + (approximately %d lines per slide) - + Background Image Empty - + Background Image Empty - + You have not selected a background image. Please select one before continuing. - + You have not selected a background image. Please select one before continuing. - + 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. 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 @@ -5175,315 +5154,315 @@ Continue saving? 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. @@ -5494,304 +5473,304 @@ Continue saving? 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. - + Importing Songs - + Importing Songs 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 @@ -5800,50 +5779,50 @@ Continue saving? 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. @@ -5851,52 +5830,52 @@ Continue saving? 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. @@ -5904,17 +5883,17 @@ Continue saving? PresentationPlugin.PresentationTab - + Available Controllers Available Controllers - + %s (unavailable) %s (unavailable) - + Allow presentation application to be overridden Allow presentation application to be overridden @@ -5922,24 +5901,24 @@ Continue saving? 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 @@ -5948,236 +5927,246 @@ Continue saving? 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 &amp; Go to Service Add &amp; Go to Service + + + Service + Service + + + + Slides + Slides + 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://play.google.com/store/apps/details?id=org.openlp.android">download</a> to install the Android app from Google Play. - + Scan the QR code or click <a href="https://play.google.com/store/apps/details?id=org.openlp.android">download</a> to install the Android app from Google Play. 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 @@ -6185,32 +6174,32 @@ Continue saving? 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. @@ -6218,42 +6207,42 @@ Continue saving? 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. @@ -6262,12 +6251,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. @@ -6275,112 +6264,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. @@ -6389,105 +6378,105 @@ 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. - + Reindexing songs - + Reindexing songs 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? @@ -6495,7 +6484,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. @@ -6503,12 +6492,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] @@ -6520,12 +6509,12 @@ The encoding is responsible for the correct character representation. SongsPlugin.EditBibleForm - + Meta Data Meta Data - + Custom Book Names Custom Book Names @@ -6533,202 +6522,202 @@ 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. - + 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. @@ -6736,22 +6725,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. @@ -6759,82 +6748,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. @@ -6842,172 +6831,172 @@ 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 SundayPlus Song Files - + This importer has been disabled. This importer has been disabled. - + MediaShout Database MediaShout Database - + The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. - + SongPro Text Files SongPro Text Files - + SongPro (Export File) SongPro (Export File) - + In SongPro, export your songs using the File -> Export menu In SongPro, export your songs using the File -> Export menu @@ -7015,12 +7004,12 @@ The encoding is responsible for the correct character representation. 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. @@ -7038,7 +7027,7 @@ The encoding is responsible for the correct character representation.Lyrics - + CCLI License: CCLI License: @@ -7048,7 +7037,7 @@ The encoding is responsible for the correct character representation.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? @@ -7061,7 +7050,7 @@ The encoding is responsible for the correct character representation.Maintain the lists of authors, topics and books. - + copy For song cloning copy @@ -7095,7 +7084,7 @@ The encoding is responsible for the correct character representation. SongsPlugin.MediaShoutImport - + Unable to open the MediaShout database. Unable to open the MediaShout database. @@ -7103,7 +7092,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. @@ -7111,7 +7100,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. @@ -7119,7 +7108,7 @@ The encoding is responsible for the correct character representation. SongsPlugin.OpenLyricsExport - + Exporting "%s"... Exporting "%s"... @@ -7127,55 +7116,55 @@ 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. - + No %s files found. - + No %s files found. - + Invalid %s file. Unexpected byte value. - + Invalid %s file. Unexpected byte value. - + Invalid %s file. Missing "TITLE" header. - + Invalid %s file. Missing "TITLE" header. - + Invalid %s file. Missing "COPYRIGHTLINE" header. - + Invalid %s file. Missing "COPYRIGHTLINE" header. 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. @@ -7183,12 +7172,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. @@ -7196,27 +7185,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 @@ -7224,107 +7213,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? @@ -7332,27 +7321,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 @@ -7360,17 +7349,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. @@ -7378,37 +7367,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 @@ -7416,29 +7405,29 @@ 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. - + Line %d: %s - + Line %d: %s - + Decoding error: %s - + Decoding error: %s - + Record %d - + Record %d diff --git a/resources/i18n/en_ZA.ts b/resources/i18n/en_ZA.ts index b166e76a3..5b61350fd 100644 --- a/resources/i18n/en_ZA.ts +++ b/resources/i18n/en_ZA.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 '<>'. @@ -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,84 +664,86 @@ 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 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. + You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. - + Bible Exists - 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. + 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. - + 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 - + Duplicate Book Name - + The Book Name "%s" has been entered more than once. - + The Book Name "%s" has been entered more than once. 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 @@ -764,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. @@ -845,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. @@ -854,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. @@ -863,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. @@ -872,79 +874,80 @@ 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 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. BiblesPlugin.BookNameForm - + You need to select a book. You need to select a book. @@ -952,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. @@ -971,107 +974,108 @@ search results and on display: BiblesPlugin.EditBibleForm - + Bible Editor - + Bible Editor - + License Details - License Details + License Details - + Version name: - Version name: + Version name: - + Copyright: - Copyright: + Copyright: - + Permissions: - 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 customise 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 customised 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. 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. @@ -1249,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: @@ -1267,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. @@ -1275,110 +1279,112 @@ 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 completely delete "%s" Bible from OpenLP? You will need to re-import this Bible to use it again. - + Are you sure you want to completely delete "%s" Bible from OpenLP? + +You will need to re-import this Bible to use it again. BiblesPlugin.OpenSongImport - + Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. - + Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. BiblesPlugin.Opensong - + Importing %s %s... Importing <book name> <chapter>... Importing %s %s... @@ -1387,12 +1393,12 @@ You will need to re-import this Bible to use it again. 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... @@ -1401,149 +1407,149 @@ You will need to re-import this Bible to use it again. 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. @@ -1551,65 +1557,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. @@ -1617,12 +1623,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 @@ -1630,62 +1636,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 @@ -1693,15 +1699,15 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I CustomPlugin.EditVerseForm - + Edit Slide - + Edit Slide CustomPlugin.MediaItem - + Are you sure you want to delete the %n selected custom slide(s)? Are you sure you want to delete the selected custom slide? @@ -1712,60 +1718,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. @@ -1773,7 +1779,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I ImagePlugin.ExceptionDialog - + Select Attachment Select Attachment @@ -1781,44 +1787,44 @@ 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 Do you want to add the other images anyway? - + There was a problem replacing your background, the image file "%s" no longer exists. There was a problem replacing your background, the image file "%s" no longer exists. - + There was no display item to amend. There was no display item to amend. @@ -1826,78 +1832,78 @@ Do you want to add the other images anyway? ImagesPlugin.ImageTab - + Background Color Background Colour - + Default Color: Default Colour: - + Visible background for images with aspect ratio different to screen. - + Visible background for images with aspect ratio different to screen. 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. @@ -1905,57 +1911,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: @@ -1963,22 +1969,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 @@ -1986,17 +1992,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? @@ -2008,32 +2014,61 @@ Should OpenLP upgrade now? OpenLP.AboutForm - + Credits Credits - + License License - + 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. - + + Copyright © 2004-2012 %s +Portions copyright © 2004-2012 %s + Copyright © 2004-2012 %s +Portions copyright © 2004-2012 %s + + + + 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. + +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 volunteering by using the button below. + OpenLP <version><revision> - Open Source Lyrics Projection + +OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if Impress, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. + +Find out more about OpenLP: http://openlp.org/ + +OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider volunteering by using the button below. + + + + Volunteer + Volunteer + + + Project Lead %s @@ -2052,12 +2087,20 @@ Packagers Translators Afrikaans (af) %s + Czeck (cs) + %s + Danish (da) + %s German (de) %s + Greek (el) + %s English, United Kingdom (en_GB) %s English, South Africa (en_ZA) %s + Spanish (es) + %s Estonian (et) %s French (fr) @@ -2074,13 +2117,15 @@ Translators %s Russian (ru) %s + Swedish (sv) + %s Documentation %s Built With Python: http://www.python.org/ - Qt4: http://qt.nokia.com/ + Qt4: http://qt.digia.com/ PyQt4: http://www.riverbankcomputing.co.uk/software/pyqt/intro Oxygen Icons: http://oxygen-icons.org/ @@ -2095,268 +2140,185 @@ Final Credit on the cross, setting us free from sin. We bring this software to you for free because He has set us free. - Project Lead - %s - -Developers - %s - -Contributors - %s - -Testers - %s - -Packagers - %s - -Translators - Afrikaans (af) - %s - German (de) - %s - English, United Kingdom (en_GB) - %s - English, South Africa (en_ZA) - %s - Estonian (et) - %s - French (fr) - %s - Hungarian (hu) - %s - Japanese (ja) - %s - Norwegian Bokmål (nb) - %s - Dutch (nl) - %s - Portuguese, Brazil (pt_BR) - %s - Russian (ru) - %s - -Documentation - %s - -Built With - Python: http://www.python.org/ - Qt4: http://qt.nokia.com/ - PyQt4: http://www.riverbankcomputing.co.uk/software/pyqt/intro - Oxygen Icons: http://oxygen-icons.org/ - -Final Credit - "For God so loved the world that He gave - His one and only Son, so that whoever - believes in Him will not perish but inherit - eternal life." -- John 3:16 - - And last but not least, final credit goes to - God our Father, for sending His Son to die - on the cross, setting us free from sin. We - bring this software to you for free because - He has set us free. - - - - Copyright © 2004-2012 %s -Portions copyright © 2004-2012 %s - Copyright © 2004-2012 %s -Portions copyright © 2004-2012 %s - - - - 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. - -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 volunteering by using the button below. - - - - - Volunteer 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 colour: - + 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 colour. - + 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 @@ -2366,94 +2328,96 @@ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for 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 - + 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. - + 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 - + Overwrite Existing Data - + OpenLP data directory was not found %s @@ -2463,19 +2427,31 @@ This data directory was previously changed from the OpenLP default location. If Click "No" to stop loading OpenLP. allowing you to fix the the problem. Click "Yes" to reset the data directory to the default location. - + OpenLP data directory was not found + +%s + +This data directory was previously changed from the OpenLP default location. If the new location was on removable media, that media needs to be made available. + +Click "No" to stop loading OpenLP. allowing you to fix the the problem. + +Click "Yes" to reset the data directory to the default location. - + Are you sure you want to change the location of the OpenLP data directory to: %s The data directory will be changed when OpenLP is closed. - + Are you sure you want to change the location of the OpenLP data directory to: + +%s + +The data directory will be changed when OpenLP is closed. - + WARNING: The location you have selected @@ -2483,45 +2459,51 @@ The location you have selected %s appears to contain OpenLP data files. Do you wish to replace these files with the current data files? - + WARNING: + +The location you have selected + +%s + +appears to contain OpenLP data files. Do you wish to replace these files with the current data files? 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 @@ -2529,24 +2511,24 @@ appears to contain OpenLP data files. Do you wish to replace these files with t 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 @@ -2577,7 +2559,7 @@ Version: %s - + *OpenLP Bug Report* Version: %s @@ -2612,17 +2594,17 @@ Version: %s OpenLP.FileRenameForm - + File Rename File Rename - + New File Name: New File Name: - + File Copy File Copy @@ -2630,17 +2612,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: @@ -2648,239 +2630,243 @@ 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. - + 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. - + + +To cancel the First Time Wizard completely (and not start OpenLP), click the Cancel button now. OpenLP.FormattingTagDialog - + Configure Formatting Tags Configure Formatting Tags - + Edit Selection Edit Selection - + Save Save - + Description Description - + Tag Tag - + Start HTML Start HTML - + End HTML End HTML @@ -2888,32 +2874,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. @@ -2921,82 +2907,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 @@ -3004,122 +2990,122 @@ 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 @@ -3129,45 +3115,45 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can 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: - + Behaviour 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 OpenLP.LanguageManager - + Language Language - + Please restart OpenLP to use your new language setting. Please restart OpenLP to use your new language setting. @@ -3175,7 +3161,7 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can OpenLP.MainDisplay - + OpenLP Display OpenLP Display @@ -3183,287 +3169,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/. @@ -3472,108 +3458,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 (South Africa) - + 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. @@ -3582,43 +3568,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. @@ -3631,71 +3617,77 @@ 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 - + The file you selected does appear to be a valid OpenLP settings file. Section [%s] is not valid Processing has terminated and no changed have been made. - + The file you selected does appear to be a valid OpenLP settings file. + +Section [%s] is not valid + +Processing has terminated and no changed have been made. - + Copying OpenLP data to new data directory location - %s - Please wait for copy to finish - + Copying OpenLP data to new data directory location - %s - Please wait for copy to finish - + OpenLP Data directory copy failed %s - + OpenLP Data directory copy failed + +%s 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 @@ -3704,7 +3696,7 @@ Database: %s Database: %s - + OpenLP cannot load your database. Database: %s @@ -3716,62 +3708,62 @@ 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 - + Invalid File Type Invalid File Type - + Invalid File %s. Suffix not supported Invalid File %s. @@ -3783,7 +3775,7 @@ Suffix not supported &Clone - + Duplicate files were found on import and were ignored. Duplicate files were found on import and were ignored. @@ -3791,12 +3783,12 @@ Suffix not supported OpenLP.OpenLyricsImportError - + <lyrics> tag is missing. <lyrics> tag is missing. - + <verse> tag is missing. <verse> tag is missing. @@ -3804,42 +3796,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) @@ -3847,12 +3839,12 @@ Suffix not supported OpenLP.PrintServiceDialog - + Fit Page Fit Page - + Fit Width Fit Width @@ -3860,77 +3852,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: @@ -3938,12 +3930,12 @@ Suffix not supported OpenLP.ScreenList - + Screen Screen - + primary primary @@ -3951,12 +3943,12 @@ Suffix not supported OpenLP.ServiceItem - + <strong>Start</strong>: %s <strong>Start</strong>: %s - + <strong>Length</strong>: %s <strong>Length</strong>: %s @@ -3964,7 +3956,7 @@ Suffix not supported OpenLP.ServiceItemEditForm - + Reorder Service Item Reorder Service Item @@ -3972,296 +3964,295 @@ 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. + + + + Service File(s) Missing - - File missing from service + + The following file(s) in the service are missing: +%s - %s - -Continue saving? +These files will be removed if you continue to save. OpenLP.ServiceNoteForm - + Service Item Notes Service Item Notes @@ -4269,7 +4260,7 @@ Continue saving? OpenLP.SettingsForm - + Configure OpenLP Configure OpenLP @@ -4277,67 +4268,67 @@ Continue saving? 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 @@ -4345,172 +4336,172 @@ Continue saving? 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 @@ -4518,17 +4509,17 @@ Continue saving? OpenLP.SpellTextEdit - + Spelling Suggestions Spelling Suggestions - + Formatting Tags Formatting Tags - + Language: Language: @@ -4536,67 +4527,67 @@ Continue saving? 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. @@ -4604,559 +4595,559 @@ Continue saving? 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. - + You are unable to delete the default theme. You are unable to delete the default theme. - + Theme %s is used in the %s plugin. 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? - + Validation Error Validation Error - + A theme with this name already exists. 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 - + Theme %s already exists. Do you want to replace it? - + Theme %s already exists. Do you want to replace it? OpenLP.ThemeWizard - + Theme Wizard Theme Wizard - + Welcome to the Theme Wizard Welcome to the Theme Wizard - + Set Up Background Set Up Background - + Set up your theme's background according to the parameters below. Set up your theme's background according to the parameters below. - + Background type: Background type: - + Solid Color Solid Colour - + Gradient Gradient - + Color: Colour: - + Gradient: Gradient: - + Horizontal Horizontal - + Vertical Vertical - + Circular Circular - + Top Left - Bottom Right Top Left - Bottom Right - + Bottom Left - Top Right Bottom Left - Top Right - + Main Area Font Details Main Area Font Details - + Define the font and display characteristics for the Display text Define the font and display characteristics for the Display text - + Font: Font: - + Size: Size: - + Line Spacing: Line Spacing: - + &Outline: &Outline: - + &Shadow: &Shadow: - + Bold Bold - + Italic Italic - + Footer Area Font Details Footer Area Font Details - + Define the font and display characteristics for the Footer text Define the font and display characteristics for the Footer text - + Text Formatting Details Text Formatting Details - + Allows additional display formatting information to be defined Allows additional display formatting information to be defined - + Horizontal Align: Horizontal Align: - + Left Left - + Right Right - + Center Centre - + Output Area Locations Output Area Locations - + Allows you to change and move the main and footer areas. Allows you to change and move the main and footer areas. - + &Main Area &Main Area - + &Use default location &Use default location - + X position: X position: - + px px - + Y position: Y position: - + Width: Width: - + Height: Height: - + Use default location Use default location - + 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 and Save - + Preview the theme and save it. - + Preview the theme and save it. - + (approximately %d lines per slide) - + (approximately %d lines per slide) - + Background Image Empty - + Background Image Empty - + You have not selected a background image. Please select one before continuing. - + You have not selected a background image. Please select one before continuing. - + 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. 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 @@ -5164,315 +5155,315 @@ Continue saving? 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. @@ -5483,304 +5474,304 @@ Continue saving? 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 File 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. - + Importing Songs - + Importing Songs 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 @@ -5789,50 +5780,50 @@ Continue saving? 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. @@ -5840,70 +5831,70 @@ Continue saving? 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. PresentationPlugin.PresentationTab - + Available Controllers Available Controllers - + %s (unavailable) %s (unavailable) - + Allow presentation application to be overridden Allow presentation application to be overridden @@ -5911,24 +5902,24 @@ Continue saving? 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 @@ -5937,236 +5928,246 @@ Continue saving? 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 - - - - - Theme - Theme + Home - Desktop - + Theme + Theme - + + Desktop + Desktop + + + Add &amp; Go to Service - + Add &amp; Go to Service + + + + Service + Service + + + + Slides + Slides 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://play.google.com/store/apps/details?id=org.openlp.android">download</a> to install the Android app from Google Play. - + Scan the QR code or click <a href="https://play.google.com/store/apps/details?id=org.openlp.android">download</a> to install the Android app from Google Play. 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 @@ -6174,32 +6175,32 @@ Continue saving? 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. @@ -6207,42 +6208,42 @@ Continue saving? 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. @@ -6251,12 +6252,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. @@ -6264,112 +6265,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. @@ -6378,105 +6379,105 @@ 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. - + Reindexing songs - + Reindexing songs 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? @@ -6484,7 +6485,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. @@ -6492,12 +6493,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] @@ -6509,215 +6510,215 @@ The encoding is responsible for the correct character representation. SongsPlugin.EditBibleForm - + Meta Data - + Meta Data - + Custom Book Names - + Custom Book Names 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. - + 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. @@ -6725,22 +6726,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. @@ -6748,82 +6749,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. @@ -6831,185 +6832,185 @@ 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 - + SundayPlus Song Files - + This importer has been disabled. - + This importer has been disabled. - + MediaShout Database - + MediaShout Database - + The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. - + The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. - + SongPro Text Files - + SongPro Text Files - + SongPro (Export File) - + SongPro (Export File) - + In SongPro, export your songs using the File -> Export menu - + In SongPro, export your songs using the File -> Export menu 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. @@ -7027,7 +7028,7 @@ The encoding is responsible for the correct character representation.Lyrics - + CCLI License: CCLI License: @@ -7037,7 +7038,7 @@ The encoding is responsible for the correct character representation.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)? @@ -7050,7 +7051,7 @@ The encoding is responsible for the correct character representation.Maintain the lists of authors, topics and books. - + copy For song cloning copy @@ -7058,41 +7059,41 @@ The encoding is responsible for the correct character representation. Search Titles... - + Search Titles... Search Entire Song... - + Search Entire Song... Search Lyrics... - + Search Lyrics... Search Authors... - + Search Authors... Search Song Books... - + Search Song Books... SongsPlugin.MediaShoutImport - + Unable to open the MediaShout database. - + Unable to open the MediaShout database. SongsPlugin.OpenLP1SongImport - + Not a valid openlp.org 1.x song database. Not a valid openlp.org 1.x song database. @@ -7100,7 +7101,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. @@ -7108,7 +7109,7 @@ The encoding is responsible for the correct character representation. SongsPlugin.OpenLyricsExport - + Exporting "%s"... Exporting "%s"... @@ -7116,55 +7117,55 @@ 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. - + No %s files found. - + No %s files found. - + Invalid %s file. Unexpected byte value. - + Invalid %s file. Unexpected byte value. - + Invalid %s file. Missing "TITLE" header. - + Invalid %s file. Missing "TITLE" header. - + Invalid %s file. Missing "COPYRIGHTLINE" header. - + Invalid %s file. Missing "COPYRIGHTLINE" header. 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. @@ -7172,12 +7173,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. @@ -7185,27 +7186,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 @@ -7213,107 +7214,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? @@ -7321,45 +7322,45 @@ 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 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. @@ -7367,37 +7368,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 @@ -7405,29 +7406,29 @@ 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. - + Line %d: %s - + Line %d: %s - + Decoding error: %s - + Decoding error: %s - + Record %d - + Record %d diff --git a/resources/i18n/es.ts b/resources/i18n/es.ts index 1d05854db..54d1531a0 100644 --- a/resources/i18n/es.ts +++ b/resources/i18n/es.ts @@ -3,35 +3,35 @@ AlertsPlugin - + &Alert &Alerta - + Show an alert message. Mostrar mensaje de alerta. - + Alert name singular Alerta - + Alerts name plural Alertas - + Alerts container title Alertas - + <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of nursery alerts on the display screen. <strong>Complemento de Alertas</strong><br />El complemento de alertas controla la visualización de mensajes de guardería. @@ -39,69 +39,69 @@ AlertsPlugin.AlertForm - + Alert Message - Mensaje de Alerta + Mensaje de alerta - + Alert &text: &Texto de alerta: - + &New &Nuevo - + &Save &Guardar - + Displ&ay Mostr&ar - + Display && Cl&ose M&ostrar && Cerrar - + New Alert - Alerta Nueva + Alerta nueva - + You haven't specified any text for your alert. Please type in some text before clicking New. No ha especificado ningún texto de alerta. Por favor, escriba algún texto antes de hacer clic en Nueva. - + &Parameter: &Parámetro: - + No Parameter Found Parámetro no encontrado - + You have not entered a parameter to be replaced. Do you want to continue anyway? No ha ingresado un parámetro para reemplazar. -¿Desea continuar de todas maneras? +¿Desea continuar de todos modos? - + No Placeholder Found Marcador no encontrado - + The alert text does not contain '<>'. Do you want to continue anyway? El texto de alerta no contiene '<>'. @@ -119,32 +119,32 @@ Do you want to continue anyway? AlertsPlugin.AlertsTab - + Font Fuente - + Font name: Nombre: - + Font color: Color: - + Background color: Color de fondo: - + Font size: Tamaño: - + Alert timeout: Tiempo de espera: @@ -152,510 +152,510 @@ Do you want to continue anyway? BiblesPlugin - + &Bible &Biblia - + Bible name singular Biblia - + Bibles name plural Biblias - + Bibles container title Biblias - + No Book Found Libro no encontrado - + No matching book could be found in this Bible. Check that you have spelled the name of the book correctly. No se encontró el libro en esta Biblia. Revise que el nombre del libro esté escrito correctamente. - + Import a Bible. Importar una Biblia. - + Add a new Bible. Agregar una Biblia nueva. - + Edit the selected Bible. Editar la Biblia seleccionada. - + Delete the selected Bible. Eliminar la Biblia seleccionada. - + Preview the selected Bible. - Vista Previa de la Biblia seleccionada. + Vista previa de la Biblia seleccionada. - + Send the selected Bible live. Proyectar la Biblia seleccionada. - + Add the selected Bible to the service. Agregar esta Biblia al servicio. - + <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display Bible verses from different sources during the service. <strong>Complemento de Biblias</strong><br />El complemento de Biblias proporciona la capacidad de mostrar versículos de diversas fuentes, durante el servicio. - + &Upgrade older Bibles &Actualizar Biblias antiguas - + Upgrade the Bible databases to the latest format. Actualizar las Biblias al formato más reciente. - + Genesis Génesis - + Exodus Éxodo - + Leviticus Levítico - + Numbers Números - + Deuteronomy Deuteronomio - + Joshua Josué - + Judges Jueces - + Ruth Rut - + 1 Samuel 1 Samuel - + 2 Samuel 2 Samuel - + 1 Kings 1 Reyes - + 2 Kings 2 Reyes - + 1 Chronicles 1 Crónicas - + 2 Chronicles 2 Crónicas - + Ezra Esdras - + Nehemiah Nehemías - + Esther Ester - + Job Job - + Psalms Salmos - + Proverbs Proverbios - + Ecclesiastes Eclesiastés - + Song of Solomon Cantares - + Isaiah Isaías - + Jeremiah Jeremías - + Lamentations Lamentaciones - + Ezekiel Ezequiel - + Daniel Daniel - + Hosea Oseas - + Joel Joel - + Amos Amós - + Obadiah Abdías - + Jonah Jonás - + Micah Miqueas - + Nahum Nahúm - + Habakkuk Habacuc - + Zephaniah Sofonías - + Haggai Hageo - + Zechariah Zacarías - + Malachi Malaquías - + Matthew Mateo - + Mark Marcos - + Luke Lucas - + John Juan - + Acts Hechos - + Romans Romanos - + 1 Corinthians 1 Corintios - + 2 Corinthians 2 Corintios - + Galatians Gálatas - + Ephesians Efesios - + Philippians Filipenses - + Colossians Colosenses - + 1 Thessalonians 1 Tesalonicenses - + 2 Thessalonians 2 Tesalonicenses - + 1 Timothy 1 Timoteo - + 2 Timothy 2 Timoteo - + Titus Tito - + Philemon Filemón - + Hebrews Hebreos - + James Santiago - + 1 Peter 1 Pedro - + 2 Peter 2 Pedro - + 1 John 1 Juan - + 2 John 2 Juan - + 3 John 3 Juan - + Jude Judas - + Revelation Apocalipsis - + Judith Judit - + Wisdom Sabiduría - + Tobit Tobit - + Sirach Sirácida - + Baruch Baruc - + 1 Maccabees 1 Macabeos - + 2 Maccabees 2 Macabeos - + 3 Maccabees 3 Macabeos - + 4 Maccabees 4 Macabeos - + Rest of Daniel Resto de Daniel - + Rest of Esther Resto de Ester - + Prayer of Manasses Oración de Manasés - + Letter of Jeremiah Epístola de Jeremías - + Prayer of Azariah Oración de Azarías - + Susanna Susana - + 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|versículo|versículos;;-|hasta;;,|y;;fin @@ -664,32 +664,32 @@ Do you want to continue anyway? BiblesPlugin.BibleEditForm - + You need to specify a version name for your Bible. Debe especificar un nombre para la versión de su Biblia. - + You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. Debe ingresar la información copyright para su Biblia. Las Biblias de Dominio Público se deben marca como tal. - + Bible Exists Ya existe la Biblia - + This Bible already exists. Please import a different Bible or first delete the existing one. Ya existe esta Biblia. Por favor importe una diferente o borre la anterior antes de continuar. - + You need to specify a book name for "%s". Debe especificar un nombre de libro para "%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 @@ Solo se pueden utilizar números al principio y seguido de caracteres no numéricos. - + Duplicate Book Name Nombre de Libro Duplicado - + The Book Name "%s" has been entered more than once. El Nombre de Libro "%s" se ha ingresado más de una vez. @@ -711,39 +711,39 @@ y seguido de caracteres no numéricos. BiblesPlugin.BibleManager - + Scripture Reference Error Error de Referencia Bíblica - + Web Bible cannot be used No se puede usar la Biblia Web - + Text Search is not available with Web Bibles. La búsqueda no esta disponible para Biblias 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. - No ingreso una palabra clave a buscar. -Puede separar palabras clave por un espacio para buscar todas las palabras clave y puede separar conr una coma para buscar una de ellas. + No ingresó una palabra clave a buscar. +Puede separar palabras clave con un espacio en blanco para buscar todas las palabras clave y puede separar con una coma para buscar una de ellas. - + There are no Bibles currently installed. Please use the Import Wizard to install one or more Bibles. - No existen Bilbias instaladas. Puede usar el Asistente de Importación para instalar una o varias más. + No existen Biblias instaladas. Puede usar el Asistente de Importación para instalar una o varias Biblias. - + No Bibles Available - Biblias no Disponibles + Biblias no disponibles - + 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 @@ Libro Capítulo%(verse)sVersículo%(range)sCapítulo%(verse)sVersículo BiblesPlugin.BiblesTab - + Verse Display Visualización de versículos - + Only show new chapter numbers - Solo mostrar números para capítulos nuevos + Sólo mostrar números para capítulos nuevos - + Bible theme: Tema: - + No Brackets Sin paréntesis - + ( And ) ( Y ) - + { And } { Y } - + [ And ] [ Y ] - + Note: Changes do not affect verses already in the service. Nota: Los cambios no se aplican a elementos en el servcio. - + Display second Bible verses Mostrar versículos secundarios - + Custom Scripture References Referencias Bíblicas Personalizadas - + Verse Separator: Separador de Versículos: - + Range Separator: Separador de Rango: - + List Separator: Separador de Lista: - + End Mark: Marca de Final: - + 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 @@ Tienen que estar separados por un marcador vertical " | ". Borre el contenido del campo para usar el valor predeterminado. - + 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 @@ Tienen que estar separados por un marcador vertical " | ". Borre el contenido del campo para usar el valor predeterminado. - + 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 @@ Tienen que estar separados por un marcador vertical " | ". Borre el contenido del campo para usar el valor predeterminado. - + 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 @@ Tienen que estar separados por un marcador vertical " | ". Borre el contenido del campo para usar el valor predeterminado. - + English Inglés - + Default Bible Language Idioma de Biblia Predeterminado - + Book name language in search field, search results and on display: Idioma de los Libros en búsqueda, resultados y pantalla: - + Bible Language Idioma de la Biblia - + Application Language Idioma de la aplicación @@ -904,42 +904,42 @@ resultados y pantalla: BiblesPlugin.BookNameDialog - + Select Book Name - Seleccione Nombre de Libro + Seleccione el nombre del libro - + Current name: Nombre actual: - + Corresponding name: Nombre correspondiente: - + Show Books From - Mostrar Libros Desde + Mostrar libros desde - + Old Testament Antiguo Testamento - + New Testament Nuevo Testamento - + Apocrypha Apócrifos - + The following book name cannot be matched up internally. Please select the corresponding name from the list. El siguiente nombre no se encontró internamente. Por favor seleccione de la lista el correspondiente nombre en inglés. @@ -947,7 +947,7 @@ resultados y pantalla: BiblesPlugin.BookNameForm - + You need to select a book. Debe seleccionar un libro. @@ -955,18 +955,18 @@ resultados y pantalla: BiblesPlugin.CSVBible - + Importing books... %s Importando libros... %s - + Importing verses from %s... Importing verses from <book name>... Importando versículos de %s... - + Importing verses... done. Importando versículos... listo. @@ -974,69 +974,69 @@ resultados y pantalla: BiblesPlugin.EditBibleForm - + Bible Editor Editor de Biblias - + License Details Detalles de Licencia - + Version name: Nombre de versión: - + Copyright: Copyright: - + Permissions: Permisos: - + Default Bible Language Idioma Predeterminado - + Book name language in search field, search results and on display: Idioma de Libros en la busqueda, resultados y pantalla. - + Global Settings Preferencia Globales - + Bible Language Idioma de la Biblia - + Application Language Idioma de la aplicación - + English Inglés - + This is a Web Download Bible. It is not possible to customize the Book Names. Esta es una Biblia de Descarga Web. No es posible personalizar los Nombres de Libros. - + 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. Para utilizar nombres de libro personalizados, debe seleccionar el "Idioma de la Biblia" en la pestaña de Meta Datos o, en la página Biblias en Configurar OpenLP si se utilizó "Preferencias Globales". @@ -1044,40 +1044,40 @@ No es posible personalizar los Nombres de Libros. BiblesPlugin.HTTPBible - + Registering Bible and loading books... Registrando Biblia y cargando libros... - + Registering Language... - Registrando Idioma... + Registrando idioma... - + Importing %s... Importing <book name>... Importando %s... - + Download Error - Error de Descarga + Error de descarga - + There was a problem downloading your verse selection. Please check your Internet connection, and if this error continues to occur please consider reporting a bug. - Hubo un problema al descargar los versículos seleccionados. Por favor revise la conexión a internet y si el error persiste considere reportar esta falla. + Hubo un problema al descargar los versículos seleccionados. Por favor revise la conexión a internet; si el error persiste, considere reportar esta falla. - + Parse Error - Error de Análisis + Error de análisis - + There was a problem extracting your verse selection. If this error continues to occur please consider reporting a bug. - Hubo un problema al extraer los versículos seleccionados. Si el error persiste considere reportar esta falla. + Hubo un problema al extraer los versículos seleccionados. Si el error persiste, considere reportar esta falla. @@ -1120,7 +1120,7 @@ No es posible personalizar los Nombres de Libros. Download Options - Opciones de Descarga + Opciones de descarga @@ -1145,7 +1145,7 @@ No es posible personalizar los Nombres de Libros. License Details - Detalles de Licencia + Detalles de licencia @@ -1165,7 +1165,7 @@ No es posible personalizar los Nombres de Libros. Please wait while your Bible is imported. - Por favor, espere mientras que la Biblia es importada. + Por favor, espere mientras la Biblia es importada. @@ -1180,12 +1180,12 @@ No es posible personalizar los Nombres de Libros. You need to specify a version name for your Bible. - Debe ingresar un nombre para la versión de esta Biblia. + Debe ingresar un nombre de versión para esta Biblia. You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. - Debe establecer los derechos de autor de su Biblia. Si es de Dominio Público debe indicarlo. + Debe establecer los derechos de autor de su Biblia. Si es de Dominio Público, debe indicarlo. @@ -1253,17 +1253,17 @@ sea necesario, por lo que debe contar con una conexión a internet. BiblesPlugin.LanguageDialog - + Select Language Seleccionar Idioma - + OpenLP is unable to determine the language of this translation of the Bible. Please select the language from the list below. OpenLP no puede determinar el idioma de esta versión de la Biblia. Por favor, seleccione uno de la siguiente lista. - + Language: Idioma: @@ -1271,7 +1271,7 @@ sea necesario, por lo que debe contar con una conexión a internet. BiblesPlugin.LanguageForm - + You need to choose a language. Debe elegir un idioma. @@ -1279,92 +1279,92 @@ sea necesario, por lo que debe contar con una conexión a internet. BiblesPlugin.MediaItem - + Quick Rápida - + Find: Buscar: - + Book: Libro: - + Chapter: Capítulo: - + Verse: Versículo: - + From: Desde: - + To: Hasta: - + Text Search Buscar texto - + Second: Paralela: - + Scripture Reference Referencia Bíblica - + Toggle to keep or clear the previous results. Alterna entre conservar o borrar los resultados previos. - + You cannot combine single and dual Bible verse search results. Do you want to delete your search results and start a new search? No puede mezclar busquedas individuales y dobles. ¿Desea borrar los resultados y abrir una busqueda nueva? - + Bible not fully loaded. Biblia incompleta. - + Information Información - + 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. La Biblia secundaria no contiene todos los versículos de la Biblia principal. Solo se muestran los versículos comunes. Versículos %d no se incluyen en los resultados. - + Search Scripture Reference... Buscar Referencia Bíblica... - + Search Text... Buscar Texto... - + Are you sure you want to completely delete "%s" Bible from OpenLP? You will need to re-import this Bible to use it again. @@ -1376,7 +1376,7 @@ Deberá reimportar esta Biblia para utilizarla de nuevo. BiblesPlugin.OpenSongImport - + Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. Tipo de archivo incorrecto. Las Biblias OpenSong pueden estar comprimidas y es necesario extraerlas antes de la importación. @@ -1384,7 +1384,7 @@ Deberá reimportar esta Biblia para utilizarla de nuevo. BiblesPlugin.Opensong - + Importing %s %s... Importing <book name> <chapter>... Importando %s %s... @@ -1393,12 +1393,12 @@ Deberá reimportar esta Biblia para utilizarla de nuevo. BiblesPlugin.OsisImport - + Detecting encoding (this may take a few minutes)... Detectando codificación (esto puede tardar algunos minutos)... - + Importing %s %s... Importing <book name> <chapter>... Importando %s %s... @@ -1407,149 +1407,149 @@ Deberá reimportar esta Biblia para utilizarla de nuevo. BiblesPlugin.UpgradeWizardForm - + Select a Backup Directory - Seleccione un Directorio de Respaldo + Seleccione un directorio de respaldo - + Bible Upgrade Wizard - Asistente para Actualizar Biblias + Asistente para actualizar biblias - + 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. - Este asistente le ayudará a actualizar sus Bilias desde versiones anteriores a OpenLP 2. Presione siguiente para iniciar el proceso. + Este asistente le ayudará a actualizar sus Biblias desde versiones anteriores a OpenLP 2. Presione Siguiente para iniciar el proceso. - + Select Backup Directory - Directorio de Respaldo + Directorio de respaldo - + Please select a backup directory for your Bibles Por favor seleccione un directorio de respaldo para sus Biblias - + 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>. - Las versiones anteriores a OpenLP 2.0 no pueden utilizar las Biblias actualizadas. Se creará un respaldo de sus Biblias actuales en caso que tenga que utilizar una versión anterior del programa. Las instrucciones para resturar los archivos están en nuestro <a href="http://wiki.openlp.org/faq">FAQ</a>. + Las versiones anteriores a OpenLP 2.0 no pueden utilizar las Biblias actualizadas. Se creará un respaldo de sus Biblias actuales en caso de que tenga que utilizar una versión anterior del programa. Las instrucciones para restaurar los archivos están en nuestro <a href="http://wiki.openlp.org/faq">FAQ</a>. - + Please select a backup location for your Bibles. Por favor seleccione una ubicación para los respaldos. - + Backup Directory: - Directorio de Respaldo: + Directorio de respaldo: - + There is no need to backup my Bibles No es necesario respaldar mis Biblias - + Select Bibles Seleccione Biblias - + Please select the Bibles to upgrade Por favor seleccione las Biblias a actualizar - + Upgrading Actualizando - + Please wait while your Bibles are upgraded. Por favor espere mientras sus Biblias son actualizadas. - + The backup was not successful. To backup your Bibles you need permission to write to the given directory. El respaldo no fue exitoso. Para respaldar sus Biblias debe tener permisos de escritura en el directorio seleccionado. - + Upgrading Bible %s of %s: "%s" Failed Actualizando Biblia %s de %s: "%s" Fallidas - + Upgrading Bible %s of %s: "%s" Upgrading ... Actualizando Biblia %s de %s: "%s" Actualizando... - + Download Error Error de Descarga - + To upgrade your Web Bibles an Internet connection is required. Para actualizar sus Biblias se requiere de una conexión a internet. - + Upgrading Bible %s of %s: "%s" Upgrading %s ... Actualizando Biblia %s de %s: "%s" Actualizando %s... - + Upgrading Bible %s of %s: "%s" Complete Actualizando Biblia %s de %s: "%s" Completado - + , %s failed , %s fallidas - + 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. Actualizando Biblia(s): %s exitosas%s Note que los versículos se descargarán según sea necesario, por lo que debe contar con una conexión a internet. - + Upgrading Bible(s): %s successful%s Actualizando Biblia(s): %s exitosas%s - + Upgrade failed. Actualización fallida. - + You need to specify a backup directory for your Bibles. Debe especificar un directorio de respaldo para sus Biblias. - + Starting upgrade... Iniciando actualización... - + There are no Bibles that need to be upgraded. Las Biblias ya se encuentran actualizadas. @@ -1557,65 +1557,65 @@ Note que los versículos se descargarán según sea necesario, por lo que debe c 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>Diapositivas</strong><br />Este complemento le permite mostar diapositivas de texto, de igual manera que se muestran las canciones. Este ofrece una mayor libertad que el complemento de canciones. + <strong>Diapositivas</strong><br />Este complemento le permite mostrar diapositivas de texto, de igual manera que se muestran las canciones. Ofrece una mayor libertad que el complemento de canciones. - + Custom Slide name singular Diapositiva - + Custom Slides name plural Diapositivas - + Custom Slides container title Diapositivas - + Load a new custom slide. Cargar nueva diapositiva. - + Import a custom slide. Importar nueva diapositiva. - + Add a new custom slide. Agregar nueva diapositiva. - + Edit the selected custom slide. Editar diapositiva seleccionada. - + Delete the selected custom slide. Eliminar diapositiva seleccionada. - + Preview the selected custom slide. - Vista Previa de la diapositiva seleccionada. + Vista previa de la diapositiva seleccionada. - + Send the selected custom slide live. Proyectar diapositiva seleccionada. - + Add the selected custom slide to the service. Agregar diapositiva al servicio. @@ -1623,12 +1623,12 @@ Note que los versículos se descargarán según sea necesario, por lo que debe c CustomPlugin.CustomTab - + Custom Display - Pantalla Personalizada + Pantalla personalizada - + Display footer Mostrar pie de página @@ -1636,62 +1636,62 @@ Note que los versículos se descargarán según sea necesario, por lo que debe c CustomPlugin.EditCustomForm - + Edit Custom Slides - Editar Diapositivas + Editar diapositivas - + &Title: &Título: - + Add a new slide at bottom. Nueva diapositiva al final. - + Edit the selected slide. Editar la diapositiva seleccionada. - + Edit all the slides at once. Editar todas las diapositivas a la vez. - + Split a slide into two by inserting a slide splitter. Dividir la diapositiva insertando un separador. - + The&me: Te&ma: - + &Credits: - &Creditos: + &Créditos: - + You need to type in a title. Debe escribir un título. - + You need to add at least one slide Debe agregar al menos una diapositiva - + Ed&it All - Ed&itar Todo + Ed&itar todo - + Insert Slide Insertar @@ -1699,7 +1699,7 @@ Note que los versículos se descargarán según sea necesario, por lo que debe c CustomPlugin.EditVerseForm - + Edit Slide Editar Diapositiva @@ -1707,7 +1707,7 @@ Note que los versículos se descargarán según sea necesario, por lo que debe c CustomPlugin.MediaItem - + Are you sure you want to delete the %n selected custom slide(s)? ¿Desea borrar la diapositiva seleccionada? @@ -1718,60 +1718,60 @@ Note que los versículos se descargarán según sea necesario, por lo que debe c 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>Complemento de Imagen</strong><br />El complemento de imagen permite proyectar imágenes.<br />Una de sus características, es que permite agrupar imagenes para facilitar su proyección. Este plugin puede utilizar el "bulce de tiempo" de OpenLP para crear una presentación que avance automáticamente. Aparte, las imágenes de este plugin se pueden utilizar para reemplazar la imagen de fondo del tema en actual. + <strong>Complemento de Imagen</strong><br />Este complemento permite proyectar imágenes.<br />Una de sus características es que permite agrupar imágenes para facilitar su proyección. Este complemento puede utilizar el "bucle de tiempo" de OpenLP para crear una presentación que avance automáticamente. Además, las imágenes de este complemento se pueden utilizar para reemplazar la imagen de fondo del tema actual. - + Image name singular Imagen - + Images name plural Imágenes - + Images container title Imágenes - + Load a new image. Cargar una imagen nueva. - + Add a new image. Agregar una imagen nueva. - + Edit the selected image. Editar la imagen seleccionada. - + Delete the selected image. Eliminar la imagen seleccionada. - + Preview the selected image. - Vista Previa de la imagen seleccionada. + Vista previa de la imagen seleccionada. - + Send the selected image live. Proyectar la imagen seleccionada. - + Add the selected image to the service. Agregar esta imagen al servicio. @@ -1779,52 +1779,52 @@ Note que los versículos se descargarán según sea necesario, por lo que debe c ImagePlugin.ExceptionDialog - + Select Attachment - Seleccionar Anexo + Seleccionar archivo adjunto ImagePlugin.MediaItem - + Select Image(s) - Seleccionar Imagen(es) + Seleccionar imagen(es) - + You must select an image to delete. Debe seleccionar una imagen para eliminar. - + You must select an image to replace the background with. Debe seleccionar una imagen para reemplazar el fondo. - + Missing Image(s) - Imágen(es) faltante + Imagen(es) faltante(s) - + The following image(s) no longer exist: %s - La siguiente imagen(es) ya no esta disponible: %s + La siguiente imagen(es) ya no está disponible: %s - + The following image(s) no longer exist: %s Do you want to add the other images anyway? - La siguiente imagen(es) ya no esta disponible: %s + La siguiente imagen(es) ya no está disponible: %s ¿Desea agregar las demás imágenes? - + There was a problem replacing your background, the image file "%s" no longer exists. Ocurrió un problema al reemplazar el fondo, el archivo "%s" ya no existe. - + There was no display item to amend. No se encontraron elementos para corregir. @@ -1832,17 +1832,17 @@ Do you want to add the other images anyway? ImagesPlugin.ImageTab - + Background Color Color de fondo - + Default Color: Color predeterminado: - + Visible background for images with aspect ratio different to screen. Fondo visible para canciones con aspecto diferente al de la pantalla. @@ -1850,60 +1850,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>Complemento de Medios</strong><br />El complemento de medios permite reproducir audio y video. - + Media name singular Medio - + Media name plural Medios - + Media container title Medios - + Load new media. Cargar un medio nuevo. - + Add new media. Agregar un medio nuevo. - + Edit the selected media. Editar el medio seleccionado. - + Delete the selected media. Eliminar el medio seleccionado. - + Preview the selected media. - Vista Previa del medio seleccionado. + Vista previa del medio seleccionado. - + Send the selected media live. Proyectar el medio seleccionado. - + Add the selected media to the service. Agregar este medio al servicio. @@ -1911,80 +1911,80 @@ Do you want to add the other images anyway? MediaPlugin.MediaItem - + Select Media - Seleccionar Medios + Seleccionar medios - + You must select a media file to delete. - Debe seleccionar un medio para eliminar. + Debe seleccionar un archivo de medios para eliminar. - + You must select a media file to replace the background with. Debe seleccionar un archivo de medios para reemplazar el fondo. - + There was a problem replacing your background, the media file "%s" no longer exists. Ocurrió un problema al reemplazar el fondo, el archivo "%s" ya no existe. - + Missing Media File - Archivo de Medios faltante + Archivo de medios faltante - + The file %s no longer exists. - El archivo %s ya no esta disponible. + El archivo %s ya no está disponible. - + Videos (%s);;Audio (%s);;%s (*) Videos (%s);;Audio (%s);;%s (*) - + There was no display item to amend. Ningún elemento para corregir. - + Unsupported File - Archivo Inválido + Archivo inválido - + Automatic Automático - + Use Player: - Usar Reproductor: + Usar reproductor: MediaPlugin.MediaTab - + Available Media Players Reproductores disponibles - + %s (unavailable) %s (no disponible) - + Player Order - Orden de Reproductores + Orden de reproductores - + Allow media player to be overridden Permitir tomar control sobre el reproductor multimedia @@ -1992,54 +1992,83 @@ Do you want to add the other images anyway? OpenLP - + Image Files Archivos de Imagen - + Information Información - + Bible format has changed. You have to upgrade your existing Bibles. Should OpenLP upgrade now? El formato de las Bilbias ha cambiado. -Debe actualizar las Biblias actuales. +Debe actualizar las Biblias existentes. ¿Desea hacerlo ahora? OpenLP.AboutForm - + Credits Créditos - + License Licencia - + build %s compilación %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. - Este es un programa gratuito; usted puede distribuirlo y/o modificarlo bajo los términos de la GNU General Public License según la publicación de Free Software Foundation; versión 2 de la Licencia. + Este es un programa libre; usted puede distribuirlo y/o modificarlo bajo los términos de la GNU General Public License según la publicación de Free Software Foundation; versión 2 de la Licencia. - + 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. Este programa se distribuye con la esperanza de que sea útil, pero SIN NINGUNA GARANTÍA, incluso sin la garantía implícita de COMERCIALIZACIÓN o IDONEIDAD PARA UN PROPÓSITO PARTICULAR. Véase más abajo para más detalles. - + + Copyright © 2004-2012 %s +Portions copyright © 2004-2012 %s + Copyright © 2004-2012 %s +Portions copyright © 2004-2012 %s + + + + 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. + +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 volunteering by using the button below. + OpenLP <version><revision> - Open Source Lyrics Projection + +OpenLP es un software de proyección para iglesias gratuito, diseñado para mostar diapositivas de canciones, versículos de la Biblia, videos, imágenes, e incluso presentaciones (con OpenOffice.org, PowerPoint o PowerPoint Viewer instalados) para el servicio de alabanza, utilizando una computadora y un proyector de datos. + +Para más información de OpenLP visite: http://openlp.org/ + +OpenLP es desarrollado y mantenido por voluntarios. Si desea apoyar la creación de más software Cristiano gratuito, por favor considere contribuir mediante el botón de abajo. + + + + Volunteer + Ofrecerse + + + Project Lead %s @@ -2058,12 +2087,20 @@ Packagers Translators Afrikaans (af) %s + Czeck (cs) + %s + Danish (da) + %s German (de) %s + Greek (el) + %s English, United Kingdom (en_GB) %s English, South Africa (en_ZA) %s + Spanish (es) + %s Estonian (et) %s French (fr) @@ -2080,13 +2117,15 @@ Translators %s Russian (ru) %s + Swedish (sv) + %s Documentation %s Built With Python: http://www.python.org/ - Qt4: http://qt.nokia.com/ + Qt4: http://qt.digia.com/ PyQt4: http://www.riverbankcomputing.co.uk/software/pyqt/intro Oxygen Icons: http://oxygen-icons.org/ @@ -2101,268 +2140,185 @@ Final Credit on the cross, setting us free from sin. We bring this software to you for free because He has set us free. - Líder de Proyecto - %s - -Desarrolladores - %s - -Contribuyentes - %s - -Probadores - %s - -Empaquetadores - %s - -Traductores - Africano (af) - %s - Alemán (de) - %s - Inglés, Reino Unido (en_GB) - %s - Inglés, Sudáfrica (en_ZA) - %s - Estonio (et) - %s - Francés (fr) - %s - Húngaro (hu) - %s - Japonés (ja) - %s - Bokmål Noruego (nb) - %s - Holandés (nl) - %s - Portugés, Brasil (pt_BR) - %s - Ruso (ru) - %s - -Documentación - %s - -Compilado con - Python: http://www.python.org/ - Qt4: http://qt.nokia.com/ - PyQt4: http://www.riverbankcomputing.co.uk/software/pyqt/intro - Oxygen Icons: http://oxygen-icons.org/ - -Crédito Final - "Porque de tal manera amó Dios al mundo, - que ha dado a su Hijo unigénito, - para que todo aquel que en él cree, - no se pierda, mas tenga vida eterna." -- Juan 3:16 - - Por último, pero no menos importante, - el crédito final es para Dios nuestro Padre, - por enviar a su Hijo a morir en la cruz, - liberándonos del pecado. Traemos este software - de forma gratuita, así como Él nos ha liberado. - - - - Copyright © 2004-2012 %s -Portions copyright © 2004-2012 %s - Copyright © 2004-2012 %s -Portions copyright © 2004-2012 %s - - - - 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. - -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 volunteering by using the button below. - - - - - Volunteer OpenLP.AdvancedTab - + UI Settings - Preferencias de Interface + Preferencias de interface - + Number of recent files to display: Archivos recientes a mostrar: - + Remember active media manager tab on startup Recordar la última pestaña de medios utilizada - + Double-click to send items straight to live - Doble-click para proyectar directamente + Doble click para proyectar directamente - + Expand new service items on creation Expandir elementos nuevos del servicio al crearlos - + Enable application exit confirmation Preguntar antes de cerrar la aplicación - + Mouse Cursor - Cursor del Ratón + Cursor del ratón - + Hide mouse cursor when over display window Ocultar el cursor en la pantalla principal - + Default Image Imagen predeterminada - + Background color: Color de fondo: - + Image file: Archivo: - + Open File - Abrir Archivo + Abrir archivo - + Advanced Avanzado - + Preview items when clicked in Media Manager - Vista Previa al seleccionar elementos del Adminstrador de Medios + Vista previa al seleccionar elementos del Adminstrador de Medios - + Click to select a color. Click para seleccionar color. - + Browse for an image file to display. Buscar un archivo de imagen para mostrar. - + Revert to the default OpenLP logo. Volver al logo predeterminado de 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. Servicio %Y-%m-%d %H-%M - + Default Service Name Nombre de Servicio Predeterminado - + Enable default service name Habilitar nombre automático - + Date and Time: Fecha y Hora: - + Monday Lunes - + Tuesday Martes - + Wednesday Miércoles - + Thurdsday Jueves - + Friday Viernes - + Saturday Sábado - + Sunday Domingo - + Now Hoy - + Time when usual service starts. Hora usual de inicio del servicio. - + Name: Nombre: - + Consult the OpenLP manual for usage. Consulte el manual de OpenLP para su uso. - + Revert to the default service name "%s". Volver al nombre de servicio predeterminado "%s" - + Example: Ejemplo: - + X11 X11 @@ -2372,82 +2328,82 @@ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for No usar el Administrador de Ventanas de X11 - + Syntax error. Error de Sintaxis. - + Data Location Ubicación de Datos - + Current path: Ubicación actual: - + Custom path: Ubicación nueva: - + Browse for new data file location. Buscar una nueva ubicación para los datos. - + Set the data location to the default. Restablecer la ubicación original para los datos. - + Cancel Cancelar - + Cancel OpenLP data directory location change. Cancelar el cambio del directorio de datos de OpenLP. - + Copy data to new location. Copiar datos a nueva ubicación. - + Copy the OpenLP data files to the new location. Copiar los datos de OpenLP a un nuevo directorio. - + <strong>WARNING:</strong> New data directory location contains OpenLP data files. These files WILL be replaced during a copy. <strong>ADVERTENCIA:</strong> El nuevo directorio contiene archivos de datos de OpenLP. Estos archivos serán reemplazados durante la copia. - + Data Directory Error Error en Directorio de Datos - + Select Data Directory Location Seleccione Ubicación de Datos - + Confirm Data Directory Change Confirme Cambio de Directorio - + Reset Data Directory Reestablecer Directorio de Datos - + 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. @@ -2456,12 +2412,12 @@ This location will be used after OpenLP is closed. Esta ubicación se utilizará luego de cerrar OpenLP. - + Overwrite Existing Data Sobrescribir los Datos Actuales - + OpenLP data directory was not found %s @@ -2471,19 +2427,32 @@ This data directory was previously changed from the OpenLP default location. If Click "No" to stop loading OpenLP. allowing you to fix the the problem. Click "Yes" to reset the data directory to the default location. - + No se encontró el Directorio de Datos + +%s + +Este directorio fue cambiado de su ubicación por defecto anteriormente. +Si su nueva ubicación es un medio extraible, este medio debe estar presente. + +Presione "No" para detener OpenLP y permitirle corregir el problema. + +Presione "Si" para cambiar el directorio de datos a su ubicación habitual. - + Are you sure you want to change the location of the OpenLP data directory to: %s The data directory will be changed when OpenLP is closed. - + Desea cambiar la ubicación del directorio de datos de OpenLP a la siguiente: + +%s + +El directorio se cambiará una vez que OpenLP se cierre. - + WARNING: The location you have selected @@ -2491,45 +2460,51 @@ The location you have selected %s appears to contain OpenLP data files. Do you wish to replace these files with the current data files? - + ADVERTENCIA: + +La ubicación seleccionada + +%s + +contiene archivos de datos de OpenLP aparentemente. Desea reemplazar estos archivos con los actuales? OpenLP.ExceptionDialog - + Error Occurred - Se presento un Error + Se presentó un error - + 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. - ¡Oh! OpenLP encontró un problema, y no pudo recuperarse. El texto en el cuadro siguiente contiene información que podría ser útil para los desarrolladores de OpenLP, por favor envíe un correo a bugs@openlp.org, junto con una descripción detallada de lo que estaba haciendo cuando se produjo el problema. + ¡Oh! OpenLP encontró un problema y no pudo recuperarse. El texto en el cuadro siguiente contiene información que podría ser útil para los desarrolladores de OpenLP; por favor, envíe un correo a bugs@openlp.org junto con una descripción detallada de lo que estaba haciendo cuando se produjo el problema. - + Send E-Mail Enviar E-Mail - + Save to File - Guardar Archivo + Guardar archivo - + Please enter a description of what you were doing to cause this error (Minimum 20 characters) - Por favor ingrese una descripción de lo que hacia al ocurrir el error + Por favor ingrese una descripción de lo que hacía al ocurrir el error (Mínimo 20 caracteres) - + Attach File - Adjuntar Archivo + Adjuntar archivo - + Description characters to enter : %s Caracteres restantes: %s @@ -2537,24 +2512,24 @@ appears to contain OpenLP data files. Do you wish to replace these files with t OpenLP.ExceptionForm - + Platform: %s Plataforma: %s - + Save Crash Report - Guardar Reporte de Errores + Guardar reporte de errores - + Text files (*.txt *.log *.text) Archivos de texto (*.txt *.log *.text) - + **OpenLP Bug Report** Version: %s @@ -2585,7 +2560,7 @@ Version: %s - + *OpenLP Bug Report* Version: %s @@ -2602,18 +2577,18 @@ Version: %s Please add the information that bug reports are favoured written in English. *Reporte de Errores OpenLP* -(Nota: Reporte de preferencia en Inglés) +(Nota: se prefieren reportes en inglés) Version: %s --- Detalles de la Excepción. --- %s - --- Ratreo de Excepción --- + --- Rastreo de Excepción --- %s --- Información del sistema --- %s ---- Versión de Librerias --- +--- Versión de Bibliotecas --- %s @@ -2621,35 +2596,35 @@ Version: %s OpenLP.FileRenameForm - + File Rename - Cambiar Nombre + Cambiar nombre de archivo - + New File Name: - Nombre Nuevo: + Nombre nuevo: - + File Copy - Copiar Archivo + Copiar archivo OpenLP.FirstTimeLanguageForm - + Select Translation - Seleccionar Idioma + Seleccionar idioma - + Choose the translation you'd like to use in OpenLP. Elija la traducción que desea utilizar en OpenLP. - + Translation: Traducción: @@ -2657,192 +2632,192 @@ Version: %s OpenLP.FirstTimeWizard - + Songs Canciones - + First Time Wizard Asistente Inicial - + Welcome to the First Time Wizard Bienvenido al Asistente Inicial - + Activate required Plugins Activar complementos necesarios - + Select the Plugins you wish to use. Seleccione los complementos que desea usar. - + Bible Biblia - + Images Imágenes - + Presentations Presentaciones - + Media (Audio and Video) Medios (Audio y Video) - + Allow remote access Permitir acceso remoto - - - Monitor Song Usage - Historial de las Canciones - + Monitor Song Usage + Historial de las canciones + + + Allow Alerts - Permitir Alertas + Permitir alertas - + Default Settings - Configuración Predeterminada + Configuración predeterminada - + Downloading %s... Descargando %s... - + Download complete. Click the finish button to start OpenLP. - Descarga completa. Presione finalizar para iniciar OpenLP. + Descarga completa. Presione Finalizar para iniciar OpenLP. - + Enabling selected plugins... Habilitando complementos seleccionados... - + No Internet Connection - Sin Conexión a Internet + Sin conexión a Internet - + Unable to detect an Internet connection. No se detectó una conexión a Internet. - + Sample Songs - Canciones de Muestra + Canciones de muestra - + Select and download public domain songs. Seleccionar y descargar canciones de dominio público. - + Sample Bibles - Biblias de Muestra + Biblias de muestra - + Select and download free Bibles. Seleccionar y descargar Biblias gratuitas. - + Sample Themes - Temas de Muestra + Temas de muestra - + Select and download sample themes. Seleccionar y descargar temas de muestra. - + Set up default settings to be used by OpenLP. Utilizar la configuración predeterminada. - + Default output display: Pantalla predeterminada: - + Select default theme: Tema por defecto: - + Starting configuration process... Iniciando proceso de configuración... - + This wizard will help you to configure OpenLP for initial use. Click the next button below to start. Este asistente configurará OpenLP para su uso inicial. Presione el botón Siguiente para iniciar. - + Setting Up And Downloading Configurando & Descargando - + Please wait while OpenLP is set up and your data is downloaded. Por favor espere mientras OpenLP se configura e importa los datos. - + Setting Up Configurando - + Click the finish button to start OpenLP. Presione finalizar para iniciar OpenLP. - + Download complete. Click the finish button to return to OpenLP. Descarga completa. Presione finalizar para iniciar OpenLP. - + Click the finish button to return to OpenLP. Presione finalizar para iniciar OpenLP. - + Custom Slides Diapositivas - + Finish Finalizar - + 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. @@ -2851,7 +2826,7 @@ To re-run the First Time Wizard and import this sample data at a later time, che Para abrir posteriormente este asistente e importar dicho material, revise su conexión a Internet y seleccione desde el menú "Herramientas/Abrir Asistente Inicial" en OpenLP. - + To cancel the First Time Wizard completely (and not start OpenLP), click the Cancel button now. @@ -2863,37 +2838,37 @@ Para detener el Asistente Inicial (y no iniciar OpenLP), presione Cancelar ahora OpenLP.FormattingTagDialog - + Configure Formatting Tags Configurar Etiquetas de Formato - + Edit Selection Editar Selección - + Save Guardar - + Description Descripción - + Tag Etiqueta - + Start HTML Inicio HTML - + End HTML Final HTML @@ -2901,32 +2876,32 @@ Para detener el Asistente Inicial (y no iniciar OpenLP), presione Cancelar ahora OpenLP.FormattingTagForm - + Update Error Error de Actualización - + Tag "n" already defined. Etiqueta "n" ya definida. - + New Tag Etiqueta nueva - + <HTML here> <HTML aquí> - + </and here> </and aquí> - + Tag %s already defined. Etiqueta %s ya definida. @@ -2934,82 +2909,82 @@ Para detener el Asistente Inicial (y no iniciar OpenLP), presione Cancelar ahora OpenLP.FormattingTags - + Red Rojo - + Black Negro - + Blue Azul - + Yellow Amarillo - + Green Verde - + Pink Rosado - + Orange Anaranjado - + Purple Morado - + White Blanco - + Superscript Superíndice - + Subscript Subíndice - + Paragraph Párrafo - + Bold Negrita - + Italics Cursiva - + Underline Subrayado - + Break Salto @@ -3017,122 +2992,122 @@ Para detener el Asistente Inicial (y no iniciar OpenLP), presione Cancelar ahora OpenLP.GeneralTab - + General General - + Monitors Monitores - + Select monitor for output display: Seleccionar monitor para proyectar: - + Display if a single screen Mostar si solo hay una pantalla - + Application Startup Inicio de la Aplicación - + Show blank screen warning Mostrar advertencia de pantalla en blanco - + Automatically open the last service Abrir automáticamente el último servicio - + Show the splash screen Mostrar pantalla de bienvenida - + Application Settings Configuración del Programa - + Prompt to save before starting a new service Ofrecer guardar antes de abrir un servicio nuevo - + Automatically preview next item in service Vista previa automática del siguiente elemento en el servicio - + sec seg - + CCLI Details Detalles de CCLI - + SongSelect username: Usuario SongSelect: - + SongSelect password: Contraseña SongSelect: - + X X - + Y Y - + Height Altura - + Width Ancho - + Check for updates to OpenLP Buscar actualizaciones para OpenLP - + Unblank display when adding new live item Mostar proyección al agregar un elemento nuevo - + Timed slide interval: Intervalo de diapositivas: - + Background Audio Audio de Fondo - + Start background audio paused Iniciar audio de fondo en pausa @@ -3142,12 +3117,12 @@ Para detener el Asistente Inicial (y no iniciar OpenLP), presione Cancelar ahora Límites de Diapositivas - + Override display position: Personalizar la posición de pantalla - + Repeat track list Repetir la lista de pistas @@ -3175,12 +3150,12 @@ Para detener el Asistente Inicial (y no iniciar OpenLP), presione Cancelar ahora OpenLP.LanguageManager - + Language Idioma - + Please restart OpenLP to use your new language setting. Por favor reinicie OpenLP para usar su nuevo idioma. @@ -3188,7 +3163,7 @@ Para detener el Asistente Inicial (y no iniciar OpenLP), presione Cancelar ahora OpenLP.MainDisplay - + OpenLP Display Pantalla de OpenLP @@ -3196,287 +3171,287 @@ Para detener el Asistente Inicial (y no iniciar OpenLP), presione Cancelar ahora OpenLP.MainWindow - + &File &Archivo - + &Import &Importar - + &Export &Exportar - + &View &Ver - + M&ode M&odo - + &Tools &Herramientas - + &Settings &Preferencias - + &Language &Idioma - + &Help A&yuda - + Media Manager Gestor de Medios - + Service Manager Gestor de Servicio - + Theme Manager Gestor de Temas - + &New &Nuevo - + &Open &Abrir - + Open an existing service. Abrir un servicio existente. - + &Save &Guardar - + Save the current service to disk. Guardar el servicio actual en el disco. - + Save &As... Guardar &Como... - + Save Service As Guardar Servicio Como - + Save the current service under a new name. Guardar el servicio actual con un nombre nuevo. - + E&xit &Salir - + Quit OpenLP Salir de OpenLP - + &Theme &Tema - + &Configure OpenLP... &Configurar OpenLP... - + &Media Manager Gestor de &Medios - + Toggle Media Manager Alternar Gestor de Medios - + Toggle the visibility of the media manager. Alernar la visibilidad del gestor de medios. - + &Theme Manager Gestor de &Temas - + Toggle Theme Manager Alternar Gestor de Temas - + Toggle the visibility of the theme manager. Alernar la visibilidad del gestor de temas. - + &Service Manager Gestor de &Servicio - + Toggle Service Manager Alternar Gestor de Servicio - + Toggle the visibility of the service manager. Alernar la visibilidad del gestor de servicio. - + &Preview Panel &Panel de Vista Previa - + Toggle Preview Panel Alternar Panel de Vista Previa - + Toggle the visibility of the preview panel. Alernar la visibilidad del panel de vista previa. - + &Live Panel Panel de Pro&yección - + Toggle Live Panel Alternar Panel de Proyección - + Toggle the visibility of the live panel. Alternar la visibilidad del panel de proyección. - + &Plugin List Lista de &Complementos - + List the Plugins Lista de Complementos - + &User Guide Guía de &Usuario - + &About &Acerca de - + More information about OpenLP Más información acerca de OpenLP - + &Online Help Ayuda En &Línea - + &Web Site Sitio &Web - + Use the system language, if available. Usar el idioma del sistema, si esta disponible. - + Set the interface language to %s Fijar el idioma de la interface en %s - + Add &Tool... Agregar &Herramienta... - + Add an application to the list of tools. Agregar una aplicación a la lista de herramientas. - + &Default Pre&determinado - + Set the view mode back to the default. Establecer el modo de vizualización predeterminado. - + &Setup &Administración - + Set the view mode to Setup. Modo de Administración. - + &Live En &vivo - + Set the view mode to Live. Modo de visualización.en Vivo. - + 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/. @@ -3485,108 +3460,108 @@ You can download the latest version from http://openlp.org/. Puede descargar la última versión desde http://openlp.org/. - + OpenLP Version Updated Versión de OpenLP Actualizada - + OpenLP Main Display Blanked Pantalla Principal de OpenLP en Blanco - + The Main Display has been blanked out La Pantalla Principal se ha puesto en blanco - + Default Theme: %s Tema predeterminado: %s - + English Please add the name of your language here Español - + Configure &Shortcuts... Configurar &Atajos... - + Close OpenLP Cerrar OpenLP - + Are you sure you want to close OpenLP? ¿Desea salir de OpenLP? - + Open &Data Folder... Abrir Folder de &Datos... - + Open the folder where songs, bibles and other data resides. Abrir el folder donde se almacenan las canciones, biblias y otros datos. - + &Autodetect &Autodetectar - + Update Theme Images Actualizar Miniatura de Temas - + Update the preview images for all themes. Actualiza la imagen de vista previa de todos los temas. - + Print the current service. Imprimir Orden del Servicio actual. - + &Recent Files Archivos &recientes - + L&ock Panels Fi&jar Páneles - + Prevent the panels being moved. Prevenir que los páneles se muevan. - + Re-run First Time Wizard Abrir Asistente Inicial - + Re-run the First Time Wizard, importing songs, Bibles and themes. Abrir el asistente inicial para importar canciones, Biblias y temas. - + Re-run First Time Wizard? ¿Abrir Asistente Inicial? - + 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. @@ -3595,43 +3570,43 @@ Re-running this wizard may make changes to your current OpenLP configuration and Abrir este asistente altera la configuración actual de OpenLP y posiblemente agregará canciones a su base de datos y cambiará el Tema predeterminado. - + Clear List Clear List of recent files Borrar Lista - + Clear the list of recent files. Borrar la lista de archivos recientes. - + Configure &Formatting Tags... Configurar &Etiquetas de Formato... - + Export OpenLP settings to a specified *.config file Exportar preferencias de OpenLP al archivo *.config especificado - + Settings Preferencias - + Import OpenLP settings from a specified *.config file previously exported on this or another machine Importar preferencias de OpenLP desde un archivo *.config exportado previamente en cualquier ordenador - + Import settings? ¿Importar preferencias? - + Are you sure you want to import settings? Importing settings will make permanent changes to your current OpenLP configuration. @@ -3644,71 +3619,77 @@ Al importar preferencias, la configuración actual de OpenLP cambiará permanent Utilizar preferencias incorrectas puede causar un comportamiento errático y el cierre inesperado de OpenLP. - + Open File Abrir Archivo - + OpenLP Export Settings Files (*.conf) Archivos de Preferencias OpenLP (*.conf) - + Import settings Importar preferencias - + OpenLP will now close. Imported settings will be applied the next time you start OpenLP. OpenLP se cerrará. Las preferencias importadas se aplicarán la próxima vez que inicie OpenLP. - + Export Settings File Exportar Archivo de Preferencias - + OpenLP Export Settings File (*.conf) Archivo de Preferencias OpenLP (*.conf) - + New Data Directory Error Error en el Nuevo Directorio de Datos - + The file you selected does appear to be a valid OpenLP settings file. Section [%s] is not valid Processing has terminated and no changed have been made. - + El archivo seleccionado parece ser un archivo válido de configuración OpenLP. + +La sección [%s] no es válida + +Se ha detenido el procesamiento, no se realizaron cambios. - + Copying OpenLP data to new data directory location - %s - Please wait for copy to finish - + Copiando datos OpenLP a una nueva ubicación - %s - Por favor espere a que finalice la copia - + OpenLP Data directory copy failed %s - + Copia del directorio de datos OpenLP fallida + +%s OpenLP.Manager - + Database Error Error en Base de datos - + 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 @@ -3717,7 +3698,7 @@ Database: %s Base de Datos: %s - + OpenLP cannot load your database. Database: %s @@ -3729,62 +3710,62 @@ Base de datos: %s OpenLP.MediaManagerItem - + No Items Selected Nada Seleccionado - + &Add to selected Service Item &Agregar al elemento del Servico - + You must select one or more items to preview. Debe seleccionar uno o más elementos para previsualizar. - + You must select one or more items to send live. Debe seleccionar uno o más elementos para proyectar. - + You must select one or more items. Debe seleccionar uno o más elementos. - + You must select an existing service item to add to. Debe seleccionar un elemento existente al cual adjuntar. - + Invalid Service Item Elemento de Servicio inválido - + You must select a %s service item. Debe seleccionar un elemento %s del servicio. - + You must select one or more items to add. Debe seleccionar uno o más elementos para agregar. - + No Search Results Sin Resultados - + Invalid File Type Tipo de Archivo Inválido - + Invalid File %s. Suffix not supported Archivo inválido %s. @@ -3796,7 +3777,7 @@ Extensión no admitida &Duplicar - + Duplicate files were found on import and were ignored. Se encontraron archivos duplicados y se ignoraron. @@ -3804,12 +3785,12 @@ Extensión no admitida OpenLP.OpenLyricsImportError - + <lyrics> tag is missing. Etiqueta <lyrics> faltante. - + <verse> tag is missing. Etiqueta <verse> faltante. @@ -3817,42 +3798,42 @@ Extensión no admitida OpenLP.PluginForm - + Plugin List Lista de Complementos - + Plugin Details Detalles del Complemento - + Status: Estado: - + Active Activo - + Inactive Inactivo - + %s (Inactive) %s (Inactivo) - + %s (Active) %s (Activo) - + %s (Disabled) %s (Desabilitado) @@ -3860,12 +3841,12 @@ Extensión no admitida OpenLP.PrintServiceDialog - + Fit Page Ajustar a Página - + Fit Width Ajustar a Ancho @@ -3873,77 +3854,77 @@ Extensión no admitida OpenLP.PrintServiceForm - + Options Opciones - + Copy Copiar - + Copy as HTML Copiar como HTML - + Zoom In Acercar - + Zoom Out Alejar - + Zoom Original Zoom Original - + Other Options Otras Opciones - + Include slide text if available Incluir texto de diapositivas si está disponible - + Include service item notes Incluir notas de los elementos del servicio - + Include play length of media items Incluir la duración de los medios - + Add page break before each text item Agregar salto de página antes de cada elemento - + Service Sheet Hoja de Servicio - + Print Imprimir - + Title: Título: - + Custom Footer Text: Texto para pié de página: @@ -3951,12 +3932,12 @@ Extensión no admitida OpenLP.ScreenList - + Screen Pantalla - + primary principal @@ -3964,12 +3945,12 @@ Extensión no admitida OpenLP.ServiceItem - + <strong>Start</strong>: %s <strong>Inicio</strong>: %s - + <strong>Length</strong>: %s <strong>Duración</strong>: %s @@ -3977,7 +3958,7 @@ Extensión no admitida OpenLP.ServiceItemEditForm - + Reorder Service Item Reorganizar Elemento de Servicio @@ -3985,296 +3966,295 @@ Extensión no admitida OpenLP.ServiceManager - + Move to &top Mover al &inicio - + Move item to the top of the service. Mover el elemento al inicio del servicio. - + Move &up S&ubir - + Move item up one position in the service. Mover el elemento una posición hacia arriba. - + Move &down Ba&jar - + Move item down one position in the service. Mover el elemento una posición hacia abajo. - + Move to &bottom Mover al &final - + Move item to the end of the service. Mover el elemento al final del servicio. - + &Delete From Service &Eliminar Del Servicio - + Delete the selected item from the service. Eliminar el elemento seleccionado del servicio. - + &Add New Item &Agregar Nuevo Elemento - + &Add to Selected Item &Agregar al Elemento Seleccionado - + &Edit Item &Editar Elemento - + &Reorder Item &Reorganizar Elemento - + &Notes &Notas - + &Change Item Theme &Cambiar Tema de elemento - + OpenLP Service Files (*.osz) Archivo de Servicio OpenLP (*.osz) - + File is not a valid service. The content encoding is not UTF-8. Este no es un servicio válido. La codificación del contenido no es UTF-8. - + File is not a valid service. El archivo de servicio es inválido. - + Missing Display Handler Controlador de Pantalla Faltante - + Your item cannot be displayed as there is no handler to display it No se puede mostrar el elemento porque no hay un controlador de pantalla disponible - + Your item cannot be displayed as the plugin required to display it is missing or inactive El elemento no se puede mostar porque falta el complemento requerido o esta desabilitado - + &Expand all &Expandir todo - + Expand all the service items. Expandir todos los elementos del servicio. - + &Collapse all &Colapsar todo - + Collapse all the service items. Colapsar todos los elementos del servicio. - + Open File Abrir Archivo - + Moves the selection down the window. Mover selección hacia abajo. - + Move up Subir - + Moves the selection up the window. Mover selección hacia arriba. - + Go Live Proyectar - + Send the selected item to Live. Proyectar el elemento seleccionado. - + &Start Time &Tiempo de Inicio - + Show &Preview Mostrar &Vista Previa - + Modified Service Servicio Modificado - + The current service has been modified. Would you like to save this service? El servicio actual a sido modificado. ¿Desea guardar este servicio? - + Custom Service Notes: Notas Personales del Servicio: - + Notes: Notas: - + Playing time: Tiempo de reproducción: - + Untitled Service Servicio Sin nombre - + File could not be opened because it is corrupt. No se pudo abrir el archivo porque está corrompido. - + Empty File Archivo Vacio - + This service file does not contain any data. El archivo de servicio no contiene ningún dato. - + Corrupt File Archivo Corrompido - + Load an existing service. Abrir un servicio existente. - + Save this service. Guardar este servicio. - + Select a theme for the service. Seleccione un tema para el servicio. - + This file is either corrupt or it is not an OpenLP 2.0 service file. El archivo está corrupto o no es un archivo OpenLP 2.0 válido. - - Service File Missing - Archivo de Servicio faltante - - - + Slide theme Tema de diapositiva - + Notes Notas - + Edit Editar - + Service copy only Copia unicamente - + Error Saving File Error al Guardar Archivo - + There was an error saving your file. Ocurrió un error al guardar su archivo. - - File missing from service + + Service File(s) Missing + + + + + The following file(s) in the service are missing: +%s - %s - -Continue saving? +These files will be removed if you continue to save. OpenLP.ServiceNoteForm - + Service Item Notes Notas de Elemento de Servicio @@ -4282,7 +4262,7 @@ Continue saving? OpenLP.SettingsForm - + Configure OpenLP Configurar OpenLP @@ -4290,67 +4270,67 @@ Continue saving? OpenLP.ShortcutListDialog - + Action Acción - + Shortcut Atajo - + Duplicate Shortcut Duplicar Atajo - + The shortcut "%s" is already assigned to another action, please use a different shortcut. El atajo "%s" esta asignado a otra acción, por favor utilize un atajo diferente. - + Alternate Secundario - + Select an action and click one of the buttons below to start capturing a new primary or alternate shortcut, respectively. Seleccione una acción y presione uno de los botones para capturar un nuevo atajo primario y secundario, respectivamente. - + Default Predeterminado - + Custom Personalizado - + Capture shortcut. Capturar atajo. - + Restore the default shortcut of this action. Restuarar el atajo predeterminado para esta acción. - + Restore Default Shortcuts Restaurar los Atajos Predeterminados - + Do you want to restore all shortcuts to their defaults? ¿Quiere restaurar todos los atajos a su valor original? - + Configure Shortcuts Configurar Atajos @@ -4358,172 +4338,172 @@ Continue saving? OpenLP.SlideController - + Hide Ocultar - + Go To Ir A - + Blank Screen Pantalla en Blanco - + Blank to Theme Proyectar el Tema - + Show Desktop Mostrar Escritorio - + Previous Service Servicio Anterior - + Next Service Servicio Siguiente - + Escape Item Salir de Elemento - + Move to previous. Ir al anterior. - + Move to next. Ir al siguiente. - + Play Slides Reproducir diapositivas - + Delay between slides in seconds. Tiempo entre diapositivas en segundos. - + Move to live. Proyectar. - + Add to Service. Agregar al Servicio. - + Edit and reload song preview. Editar y actualizar la vista previa. - + Start playing media. Reproducir medios. - + Pause audio. Pausar Audio. - + Pause playing media. Pausar medio en reproducción. - + Stop playing media. Detener medio en reproducción. - + Video position. Posición de video. - + Audio Volume. Volumen de audio. - + Go to "Verse" Ir a "Verso" - + Go to "Chorus" Ir a "Coro" - + Go to "Bridge" Ir a "Puente" - + Go to "Pre-Chorus" Ir a "Pre-Coro" - + Go to "Intro" Ir a "Intro" - + Go to "Ending" Ir a "Final" - + Go to "Other" Ir a "Otro" - + Previous Slide Diapositiva anterior - + Next Slide Diapositiva siguiente - + Pause Audio Pausar Audio - + Background Audio Audio de Fondo - + Go to next audio track. Ir a la siguiente pista de audio. - + Tracks Pistas @@ -4531,17 +4511,17 @@ Continue saving? OpenLP.SpellTextEdit - + Spelling Suggestions Sugerencias Ortográficas - + Formatting Tags Etiquetas de Formato - + Language: Idioma: @@ -4549,67 +4529,67 @@ Continue saving? OpenLP.StartTimeForm - + Hours: Horas: - + Minutes: Minutos: - + Seconds: Segundos: - + Item Start and Finish Time Tiempo de Inicio y Final - + Start Inicio - + Finish Final - + Length Duración - + Time Validation Error Error de Validación de Tiempo - + Finish time is set after the end of the media item El tiempo fiinal se establece al final del elemento - + Start time is after the finish time of the media item El tiempo inicial se establece al final del elemento - + Theme Layout Distribución del Tema - + The blue box shows the main area. El cuadro azul muestra el área principal. - + The red box shows the footer. El cuadro rojo muestra el pié de página. @@ -4617,559 +4597,559 @@ Continue saving? OpenLP.ThemeManager - + Create a new theme. Crear un tema nuevo. - + Edit Theme Editar Tema - + Edit a theme. Editar un tema. - + Delete Theme Eliminar Tema - + Delete a theme. Eliminar un tema. - + Import Theme Importar Tema - + Import a theme. Importa un tema. - + Export Theme Exportar Tema - + Export a theme. Exportar un tema. - + &Edit Theme &Editar Tema - + &Delete Theme Elimi&nar Tema - + Set As &Global Default &Global, por defecto - + %s (default) %s (predeterminado) - + You must select a theme to edit. Debe seleccionar un tema para editar. - + You are unable to delete the default theme. No se puede eliminar el tema predeterminado. - + Theme %s is used in the %s plugin. El tema %s se usa en el complemento %s. - + You have not selected a theme. No ha seleccionado un tema. - + Save Theme - (%s) Guardar Tema - (%s) - + Theme Exported Tema Exportado - + Your theme has been successfully exported. Su tema a sido exportado exitosamente. - + Theme Export Failed La importación falló - + Your theme could not be exported due to an error. No se pudo exportar el tema dedido a un error. - + Select Theme Import File Seleccione el Archivo de Tema a Importar - + File is not a valid theme. El archivo no es un tema válido. - + &Copy Theme &Copiar Tema - + &Rename Theme &Renombrar Tema - + &Export Theme &Exportar Tema - + You must select a theme to rename. Debe seleccionar un tema para renombrar. - + Rename Confirmation Confirmar Cambio de Nombre - + Rename %s theme? ¿Renombrar el tema %s? - + You must select a theme to delete. Debe seleccionar un tema para eliminar. - + Delete Confirmation Confirmar Eliminación - + Delete %s theme? ¿Eliminar el tema %s? - + Validation Error Error de Validación - + A theme with this name already exists. Ya existe un tema con este nombre. - + OpenLP Themes (*.theme *.otz) Tema OpenLP (*.theme *otz) - + Copy of %s Copy of <theme name> Copia de %s - + Theme Already Exists Este Tema Ya Existe - + Theme %s already exists. Do you want to replace it? - + El Tema %s ya existe. Desea reemplazarlo? OpenLP.ThemeWizard - + Theme Wizard Asistente para Temas - + Welcome to the Theme Wizard Bienvenido al Asistente para Temas - + Set Up Background Establecer un fondo - + Set up your theme's background according to the parameters below. Establecer el fondo de su tema según los siguientes parámetros. - + Background type: Tipo de fondo: - + Solid Color Color Sólido - + Gradient Gradiente - + Color: Color: - + Gradient: Gradiente: - + Horizontal Horizontal - + Vertical Vertical - + Circular Circular - + Top Left - Bottom Right Arriba Izquierda - Abajo Derecha - + Bottom Left - Top Right Abajo Izquierda - Abajo Derecha - + Main Area Font Details Fuente del Área Principal - + Define the font and display characteristics for the Display text Definir la fuente y las características para el texto en Pantalla - + Font: Fuente: - + Size: Tamaño: - + Line Spacing: Epaciado de Líneas: - + &Outline: &Contorno: - + &Shadow: &Sombra: - + Bold Negrita - + Italic Cursiva - + Footer Area Font Details Fuente de Pié de página - + Define the font and display characteristics for the Footer text Definir la fuente y las características para el texto de Pié de página - + Text Formatting Details Detalles de Formato - + Allows additional display formatting information to be defined Permite definir información adicional de formato - + Horizontal Align: Alinea. Horizontal: - + Left Izquierda - + Right Derecha - + Center Centro - + Output Area Locations Ubicación del Área de Proyección - + Allows you to change and move the main and footer areas. Le permite mover y cambiar la ubicación del área principal y de pié de página. - + &Main Area Área &Principal - + &Use default location &Usar ubicación predeterminada - + X position: Posición x: - + px px - + Y position: Posición y: - + Width: Ancho: - + Height: Altura: - + Use default location Usar ubicaciónpredeterminada - + Theme name: Nombre: - + Edit Theme - %s Editar 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. Este asistente le ayudará a crear y editar temas. Presione Siguiente para iniciar el proceso al establecer el fondo. - + Transitions: Transiciones: - + &Footer Area &Pie de Página - + Starting color: Color inicial: - + Ending color: Color final: - + Background color: Color de fondo: - + Justify Justificar - + Layout Preview Vista previa de Distribución - + Transparent Transparente - + Preview and Save Previsualizar y Guardar - + Preview the theme and save it. Previsualizar el tema y guardarlo. - + (approximately %d lines per slide) - + (aproximadamente %d líneas por diapositiva) - + Background Image Empty - + Imagen de Fondo Vacía - + You have not selected a background image. Please select one before continuing. - + No ha seleccionado una imagen de fondo. Seleccione una antes de continuar. - + Select Image - + Seleccionar Imagen - + Theme Name Missing - + Nombre de Tema faltante - + There is no name for this theme. Please enter one. - + No existe nombre para este tema. Ingrese uno. - + Theme Name Invalid - + Nombre de Tema inválido - + Invalid theme name. Please enter one. - + Nombre de tema inválido. Por favor ingrese uno. OpenLP.ThemesTab - + Global Theme Tema Global - + Theme Level Nivel - + S&ong Level &Canción - + 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. Utilizar el tema de la canción en la base de datos. Si una canción no tiene un tema asociado, utilizar el tema del servicio. Si el servicio no tiene un tema, utilizar el tema global. - + &Service Level &Servicio - + 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. Utilizar el tema del servicio ignorando los temas individuales. Si el servicio no tiene un tema, utilizar el tema global. - + &Global Level &Global - + Use the global theme, overriding any themes associated with either the service or the songs. Utilizar el tema global, ignorado los temas asociados con el servicio o con las canciones. - + Themes Temas @@ -5177,315 +5157,315 @@ Continue saving? OpenLP.Ui - + Error Error - + About Acerca de - + &Add &Agregar - + Advanced Avanzado - + All Files Todos los Archivos - + Bottom Inferior - + Browse... Explorar... - + Cancel Cancelar - + CCLI number: Número CCLI: - + Create a new service. Crear un servicio nuevo. - + &Delete &Eliminar - + &Edit &Editar - + Empty Field Campo Vacío - + Export Exportar - + pt Abbreviated font pointsize unit pto - + Image Imagen - + Import Importar - + Live En vivo - + Live Background Error Error del Fondo de proyección - + Load Cargar - + Middle Medio - + New Nuevo - + New Service Servicio Nuevo - + New Theme Tema Nuevo - + No File Selected Singular Archivo No Seleccionado - + No Files Selected Plural Archivos No Seleccionados - + No Item Selected Singular Nada Seleccionado - + No Items Selected Plural Nada Seleccionado - + openlp.org 1.x openlp.org 1.x - + OpenLP 2.0 OpenLP 2.0 - + Preview Vista previa - + Replace Background Reemplazar Fondo - + Reset Background Restablecer Fondo - + s The abbreviated unit for seconds s - + Save && Preview Guardar && Previsualizar - + Search Buscar - + You must select an item to delete. Debe seleccionar un elemento para eliminar. - + You must select an item to edit. Debe seleccionar un elemento para editar. - + Save Service Guardar Servicio - + Service Servicio - + Start %s Inicio %s - + Theme Singular Tema - + Themes Plural Temas - + Top Superior - + Version Versión - + Delete the selected item. Eliminar el elemento seleccionado. - + Move selection up one position. Mover selección un espacio hacia arriba. - + Move selection down one position. Mover selección un espacio hacia abajo. - + &Vertical Align: Alinea. &Vertical: - + Finished import. Importación finalizada. - + Format: Formato: - + Importing Importando - + Importing "%s"... Importando "%s"... - + Select Import Source Seleccione la Fuente para Importar - + Select the import format and the location to import from. Seleccione el formato a importar y su ubicación. - + 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. Se ha deshabilitado el importador openlp.org 1.x debido a la falta de un módulo Python. Si desea utilizar este importador, debe instalar el módulo "python-sqlite". - + Open %s File Abrir %s Archivo - + %p% %p% - + Ready. Listo. - + Starting import... Iniciando importación... - + You need to specify at least one %s file to import from. A file type e.g. OpenSong Debe especificar un archivo %s para importar. @@ -5496,304 +5476,304 @@ Continue saving? Bienvenido al Asistente para Biblias - + Welcome to the Song Export Wizard Bienvenido al Asistente para Exportar Canciones - + Welcome to the Song Import Wizard Bienvenido al Asistente para Importar Canciones - + Author Singular Autor - + Authors Plural Autores - + © Copyright symbol. © - + Song Book Singular Himnario - + Song Books Plural Himnarios - + Song Maintenance Administración de Canciones - + Topic Singular Categoría - + Topics Plural Categorías - + Continuous Continuo - + Default Predeterminado - + Display style: Estilo de presentación: - + Duplicate Error Error de Duplicación - + File Archivos - + Help Ayuda - + h The abbreviated unit for hours h - + Layout style: Distribución: - + Live Toolbar Barra de Proyección - + m The abbreviated unit for minutes m - + OpenLP is already running. Do you wish to continue? OpenLP ya esta abierto. ¿Desea continuar? - + Settings Preferencias - + Tools Herramientas - + Unsupported File Archivo Inválido - + Verse Per Slide Versículo por Diapositiva - + Verse Per Line Versículo por Línea - + View Vista - + Title and/or verses not found Título y/o versos no encontrados - + XML syntax error Error XML de sintaxis - + View Mode Disposición - + Open service. Abrir Servicio. - + Print Service Imprimir Servicio - + Replace live background. Reemplazar el fondo proyectado. - + Reset live background. Restablecer el fondo proyectado. - + Split a slide into two only if it does not fit on the screen as one slide. Dividir la diapositiva, solo si no se puede mostrar como una sola. - + Welcome to the Bible Upgrade Wizard Bienvenido al Asistente para Actualizar Biblias - + Confirm Delete Confirmar Eliminación - + Play Slides in Loop Reproducir en Bucle - + Play Slides to End Reproducir hasta el final - + Stop Play Slides in Loop Detener Bucle - + Stop Play Slides to End Detener presentación - + Next Track Pista Siguiente - + Search Themes... Search bar place holder text Buscar Temas... - + Optional &Split &División Opcional - + Invalid Folder Selected Singular Carpeta Inválida - + Invalid File Selected Singular Archivo Inválido - + Invalid Files Selected Plural Archivos Inválidos - + No Folder Selected Singular Ninguna Carpeta Seleccionada - + Open %s Folder Abrir Carpeta %s - + You need to specify one %s file to import from. A file type e.g. OpenSong Debe especificar un archivo %s para importar. - + You need to specify one %s folder to import from. A song format e.g. PowerSong Debe especificar una carpeta %s para importar. - + Importing Songs - + Importando Canciones OpenLP.core.lib - + %1 and %2 Locale list separator: 2 items %1 y %2 - + %1, and %2 Locale list separator: end %1, y %2 - + %1, %2 Locale list separator: middle %1, %2 - + %1, %2 Locale list separator: start %1, %2 @@ -5802,50 +5782,50 @@ Continue saving? 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>Complemento de Presentaciones</strong><br />El complemento de presentaciones permite mostrar presentaciones, usando diversos programas. La selección del programa se realiza por medio de una casilla de selección. - + Presentation name singular Presentación - + Presentations name plural Presentaciones - + Presentations container title Presentaciones - + Load a new presentation. Cargar una Presentación nueva. - + Delete the selected presentation. Eliminar la presentación seleccionada. - + Preview the selected presentation. Vista Previa de la presentación seleccionada. - + Send the selected presentation live. Proyectar la presentación seleccionada. - + Add the selected presentation to the service. Agregar esta presentación al servicio. @@ -5853,52 +5833,52 @@ Continue saving? PresentationPlugin.MediaItem - + Select Presentation(s) Seleccionar Presentación(es) - + Automatic Automático - + Present using: Mostrar usando: - + File Exists Ya existe el Archivo - + A presentation with that filename already exists. Ya existe una presentación con este nombre. - + This type of presentation is not supported. No se admite este tipo de presentación. - + Presentations (%s) Presentaciones (%s) - + Missing Presentation Presentación faltante - + The presentation %s is incomplete, please reload. La presentación %s está incompleta, cárgela nuevamente. - + The presentation %s no longer exists. La presentación %s ya no existe. @@ -5906,17 +5886,17 @@ Continue saving? PresentationPlugin.PresentationTab - + Available Controllers Controladores Disponibles - + %s (unavailable) %s (no disponible) - + Allow presentation application to be overridden Permitir tomar el control del programa de presentación @@ -5924,24 +5904,24 @@ Continue saving? 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>Acceso Remoto</strong><br />El acceso remoto le permite enviar mensajes a otra versión del programa en un equipo diferente, por medio del navegador de internet o por medio de API. - + Remote name singular Remoto - + Remotes name plural Remotos - + Remote container title Acceso remoto @@ -5950,236 +5930,246 @@ Continue saving? RemotePlugin.Mobile - + OpenLP 2.0 Remote OpenLP 2.0 Remoto - + OpenLP 2.0 Stage View OpenLP 2.0 Vista del Escenario - + Service Manager Gestor de Servicio - + Slide Controller Control de Diapositivas - + Alerts Alertas - + Search Buscar - + Refresh Refrezcar - + Blank En blanco - + Show Mostrar - + Prev Anterior - + Next Siguiente - + Text Texto - + Show Alert Mostrar Alerta - + Go Live Proyectar - + No Results Sin Resultados - + Options Opciones - + Add to Service Agregar al Servicio - + Home Inicio - + Theme Tema - + Desktop Escritorio - + Add &amp; Go to Service Agregar e Ir al Servicio + + + Service + Servicio + + + + Slides + Diapositivas + RemotePlugin.RemoteTab - + Serve on IP address: Dirección IP a Servir: - + Port number: Puerto número: - + Server Settings Config. de Servidor - + Remote URL: URL Remota: - + Stage view URL: URL Administración: - + Display stage time in 12h format Usar formato de 12h en pantalla de Administración - + Android App Android App - + Scan the QR code or click <a href="https://play.google.com/store/apps/details?id=org.openlp.android">download</a> to install the Android app from Google Play. - + Escanee el código QR o haga clic en <a href="https://play.google.com/store/apps/details?id=org.openlp.android">descargar</a> para instalar el Android app. SongUsagePlugin - + &Song Usage Tracking &Historial de Uso - + &Delete Tracking Data &Eliminar datos de Historial - + Delete song usage data up to a specified date. Borrar los datos del historial hasta la fecha especificada. - + &Extract Tracking Data &Extraer datos de Historial - + Generate a report on song usage. Generar un reporte del historial de uso de las canciones. - + Toggle Tracking Activar Historial - + Toggle the tracking of song usage. Encender o apagar el historial del uso de las canciones. - + <strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services. <strong>Historial</strong><br />Este complemento mantiene un registro del número de veces que se usa una canción en los servicios. - + SongUsage name singular Historial - + SongUsage name plural Historiales - + SongUsage container title Historial - + Song Usage Historial - + Song usage tracking is active. Monitoreo de historial activo. - + Song usage tracking is inactive. Monitoreo de historial inactivo. - + display mostrar - + printed impreso @@ -6187,32 +6177,32 @@ Continue saving? SongUsagePlugin.SongUsageDeleteForm - + Delete Song Usage Data Borrar historial de canción - + Delete Selected Song Usage Events? ¿Borrar el historial de esta canción? - + Are you sure you want to delete selected Song Usage data? ¿Desea borrar los datos del historial de la canción seleccionada? - + Deletion Successful Limpieza Exitosa - + All requested data has been deleted successfully. Todos los datos han sido borrados exitosamente. - + Select the date up to which the song usage data should be deleted. All data recorded before this date will be permanently deleted. Seleccione la fecha desde la cual borrar el historial. Todos los datos guardados antes de esta fecha serán borrados permanentemente. @@ -6220,42 +6210,42 @@ Continue saving? SongUsagePlugin.SongUsageDetailForm - + Song Usage Extraction Extracción del Historial - + Select Date Range Seleccionar Rango de Fechas - + to hasta - + Report Location Ubicación de Reporte - + Output File Location Archivo de Salida - + usage_detail_%s_%s.txt historial_%s_%s.txt - + Report Creation Crear Reporte - + Report %s has been successfully created. @@ -6264,12 +6254,12 @@ has been successfully created. se ha creado satisfactoriamente. - + Output Path Not Selected Ruta de salida no seleccionada - + You have not set a valid output location for your song usage report. Please select an existing path on your computer. No se ha establecido una ubicación válida para el archivo de reporte. Por favor seleccione una ubicación en su equipo. @@ -6277,112 +6267,112 @@ se ha creado satisfactoriamente. SongsPlugin - + &Song &Canción - + Import songs using the import wizard. Importar canciones usando el asistente. - + <strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs. <strong>Complemento de Canciones</strong><br />El complemento de canciones permite mostar y editar canciones. - + &Re-index Songs &Re-indexar Canciones - + Re-index the songs database to improve searching and ordering. Reorganiza la base de datos para mejorar la busqueda y ordenamiento. - + Reindexing songs... Reindexando canciones... - + Arabic (CP-1256) Árabe (CP-1256) - + Baltic (CP-1257) Báltico (CP-1257) - + Central European (CP-1250) Europa Central (CP-1250) - + Cyrillic (CP-1251) Cirílico (CP-1251) - + Greek (CP-1253) Griego (CP-1253) - + Hebrew (CP-1255) Hebreo (CP-1255) - + Japanese (CP-932) Japonés (CP-932) - + Korean (CP-949) Koreano (CP-949) - + Simplified Chinese (CP-936) Chino Simplificado (CP-936) - + Thai (CP-874) Tailandés (CP-874) - + Traditional Chinese (CP-950) Chino Tradicional (CP-950) - + Turkish (CP-1254) Turco (CP-1254) - + Vietnam (CP-1258) Vietnamita (CP-1258) - + Western European (CP-1252) Europa Occidental (CP-1252) - + Character Encoding Codificación de Caracteres - + The codepage setting is responsible for the correct character representation. Usually you are fine with the preselected choice. @@ -6391,105 +6381,105 @@ por la correcta representación de los caracteres. Por lo general, la opción preseleccionada es la adecuada. - + Please choose the character encoding. The encoding is responsible for the correct character representation. Por favor elija una codificación de caracteres. La codificación se encarga de la correcta representación de caracteres. - + Song name singular Canción - + Songs name plural Canciones - + Songs container title Canciones - + Exports songs using the export wizard. Exportar canciones usando el asistente. - + Add a new song. Agregar una canción nueva. - + Edit the selected song. Editar la canción seleccionada. - + Delete the selected song. Eliminar la canción seleccionada. - + Preview the selected song. Vista Previa de la canción seleccionada. - + Send the selected song live. Proyectar la canción seleccionada. - + Add the selected song to the service. Agregar esta canción al servicio. - + Reindexing songs - + Reindexando canciones SongsPlugin.AuthorsForm - + Author Maintenance Administración de Autores - + Display name: Mostrar: - + First name: Nombre: - + Last name: Apellido: - + You need to type in the first name of the author. Debe escribir el nombre del autor. - + You need to type in the last name of the author. Debe ingresar el apellido del autor. - + You have not set a display name for the author, combine the first and last names? No a establecido un nombre para mostrar, ¿desea unir el nombre y el apellido? @@ -6497,7 +6487,7 @@ La codificación se encarga de la correcta representación de caracteres. SongsPlugin.CCLIFileImport - + The file does not have a valid extension. El archivo no tiene una extensión válida. @@ -6505,12 +6495,12 @@ La codificación se encarga de la correcta representación de caracteres. SongsPlugin.EasyWorshipSongImport - + Administered by %s Administrado por %s - + [above are Song Tags with notes imported from EasyWorship] @@ -6522,12 +6512,12 @@ La codificación se encarga de la correcta representación de caracteres. SongsPlugin.EditBibleForm - + Meta Data Metadatos - + Custom Book Names Nombres Personalizados @@ -6535,202 +6525,202 @@ La codificación se encarga de la correcta representación de caracteres. SongsPlugin.EditSongForm - + Song Editor Editor de Canción - + &Title: &Título: - + Alt&ernate title: Título alt&ernativo: - + &Lyrics: &Letras: - + &Verse order: Orden de &versos: - + Ed&it All Ed&itar Todo - + Title && Lyrics Título && Letra - + &Add to Song &Agregar a Canción - + &Remove &Quitar - + &Manage Authors, Topics, Song Books Ad&ministrar Autores, Categorías, Himnarios - + A&dd to Song A&gregar a Canción - + R&emove &Quitar - + Book: Libro: - + Number: Número: - + Authors, Topics && Song Book Autores, Categorías e Himnarios - + New &Theme &Tema Nuevo - + Copyright Information Información de Derechos de Autor - + Comments Comentarios - + Theme, Copyright Info && Comments Tema, Derechos de Autor && Comentarios - + Add Author Agregar Autor - + This author does not exist, do you want to add them? Este autor no existe, ¿desea agregarlo? - + This author is already in the list. Este autor ya esta en la lista. - + 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. No ha seleccionado un autor válido. Seleccione un autor de la lista o ingrese un nombre nuevo y presione el botón "Agregar Autor a Canción" para agregar el autor nuevo. - + Add Topic Agregar Categoría - + This topic does not exist, do you want to add it? Esta categoría no existe, ¿desea agregarla? - + This topic is already in the list. Esta categoría ya esta en la lista. - + 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. No seleccionado una categoría válida. Seleccione una categoría de la lista o ingrese un nombre nuevo y presione el botón "Agregar Categoría a Canción" para agregar la categoría nueva. - + You need to type in a song title. Debe escribir un título. - + You need to type in at least one verse. Debe agregar al menos un verso. - + The verse order is invalid. There is no verse corresponding to %s. Valid entries are %s. El orden del verso es inválido. Ningún verso corresponde a %s. Las entradas válidas son %s. - + Add Book Agregar Himnario - + This song book does not exist, do you want to add it? Este himnario no existe, ¿desea agregarlo? - + You need to have an author for this song. Debe ingresar un autor para esta canción. - + Linked Audio Audio Asociado - + Add &File(s) Agregar &Archivo(s) - + Add &Media Agregar &Medio - + Remove &All Quitar &Todo - + Open File(s) Abrir Archivo(s) - + <strong>Warning:</strong> Not all of the verses are in use. <strong>Advertencia:</strong> No se han utilizado todos los versos. - + The verse order is invalid. There are no verses corresponding to %s. Valid entries are %s. El orden de los versos es inválido. Ningún verso corresponde a %s. Las entradas válidas son %s. @@ -6738,22 +6728,22 @@ La codificación se encarga de la correcta representación de caracteres. SongsPlugin.EditVerseForm - + Edit Verse Editar Verso - + &Verse type: Tipo de &verso: - + &Insert &Insertar - + Split a slide into two by inserting a verse splitter. Insertar un separador para dividir la diapositiva. @@ -6761,82 +6751,82 @@ La codificación se encarga de la correcta representación de caracteres. SongsPlugin.ExportWizardForm - + Song Export Wizard Asistente para Exportar Canciones - + Select Songs Seleccione Canciones - + Check the songs you want to export. Revise las canciones a exportar. - + Uncheck All Desmarcar Todo - + Check All Marcar Todo - + Select Directory Seleccione un Directorio - + Directory: Directorio: - + Exporting Exportando - + Please wait while your songs are exported. Por favor espere mientras se exportan las canciones. - + You need to add at least one Song to export. Debe agregar al menos una Canción para exportar. - + No Save Location specified Destino no especificado - + Starting export... Iniciando exportación... - + You need to specify a directory. Debe especificar un directorio. - + Select Destination Folder Seleccione Carpeta de Destino - + Select the directory where you want the songs to be saved. Seleccionar el directorio para guardar las canciones. - + This wizard will help to export your songs to the open and free <strong>OpenLyrics</strong> worship song format. Este asistente le ayudará a exportar canciones al formato gratuito y de código abierto <strong>OpenLyrics</strong>. @@ -6844,172 +6834,172 @@ La codificación se encarga de la correcta representación de caracteres. SongsPlugin.ImportWizardForm - + Select Document/Presentation Files Seleccione Documento/Presentación - + Song Import Wizard Asistente para Exportar Canciones - + 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. Este asistente le ayudará a importar canciones de diversos formatos. Presione Siguiente para iniciar el proceso al seleccionar un formato a importar. - + Generic Document/Presentation Documento/Presentación genérica - + Add Files... Agregar Archivos... - + Remove File(s) Eliminar Archivo(s) - + Please wait while your songs are imported. Por favor espere mientras se exportan las canciones. - + OpenLP 2.0 Databases Base de Datos OpenLP 2.0 - + openlp.org v1.x Databases Base de datos openlp v1.x - + Words Of Worship Song Files Archivo Words Of Worship - + Songs Of Fellowship Song Files Archivo Songs Of Fellowship - + SongBeamer Files Archivo SongBeamer - + SongShow Plus Song Files Archivo SongShow Plus - + Foilpresenter Song Files Archivo Foilpresenter - + Copy Copiar - + Save to File Guardar a Archivo - + The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. El importador de Songs of Fellowship se ha deshabilitado porque OpenOffice.org o LibreOffice no esta disponible. - + The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. El importador documento/presentación se ha deshabilitado porque OpenOffice.org o LibreOffice no esta disponible. - + OpenLyrics or OpenLP 2.0 Exported Song Canción exportada de OpenLyrics o OpenLP 2.0 - + OpenLyrics Files Archivos OpenLyrics - + CCLI SongSelect Files Archivos CCLI SongSelect - + EasySlides XML File Archivo EasySlides XML - + EasyWorship Song Database Base de Datos EasyWorship - + DreamBeam Song Files Archivos de Canción DreamBeam - + You need to specify a valid PowerSong 1.0 database folder. Debe especificar un folder de datos PowerSong 1.0 válido. - + 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>. Primero convierta su base de datos ZionWork a un archivo de texto CSV, como se explica en el <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">Manual de Usuario</a>. - + SundayPlus Song Files Archivos de SundayPlus - + This importer has been disabled. Este importador se ha deshabilitado. - + MediaShout Database Base de datos MediaShout - + The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. El importador MediaShout se puede usar en windows únicamente. Se ha deshabilitado porque falta un módulo Python. Debe instalar el módulo "pyodbc" para usar este importador. - + SongPro Text Files Archivos de texto SongPro - + SongPro (Export File) SongPro (Archivo Exportado) - + In SongPro, export your songs using the File -> Export menu En SongPro, puede exportar canciones en el menú Archivo -> Exportar @@ -7017,12 +7007,12 @@ La codificación se encarga de la correcta representación de caracteres. SongsPlugin.MediaFilesForm - + Select Media File(s) Seleccionar Archivo(s) de Medios - + Select one or more audio files from the list below, and click OK to import them into this song. Seleccione uno o más archivos de audio de la lista, presione OK para incluirlos en esta canción. @@ -7040,7 +7030,7 @@ La codificación se encarga de la correcta representación de caracteres.Letra - + CCLI License: Licensia CCLI: @@ -7050,7 +7040,7 @@ La codificación se encarga de la correcta representación de caracteres.Canción Completa - + Are you sure you want to delete the %n selected song(s)? ¿Desea borrar %n canción seleccionada? @@ -7063,7 +7053,7 @@ La codificación se encarga de la correcta representación de caracteres.Administrar la lista de autores, categorías e himnarios. - + copy For song cloning duplicar @@ -7097,7 +7087,7 @@ La codificación se encarga de la correcta representación de caracteres. SongsPlugin.MediaShoutImport - + Unable to open the MediaShout database. No se logró abrir la base de datos MediaShout @@ -7105,7 +7095,7 @@ La codificación se encarga de la correcta representación de caracteres. SongsPlugin.OpenLP1SongImport - + Not a valid openlp.org 1.x song database. Base de datos openlp.org 1.x no válida. @@ -7113,7 +7103,7 @@ La codificación se encarga de la correcta representación de caracteres. SongsPlugin.OpenLPSongImport - + Not a valid OpenLP 2.0 song database. Base de datos OpenLP 2.0 no válida. @@ -7121,7 +7111,7 @@ La codificación se encarga de la correcta representación de caracteres. SongsPlugin.OpenLyricsExport - + Exporting "%s"... Exportando "%s"... @@ -7129,55 +7119,55 @@ La codificación se encarga de la correcta representación de caracteres. SongsPlugin.PowerSongImport - + No songs to import. No hay canciones para importar. - + Verses not found. Missing "PART" header. Versos no encontrados. Falta encabezado "PART" - + No %s files found. - + Ningún archivo %s encontrado. - + Invalid %s file. Unexpected byte value. - + Archivo %s inválido. Valor de byte inesperado. - + Invalid %s file. Missing "TITLE" header. - + Archivo %s inválido.Falta encabezado "TITLE" - + Invalid %s file. Missing "COPYRIGHTLINE" header. - + Archivo %s inválido.Falta encabezado "COPYRIGHTLINE" SongsPlugin.SongBookForm - + Song Book Maintenance Administración de Himnarios - + &Name: &Nombre: - + &Publisher: &Editor: - + You need to type in a name for the book. Debe ingresar un nombre para el himnario. @@ -7185,12 +7175,12 @@ La codificación se encarga de la correcta representación de caracteres. SongsPlugin.SongExportForm - + Your song export failed. La importación falló. - + Finished export. To import these files use the <strong>OpenLyrics</strong> importer. Exportación finalizada. Use el importador <strong>OpenLyrics</strong> para estos archivos. @@ -7198,27 +7188,27 @@ La codificación se encarga de la correcta representación de caracteres. SongsPlugin.SongImport - + copyright derechos de autor - + The following songs could not be imported: Las siguientes canciones no se importaron: - + Cannot access OpenOffice or LibreOffice Imposible accesar OpenOffice o LibreOffice - + Unable to open file No se puede abrir el archivo - + File not found Archivo no encontrado @@ -7226,107 +7216,107 @@ La codificación se encarga de la correcta representación de caracteres. SongsPlugin.SongMaintenanceForm - + Could not add your author. No se pudo agregar el autor. - + This author already exists. Este autor ya existe. - + Could not add your topic. No se pudo agregar la categoría. - + This topic already exists. Esta categoría ya existe. - + Could not add your book. No se pudo agregar el himnario. - + This book already exists. Este himnario ya existe. - + Could not save your changes. No se pudo guardar los cambios. - + Could not save your modified author, because the author already exists. No se pudo guardar el autor, porque este ya existe. - + Could not save your modified topic, because it already exists. No se pudo guardar la categoría, porque esta ya existe. - + Delete Author Borrar Autor - + Are you sure you want to delete the selected author? ¿Desea eliminar el autor seleccionado? - + This author cannot be deleted, they are currently assigned to at least one song. No se puede eliminar el autor, esta asociado con al menos una canción. - + Delete Topic Borrar Categoría - + Are you sure you want to delete the selected topic? ¿Desea eliminar la categoría seleccionada? - + This topic cannot be deleted, it is currently assigned to at least one song. No se puede eliminar la categoría, esta asociada con al menos una canción. - + Delete Book Eliminar Libro - + Are you sure you want to delete the selected book? ¿Desea eliminar el himnario seleccionado? - + This book cannot be deleted, it is currently assigned to at least one song. Este himnario no se puede eliminar, esta asociado con al menos una canción. - + The author %s already exists. Would you like to make songs with author %s use the existing author %s? El autor %s ya existe. ¿Desea que las canciones con el autor %s utilizen el existente %s? - + The topic %s already exists. Would you like to make songs with topic %s use the existing topic %s? La categoría %s ya existe. ¿Desea que las canciones con la categoría %s utilizen la existente %s? - + The book %s already exists. Would you like to make songs with book %s use the existing book %s? El himnario %s ya existe. ¿Desea que las canciones con el himnario %s utilizen el existente %s? @@ -7334,27 +7324,27 @@ La codificación se encarga de la correcta representación de caracteres. SongsPlugin.SongsTab - + Songs Mode Modo de canciones - + Enable search as you type Buscar a medida que se escribe - + Display verses on live tool bar Mostar los versos en la barra de proyección - + Update service from song edit Actualizar servicio desde el editor - + Import missing songs from service files Importar canciones faltantes desde archivos de servicio @@ -7362,17 +7352,17 @@ La codificación se encarga de la correcta representación de caracteres. SongsPlugin.TopicsForm - + Topic Maintenance Administración de Categorías - + Topic name: Categoría: - + You need to type in a topic name. Debe escribir un nombre para la categoría. @@ -7380,37 +7370,37 @@ La codificación se encarga de la correcta representación de caracteres. SongsPlugin.VerseType - + Verse Verso - + Chorus Coro - + Bridge Puente - + Pre-Chorus Pre-Coro - + Intro Intro - + Ending Final - + Other Otro @@ -7418,29 +7408,29 @@ La codificación se encarga de la correcta representación de caracteres. SongsPlugin.ZionWorxImport - + Error reading CSV file. Error al leer el archivo CSV. - + File not valid ZionWorx CSV format. Archivo ZionWorx CSV inválido. - + Line %d: %s - + Línea %d: %s - + Decoding error: %s - + Error de decodificación: %s - + Record %d - + Registrar %d diff --git a/resources/i18n/es_CL.ts b/resources/i18n/es_CL.ts new file mode 100644 index 000000000..4181cdcec --- /dev/null +++ b/resources/i18n/es_CL.ts @@ -0,0 +1,7313 @@ + + + + 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. + + + + + 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? + + + + + AlertsPlugin.AlertsManager + + + Alert message created and displayed. + + + + + AlertsPlugin.AlertsTab + + + Font + + + + + Font name: + + + + + Font color: + + + + + Background color: + + + + + Font size: + + + + + Alert timeout: + + + + + 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. + + + + + &Upgrade older Bibles + + + + + Upgrade the Bible databases to the latest 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. + + + + + 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. + + + + + 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". + + + + + 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. + + + + + BiblesPlugin.BibleManager + + + Scripture Reference Error + + + + + Web Bible cannot be used + + + + + 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. + + + + + 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 +Book Chapter%(range)sChapter +Book Chapter%(verse)sVerse%(range)sVerse +Book Chapter%(verse)sVerse%(range)sVerse%(list)sVerse%(range)sVerse +Book Chapter%(verse)sVerse%(range)sVerse%(list)sChapter%(verse)sVerse%(range)sVerse +Book Chapter%(verse)sVerse%(range)sChapter%(verse)sVerse + Please pay attention to the appended "s" of the wildcards and refrain from translating the words inside the names in the brackets. + + + + + 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. + + + + + 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 + + + + + Default Bible Language + + + + + Book name language in search field, +search results and on display: + + + + + Bible Language + + + + + Application Language + + + + + 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. + + + + + BiblesPlugin.BookNameForm + + + You need to select a book. + + + + + BiblesPlugin.CSVBible + + + Importing books... %s + + + + + Importing verses from %s... + Importing verses from <book name>... + + + + + Importing verses... done. + + + + + 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. + + + + + 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. + + + + + BiblesPlugin.HTTPBible + + + Registering Bible and loading books... + + + + + Registering Language... + + + + + Importing %s... + Importing <book name>... + + + + + Download Error + + + + + There was a problem downloading your verse selection. Please check your Internet connection, and if this error continues to occur please consider reporting a bug. + + + + + Parse Error + + + + + There was a problem extracting your verse selection. If this error continues to occur please consider reporting a bug. + + + + + 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 + + + + + Location: + + + + + Crosswalk + + + + + BibleGateway + + + + + Bible: + + + + + Download Options + + + + + Server: + + + + + Username: + + + + + Password: + + + + + Proxy Server (Optional) + + + + + 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 + + + + + Bibleserver + + + + + Permissions: + + + + + Bible file: + + + + + Books file: + + + + + Verses file: + + + + + openlp.org 1.x Bible Files + + + + + Registering Bible... + + + + + Registered Bible. Please note, that verses will be downloaded on +demand and thus an internet connection is required. + + + + + 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. + + + + + Language: + + + + + BiblesPlugin.LanguageForm + + + You need to choose a language. + + + + + 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. + + + + + Search Scripture Reference... + + + + + Search Text... + + + + + Are you sure you want to completely delete "%s" Bible from OpenLP? + +You will need to re-import this Bible to use it again. + + + + + BiblesPlugin.OpenSongImport + + + Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. + + + + + BiblesPlugin.Opensong + + + Importing %s %s... + Importing <book name> <chapter>... + + + + + BiblesPlugin.OsisImport + + + Detecting encoding (this may take a few minutes)... + + + + + Importing %s %s... + Importing <book name> <chapter>... + + + + + 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. + + + + + 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>. + + + + + 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 + + + + + Upgrading Bible %s of %s: "%s" +Upgrading ... + + + + + Download Error + + + + + To upgrade your Web Bibles an Internet connection is required. + + + + + Upgrading Bible %s of %s: "%s" +Upgrading %s ... + + + + + Upgrading Bible %s of %s: "%s" +Complete + + + + + , %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 + + + + + Upgrade failed. + + + + + You need to specify a backup directory for your Bibles. + + + + + Starting upgrade... + + + + + There are no Bibles that need to be upgraded. + + + + + 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. + + + + + 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. + + + + + CustomPlugin.CustomTab + + + Custom Display + + + + + Display footer + + + + + 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 + + + + + CustomPlugin.EditVerseForm + + + Edit Slide + + + + + CustomPlugin.MediaItem + + + Are you sure you want to delete the %n selected custom slide(s)? + + + + + + + + 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 + + + + + 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. + + + + + ImagePlugin.ExceptionDialog + + + Select Attachment + + + + + 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 + + + + + The following image(s) no longer exist: %s +Do you want to add the other images anyway? + + + + + There was a problem replacing your background, the image file "%s" no longer exists. + + + + + There was no display item to amend. + + + + + ImagesPlugin.ImageTab + + + Background Color + + + + + Default Color: + + + + + Visible background for images with aspect ratio different to screen. + + + + + MediaPlugin + + + <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. + + + + + 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. + + + + + 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. + + + + + Missing Media File + + + + + The file %s no longer exists. + + + + + Videos (%s);;Audio (%s);;%s (*) + + + + + There was no display item to amend. + + + + + Unsupported File + + + + + Automatic + + + + + Use Player: + + + + + MediaPlugin.MediaTab + + + Available Media Players + + + + + %s (unavailable) + + + + + Player Order + + + + + Allow media player to be overridden + + + + + OpenLP + + + Image Files + + + + + Information + + + + + Bible format has changed. +You have to upgrade your existing Bibles. +Should OpenLP upgrade now? + + + + + OpenLP.AboutForm + + + Credits + + + + + License + + + + + 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 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. + + + + + Copyright © 2004-2012 %s +Portions copyright © 2004-2012 %s + + + + + 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. + +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 volunteering by using the button below. + + + + + Volunteer + + + + + Project Lead + %s + +Developers + %s + +Contributors + %s + +Testers + %s + +Packagers + %s + +Translators + Afrikaans (af) + %s + Czeck (cs) + %s + Danish (da) + %s + German (de) + %s + Greek (el) + %s + English, United Kingdom (en_GB) + %s + English, South Africa (en_ZA) + %s + Spanish (es) + %s + Estonian (et) + %s + French (fr) + %s + Hungarian (hu) + %s + Japanese (ja) + %s + Norwegian Bokmål (nb) + %s + Dutch (nl) + %s + Portuguese, Brazil (pt_BR) + %s + Russian (ru) + %s + Swedish (sv) + %s + +Documentation + %s + +Built With + Python: http://www.python.org/ + Qt4: http://qt.digia.com/ + PyQt4: http://www.riverbankcomputing.co.uk/software/pyqt/intro + Oxygen Icons: http://oxygen-icons.org/ + +Final Credit + "For God so loved the world that He gave + His one and only Son, so that whoever + believes in Him will not perish but inherit + eternal life." -- John 3:16 + + And last but not least, final credit goes to + God our Father, for sending His Son to die + on the cross, setting us free from sin. We + bring this software to you for free because + He has set us free. + + + + + 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. + + + + + 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 + + + + + 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 + + + + + OpenLP data directory was not found + +%s + +This data directory was previously changed from the OpenLP default location. If the new location was on removable media, that media needs to be made available. + +Click "No" to stop loading OpenLP. allowing you to fix the the problem. + +Click "Yes" to reset the data directory to the default location. + + + + + Are you sure you want to change the location of the OpenLP data directory to: + +%s + +The data directory will be changed when OpenLP is closed. + + + + + WARNING: + +The location you have selected + +%s + +appears to contain OpenLP data files. Do you wish to replace these files with the current data files? + + + + + 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. + + + + + Send E-Mail + + + + + Save to File + + + + + Please enter a description of what you were doing to cause this error +(Minimum 20 characters) + + + + + Attach File + + + + + Description characters to enter : %s + + + + + OpenLP.ExceptionForm + + + Platform: %s + + + + + + Save Crash Report + + + + + Text files (*.txt *.log *.text) + + + + + **OpenLP Bug Report** +Version: %s + +--- Details of the Exception. --- + +%s + + --- Exception Traceback --- +%s +--- System information --- +%s +--- Library Versions --- +%s + + + + + + *OpenLP Bug Report* +Version: %s + +--- Details of the Exception. --- + +%s + + --- Exception Traceback --- +%s +--- System information --- +%s +--- Library Versions --- +%s + + Please add the information that bug reports are favoured written in English. + + + + + OpenLP.FileRenameForm + + + File Rename + + + + + New File Name: + + + + + File Copy + + + + + OpenLP.FirstTimeLanguageForm + + + Select Translation + + + + + Choose the translation you'd like to use in OpenLP. + + + + + Translation: + + + + + 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... + + + + + Download complete. Click the finish button to start 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. + + + + + 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. + + + + + Setting Up And Downloading + + + + + Please wait while OpenLP is set up and your data is downloaded. + + + + + Setting Up + + + + + Click the finish button to start OpenLP. + + + + + Download complete. Click the finish button to return to OpenLP. + + + + + Click the finish button to return to 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. + + + + + + +To cancel the First Time Wizard completely (and not start OpenLP), click the Cancel button now. + + + + + OpenLP.FormattingTagDialog + + + Configure Formatting Tags + + + + + Edit Selection + + + + + Save + + + + + Description + + + + + Tag + + + + + Start HTML + + + + + End HTML + + + + + OpenLP.FormattingTagForm + + + Update Error + + + + + Tag "n" already defined. + + + + + New Tag + + + + + <HTML here> + + + + + </and here> + + + + + Tag %s already defined. + + + + + OpenLP.FormattingTags + + + Red + + + + + Black + + + + + Blue + + + + + Yellow + + + + + Green + + + + + Pink + + + + + Orange + + + + + Purple + + + + + White + + + + + Superscript + + + + + Subscript + + + + + Paragraph + + + + + Bold + + + + + Italics + + + + + Underline + + + + + Break + + + + + 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 + + + + + SongSelect username: + + + + + SongSelect password: + + + + + X + + + + + Y + + + + + Height + + + + + Width + + + + + Check for updates to 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 + + + + + OpenLP.LanguageManager + + + Language + Spanish (Chile) + + + + Please restart OpenLP to use your new language setting. + + + + + OpenLP.MainDisplay + + + OpenLP Display + + + + + 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 + + + + + &Theme + + + + + &Configure 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 + + + + + &Online Help + + + + + &Web Site + + + + + Use the system language, if available. + + + + + Set the interface language to %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/. + + + + + OpenLP Version Updated + + + + + OpenLP Main Display Blanked + + + + + The Main Display has been blanked out + + + + + Default Theme: %s + + + + + English + Please add the name of your language here + + + + + Configure &Shortcuts... + + + + + Close OpenLP + + + + + Are you sure you want to close 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. + + + + + Clear List + Clear List of recent files + + + + + Clear the list of recent files. + + + + + Configure &Formatting Tags... + + + + + Export OpenLP settings to a specified *.config file + + + + + Settings + + + + + Import OpenLP settings from a specified *.config file previously exported on this or another machine + + + + + Import settings? + + + + + Are you sure you want to import settings? + +Importing settings will make permanent changes to your current OpenLP configuration. + +Importing incorrect settings may cause erratic behaviour or OpenLP to terminate abnormally. + + + + + Open File + + + + + OpenLP Export Settings Files (*.conf) + + + + + Import settings + + + + + 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 + + + + + The file you selected does appear to be a valid OpenLP settings file. + +Section [%s] is not valid + +Processing has terminated and no changed have been made. + + + + + Copying OpenLP data to new data directory location - %s - Please wait for copy to finish + + + + + OpenLP Data directory copy failed + +%s + + + + + 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 + + + + + OpenLP cannot load your database. + +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. + + + + + You must select one or more items to add. + + + + + No Search Results + + + + + Invalid File Type + + + + + Invalid File %s. +Suffix not supported + + + + + &Clone + + + + + Duplicate files were found on import and were ignored. + + + + + OpenLP.OpenLyricsImportError + + + <lyrics> tag is missing. + + + + + <verse> tag is missing. + + + + + OpenLP.PluginForm + + + Plugin List + + + + + Plugin Details + + + + + Status: + + + + + Active + + + + + Inactive + + + + + %s (Inactive) + + + + + %s (Active) + + + + + %s (Disabled) + + + + + OpenLP.PrintServiceDialog + + + Fit Page + + + + + Fit Width + + + + + OpenLP.PrintServiceForm + + + Options + + + + + Copy + + + + + Copy as 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: + + + + + OpenLP.ScreenList + + + Screen + + + + + primary + + + + + OpenLP.ServiceItem + + + <strong>Start</strong>: %s + + + + + <strong>Length</strong>: %s + + + + + OpenLP.ServiceItemEditForm + + + Reorder Service Item + + + + + OpenLP.ServiceManager + + + Move to &top + + + + + Move item to the top of the service. + + + + + Move &up + + + + + Move item up one position in the service. + + + + + Move &down + + + + + Move item down one position in the service. + + + + + Move to &bottom + + + + + Move item to the end of the service. + + + + + &Delete From Service + + + + + Delete the selected item from the service. + + + + + &Add New Item + + + + + &Add to Selected Item + + + + + &Edit Item + + + + + &Reorder Item + + + + + &Notes + + + + + &Change Item Theme + + + + + OpenLP Service Files (*.osz) + + + + + File is not a valid service. +The content encoding is not UTF-8. + + + + + File is not a valid service. + + + + + Missing Display Handler + + + + + Your item cannot be displayed as there is no handler to display it + + + + + Your item cannot be displayed as the plugin required to display it is missing or inactive + + + + + &Expand all + + + + + Expand all the service items. + + + + + &Collapse all + + + + + Collapse all the service items. + + + + + Open File + + + + + Moves the selection down the window. + + + + + Move up + + + + + Moves the selection up the window. + + + + + Go Live + + + + + Send the selected item to Live. + + + + + &Start Time + + + + + Show &Preview + + + + + 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. + + + + + Slide theme + + + + + Notes + + + + + Edit + + + + + Service copy only + + + + + Error Saving File + + + + + There was an error saving your file. + + + + + Service File(s) Missing + + + + + The following file(s) in the service are missing: +%s + +These files will be removed if you continue to save. + + + + + OpenLP.ServiceNoteForm + + + Service Item Notes + + + + + OpenLP.SettingsForm + + + Configure OpenLP + + + + + OpenLP.ShortcutListDialog + + + Action + + + + + Shortcut + + + + + Duplicate Shortcut + + + + + The shortcut "%s" is already assigned to another action, please use a different shortcut. + + + + + 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 + + + + + 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. + + + + + 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 + + + + + OpenLP.SpellTextEdit + + + Spelling Suggestions + + + + + Formatting Tags + + + + + Language: + + + + + 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. + + + + + 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) + + + + + You must select a theme to edit. + + + + + You are unable to delete the default theme. + + + + + Theme %s is used in the %s plugin. + + + + + You have not selected a theme. + + + + + Save Theme - (%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? + + + + + You must select a theme to delete. + + + + + Delete Confirmation + + + + + Delete %s theme? + + + + + Validation Error + + + + + A theme with this name already exists. + + + + + OpenLP Themes (*.theme *.otz) + + + + + Copy of %s + Copy of <theme name> + + + + + Theme Already Exists + + + + + Theme %s already exists. Do you want to replace it? + + + + + OpenLP.ThemeWizard + + + Theme Wizard + + + + + Welcome to the Theme Wizard + + + + + Set Up Background + + + + + Set up your theme's background according to the parameters below. + + + + + Background type: + + + + + Solid Color + + + + + Gradient + + + + + Color: + + + + + Gradient: + + + + + Horizontal + + + + + Vertical + + + + + Circular + + + + + Top Left - Bottom Right + + + + + Bottom Left - Top Right + + + + + Main Area Font Details + + + + + Define the font and display characteristics for the Display text + + + + + Font: + + + + + Size: + + + + + Line Spacing: + + + + + &Outline: + + + + + &Shadow: + + + + + Bold + + + + + Italic + + + + + Footer Area Font Details + + + + + Define the font and display characteristics for the Footer text + + + + + Text Formatting Details + + + + + Allows additional display formatting information to be defined + + + + + Horizontal Align: + + + + + Left + + + + + Right + + + + + Center + + + + + Output Area Locations + + + + + Allows you to change and move the main and footer areas. + + + + + &Main Area + + + + + &Use default location + + + + + X position: + + + + + px + + + + + Y position: + + + + + Width: + + + + + Height: + + + + + Use default location + + + + + Theme name: + + + + + Edit Theme - %s + + + + + This wizard will help you to create and edit your themes. Click the next button below to start the process by setting up your background. + + + + + Transitions: + + + + + &Footer Area + + + + + Starting color: + + + + + Ending color: + + + + + Background color: + + + + + Justify + + + + + Layout Preview + + + + + Transparent + + + + + Preview and Save + + + + + Preview the theme and save it. + + + + + (approximately %d lines per slide) + + + + + Background Image Empty + + + + + You have not selected a background image. Please select one before continuing. + + + + + Select Image + + + + + Theme Name Missing + + + + + There is no name for this theme. Please enter one. + + + + + Theme Name Invalid + + + + + Invalid theme name. Please enter one. + + + + + 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 + + + + + OpenLP.Ui + + + Error + + + + + About + + + + + &Add + + + + + Advanced + + + + + All Files + + + + + Bottom + + + + + Browse... + + + + + Cancel + + + + + CCLI number: + + + + + Create a new service. + + + + + &Delete + + + + + &Edit + + + + + Empty Field + + + + + Export + + + + + pt + Abbreviated font pointsize unit + + + + + 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 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 + + + + + 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"... + + + + + 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. + + + + + Open %s File + + + + + %p% + + + + + Ready. + + + + + Starting 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 + + + + + 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? + + + + + Settings + + + + + Tools + + + + + Unsupported File + + + + + Verse Per Slide + + + + + Verse Per Line + + + + + View + + + + + Title and/or verses not found + + + + + XML syntax error + + + + + 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 + + + + + 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 + + + + + Importing Songs + + + + + 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 + + + + + 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 + + + + + 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. + + + + + PresentationPlugin.MediaItem + + + Select Presentation(s) + + + + + Automatic + + + + + Present using: + + + + + File Exists + + + + + A presentation with that filename already exists. + + + + + This type of presentation is not supported. + + + + + Presentations (%s) + + + + + Missing Presentation + + + + + The presentation %s is incomplete, please reload. + + + + + The presentation %s no longer exists. + + + + + PresentationPlugin.PresentationTab + + + Available Controllers + + + + + %s (unavailable) + + + + + Allow presentation application to be overridden + + + + + 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 + + + + + Remotes + name plural + + + + + Remote + container title + + + + + RemotePlugin.Mobile + + + OpenLP 2.0 Remote + + + + + OpenLP 2.0 Stage View + + + + + 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 &amp; Go to Service + + + + + Service + + + + + Slides + + + + + RemotePlugin.RemoteTab + + + Serve on IP address: + + + + + Port number: + + + + + Server Settings + + + + + Remote URL: + + + + + Stage view URL: + + + + + Display stage time in 12h format + + + + + Android App + + + + + Scan the QR code or click <a href="https://play.google.com/store/apps/details?id=org.openlp.android">download</a> to install the Android app from Google Play. + + + + + 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. + + + + + SongUsage + name singular + + + + + SongUsage + name plural + + + + + SongUsage + container title + + + + + Song Usage + + + + + Song usage tracking is active. + + + + + Song usage tracking is inactive. + + + + + display + + + + + printed + + + + + 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. + + + + + SongUsagePlugin.SongUsageDetailForm + + + Song Usage Extraction + + + + + Select Date Range + + + + + to + + + + + Report Location + + + + + Output File Location + + + + + usage_detail_%s_%s.txt + + + + + Report Creation + + + + + Report +%s +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. + + + + + SongsPlugin + + + &Song + + + + + Import songs using the import wizard. + + + + + <strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs. + + + + + &Re-index Songs + + + + + Re-index the songs database to improve searching and ordering. + + + + + Reindexing songs... + + + + + Arabic (CP-1256) + + + + + Baltic (CP-1257) + + + + + Central European (CP-1250) + + + + + Cyrillic (CP-1251) + + + + + Greek (CP-1253) + + + + + Hebrew (CP-1255) + + + + + Japanese (CP-932) + + + + + Korean (CP-949) + + + + + Simplified Chinese (CP-936) + + + + + Thai (CP-874) + + + + + Traditional Chinese (CP-950) + + + + + Turkish (CP-1254) + + + + + Vietnam (CP-1258) + + + + + Western European (CP-1252) + + + + + Character Encoding + + + + + 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 + + + + + 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. + + + + + Reindexing songs + + + + + 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? + + + + + SongsPlugin.CCLIFileImport + + + The file does not have a valid extension. + + + + + SongsPlugin.EasyWorshipSongImport + + + Administered by %s + + + + + +[above are Song Tags with notes imported from + EasyWorship] + + + + + SongsPlugin.EditBibleForm + + + Meta Data + + + + + Custom Book Names + + + + + 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. + + + + + Add Book + + + + + This song book does not exist, do you want to add it? + + + + + You need to have an author for this song. + + + + + Linked Audio + + + + + Add &File(s) + + + + + Add &Media + + + + + Remove &All + + + + + Open File(s) + + + + + <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. + + + + + SongsPlugin.EditVerseForm + + + Edit Verse + + + + + &Verse type: + + + + + &Insert + + + + + Split a slide into two by inserting a verse splitter. + + + + + 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. + + + + + 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.org v1.x Databases + + + + + Words Of Worship Song Files + + + + + Songs Of Fellowship Song Files + + + + + SongBeamer Files + + + + + SongShow Plus Song Files + + + + + Foilpresenter Song Files + + + + + Copy + + + + + Save to File + + + + + The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. + + + + + The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. + + + + + OpenLyrics or OpenLP 2.0 Exported Song + + + + + OpenLyrics Files + + + + + 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 + + + + + This importer has been disabled. + + + + + MediaShout Database + + + + + The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. + + + + + SongPro Text Files + + + + + SongPro (Export File) + + + + + In SongPro, export your songs using the File -> Export menu + + + + + 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. + + + + + SongsPlugin.MediaItem + + + Titles + + + + + Lyrics + + + + + CCLI License: + + + + + Entire Song + + + + + Are you sure you want to delete the %n selected song(s)? + + + + + + + + Maintain the lists of authors, topics and books. + + + + + copy + For song cloning + + + + + Search Titles... + + + + + Search Entire Song... + + + + + Search Lyrics... + + + + + Search Authors... + + + + + Search Song Books... + + + + + SongsPlugin.MediaShoutImport + + + Unable to open the MediaShout database. + + + + + SongsPlugin.OpenLP1SongImport + + + Not a valid openlp.org 1.x song database. + + + + + SongsPlugin.OpenLPSongImport + + + Not a valid OpenLP 2.0 song database. + + + + + SongsPlugin.OpenLyricsExport + + + Exporting "%s"... + + + + + SongsPlugin.PowerSongImport + + + No songs to import. + + + + + Verses not found. Missing "PART" header. + + + + + No %s files found. + + + + + Invalid %s file. Unexpected byte value. + + + + + Invalid %s file. Missing "TITLE" header. + + + + + Invalid %s file. Missing "COPYRIGHTLINE" header. + + + + + SongsPlugin.SongBookForm + + + Song Book Maintenance + + + + + &Name: + + + + + &Publisher: + + + + + You need to type in a name for the book. + + + + + SongsPlugin.SongExportForm + + + Your song export failed. + + + + + Finished export. To import these files use the <strong>OpenLyrics</strong> importer. + + + + + SongsPlugin.SongImport + + + copyright + + + + + The following songs could not be imported: + + + + + Cannot access OpenOffice or LibreOffice + + + + + Unable to open file + + + + + File not found + + + + + 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? + + + + + 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? + + + + + 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 + + + + + SongsPlugin.TopicsForm + + + Topic Maintenance + + + + + Topic name: + + + + + You need to type in a topic name. + + + + + SongsPlugin.VerseType + + + Verse + + + + + Chorus + + + + + Bridge + + + + + Pre-Chorus + + + + + Intro + + + + + Ending + + + + + Other + + + + + SongsPlugin.ZionWorxImport + + + Error reading CSV file. + + + + + File not valid ZionWorx CSV format. + + + + + Line %d: %s + + + + + Decoding error: %s + + + + + Record %d + + + + diff --git a/resources/i18n/et.ts b/resources/i18n/et.ts index e49219344..97e06210d 100644 --- a/resources/i18n/et.ts +++ b/resources/i18n/et.ts @@ -3,35 +3,35 @@ AlertsPlugin - + &Alert &Teade - + Show an alert message. Teate kuvamine. - + Alert name singular Teade - + Alerts name plural Teated - + Alerts container title Teated - + <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of nursery alerts on the display screen. <strong>Teadete plugin</strong><br />Teadete plugina abil saab ekraanil näidata näiteks lastehoiu või muid teateid. @@ -39,69 +39,69 @@ AlertsPlugin.AlertForm - + Alert Message Teate sõnum - + Alert &text: Teate &tekst: - + &New &Uus - + &Save &Salvesta - + Displ&ay &Kuva - + Display && Cl&ose Kuva && &sulge - + New Alert Uus teade - + You haven't specified any text for your alert. Please type in some text before clicking New. Sa ei ole oma teatele teksti lisanud. Enne nupu Uus vajutamist sisesta mingi tekst. - + &Parameter: &Parameeter: - + No Parameter Found Parameetreid ei leitud - + You have not entered a parameter to be replaced. Do you want to continue anyway? Sa ei ole sisestanud parameetrit, mida asendada. Kas tahad siiski jätkata? - + No Placeholder Found Kohahoidjat ei leitud - + The alert text does not contain '<>'. Do you want to continue anyway? Teate tekst ei sisalda '<>' märke. @@ -119,32 +119,32 @@ Kas tahad siiski jätkata? AlertsPlugin.AlertsTab - + Font Font - + Font name: Fondi nimi: - + Font color: Teksti värvus: - + Background color: Tausta värvus: - + Font size: Teksti suurus: - + Alert timeout: Teate kestus: @@ -152,510 +152,510 @@ Kas tahad siiski jätkata? BiblesPlugin - + &Bible &Piibel - + Bible name singular Piibel - + Bibles name plural Piiblid - + Bibles container title Piiblid - + No Book Found Ühtegi raamatut ei leitud - + No matching book could be found in this Bible. Check that you have spelled the name of the book correctly. Sellest Piiblist ei leitud vastavat raamatut. Kontrolli, kas sa sisestasid raamatu nime õigesti. - + Import a Bible. Piibli importimine. - + Add a new Bible. Uue Piibli lisamine. - + Edit the selected Bible. Valitud Piibli muutmine. - + Delete the selected Bible. Valitud Piibli kustutamine. - + Preview the selected Bible. Valitud Piibli eelvaade. - + Send the selected Bible live. Valitud Piibli saatmine ekraanile. - + Add the selected Bible to the service. Valitud Piibli lisamine teenistusele. - + <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display Bible verses from different sources during the service. <strong>Piibli plugin</strong><br />Piibli plugin võimaldab kuvada teenistuse ajal eri allikatest piiblisalme. - + &Upgrade older Bibles &Uuenda vanemad Piiblid - + Upgrade the Bible databases to the latest format. Piiblite andmebaaside uuendamine uusimasse vormingusse. - + Genesis 1. Moosese - + Exodus 2. Moosese - + Leviticus 3. Moosese - + Numbers 4. Moosese - + Deuteronomy 5. Moosese - + Joshua Joosua - + Judges Kohtumõistjate - + Ruth Rutt - + 1 Samuel 1. Saamueli - + 2 Samuel 2. Saamueli - + 1 Kings 1. Kuningate - + 2 Kings 2. Kuningate - + 1 Chronicles 1. Ajaraamat - + 2 Chronicles 2. Ajaraamat - + Ezra Esra - + Nehemiah Nehemja - + Esther Ester - + Job Iiob - + Psalms Psalmid - + Proverbs Õpetussõnad - + Ecclesiastes Koguja - + Song of Solomon Ülemlaul - + Isaiah Jesaja - + Jeremiah Jeremia - + Lamentations Nutulaulud - + Ezekiel Hesekiel - + Daniel Taaniel - + Hosea Hoosea - + Joel Joel - + Amos Aamos - + Obadiah Obadja - + Jonah Joona - + Micah Miika - + Nahum Nahum - + Habakkuk Habakuk - + Zephaniah Sefanja - + Haggai Haggai - + Zechariah Sakarja - + Malachi Malaki - + Matthew Matteuse - + Mark Markuse - + Luke Luuka - + John Johannese - + Acts Apostlite teod - + Romans Roomlastele - + 1 Corinthians 1. Korintlastele - + 2 Corinthians 2. Korintlastele - + Galatians Galaatlastele - + Ephesians Efeslastele - + Philippians Filiplastele - + Colossians Koloslastele - + 1 Thessalonians 1. Tessalooniklastele - + 2 Thessalonians 2. Tessalooniklastele - + 1 Timothy 1. Timoteosele - + 2 Timothy 2. Timoteosele - + Titus Tiitusele - + Philemon Fileemonile - + Hebrews Heebrealastele - + James Jaakobuse - + 1 Peter 1. Peetruse - + 2 Peter 2. Peetruse - + 1 John 1. Johannese - + 2 John 2. Johannese - + 3 John 3. Johannese - + Jude Juuda - + Revelation Ilmutus - + Judith Juudit - + Wisdom Saalomoni tarkuse raamat - + Tobit Toobit - + Sirach Siirak - + Baruch Baaruk - + 1 Maccabees 1. Makkabite - + 2 Maccabees 2. Makkabite - + 3 Maccabees 3. Makkabite - + 4 Maccabees 4. Makkabite - + Rest of Daniel Taanieli raamatu lisad - + Rest of Esther Estri raamatu lisad - + Prayer of Manasses Manasse palved - + Letter of Jeremiah Jeremija kiri - + Prayer of Azariah Asarja palve - + Susanna Susanna - + Bel Bel - + 1 Esdras 1. Esdra - + 2 Esdras 2. Esdra - + :|v|V|verse|verses;;-|to;;,|and;;end Double-semicolon delimited separators for parsing references. Consult the developers for further information. :|s|S|salm|salmid|v|V;;-|kuni;;,|ja|and;;lõpp|end @@ -664,32 +664,32 @@ Kas tahad siiski jätkata? BiblesPlugin.BibleEditForm - + You need to specify a version name for your Bible. Sa pead Piibli versioonile määrama nime. - + You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. Sa pead Piibli autoriõiguse omaniku määrama. Kui Piibel kuulub üldsuse omandisse (Public domain), siis märgi see vastavalt. - + Bible Exists Piibel on juba olemas - + This Bible already exists. Please import a different Bible or first delete the existing one. Piibel on juba olemas. Impordi Piibel teise nimega või kustuta enne olemasolev Piibel. - + You need to specify a book name for "%s". Pead "%s" jaoks raamatu nime määrama. - + 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. @@ -697,12 +697,12 @@ be followed by one or more non-numeric characters. Numbrid võivad asuda ainult alguses ning nende järel peab olema mõni täht. - + Duplicate Book Name Dubleeriv raamatu nimi - + The Book Name "%s" has been entered more than once. Raamatu nimi "%s" on juba ühe korra sisestatud. @@ -710,39 +710,39 @@ Numbrid võivad asuda ainult alguses ning nende järel peab olema mõni täht. BiblesPlugin.BibleManager - + Scripture Reference Error Kirjakohaviite tõrge - + Web Bible cannot be used Veebipiiblit pole võimalik kasutada - + Text Search is not available with Web Bibles. Tekstiotsing veebipiiblist pole võimalik. - + 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. Sa ei sisestanud otsingusõna. Sa võid eraldada võtmesõnad tühikuga, et otsida neid kõiki, või eraldada need komaga, et otsitaks ühte neist. - + There are no Bibles currently installed. Please use the Import Wizard to install one or more Bibles. Praegu pole ühtegi Piiblit paigaldatud. Palun paigalda mõni Piibel importimise nõustaja abil. - + No Bibles Available Ühtegi Piiblit pole saadaval - + 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 @@ -765,79 +765,79 @@ Raamat peatükk%(verse)ssalm%(range)speatükk%(verse)ssalm BiblesPlugin.BiblesTab - + Verse Display Salmi kuvamine - + Only show new chapter numbers Kuvatakse ainult uute peatükkide numbreid - + Bible theme: Piibli kujundus: - + No Brackets Ilma sulgudeta - + ( And ) ( ja ) - + { And } { ja } - + [ And ] [ ja ] - + Note: Changes do not affect verses already in the service. Märkus: Muudatused ei rakendu juba teenistuses olevatele salmidele. - + Display second Bible verses Piiblit kuvatakse kahes keeles - + Custom Scripture References Kohandatud kirjakohaviited - + Verse Separator: Salmide eraldaja: - + Range Separator: Vahemike eraldaja: - + List Separator: Loendi eraldaja: - + End Mark: Lõpu märk: - + 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. @@ -846,7 +846,7 @@ Need tuleb eraldada püstkriipsuga |. Vaikeväärtuse kasutamiseks jäta rida tühjaks. - + 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. @@ -855,7 +855,7 @@ Need tuleb eraldada püstkriipsuga |. Vaikeväärtuse kasutamiseks jäta rida tühjaks. - + 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. @@ -864,7 +864,7 @@ Need tuleb eraldada püstkriipsuga |. Vaikeväärtuse kasutamiseks jäta rida tühjaks. - + 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. @@ -873,29 +873,29 @@ Need tuleb eraldada püstkriipsuga |. Vaikeväärtuse kasutamiseks jäta rida tühjaks. - + English Inglise - + Default Bible Language Piibli vaikimisi keel - + Book name language in search field, search results and on display: Raamatu nimede keel otsinguväljal, otsingutulemustes ja ekraanil: - + Bible Language Piibli keel - + Application Language Rakenduse keel @@ -903,42 +903,42 @@ otsingutulemustes ja ekraanil: BiblesPlugin.BookNameDialog - + Select Book Name Vali raamatu nimi - + Current name: Praegune nimi: - + Corresponding name: Vastav nimi: - + Show Books From Näidatakse ainult - + Old Testament Vana testament - + New Testament Uus testament - + Apocrypha Apokrüüfid - + The following book name cannot be matched up internally. Please select the corresponding name from the list. Järgneva raamatu nimele ei leitud vastet. Palun vali õige nimi loetelust. @@ -946,7 +946,7 @@ otsingutulemustes ja ekraanil: BiblesPlugin.BookNameForm - + You need to select a book. Pead valima raamatu. @@ -954,18 +954,18 @@ otsingutulemustes ja ekraanil: BiblesPlugin.CSVBible - + Importing books... %s Raamatute importimine... %s - + Importing verses from %s... Importing verses from <book name>... Salmide importimine raamatust %s... - + Importing verses... done. Salmide importimine... valmis. @@ -973,69 +973,69 @@ otsingutulemustes ja ekraanil: BiblesPlugin.EditBibleForm - + Bible Editor Piibliredaktor - + License Details Litsentsi andmed - + Version name: Versiooni nimi: - + Copyright: Autoriõigus: - + Permissions: Lubatud: - + Default Bible Language Piibli vaikimisi keel - + Book name language in search field, search results and on display: Raamatu nime keel otsinguväljal, otsingutulemustes ja ekraanil: - + Global Settings Globaalsätted - + Bible Language Piibli keel - + Application Language Rakenduse keel - + English Inglise - + This is a Web Download Bible. It is not possible to customize the Book Names. See on veebipiibel. Veebipiibli raamatute nimesid pole võimalik muuta. - + 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. Kohandatud raamatunimede kasutamiseks peab metaandmete kaardil või, kui kasutatakse "Globaalsätteid", Piibli lehel OpenLP seadistuse all olema valitud "Piibli keel". @@ -1043,38 +1043,38 @@ Veebipiibli raamatute nimesid pole võimalik muuta. BiblesPlugin.HTTPBible - + Registering Bible and loading books... Piibli registreerimine ja raamatute laadimine... - + Registering Language... Keele registreerimine... - + Importing %s... Importing <book name>... Raamatu %s importimine... - + Download Error Tõrge allalaadimisel - + There was a problem downloading your verse selection. Please check your Internet connection, and if this error continues to occur please consider reporting a bug. Valitud salmide allalaadimisel esines viga. Kontrolli oma internetiühendust ning kui see viga kordub, teata sellest veast. - + Parse Error Parsimise viga - + There was a problem extracting your verse selection. If this error continues to occur please consider reporting a bug. Sinu salmide vahemiku analüüsimisel esines viga. Kui see viga kordub, siis palun teata sellest veast. @@ -1252,17 +1252,17 @@ vastavalt vajadusele ning seetõttu on vaja internetiühendust. BiblesPlugin.LanguageDialog - + Select Language Keele valimine - + OpenLP is unable to determine the language of this translation of the Bible. Please select the language from the list below. OpenLP ei suuda tuvastada selle piiblitõlke keelt. Palun vali keel järgnevast loendist. - + Language: Keel: @@ -1270,7 +1270,7 @@ vastavalt vajadusele ning seetõttu on vaja internetiühendust. BiblesPlugin.LanguageForm - + You need to choose a language. Pead valima keele. @@ -1278,92 +1278,92 @@ vastavalt vajadusele ning seetõttu on vaja internetiühendust. BiblesPlugin.MediaItem - + Quick Kiirotsing - + Find: Otsing: - + Book: Raamat: - + Chapter: Peatükk: - + Verse: Salm: - + From: Algus: - + To: Kuni: - + Text Search Tekstiotsing - + Second: Teine: - + Scripture Reference Salmiviide - + Toggle to keep or clear the previous results. Vajuta eelmiste tulemuste säilitamiseks või eemaldamiseks. - + You cannot combine single and dual Bible verse search results. Do you want to delete your search results and start a new search? Ühe- ja kahekeelseid piiblisalmide otsitulemusi pole võimalik kombineerida. Kas tahad otsingu tulemused kustutada ja alustada uue otsinguga? - + Bible not fully loaded. Piibel ei ole täielikult laaditud. - + Information Andmed - + 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. Teine Piibel ei sisalda kõiki salme, mis on peamises Piiblis. Näidatakse ainult neid salme, mis leiduvad mõlemas Piiblis. %d salmi ei kaasatud tulemustesse. - + Search Scripture Reference... Piibliviite otsing... - + Search Text... Teksti otsing... - + Are you sure you want to completely delete "%s" Bible from OpenLP? You will need to re-import this Bible to use it again. @@ -1375,7 +1375,7 @@ Et jälle seda piiblit kasutada, pead selle uuesti importima. BiblesPlugin.OpenSongImport - + Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. See piibli fail ei ole õiges vormingus. OpenSong vormingus piiblid võivad olla pakitud. Enne importimist pead need lahti pakkima. @@ -1383,7 +1383,7 @@ Et jälle seda piiblit kasutada, pead selle uuesti importima. BiblesPlugin.Opensong - + Importing %s %s... Importing <book name> <chapter>... %s %s. peatüki importimine... @@ -1392,12 +1392,12 @@ Et jälle seda piiblit kasutada, pead selle uuesti importima. BiblesPlugin.OsisImport - + Detecting encoding (this may take a few minutes)... Kooditabeli tuvastamine (see võib võtta mõne minuti)... - + Importing %s %s... Importing <book name> <chapter>... %s %s. peatüki importimine... @@ -1406,149 +1406,149 @@ Et jälle seda piiblit kasutada, pead selle uuesti importima. BiblesPlugin.UpgradeWizardForm - + Select a Backup Directory Varunduskataloogi valimine - + Bible Upgrade Wizard Piibli uuendamise nõustaja - + 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. See nõustaja aitab uuendada olemasolevaid Piibleid eelnevatelt OpenLP 2 versioonidelt. Uuendamise alustamiseks klõpsa edasi. - + Select Backup Directory Varunduskausta valimine - + Please select a backup directory for your Bibles Vali oma Piiblitele varunduskataloog - + 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>. Eelmised OpenLP 2.0 versioonid ei suuda kasutada uuendatud Piibleid. Sellega luuakse sinu praegustest Piiblistest varukoopia, et sa saaksid failid kopeerida tagasi OpenLP andmekataloogi, kui sa pead minema tagasi OpenLP eelmisele versioonile. Juhised failide taastamiseks leiad <a href="http://wiki.openlp.org/faq">Korduma Kippuvatest Küsimustest</a>. - + Please select a backup location for your Bibles. Palun vali oma Piiblite varundamise jaoks kataloog. - + Backup Directory: Varunduskataloog: - + There is no need to backup my Bibles Pole vajadust mu Piibleid varundada - + Select Bibles Piiblite valimine - + Please select the Bibles to upgrade Palun vali Piiblid, mida uuendada - + Upgrading Uuendamine - + Please wait while your Bibles are upgraded. Palun oota, kuni Piibleid uuendatakse. - + The backup was not successful. To backup your Bibles you need permission to write to the given directory. Varundamine ei õnnestunud. Piiblite varundamiseks peab sul olema õigus antud kataloogi kirjutada. - + Upgrading Bible %s of %s: "%s" Failed %s Piibli uuendamine %s-st : "%s" Nurjus - + Upgrading Bible %s of %s: "%s" Upgrading ... %s Piibli uuendamine %s-st : "%s" Uuendamine... - + Download Error Tõrge allalaadimisel - + To upgrade your Web Bibles an Internet connection is required. Veebipiiblite uuendamiseks on vajalik internetiühendus. - + Upgrading Bible %s of %s: "%s" Upgrading %s ... %s Piibli uuendamine (kokku %s-st): "%s" %s uuendamine... - + Upgrading Bible %s of %s: "%s" Complete %s. Piibli uuendamine (kokku %s-st): "%s" Valmis - + , %s failed , %s nurjus - + 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. Piibli(te) uuendamine: %s edukat%s Pane tähele, et veebipiiblite salmid laaditakse internetist vajadusel, seega on nende kasutamisel vaja internetiühendust. - + Upgrading Bible(s): %s successful%s Piibli(te) uuendamine: %s edukas%s - + Upgrade failed. Uuendamine nurjus. - + You need to specify a backup directory for your Bibles. Pead määrama Piiblite varundamise kataloogi. - + Starting upgrade... Uuendamise alustamine... - + There are no Bibles that need to be upgraded. Pole ühtegi Piiblit, mis vajaks uuendamist. @@ -1556,65 +1556,65 @@ Pane tähele, et veebipiiblite salmid laaditakse internetist vajadusel, seega on 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>Kohandatud slaidide plugin</strong><br />Kohandatud slaidide plugin võimaldab ekraanil oma tekstiga slaide kuvada, samuti nagu kuvatakse laule, kuid pakub suuremat vabadust kui laulude plugin. - + Custom Slide name singular Kohandatud slaid - + Custom Slides name plural Kohandatud slaidid - + Custom Slides container title Kohandatud slaidid - + Load a new custom slide. Uue kohandatud slaidi laadimine. - + Import a custom slide. Kohandatud slaidi importimine. - + Add a new custom slide. Uue kohandatud slaidi lisamine. - + Edit the selected custom slide. Valitud kohandatud slaidi muutmine. - + Delete the selected custom slide. Valitud kohandatud slaidi kustutamine. - + Preview the selected custom slide. Valitud kohandatud slaidi eelvaatlus. - + Send the selected custom slide live. Valitud kohandatud slaidi saatmine ekraanile. - + Add the selected custom slide to the service. Valitud kohandatud slaidi lisamine teenistusele. @@ -1622,12 +1622,12 @@ Pane tähele, et veebipiiblite salmid laaditakse internetist vajadusel, seega on CustomPlugin.CustomTab - + Custom Display Kohandatud kuva - + Display footer Jaluse kuvamine @@ -1635,62 +1635,62 @@ Pane tähele, et veebipiiblite salmid laaditakse internetist vajadusel, seega on CustomPlugin.EditCustomForm - + Edit Custom Slides Kohandatud slaidide muutmine - + &Title: &Pealkiri: - + Add a new slide at bottom. Uue slaidi lisamine kõige alumiseks. - + Edit the selected slide. Valitud slaidi muutmine. - + Edit all the slides at once. Kõigi slaidide muutmine ühekorraga. - + Split a slide into two by inserting a slide splitter. Slaidi lõikamine kaheks, sisestades slaidide eraldaja. - + The&me: &Kujundus: - + &Credits: &Autorid: - + You need to type in a title. Pead sisestama pealkirja. - + You need to add at least one slide Pead lisama vähemalt ühe slaidi - + Ed&it All Muuda &kõiki - + Insert Slide Uus slaid @@ -1698,7 +1698,7 @@ Pane tähele, et veebipiiblite salmid laaditakse internetist vajadusel, seega on CustomPlugin.EditVerseForm - + Edit Slide Slaidi redigeerimine @@ -1706,7 +1706,7 @@ Pane tähele, et veebipiiblite salmid laaditakse internetist vajadusel, seega on CustomPlugin.MediaItem - + Are you sure you want to delete the %n selected custom slide(s)? Kas tahad kindlasti %n valitud kohandatud slaidi kustutada? @@ -1717,60 +1717,60 @@ Pane tähele, et veebipiiblite salmid laaditakse internetist vajadusel, seega on 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>Pildiplugin</strong><br />Pildiplugin võimaldab piltide kuvamise.<br />Üks selle plugina tähtsamaid võimalusi on piltide grupeerimine teenistuse halduris, muutes paljude piltide koos kuvamise lihtsamaks. See plugin võib kasutada ka ajastatud slaidivahetust automaatse slaidiesitluse tegemiseks. Lisaks sellele võib plugina pilte kasutada aktiivse kujunduse tausta asendamiseks. - + Image name singular Pilt - + Images name plural Pildid - + Images container title Pildid - + Load a new image. Uue pildi laadimine. - + Add a new image. Uue pildi lisamine. - + Edit the selected image. Valitud pildi muutmine. - + Delete the selected image. Valitud pildi kustutamine. - + Preview the selected image. Valitud pildi eelvaatlus. - + Send the selected image live. Valitud pildi saatmine ekraanile. - + Add the selected image to the service. Valitud pildi lisamine teenistusele. @@ -1778,7 +1778,7 @@ Pane tähele, et veebipiiblite salmid laaditakse internetist vajadusel, seega on ImagePlugin.ExceptionDialog - + Select Attachment Manuse valimine @@ -1786,44 +1786,44 @@ Pane tähele, et veebipiiblite salmid laaditakse internetist vajadusel, seega on ImagePlugin.MediaItem - + Select Image(s) Piltide valimine - + You must select an image to delete. Pead enne valima pildi, mida kustutada. - + You must select an image to replace the background with. Pead enne valima pildi, millega tausta asendada. - + Missing Image(s) Puuduvad pildid - + The following image(s) no longer exist: %s Järgnevaid pilte enam pole: %s - + The following image(s) no longer exist: %s Do you want to add the other images anyway? Järgnevaid pilte enam pole: %s Kas tahad teised pildid sellest hoolimata lisada? - + There was a problem replacing your background, the image file "%s" no longer exists. Tausta asendamisel esines viga, pildifaili "%s" enam pole. - + There was no display item to amend. Polnud ühtegi kuvatavat elementi, mida täiendada. @@ -1831,17 +1831,17 @@ Kas tahad teised pildid sellest hoolimata lisada? ImagesPlugin.ImageTab - + Background Color Taustavärv - + Default Color: Vaikimisi värvus: - + Visible background for images with aspect ratio different to screen. Tausta värvus piltidel, mille külgede suhe ei vasta ekraani küljesuhtele. @@ -1849,60 +1849,60 @@ Kas tahad teised pildid sellest hoolimata lisada? MediaPlugin - + <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. <strong>Meediaplugin</strong><br />Meediaplugin võimaldab audio- ja videofailide taasesitamise. - + Media name singular Meedia - + Media name plural Meedia - + Media container title Meedia - + Load new media. Uue meedia laadimine. - + Add new media. Uue meedia lisamine. - + Edit the selected media. Valitud meedia muutmine. - + Delete the selected media. Valitud meedia kustutamine. - + Preview the selected media. Valitud meedia eelvaatlus. - + Send the selected media live. Valitud meedia saatmine ekraanile. - + Add the selected media to the service. Valitud meedia lisamine teenistusele. @@ -1910,57 +1910,57 @@ Kas tahad teised pildid sellest hoolimata lisada? MediaPlugin.MediaItem - + Select Media Meedia valimine - + You must select a media file to delete. Pead enne valima meedia, mida kustutada. - + You must select a media file to replace the background with. Pead enne valima meediafaili, millega tausta asendada. - + There was a problem replacing your background, the media file "%s" no longer exists. Tausta asendamisel esines viga, meediafaili "%s" enam pole. - + Missing Media File Puuduv meediafail - + The file %s no longer exists. Faili %s ei ole enam olemas. - + Videos (%s);;Audio (%s);;%s (*) Videod (%s);;Audio (%s);;%s (*) - + There was no display item to amend. Polnud ühtegi kuvatavat elementi, mida täiendada. - + Unsupported File Fail pole toetatud: - + Automatic Automaatne - + Use Player: Kasutatav meediaesitaja: @@ -1968,22 +1968,22 @@ Kas tahad teised pildid sellest hoolimata lisada? MediaPlugin.MediaTab - + Available Media Players Saadaolevad meediaesitajad - + %s (unavailable) %s (pole saadaval) - + Player Order Esitajate järjestus - + Allow media player to be overridden Meediaesitajat saab käsitsi vahetada @@ -1991,17 +1991,17 @@ Kas tahad teised pildid sellest hoolimata lisada? OpenLP - + Image Files Pildifailid - + Information Andmed - + Bible format has changed. You have to upgrade your existing Bibles. Should OpenLP upgrade now? @@ -2013,32 +2013,61 @@ Kas OpenLP peaks kohe uuendamist alustama? OpenLP.AboutForm - + Credits Autorid - + License Litsents - + build %s kompileering %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. See programm on vaba tarkvara. Sa võid seda edasi levitada ja/või muuta vastavalt GNU Üldise Avaliku Litsentsi versiooni 2 (GNU GPL 2) tingimustele, nagu need on Vaba Tarkvara Fondi poolt avaldatud. - + 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. Seda programmi levitatakse lootuses, et see on kasulik, kuid ILMA IGASUGUSE GARANTIITA; isegi KESKMISE/TAVALISE KVALITEEDI GARANTIITA või SOBIVUSELE TEATUD KINDLAKS EESMÄRGIKS. Üksikasjade suhtes vaata GNU Üldist Avalikku Litsentsi. - + + Copyright © 2004-2012 %s +Portions copyright © 2004-2012 %s + Copyright © 2004-2012 %s +Osaline copyright © 2004-2012 %s + + + + 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. + +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 volunteering by using the button below. + OpenLP <version><revision> - avatud lähtekoodiga laulusõnade kuvaja + +OpenLP on tasuta kiriku esitlustarkvara või laulusõnade kuvaja, mis kuvab nii laule, piiblikohti, videoid, pilte ning isegi esitlusi (kui on paigaldatud Impress, PowerPoint või PowerPoint Viewer) kasutades selleks ainult arvutit ja projektorit. + +Uuri OpenLP kohta lähemalt: http://openlp.org + +OpenLP on kirjutanud ja seda haldavad vabatahtlikud. Kui sa tahad näha rohkem tasuta kristlikku tarkvara, siis võib-olla tahad ise vabatahtlikuna kaasa aidata? Klõpsa alumisele nupule + + + + Volunteer + Hakkan vabatahtlikuks + + + Project Lead %s @@ -2057,12 +2086,20 @@ Packagers Translators Afrikaans (af) %s + Czeck (cs) + %s + Danish (da) + %s German (de) %s + Greek (el) + %s English, United Kingdom (en_GB) %s English, South Africa (en_ZA) %s + Spanish (es) + %s Estonian (et) %s French (fr) @@ -2079,13 +2116,15 @@ Translators %s Russian (ru) %s + Swedish (sv) + %s Documentation %s Built With Python: http://www.python.org/ - Qt4: http://qt.nokia.com/ + Qt4: http://qt.digia.com/ PyQt4: http://www.riverbankcomputing.co.uk/software/pyqt/intro Oxygen Icons: http://oxygen-icons.org/ @@ -2100,267 +2139,185 @@ Final Credit on the cross, setting us free from sin. We bring this software to you for free because He has set us free. - Projekti juht -%s - -Arendajad -%s - -Abilised -%s - -Testijad -%s - -Pakendajad -%s - -Tõlkijad -Afrikaani (af) -%s -Saksa (de) -%s -Suurbritannia inglise (en_GB) -%s -Lõuna-Aafrika inglise (en_ZA) -%s -Eesti (et) -%s -Prantsuse (fr) -%s -Ungari (hu) -%s -Jaapani (ja) -%s -Norra (nb) -%s -Taani (nl) -%s -Brasiilia portugali (pt_BR) -%s -Vene (ru) -%s - -Dokumentatsioon -%s - -Loodud kasutades -Python: http://www.python.org/ -Qt4: http://qt.nokia.com/ -PyQt4: http://www.riverbankcomputing.co.uk/software/pyqt/intro -Oxygeni ikoonid: http://oxygen-icons.org/ - -Lõputänu -"Sest nõnda on Jumal maailma armastanud, -et ta oma ainusündinud Poja on andnud, -et ükski, kes temasse usub, ei hukkuks, vaid et -tal oleks igavene elu." -- Johannese 3:16 - -Lõpuks suurim tänu kuulub Jumalale, meie Isale, -kes saatis oma Poja ristile surema, et meid -vabastada pattudest. Me jagame seda tarkvara -tasuta, sest Tema on meid vabastanud. - - - - Copyright © 2004-2012 %s -Portions copyright © 2004-2012 %s - Copyright © 2004-2012 %s -Osaline copyright © 2004-2012 %s - - - - 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. - -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 volunteering by using the button below. - - - - - Volunteer OpenLP.AdvancedTab - + UI Settings Kasutajaliidese sätted - + Number of recent files to display: Kuvatavate hiljutiste failide arv: - + Remember active media manager tab on startup Käivitumisel avatakse viimati avatud meediahalduri osa - + Double-click to send items straight to live Topeltklõps otse ekraanile saatmiseks - + Expand new service items on creation Uued teenistuse kirjed on loomisel laiendatud - + Enable application exit confirmation Rakenduse lõpetamise teabe lubamine - + Mouse Cursor Hiirekursor - + Hide mouse cursor when over display window Ekraaniakna kohal peidetakse hiirekursor - + Default Image Vaikimisi pilt - + Background color: Taustapilt: - + Image file: Pildifail: - + Open File Faili avamine - + Advanced Täpsem - + Preview items when clicked in Media Manager Meediahalduris klõpsamisel kuvatakse eelvaade - + Click to select a color. Klõpsa värvi valimiseks. - + Browse for an image file to display. Kuvatava pildi valimine. - + Revert to the default OpenLP logo. Vaikimisi OpenLP logo kasutamine. - + 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. Teenistus %Y-%m-%d %H-%M - + Default Service Name Teenistuse vaikimisi nimi - + Enable default service name Teenistuse vaikimisi nimi lubatud - + Date and Time: Kuupäev ja kellaaeg: - + Monday Esmaspäeval - + Tuesday Teisipäeval - + Wednesday Kolmapäeval - + Thurdsday Neljapäeval - + Friday Reedel - + Saturday Laupäeval - + Sunday Pühapäeval - + Now Praegu - + Time when usual service starts. Mis kell teenistus tavaliselt algab. - + Name: Nimi: - + Consult the OpenLP manual for usage. Kasutuse kohta lähemalt OpenLP käsiraamatust. - + Revert to the default service name "%s". Teenistuse vaikimisi vaikenime "%s" taastamine. - + Example: Näidis: - + X11 X11 @@ -2370,82 +2327,82 @@ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for X11 aknahaldur jäetakse vahele - + Syntax error. Süntaksi viga. - + Data Location Andmete asukoht - + Current path: Praegune asukoht: - + Custom path: Kohandatud asukoht: - + Browse for new data file location. Sirvimine andmete faili uue asukoha leidmiseks. - + Set the data location to the default. Andmete vaikimisi asukoha taastamine. - + Cancel Loobu - + Cancel OpenLP data directory location change. Loobu OpenLP andmete kataloogi asukoha muutusest. - + Copy data to new location. Kopeeri andmed uude asukohta. - + Copy the OpenLP data files to the new location. OpenLP andmefailide kopeerimine uude asukohta. - + <strong>WARNING:</strong> New data directory location contains OpenLP data files. These files WILL be replaced during a copy. <strong>HOIATUS:</strong> Uus OpenLP andmefailide kataloog juba sisaldab andmefaile. Kopeerimisel need failid ASENDATAKSE. - + Data Directory Error Andmete kataloogi tõrge - + Select Data Directory Location Andmekausta asukoha valimine - + Confirm Data Directory Change Andmekausta muutmise kinnitus - + Reset Data Directory Taasta esialgne andmekaust - + 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. @@ -2454,12 +2411,12 @@ This location will be used after OpenLP is closed. Seda asukohta kasutatakse pärast OpenLP sulgemist. - + Overwrite Existing Data Olemasolevate andmete ülekirjutamine - + OpenLP data directory was not found %s @@ -2469,19 +2426,31 @@ This data directory was previously changed from the OpenLP default location. If Click "No" to stop loading OpenLP. allowing you to fix the the problem. Click "Yes" to reset the data directory to the default location. - + OpenLP andmekataloogi ei leitud + +%s + +Andmekataloogi asukoht on varem muudetud ning see pole enam vaikimisi asukoht. Kui see oli määratud eemaldatavale andmekandjale, siis tuleb andmekandja enne ühendada. + +Klõpsa "Ei", et peatada OpenLP laadimine, mis võimaldab sul vea parandada. + +Klõpsa "Jah", et kasutada andmekataloogi vaikimisi asukohta. - + Are you sure you want to change the location of the OpenLP data directory to: %s The data directory will be changed when OpenLP is closed. - + Kas sa oled kindel, et tahad määrata OpenLP andmekataloogiks: + +%s + +Andmekataloog muudetakse OpenLP sulgemisel. - + WARNING: The location you have selected @@ -2489,45 +2458,51 @@ The location you have selected %s appears to contain OpenLP data files. Do you wish to replace these files with the current data files? - + HOIATUS: + +Tundub, et sinu valitud asukoht + +%s + +sisaldab juba OpenLP andmefaile. Kas sa tahad need failid arendada praeguste andmefailidega? OpenLP.ExceptionDialog - + Error Occurred Esines viga - + 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. Uups! OpenLP-s esines viga, millest pole võimalik taastada. Alumises kastis olev tekst võib olla kasulik OpenLP arendajatele, palun meili see aadressil bugs@openlp.org, koos täpse kirjeldusega sellest, mida sa parasjagu tegid, kui selline probleem esines. - + Send E-Mail Saada e-kiri - + Save to File Salvesta faili - + Please enter a description of what you were doing to cause this error (Minimum 20 characters) Palun kirjelda siin, mida sa parasjagu tegid, mis kutsus selle vea esile. (vähemalt 20 tähte) - + Attach File Pane fail kaasa - + Description characters to enter : %s Puuduvad tähed kirjelduses: %s @@ -2535,24 +2510,24 @@ appears to contain OpenLP data files. Do you wish to replace these files with t OpenLP.ExceptionForm - + Platform: %s Platvorm: %s - + Save Crash Report Vearaporti salvestamine - + Text files (*.txt *.log *.text) Tekstifailid (*.txt *.log *.text) - + **OpenLP Bug Report** Version: %s @@ -2584,7 +2559,7 @@ Kui võimalik, kirjuta palun vearaport inglise keeles. - + *OpenLP Bug Report* Version: %s @@ -2620,17 +2595,17 @@ Kui võimalik, kirjuta palun vearaport inglise keeles. OpenLP.FileRenameForm - + File Rename Faili ümbernimetamine - + New File Name: Faili uus nimi: - + File Copy Faili kopeerimine @@ -2638,17 +2613,17 @@ Kui võimalik, kirjuta palun vearaport inglise keeles. OpenLP.FirstTimeLanguageForm - + Select Translation Tõlke valimine - + Choose the translation you'd like to use in OpenLP. Vali keel, milles tahad OpenLP-d kasutada. - + Translation: Keel: @@ -2656,192 +2631,192 @@ Kui võimalik, kirjuta palun vearaport inglise keeles. OpenLP.FirstTimeWizard - + Songs Laulud - + First Time Wizard Esmakäivituse nõustaja - + Welcome to the First Time Wizard Tere tulemast esmakäivituse nõustajasse - + Activate required Plugins Vajalike pluginate sisselülitamine - + Select the Plugins you wish to use. Vali pluginad, mida tahad kasutada. - + Bible Piibel - + Images Pildid - + Presentations Esitlused - + Media (Audio and Video) Meedia (audio ja video) - + Allow remote access Kaugligipääs - + Monitor Song Usage Laulukasutuse monitooring - + Allow Alerts Teadaanded - + Default Settings Vaikimisi sätted - + Downloading %s... %s allalaadimine... - + Download complete. Click the finish button to start OpenLP. Allalaadimine lõpetatud. OpenLP käivitamiseks klõpsa lõpetamise nupule. - + Enabling selected plugins... Valitud pluginate sisselülitamine... - + No Internet Connection Internetiühendust pole - + Unable to detect an Internet connection. Internetiühendust ei leitud. - + Sample Songs Näidislaulud - + Select and download public domain songs. Vali ja laadi alla avalikku omandisse kuuluvaid laule. - + Sample Bibles Näidispiiblid - + Select and download free Bibles. Vabade Piiblite valimine ja allalaadimine. - + Sample Themes Näidiskujundused - + Select and download sample themes. Näidiskujunduste valimine ja allalaadimine. - + Set up default settings to be used by OpenLP. OpenLP jaoks vaikimisi sätete määramine. - + Default output display: Vaikimisi ekraani kuva: - + Select default theme: Vali vaikimisi kujundus: - + Starting configuration process... Seadistamise alustamine... - + This wizard will help you to configure OpenLP for initial use. Click the next button below to start. See nõustaja aitab alguses OpenLP seadistada. Alustamiseks klõpsa edasi nupule. - + Setting Up And Downloading Seadistamine ja allalaadimine - + Please wait while OpenLP is set up and your data is downloaded. Palun oota, kuni OpenLP-d seadistatakse ja andmeid allalaaditakse. - + Setting Up Seadistamine - + Click the finish button to start OpenLP. OpenLP käivitamiseks klõpsa lõpetamise nupule. - + Download complete. Click the finish button to return to OpenLP. Allalaadimine lõpetatud. Klõpsa lõpetamise nupule, et naaseda OpenLP-sse. - + Click the finish button to return to OpenLP. Klõpsa lõpetamise nupule, et naaseda OpenLP-sse. - + Custom Slides Kohandatud slaidid - + Finish Lõpeta - + 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. @@ -2850,7 +2825,7 @@ To re-run the First Time Wizard and import this sample data at a later time, che Esmakäivituse nõustaja hiljem uuesti käivitamiseks kontrolli oma internetiühendust ja käivita see nõustaja uuesti OpenLP menüüst "Tööriistad/Esmakäivituse nõustaja". - + To cancel the First Time Wizard completely (and not start OpenLP), click the Cancel button now. @@ -2862,37 +2837,37 @@ Esmakäivituse nõustajast loobumiseks (ning OpenLP mittekäivitamiseks) klõpsa OpenLP.FormattingTagDialog - + Configure Formatting Tags Vormindussiltide seadistamine - + Edit Selection Valiku muutmine - + Save Salvesta - + Description Kirjeldus - + Tag Märgis - + Start HTML Alustav HTML - + End HTML Lõpetav HTML @@ -2900,32 +2875,32 @@ Esmakäivituse nõustajast loobumiseks (ning OpenLP mittekäivitamiseks) klõpsa OpenLP.FormattingTagForm - + Update Error Tõrge uuendamisel - + Tag "n" already defined. Märgis "n" on juba defineeritud. - + New Tag Uus märgis - + <HTML here> <HTML siia> - + </and here> </ja siia> - + Tag %s already defined. Märgis %s on juba defineeritud. @@ -2933,82 +2908,82 @@ Esmakäivituse nõustajast loobumiseks (ning OpenLP mittekäivitamiseks) klõpsa OpenLP.FormattingTags - + Red Punane - + Black Must - + Blue Sinine - + Yellow Kollane - + Green Roheline - + Pink Roosa - + Orange Oranž - + Purple Lilla - + White Valge - + Superscript Ülaindeks - + Subscript Alaindeks - + Paragraph Lõik - + Bold Rasvane - + Italics Kursiiv - + Underline Allajoonitud - + Break Murdmine @@ -3016,122 +2991,122 @@ Esmakäivituse nõustajast loobumiseks (ning OpenLP mittekäivitamiseks) klõpsa OpenLP.GeneralTab - + General Üldine - + Monitors Monitorid - + Select monitor for output display: Peamise kuva ekraan: - + Display if a single screen Kuvatakse ka, kui on ainult üks ekraan - + Application Startup Rakenduse käivitumine - + Show blank screen warning Kuvatakse tühjendatud ekraani hoiatust - + Automatically open the last service Automaatselt avatakse viimane teenistus - + Show the splash screen Käivitumisel kuvatakse logo - + Application Settings Rakenduse sätted - + Prompt to save before starting a new service Uue teenistuse alustamisel pakutakse eelmise salvestamist - + Automatically preview next item in service Teenistuse järgmise elemendi automaatne eelvaatlus - + sec s - + CCLI Details CCLI andmed - + SongSelect username: SongSelecti kasutajanimi: - + SongSelect password: SongSelecti parool: - + X X - + Y Y - + Height Kõrgus - + Width Laius - + Check for updates to OpenLP OpenLP uuenduste kontrollimine - + Unblank display when adding new live item Ekraanile saatmisel võetakse ekraani tühjendamine maha - + Timed slide interval: Ajastatud slaidi kestus: - + Background Audio Taustamuusika - + Start background audio paused Taustamuusika on alguses pausitud @@ -3141,12 +3116,12 @@ Esmakäivituse nõustajast loobumiseks (ning OpenLP mittekäivitamiseks) klõpsa Teenistuse elemendi slaidi mõõtmed - + Override display position: Kuva asukoha käsitsi muutmine: - + Repeat track list Lugude loendi kordamine @@ -3174,12 +3149,12 @@ Esmakäivituse nõustajast loobumiseks (ning OpenLP mittekäivitamiseks) klõpsa OpenLP.LanguageManager - + Language Keel - + Please restart OpenLP to use your new language setting. Uue keele kasutamiseks käivita OpenLP uuesti. @@ -3187,7 +3162,7 @@ Esmakäivituse nõustajast loobumiseks (ning OpenLP mittekäivitamiseks) klõpsa OpenLP.MainDisplay - + OpenLP Display OpenLP kuva @@ -3195,287 +3170,287 @@ Esmakäivituse nõustajast loobumiseks (ning OpenLP mittekäivitamiseks) klõpsa OpenLP.MainWindow - + &File &Fail - + &Import &Impordi - + &Export &Ekspordi - + &View &Vaade - + M&ode &Režiim - + &Tools &Tööriistad - + &Settings &Sätted - + &Language &Keel - + &Help A&bi - + Media Manager Meediahaldur - + Service Manager Teenistuse haldur - + Theme Manager Kujunduste haldur - + &New &Uus - + &Open &Ava - + Open an existing service. Olemasoleva teenistuse avamine. - + &Save &Salvesta - + Save the current service to disk. Praeguse teenistuse salvestamine kettale. - + Save &As... Salvesta &kui... - + Save Service As Salvesta teenistus kui - + Save the current service under a new name. Praeguse teenistuse salvestamine uue nimega. - + E&xit &Välju - + Quit OpenLP Lahku OpenLPst - + &Theme &Kujundus - + &Configure OpenLP... &Seadista OpenLP... - + &Media Manager &Meediahaldur - + Toggle Media Manager Meediahalduri lüliti - + Toggle the visibility of the media manager. Meediahalduri nähtavuse ümberlüliti. - + &Theme Manager &Kujunduse haldur - + Toggle Theme Manager Kujunduse halduri lüliti - + Toggle the visibility of the theme manager. Kujunduse halduri nähtavuse ümberlülitamine. - + &Service Manager &Teenistuse haldur - + Toggle Service Manager Teenistuse halduri lüliti - + Toggle the visibility of the service manager. Teenistuse halduri nähtavuse ümberlülitamine. - + &Preview Panel &Eelvaatluspaneel - + Toggle Preview Panel Eelvaatluspaneeli lüliti - + Toggle the visibility of the preview panel. Eelvaatluspaneeli nähtavuse ümberlülitamine. - + &Live Panel &Ekraani paneel - + Toggle Live Panel Ekraani paneeli lüliti - + Toggle the visibility of the live panel. Ekraani paneeli nähtavuse muutmine. - + &Plugin List &Pluginate loend - + List the Plugins Pluginate loend - + &User Guide &Kasutajajuhend - + &About &Lähemalt - + More information about OpenLP Lähem teave OpenLP kohta - + &Online Help &Abi veebis - + &Web Site &Veebileht - + Use the system language, if available. Kui saadaval, kasutatakse süsteemi keelt. - + Set the interface language to %s Kasutajaliidese keeleks %s määramine - + Add &Tool... Lisa &tööriist... - + Add an application to the list of tools. Rakenduse lisamine tööriistade loendisse. - + &Default &Vaikimisi - + Set the view mode back to the default. Vaikimisi kuvarežiimi taastamine. - + &Setup &Ettevalmistus - + Set the view mode to Setup. Ettevalmistuse kuvarežiimi valimine. - + &Live &Otse - + Set the view mode to Live. Vaate režiimiks ekraanivaate valimine. - + 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/. @@ -3484,108 +3459,108 @@ You can download the latest version from http://openlp.org/. Sa võid viimase versiooni alla laadida aadressilt http://openlp.org/. - + OpenLP Version Updated OpenLP uuendus - + OpenLP Main Display Blanked OpenLP peakuva on tühi - + The Main Display has been blanked out Peakuva on tühi - + Default Theme: %s Vaikimisi kujundus: %s - + English Please add the name of your language here Eesti - + Configure &Shortcuts... &Kiirklahvide seadistamine... - + Close OpenLP OpenLP sulgemine - + Are you sure you want to close OpenLP? Kas oled kindel, et tahad OpenLP sulgeda? - + Open &Data Folder... Ava &andmete kataloog... - + Open the folder where songs, bibles and other data resides. Laulude, Piiblite ja muude andmete kataloogi avamine. - + &Autodetect &Isetuvastus - + Update Theme Images Uuenda kujunduste pildid - + Update the preview images for all themes. Kõigi teemade eelvaatepiltide uuendamine. - + Print the current service. Praeguse teenistuse printimine. - + &Recent Files &Hiljutised failid - + L&ock Panels &Lukusta paneelid - + Prevent the panels being moved. Paneelide liigutamise kaitse. - + Re-run First Time Wizard Käivita esmanõustaja uuesti - + Re-run the First Time Wizard, importing songs, Bibles and themes. Käivita esmanõustaja uuesti laulude, Piiblite ja kujunduste importimiseks. - + Re-run First Time Wizard? Kas käivitada esmanõustaja uuesti? - + 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. @@ -3594,43 +3569,43 @@ Re-running this wizard may make changes to your current OpenLP configuration and Selle nõustaja taaskäivitamine muudab sinu praegust OpenLP seadistust ja võib lisada laule olemasolevate laulude loetelusse ning muuta vaikimisi kujundust. - + Clear List Clear List of recent files Tühjenda loend - + Clear the list of recent files. Hiljutiste failide nimekirja tühjendamine. - + Configure &Formatting Tags... &Vormindusmärgised... - + Export OpenLP settings to a specified *.config file OpenLP sätete eksportimine määratud *.config faili - + Settings Sätted - + Import OpenLP settings from a specified *.config file previously exported on this or another machine OpenLP sätete importimine määratud *.config failist, mis on varem sellest või mõnest teisest arvutist eksporditud. - + Import settings? Kas importida sätted? - + Are you sure you want to import settings? Importing settings will make permanent changes to your current OpenLP configuration. @@ -3643,71 +3618,77 @@ Sätete importimine muudab jäädavalt sinu praegust OpenLP seadistust. Väärade sätete importimine võib põhjustada OpenLP väära käitumist või sulgumist. - + Open File Faili avamine - + OpenLP Export Settings Files (*.conf) OpenLP eksporditud sätete failid (*.conf) - + Import settings Sätete importimine - + OpenLP will now close. Imported settings will be applied the next time you start OpenLP. OpenLP sulgub nüüd. Imporditud sätted rakenduvad OpenLP järgmisel käivitumisel. - + Export Settings File Sättefaili eksportimine - + OpenLP Export Settings File (*.conf) OpenLP eksporditud sätete fail (*.conf) - + New Data Directory Error Uue andmekausta viga - + The file you selected does appear to be a valid OpenLP settings file. Section [%s] is not valid Processing has terminated and no changed have been made. - + Tundub, et valitud fail ei ole OpenLP sätete fail. + +Sektsioon [%s] ei ole sobiv. + +Töötlemine peatati ning ühtegi muudatust ei tehtud. - + Copying OpenLP data to new data directory location - %s - Please wait for copy to finish - + OpenLP andmete kopeerimine uude andmekataloogi - %s - palun oota, kuni kopeerimine lõpeb... - + OpenLP Data directory copy failed %s - + OpenLP andmekataloogi kopeerimine nurjus + +%s OpenLP.Manager - + Database Error Andmebaasi viga - + 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 @@ -3716,7 +3697,7 @@ Database: %s Andmebaas: %s - + OpenLP cannot load your database. Database: %s @@ -3728,62 +3709,62 @@ Andmebaas: %s OpenLP.MediaManagerItem - + No Items Selected Ühtegi elementi pole valitud - + &Add to selected Service Item &Lisa valitud teenistuse elemendile - + You must select one or more items to preview. Sa pead valima vähemalt ühe kirje, mida eelvaadelda. - + You must select one or more items to send live. Sa pead valima vähemalt ühe kirje, mida tahad ekraanil näidata. - + You must select one or more items. Pead valima vähemalt ühe elemendi. - + You must select an existing service item to add to. Pead valima olemasoleva teenistuse, millele lisada. - + Invalid Service Item Vigane teenistuse element - + You must select a %s service item. Pead valima teenistuse elemendi %s. - + You must select one or more items to add. Pead valima vähemalt ühe kirje, mida tahad lisada. - + No Search Results Otsing ei andnud tulemusi - + Invalid File Type Sobimatut liiki fail - + Invalid File %s. Suffix not supported Sobimatu fail %s. @@ -3795,7 +3776,7 @@ Selle lõpuga fail ei ole toetatud &Klooni - + Duplicate files were found on import and were ignored. Importimisel tuvastati duplikaatfailid ning neid eirati. @@ -3803,12 +3784,12 @@ Selle lõpuga fail ei ole toetatud OpenLP.OpenLyricsImportError - + <lyrics> tag is missing. Puudub <lyrics> silt. - + <verse> tag is missing. Puudub <verse> silt. @@ -3816,42 +3797,42 @@ Selle lõpuga fail ei ole toetatud OpenLP.PluginForm - + Plugin List Pluginate loend - + Plugin Details Plugina andmed - + Status: Olek: - + Active Aktiivne - + Inactive Pole aktiivne - + %s (Inactive) %s (pole aktiivne) - + %s (Active) %s (aktiivne) - + %s (Disabled) %s (keelatud) @@ -3859,12 +3840,12 @@ Selle lõpuga fail ei ole toetatud OpenLP.PrintServiceDialog - + Fit Page Mahuta lehele - + Fit Width Mahuta laius @@ -3872,77 +3853,77 @@ Selle lõpuga fail ei ole toetatud OpenLP.PrintServiceForm - + Options Valikud - + Copy Kopeeri - + Copy as HTML Kopeeri HTMLina - + Zoom In Suurendamine - + Zoom Out Vähendamine - + Zoom Original Originaalsuurus - + Other Options Muud valikud - + Include slide text if available Slaidi tekst, kui saadaval - + Include service item notes Teenistuse kirje märkmed - + Include play length of media items Meediakirjete pikkus - + Add page break before each text item Iga tekstikirje algab uuelt lehelt - + Service Sheet Teenistuse leht - + Print Prindi - + Title: Pealkiri: - + Custom Footer Text: Kohandatud jaluse tekst: @@ -3950,12 +3931,12 @@ Selle lõpuga fail ei ole toetatud OpenLP.ScreenList - + Screen Ekraan - + primary peamine @@ -3963,12 +3944,12 @@ Selle lõpuga fail ei ole toetatud OpenLP.ServiceItem - + <strong>Start</strong>: %s <strong>Algus</strong>: %s - + <strong>Length</strong>: %s <strong>Kestus</strong>: %s @@ -3976,7 +3957,7 @@ Selle lõpuga fail ei ole toetatud OpenLP.ServiceItemEditForm - + Reorder Service Item Teenistuse elementide ümberjärjestamine @@ -3984,296 +3965,295 @@ Selle lõpuga fail ei ole toetatud OpenLP.ServiceManager - + Move to &top Tõsta ü&lemiseks - + Move item to the top of the service. Teenistuse algusesse tõstmine. - + Move &up Liiguta &üles - + Move item up one position in the service. Elemendi liigutamine teenistuses ühe koha võrra ettepoole. - + Move &down Liiguta &alla - + Move item down one position in the service. Elemendi liigutamine teenistuses ühe koha võrra tahapoole. - + Move to &bottom Tõsta &alumiseks - + Move item to the end of the service. Teenistuse lõppu tõstmine. - + &Delete From Service &Kustuta teenistusest - + Delete the selected item from the service. Valitud elemendi kustutamine teenistusest. - + &Add New Item &Lisa uus element - + &Add to Selected Item &Lisa valitud elemendile - + &Edit Item &Muuda kirjet - + &Reorder Item &Muuda elemendi kohta järjekorras - + &Notes &Märkmed - + &Change Item Theme &Muuda elemendi kujundust - + OpenLP Service Files (*.osz) OpenLP teenistuse failid (*.osz) - + File is not a valid service. The content encoding is not UTF-8. Fail ei ole sobiv teenistus. Sisu ei ole UTF-8 kodeeringus. - + File is not a valid service. Fail pole sobiv teenistus. - + Missing Display Handler Puudub kuvakäsitleja - + Your item cannot be displayed as there is no handler to display it Seda elementi pole võimalik näidata ekraanil, kuna puudub seda käsitsev programm - + Your item cannot be displayed as the plugin required to display it is missing or inactive Seda elementi pole võimalik näidata, kuna vajalik plugin on puudu või pole aktiivne - + &Expand all &Laienda kõik - + Expand all the service items. Kõigi teenistuse kirjete laiendamine. - + &Collapse all &Ahenda kõik - + Collapse all the service items. Kõigi teenistuse kirjete ahendamine. - + Open File Faili avamine - + Moves the selection down the window. Valiku tõstmine aknas allapoole. - + Move up Liiguta üles - + Moves the selection up the window. Valiku tõstmine aknas ülespoole. - + Go Live Ekraanile - + Send the selected item to Live. Valitud kirje saatmine ekraanile. - + &Start Time &Alguse aeg - + Show &Preview Näita &eelvaadet - + Modified Service Teenistust on muudetud - + The current service has been modified. Would you like to save this service? Praegust teenistust on muudetud. Kas tahad selle teenistuse salvestada? - + Custom Service Notes: Kohandatud teenistuse märkmed: - + Notes: Märkmed: - + Playing time: Kestus: - + Untitled Service Pealkirjata teenistus - + File could not be opened because it is corrupt. Faili pole võimalik avada, kuna see on rikutud. - + Empty File Tühi fail - + This service file does not contain any data. Selles teenistuse failis pole andmeid. - + Corrupt File Rikutud fail - + Load an existing service. Olemasoleva teenistuse laadimine. - + Save this service. Selle teenistuse salvestamine. - + Select a theme for the service. Teenistuse jaoks kujunduse valimine. - + This file is either corrupt or it is not an OpenLP 2.0 service file. See fail on rikutud või ei ole see OpenLP 2.0 teenistuse fail. - - Service File Missing - Teenistuse fail puudub - - - + Slide theme Slaidi kujundus - + Notes Märkmed - + Edit Muuda - + Service copy only Ainult teenistuse koopia - + Error Saving File Viga faili salvestamisel - + There was an error saving your file. Sinu faili salvestamisel esines tõrge. - - File missing from service + + Service File(s) Missing + + + + + The following file(s) in the service are missing: +%s - %s - -Continue saving? +These files will be removed if you continue to save. OpenLP.ServiceNoteForm - + Service Item Notes Teenistuse elemendi märkmed @@ -4281,7 +4261,7 @@ Continue saving? OpenLP.SettingsForm - + Configure OpenLP Seadista OpenLP @@ -4289,67 +4269,67 @@ Continue saving? OpenLP.ShortcutListDialog - + Action Tegevus - + Shortcut Kiirklahv - + Duplicate Shortcut Dubleeriv kiirklahv - + The shortcut "%s" is already assigned to another action, please use a different shortcut. Kiirklahv "%s" on juba seotud teise tegevusega, kasuta mingit muud kiirklahvi. - + Alternate Muuda - + Select an action and click one of the buttons below to start capturing a new primary or alternate shortcut, respectively. Vali tegevus ja klõpsa kummalgi alumisel nupul, et salvestada uus peamine või alternatiivne kiirklahv. - + Default Vaikimisi - + Custom Kohandatud - + Capture shortcut. Kiirklahvi salvestamine. - + Restore the default shortcut of this action. Selle tegevuse vaikimisi kiirklahvi taastamine. - + Restore Default Shortcuts Vaikimisi kiirklahvide taastamine - + Do you want to restore all shortcuts to their defaults? Kas tahad taastada kõigi kiirklahvide vaikimisi väärtused? - + Configure Shortcuts Seadista kiirklahve @@ -4357,172 +4337,172 @@ Continue saving? OpenLP.SlideController - + Hide Peida - + Go To Mine - + Blank Screen Ekraani tühjendamine - + Blank to Theme Kujunduse tausta näitamine - + Show Desktop Töölaua näitamine - + Previous Service Eelmine teenistus - + Next Service Järgmine teenistus - + Escape Item Kuva sulgemine - + Move to previous. Eelmisele liikumine. - + Move to next. Järgmisele liikumine. - + Play Slides Slaidide esitamine - + Delay between slides in seconds. Viivitus slaidide vahel sekundites. - + Move to live. Ekraanile saatmine. - + Add to Service. Teenistusele lisamine. - + Edit and reload song preview. Laulu muutmine ja eelvaate uuesti laadimine. - + Start playing media. Meedia esitamise alustamine. - + Pause audio. Audio pausimine. - + Pause playing media. Meedia esitamise pausimine. - + Stop playing media. Meedia esitamise peatamine. - + Video position. Video asukoht. - + Audio Volume. Helivaljus. - + Go to "Verse" Mine salmile - + Go to "Chorus" Mine refräänile - + Go to "Bridge" Mine vahemängule - + Go to "Pre-Chorus" Mine eelrefräänile - + Go to "Intro" Mine sissejuhatusele - + Go to "Ending" Mine lõpetusele - + Go to "Other" Mine muule osale - + Previous Slide Eelmine slaid - + Next Slide Järgmine slaid - + Pause Audio Audio pausimine - + Background Audio Taustamuusika - + Go to next audio track. Järgmisele muusikapalale liikumine. - + Tracks Palad @@ -4530,17 +4510,17 @@ Continue saving? OpenLP.SpellTextEdit - + Spelling Suggestions Õigekirjasoovitused - + Formatting Tags Vormindussildid - + Language: Keel: @@ -4548,67 +4528,67 @@ Continue saving? OpenLP.StartTimeForm - + Hours: Tundi: - + Minutes: Minutit: - + Seconds: Sekundit: - + Item Start and Finish Time Elemendi algus ja lõpp - + Start Algus - + Finish Lõpp - + Length Kestus - + Time Validation Error Valesti sisestatud aeg - + Finish time is set after the end of the media item Lõpetamise aeg on pärast meedia lõppu. - + Start time is after the finish time of the media item Alustamise aeg on pärast meedia lõppu. - + Theme Layout Kujunduse paigutus - + The blue box shows the main area. Sinine raam näitab peaala. - + The red box shows the footer. Punane raam näitab jalust. @@ -4616,559 +4596,559 @@ Continue saving? OpenLP.ThemeManager - + Create a new theme. Uue kujunduse loomine. - + Edit Theme Kujunduse muutmine - + Edit a theme. Kujunduse muutmine. - + Delete Theme Kujunduse kustutamine - + Delete a theme. Kujunduse kustutamine. - + Import Theme Kujunduse importimine - + Import a theme. Kujunduse importimine. - + Export Theme Kujunduse eksportimine - + Export a theme. Kujunduse eksportimine. - + &Edit Theme Kujunduse &muutmine - + &Delete Theme Kujunduse &kustutamine - + Set As &Global Default Määra &globaalseks vaikeväärtuseks - + %s (default) %s (vaikimisi) - + You must select a theme to edit. Pead valima kujunduse, mida muuta. - + You are unable to delete the default theme. Vaikimisi kujundust pole võimalik kustutada. - + Theme %s is used in the %s plugin. Kujundust %s kasutatakse pluginas %s. - + You have not selected a theme. Sa ei ole kujundust valinud. - + Save Theme - (%s) Salvesta kujundus - (%s) - + Theme Exported Kujundus eksporditud - + Your theme has been successfully exported. Sinu kujundus on edukalt eksporditud. - + Theme Export Failed Kujunduse eksportimine nurjus - + Your theme could not be exported due to an error. Sinu kujundust polnud võimalik eksportida, kuna esines viga. - + Select Theme Import File Importimiseks kujunduse faili valimine - + File is not a valid theme. See fail ei ole sobilik kujundus. - + &Copy Theme &Kopeeri kujundust - + &Rename Theme &Nimeta kujundus ümber - + &Export Theme &Ekspordi kujundus - + You must select a theme to rename. Pead valima kujunduse, mida ümber nimetada. - + Rename Confirmation Ümbernimetamise kinnitus - + Rename %s theme? Kas anda kujundusele %s uus nimi? - + You must select a theme to delete. Pead valima kujunduse, mida tahad kustutada. - + Delete Confirmation Kustutamise kinnitus - + Delete %s theme? Kas kustutada kujundus %s? - + Validation Error Valideerimise viga - + A theme with this name already exists. Sellenimeline teema on juba olemas. - + OpenLP Themes (*.theme *.otz) OpenLP kujundused (*.theme *.otz) - + Copy of %s Copy of <theme name> %s (koopia) - + Theme Already Exists Kujundus on juba olemas - + Theme %s already exists. Do you want to replace it? - + Kujundus %s on juba olemas. Kas tahad selle asendada? OpenLP.ThemeWizard - + Theme Wizard Kujunduse nõustaja - + Welcome to the Theme Wizard Tere tulemast kujunduse nõustajasse - + Set Up Background Tausta määramine - + Set up your theme's background according to the parameters below. Määra kujunduse taust, kasutades järgnevaid parameetreid. - + Background type: Tausta liik: - + Solid Color Ühtlane värv - + Gradient Üleminek - + Color: Värvus: - + Gradient: Üleminek: - + Horizontal Horisontaalne - + Vertical Vertikaalne - + Circular Radiaalne - + Top Left - Bottom Right Loodest kagusse - + Bottom Left - Top Right Edelast kirdesse - + Main Area Font Details Peamise teksti üksikasjad - + Define the font and display characteristics for the Display text Määra font ja teised teksti omadused - + Font: Font: - + Size: Suurus: - + Line Spacing: Reavahe: - + &Outline: &Kontuurjoon: - + &Shadow: &Vari: - + Bold Rasvane - + Italic Kaldkiri - + Footer Area Font Details Jaluse fondi üksikasjad - + Define the font and display characteristics for the Footer text Määra jaluse font ja muud omadused - + Text Formatting Details Teksti vorminduse üksikasjad - + Allows additional display formatting information to be defined Võimaldab määrata lisavorminduse andmeid - + Horizontal Align: Rõhtjoondus: - + Left Vasakul - + Right Paremal - + Center Keskel - + Output Area Locations Väljundala asukoht - + Allows you to change and move the main and footer areas. Võimaldab muuta ja liigutada peamist ja jaluse ala. - + &Main Area &Peamine ala - + &Use default location &Vaikimisi asukoha kasutamine - + X position: X-asukoht: - + px px - + Y position: Y-asukoht: - + Width: Laius: - + Height: Kõrgus: - + Use default location Vaikimisi asukoha kasutamine - + Theme name: Kujunduse nimi: - + Edit Theme - %s Teema muutmine - %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. See nõustaja aitab kujundusi luua ja muuta. Klõpsa edasi nupul, et alustada tausta määramisest. - + Transitions: Üleminekud: - + &Footer Area &Jaluse ala - + Starting color: Algusvärvus: - + Ending color: Lõppvärvus: - + Background color: Tausta värvus: - + Justify Rööpjoondus - + Layout Preview Kujunduse eelvaade - + Transparent Läbipaistev - + Preview and Save Eelvaatle ja salvesta - + Preview the theme and save it. Kujunduse eelvaade ja salvestamine. - + (approximately %d lines per slide) - + (umbes %d rida slaidil) - + Background Image Empty - + Taustapilt on tühi - + You have not selected a background image. Please select one before continuing. - + Sa pole valinud taustapilti. Palun vali enne jätkamist taustapilt. - + Select Image - + Pildi valimine - + Theme Name Missing - + Kujunduse nimi puudub - + There is no name for this theme. Please enter one. - + Sellel kujundusel pole nime. Palun sisesta nimi. - + Theme Name Invalid - + Kujunduse nimi pole sobiv. - + Invalid theme name. Please enter one. - + Kujunduse nimi ei sobi. Palun sisesta uus nimi. OpenLP.ThemesTab - + Global Theme Üldine kujundus - + Theme Level Kujunduse tase - + S&ong Level &Laulu tase - + 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. Laul kuvatakse sellele andmebaasis määratud kujundusega. Kui laulul kujundus puudub, kasutatakse teenistuse kujundust. Kui teenistusel kujundus puudub, siis kasutatakse üleüldist kujundust. - + &Service Level &Teenistuse tase - + 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. Kasutatakse teenistuse kujundust, eirates laulude kujundusi. Kui teenistusel kujundust pole, kasutatakse globaalset. - + &Global Level &Üleüldine tase - + Use the global theme, overriding any themes associated with either the service or the songs. Kasutatakse globaalset kujundust, eirates nii teenistuse kui laulu kujundust. - + Themes Kujundused @@ -5176,315 +5156,315 @@ Continue saving? OpenLP.Ui - + Error Viga - + About Programmist - + &Add &Lisa - + Advanced Täpsem - + All Files Kõik failid - + Bottom All - + Browse... Lehitse... - + Cancel Loobu - + CCLI number: CCLI number: - + Create a new service. Uue teenistuse loomine. - + &Delete &Kustuta - + &Edit &Muuda - + Empty Field Tühi väli - + Export Ekspordi - + pt Abbreviated font pointsize unit pt - + Image Pilt - + Import Impordi - + Live Ekraan - + Live Background Error Ekraani tausta viga - + Load Laadi - + Middle Keskel - + New Uus - + New Service Uus teenistus - + New Theme Uus kujundus - + No File Selected Singular Ühtegi faili pole valitud - + No Files Selected Plural Ühtegi faili pole valitud - + No Item Selected Singular Ühtegi elementi pole valitud - + No Items Selected Plural Ühtegi elementi pole valitud - + openlp.org 1.x openlp.org 1.x - + OpenLP 2.0 OpenLP 2.0 - + Preview Eelvaade - + Replace Background Tausta asendamine - + Reset Background Tausta lähtestamine - + s The abbreviated unit for seconds s - + Save && Preview Salvesta && eelvaatle - + Search Otsi - + You must select an item to delete. Pead valima elemendi, mida tahad kustutada. - + You must select an item to edit. Pead valima elemendi, mida tahad muuta. - + Save Service Teenistuse salvestamine - + Service Teenistus - + Start %s Algus %s - + Theme Singular Kujundus - + Themes Plural Kujundused - + Top Üleval - + Version Versioon - + Delete the selected item. Valitud kirje kustutamine. - + Move selection up one position. Valiku liigutamine ühe koha võrra ülespoole. - + Move selection down one position. Valiku liigutamine ühe koha võrra allapoole. - + &Vertical Align: &Vertikaaljoondus: - + Finished import. Importimine lõpetatud. - + Format: Vorming: - + Importing Importimine - + Importing "%s"... "%s" importimine... - + Select Import Source Importimise allika valimine - + Select the import format and the location to import from. Vali importimise vorming ja asukoht, kust importida. - + 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 importija on ühe puuduva Pythoni mooduli pärast keelatud. Kui sa tahad seda importijat kasutada, pead paigaldama mooduli "python-sqlite". - + Open %s File %s faili avamine - + %p% %p% - + Ready. Valmis. - + Starting import... Importimise alustamine... - + You need to specify at least one %s file to import from. A file type e.g. OpenSong Pead määrama vähemalt ühe %s faili, millest importida. @@ -5495,304 +5475,304 @@ Continue saving? Tere tulemast Piibli importimise nõustajasse - + Welcome to the Song Export Wizard Tere tulemast laulude eksportimise nõustajasse - + Welcome to the Song Import Wizard Tere tulemast laulude importimise nõustajasse - + Author Singular Autor - + Authors Plural Autorid - + © Copyright symbol. © - + Song Book Singular Laulik - + Song Books Plural Laulikud - + Song Maintenance Laulude haldus - + Topic Singular Teema - + Topics Plural Teemad - + Continuous Jätkuv - + Default Vaikimisi - + Display style: Kuvalaad: - + Duplicate Error Korduse viga - + File Fail - + Help Abi - + h The abbreviated unit for hours t - + Layout style: Paigutuse laad: - + Live Toolbar Ekraani tööriistariba - + m The abbreviated unit for minutes m - + OpenLP is already running. Do you wish to continue? OpenLP juba töötab. Kas tahad jätkata? - + Settings Sätted - + Tools Tööriistad - + Unsupported File Fail ei ole toetatud - + Verse Per Slide Iga salm eraldi slaidil - + Verse Per Line Iga salm eraldi real - + View Vaade - + Title and/or verses not found Pealkirja ja/või salme ei leitud - + XML syntax error XML süntaksi viga - + View Mode Vaate režiim - + Open service. Teenistuse avamine. - + Print Service Teenistuse printimine - + Replace live background. Ekraanil tausta asendamine. - + Reset live background. Ekraanil esialgse tausta taastamine. - + Split a slide into two only if it does not fit on the screen as one slide. Slaidi kaheks tükeldamine ainult juhul, kui see ei mahu tervikuna ekraanile. - + Welcome to the Bible Upgrade Wizard Tere tulemast Piibli uuendamise nõustajasse - + Confirm Delete Kustutamise kinnitus - + Play Slides in Loop Slaide korratakse - + Play Slides to End Slaide näidatakse üks kord - + Stop Play Slides in Loop Slaidide kordamise lõpetamine - + Stop Play Slides to End Slaidide ühekordse näitamise lõpetamine - + Next Track Järgmine lugu - + Search Themes... Search bar place holder text Teemade otsing... - + Optional &Split Valikuline &slaidivahetus - + Invalid Folder Selected Singular Valiti sobimatu kataloog - + Invalid File Selected Singular Valiti sobimatu fail - + Invalid Files Selected Plural Valiti sobimatud failid - + No Folder Selected Singular Ühtegi kasuta pole valitud - + Open %s Folder Ava %s kaust - + You need to specify one %s file to import from. A file type e.g. OpenSong Pead valim ühe %s faili, millest importida. - + You need to specify one %s folder to import from. A song format e.g. PowerSong Pead valima ühe %s kausta, millest importida. - + Importing Songs - + Laulude importimine OpenLP.core.lib - + %1 and %2 Locale list separator: 2 items %1 ja %2 - + %1, and %2 Locale list separator: end %1, ja %2 - + %1, %2 Locale list separator: middle %1, %2 - + %1, %2 Locale list separator: start %1, %2 @@ -5801,50 +5781,50 @@ Continue saving? 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>Esitluse plugin</strong><br />Esitluse plugin võimaldab näidata esitlusi erinevate programmidega. Saadaolevate esitlusprogrammide valik on saadaval valikukastis. - + Presentation name singular Esitlus - + Presentations name plural Esitlused - + Presentations container title Esitlused - + Load a new presentation. Uue esitluse laadimine. - + Delete the selected presentation. Valitud esitluse kustutamine. - + Preview the selected presentation. Valitud esitluse eelvaade. - + Send the selected presentation live. Valitud esitluse saatmine ekraanile. - + Add the selected presentation to the service. Valitud esitluse lisamine teenistusele. @@ -5852,52 +5832,52 @@ Continue saving? PresentationPlugin.MediaItem - + Select Presentation(s) Esitluste valimine - + Automatic Automaatne - + Present using: Esitluseks kasutatakse: - + File Exists Fail on olemas - + A presentation with that filename already exists. Sellise nimega esitluse fail on juba olemas. - + This type of presentation is not supported. Seda liiki esitlus ei ole toetatud. - + Presentations (%s) Esitlused (%s) - + Missing Presentation Puuduv esitlus - + The presentation %s is incomplete, please reload. Esitlus %s pole täielik, palun laadi uuesti. - + The presentation %s no longer exists. Esitlust %s pole enam olemas. @@ -5905,17 +5885,17 @@ Continue saving? PresentationPlugin.PresentationTab - + Available Controllers Saadaolevad juhtijad - + %s (unavailable) %s (pole saadaval) - + Allow presentation application to be overridden Esitluste rakendust saab käsitsi muuta @@ -5923,24 +5903,24 @@ Continue saving? 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. <b>Kaugjuhtimisplugin</b><br>See plugin võimaldab töötavale openlp programmile teadete saatmise teisest arvutist veebilehitseja või mõne muu rakenduse kaudu.<br>Selle peamine rakendus on teadete saatmine lastehoiust. - + Remote name singular Kaugjuhtimine - + Remotes name plural Kaugjuhtimine - + Remote container title Kaugjuhtimine @@ -5949,236 +5929,246 @@ Continue saving? RemotePlugin.Mobile - + OpenLP 2.0 Remote OpenLP 2.0 kaugpult - + OpenLP 2.0 Stage View OpenLP 2.0 ekraanivaade - + Service Manager Teenistuse haldur - + Slide Controller Slaidikontroller - + Alerts Teated - + Search Otsi - + Refresh Värskenda - + Blank Tühi - + Show Näita - + Prev Eelm - + Next Järgm - + Text Tekst - + Show Alert Kuva teade - + Go Live Ekraanile - + No Results Tulemusi pole - + Options Valikud - + Add to Service Lisa teenistusele - + Home Kodu - + Theme Kujundus - + Desktop Töölaud - + Add &amp; Go to Service Lisa ja liigu teenistusse + + + Service + Teenistus + + + + Slides + Slaidid + RemotePlugin.RemoteTab - + Serve on IP address: Serveeritakse ainult IP-aadressilt: - + Port number: Pordi number: - + Server Settings Serveri sätted - + Remote URL: Kaugjuhtimise URL: - + Stage view URL: Lavavaate URL: - + Display stage time in 12h format Laval kuvatakse aega 12-tunni vormingus - + Android App Androidi rakendus - + Scan the QR code or click <a href="https://play.google.com/store/apps/details?id=org.openlp.android">download</a> to install the Android app from Google Play. - + Skanni QR kood või klõpsa <a href="https://play.google.com/store/apps/details?id=org.openlp.android">allalaadimise lingil</a>, et paigaldada Androidi rakendus Google Playst. SongUsagePlugin - + &Song Usage Tracking &Laulude kasutuse jälgimine - + &Delete Tracking Data &Kustuta kogutud andmed - + Delete song usage data up to a specified date. Laulukasutuse andmete kustutamine kuni antud kuupäevani. - + &Extract Tracking Data &Eralda laulukasutuse andmed - + Generate a report on song usage. Genereeri raport laulude kasutuse kohta. - + Toggle Tracking Laulukasutuse jälgimine - + Toggle the tracking of song usage. Laulukasutuse jälgimise sisse- ja väljalülitamine. - + <strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services. <strong>Laulude plugin</strong><br />See plugin võimaldab laulude kuvamise ja haldamise. - + SongUsage name singular Laulukasutus - + SongUsage name plural Laulukasutus - + SongUsage container title Laulukasutus - + Song Usage Laulude kasutus - + Song usage tracking is active. Laulukasutuse jälgimine on aktiivne - + Song usage tracking is inactive. Laulukasutuse jälgimine pole aktiivne. - + display kuva - + printed prinditud @@ -6186,32 +6176,32 @@ Continue saving? SongUsagePlugin.SongUsageDeleteForm - + Delete Song Usage Data Laulukasutuse andmete kustutamine - + Delete Selected Song Usage Events? Kas kustutada valitud laulude kasutamise sündmused? - + Are you sure you want to delete selected Song Usage data? Kas oled kindel, et tahad kustutada valitud laulude kasutuse andmed? - + Deletion Successful Kustutamine edukas - + All requested data has been deleted successfully. Kõik kustutamisele määratud andmed kustutati edukalt. - + Select the date up to which the song usage data should be deleted. All data recorded before this date will be permanently deleted. Vali kuupäev, milleni laulukasutuse andmed tuleks kustutada. Kõik kuni selle määratud hetkeni kogutud andmed kustutatakse lõplikult. @@ -6219,42 +6209,42 @@ Continue saving? SongUsagePlugin.SongUsageDetailForm - + Song Usage Extraction Laulukasutuse salvestamine - + Select Date Range Vali kuupäevade vahemik - + to kuni - + Report Location Raporti asukoht - + Output File Location Väljundfaili asukoht - + usage_detail_%s_%s.txt laulukasutuse_andmed_%s_%s.txt - + Report Creation Raporti koostamine - + Report %s has been successfully created. @@ -6263,12 +6253,12 @@ has been successfully created. on edukalt loodud. - + Output Path Not Selected Sihtkohta pole valitud - + You have not set a valid output location for your song usage report. Please select an existing path on your computer. Sa pole määranud sobivat sihtkohta laulukasutuse raporti jaoks. Palun vali mõni kataloog oma arvutist. @@ -6276,112 +6266,112 @@ on edukalt loodud. SongsPlugin - + &Song &Laul - + Import songs using the import wizard. Laulude importimine importimise nõustajaga. - + <strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs. <strong>Laulude plugin</strong><br />See plugin võimaldab laulude kuvamise ja haldamise. - + &Re-index Songs &Indekseeri laulud uuesti - + Re-index the songs database to improve searching and ordering. Laulude andmebaasi kordusindekseerimine, et parendada otsimist ja järjekorda. - + Reindexing songs... Laulude kordusindekseerimine... - + Arabic (CP-1256) Araabia (CP-1256) - + Baltic (CP-1257) Balti (CP-1257) - + Central European (CP-1250) Kesk-Euroopa (CP-1250) - + Cyrillic (CP-1251) Kirillitsa (CP-1251) - + Greek (CP-1253) Kreeka (CP-1253) - + Hebrew (CP-1255) Heebrea (CP-1255) - + Japanese (CP-932) Jaapani (CP-932) - + Korean (CP-949) Korea (CP-949) - + Simplified Chinese (CP-936) Lihtsustatud Hiina (CP-936) - + Thai (CP-874) Tai (CP-874) - + Traditional Chinese (CP-950) Tradistiooniline Hiina (CP-950) - + Turkish (CP-1254) Türgi (CP-1254) - + Vietnam (CP-1258) Vietnami (CP-1258) - + Western European (CP-1252) Lääne-Euroopa (CP-1252) - + Character Encoding Märgikodeering - + The codepage setting is responsible for the correct character representation. Usually you are fine with the preselected choice. @@ -6389,105 +6379,105 @@ Usually you are fine with the preselected choice. Tavaliselt on vaikimisi valik õige. - + Please choose the character encoding. The encoding is responsible for the correct character representation. Palun vali märgikodeering. Kodeering on vajalik märkide õige esitamise jaoks. - + Song name singular Laul - + Songs name plural Laulud - + Songs container title Laulud - + Exports songs using the export wizard. Eksportimise nõustaja abil laulude eksportimine. - + Add a new song. Uue laulu lisamine. - + Edit the selected song. Valitud laulu muutmine. - + Delete the selected song. Valitud laulu kustutamine. - + Preview the selected song. Valitud laulu eelvaade. - + Send the selected song live. Valitud laulu saatmine ekraanile. - + Add the selected song to the service. Valitud laulu lisamine teenistusele. - + Reindexing songs - + Laulude uuesti indekseerimine SongsPlugin.AuthorsForm - + Author Maintenance Autorite haldus - + Display name: Täisnimi: - + First name: Eesnimi: - + Last name: Perekonnanimi: - + You need to type in the first name of the author. Pead sisestama autori eesnime. - + You need to type in the last name of the author. Pead sisestama autori perekonnanime. - + You have not set a display name for the author, combine the first and last names? Sa ei ole sisestanud autori kuvamise nime, kas see tuleks kombineerida ees- ja perekonnanimest? @@ -6495,7 +6485,7 @@ Kodeering on vajalik märkide õige esitamise jaoks. SongsPlugin.CCLIFileImport - + The file does not have a valid extension. Sellel failil pole sobiv laiend. @@ -6503,12 +6493,12 @@ Kodeering on vajalik märkide õige esitamise jaoks. SongsPlugin.EasyWorshipSongImport - + Administered by %s Haldab %s - + [above are Song Tags with notes imported from EasyWorship] @@ -6520,12 +6510,12 @@ Kodeering on vajalik märkide õige esitamise jaoks. SongsPlugin.EditBibleForm - + Meta Data Metaandmed - + Custom Book Names Kohandatud raamatunimed @@ -6533,202 +6523,202 @@ Kodeering on vajalik märkide õige esitamise jaoks. SongsPlugin.EditSongForm - + Song Editor Lauluredaktor - + &Title: &Pealkiri: - + Alt&ernate title: &Teine pealkiri: - + &Lyrics: &Sõnad: - + &Verse order: &Salmide järjekord: - + Ed&it All Muuda &kõiki - + Title && Lyrics Pealkiri && sõnad - + &Add to Song &Lisa laulule - + &Remove &Eemalda - + &Manage Authors, Topics, Song Books &Autorite, teemade ja laulikute haldamine - + A&dd to Song L&isa laulule - + R&emove &Eemalda - + Book: Raamat: - + Number: Number: - + Authors, Topics && Song Book Autorid, teemad && laulik - + New &Theme Uus &kujundus - + Copyright Information Autoriõiguse andmed - + Comments Kommentaarid - + Theme, Copyright Info && Comments Kujundus, autoriõigus && kommentaarid - + Add Author Autori lisamine - + This author does not exist, do you want to add them? Seda autorit veel pole, kas tahad autori lisada? - + This author is already in the list. See autor juba on loendis. - + 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. Sa ei ole valinud ühtegi sobilikku autorit. Vali autor loendist või sisesta uue autori nimi ja klõpsa uue nupul "Lisa laulule autor". - + Add Topic Teema lisamine - + This topic does not exist, do you want to add it? Sellist teemat pole. Kas tahad selle lisada? - + This topic is already in the list. See teema juba on loendis. - + 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. Sa pole valinud sobivat teemat. Vali teema kas loendist või sisesta uus teema ja selle lisamiseks klõpsa nupule "Lisa laulule teema". - + You need to type in a song title. Pead sisestama laulu pealkirja. - + You need to type in at least one verse. Pead sisestama vähemalt ühe salmi. - + The verse order is invalid. There is no verse corresponding to %s. Valid entries are %s. Salmide järjekord pole sobiv. Mitte ükski valm ei vasta %s-le. Sobivad salmid on %s. - + Add Book Lauliku lisamine - + This song book does not exist, do you want to add it? Sellist laulikut pole. Kas tahad selle lisada? - + You need to have an author for this song. Pead lisama sellele laulule autori. - + Linked Audio Lingitud audio - + Add &File(s) Lisa &faile - + Add &Media Lisa &meediat - + Remove &All Eemalda &kõik - + Open File(s) Failide avamine - + <strong>Warning:</strong> Not all of the verses are in use. <strong>Hoiatus</strong> Mitte kõik salmid pole kasutusel. - + The verse order is invalid. There are no verses corresponding to %s. Valid entries are %s. Salmide järjekord on vale. Ühtegi salmi nimega %s pole. Õiged nimed on %s. @@ -6736,22 +6726,22 @@ Kodeering on vajalik märkide õige esitamise jaoks. SongsPlugin.EditVerseForm - + Edit Verse Salmi muutmine - + &Verse type: &Salmi liik: - + &Insert &Sisesta - + Split a slide into two by inserting a verse splitter. Slaidi tükeldamine slaidipoolitajaga. @@ -6759,82 +6749,82 @@ Kodeering on vajalik märkide õige esitamise jaoks. SongsPlugin.ExportWizardForm - + Song Export Wizard Laulude eksportimise nõustaja - + Select Songs Laulude valimine - + Check the songs you want to export. Vali laulud, mida tahad eksportida. - + Uncheck All Eemalda märgistus - + Check All Märgi kõik - + Select Directory Kataloogi valimine - + Directory: Kataloog: - + Exporting Eksportimine - + Please wait while your songs are exported. Palun oota, kuni kõik laulud on eksporditud. - + You need to add at least one Song to export. Pead lisama vähemalt ühe laulu, mida tahad eksportida. - + No Save Location specified Salvestamise asukohta pole määratud - + Starting export... Eksportimise alustamine... - + You need to specify a directory. Pead määrama kataloogi. - + Select Destination Folder Sihtkausta valimine - + Select the directory where you want the songs to be saved. Vali kataloog, kuhu tahad laulu salvestada. - + This wizard will help to export your songs to the open and free <strong>OpenLyrics</strong> worship song format. Nõustaja aitab laule eksportida avatud ning vabasse <stron>OpenLyrics</strong> ülistuslaulude vormingusse. @@ -6842,172 +6832,172 @@ Kodeering on vajalik märkide õige esitamise jaoks. SongsPlugin.ImportWizardForm - + Select Document/Presentation Files Dokumentide/esitluste valimine - + Song Import Wizard Laulude importimise nõustaja - + 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. See nõustaja aitab importida paljudes erinevates vormingutes laule. Klõpsa all asuvat edasi nuppu, et jätkata importimise vormingu valimisega. - + Generic Document/Presentation Tavaline dokument/esitlus - + Add Files... Lisa faile... - + Remove File(s) Faili(de) eemaldamine - + Please wait while your songs are imported. Palun oota, kuni laule imporditakse. - + OpenLP 2.0 Databases OpenLP 2.0 andmebaas - + openlp.org v1.x Databases openlp.org v1.x andmebaas - + Words Of Worship Song Files Words Of Worship Song failid - + Songs Of Fellowship Song Files Songs Of Fellowship laulufailid - + SongBeamer Files SongBeameri laulufailid - + SongShow Plus Song Files SongShow Plus laulufailid - + Foilpresenter Song Files Foilpresenteri laulufailid - + Copy Kopeeri - + Save to File Salvesta faili - + The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. Songs of Fellowship importija on keelatud, kuna OpenLP-l puudub ligiäpääs OpenOffice'le või LibreOffice'le. - + The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. Tavalise dokumendi/esitluse importija on keelatud, kuna OpenLP-l puudub ligipääs OpenOffice'le või LibreOffice'le. - + OpenLyrics or OpenLP 2.0 Exported Song OpenLyrics või OpenLP 2.0-st eksporditud laul - + OpenLyrics Files OpenLyrics failid - + CCLI SongSelect Files CCLI SongSelecti failid - + EasySlides XML File EasySlides XML fail - + EasyWorship Song Database EasyWorship laulude andmebaas - + DreamBeam Song Files DreamBeam'i laulufailid - + You need to specify a valid PowerSong 1.0 database folder. Pead valima õige PowerSong 1.0 andmebaasi kataloogi. - + 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>. Kõigepealt teisenda oma ZionWorx andmebaas CSV tekstifailiks, vastavalt juhendile <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">kasutaja käsiraamatus</a>. - + SundayPlus Song Files SundayPlus'i laulufailid - + This importer has been disabled. Importija on keelatud. - + MediaShout Database MediaShout andmebaas - + The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. MediaShout importija töötab ainult Windowsi platvormil. See on keelatud puuduva Pythoni mooduli pärast. Selle importija kasutamiseks pead paigaldama "pyodbc" mooduli. - + SongPro Text Files SongPro tekstifailid - + SongPro (Export File) SongPro (eksportfail) - + In SongPro, export your songs using the File -> Export menu Ekspordi oma laulud SongPro menüüst kasutades File -> Export. @@ -7015,12 +7005,12 @@ Kodeering on vajalik märkide õige esitamise jaoks. SongsPlugin.MediaFilesForm - + Select Media File(s) Meediafailide valimine - + Select one or more audio files from the list below, and click OK to import them into this song. Vali järgnevast loendist vähemalt üks audiofail ning klõpsa nupule Olgu, et seda sellesse laulu importida. @@ -7038,7 +7028,7 @@ Kodeering on vajalik märkide õige esitamise jaoks. Laulusõnad - + CCLI License: CCLI litsents: @@ -7048,7 +7038,7 @@ Kodeering on vajalik märkide õige esitamise jaoks. Kogu laulust - + Are you sure you want to delete the %n selected song(s)? Kas sa oled kindel, et soovid kustutada %n valitud laulu? @@ -7061,7 +7051,7 @@ Kodeering on vajalik märkide õige esitamise jaoks. Autorite, teemade ja laulikute loendi haldamine. - + copy For song cloning koopia @@ -7095,7 +7085,7 @@ Kodeering on vajalik märkide õige esitamise jaoks. SongsPlugin.MediaShoutImport - + Unable to open the MediaShout database. MediaShout andmebaasi ei suudetud avada. @@ -7103,7 +7093,7 @@ Kodeering on vajalik märkide õige esitamise jaoks. SongsPlugin.OpenLP1SongImport - + Not a valid openlp.org 1.x song database. See pole openlp.org 1.x laulude andmebaas. @@ -7111,7 +7101,7 @@ Kodeering on vajalik märkide õige esitamise jaoks. SongsPlugin.OpenLPSongImport - + Not a valid OpenLP 2.0 song database. See pole OpenLP 2.0 laulude andmebaas. @@ -7119,7 +7109,7 @@ Kodeering on vajalik märkide õige esitamise jaoks. SongsPlugin.OpenLyricsExport - + Exporting "%s"... "%s" eksportimine... @@ -7127,55 +7117,55 @@ Kodeering on vajalik märkide õige esitamise jaoks. SongsPlugin.PowerSongImport - + No songs to import. Pole laule, mida importida. - + Verses not found. Missing "PART" header. Salme ei leitud. "PART" päis puudub. - + No %s files found. - + Ühtegi %s faili ei leitud. - + Invalid %s file. Unexpected byte value. - + Sobimatu %s fail. Ootamatu väärtusega bait. - + Invalid %s file. Missing "TITLE" header. - + Sobimatu %s fail. Puudub "TITLE" päis. - + Invalid %s file. Missing "COPYRIGHTLINE" header. - + Sobimatu %s fail. Puudub "COPYRIGHTLINE" päis. SongsPlugin.SongBookForm - + Song Book Maintenance Lauliku haldus - + &Name: &Nimi: - + &Publisher: &Kirjastaja: - + You need to type in a name for the book. Pead sisestama lauliku nime. @@ -7183,12 +7173,12 @@ Kodeering on vajalik märkide õige esitamise jaoks. SongsPlugin.SongExportForm - + Your song export failed. Laulude eksportimine nurjus. - + Finished export. To import these files use the <strong>OpenLyrics</strong> importer. Eksportimine lõpetati. Nende failide importimiseks kasuta <strong>OpenLyrics</strong> importijat. @@ -7196,27 +7186,27 @@ Kodeering on vajalik märkide õige esitamise jaoks. SongsPlugin.SongImport - + copyright autoriõigus - + The following songs could not be imported: Järgnevaid laule polnud võimalik importida: - + Cannot access OpenOffice or LibreOffice Puudub ligipääs OpenOffice'le või LibreOffice'le - + Unable to open file Faili avamine ei õnnestunud - + File not found Faili ei leitud @@ -7224,107 +7214,107 @@ Kodeering on vajalik märkide õige esitamise jaoks. SongsPlugin.SongMaintenanceForm - + Could not add your author. Autori lisamine pole võimalik. - + This author already exists. See autor on juba olemas. - + Could not add your topic. Sinu teema lisamine pole võimalik. - + This topic already exists. Teema on juba olemas. - + Could not add your book. Lauliku lisamine pole võimalik. - + This book already exists. See laulik on juba olemas. - + Could not save your changes. Muudatuste salvestamine pole võimalik. - + Could not save your modified author, because the author already exists. Sinu muudetud autorit pole võimalik salvestada, kuna autor on juba olemas. - + Could not save your modified topic, because it already exists. Sinu muudetud teemat pole võimalik salvestada, kuna selline on juba olemas. - + Delete Author Autori kustutamine - + Are you sure you want to delete the selected author? Kas oled kindel, et tahad kustutada valitud autori? - + This author cannot be deleted, they are currently assigned to at least one song. Seda autorit pole võimalik kustutada, kuna ta on märgitud vähemalt ühe laulu autoriks. - + Delete Topic Teema kustutamine - + Are you sure you want to delete the selected topic? Kas oled kindel, et tahad valitud teema kustutada? - + This topic cannot be deleted, it is currently assigned to at least one song. Seda teemat pole võimalik kustutada, kuna see on märgib vähemalt ühte laulu. - + Delete Book Lauliku kustutamine - + Are you sure you want to delete the selected book? Kas oled kindel, et tahad valitud lauliku kustutada? - + This book cannot be deleted, it is currently assigned to at least one song. Seda laulikut pole võimalik kustutada, kuna vähemalt üks laul kuulub sellesse laulikusse. - + The author %s already exists. Would you like to make songs with author %s use the existing author %s? Autor %s on juba olemas. Kas sa tahad, et laulud autoriga %s liidetaks olemasolevale autorile %s? - + The topic %s already exists. Would you like to make songs with topic %s use the existing topic %s? Teema %s on juba olemas. Kas sa tahad, et laulud teemaga %s kasutaksid olemasolevat teemat %s? - + The book %s already exists. Would you like to make songs with book %s use the existing book %s? Laulik %s on juba olemas. Kas sa tahad, et lauliku %s laulud liidetaks olemasoleva laulikuga %s? @@ -7332,27 +7322,27 @@ Kodeering on vajalik märkide õige esitamise jaoks. SongsPlugin.SongsTab - + Songs Mode Laulurežiim - + Enable search as you type Otsing sisestamise ajal - + Display verses on live tool bar Salme kuvatakse ekraani tööriistaribal - + Update service from song edit Teenistuse uuendamine laulu muutmisel - + Import missing songs from service files Teenistuse failidest imporditakse puuduvad laulud @@ -7360,17 +7350,17 @@ Kodeering on vajalik märkide õige esitamise jaoks. SongsPlugin.TopicsForm - + Topic Maintenance Teemade haldus - + Topic name: Teema nimi: - + You need to type in a topic name. Pead sisestama teema nime. @@ -7378,37 +7368,37 @@ Kodeering on vajalik märkide õige esitamise jaoks. SongsPlugin.VerseType - + Verse Salm - + Chorus Refrään - + Bridge Vahemäng - + Pre-Chorus Eelrefrään - + Intro Sissejuhatus - + Ending Lõpetus - + Other Muu @@ -7416,29 +7406,29 @@ Kodeering on vajalik märkide õige esitamise jaoks. SongsPlugin.ZionWorxImport - + Error reading CSV file. Viga CSV faili lugemisel. - + File not valid ZionWorx CSV format. Fail ei ole korrektses ZionWorx CSV vormingus. - + Line %d: %s - + Rida %d: %s - + Decoding error: %s - + Viga dekodeerimisel: %s - + Record %d - + Kirje %d diff --git a/resources/i18n/fi.ts b/resources/i18n/fi.ts index e0996aa02..99eb7c03e 100644 --- a/resources/i18n/fi.ts +++ b/resources/i18n/fi.ts @@ -3,35 +3,35 @@ AlertsPlugin - + &Alert &Hälytys - + Show an alert message. Näytä - + Alert name singular Hälytys - + Alerts name plural Hälytykset - + Alerts container title Hälytykset - + <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of nursery alerts on the display screen. <strong>Hälytykset lisäosa</strong><br />Hälytykset lisäosa huolehtii lastenhoidon viestien näyttämisestä esityksen aikana. @@ -39,69 +39,69 @@ AlertsPlugin.AlertForm - + Alert Message Hälytysviesti - + Alert &text: Hälytyksen &teksti - + &New &Uusi - + &Save &Tallenna - + Displ&ay &Näytä - + Display && Cl&ose Näytä && &Sulje - + New Alert Uusi hälytys - + You haven't specified any text for your alert. Please type in some text before clicking New. Et ole määritellyt viestitekstiä hälytykselle. Ole hyvä ja anna jokin teksti ennen kuin painat Uusi. - + &Parameter: &Parametri: - + No Parameter Found Parametritekstiä ei ole. - + You have not entered a parameter to be replaced. Do you want to continue anyway? Et ole antanut lainkaan tekstiin sijoitettavaa parametriä. Tahdotko jatkaa siitä huolimatta? - + No Placeholder Found Ei korvattavaa parametria tekstissä - + The alert text does not contain '<>'. Do you want to continue anyway? Hälytystekstissä ei ole lainkaan '<>' parametria. @@ -119,32 +119,32 @@ Tahdotko jatkaa siitä huolimatta? AlertsPlugin.AlertsTab - + Font Kirjasin - + Font name: Kirjasimen nimi: - + Font color: Kirjasimen väri: - + Background color: Taustaväri: - + Font size: Kirjasimen koko: - + Alert timeout: Hälytyksen kesto: @@ -152,510 +152,510 @@ Tahdotko jatkaa siitä huolimatta? BiblesPlugin - + &Bible &Raamattu - + Bible name singular Raamattu - + Bibles name plural Raamatut - + Bibles container title Raamatut - + No Book Found Kirjaa ei löydy - + No matching book could be found in this Bible. Check that you have spelled the name of the book correctly. Annettua kirjaa ei ole tässä Raamatussa. Ole hyvä ja tarkista kirjan nimen oikeinkirjoitus. - + Import a Bible. Tuo Raamattu. - + Add a new Bible. Lisää uusi Raamattu. - + Edit the selected Bible. Muokkaa valittua Raamattua. - + Delete the selected Bible. Poista valittu Raamattu. - + Preview the selected Bible. Esikatsele valittua Raamatun tekstiä. - + Send the selected Bible live. - Lähetä valittu Raamatun teksti esitykseen. + Lähetä valittu Raamatun teksti live-esitykseen. - + Add the selected Bible to the service. Lisää valittu Raamatun teksti ajolistalle. - + <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display Bible verses from different sources during the service. <strong>Raamattu-lisäosa</strong><br />Raamattu-lisäosalla voi näyttää Raamatun jakeita suoraan Raamatusta tilaisuuden aikana. - + &Upgrade older Bibles &Päivitä vanhempia Raamattuja - + Upgrade the Bible databases to the latest format. Päivitä Raamattutietokannat uusimpaan tiedostomuotoon. - + 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 @@ Tahdotko jatkaa siitä huolimatta? BiblesPlugin.BibleEditForm - + You need to specify a version name for your Bible. Anna nimi käännökselle, joka tuodaan ohjelmaan. - + You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. Sinun pitää määritellä tekijäinoikeusteksti Raamatulle. Myös Public Domain -lisenssi pitää mainita. - + Bible Exists Raamattu on jo olemassa - + This Bible already exists. Please import a different Bible or first delete the existing one. Tämä Raamattu on jo olemassa. Ole hyvä ja tuo eri käännös tai poista ensin nykyinen samalla nimellä oleva. - + 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 Virhe jaeviitteessä - + Web Bible cannot be used Nettiraamattua ei voi käyttää - + Text Search is not available with Web Bibles. Tekstihaku ei ole käytettävissä nettiraamatuista. - + 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. Et antanut lainkaan hakusanaa. Voit antaa useita eri hakusanoja välilyönnillä erotettuna, jos etsit niitä yhdessä. Jos sanat erotetaan pilkulla, etsitään mitä tahansa niistä. - + There are no Bibles currently installed. Please use the Import Wizard to install one or more Bibles. Raamattuja ei ole asennettuna. Ole hyvä ja asenna tai tuo ohjelmaan yksi tai useampia Raamattuja. - + No Bibles Available Raamattuja ei ole saatavilla - + 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 Jakeiden näyttäminen - + Only show new chapter numbers Älä toista lukunumeroita - + Bible theme: Raamatun teema - + No Brackets Ei sulkuja - + ( And ) ( ja ) - + { And } { ja } - + [ And ] [ ja ] - + Note: Changes do not affect verses already in the service. Huomio: Muutokset eivät vaikuta jakeisiin, jotka on jo ajolistalla. - + Display second Bible verses Näytä vaihtoehtoinen Raamattu - + 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 Finish - + 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 Valitse kirjan nimi - + Current name: Nykyinen nimi: - + Corresponding name: Vastaava nimi: - + Show Books From Näytä kirjalyhenteet - + Old Testament Vanha testamentti - + New Testament Uusi testamentti - + Apocrypha Deuterokanoniset kirjat - + 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. SInun pitää valita kirja. @@ -937,18 +937,18 @@ search results and on display: BiblesPlugin.CSVBible - + Importing books... %s Tuodaan kirjoja... %s - + Importing verses from %s... Importing verses from <book name>... Tuodaan jakeita %s:sta... - + Importing verses... done. Tuodaan jakeita... valmis. @@ -956,68 +956,68 @@ search results and on display: BiblesPlugin.EditBibleForm - + Bible Editor - + License Details Käyttöoikeus - + Version name: Käännöksen nimi: - + Copyright: Tekijäinoikeus: - + Permissions: Oikeudet: - + Default Bible Language - + Book name language in search field, search results and on display: - + Global Settings - + Bible Language - + Application Language - + English Finish - + 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... Rekisteröidään Raamattu ja ladataan kirjoja... - + Registering Language... Rekisteröidään kieli... - + Importing %s... Importing <book name>... Tuodaan %s... - + Download Error Virhe tiedoston lataamisessa - + 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. Ohjelma havaitsi ongelmia valittujen jakeiden lataamisessa. Ole hyvä ja tarkasta internet-yhteyden toimivuus. Jos ongelma ei poistu, harkitse raportointia virheestä kehittäjille. - + Parse Error Jäsennysvirhe - + There was a problem extracting your verse selection. If this error continues to occur please consider reporting a bug. Ohjelma havaitsi ongelmia valittujen jakeiden purkamisessa. Jos ongelma ei poistu, harkitse raportointia virheestä kehittäjille. @@ -1234,17 +1234,17 @@ tarpeen mukaan, joten internet yhteys tämän raamatun käytössä vaaditaan. BiblesPlugin.LanguageDialog - + Select Language Valitse kieli - + OpenLP is unable to determine the language of this translation of the Bible. Please select the language from the list below. OpenLP ei pysty määrittelemään tässä Raamatun käännöksessä käytettyä kieltä. Ole hyvä ja valitse kieli alla olevasta luettelosta. - + Language: Kieli: @@ -1252,7 +1252,7 @@ tarpeen mukaan, joten internet yhteys tämän raamatun käytössä vaaditaan. BiblesPlugin.LanguageForm - + You need to choose a language. Sinun tulee valita kieli. @@ -1260,92 +1260,92 @@ tarpeen mukaan, joten internet yhteys tämän raamatun käytössä vaaditaan. BiblesPlugin.MediaItem - + Quick Nopea - + Find: Etsi: - + Book: Kirja: - + Chapter: Luku: - + Verse: Jae: - + From: Alkaen: - + To: Asti: - + Text Search Tekstihaku - + Second: Toinen: - + Scripture Reference Jaeviite - + Toggle to keep or clear the previous results. Vaihda valinta pitääksesi tai pyyhkiäksesi edelliset tulokset. - + You cannot combine single and dual Bible verse search results. Do you want to delete your search results and start a new search? Et voi yhdistää yhden ja kahden käännöksen jaehakujen tuloksia. Haluatko poistaa hakutulokset ja aloittaa uuden haun? - + Bible not fully loaded. Raamattu ei latautunut kokonaan. - + Information Tiedot - + 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. Toissijainen Raamattu ei sisällä kaikki ensisijaisen käännöksen jakeita. Vain ne jakeet, jotka ovat kummassakin käännöksessä, voidaan näyttää. %d jaetta jätettiin pois hakutuloksista. - + Search Scripture Reference... - + Search Text... - + Are you sure you want to completely delete "%s" Bible from OpenLP? You will need to re-import this Bible to use it again. @@ -1355,7 +1355,7 @@ You will need to re-import this Bible to use it again. BiblesPlugin.OpenSongImport - + Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. @@ -1363,7 +1363,7 @@ You will need to re-import this Bible to use it again. BiblesPlugin.Opensong - + Importing %s %s... Importing <book name> <chapter>... Tuodaan %s %s... @@ -1372,12 +1372,12 @@ You will need to re-import this Bible to use it again. BiblesPlugin.OsisImport - + Detecting encoding (this may take a few minutes)... Selvitetään merkistöä (tämä voi kestää muutamia minuutteja)... - + Importing %s %s... Importing <book name> <chapter>... Tuodaan %s %s... @@ -1386,149 +1386,149 @@ You will need to re-import this Bible to use it again. BiblesPlugin.UpgradeWizardForm - + Select a Backup Directory Valitse hakemisto varmuuskopiolle - + Bible Upgrade Wizard Ohjattu Raamatun päivitys - + 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. Tämä päivitystyökalu auttaa päivittämään nykyiset Raamatut edellisestä versiosta OpenLP 2:een. Paina 'seuraava' jatkaaksesi päivitystä. - + Select Backup Directory Valitse hakemisto varmuuskopiolle - + Please select a backup directory for your Bibles Ole hyvä ja valitse hakemisto, jonne Raamatut varmuuskopiodaan - + 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>. Vanhemmat versiot OpenLP 2.0 eivät voi käyttää päivitettyjä Raamatun käännöksiä. Tämä tekee varmuuskopion nykyisistä Raamatuista, jotta voit kopioida ne takaisin OpenLP:n hakemistoon, jos sinun tarvitsee jostain syystä palata käyttämään ohjelman vanhempaa versiota. Ohjeet Raamattujen palauttamiseen on nettisivullamme kohdassa <a href="http://wiki.openlp.org/faq">Frequently Asked Questions</a>. - + Please select a backup location for your Bibles. Ole hyvä ja valitse sijainti varmuuskopioille. - + Backup Directory: Varmuuskopioihakemisto: - + There is no need to backup my Bibles Raamatunkäännöksiä ei tarvitse varmuuskopioida - + Select Bibles Valitse Raamatut - + Please select the Bibles to upgrade Ole hyvä ja valitse Raamatut päivitettäväksi - + Upgrading Päivitetään - + Please wait while your Bibles are upgraded. Ole hyvä ja odota, kunnes Raamatut on päivitetty. - + The backup was not successful. To backup your Bibles you need permission to write to the given directory. Varmuuskopiointi epäonnistui. Varmuuskopiointia varten tarvitaan kirjoitusoikeudet annettuun hakemistoon. - + Upgrading Bible %s of %s: "%s" Failed Päivitetään Raamattua %s/%s: "%s" Epäonnistui - + Upgrading Bible %s of %s: "%s" Upgrading ... Päivitetään Raamattua %s/%s: "%s" Päivitetään ... - + Download Error Virhe latauksessa - + To upgrade your Web Bibles an Internet connection is required. Nettiraamattujen päivittämiseksi tarvitaan internet-yhteys. - + Upgrading Bible %s of %s: "%s" Upgrading %s ... Päivitetään Raamattua %s/%s: "%s" Päivitetään %s ... - + Upgrading Bible %s of %s: "%s" Complete Päivitetään Raamattua %s/%s: "%s" Valmis - + , %s failed , %s epäonnistui - + 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. Raamattujen päivitys: %s onnistui %s Ole hyvä ja huomaa, että jakeet nettiraamatuista ladataan käytettäessä, joten nettiyhteys niiden käyttämiseksi vaaditaan. - + Upgrading Bible(s): %s successful%s Päivitetään Raamattuja: %s onnistui %s. - + Upgrade failed. Päivitys epäonnistui. - + You need to specify a backup directory for your Bibles. Määrittele hakemisto Raamattujen varmuuskopioille. - + Starting upgrade... Aloitetaan päivitys... - + There are no Bibles that need to be upgraded. Ei ole päivitettäviä Ramaattuja. @@ -1536,65 +1536,65 @@ Ole hyvä ja huomaa, että jakeet nettiraamatuista ladataan käytettäessä, jot 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>Mukautetut diat</strong><br />Mukautetut diat ominaisuus mahdollistaa yksittäisten diojen näyttämisen laulujen tapaan. Mukautetut diat sen sijaan voidaan muokata vapaammin omiin tarkoituksiin sopiviksi. - + Custom Slide name singular Mukautettu dia - + Custom Slides name plural Mukautetut diat - + Custom Slides container title Mukautetut diat - + Load a new custom slide. Lataa uusi mukautettu dia. - + Import a custom slide. Tuo mukautettu dia. - + Add a new custom slide. Lisää uusi mukautettu dia. - + Edit the selected custom slide. Muokkaa valittua mukautettua diaa. - + Delete the selected custom slide. Poista valittu mukautettu dia. - + Preview the selected custom slide. Esikatsele valittua mukautettua diaa. - + Send the selected custom slide live. - Lähetä valittu mukautettu dia esitykseen. + Lähetä valittu mukautettu dia live-esitykseen. - + Add the selected custom slide to the service. Lisää valittu mukautettu dia ajolistalle. @@ -1602,12 +1602,12 @@ Ole hyvä ja huomaa, että jakeet nettiraamatuista ladataan käytettäessä, jot CustomPlugin.CustomTab - + Custom Display Mukautettu näyttö - + Display footer Näytä lopputunniste @@ -1615,62 +1615,62 @@ Ole hyvä ja huomaa, että jakeet nettiraamatuista ladataan käytettäessä, jot CustomPlugin.EditCustomForm - + Edit Custom Slides Muokkaa mukautettuja dioja - + &Title: &Otsikko - + Add a new slide at bottom. Lisää uusi dia loppuun. - + Edit the selected slide. Muokkaa valittua diaa. - + Edit all the slides at once. Muokkaa kaikki dioja kerralla. - + Split a slide into two by inserting a slide splitter. Jaa dia kahteen osaan lisäämällä splitterin. - + The&me: Tee&ma: - + &Credits: &Lopputekstit: - + You need to type in a title. Muista antaa myös otsikko. - + You need to add at least one slide Sinun pitää lisätä ainakin yksi dia. - + Ed&it All Mu&okkaa kaikkia - + Insert Slide Lisää dia @@ -1678,7 +1678,7 @@ Ole hyvä ja huomaa, että jakeet nettiraamatuista ladataan käytettäessä, jot CustomPlugin.EditVerseForm - + Edit Slide @@ -1686,7 +1686,7 @@ Ole hyvä ja huomaa, että jakeet nettiraamatuista ladataan käytettäessä, jot CustomPlugin.MediaItem - + Are you sure you want to delete the %n selected custom slide(s)? @@ -1697,60 +1697,60 @@ Ole hyvä ja huomaa, että jakeet nettiraamatuista ladataan käytettäessä, jot 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>Kuvankatselu lisäosa</strong><br />Kuvankatselu toteuttaa helpon kuvien näyttämisen.<br />Lisäosa mahdollistaa kokonaisen kuvajoukon näyttämisen yhdessä ajolistalla, mikä tekee useiden kuvien näyttämisestä hallitumpaa. Kuvia voi myös ajaa slideshowna OpenLP:n ajastusta hyödyntäen. Lisäksi kuvia voi käyttää jumalanpalvelukselle valitun taustakuvan sijaan, mikä mahdollistaa kuvien käyttämisen taustakuvana teksteille teeman sijaan. - + Image name singular Kuva - + Images name plural Kuvat - + Images container title Kuvat - + Load a new image. Lataa uusi kuva. - + Add a new image. Lisää uusi kuva. - + Edit the selected image. Muokkaa valittua kuvaa. - + Delete the selected image. Poista valittu kuva. - + Preview the selected image. Esikatsele valittua kuvaa. - + Send the selected image live. - Lähetä valittu kuva esitykseen. + Lähetä valittu kuva live-esitykseen. - + Add the selected image to the service. Lisää valittu kuva ajolistalle. @@ -1758,7 +1758,7 @@ Ole hyvä ja huomaa, että jakeet nettiraamatuista ladataan käytettäessä, jot ImagePlugin.ExceptionDialog - + Select Attachment Valitse liite @@ -1766,44 +1766,44 @@ Ole hyvä ja huomaa, että jakeet nettiraamatuista ladataan käytettäessä, jot ImagePlugin.MediaItem - + Select Image(s) Valitse kuva(t) - + You must select an image to delete. Sinun pitää valita kuva, jonka poistat. - + You must select an image to replace the background with. Sinun pitää valita kuva, jolla korvaa taustan. - + Missing Image(s) Puuttuvat kuva(t) - + The following image(s) no longer exist: %s Seuraavaa kuvaa (kuvia) ei enää ole olemassa: %s - + The following image(s) no longer exist: %s Do you want to add the other images anyway? Seuraavaa kuvaa (kuvia) ei ole enää olemassa: %s Haluatko lisätä toisia kuvia siitä huolimatta? - + There was a problem replacing your background, the image file "%s" no longer exists. Taustakuvan korvaaminen ei onnistunut. Kuvatiedosto "%s" ei ole enää olemassa. - + There was no display item to amend. Muutettavaa näyttöotsaketta ei ole. @@ -1811,78 +1811,78 @@ Haluatko lisätä toisia kuvia siitä huolimatta? ImagesPlugin.ImageTab - + Background Color Taustaväri - + Default Color: Oletusväri: - + Visible background for images with aspect ratio different to screen. - + Näkyvä tausta kuville, joiden mittasuhteet poikkeavat näytön mittasuhteista. MediaPlugin - + <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. <strong>Media-lisäosa</strong><br /> Media-lisäosa mahdollistaa audio ja video lähteiden toistamisen. - + Media name singular Media - + Media name plural Media - + Media container title Media - + Load new media. Lataa uusi media. - + Add new media. Lisää uusi media. - + Edit the selected media. Muokkaa valittua mediaa. - + Delete the selected media. Poista valittu media. - + Preview the selected media. Esikatsele valittua mediaa. - + Send the selected media live. - Lähetä valittu media esitykseen. + Lähetä valittu media live-esitykseen. - + Add the selected media to the service. Lisää valittu media ajolistalle. @@ -1890,57 +1890,57 @@ Haluatko lisätä toisia kuvia siitä huolimatta? MediaPlugin.MediaItem - + Select Media Valitse media - + You must select a media file to delete. Sinun täytyy valita mediatiedosto poistettavaksi. - + You must select a media file to replace the background with. Sinun täytyy valita mediatiedosto, jolla taustakuva korvataan. - + There was a problem replacing your background, the media file "%s" no longer exists. Taustakuvan korvaamisessa on ongelmia, mediatiedosto '%s" ei ole enää saatavilla. - + Missing Media File Puuttuva mediatiedosto - + The file %s no longer exists. Tiedosto %s ei ole enää olemassa. - + Videos (%s);;Audio (%s);;%s (*) Videoita (%s);;Audio (%s);;%s (*) - + There was no display item to amend. Ei ollut muutettavaa näyttöelementtiä. - + Unsupported File Tiedostotyyppiä ei tueta. - + Automatic Automaattinen - + Use Player: Käytä soitinta: @@ -1948,22 +1948,22 @@ Haluatko lisätä toisia kuvia siitä huolimatta? MediaPlugin.MediaTab - + Available Media Players Saatavilla olevat mediasoittimet - + %s (unavailable) %s (ei ole saatavilla) - + Player Order Soittimien järjestys - + Allow media player to be overridden @@ -1971,17 +1971,17 @@ Haluatko lisätä toisia kuvia siitä huolimatta? OpenLP - + Image Files Kuvatiedostot - + Information Tiedot - + Bible format has changed. You have to upgrade your existing Bibles. Should OpenLP upgrade now? @@ -1993,32 +1993,54 @@ Pitäisikö OpenLP:n päivittää ne nyt? OpenLP.AboutForm - + Credits Kiitokset - + License Lisenssi - + 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. Tämä ohjelma on vapaa, voit jakaa ja / tai muuttaa sitä ehtojen mukaisesti GNU General Public Licensen julkaissut Free Software Foundation, version 2 lisenssillä. - + 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. Tätä ohjelmaa levitetään siinä toivossa, että se olisi hyödyllinen, mutta ilman mitään takuuta; ilman edes hiljaista takuuta kaupallisesti hyväksyttävästä laadusta tai soveltuvuudesta tiettyyn tarkoitukseen. - + + Copyright © 2004-2012 %s +Portions copyright © 2004-2012 %s + + + + + 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. + +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 volunteering by using the button below. + + + + + Volunteer + + + + Project Lead %s @@ -2037,12 +2059,20 @@ Packagers Translators Afrikaans (af) %s + Czeck (cs) + %s + Danish (da) + %s German (de) %s + Greek (el) + %s English, United Kingdom (en_GB) %s English, South Africa (en_ZA) %s + Spanish (es) + %s Estonian (et) %s French (fr) @@ -2059,13 +2089,15 @@ Translators %s Russian (ru) %s + Swedish (sv) + %s Documentation %s Built With Python: http://www.python.org/ - Qt4: http://qt.nokia.com/ + Qt4: http://qt.digia.com/ PyQt4: http://www.riverbankcomputing.co.uk/software/pyqt/intro Oxygen Icons: http://oxygen-icons.org/ @@ -2080,207 +2112,185 @@ Final Credit on the cross, setting us free from sin. We bring this software to you for free because He has set us free. - Projektin johto ⏎%s ⏎ ⏎ Kehittäjät ⏎%s ⏎ ⏎ Osallistujat ⏎%s ⏎ ⏎ Testaajat ⏎%s ⏎ ⏎ Paketoijat ⏎%s ⏎ ⏎ Kääntäjät ⏎ afrikaans (af) ⏎%s ⏎ saksa (de) ⏎%s ⏎ brittienglanti (en_GB) ⏎%s ⏎ englanti, Etelä-Afrikka (en_ZA) ⏎%s ⏎ viro (et) ⏎%s ⏎ ranska (fr) ⏎%s ⏎ unkari (hu) ⏎%s ⏎ japani (ja) ⏎ %s ⏎ norja bokmål (nb) ⏎%s ⏎ hollanti (nl) ⏎%s ⏎ portugali, brasilia (pt_BR) ⏎%s ⏎ venäjä (ru) ⏎%s ⏎ ⏎ Dokumentaatio ⏎%s ⏎ ⏎ rakennettu ⏎ Python: http://www.python.org/~~V ⏎ Qt4: http://qt.nokia.com/ ⏎ PyQt4: http://www.riverbankcomputing.co.uk/software/pyqt/intro ⏎ Oxygen kuvakkeet: http://oxygen-icons.org/ ⏎ ⏎ Muut kiitokset ⏎ "Sillä niin on Jumala maailmaa rakastanut, että Hän antoi ⏎ ainokaisen Poikansa, niin että kuka tahansa ⏎ uskoo Häneen ei hukkuisi, vaan perii ⏎ iankaikkisen elämän." - Joh. 3:16 ⏎ ⏎ Ja viimeisenä, mutta ei vähäisimpänä, kaikkein suurin ansio ⏎ Jumala, Isämme, joka lähetti Poikansa kuolemaan ⏎ ristillä, jossa hän vapautti meidät synnistä. Me ⏎ annamme tämän ohjelmiston sinulle maksutta koska ⏎ Hän vapautti meidät maksutta. - - - - Copyright © 2004-2012 %s -Portions copyright © 2004-2012 %s - - - - - 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. - -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 volunteering by using the button below. - - - - - Volunteer OpenLP.AdvancedTab - + UI Settings Käyttöliittymän asetukset - + Number of recent files to display: Kuinka monta viimeisintä tiedostoa näytetään - + Remember active media manager tab on startup Muista aktivoida median hallinnan välilehti käynnistyksessä - + Double-click to send items straight to live - Tuplaklikkaa lähettääksesi otsakkeet suoraan esitykseen + Tuplaklikkaa lähettääksesi otsakkeet live-esitykseen - + Expand new service items on creation Näytä uudet ajolistan otsakkeet avoimina luodessa - + Enable application exit confirmation Varmista sovelluksen sulkeminen ennen poistumista - + Mouse Cursor Hiiren osoitin - + Hide mouse cursor when over display window Piilota hiiren osoitin, kun se on näyttöikkunan päällä - + Default Image Oletuskuva - + Background color: Taustaväri: - + Image file: Kuvatiedosto: - + Open File Avaa tiedosto - + Advanced Edistyneet - + Preview items when clicked in Media Manager Esikatsele otsaketta, kun sitä klikataan median hallinnassa - + Click to select a color. Valitse väri klikkaamalla. - + Browse for an image file to display. Selaa näytettäviä kuvia. - + Revert to the default OpenLP logo. Palauta oletusarvoinen 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. - + 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 @@ -2290,94 +2300,94 @@ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for - + 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. - + 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 - + OpenLP data directory was not found %s @@ -2390,7 +2400,7 @@ Click "Yes" to reset the data directory to the default location. - + Are you sure you want to change the location of the OpenLP data directory to: %s @@ -2399,7 +2409,7 @@ The data directory will be changed when OpenLP is closed. - + WARNING: The location you have selected @@ -2413,39 +2423,39 @@ appears to contain OpenLP data files. Do you wish to replace these files with t OpenLP.ExceptionDialog - + Error Occurred Tapahtui virhe - + 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. Uups. OpenLP päätyi virheeseen, josta ei voi jatkaa. Tekstikentässä on tietoa virheestä, joka saattaa helpottaa ohjelmakehittäjien työtä, joten ole hyvä ja lähetä se sähköpostilla osoitteeseen bugs@openlp.org. Lisää myös kuvaus siitä, mitä olit tekemässä, kun virhe tapahtui. - + Send E-Mail Lähetä sähköposti - + Save to File Tallenna tiedostoon - + Please enter a description of what you were doing to cause this error (Minimum 20 characters) Ole hyvä ja kerro lyhyesti, mitä olit tekemässä, kun virhe tapahtui. (Vähintään 20 kirjainta) - + Attach File Liitä tiedosto - + Description characters to enter : %s Kuvauksessa on merkkejä: %s @@ -2453,24 +2463,24 @@ appears to contain OpenLP data files. Do you wish to replace these files with t OpenLP.ExceptionForm - + Platform: %s Järjestelmä: %s - + Save Crash Report Tallenna virheraportti - + Text files (*.txt *.log *.text) Teksti tiedostot (*.txt *.log *.text) - + **OpenLP Bug Report** Version: %s @@ -2489,7 +2499,7 @@ Version: %s - + *OpenLP Bug Report* Version: %s @@ -2512,17 +2522,17 @@ Version: %s OpenLP.FileRenameForm - + File Rename Tiedoston uudelleennimeäminen - + New File Name: Uusi tiedostonimi: - + File Copy Tiedoston kopiointi @@ -2530,17 +2540,17 @@ Version: %s OpenLP.FirstTimeLanguageForm - + Select Translation Valitse käännös - + Choose the translation you'd like to use in OpenLP. Valitse käännös, jota haluat käyttää OpenLP:ssä - + Translation: Käännös: @@ -2548,199 +2558,199 @@ Version: %s OpenLP.FirstTimeWizard - + Songs Laulut - + First Time Wizard Ensikäynnistyksen avustaja - + Welcome to the First Time Wizard Tervetuloa ensikäynnistyksen avustajaan - + Activate required Plugins Aktivoi vaaditut lisäosat - + Select the Plugins you wish to use. Valitse lisäosat, joita haluat käyttää. - + Bible Raamattu - + Images Kuvat - + Presentations Esitykset - + Media (Audio and Video) Media (audio ja video) - + Allow remote access Salli etäkäyttö - + Monitor Song Usage Tilastoi laulujen käyttöä - + Allow Alerts Salli hälytykset - + Default Settings Oletusasetukset - + Downloading %s... Ladataan %s... - + Download complete. Click the finish button to start OpenLP. Lataus valmis. Paina lopetuspainiketta käynnistääksesi OpenLP:n. - + Enabling selected plugins... Otetaan käyttöön valittuja lisäosia... - + No Internet Connection Ei internetyhteyttä - + Unable to detect an Internet connection. Toimivaa internetyhteyttä ei saatavilla. - + Sample Songs Esimerkkejä lauluista - + Select and download public domain songs. Valitse ja lataa tekijäinoikeusvapaita lauluja. - + Sample Bibles Esimerkkejä Raamatuista - + Select and download free Bibles. Valitse ja lataa ilmaisia Raamattuja. - + Sample Themes Esimerkkiteemat - + Select and download sample themes. Valitse ja lataa esimerkkiteemoja. - + Set up default settings to be used by OpenLP. Määritä oletusasetukset, joita OpenLP käyttää. - + Default output display: Oletusarvoinen näyttölaite: - + Select default theme: Valitse oletusarvoinen teema: - + Starting configuration process... Konfigurointiprosessi alkaa... - + This wizard will help you to configure OpenLP for initial use. Click the next button below to start. Tämä avustaja ohjeistaa sinua OpenLP:n käyttöönotossa. Paina 'Seuraava' aloittaaksesi käyttöönoton. - + Setting Up And Downloading Määritetään asetuksia ja ladataan - + Please wait while OpenLP is set up and your data is downloaded. Ole hyvä ja odota kunnes OpenLP on määrittänyt asetukset ja kaikki tiedostot on ladattu. - + Setting Up Määritetään asetuksia - + Click the finish button to start OpenLP. Paina 'Valmis' painiketta käynnistääksesi OpenLP:n. - + Download complete. Click the finish button to return to OpenLP. Lataus on valmis. Paina 'Valmis' palataksesi OpenLP:hen. - + Click the finish button to return to OpenLP. Paina 'Valmis' palataksesi OpenLP:hen. - + Custom Slides Mukautetut diat - + Finish Valmis - + 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. @@ -2750,37 +2760,37 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can OpenLP.FormattingTagDialog - + Configure Formatting Tags Määritä muotoilu tagit. - + Edit Selection Muokkaa valintaa - + Save Tallenna - + Description Kuvaus - + Tag Tagi - + Start HTML Aloita HTML - + End HTML Lopeta HTML @@ -2788,32 +2798,32 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can OpenLP.FormattingTagForm - + Update Error Päivitysvirhe - + Tag "n" already defined. Tagi "n" on jo määritelty. - + New Tag Uusi tagi - + <HTML here> <HTML tänne> - + </and here> </ja tänne> - + Tag %s already defined. Tagi %s on jo määritelty. @@ -2821,82 +2831,82 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can OpenLP.FormattingTags - + Red Punainen - + Black Musta - + Blue Sininen - + Yellow Keltainen - + Green Vihreä - + Pink Vaaleanpunainen - + Orange Oranssi - + Purple Purppura - + White Valkoinen - + Superscript Yläindeksi - + Subscript Alaindeksi - + Paragraph Kappale - + Bold Lihavointi - + Italics Kursiivi - + Underline Alleviivaus - + Break Katko @@ -2904,124 +2914,124 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can OpenLP.GeneralTab - + General Yleinen - + Monitors Näyttölaitteet - + Select monitor for output display: Valitse näyttölaite ulostuloa varten: - + Display if a single screen - Näytä jos vain yksi näyttölaite + Näytä vain, jos on yksi näyttölaite käytössä - + Application Startup Ohjelman käynnistys - + Show blank screen warning - + Varoita pimennetystä live-esityksestä - + Automatically open the last service - + Avaa automaattisesti viimeisin ajolista - + Show the splash screen - + Näytä ohjelman aloitusruutu - + Application Settings - + Sovelluksen asetukset - + Prompt to save before starting a new service - + Pyydä tallentamaan ennen uuden ajolistan aloittamista. - + Automatically preview next item in service - - - - - sec - + Näytä automaattisesti esikatselu ajolistan seuraavalle tapahtumalle + sec + s + + + CCLI Details - + CCLI tiedot - + SongSelect username: - + SongSelect käyttäjätunnus: - + SongSelect password: - - - - - X - + SongSelect salasana: - Y - + X + X - Height - + Y + Y - Width - - - - - Check for updates to OpenLP - - - - - Unblank display when adding new live item - - - - - Timed slide interval: - + Height + Korkeus - Background Audio - + Width + Leveys - + + Check for updates to OpenLP + Tarkista OpenLP:n päivitykset + + + + Unblank display when adding new live item + Lopeta näytön pimennys, kun dia lisätään live-esitykseen + + + + Timed slide interval: + Ajastetun dian tauko: + + + + Background Audio + Taustamusiikki + + + Start background audio paused - + Aloita taustamusiikki pysäytettynä @@ -3029,12 +3039,12 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can - + Override display position: - + Repeat track list @@ -3062,503 +3072,511 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can OpenLP.LanguageManager - + Language - + Kieli - + Please restart OpenLP to use your new language setting. - + Ole hyvä ja käynnistä OpenLP uudelleen käyttääksesi uusia kieliasetuksia. OpenLP.MainDisplay - + OpenLP Display - + OpenLP Näyttö OpenLP.MainWindow - - - &File - - - &Import - + &File + &Tiedosto - &Export - + &Import + T&uonti - - &View - + + &Export + &Vienti - M&ode - + &View + &Näytä - &Tools - + M&ode + Ti&la + &Tools + &Työkalut + + + &Settings - + &Asetukset - + &Language - - - - - &Help - + &Kieli + &Help + &Ohje + + + Media Manager - + Median hallinta - + Service Manager - + Ajolistan hallinta - + Theme Manager - + Teeman hallinta - + &New - &Uusi + &Uusi - + &Open - + &Avaa - + Open an existing service. - + Avaa olemassaoleva ajolista. - + &Save - &Tallenna + T&allenna - + Save the current service to disk. - + Tallenna nykyinen ajolista levylle. - + Save &As... - + Tallenna &nimellä... - + Save Service As - + Tallenna ajolista nimellä - + Save the current service under a new name. - + Tallenna nykyinen ajolista levylle uudella nimellä. - + E&xit - + &Poistu - + Quit OpenLP - + Lopeta OpenLP - + &Theme - + T&eema - + &Configure OpenLP... - + Kon&figurioi OpenLP... - + &Media Manager - + &Median hallinta - + Toggle Media Manager - + Näytä / piilota median hallinta - + Toggle the visibility of the media manager. - + Näytä tai piilota median hallinta näytöltä. - + &Theme Manager - + &Teeman hallinta - + Toggle Theme Manager - + Näytä / piilota Teeman hallinta - + Toggle the visibility of the theme manager. - + Näytä tai piilota teeman hallinta näytöltä. - + &Service Manager - + &Ajolistan hallinta - + Toggle Service Manager - + Näytä / piilota ajolistan hallinta - + Toggle the visibility of the service manager. - + Näytä tai piilota ajolistan hallinta näytöltä. - + &Preview Panel - + &Esikatselu - + Toggle Preview Panel - + Näytä / piilota esikatselu - + Toggle the visibility of the preview panel. - + Näytä tai piilota esikatselu näytöltä. - + &Live Panel - + &Live-esitys - + Toggle Live Panel - + Näytä / piilota Live-esitys - + Toggle the visibility of the live panel. - + Näytä tai piilota live-esitys. - + &Plugin List &Luettelo lisäosista - + List the Plugins Lisäosien luettelo - + &User Guide - - - - - &About - + &Käyttöohje + &About + &Ohjelmasta + + + More information about OpenLP - + Lisätietoa OpenLP:sta - + &Online Help - + O&nline ohje - + &Web Site - + &Nettisivut - + Use the system language, if available. - + Käytä järjestelmän kieltä, jos se on saatavilla. - + Set the interface language to %s - + Aseta käyttöliittymän kieleksi %s - + Add &Tool... - + Lisää &Työkalu... - + Add an application to the list of tools. - + Lisää sovellus työkalujen luetteloon. - + &Default - + &Oletus - + Set the view mode back to the default. - - - - - &Setup - + Aseta näyttötili takaisin oletusarvoksi. - Set the view mode to Setup. - + &Setup + &Asetukset - - &Live - + + Set the view mode to Setup. + Aseta näyttötila asetuksiin. - Set the view mode to Live. - + &Live + &Live-esitys - + + Set the view mode to Live. + Aseta näyttötilaksi live-esitys. + + + 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:n versio %s on nyt autotmaattisesti ladattavissa (jos käytät tällä hetkellä versiota %s). + +Voit ladata viimeisimmän version osoittesta http://openlp.org/. - + OpenLP Version Updated - + OpenLP:n version on päivittynyt - + OpenLP Main Display Blanked - + OpenLP:n live-esitys pimennettynä - + The Main Display has been blanked out - + Pääasiallinen näyttö on pimennetty - + Default Theme: %s - + Oletusteema: %s - + English Please add the name of your language here Finish - + Configure &Shortcuts... - + Määrittele &Näppäinoikotiet... - + Close OpenLP - + Sulje OpenLP - + Are you sure you want to close OpenLP? - + Oletko varma, että haluat sulkea OpenLP:n? - + Open &Data Folder... - + Avaa &Data-kansio... - + Open the folder where songs, bibles and other data resides. - + Avaa kansio, jossa laulut, Raamatut ja muut tiedot sijaitsevat. - + &Autodetect - + &Tunnista automaattisesti - + Update Theme Images - + Päivitä teemojen kuvat - + Update the preview images for all themes. - + Päivitä kaikkien teemojen esikatselukuvat. - + Print the current service. - + Tulosta nykyinen ajolista. - + &Recent Files - + &Viimeisimmät tiedostot - + L&ock Panels - + Lukitse paneelit - + Prevent the panels being moved. - + Estä paneelien siirtäminen. - + Re-run First Time Wizard - + Suorita uudelleen käyttöönoton avustaja. - + Re-run the First Time Wizard, importing songs, Bibles and themes. - + Suorita uudelleen käyttöönoton avustaja, tuo lauluja, Raamattuja ja teemoja järjestelmään. - + Re-run First Time Wizard? - + Suoritetaanko uudelleen käyttöönoton avustaja? - + 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. - + Oletko varma, että tahdot suorittaa uudelleen käyttöönoton avustajan? + +Uudelleensuorittaminen saataa muuttaa myöhemmin tekemiäsi muutoksia nykyiseen OpenLP:n asetuksiin ja mahdollisesti lisätä lauluja olemassoleviin luetteloihin ja muuttaa oletusteemaa. - + Clear List Clear List of recent files - + Tyhjennä luettelo - + Clear the list of recent files. - + Tyhjentää viimeksi käytettyjen tiedostojen luettelon. - + Configure &Formatting Tags... - + Muokkaa &Muotoilu tageja... - + Export OpenLP settings to a specified *.config file - + Tuo OpenLP:n asetukset määriteltyyn *.config -tiedodstoon. - + Settings - + Asetukset - + Import OpenLP settings from a specified *.config file previously exported on this or another machine - + Tuo OpenLP:n asetuksen määritellystä *.config -tiedostosta, joka on aiemmin viety tästä tai jostain toisesta järjestelmästä. - + Import settings? - + Tuodaanko asetukset? - + Are you sure you want to import settings? Importing settings will make permanent changes to your current OpenLP configuration. Importing incorrect settings may cause erratic behaviour or OpenLP to terminate abnormally. - + Oletko varma, että tahdot tuota asetukset? + +Asetusten tuominen tekee pysyviä muutoksia nykyiseen OpenLP-konfiguraatioon. + +Epäkelpojen asetusten tuominen voi aiheuttaa virheellistä toimintaa tai OpenLP saattaa sulkeutua epänormaalisti. - + Open File - Avaa tiedosto + Avaa tiedosto - + OpenLP Export Settings Files (*.conf) - + OpenLP:n viedyt asetustiedostot (*.conf) - + Import settings - + Tuo asetukset - + OpenLP will now close. Imported settings will be applied the next time you start OpenLP. - + OpenLP sulkeutuu nyt. Tuodut asetukset otetaan käyttöön seuraavan käynnistyksen yhteydessä. - + Export Settings File - + Vie asetustiedosto - + OpenLP Export Settings File (*.conf) - + OpenLP:n viedyt asetustiedostot (*.conf) - + New Data Directory Error - + The file you selected does appear to be a valid OpenLP settings file. Section [%s] is not valid @@ -3567,12 +3585,12 @@ Processing has terminated and no changed have been made. - + Copying OpenLP data to new data directory location - %s - Please wait for copy to finish - + OpenLP Data directory copy failed %s @@ -3582,108 +3600,113 @@ Processing has terminated and no changed have been made. OpenLP.Manager - + Database Error - + Tietokantavirhe - + 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 - + Tietokanta, jota yritetään ladata, on luotu uudemmalla OpenLP:n versiolla. Tietokannan versio on %d, kun OpenLP edellyttää version olevan %d. Tietokantaa ei voi ladta. + +Tietokanta: %s. - + OpenLP cannot load your database. Database: %s - + OpenLP ei voi ladata tietokantaa. + +Tietokanta: %s. OpenLP.MediaManagerItem - + No Items Selected - + Ajolistan kohtaa ei ole valittu - + &Add to selected Service Item - + &Lisää valittuun ajolistan kohtaan. - + You must select one or more items to preview. - + Sinun pitää valita yksi tai useampi kohta esikatseluun. - + You must select one or more items to send live. - + Sinun pitää valita yksi tai useampi lähetettäväksi live-esitykseen. - + You must select one or more items. - + Sinun pitää valita yksi tai useampi kohta. - + You must select an existing service item to add to. - + SInun täytyy valita olemassaoleva ajolista, jonka lisätä. - + Invalid Service Item - + Vihreellinen ajolistan kohta - + You must select a %s service item. - + Sinun täytyy valita %s ajolistan kohta. - + You must select one or more items to add. - + Sinun täytyy valita yksi tai useampi koha lisättäväksi. - + No Search Results - + Ei hakutuloksia - + Invalid File Type - + Viheellinen tiedostotyyppi - + Invalid File %s. Suffix not supported - + Virheellinen tiedosto: %s. +Tiedostopäätettä ei tueta. &Clone - + &Monista - + Duplicate files were found on import and were ignored. - + Duplikaatteeja tiedostoja löytyi tuotaessa ja ne ohitettiin. OpenLP.OpenLyricsImportError - + <lyrics> tag is missing. - + <verse> tag is missing. @@ -3691,712 +3714,712 @@ Suffix not supported OpenLP.PluginForm - + Plugin List Luettelo lisäosista - + Plugin Details Lisäosan tiedot - + Status: - + Tila: - + Active - + Aktiivinen - + Inactive - + Toimeton - + %s (Inactive) - + %s (Toimeton) - + %s (Active) - + %s (Aktiivinen) - + %s (Disabled) - + %s (Estetty) OpenLP.PrintServiceDialog - + Fit Page - + Sovita sivulle - + Fit Width - + Sovita leveyteen OpenLP.PrintServiceForm - + Options - + Asetukset - + Copy - + Kopioi - + Copy as HTML - + Kopioi HTML:nä - + Zoom In - + Lähennä - + Zoom Out - + Loitonna - + Zoom Original - + Alkuperäiseen kokoon - + Other Options - + Muut asetukset - + Include slide text if available - + Ota mukaan dian teksti, jos saatavilla - + Include service item notes - + Ota mukaan muistiinpanot - + Include play length of media items - + Ota mukaan toistettavan median pituus - + Add page break before each text item - + Lisää sivunvaihto ennen jokaista tekstiä - + Service Sheet - + Ajolistan taulukko - + Print - - - - - Title: - + Tulosta + Title: + Otsikko: + + + Custom Footer Text: - + Mukautettu alatunniste: OpenLP.ScreenList - + Screen - + Näyttölaite - + primary - + ensisijainen OpenLP.ServiceItem - + <strong>Start</strong>: %s - + <strong>Alku</strong>: %s - + <strong>Length</strong>: %s - + <strong>Pituus</strong>: %s OpenLP.ServiceItemEditForm - + Reorder Service Item - + Järjestä ajolista uudelleen OpenLP.ServiceManager - + Move to &top - + Siirrä &ylös - + Move item to the top of the service. - + Siirrä rivi ajolistan ylimmäksi. - + Move &up - + Siirrä &ylös - + Move item up one position in the service. - + Siirrä rivi yhden ylemmäksi ajolistalla. - + Move &down - + Siirrä &alas - + Move item down one position in the service. - + Siirrä rivi yhden alemmaksi ajolistalla. - + Move to &bottom - + Siirrä &loppuun - + Move item to the end of the service. - + Siirrä rivi ajolistan viimeiseksi. - + &Delete From Service - + &Poista ajolistalta - + Delete the selected item from the service. - + Poista valittu rivi ajolistalta. - + &Add New Item - + &Lisää uusi rivi - + &Add to Selected Item - + Lisää valitun rivin - + &Edit Item - + &Muokkaa riviä - + &Reorder Item - + Järjestä &uudelleen - + &Notes - + Muistiin&panot - + &Change Item Theme - + &Muuta rivin teemaa - + OpenLP Service Files (*.osz) - + OpenLP ajolistat (*.osz) - + File is not a valid service. The content encoding is not UTF-8. - + Tiedosto ei ole kelvollinen ajolista. +Sisältö ei ole UTF-8 muodossa. - + File is not a valid service. - + Tiedosto ei ole kelvollinen ajolista. - + Missing Display Handler - + Puuttuva näytön käsittelijä - + Your item cannot be displayed as there is no handler to display it - + Näyttöelementtiä ei voi näyttää, koska sen näyttämiseen ei ole määritelty näyttöä. - + Your item cannot be displayed as the plugin required to display it is missing or inactive - + Näyttöelementtiä ei voi näyttää, koska sen vaatimaa lisäosaa ei ole asennettu tai aktivoitu. - + &Expand all - + &Laajenna kaikki - + Expand all the service items. - + Avaa kaikki ajolistan rivit avoimiksi. - + &Collapse all - + &Supista kaikki - + Collapse all the service items. - + Supista kaikki ajolistan rivit kokoon. - + Open File - Avaa tiedosto + Avaa tiedosto - + Moves the selection down the window. - + Siirtää valinnan alas ikkunassa. - + Move up - + Siirrä ylös - + Moves the selection up the window. - + Siirtää valinnan ylös ikkunassa. - + Go Live - + Aloita live-esitys - + Send the selected item to Live. - + Lähetä valinnat live-esitykseen. - + &Start Time - + &Alku aika - + Show &Preview - + Näytä &Esikatselu - + Modified Service - + Muokattu ajolista - + The current service has been modified. Would you like to save this service? - + Nykyistä ajolistaa on muokattu. Tahdotko tallentaa tämän ajolistan. - + Custom Service Notes: - + Mukautetun ajolistan muistiinpanot: - + Notes: - + Muistiinpanot: - + Playing time: - + Toistoaika: - + Untitled Service - + Nimetön ajolista - + File could not be opened because it is corrupt. - + Tiedostoa ei voida avata, koska sen sisältö on turmeltunut. - + Empty File - + Tyhjä tiedosto - + This service file does not contain any data. - + Tässä ajolistassa ei ole lainkaan sisältöä. - + Corrupt File - + Turmeltunut tiedosto - + Load an existing service. - + Lataa olemessaoleva ajolista. - + Save this service. - + Tallenna tämä ajolista. - + Select a theme for the service. - + Valitse teema ajolistalle. - + This file is either corrupt or it is not an OpenLP 2.0 service file. - - - - - Service File Missing - - - - - Slide theme - + Tämä tiedosto on joko vahingoittunut tai se ei ole OpenLP 2.0 ajolista. - Notes - + Slide theme + Dian teema - + + Notes + Muistiinpanot + + + Edit - + Service copy only - + Error Saving File - + There was an error saving your file. - - File missing from service + + Service File(s) Missing + + + + + The following file(s) in the service are missing: +%s - %s - -Continue saving? +These files will be removed if you continue to save. OpenLP.ServiceNoteForm - + Service Item Notes - + Ajolistan rivin muistiinpanot OpenLP.SettingsForm - + Configure OpenLP - + Konfiguroi OpenLP OpenLP.ShortcutListDialog - + Action - + Toiminta - + Shortcut - + Oikotie - + Duplicate Shortcut - + Monista Oikotie - + The shortcut "%s" is already assigned to another action, please use a different shortcut. - + Oikotie "%s" on varattu jo toiseen käyttöön, ole hyvä ja valitse jokin toinen oikotie. - + Alternate - + Vaihtoehtoinen - + Select an action and click one of the buttons below to start capturing a new primary or alternate shortcut, respectively. - + Valitse toiminta ja paina jotain alla olevista painikkeista nauhoittaaksesi uuden pääasiallisen tai vaihtoehtoisen oikotien. - + Default - + Oletusarvo - + Custom - + Mukautettu - + Capture shortcut. - + Nauhoita oikotie. - + Restore the default shortcut of this action. - + Palauta oletusarvoinen oikotie tälle toiminnolle. - + Restore Default Shortcuts - + Palauta oletusarvoiset oikotiet - + Do you want to restore all shortcuts to their defaults? - + Oletko varma, että haluat palauttaa kaikki oikotiet oletusarvoiksi. - + Configure Shortcuts - + Muokkaa oikoteitä OpenLP.SlideController - + Hide - + Piilota - + Go To - + Siirry - + Blank Screen - + Pimennä näyttölaite - + Blank to Theme - + Pimennä teemaan - + Show Desktop - + Näytä työpöytä - + Previous Service - + Edellinen ajolista - + Next Service - + Seuraava ajolista - + Escape Item - + Move to previous. - + Move to next. - + Play Slides - + Delay between slides in seconds. - + Move to live. - + Siirry live-esitykseen. - + Add to Service. - + Edit and reload song preview. - + Start playing media. - + Pause audio. - + Pause playing media. - + Stop playing media. - + Video position. - + 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 - + Taustamusiikki - + Go to next audio track. - + Tracks @@ -4404,284 +4427,284 @@ Continue saving? OpenLP.SpellTextEdit - + Spelling Suggestions - + Formatting Tags - + Muotoilutagit - + Language: - Kieli: + Kieli: OpenLP.StartTimeForm - - - Hours: - - - Minutes: - + Hours: + Tunnit: - Seconds: - - - - - Item Start and Finish Time - + Minutes: + Minuutit: - Start - + Seconds: + Sekunnit: + + + + Item Start and Finish Time + Rivin alku- ja loppuaika - Finish - Valmis + Start + Alku + Finish + Loppu + + + Length - + Pituus - + Time Validation Error - + Aikamääreessä on virhe - + Finish time is set after the end of the media item - + Loppuaika on asetettu median kokonaispituuden yli. - + Start time is after the finish time of the media item - + Alkuaika on asetettu median kokonaispituuden yli. - + Theme Layout - + Teeman asettelu - + The blue box shows the main area. - + Sininen laatikko osoittaa varsinaisen pääalueen. - + The red box shows the footer. - + Punainen laatikko osoittaa alatunnisteen. OpenLP.ThemeManager - + Create a new theme. - + Luo uusi teema. - + Edit Theme - + Muokkaa teemaa - + Edit a theme. - + Muokkaa teemaa - + Delete Theme - + Poista teema - + Delete a theme. - + Poista teema - + Import Theme - + Tuo teema - + Import a theme. - + Tuo teema - + Export Theme - + Vie teema - + Export a theme. - + Vie teema - + &Edit Theme - + &Muokkaa teemaa - + &Delete Theme - + &Poista teema - + Set As &Global Default - + Aseta &globaali oletusarvo - + %s (default) - + %s (oletusarvo) - + You must select a theme to edit. - + Sinun pitää valita muokattava teema. - + You are unable to delete the default theme. - + Theme %s is used in the %s plugin. - + You have not selected a theme. - + Save Theme - (%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? - + You must select a theme to delete. - + Delete Confirmation - + Delete %s theme? - + Validation Error - + A theme with this name already exists. - + OpenLP Themes (*.theme *.otz) - + Copy of %s Copy of <theme name> - + Theme Already Exists - + Theme %s already exists. Do you want to replace it? @@ -4689,312 +4712,312 @@ Continue saving? 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 - + Määrittele kirjasin ja tekstin ominaisuudet näytettävälle tekstille - + Font: - + Size: - + Line Spacing: - + &Outline: - + &Shadow: - + Bold Lihavointi - + Italic - + Footer Area Font Details - + Define the font and display characteristics for the Footer text - + Määrittele kirjasin ja tekstin ominaisuudet dian alatunnisteelle - + Text Formatting Details - + Allows additional display formatting information to be defined - + Sallii ylimääräisten näytön muotoilutietojen määrittelemisen - + Horizontal Align: - + Left - + Right - + Center - + Output Area Locations - + Allows you to change and move the main and footer areas. - + &Main Area - + &Use default location - + X position: - + px - + Y position: - + Width: - + Height: - + Use default location - + Theme name: - + Edit Theme - %s - + This wizard will help you to create and edit your themes. Click the next button below to start the process by setting up your background. - + Transitions: - + &Footer Area - + Starting color: - + Ending color: - + Background color: Taustaväri: - + Justify - + Layout Preview - + Transparent - + Preview and Save - + Preview the theme and save it. - + (approximately %d lines per slide) - + Background Image Empty - + You have not selected a background image. Please select one before continuing. - + Select Image - + Theme Name Missing - + There is no name for this theme. Please enter one. - + Theme Name Invalid - + Invalid theme name. Please enter one. @@ -5002,47 +5025,47 @@ Continue saving? 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 @@ -5050,315 +5073,315 @@ Continue saving? OpenLP.Ui - + Error - + About - + &Add - + Advanced Edistyneet - + All Files - + Bottom - + Browse... - + Cancel - + CCLI number: - + Create a new service. - + &Delete - + &Edit - + Empty Field - + Export - + pt Abbreviated font pointsize unit - + Image Kuva - + Import - + Live - + Live-esitys - + 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 - + Ajolistan kohtaa ei ole valittu - + openlp.org 1.x - + 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 - + 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"... - + 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. - + Open %s File - + %p% - + Ready. - + Starting import... - + You need to specify at least one %s file to import from. A file type e.g. OpenSong @@ -5369,278 +5392,278 @@ Continue saving? - + 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: - + Oletusarvo + Display style: + Näyttötyyli: + + + 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? - + Settings - + Asetukset - + Tools - + Unsupported File Tiedostotyyppiä ei tueta. - + Verse Per Slide - + Verse Per Line - + View - + Title and/or verses not found - + XML syntax error - + 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. - + Puolita dia kahteen osaan vain, jos se ei mahdu näytölle yhtenä diana. - + 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 - + 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 - + Importing Songs @@ -5648,25 +5671,25 @@ Continue saving? 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 @@ -5675,50 +5698,50 @@ Continue saving? 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 Esitys - + Presentations name plural Esitykset - + Presentations container title Esitykset - + Load a new presentation. - + Delete the selected presentation. - + Preview the selected presentation. - + Send the selected presentation live. - + Add the selected presentation to the service. @@ -5726,52 +5749,52 @@ Continue saving? PresentationPlugin.MediaItem - + Select Presentation(s) - + Automatic Automaattinen - + Present using: - + File Exists - + A presentation with that filename already exists. - + This type of presentation is not supported. - + Presentations (%s) - + Missing Presentation - + The presentation %s is incomplete, please reload. - + The presentation %s no longer exists. @@ -5779,17 +5802,17 @@ Continue saving? PresentationPlugin.PresentationTab - + Available Controllers - + %s (unavailable) %s (ei ole saatavilla) - + Allow presentation application to be overridden @@ -5797,24 +5820,24 @@ Continue saving? 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 - + Remotes name plural - + Remote container title @@ -5823,150 +5846,160 @@ Continue saving? RemotePlugin.Mobile - + OpenLP 2.0 Remote - + OpenLP 2.0 Stage View - + Service Manager - + Ajolistan hallinta - + Slide Controller - + Alerts Hälytykset - + Search - + Refresh - + Blank - + Pimennä - + Show - + Prev - + Next - + Text - + Show Alert Näytä hälytys - + Go Live - + Aloita live-esitys - + No Results - + Options - + Asetukset - + Add to Service - + Home - + Theme - + Desktop - + Add &amp; Go to Service + + + Service + + + + + Slides + + RemotePlugin.RemoteTab - + Serve on IP address: - + Port number: - + Server Settings - + Remote URL: - + Stage view URL: - + Display stage time in 12h format - + Näytä aika 12-tunnin muodossa - + Android App - + Scan the QR code or click <a href="https://play.google.com/store/apps/details?id=org.openlp.android">download</a> to install the Android app from Google Play. @@ -5974,85 +6007,85 @@ Continue saving? 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. - + SongUsage name singular - + SongUsage name plural - + SongUsage container title - + Song Usage - + Song usage tracking is active. - + Song usage tracking is inactive. - + display - + näyttö - + printed @@ -6060,32 +6093,32 @@ Continue saving? 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. @@ -6093,54 +6126,54 @@ Continue saving? SongUsagePlugin.SongUsageDetailForm - + Song Usage Extraction - + Select Date Range - + to - + Report Location - + Output File Location - + usage_detail_%s_%s.txt - + Report Creation - + Report %s 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. @@ -6148,178 +6181,178 @@ 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>Laulut -lisäosa</strong><br />Laulut -lisäosalla näytetään ja hallinnoidaan laulujen sanoja. - + &Re-index Songs - + Re-index the songs database to improve searching and ordering. - + Reindexing songs... - + Arabic (CP-1256) - + Baltic (CP-1257) - + Central European (CP-1250) - + Cyrillic (CP-1251) - + Greek (CP-1253) - + Hebrew (CP-1255) - + Japanese (CP-932) - + Korean (CP-949) - + Simplified Chinese (CP-936) - + Thai (CP-874) - + Traditional Chinese (CP-950) - + Turkish (CP-1254) - + Vietnam (CP-1258) - + Western European (CP-1252) - + Character Encoding - + 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 - + Songs name plural Laulut - + Songs container title Laulut - + 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. - + Reindexing songs @@ -6327,37 +6360,37 @@ The encoding is responsible for the correct character representation. SongsPlugin.AuthorsForm - + Author Maintenance - + Display name: - + Näytön nimi: - + 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? @@ -6365,7 +6398,7 @@ The encoding is responsible for the correct character representation. SongsPlugin.CCLIFileImport - + The file does not have a valid extension. @@ -6373,12 +6406,12 @@ The encoding is responsible for the correct character representation. SongsPlugin.EasyWorshipSongImport - + Administered by %s - + [above are Song Tags with notes imported from EasyWorship] @@ -6388,12 +6421,12 @@ The encoding is responsible for the correct character representation. SongsPlugin.EditBibleForm - + Meta Data - + Custom Book Names @@ -6401,202 +6434,202 @@ The encoding is responsible for the correct character representation. SongsPlugin.EditSongForm - + Song Editor - + &Title: &Otsikko - + Alt&ernate title: - + &Lyrics: - + &Verse order: - + Ed&it All Mu&okkaa kaikkia - + Title && Lyrics - + &Add to Song - + &Remove - + &Manage Authors, Topics, Song Books - + A&dd to Song - + R&emove - + Book: Kirja: - + 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. - + Add Book - + This song book does not exist, do you want to add it? - + You need to have an author for this song. - + Linked Audio - + Add &File(s) - + Add &Media - + Remove &All - + Open File(s) - + <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. @@ -6604,22 +6637,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. @@ -6627,82 +6660,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. @@ -6710,172 +6743,172 @@ 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.org v1.x Databases - + Words Of Worship Song Files - + Songs Of Fellowship Song Files - + SongBeamer Files - + SongShow Plus Song Files - + Foilpresenter Song Files - + Copy - + Kopioi - + Save to File Tallenna tiedostoon - + The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. - + The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. - + OpenLyrics or OpenLP 2.0 Exported Song - + OpenLyrics Files - + CCLI SongSelect Files - + CCLI SongSelect tiedostot - + 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 - + This importer has been disabled. - + MediaShout Database - + The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. - + SongPro Text Files - + SongPro (Export File) - + In SongPro, export your songs using the File -> Export menu @@ -6883,12 +6916,12 @@ The encoding is responsible for the correct character representation. 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. @@ -6906,7 +6939,7 @@ The encoding is responsible for the correct character representation. - + CCLI License: @@ -6916,7 +6949,7 @@ The encoding is responsible for the correct character representation. - + Are you sure you want to delete the %n selected song(s)? @@ -6929,7 +6962,7 @@ The encoding is responsible for the correct character representation. - + copy For song cloning @@ -6963,7 +6996,7 @@ The encoding is responsible for the correct character representation. SongsPlugin.MediaShoutImport - + Unable to open the MediaShout database. @@ -6971,7 +7004,7 @@ The encoding is responsible for the correct character representation. SongsPlugin.OpenLP1SongImport - + Not a valid openlp.org 1.x song database. @@ -6979,7 +7012,7 @@ The encoding is responsible for the correct character representation. SongsPlugin.OpenLPSongImport - + Not a valid OpenLP 2.0 song database. @@ -6987,7 +7020,7 @@ The encoding is responsible for the correct character representation. SongsPlugin.OpenLyricsExport - + Exporting "%s"... @@ -6995,32 +7028,32 @@ The encoding is responsible for the correct character representation. SongsPlugin.PowerSongImport - + No songs to import. - + Verses not found. Missing "PART" header. - + No %s files found. - + Invalid %s file. Unexpected byte value. - + Invalid %s file. Missing "TITLE" header. - + Invalid %s file. Missing "COPYRIGHTLINE" header. @@ -7028,22 +7061,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. @@ -7051,12 +7084,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. @@ -7064,27 +7097,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 - + Unable to open file - + File not found @@ -7092,107 +7125,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? - + 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? @@ -7200,27 +7233,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 @@ -7228,17 +7261,17 @@ The encoding is responsible for the correct character representation. SongsPlugin.TopicsForm - + Topic Maintenance - + Topic name: - + You need to type in a topic name. @@ -7246,37 +7279,37 @@ The encoding is responsible for the correct character representation. SongsPlugin.VerseType - + Verse - + Chorus - + Bridge - + Pre-Chorus - + Intro - + Ending - + Other @@ -7284,27 +7317,27 @@ The encoding is responsible for the correct character representation. SongsPlugin.ZionWorxImport - + Error reading CSV file. - + File not valid ZionWorx CSV format. - + Line %d: %s - + Decoding error: %s - + Record %d diff --git a/resources/i18n/fr.ts b/resources/i18n/fr.ts index a4b32bf09..8cd003820 100644 --- a/resources/i18n/fr.ts +++ b/resources/i18n/fr.ts @@ -3,35 +3,35 @@ AlertsPlugin - + &Alert &Alerte - + Show an alert message. Affiche un message d'alerte. - + Alert name singular Alerte - + Alerts name plural Alertes - + Alerts container title Alertes - + <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of nursery alerts on the display screen. <strong>Module d'alerte</strong><br />Le module d'alerte permet d'envoyer des messages d'alertes de la pouponnière sur l'écran du direct. @@ -39,69 +39,69 @@ AlertsPlugin.AlertForm - + Alert Message Message d'alerte - + Alert &text: &Texte d'Alerte : - + &New &Nouveau - + &Save &Enregistre - + Displ&ay A&ffiche - + Display && Cl&ose &Affiche && Ferme - + New Alert Nouvelle alerte - + You haven't specified any text for your alert. Please type in some text before clicking New. Vous n'avez pas spécifié de texte pour votre alerte. Veuillez entrer votre message puis cliquer sur Nouveau. - + &Parameter: &Paramètre : - + No Parameter Found Aucun paramètre n'a été trouvé - + You have not entered a parameter to be replaced. Do you want to continue anyway? Vous n'avez entré aucun paramètre à remplacer. Voulez-vous tout de même continuer ? - + No Placeholder Found Aucun espace réservé trouvé - + The alert text does not contain '<>'. Do you want to continue anyway? Le texte d'alerte ne contient pas '<>'. @@ -119,32 +119,32 @@ Voulez-vous tout de même continuer ? AlertsPlugin.AlertsTab - + Font Police - + Font name: Nom de la police : - + Font color: Couleur de la police : - + Background color: Couleur de fond : - + Font size: Taille de la police : - + Alert timeout: Temps d'alerte : @@ -152,510 +152,510 @@ Voulez-vous tout de même continuer ? BiblesPlugin - + &Bible &Bible - + Bible name singular Bible - + Bibles name plural Bibles - + Bibles container title Bibles - + No Book Found Aucun livre trouvé - + No matching book could be found in this Bible. Check that you have spelled the name of the book correctly. Aucun livre correspondant n'a été trouvé dans cette Bible. Vérifiez que vous avez correctement écrit le nom du livre. - + Import a Bible. Importe une Bible. - + Add a new Bible. Ajoute une nouvelle Bible. - + Edit the selected Bible. Édite la bible sélectionnée. - + Delete the selected Bible. Supprime la Bible sélectionnée. - + Preview the selected Bible. Prévisualise la Bible sélectionnée. - + Send the selected Bible live. Envoie la Bible sélectionnée au direct. - + Add the selected Bible to the service. Ajoute la Bible sélectionnée au service. - + <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display Bible verses from different sources during the service. <strong>Module Bible</strong><br />Le Module Bible permet d'afficher des versets bibliques de différentes sources pendant le service. - + &Upgrade older Bibles Mettre à &jour les anciennes Bibles - + Upgrade the Bible databases to the latest format. Mettre à jour les bases de données de Bible au nouveau format. - + Genesis Genèse - + Exodus Exode - + Leviticus Lévitique - + Numbers Nombres - + Deuteronomy Deutéronome - + Joshua Josué - + Judges Juges - + Ruth Ruth - + 1 Samuel 1 Samuel - + 2 Samuel 2 Samuel - + 1 Kings 1 Rois - + 2 Kings 2 Rois - + 1 Chronicles 1 Chroniques - + 2 Chronicles 2 Chroniques - + Ezra Esdras - + Nehemiah Néhémie - + Esther Esther - + Job Job - + Psalms Psaumes - + Proverbs Proverbes - + Ecclesiastes Ecclésiaste - + Song of Solomon Cantique - + Isaiah Esaïe - + Jeremiah Jérémie - + Lamentations Lamentations - + Ezekiel Ezéchiel - + Daniel Daniel - + Hosea Osée - + Joel Joël - + Amos Amos - + Obadiah Abdias - + Jonah Jonas - + Micah Michée - + Nahum Nahum - + Habakkuk Habacuc - + Zephaniah Sophonie - + Haggai Aggée - + Zechariah Zacharie - + Malachi Malachie - + Matthew Matthieu - + Mark Marc - + Luke Luc - + John Jean - + Acts Actes - + Romans Romains - + 1 Corinthians 1 Corinthiens - + 2 Corinthians 2 Corinthiens - + Galatians Galates - + Ephesians Ephésiens - + Philippians Philippiens - + Colossians Colossiens - + 1 Thessalonians 1 Thessaloniciens - + 2 Thessalonians 2 Thessaloniciens - + 1 Timothy 1 Timothée - + 2 Timothy 2 Timothée - + Titus Tite - + Philemon Philémon - + Hebrews Hébreux - + James Jacques - + 1 Peter 1 Pierre - + 2 Peter 2 Pierre - + 1 John 1 Jean - + 2 John 2 Jean - + 3 John 3 Jean - + Jude Jude - + Revelation Apocalypse - + 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. :|v|V|verset|versets;;-|à;;,|et;;fin @@ -664,32 +664,32 @@ Voulez-vous tout de même continuer ? BiblesPlugin.BibleEditForm - + You need to specify a version name for your Bible. Vous devez spécifier le nom de la version de votre Bible. - + You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. Vous devez définir un copyright pour votre Bible. Les Bibles dans le Domaine Publique doivent être indiquées comme telle. - + Bible Exists Bible existante - + This Bible already exists. Please import a different Bible or first delete the existing one. Cette Bible existe déjà. Veuillez importer une autre Bible ou supprimer la Bible existante. - + You need to specify a book name for "%s". Vous devez spécifier un nom de livre pour "%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. @@ -697,12 +697,12 @@ be followed by one or more non-numeric characters. Les nombres peuvent être utilisés uniquement au début et doivent être suivis par un ou plusieurs caractères non numériques. - + Duplicate Book Name Dupliquer le nom du livre - + The Book Name "%s" has been entered more than once. Le nom du livre "%s" a été entré plus d'une fois. @@ -710,39 +710,39 @@ Les nombres peuvent être utilisés uniquement au début et doivent être suivis BiblesPlugin.BibleManager - + Scripture Reference Error Écriture de référence erronée - + Web Bible cannot be used Les Bible Web ne peut être utilisée - + Text Search is not available with Web Bibles. La recherche textuelle n'est pas disponible avec les 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. Vous n'avez pas spécifié de mot clé de recherche. Vous pouvez séparer vos mots clés par un espace afin de tous les rechercher ou les séparer par une virgule afin de rechercher l'un d'entre eux. - + There are no Bibles currently installed. Please use the Import Wizard to install one or more Bibles. Il n'y a pas de Bibles actuellement installée. Veuillez utiliser l'assistant d'importation pour installer une ou plusieurs Bibles. - + No Bibles Available Aucune Bible disponible - + 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 @@ -765,79 +765,79 @@ Livre Chapitre%(verse)sVerset%(range)sChapitre%(verse)sVerset BiblesPlugin.BiblesTab - + Verse Display Affichage de versets - + Only show new chapter numbers Affiche uniquement les nouveaux numéros de chapitre - + Bible theme: Thème : - + No Brackets Pas de parenthèses - + ( And ) ( et ) - + { And } { et } - + [ And ] [ et ] - + Note: Changes do not affect verses already in the service. Remarque : Les modifications ne s'appliquent pas aux versets déjà dans le service. - + Display second Bible verses Affiche les versets de la seconde Bible - + Custom Scripture References Références bibliques personnalisées - + Verse Separator: Séparateur de verset : - + Range Separator: Séparateur d'intervalle : - + List Separator: Séparateur de liste : - + End Mark: Marque de fin : - + 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. @@ -846,7 +846,7 @@ Ils doivent être séparés par la barre verticale "|".⏎ Veuillez supprimer cette ligne pour utiliser la valeur par défaut. - + 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. @@ -855,7 +855,7 @@ Ils doivent être séparés par la barre verticale "|".⏎ Veuillez supprimer cette ligne pour utiliser la valeur par défaut. - + 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. @@ -864,7 +864,7 @@ Ils doivent être séparés par la barre verticale "|".⏎ Veuillez supprimer cette ligne pour utiliser la valeur par défaut. - + 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. @@ -873,29 +873,29 @@ Ils doivent être séparés par la barre verticale "|".⏎ Veuillez supprimer cette ligne pour utiliser la valeur par défaut. - + English Anglais - + Default Bible Language Langue par défaut de la bible - + Book name language in search field, search results and on display: Langue du livre dans le champ de recherche, résultats de recherche et à l'affichage : - + Bible Language Langue de la bible - + Application Language Langue de l'application @@ -903,42 +903,42 @@ résultats de recherche et à l'affichage : BiblesPlugin.BookNameDialog - + Select Book Name Sélectionne le nom du livre - + Current name: Nom courant : - + Corresponding name: Nom correspondant : - + Show Books From Affiche le formulaire des livres - + Old Testament Ancien testament - + New Testament Nouveau testament - + Apocrypha Apocryphes - + The following book name cannot be matched up internally. Please select the corresponding name from the list. Le nom du livre suivant ne correspond pas. Veuillez sélectionner le bon nom dans la liste. @@ -946,7 +946,7 @@ résultats de recherche et à l'affichage : BiblesPlugin.BookNameForm - + You need to select a book. Vous devez sélectionner un livre. @@ -954,18 +954,18 @@ résultats de recherche et à l'affichage : BiblesPlugin.CSVBible - + Importing books... %s Import des livres... %s - + Importing verses from %s... Importing verses from <book name>... Import des versets depuis %s... - + Importing verses... done. Import des versets... terminé. @@ -973,69 +973,69 @@ résultats de recherche et à l'affichage : BiblesPlugin.EditBibleForm - + Bible Editor Éditeur de bible - + License Details Détails de la licence - + Version name: Nom de la version : - + Copyright: Droits d'auteur : - + Permissions: Autorisations : - + Default Bible Language Langue de la bible par défaut - + Book name language in search field, search results and on display: Langue du livre dans le champ de recherche, résultats de recherche et à l'affichage : - + Global Settings Paramètres généraux - + Bible Language Langue de la bible - + Application Language Langue de l'application - + English Anglais - + This is a Web Download Bible. It is not possible to customize the Book Names. C'est une Bible Web téléchargée. Ce n'est pas possible de personnaliser le nom des livres. - + 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. Pour utiliser les noms de livres personnalisés, "Langue de bible" doit être sélectionné à partir de l'onglet Méta données ou, si "Paramètres globales" est sélectionné, dans la page Bible de la configuration d'OpenLP. @@ -1043,38 +1043,38 @@ Ce n'est pas possible de personnaliser le nom des livres. BiblesPlugin.HTTPBible - + Registering Bible and loading books... Enregistrement de la Bible et chargement des livres... - + Registering Language... Enregistrement des langues... - + Importing %s... Importing <book name>... Importation %s... - + Download Error Erreur de téléchargement - + There was a problem downloading your verse selection. Please check your Internet connection, and if this error continues to occur please consider reporting a bug. Un problème de téléchargement de votre sélection de verset a été rencontré. Vérifiez votre connexion Internet et si cette erreur persiste merci de signaler ce dysfonctionnement. - + Parse Error Erreur syntaxique - + There was a problem extracting your verse selection. If this error continues to occur please consider reporting a bug. Un problème a été rencontré durant l'extraction de votre sélection de verset. Si cette erreur persiste merci de signaler ce dysfonctionnement. @@ -1252,17 +1252,17 @@ demand and thus an internet connection is required. BiblesPlugin.LanguageDialog - + Select Language Sélectionne la langue - + OpenLP is unable to determine the language of this translation of the Bible. Please select the language from the list below. OpenLP ne peut déterminer la langue de cette traduction de la Bible. Veillez sélectionner la langue dans la liste suivante. - + Language: Langue : @@ -1270,7 +1270,7 @@ demand and thus an internet connection is required. BiblesPlugin.LanguageForm - + You need to choose a language. Vous devez choisir une langue. @@ -1278,92 +1278,92 @@ demand and thus an internet connection is required. BiblesPlugin.MediaItem - + Quick Rapide - + Find: Recherche : - + Book: Livre : - + Chapter: Chapitre : - + Verse: Verset : - + From: De : - + To: A : - + Text Search Recherche de texte - + Second: Deuxième : - + Scripture Reference Référence biblique - + Toggle to keep or clear the previous results. Cocher pour garder ou effacer le résultat précédent. - + You cannot combine single and dual Bible verse search results. Do you want to delete your search results and start a new search? Vous ne pouvez pas combiner les résultats de recherche pour les versets bibliques simples et doubles. Voulez-vous effacer les résultats et effectuer une nouvelle recherche ? - + Bible not fully loaded. Bible partiellement chargée. - + 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. La seconde Bible ne contient pas tous les versets présents dans la Bible principale. Seulement les versets trouvés dans les deux Bibles seront affichés. %d versets n'ont pas été inclus dans les résultats. - + Search Scripture Reference... Recherche de référence biblique... - + Search Text... Recherche dans le texte... - + Are you sure you want to completely delete "%s" Bible from OpenLP? You will need to re-import this Bible to use it again. @@ -1373,7 +1373,7 @@ You will need to re-import this Bible to use it again. BiblesPlugin.OpenSongImport - + Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. @@ -1381,7 +1381,7 @@ You will need to re-import this Bible to use it again. BiblesPlugin.Opensong - + Importing %s %s... Importing <book name> <chapter>... Importation %s %s... @@ -1390,12 +1390,12 @@ You will need to re-import this Bible to use it again. BiblesPlugin.OsisImport - + Detecting encoding (this may take a few minutes)... Détection de l'encodage (cela peut prendre quelque minutes)... - + Importing %s %s... Importing <book name> <chapter>... Importation %s %s... @@ -1404,149 +1404,149 @@ You will need to re-import this Bible to use it again. BiblesPlugin.UpgradeWizardForm - + Select a Backup Directory Sélectionner un répertoire de sauvegarde - + Bible Upgrade Wizard Assistant de mise a jours des Bibles - + 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. Cet assistant vous permet de mettre à jour vos Bibles de version antérieures à OpenLP 2. Cliquer sur le bouton suivant ci-dessous afin de commencer le processus de mise a jour. - + Select Backup Directory Sélectionner un répertoire de sauvegarde - + Please select a backup directory for your Bibles Veuillez sélectionner un répertoire de sauvegarde pour vos 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>. Les versions précédentes d'OpenLP 2.0 ne sont pas capables d'utiliser les Bibles mises à jour. Une sauvegarde de vos Bibles va être effectuée de sorte que vous puissiez simplement copier ces fichiers vers votre répertoire de données d'OpenLP si vous avez besoin de revenir à une version précédente de OpenLP. La procédure de restauration des fichiers est disponible dans notre <a href="http://wiki.openlp.org/faq">Foire aux questions</ a>. - + Please select a backup location for your Bibles. Veuillez sélectionner un répertoire de sauvegarde pour vos Bibles. - + Backup Directory: Répertoire de sauvegarde : - + There is no need to backup my Bibles Il n'est pas nécessaire de sauvegarder mes Bibles - + Select Bibles Sélectionne des Bibles - + Please select the Bibles to upgrade Veuillez sélectionner les Bibles à mettre à jour - + Upgrading Mise à jour - + Please wait while your Bibles are upgraded. Merci de patienter durant la mise à jour de vos Bibles. - + The backup was not successful. To backup your Bibles you need permission to write to the given directory. La sauvegarde à échouée. Pour sauvegarder vos Bibles vous devez disposer des droits en écriture sur le répertoire donné. - + Upgrading Bible %s of %s: "%s" Failed Mise à jour de la Bible %s sur %s : "%s" Échouée - + Upgrading Bible %s of %s: "%s" Upgrading ... Mise a jour de la Bible %s sur %s : "%s" Mise à jour ... - + Download Error Erreur de téléchargement - + To upgrade your Web Bibles an Internet connection is required. Pour mettre à jour vos Bibles Web, une connexion à Internet est nécessaire. - + Upgrading Bible %s of %s: "%s" Upgrading %s ... Mise a jour de la Bible %s sur %s : "%s" Mise à jour %s ... - + Upgrading Bible %s of %s: "%s" Complete Mise a jour de la Bible %s sur %s : "%s" Terminée - + , %s failed , %s échouée - + 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. Mise a jour de(s) (la) Bible(s) : %s avec succès%s Veuillez noter que les versets des Bibles Web seront téléchargés à la demande, par conséquent une connexion Internet sera nécessaire. - + Upgrading Bible(s): %s successful%s Mise à jour de(s) (la) Bible(s) : %s avec succès%s - + Upgrade failed. La mise à jour a échouée. - + You need to specify a backup directory for your Bibles. Vous devez spécifier un répertoire de sauvegarde pour vos Bibles. - + Starting upgrade... Démarrage de la mise à jour... - + There are no Bibles that need to be upgraded. Il n'y a pas de Bibles à mettre à jour. @@ -1554,65 +1554,65 @@ Veuillez noter que les versets des Bibles Web seront téléchargés à la demand 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>Module Diapositive personnalisé</strong><br />Le module de diapositive personnalisé permet de créer des diapositives textuelles personnalisées affichées de la même manière que les chants. Ce module permet une grande liberté par rapport au module chant. - + Custom Slide name singular Diapositive personnalisée - + Custom Slides name plural Diapositives personnelles - + Custom Slides container title Diapositives personnalisées - + Load a new custom slide. Charge une nouvelle diapositive personnalisée. - + Import a custom slide. Importe une diapositive personnalisée. - + Add a new custom slide. Ajoute la diapositive personnalisée sélectionnée. - + Edit the selected custom slide. Édite la diapositive personnalisée sélectionnée. - + Delete the selected custom slide. Supprime la diapositive personnalisée sélectionnée. - + Preview the selected custom slide. Prévisualise la diapositive personnalisée sélectionnée. - + Send the selected custom slide live. Envoie la diapositive personnalisée sélectionnée au direct. - + Add the selected custom slide to the service. Ajoute la diapositive personnalisée sélectionnée au service. @@ -1620,12 +1620,12 @@ Veuillez noter que les versets des Bibles Web seront téléchargés à la demand CustomPlugin.CustomTab - + Custom Display Affichage Personnalisé - + Display footer Afficher le pied de page @@ -1633,62 +1633,62 @@ Veuillez noter que les versets des Bibles Web seront téléchargés à la demand CustomPlugin.EditCustomForm - + Edit Custom Slides Édite les diapositives personnalisées - + &Title: &Titre : - + Add a new slide at bottom. Ajoute une nouvelle diapositive en bas. - + Edit the selected slide. Édite la diapositive sélectionnée. - + Edit all the slides at once. Édite toutes les diapositives en une. - + Split a slide into two by inserting a slide splitter. Sépare la diapositive en deux en insérant un séparateur de diapositive. - + The&me: Thè&me : - + &Credits: &Crédits : - + You need to type in a title. Vous devez spécifier un titre. - + You need to add at least one slide Vous devez ajouter au moins une diapositive - + Ed&it All Édite &tous - + Insert Slide Insère une diapositive @@ -1696,7 +1696,7 @@ Veuillez noter que les versets des Bibles Web seront téléchargés à la demand CustomPlugin.EditVerseForm - + Edit Slide @@ -1704,7 +1704,7 @@ Veuillez noter que les versets des Bibles Web seront téléchargés à la demand CustomPlugin.MediaItem - + Are you sure you want to delete the %n selected custom slide(s)? Etes-vous sur de vouloir supprimer la %n diapositive personnalisée ? @@ -1715,60 +1715,60 @@ Veuillez noter que les versets des Bibles Web seront téléchargés à la demand 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>Module Image</strong><br />Le module Image permet l'affichage d'images.<br />L'une des particularités de ce module est la possibilité de regrouper plusieurs images en un seul élément dans le gestionnaire de services, ce qui facilite son affichage. Ce module permet également de faire défiler les images en boucle avec une pause entre chacune d'elles. Les images du module peuvent également être utilisées pour remplacer l'arrière-plan du thème en cours. - + Image name singular Image - + Images name plural Images - + Images container title Images - + Load a new image. Charge une nouvelle image. - + Add a new image. Ajoute une nouvelle image. - + Edit the selected image. Édite l'image sélectionnée. - + Delete the selected image. Supprime l'image sélectionnée. - + Preview the selected image. Prévisualise l'image sélectionnée. - + Send the selected image live. Envoie l'image sélectionnée au direct. - + Add the selected image to the service. Ajoute l'image sélectionnée au service. @@ -1776,7 +1776,7 @@ Veuillez noter que les versets des Bibles Web seront téléchargés à la demand ImagePlugin.ExceptionDialog - + Select Attachment Sélectionne un objet @@ -1784,44 +1784,44 @@ Veuillez noter que les versets des Bibles Web seront téléchargés à la demand ImagePlugin.MediaItem - + Select Image(s) Sélectionne une (des) Image(s) - + You must select an image to delete. Vous devez sélectionner une image à supprimer. - + You must select an image to replace the background with. Vous devez sélectionner une image pour remplacer le fond. - + Missing Image(s) Image(s) manquante - + The following image(s) no longer exist: %s L(es) image(s) suivante(s) n'existe(nt) plus : %s - + The following image(s) no longer exist: %s Do you want to add the other images anyway? L(es) image(s) suivante(s) n'existe(nt) plus : %s Voulez-vous ajouter les autres images malgré tout ? - + There was a problem replacing your background, the image file "%s" no longer exists. Impossible de remplacer votre fond, le fichier image "%s" n'existe plus. - + There was no display item to amend. Il n'y a aucun élément d'affichage à modifier. @@ -1829,17 +1829,17 @@ Voulez-vous ajouter les autres images malgré tout ? ImagesPlugin.ImageTab - + Background Color Couleur de fond - + Default Color: Couleur par défaut : - + Visible background for images with aspect ratio different to screen. Fond d'écran visible pour les images avec un ratio différent de celui de l'écran. @@ -1847,60 +1847,60 @@ Voulez-vous ajouter les autres images malgré tout ? MediaPlugin - + <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. <strong>Module Média</strong><br />Le module Média permet de lire des fichiers audio et vidéo. - + Media name singular Médias - + Media name plural Médias - + Media container title Média - + Load new media. Charge un nouveau média. - + Add new media. Ajoute un nouveau média. - + Edit the selected media. Édite le média sélectionné. - + Delete the selected media. Supprime le média sélectionné. - + Preview the selected media. Prévisualise le média sélectionné. - + Send the selected media live. Envoie le média sélectionné au direct. - + Add the selected media to the service. Ajoute le média sélectionné au service. @@ -1908,57 +1908,57 @@ Voulez-vous ajouter les autres images malgré tout ? MediaPlugin.MediaItem - + Select Media Média sélectionné - + You must select a media file to delete. Vous devez sélectionner un fichier média à supprimer. - + You must select a media file to replace the background with. Vous devez sélectionner un fichier média pour qu'il puisse remplacer le fond. - + There was a problem replacing your background, the media file "%s" no longer exists. Impossible de remplacer le fond du direct, le fichier média "%s" n'existe plus. - + Missing Media File Fichier média manquant - + The file %s no longer exists. Le fichier %s n'existe plus. - + Videos (%s);;Audio (%s);;%s (*) Vidéos (%s);;Audio (%s);;%s (*) - + There was no display item to amend. Il n'y a aucun élément d'affichage à modifier. - + Unsupported File Fichier non supporté - + Automatic Automatique - + Use Player: Utiliser le lecteur : @@ -1966,22 +1966,22 @@ Voulez-vous ajouter les autres images malgré tout ? MediaPlugin.MediaTab - + Available Media Players Lecteurs de Média disponibles - + %s (unavailable) %s (non disponible) - + Player Order Ordre des lecteurs - + Allow media player to be overridden Autoriser le lecteur de média à être surcharger @@ -1989,17 +1989,17 @@ Voulez-vous ajouter les autres images malgré tout ? OpenLP - + Image Files Fichiers image - + Information Information - + Bible format has changed. You have to upgrade your existing Bibles. Should OpenLP upgrade now? @@ -2011,32 +2011,55 @@ Voulez-vous que OpenLP effectue la mise à jour maintenant ? OpenLP.AboutForm - + Credits Crédits - + License Licence - + build %s révision %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. Ce programme est un logiciel libre ; vous pouvez le redistribuer et/ou le modifier dans les termes de la licence GNU General Public License tel que publié par la Free Software Foundation ; version 2 de la 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. Ce programme est distribué dans l'espoir qu'il sera utile, mais SANS AUCUNE GARANTIE, sans même la garantie implicite de COMMERCIALISATION ou D'ADAPTATION A UN USAGE PARTICULIER. Voir ci-dessous pour plus de détails. - + + Copyright © 2004-2012 %s +Portions copyright © 2004-2012 %s + Copyright © 2004-2012 %s⏎ +Portions copyright © 2004-2012 %s + + + + 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. + +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 volunteering by using the button below. + + + + + Volunteer + + + + Project Lead %s @@ -2055,12 +2078,20 @@ Packagers Translators Afrikaans (af) %s + Czeck (cs) + %s + Danish (da) + %s German (de) %s + Greek (el) + %s English, United Kingdom (en_GB) %s English, South Africa (en_ZA) %s + Spanish (es) + %s Estonian (et) %s French (fr) @@ -2077,13 +2108,15 @@ Translators %s Russian (ru) %s + Swedish (sv) + %s Documentation %s Built With Python: http://www.python.org/ - Qt4: http://qt.nokia.com/ + Qt4: http://qt.digia.com/ PyQt4: http://www.riverbankcomputing.co.uk/software/pyqt/intro Oxygen Icons: http://oxygen-icons.org/ @@ -2098,268 +2131,185 @@ Final Credit on the cross, setting us free from sin. We bring this software to you for free because He has set us free. - Chef de Projet - %s - -Développeurs - %s - -Contributeurs - %s - -Testeurs - %s - -Empaqueteurs - %s - -Traducteurs - Afrikaans (af) - %s - Allemand (de) - %s - Anglais, Royaumes unis (en_GB) - %s - Anglais, Afrique du sud (en_ZA) - %s - Estonien (et) - %s - Français (fr) - %s - Hongrois (hu) - %s - Japonnai (ja) - %s - Norvégien Bokmål (nb) - %s - Néerlandais (nl) - %s - Portugais, Brésil (pt_BR) - %s - Ruse (ru) - %s - -Documentation - %s - -Developpé avec - Python : http://www.python.org/ - Qt4 : http://qt.nokia.com/ - PyQt4 : http://www.riverbankcomputing.co.uk/software/pyqt/intro - Icônes Oxygen : http://oxygen-icons.org/ - -Crédit final - "Car Dieu a tant aimé le monde qu'Il a donné - son Fils unique, afin que quiconque - croit en lui ne périsse point, mais qu'il - ait la vie éternelle." -- Jean 3:16 - - Et pour finir, le crédit final va à Dieu notre Père, - pour l'envoi de son Fils pour mourir - sur la croix, nous libérant du péché. Nous - mettons ce logiciel à votre disposition - gratuitement, car Il nous a libérés. - - - - Copyright © 2004-2012 %s -Portions copyright © 2004-2012 %s - Copyright © 2004-2012 %s⏎ -Portions copyright © 2004-2012 %s - - - - 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. - -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 volunteering by using the button below. - - - - - Volunteer OpenLP.AdvancedTab - + UI Settings Propriétés de l'interface utilisateur - + Number of recent files to display: Nombre de fichiers récents à afficher : - + Remember active media manager tab on startup Se souvenir de l'onglet actif du gestionnaire de média au démarrage - + Double-click to send items straight to live Double-cliquer pour envoyer les éléments directement au live - + Expand new service items on creation Étends les nouveaux éléments du service à la création - + Enable application exit confirmation Demande une confirmation avant de quitter l'application - + Mouse Cursor Curseur de la souris - + Hide mouse cursor when over display window Cache le curseur de la souris quand elle se trouve sur l'écran live - + Default Image Image par défaut - + Background color: Couleur de fond : - + Image file: Fichier image : - + Open File Ouvre un fichier - + Advanced Avancé - + Preview items when clicked in Media Manager Prévisualise l’élément cliqué du gestionnaire de média - + Click to select a color. Clique pour sélectionner une couleur. - + Browse for an image file to display. Parcoure pour trouver une image à afficher. - + Revert to the default OpenLP logo. Retour au logo OpenLP par défaut. - + 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 Nom de service par défaut - + Enable default service name Activer le nom de service par défaut - + Date and Time: Date et Heure : - + Monday Lundi - + Tuesday Mardi - + Wednesday Mercredi - + Thurdsday Jeudi - + Friday Vendredi - + Saturday Samedi - + Sunday Dimanche - + Now Maintenant - + Time when usual service starts. Heure de début du service habituelle. - + Name: Nom : - + Consult the OpenLP manual for usage. Veuillez consulter le manuel d'OpenLP. - + Revert to the default service name "%s". Restaurer le nom du service par défaut "%s". - + Example: Exemple : - + X11 X11 @@ -2369,82 +2319,82 @@ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for Contourner le gestionnaire de fenêtres X11 - + Syntax error. Erreur de syntaxe. - + Data Location Emplacement des données - + Current path: Chemin courant : - + Custom path: Chemin personnalisé : - + Browse for new data file location. Sélectionnez un nouvel emplacement pour le fichier de données. - + Set the data location to the default. Définir cet emplacement pour les données comme emplacement par défaut. - + Cancel Annuler - + Cancel OpenLP data directory location change. Annuler le changement d'emplacement du dossier de données d'OpenLP. - + Copy data to new location. Copier les données vers un nouvel emplacement. - + Copy the OpenLP data files to the new location. Copier les fichiers de données d'OpenLP vers le nouvel emplacement. - + <strong>WARNING:</strong> New data directory location contains OpenLP data files. These files WILL be replaced during a copy. <strong>ATTENTION:</strong> Le nouveau dossier de données contient des fichiers de données OpenLP. Ces fichiers seront remplacés pendant la copie. - + Data Directory Error Erreur du dossier de données - + Select Data Directory Location Sélectionnez un emplacement pour le dossier de données - + Confirm Data Directory Change Confirmez le changement de dossier de données - + Reset Data Directory Remise à zéro du dossier de données - + 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. @@ -2453,12 +2403,12 @@ This location will be used after OpenLP is closed. Cet emplacement sera utilisé après avoir fermé OpenLP. - + Overwrite Existing Data Écraser les données existantes - + OpenLP data directory was not found %s @@ -2471,7 +2421,7 @@ Click "Yes" to reset the data directory to the default location. - + Are you sure you want to change the location of the OpenLP data directory to: %s @@ -2480,7 +2430,7 @@ The data directory will be changed when OpenLP is closed. - + WARNING: The location you have selected @@ -2494,39 +2444,39 @@ appears to contain OpenLP data files. Do you wish to replace these files with t OpenLP.ExceptionDialog - + Error Occurred Erreur survenue - + 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. Oups! OpenLP a rencontré un problème, et ne peut pas continuer à s'exécuter. Le texte dans le champ ci-dessous contient des informations qui pourraient être utiles aux développeurs d'OpenLP, veuillez s'il vous plaît envoyer un courriel à bugs@openlp.org, avec une description détaillée de ce que vous faisiez lorsque le problème est survenu. - + Send E-Mail Envoyer un courriel - + Save to File Enregistre dans un fichier - + Please enter a description of what you were doing to cause this error (Minimum 20 characters) Veuillez entrer une description de ce que vous faisiez au moment de l'erreur (Minimum 20 caractères) - + Attach File Attacher un fichier - + Description characters to enter : %s Description : %s @@ -2534,24 +2484,24 @@ appears to contain OpenLP data files. Do you wish to replace these files with t OpenLP.ExceptionForm - + Platform: %s Plateforme : %s - + Save Crash Report Enregistre le rapport d'erreur - + Text files (*.txt *.log *.text) Fichiers texte (*.txt *.log *.text) - + **OpenLP Bug Report** Version: %s @@ -2582,7 +2532,7 @@ Version : %s - + *OpenLP Bug Report* Version: %s @@ -2617,17 +2567,17 @@ Version : %s OpenLP.FileRenameForm - + File Rename Renomme le fichier - + New File Name: Nouveau nom de fichier : - + File Copy Copie le fichier @@ -2635,17 +2585,17 @@ Version : %s OpenLP.FirstTimeLanguageForm - + Select Translation Sélectionne la traduction - + Choose the translation you'd like to use in OpenLP. Choisir la traduction que vous voulez utiliser dans OpenLP. - + Translation: Traduction : @@ -2653,199 +2603,199 @@ Version : %s OpenLP.FirstTimeWizard - + Songs Chants - + First Time Wizard Assistant de démarrage - + Welcome to the First Time Wizard Bienvenue dans l'assistant de démarrage - + Activate required Plugins Activer les modules requis - + Select the Plugins you wish to use. Sélectionnez les modules que vous souhaitez utiliser. - + Bible Bible - + Images Images - + Presentations Présentations - + Media (Audio and Video) Média (Audio et Vidéo) - + Allow remote access Permettre l’accès à distance - + Monitor Song Usage Suivre l'utilisation des chants - + Allow Alerts Permettre l'utilisation d'Alertes - + Default Settings Paramètres par défaut - + Downloading %s... Téléchargement %s... - + Download complete. Click the finish button to start OpenLP. Téléchargement terminé. Cliquez sur le bouton terminer pour démarrer OpenLP. - + Enabling selected plugins... Active les modules sélectionnés... - + No Internet Connection Pas de connexion à Internet - + Unable to detect an Internet connection. Aucune connexion à Internet. - + Sample Songs Chants d'exemple - + Select and download public domain songs. Sélectionne et télécharge des chants du domaine public. - + Sample Bibles Bibles d'exemple - + Select and download free Bibles. Sélectionne et télécharge des Bibles gratuites. - + Sample Themes Exemple de Thèmes - + Select and download sample themes. Sélectionne et télécharge des exemples de thèmes. - + Set up default settings to be used by OpenLP. Définir les paramètres par défaut pour être utilisé par OpenLP. - + Default output display: Sortie d'écran par défaut : - + Select default theme: Sélectionne le thème pas défaut : - + Starting configuration process... Démarrage du processus de configuration... - + This wizard will help you to configure OpenLP for initial use. Click the next button below to start. Cet assistant vous permet de configurer OpenLP pour sa première utilisation. Cliquez sur le bouton suivant pour démarrer. - + Setting Up And Downloading Paramétrage et téléchargement - + Please wait while OpenLP is set up and your data is downloaded. Merci de patienter durant le paramétrage d'OpenLP et le téléchargement de vos données. - + Setting Up Paramétrage - + Click the finish button to start OpenLP. Cliquez sur le bouton terminer pour démarrer OpenLP. - + Download complete. Click the finish button to return to OpenLP. Téléchargement terminé. Cliquez sur le bouton terminer pour revenir à OpenLP. - + Click the finish button to return to OpenLP. Cliquez sur le bouton terminer pour revenir à OpenLP. - + Custom Slides Diapositives personnalisées - + Finish Terminé - + 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. @@ -2857,37 +2807,37 @@ Pour annuler complètement le premier assistant (et ne pas lancer OpenLP), cliqu OpenLP.FormattingTagDialog - + Configure Formatting Tags Configurer les balises de formatage - + Edit Selection Édite la sélection - + Save Enregistre - + Description Description - + Tag Balise - + Start HTML HTML de début - + End HTML HTML de fin @@ -2895,32 +2845,32 @@ Pour annuler complètement le premier assistant (et ne pas lancer OpenLP), cliqu OpenLP.FormattingTagForm - + Update Error Erreur de mise à jour - + Tag "n" already defined. Balise "n" déjà définie. - + New Tag Nouvelle balise - + <HTML here> <HTML ici> - + </and here> </et ici> - + Tag %s already defined. Balise %s déjà définie. @@ -2928,82 +2878,82 @@ Pour annuler complètement le premier assistant (et ne pas lancer OpenLP), cliqu OpenLP.FormattingTags - + Red Rouge - + Black Noir - + Blue Bleu - + Yellow Jaune - + Green Vert - + Pink Rose - + Orange Orange - + Purple Pourpre - + White Blanc - + Superscript Exposant - + Subscript Indice - + Paragraph Paragraphe - + Bold Gras - + Italics Italiques - + Underline Souligner - + Break Retour à la ligne @@ -3011,122 +2961,122 @@ Pour annuler complètement le premier assistant (et ne pas lancer OpenLP), cliqu OpenLP.GeneralTab - + General Général - + Monitors Moniteurs - + Select monitor for output display: Sélectionne l’écran pour la sortie d'affichage live : - + Display if a single screen Affiche si il n'y a qu'un écran - + Application Startup Démarrage de l'application - + Show blank screen warning Affiche un avertissement d'écran vide - + Automatically open the last service Ouvre automatiquement le dernier service - + Show the splash screen Affiche l'écran de démarrage - + Application Settings Préférence de l'application - + Prompt to save before starting a new service Demande d'enregistrer avant de commencer un nouveau service - + Automatically preview next item in service Prévisualise automatiquement l'élément suivant du service - + sec sec - + CCLI Details CCLI détails - + SongSelect username: Nom d'utilisateur SongSelect : - + SongSelect password: Mot de passe SongSelect : - + X X - + Y Y - + Height Hauteur - + Width Largeur - + Check for updates to OpenLP Vérifie si des mises à jours d'OpenLP sont disponibles - + Unblank display when adding new live item Retire l'écran noir lors de l'ajout de nouveaux éléments au direct - + Timed slide interval: Intervalle de temps entre les diapositives : - + Background Audio Son en fond - + Start background audio paused Démarrer le son de fond en pause @@ -3136,12 +3086,12 @@ Pour annuler complètement le premier assistant (et ne pas lancer OpenLP), cliqu Limites des éléments de service - + Override display position: Surcharger la position d'affichage : - + Repeat track list Répéter la liste des pistes @@ -3169,12 +3119,12 @@ Pour annuler complètement le premier assistant (et ne pas lancer OpenLP), cliqu OpenLP.LanguageManager - + Language Langage - + Please restart OpenLP to use your new language setting. Veuillez redémarrer OpenLP pour utiliser votre nouveau paramétrage de langue. @@ -3182,7 +3132,7 @@ Pour annuler complètement le premier assistant (et ne pas lancer OpenLP), cliqu OpenLP.MainDisplay - + OpenLP Display Affichage OpenLP @@ -3190,287 +3140,287 @@ Pour annuler complètement le premier assistant (et ne pas lancer OpenLP), cliqu OpenLP.MainWindow - + &File &Fichier - + &Import &Import - + &Export E&xport - + &View &Visualise - + M&ode M&ode - + &Tools &Outils - + &Settings O&ptions - + &Language &Langue - + &Help &Aide - + Media Manager Gestionnaire de médias - + Service Manager Gestionnaire de services - + Theme Manager Gestionnaire de thèmes - + &New &Nouveau - + &Open &Ouvrir - + Open an existing service. Ouvre un service existant. - + &Save &Enregistre - + Save the current service to disk. Enregistre le service courant sur le disque. - + Save &As... Enregistre &sous... - + Save Service As Enregistre le service sous - + Save the current service under a new name. Enregistre le service courant sous un nouveau nom. - + E&xit &Quitter - + Quit OpenLP Quitter OpenLP - + &Theme &Thème - + &Configure OpenLP... &Personnalise OpenLP... - + &Media Manager Gestionnaire de &médias - + Toggle Media Manager Gestionnaire de Média - + Toggle the visibility of the media manager. Change la visibilité du gestionnaire de média. - + &Theme Manager Gestionnaire de &thèmes - + Toggle Theme Manager Gestionnaire de Thème - + Toggle the visibility of the theme manager. Change la visibilité du gestionnaire de tème. - + &Service Manager Gestionnaire de &services - + Toggle Service Manager Gestionnaire de service - + Toggle the visibility of the service manager. Change la visibilité du gestionnaire de service. - + &Preview Panel Panneau de &prévisualisation - + Toggle Preview Panel Panneau de prévisualisation - + Toggle the visibility of the preview panel. Change la visibilité du panel de prévisualisation. - + &Live Panel Panneau du &direct - + Toggle Live Panel Panneau du direct - + Toggle the visibility of the live panel. Change la visibilité du directe. - + &Plugin List Liste des &modules - + List the Plugins Liste des modules - + &User Guide &Guide utilisateur - + &About À &propos - + More information about OpenLP Plus d'information sur OpenLP - + &Online Help &Aide en ligne - + &Web Site Site &Web - + Use the system language, if available. Utilise le langage système, si disponible. - + Set the interface language to %s Défini la langue de l'interface à %s - + Add &Tool... Ajoute un &outils... - + Add an application to the list of tools. Ajoute une application à la liste des outils. - + &Default &Défaut - + Set the view mode back to the default. Redéfini le mode vue comme par défaut. - + &Setup &Configuration - + Set the view mode to Setup. Mode vue Configuration. - + &Live &Direct - + Set the view mode to Live. Mode vue Direct. - + 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/. @@ -3479,108 +3429,108 @@ You can download the latest version from http://openlp.org/. Vous pouvez télécharger la dernière version à partir de http://openlp.org/. - + OpenLP Version Updated Version d'OpenLP mis à jour - + OpenLP Main Display Blanked OpenLP affichage principal noirci - + The Main Display has been blanked out L'affichage principal a été noirci - + Default Theme: %s Thème par défaut : %s - + English Please add the name of your language here Français - + Configure &Shortcuts... Personnalise les &raccourcis... - + Close OpenLP Ferme OpenLP - + Are you sure you want to close OpenLP? Êtes vous sur de vouloir fermer OpenLP ? - + Open &Data Folder... &Ouvre le répertoire de données... - + Open the folder where songs, bibles and other data resides. Ouvre le répertoire où se trouve les chants, bibles et autres données. - + &Autodetect &Détecte automatiquement - + Update Theme Images Met à jour les images de thèmes - + Update the preview images for all themes. Mettre à jour les images de tous les thèmes. - + Print the current service. Imprime le service courant. - + &Recent Files Fichiers &récents - + L&ock Panels &Verrouille les panneaux - + Prevent the panels being moved. Empêcher les panneaux d'être déplacé. - + Re-run First Time Wizard Re-démarrer l'assistant de démarrage - + Re-run the First Time Wizard, importing songs, Bibles and themes. Re-démarrer l'assistant de démarrage, importer les chants, Bibles et thèmes. - + Re-run First Time Wizard? Re-démarrer l'assistant de démarrage ? - + 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. @@ -3589,43 +3539,43 @@ Re-running this wizard may make changes to your current OpenLP configuration and Re-démarrer cet assistant peut apporter des modifications à votre configuration actuelle d'OpenLP, éventuellement ajouter des chants à votre liste de chants existante et changer votre thème par défaut. - + Clear List Clear List of recent files Vide la liste - + Clear the list of recent files. Vide la liste des fichiers récents. - + Configure &Formatting Tags... Configure les &balises de formatage... - + Export OpenLP settings to a specified *.config file Exporte la configuration d'OpenLP vers un fichier *.config spécifié - + Settings Configuration - + Import OpenLP settings from a specified *.config file previously exported on this or another machine Importe la configuration d'OpenLP à partir d'un fichier *.config précédemment exporté depuis un autre ordinateur. - + Import settings? Import de la configuration ? - + Are you sure you want to import settings? Importing settings will make permanent changes to your current OpenLP configuration. @@ -3638,42 +3588,42 @@ Importer la configuration va changer de façon permanente votre configuration d& L'import de configurations incorrect peut provoquer des comportements imprévisible d'OpenLP. - + Open File Ouvre un fichier - + OpenLP Export Settings Files (*.conf) Fichier de configuration OpenLP (*.conf) - + Import settings Import de la configuration - + OpenLP will now close. Imported settings will be applied the next time you start OpenLP. OpenLP va se terminer maintenant. La Configuration importée va être appliquée au prochain démarrage. - + Export Settings File Export de la configuration - + OpenLP Export Settings File (*.conf) Fichier d'export de la configuration d'OpenLP (*.conf) - + New Data Directory Error Erreur du nouveau dossier de données - + The file you selected does appear to be a valid OpenLP settings file. Section [%s] is not valid @@ -3682,12 +3632,12 @@ Processing has terminated and no changed have been made. - + Copying OpenLP data to new data directory location - %s - Please wait for copy to finish - + OpenLP Data directory copy failed %s @@ -3697,12 +3647,12 @@ Processing has terminated and no changed have been made. OpenLP.Manager - + Database Error Erreur de base de données - + 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 @@ -3711,7 +3661,7 @@ Database: %s Base de données: %s - + OpenLP cannot load your database. Database: %s @@ -3723,62 +3673,62 @@ Base de données: %s OpenLP.MediaManagerItem - + No Items Selected Pas d'éléments sélectionnés - + &Add to selected Service Item &Ajoute à l'élément sélectionné du service - + You must select one or more items to preview. Vous devez sélectionner un ou plusieurs éléments à prévisualiser. - + You must select one or more items to send live. Vous devez sélectionner un ou plusieurs éléments pour les envoyer au direct. - + You must select one or more items. Vous devez sélectionner un ou plusieurs éléments. - + You must select an existing service item to add to. Vous devez sélectionner un élément existant du service pour l'ajouter. - + Invalid Service Item Élément du service invalide - + You must select a %s service item. Vous devez sélectionner un %s élément du service. - + You must select one or more items to add. Vous devez sélectionner un ou plusieurs éléments à ajouter. - + No Search Results Aucun résultat de recherche - + Invalid File Type Type de fichier invalide - + Invalid File %s. Suffix not supported Fichier invalide %s. @@ -3790,7 +3740,7 @@ Extension non supportée %Clone - + Duplicate files were found on import and were ignored. Des fichiers dupliqués on été trouvé dans l'import et ont été ignorés. @@ -3798,12 +3748,12 @@ Extension non supportée OpenLP.OpenLyricsImportError - + <lyrics> tag is missing. La balise <lyrics> est manquante. - + <verse> tag is missing. La balise <verse> est manquante. @@ -3811,42 +3761,42 @@ Extension non supportée OpenLP.PluginForm - + Plugin List Liste des modules - + Plugin Details Détails du module - + Status: État : - + Active Actif - + Inactive Inactif - + %s (Inactive) %s (Inactif) - + %s (Active) %s (Actif) - + %s (Disabled) %s (Désactivé) @@ -3854,12 +3804,12 @@ Extension non supportée OpenLP.PrintServiceDialog - + Fit Page Ajuster à la page - + Fit Width Ajuster à la largeur @@ -3867,77 +3817,77 @@ Extension non supportée OpenLP.PrintServiceForm - + Options Options - + Copy Copier - + Copy as HTML Copier comme de l'HTML - + Zoom In Zoom avant - + Zoom Out Zoom arrière - + Zoom Original Zoom d'origine - + Other Options Autres options - + Include slide text if available Inclure le texte des diapositives si disponible - + Include service item notes Inclure les notes des éléments du service - + Include play length of media items Inclure la durée des éléments média - + Add page break before each text item Ajoute des sauts de page entre chaque éléments - + Service Sheet Feuille de service - + Print Imprimer - + Title: Titre : - + Custom Footer Text: Texte de pied de page personnalisé : @@ -3945,12 +3895,12 @@ Extension non supportée OpenLP.ScreenList - + Screen Écran - + primary primaire @@ -3958,12 +3908,12 @@ Extension non supportée OpenLP.ServiceItem - + <strong>Start</strong>: %s <strong>Début</strong> : %s - + <strong>Length</strong>: %s <strong>Longueur</strong> : %s @@ -3971,7 +3921,7 @@ Extension non supportée OpenLP.ServiceItemEditForm - + Reorder Service Item Réordonne les éléments du service @@ -3979,296 +3929,295 @@ Extension non supportée OpenLP.ServiceManager - + Move to &top Place en &premier - + Move item to the top of the service. Place l'élément au début du service. - + Move &up Déplace en &haut - + Move item up one position in the service. Déplace l'élément d'une position en haut. - + Move &down Déplace en &bas - + Move item down one position in the service. Déplace l'élément d'une position en bas. - + Move to &bottom Place en &dernier - + Move item to the end of the service. Place l'élément a la fin du service. - + &Delete From Service &Retire du service - + Delete the selected item from the service. Retire l'élément sélectionné du service. - + &Add New Item &Ajoute un nouvel élément - + &Add to Selected Item &Ajoute à l'élément sélectionné - + &Edit Item &Édite l'élément - + &Reorder Item &Réordonne l'élément - + &Notes &Notes - + &Change Item Theme &Change le thème de l'élément - + OpenLP Service Files (*.osz) Fichier service OpenLP (*.osz) - + File is not a valid service. The content encoding is not UTF-8. Le fichier n'est pas un fichier de service valide. Le contenu n'est pas de l'UTF-8. - + File is not a valid service. Le fichier n'est pas un fichier de service valide. - + Missing Display Handler Composant d'affichage manquant - + Your item cannot be displayed as there is no handler to display it Votre élément ne peut pas être affiché parce qu'il n'y a pas de composant pour l'afficher - + Your item cannot be displayed as the plugin required to display it is missing or inactive Votre élément ne peut pas être affiché parce que le module nécessaire est manquant ou désactivé - + &Expand all &Développer tout - + Expand all the service items. Développe tous les éléments du service. - + &Collapse all &Réduire tout - + Collapse all the service items. Réduit tous les éléments du service. - + Open File Ouvre un fichier - + Moves the selection down the window. Déplace la sélection en bas de la fenêtre. - + Move up Déplace en haut - + Moves the selection up the window. Déplace la sélection en haut de la fenêtre. - + Go Live Lance le direct - + Send the selected item to Live. Affiche l'élément sélectionné en direct. - + &Start Time Temps de &début - + Show &Preview Affiche en &prévisualisation - + Modified Service Service modifié - + The current service has been modified. Would you like to save this service? Le service courant à été modifié. Voulez-vous l'enregistrer ? - + Custom Service Notes: Notes de service : - + Notes: Notes : - + Playing time: Durée du service : - + Untitled Service Service sans titre - + File could not be opened because it is corrupt. Le fichier ne peux être ouvert car il est corrompu. - + Empty File Fichier vide - + This service file does not contain any data. Ce fichier de service ne contient aucune donnée. - + Corrupt File Fichier corrompu - + Load an existing service. Charge un service existant. - + Save this service. Enregistre ce service. - + Select a theme for the service. Sélectionne un thème pour le service. - + This file is either corrupt or it is not an OpenLP 2.0 service file. Ce fichier est sois corrompu ou n'est pas un fichier de service OpenLP 2.0. - - Service File Missing - Fichier de service manquant - - - + Slide theme Thème de diapositive - + Notes Notes - + Edit Édite - + Service copy only Copie de service uniquement - + Error Saving File Erreur de sauvegarde du fichier - + There was an error saving your file. Une erreur est survenue lors de la sauvegarde de votre fichier. - - File missing from service + + Service File(s) Missing + + + + + The following file(s) in the service are missing: +%s - %s - -Continue saving? +These files will be removed if you continue to save. OpenLP.ServiceNoteForm - + Service Item Notes Notes sur l'élément du service @@ -4276,7 +4225,7 @@ Continue saving? OpenLP.SettingsForm - + Configure OpenLP Configuration d'OpenLP @@ -4284,67 +4233,67 @@ Continue saving? OpenLP.ShortcutListDialog - + Action Action - + Shortcut Raccourci - + Duplicate Shortcut Raccourci dupliqué - + The shortcut "%s" is already assigned to another action, please use a different shortcut. Le raccourci "%s" est déjà assigné à une autre action, veuillez utiliser un autre raccourci. - + Alternate Alternatif - + Select an action and click one of the buttons below to start capturing a new primary or alternate shortcut, respectively. Sélectionnez une action puis cliquez sur un des boutons ci-dessous pour capturer un nouveau raccourci principal ou secondaire. - + Default Défaut - + Custom Personnalisé - + Capture shortcut. Capture un raccourci. - + Restore the default shortcut of this action. Restaure le raccourci par défaut de cette action. - + Restore Default Shortcuts Restaure les raccourcis par défaut - + Do you want to restore all shortcuts to their defaults? Voulez vous restaurer tous les raccourcis par leur valeur par défaut ? - + Configure Shortcuts Configure les raccourcis @@ -4352,172 +4301,172 @@ Continue saving? OpenLP.SlideController - + Hide Cache - + Go To Aller à - + Blank Screen Écran noir - + Blank to Theme Thème vide - + Show Desktop Affiche le bureau - + Previous Service Service précédent - + Next Service Service suivant - + Escape Item Élément d'échappement - + Move to previous. Déplace au précédant. - + Move to next. Déplace au suivant. - + Play Slides Joue les diapositives - + Delay between slides in seconds. Intervalle entre les diapositives en secondes. - + Move to live. Affiche en direct. - + Add to Service. Ajoute au service. - + Edit and reload song preview. Édite et recharge la prévisualisation du chant. - + Start playing media. Joue le média. - + Pause audio. Mettre en pause la lecture audio. - + Pause playing media. Mettre en pause la lecture. - + Stop playing media. Arrêter la lecture. - + Video position. Position vidéo. - + Audio Volume. Volume sonore. - + Go to "Verse" Aller au "Couplet" - + Go to "Chorus" Aller au "Refrain" - + Go to "Bridge" Aller au "Pont" - + Go to "Pre-Chorus" Aller au "Pré-Refrain" - + Go to "Intro" Aller à "Intro" - + Go to "Ending" Aller à "Fin" - + Go to "Other" Aller à "Autre" - + Previous Slide Diapositive précédente - + Next Slide Diapositive suivante - + Pause Audio Pause Audio - + Background Audio Audio en fond - + Go to next audio track. Aller à la piste audio suivante. - + Tracks Pistes @@ -4525,17 +4474,17 @@ Continue saving? OpenLP.SpellTextEdit - + Spelling Suggestions Suggestions orthographiques - + Formatting Tags Tags de formatage - + Language: Langue : @@ -4543,67 +4492,67 @@ Continue saving? OpenLP.StartTimeForm - + Hours: Heures : - + Minutes: Minutes : - + Seconds: Secondes : - + Item Start and Finish Time Temps de début et de fin de l'élément - + Start Début - + Finish Fini - + Length Longueur - + Time Validation Error Erreur de validation du temps - + Finish time is set after the end of the media item Le temps de fin est défini après la fin de l’élément média - + Start time is after the finish time of the media item Le temps de début est après le temps de fin de l'élément média - + Theme Layout Disposition du thème - + The blue box shows the main area. La boîte bleu indique la zone principale. - + The red box shows the footer. La boîte rouge indique la zone de pied de page. @@ -4611,198 +4560,198 @@ Continue saving? OpenLP.ThemeManager - + Create a new theme. Crée un nouveau thème. - + Edit Theme Édite le thème - + Edit a theme. Édite un thème. - + Delete Theme Supprime le thème - + Delete a theme. Supprime un thème. - + Import Theme Import le thème - + Import a theme. Import un thème. - + Export Theme Export le thème - + Export a theme. Export un thème. - + &Edit Theme &Édite le thème - + &Delete Theme &Supprime le thème - + Set As &Global Default Définir comme défaut &Global - + %s (default) %s (défaut) - + You must select a theme to edit. Vous devez sélectionner un thème à éditer. - + You are unable to delete the default theme. Vous ne pouvez pas supprimer le thème par défaut. - + Theme %s is used in the %s plugin. Le Thème %s est utilisé par le module %s. - + You have not selected a theme. Vous n'avez pas sélectionner de thème. - + Save Theme - (%s) Enregistre le thème - (%s) - + Theme Exported Thème exporté - + Your theme has been successfully exported. Votre thème a été exporté avec succès. - + Theme Export Failed L'export du thème a échoué - + Your theme could not be exported due to an error. Votre thème ne peut pas être exporté à cause d'une erreur. - + Select Theme Import File Sélectionner le fichier thème à importer - + File is not a valid theme. Le fichier n'est pas un thème valide. - + &Copy Theme &Copie le thème - + &Rename Theme &Renomme le thème - + &Export Theme &Exporte le thème - + You must select a theme to rename. Vous devez sélectionner un thème à renommer. - + Rename Confirmation Confirme le renommage - + Rename %s theme? Renomme le thème %s ? - + You must select a theme to delete. Vous devez sélectionner un thème à supprimer. - + Delete Confirmation Confirmation de suppression - + Delete %s theme? Supprime le thème %s ? - + Validation Error Erreur de validation - + A theme with this name already exists. Un autre thème porte déjà ce nom. - + OpenLP Themes (*.theme *.otz) Thèmes OpenLP (*.theme *.otz) - + Copy of %s Copy of <theme name> Copie de %s - + Theme Already Exists Le thème existe déjà - + Theme %s already exists. Do you want to replace it? @@ -4810,312 +4759,312 @@ Continue saving? OpenLP.ThemeWizard - + Theme Wizard Assistant de thème - + Welcome to the Theme Wizard Bienvenue dans l'assistant de thème - + Set Up Background Choisir le font - + Set up your theme's background according to the parameters below. Choisir le fond de votre thème à l'aide des paramètres ci-dessous. - + Background type: Type de fond : - + Solid Color Couleur unie - + Gradient Dégradé - + Color: Couleur : - + Gradient: Dégradé : - + Horizontal Horizontal - + Vertical Vertical - + Circular Circulaire - + Top Left - Bottom Right Haut gauche - Bas droite - + Bottom Left - Top Right Bas gauche - Haut droite - + Main Area Font Details Détails de la police de la zone principale - + Define the font and display characteristics for the Display text Définir la police et les caractéristique d'affichage de ce texte - + Font: Police : - + Size: Taille : - + Line Spacing: Espace entre les lignes : - + &Outline: &Contour : - + &Shadow: &Ombre : - + Bold Gras - + Italic Italique - + Footer Area Font Details Détails de la police de la zone du pied de page - + Define the font and display characteristics for the Footer text Définir la police et les caractéristiques d'affichage du texte de pied de page - + Text Formatting Details Détails de formatage du texte - + Allows additional display formatting information to be defined Permet de définir des paramètres d'affichage supplémentaires - + Horizontal Align: Alignement horizontal : - + Left Gauche - + Right Droite - + Center Centré - + Output Area Locations Emplacement de la zone d'affichage - + Allows you to change and move the main and footer areas. Permet de déplacer les zones principale et de pied de page. - + &Main Area Zone &principale - + &Use default location &Utilise l'emplacement par défaut - + X position: Position x : - + px px - + Y position: Position y : - + Width: Largeur : - + Height: Hauteur : - + Use default location Utilise l'emplacement par défaut - + Theme name: Nom du thème : - + Edit Theme - %s Édite le thème - %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. Cet assistant vous permet de créer et d'éditer vos thèmes. Cliquer sur le bouton suivant pour démarrer le processus en choisissant votre fond. - + Transitions: Transitions : - + &Footer Area Zone de &pied de page - + Starting color: Couleur de début : - + Ending color: Couleur de fin : - + Background color: Couleur de fond : - + Justify Justifier - + Layout Preview Prévisualise la mise en page - + Transparent Transparent - + Preview and Save Prévisualiser et Sauvegarder - + Preview the theme and save it. Prévisualiser le thème et le sauvegarder. - + (approximately %d lines per slide) - + Background Image Empty - + You have not selected a background image. Please select one before continuing. - + Select Image - + Theme Name Missing - + There is no name for this theme. Please enter one. - + Theme Name Invalid - + Invalid theme name. Please enter one. @@ -5123,47 +5072,47 @@ Continue saving? OpenLP.ThemesTab - + Global Theme Thème global - + Theme Level Politique d'application du thème - + S&ong Level Niveau &chant - + 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. Utilise le thème pour chaque chants de la base de données. Si un chant n'a pas de thème associé, le thème du service est utilisé. Si le service n'a pas de thème, le thème global est utilisé. - + &Service Level Niveau &service - + 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. Utilise le thème du service, surcharge le thème de chaque chants. Si le service n'a pas de thème, le thème global est utilisé. - + &Global Level Niveau &global - + Use the global theme, overriding any themes associated with either the service or the songs. Utilise le thème global, surcharge tous les thèmes associés aux services ou aux chants. - + Themes Thèmes @@ -5171,315 +5120,315 @@ Continue saving? OpenLP.Ui - + Error Erreur - + About À propos - + &Add &Ajoute - + Advanced Avancé - + All Files Tous les Fichiers - + Bottom Bas - + Browse... Parcourir... - + Cancel Annuler - + CCLI number: Numéro CCLI : - + Create a new service. Crée un nouveau service. - + &Delete &Supprime - + &Edit &Édite - + Empty Field Champ vide - + Export Export - + pt Abbreviated font pointsize unit pt - + Image Image - + Import Import - + Live Direct - + Live Background Error Erreur de fond du direct - + Load Charge - + Middle Milieu - + New Nouveau - + New Service Nouveau service - + New Theme Nouveau thème - + No File Selected Singular Pas de fichier sélectionné - + No Files Selected Plural Aucun fichiers sélectionnés - + No Item Selected Singular Aucun élément sélectionné - + No Items Selected Plural Aucun éléments sélectionnés - + openlp.org 1.x openlp.org 1.x - + OpenLP 2.0 OpenLP 2.0 - + Preview Prévisualisation - + Replace Background Remplace le fond - + Reset Background Réinitialiser le fond - + s The abbreviated unit for seconds s - + Save && Preview Enregistre && prévisualise - + Search Recherche - + You must select an item to delete. Vous devez sélectionner un élément à supprimer. - + You must select an item to edit. Vous devez sélectionner un élément à éditer. - + Save Service Enregistre le service - + Service Service - + Start %s Début %s - + Theme Singular Thème - + Themes Plural Thèmes - + Top Haut - + Version Version - + Delete the selected item. Supprime l'élément sélectionné. - + Move selection up one position. Déplace la sélection d'une position vers le haut. - + Move selection down one position. Déplace la sélection d'une position vers le bas. - + &Vertical Align: Alignement &vertical : - + Finished import. Import terminé. - + Format: Format : - + Importing Import en cours - + Importing "%s"... Importation de "%s"... - + Select Import Source Sélectionnez la source à importer - + Select the import format and the location to import from. Sélectionne le format d'import et le chemin du fichier à importer. - + 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. L'import openlp.org 1.x a été désactivé parce qu'il manque un module Python. Si vous voulez utiliser cet import, vous devez installer le module Python "python-sqlite". - + Open %s File Ouvre le fichier %s - + %p% %p% - + Ready. Prêt. - + Starting import... Commence l'import... - + You need to specify at least one %s file to import from. A file type e.g. OpenSong Vous devez spécifier au moins un fichier de %s à importer. @@ -5490,278 +5439,278 @@ Continue saving? Bienvenue dans l'assistant d'import de Bible - + Welcome to the Song Export Wizard Bienvenue dans l'assistant d'export de Chant - + Welcome to the Song Import Wizard Bienvenue dans l'assistant d'import de Chant - + Author Singular Auteur - + Authors Plural Auteurs - + © Copyright symbol. © - + Song Book Singular Carnet de chants - + Song Books Plural Carnets de chants - + Song Maintenance Entretien des Chants - + Topic Singular Sujet - + Topics Plural Sujets - + Continuous Continu - + Default Défaut - + Display style: Style d'affichage : - + Duplicate Error Erreur de duplication - + File Fichier - + Help Aide - + h The abbreviated unit for hours h - + Layout style: Type de disposition : - + Live Toolbar Bar d'outils direct - + m The abbreviated unit for minutes m - + OpenLP is already running. Do you wish to continue? OpenLP est déjà en cours d'utilisation. Voulez-vous continuer ? - + Settings Configuration - + Tools Outils - + Unsupported File Fichier non supporté - + Verse Per Slide Un verset par diapositive - + Verse Per Line Un verset par ligne - + View Affiche - + Title and/or verses not found Titre et/ou paragraphe non trouvé - + XML syntax error Erreur de syntaxe XML - + View Mode Mode d'affichage - + Open service. Ouvre le service. - + Print Service Imprime le service - + Replace live background. Remplace le fond du direct. - + Reset live background. Restaure le fond du direct. - + Split a slide into two only if it does not fit on the screen as one slide. Divisez la diapositive en deux seulement si elle ne loge pas sur l'écran. - + Welcome to the Bible Upgrade Wizard Bienvenue dans l'assistant de mise à jour de Bible - + Confirm Delete Confirme la suppression - + Play Slides in Loop Affiche les diapositives en boucle - + Play Slides to End Affiche les diapositives jusqu’à la fin - + Stop Play Slides in Loop Arrête la boucle de diapositive - + Stop Play Slides to End Arrête la boucle de diapositive à la fin - + Next Track Piste suivante - + Search Themes... Search bar place holder text Recherche dans les thèmes... - + Optional &Split Optionnel &Partager - + Invalid Folder Selected Singular Dossier sélectionné invalide - + Invalid File Selected Singular Fichier sélectionné invalide - + Invalid Files Selected Plural Fichiers sélectionnés invalides - + No Folder Selected Singular Aucun dossier sélectionné - + Open %s Folder Ouvrir le dossier %s - + You need to specify one %s file to import from. A file type e.g. OpenSong Vous devez spécifier un fichier %s à importer. - + You need to specify one %s folder to import from. A song format e.g. PowerSong Vous devez spécifier un dossier %s à importer. - + Importing Songs @@ -5769,25 +5718,25 @@ Continue saving? OpenLP.core.lib - + %1 and %2 Locale list separator: 2 items %1 et %2 - + %1, and %2 Locale list separator: end %1, et %2 - + %1, %2 Locale list separator: middle %1, %2 - + %1, %2 Locale list separator: start %1, %2 @@ -5796,50 +5745,50 @@ Continue saving? 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>Module de présentation</strong><br />Le module de présentation permet d'afficher des présentations issues d'autres logiciels. La liste des logiciels disponibles se trouve dans les options d'OpenLP rubrique Présentation. - + Presentation name singular Présentation - + Presentations name plural Présentations - + Presentations container title Présentations - + Load a new presentation. Charge une nouvelle présentation. - + Delete the selected presentation. Supprime la présentation sélectionnée. - + Preview the selected presentation. Prévisualise la présentation sélectionnée. - + Send the selected presentation live. Envoie la présentation sélectionnée au direct. - + Add the selected presentation to the service. Ajoute la présentation sélectionnée au service. @@ -5847,52 +5796,52 @@ Continue saving? PresentationPlugin.MediaItem - + Select Presentation(s) Sélectionne un(des) Présentation(s) - + Automatic Automatique - + Present using: Actuellement utilisé : - + File Exists Ce fichier existe - + A presentation with that filename already exists. Une présentation utilise déjà ce nom de fichier. - + This type of presentation is not supported. Ce type de présentation n'est pas supporté. - + Presentations (%s) Présentations (%s) - + Missing Presentation Présentation manquante - + The presentation %s is incomplete, please reload. La présentation %s est incomplète, veuillez la recharger. - + The presentation %s no longer exists. La présentation %s n'existe plus. @@ -5900,17 +5849,17 @@ Continue saving? PresentationPlugin.PresentationTab - + Available Controllers Logiciels de présentation disponibles - + %s (unavailable) %s (non disponible) - + Allow presentation application to be overridden Autoriser l'application de présentation à être surcharger @@ -5918,24 +5867,24 @@ Continue saving? 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>Module Contrôle à distance</strong><br />Le module de contrôle à distance permet d'envoyer des messages à une instance d'OpenLP fonctionnant sur un autre ordinateur au moyen d'une interface web ou au travers d'une API. - + Remote name singular Connexion à distance - + Remotes name plural Contrôles à distance - + Remote container title Contrôle à distance @@ -5944,150 +5893,160 @@ Continue saving? RemotePlugin.Mobile - + OpenLP 2.0 Remote OpenLP 2.0 Contrôle à distance - + OpenLP 2.0 Stage View OpenLP 2.0 Prompteur - + Service Manager Gestionnaire de services - + Slide Controller Contrôleur de diapositive - + Alerts Alertes - + Search Recherche - + Refresh Rafraîchir - + Blank Vide - + Show Affiche - + Prev Préc - + Next Suiv - + Text Texte - + Show Alert Affiche une alerte - + Go Live Lance le direct - + No Results Pas de résultats - + Options Options - + Add to Service Ajoute au service - + Home Accueil - + Theme Thème - + Desktop Bureau - + Add &amp; Go to Service Ajouter &amp; Se rendre au Service + + + Service + Service + + + + Slides + + RemotePlugin.RemoteTab - + Serve on IP address: Ecoute sur l'adresse IP : - + Port number: Numéro de port : - + Server Settings Configuration du serveur - + Remote URL: URL du contrôle à distance : - + Stage view URL: URL du Prompteur : - + Display stage time in 12h format Affiche l'heure du prompteur au format 12h - + Android App Application Android - + Scan the QR code or click <a href="https://play.google.com/store/apps/details?id=org.openlp.android">download</a> to install the Android app from Google Play. @@ -6095,85 +6054,85 @@ Continue saving? SongUsagePlugin - + &Song Usage Tracking Suivre de l'utilisation des &chants - + &Delete Tracking Data &Supprime les données de suivi - + Delete song usage data up to a specified date. Supprime les données de l'utilisation des chants jusqu'à une date donnée. - + &Extract Tracking Data &Extraire les données de suivi - + Generate a report on song usage. Génère un rapport de l'utilisation des chants. - + Toggle Tracking Activer/Désactiver le suivi - + Toggle the tracking of song usage. Active/Désactive le suivi de l'utilisation des chants. - + <strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services. <strong>Module de suivi des chants</strong><br />Ce module permet d'effectuer des statistiques sur la projection des chants. - + SongUsage name singular Suivi de l'utilisation des chants - + SongUsage name plural Suivi de l'utilisation des chants - + SongUsage container title Suivi de l'utilisation des chants - + Song Usage Suivi de l'utilisation des chants - + Song usage tracking is active. Le suivi de l'utilisation des chants est actif. - + Song usage tracking is inactive. Le suivi de l'utilisation des chants est inactif. - + display affiche - + printed imprimé @@ -6181,32 +6140,32 @@ Continue saving? SongUsagePlugin.SongUsageDeleteForm - + Delete Song Usage Data Supprime les données de suivi de l'utilisation des chants - + Delete Selected Song Usage Events? Supprime les événements sélectionné ? - + Are you sure you want to delete selected Song Usage data? Êtes vous sur de vouloir supprimer les données de suivi sélectionnées ? - + Deletion Successful Suppression effectuée - + All requested data has been deleted successfully. Toutes les données demandées ont été supprimées avec succès. - + Select the date up to which the song usage data should be deleted. All data recorded before this date will be permanently deleted. Sélectionnez la date jusqu'à laquelle les données d'utilisation des chants devra être supprimé. Toutes les données enregistrées avant cette date seront définitivement supprimées. @@ -6214,42 +6173,42 @@ Continue saving? SongUsagePlugin.SongUsageDetailForm - + Song Usage Extraction Extraction de l'utilisation des chants - + Select Date Range Sélectionne une période - + to à - + Report Location Emplacement du rapport - + Output File Location Emplacement du fichier de sortie - + usage_detail_%s_%s.txt rapport_d_utilisation_%s_%s.txt - + Report Creation Création du rapport - + Report %s has been successfully created. @@ -6258,12 +6217,12 @@ has been successfully created. à été crée avec succès. - + Output Path Not Selected Répertoire de destination non sélectionné - + You have not set a valid output location for your song usage report. Please select an existing path on your computer. Vous n'avez pas défini de répertoire de destination valide pour votre rapport d'utilisation des chants. Veuillez sélectionner un répertoire existant sur votre ordinateur. @@ -6271,112 +6230,112 @@ has been successfully created. SongsPlugin - + &Song &Chant - + Import songs using the import wizard. Import des chants en utilisant l'assistant d'import. - + <strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs. <strong>Module Chants</strong><br />Le module Chants permet d'afficher et de gérer des chants. - + &Re-index Songs &Ré-indexation des Chants - + Re-index the songs database to improve searching and ordering. Ré-indexation de la base de données des chants pour accélérer la recherche et le tri. - + Reindexing songs... Ré-indexation des chants en cours... - + Arabic (CP-1256) Arabe (CP-1256) - + Baltic (CP-1257) Baltique (CP-1257) - + Central European (CP-1250) Europe centrale (CP-1250) - + Cyrillic (CP-1251) Cyrillique (CP-1251) - + Greek (CP-1253) Grecque (CP-1253) - + Hebrew (CP-1255) Hébreux (CP-1255) - + Japanese (CP-932) Japonais (CP-932) - + Korean (CP-949) Coréen (CP-949) - + Simplified Chinese (CP-936) Chinois simplifié (CP-936) - + Thai (CP-874) Thaï (CP-874) - + Traditional Chinese (CP-950) Chinois Traditionnel (CP-950) - + Turkish (CP-1254) Turque (CP-1254) - + Vietnam (CP-1258) Vietnamiens (CP-1258) - + Western European (CP-1252) Europe de l'ouest (CP-1252) - + Character Encoding Encodage des caractères - + The codepage setting is responsible for the correct character representation. Usually you are fine with the preselected choice. @@ -6385,67 +6344,67 @@ permet un affichage correct des caractères. L'option déjà sélectionnée est en général la bonne. - + Please choose the character encoding. The encoding is responsible for the correct character representation. Veuillez choisir l'encodage des caractères. L'encodage permet un affichage correct des caractères. - + Song name singular Chant - + Songs name plural Chants - + Songs container title Chants - + Exports songs using the export wizard. Export des chants en utilisant l'assistant d'export. - + Add a new song. Ajoute un nouveau chant. - + Edit the selected song. Édite le chant sélectionné. - + Delete the selected song. Supprime le chant sélectionné. - + Preview the selected song. Prévisualise le chant sélectionné. - + Send the selected song live. Envoie le chant sélectionné au direct. - + Add the selected song to the service. Ajoute le chant sélectionné au service. - + Reindexing songs @@ -6453,37 +6412,37 @@ L'encodage permet un affichage correct des caractères. SongsPlugin.AuthorsForm - + Author Maintenance Auteur de maintenance - + Display name: Nom affiché : - + First name: Prénom : - + Last name: Nom : - + You need to type in the first name of the author. Vous devez entrer le prénom de l'auteur. - + You need to type in the last name of the author. Vous devez entrer le nom de l'auteur. - + You have not set a display name for the author, combine the first and last names? Nous n'avez pas défini de nom à afficher pour l'auteur, combiner le prénom et le nom ? @@ -6491,7 +6450,7 @@ L'encodage permet un affichage correct des caractères. SongsPlugin.CCLIFileImport - + The file does not have a valid extension. Le fichier a une extension non valide. @@ -6499,12 +6458,12 @@ L'encodage permet un affichage correct des caractères. SongsPlugin.EasyWorshipSongImport - + Administered by %s Administré par %s - + [above are Song Tags with notes imported from EasyWorship] @@ -6516,12 +6475,12 @@ L'encodage permet un affichage correct des caractères. SongsPlugin.EditBibleForm - + Meta Data Méta données - + Custom Book Names Noms de livres personnalisés @@ -6529,202 +6488,202 @@ L'encodage permet un affichage correct des caractères. SongsPlugin.EditSongForm - + Song Editor Éditeur de Chant - + &Title: &Titre : - + Alt&ernate title: Titre alt&ernatif : - + &Lyrics: &Paroles : - + &Verse order: Ordre des &paragraphes : - + Ed&it All Édite &tous - + Title && Lyrics Titre && paroles - + &Add to Song &Ajoute au Chant - + &Remove &Supprime - + &Manage Authors, Topics, Song Books &Gère les auteurs, sujets, Carnets de chants - + A&dd to Song A&joute au Chant - + R&emove &Supprime - + Book: Carnet de chants : - + Number: Numéro : - + Authors, Topics && Song Book Auteurs, sujets && Carnet de chants - + New &Theme Nouveau &thème - + Copyright Information Information du copyright - + Comments Commentaires - + Theme, Copyright Info && Comments Thème, copyright && commentaires - + Add Author Ajoute un auteur - + This author does not exist, do you want to add them? Cet auteur n'existe pas, voulez-vous l'ajouter ? - + This author is already in the list. Cet auteur ce trouve déjà dans la liste. - + 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. Vous n'avez pas sélectionné un auteur valide. Vous pouvez sélectionner un auteur dans la liste, ou entrer le nom d'un nouvel auteur et cliquez sur "Ajouter un auteur au Chant". - + Add Topic Ajoute un sujet - + This topic does not exist, do you want to add it? Ce sujet n'existe pas voulez-vous l'ajouter ? - + This topic is already in the list. Ce sujet ce trouve déjà dans la liste. - + 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. Vous n'avez pas sélectionné de sujet valide. Vous pouvez sélectionner un sujet dans la liste, ou entrer le nom d'un nouveau sujet et cliquez sur "Ajouter un sujet au Chant". - + You need to type in a song title. Vous devez entrer un titre pour ce chant. - + You need to type in at least one verse. Vous devez entrer au moins un paragraphe. - + The verse order is invalid. There is no verse corresponding to %s. Valid entries are %s. L'ordre des paragraphes est invalide. Il n'y a pas de paragraphe correspondant à %s. Les entrées valides sont %s. - + Add Book Ajoute un Carnet de chants - + This song book does not exist, do you want to add it? Ce carnet de chants n'existe pas, voulez-vous l'ajouter ? - + You need to have an author for this song. Vous devez entrer un auteur pour ce chant. - + Linked Audio Fichier audio attaché - + Add &File(s) Ajoute un(des) &fichier(s) - + Add &Media Ajoute un &média - + Remove &All Supprime &tout - + Open File(s) Ouvre un(des) fichier(s) - + <strong>Warning:</strong> Not all of the verses are in use. <strong>Attention :</strong> Tous les versets ne sont pas utilisés. - + The verse order is invalid. There are no verses corresponding to %s. Valid entries are %s. L'ordre des versets est invalide. Aucun verset ne correspond à %s. Les entrées valides sont %s. @@ -6732,22 +6691,22 @@ L'encodage permet un affichage correct des caractères. SongsPlugin.EditVerseForm - + Edit Verse Édite le paragraphe - + &Verse type: &Type de paragraphe : - + &Insert &Insère - + Split a slide into two by inserting a verse splitter. Divise une diapositive en deux en insérant un séparateur de paragraphe. @@ -6755,82 +6714,82 @@ L'encodage permet un affichage correct des caractères. SongsPlugin.ExportWizardForm - + Song Export Wizard Assistant d'export de chant - + Select Songs Sélectionne des chants - + Check the songs you want to export. Coche les chants que vous voulez exporter. - + Uncheck All Décoche tous - + Check All Coche tous - + Select Directory Sélectionne un répertoire - + Directory: Répertoire : - + Exporting Exportation - + Please wait while your songs are exported. Merci d'attendre que vos chants soient exportés. - + You need to add at least one Song to export. Vous devez exporter au moins un chant. - + No Save Location specified Aucun emplacement de sauvegarde défini - + Starting export... Démarre l'export... - + You need to specify a directory. Vous devez spécifier un répertoire. - + Select Destination Folder Sélectionne le répertoire de destination - + Select the directory where you want the songs to be saved. Sélectionne le répertoire où vous voulez enregistrer vos chants. - + This wizard will help to export your songs to the open and free <strong>OpenLyrics</strong> worship song format. Cet assistant vous permet d'exporter vos chants dans le format de chants de louange libre et gratuit <strong>OpenLyrics</strong>. @@ -6838,172 +6797,172 @@ L'encodage permet un affichage correct des caractères. SongsPlugin.ImportWizardForm - + Select Document/Presentation Files Sélectionne les fichiers Document/Présentation - + Song Import Wizard Assistant d'import de Chant - + 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. Cet assistant vous permet d'importer des chants de divers formats. Cliquez sur le bouton suivant ci-dessous pour démarrer le processus en sélectionnant le format à importer. - + Generic Document/Presentation Document/Présentation générique - + Add Files... Ajoute des fichiers... - + Remove File(s) Supprime un(des) fichier(s) - + Please wait while your songs are imported. Veuillez patienter pendant l'import de vos chants. - + OpenLP 2.0 Databases Base de données OpenLP 2.0 - + openlp.org v1.x Databases Base de données openlp.org 1.x - + Words Of Worship Song Files Fichiers Chant Words Of Worship - + Songs Of Fellowship Song Files Fichiers Chant Songs Of Fellowship - + SongBeamer Files Fichiers SongBeamer - + SongShow Plus Song Files Fichiers Chant SongShow Plus - + Foilpresenter Song Files Fichiers Chant Foilpresenter - + Copy Copier - + Save to File Enregistre dans le fichier - + The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. L'import de chants Fellowship a été désactivé car OpenLP ne peut accéder à OpenOffice ou LibreOffice. - + The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. L'import générique de document/présentation a été désactivé car OpenLP ne peut accéder à OpenOffice ou LibreOffice. - + OpenLyrics or OpenLP 2.0 Exported Song Chant exporté OpenLyrics ou OpenLP 2.0 - + OpenLyrics Files Fichiers OpenLyrics - + CCLI SongSelect Files CCLI Song Sélectionner Fichiers - + EasySlides XML File Fichier XML EasySlides - + EasyWorship Song Database Base de données de chants d'EasyWorship - + DreamBeam Song Files Fichiers chants DreamBeam - + You need to specify a valid PowerSong 1.0 database folder. Vous devez spécifier un dossier de données PowerSong 1.0 valide. - + 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>. - + SundayPlus Song Files Fichier chants SundayPlus - + This importer has been disabled. - + MediaShout Database - + The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. - + SongPro Text Files - + SongPro (Export File) - + In SongPro, export your songs using the File -> Export menu @@ -7011,12 +6970,12 @@ L'encodage permet un affichage correct des caractères. SongsPlugin.MediaFilesForm - + Select Media File(s) Sélectionne un(des) fichier(s) média - + Select one or more audio files from the list below, and click OK to import them into this song. Sélectionnez un ou plusieurs fichier depuis la liste ci-dessous, et cliquez sur le bouton OK pour les importer dans ce chant. @@ -7034,7 +6993,7 @@ L'encodage permet un affichage correct des caractères. Paroles - + CCLI License: Licence CCLI : @@ -7044,7 +7003,7 @@ L'encodage permet un affichage correct des caractères. Chant entier - + Are you sure you want to delete the %n selected song(s)? Êtes-vous sûr de vouloir supprimer le chant %n sélectionné ? @@ -7057,7 +7016,7 @@ L'encodage permet un affichage correct des caractères. Maintenir la liste des auteurs, sujets et carnets de chants. - + copy For song cloning copier @@ -7091,7 +7050,7 @@ L'encodage permet un affichage correct des caractères. SongsPlugin.MediaShoutImport - + Unable to open the MediaShout database. @@ -7099,7 +7058,7 @@ L'encodage permet un affichage correct des caractères. SongsPlugin.OpenLP1SongImport - + Not a valid openlp.org 1.x song database. Base de données de chant openlp.org 1.x invalide. @@ -7107,7 +7066,7 @@ L'encodage permet un affichage correct des caractères. SongsPlugin.OpenLPSongImport - + Not a valid OpenLP 2.0 song database. Base de données de chant OpenLP.org 2.0 invalide. @@ -7115,7 +7074,7 @@ L'encodage permet un affichage correct des caractères. SongsPlugin.OpenLyricsExport - + Exporting "%s"... Exportation "%s"... @@ -7123,32 +7082,32 @@ L'encodage permet un affichage correct des caractères. SongsPlugin.PowerSongImport - + No songs to import. Aucun chant à importer. - + Verses not found. Missing "PART" header. Versets non trouvé. Entête "PART" manquante. - + No %s files found. - + Invalid %s file. Unexpected byte value. - + Invalid %s file. Missing "TITLE" header. - + Invalid %s file. Missing "COPYRIGHTLINE" header. @@ -7156,22 +7115,22 @@ L'encodage permet un affichage correct des caractères. SongsPlugin.SongBookForm - + Song Book Maintenance Maintenance du Carnet de chants - + &Name: &Nom : - + &Publisher: &Éditeur : - + You need to type in a name for the book. Vous devez entrer un nom pour le carnet de chants. @@ -7179,12 +7138,12 @@ L'encodage permet un affichage correct des caractères. SongsPlugin.SongExportForm - + Your song export failed. Votre export de chant a échoué. - + Finished export. To import these files use the <strong>OpenLyrics</strong> importer. Export terminé. Pour importer ces fichiers utilisez l’outil d'import <strong>OpenLyrics</strong>. @@ -7192,27 +7151,27 @@ L'encodage permet un affichage correct des caractères. SongsPlugin.SongImport - + copyright copyright - + The following songs could not be imported: Les chants suivants ne peuvent être importé : - + Cannot access OpenOffice or LibreOffice Impossible d’accéder à OpenOffice ou LibreOffice - + Unable to open file Impossible d'ouvrir le fichier - + File not found Fichier non trouvé @@ -7220,107 +7179,107 @@ L'encodage permet un affichage correct des caractères. SongsPlugin.SongMaintenanceForm - + Could not add your author. Impossible d'ajouter votre auteur. - + This author already exists. Cet auteur existe déjà. - + Could not add your topic. Impossible d'ajouter votre sujet. - + This topic already exists. Ce sujet existe déjà. - + Could not add your book. Impossible d'ajouter votre carnet de chants. - + This book already exists. Ce carnet de chants existe déjà. - + Could not save your changes. Impossible d'enregistrer vos modifications. - + Could not save your modified author, because the author already exists. Impossible d'enregistrer vos modifications de l'auteur, car l'auteur existe déjà. - + Could not save your modified topic, because it already exists. Impossible d'enregistrer vos modifications du sujet, car le sujet existe déjà. - + Delete Author Supprime l'auteur - + Are you sure you want to delete the selected author? Êtes-vous sûr de bien vouloir supprimer l'auteur sélectionné ? - + This author cannot be deleted, they are currently assigned to at least one song. Cet auteur ne peut être supprimé, il est actuellement utilisé par au moins un chant. - + Delete Topic Supprime le sujet - + Are you sure you want to delete the selected topic? Êtes-vous sûr de bien vouloir supprimer le sujet sélectionné ? - + This topic cannot be deleted, it is currently assigned to at least one song. Ce sujet ne peut être supprimé, il est actuellement utilisé par au moins un chant. - + Delete Book Supprime le carnet de chants - + Are you sure you want to delete the selected book? Êtes-vous sûr de bien vouloir supprimer le carnet de chants sélectionné ? - + This book cannot be deleted, it is currently assigned to at least one song. Ce carnet de chants ne peut être supprimé, il est actuellement utilisé par au moins un chant. - + The author %s already exists. Would you like to make songs with author %s use the existing author %s? L'auteur %s existe déjà. Voulez-vous faire en sorte que les chants avec l'auteur %s utilise l'auteur existant %s ? - + The topic %s already exists. Would you like to make songs with topic %s use the existing topic %s? Le sujet %s existe déjà. Voulez-vous faire en sorte que les chants avec le sujet %s utilise le sujet existant %s ? - + The book %s already exists. Would you like to make songs with book %s use the existing book %s? Le carnet de chants %s existe déjà. Voulez-vous faire en sorte que les chants du carnet de chants %s utilisent le carnet de chants existant %s ? @@ -7328,27 +7287,27 @@ L'encodage permet un affichage correct des caractères. SongsPlugin.SongsTab - + Songs Mode Options de Chants - + Enable search as you type Active la recherche à la frappe - + Display verses on live tool bar Affiche les paragraphes dans la barre d'outils du direct - + Update service from song edit Mettre à jour le service après une modification de chant - + Import missing songs from service files Importer les chants manquant des fichiers du service @@ -7356,17 +7315,17 @@ L'encodage permet un affichage correct des caractères. SongsPlugin.TopicsForm - + Topic Maintenance Maintenance des sujets - + Topic name: Nom du sujet : - + You need to type in a topic name. Vous devez entrer un nom de sujet. @@ -7374,37 +7333,37 @@ L'encodage permet un affichage correct des caractères. SongsPlugin.VerseType - + Verse Couplet - + Chorus Refrain - + Bridge Pont - + Pre-Chorus F-Pré-refrain - + Intro Introduction - + Ending Fin - + Other Autre @@ -7412,27 +7371,27 @@ L'encodage permet un affichage correct des caractères. SongsPlugin.ZionWorxImport - + Error reading CSV file. Impossible de lire le fichier CSV. - + File not valid ZionWorx CSV format. Format de fichier CSV ZionWorx invalide. - + Line %d: %s - + Decoding error: %s - + Record %d diff --git a/resources/i18n/hu.ts b/resources/i18n/hu.ts index 152b8fbc5..0a5e5a570 100644 --- a/resources/i18n/hu.ts +++ b/resources/i18n/hu.ts @@ -3,35 +3,35 @@ AlertsPlugin - + &Alert &Értesítés - + Show an alert message. Értesítést jelenít meg. - + Alert name singular Értesítés - + Alerts name plural Értesítések - + Alerts container title Értesítések - + <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of nursery alerts on the display screen. <strong>Értesítés bővítmény</strong><br />Az értesítés bővítmény kezeli a gyermekfelügyelet felhívásait a vetítőn. @@ -39,69 +39,69 @@ AlertsPlugin.AlertForm - + Alert Message Értesítő üzenet - + Alert &text: Értesítés &szövege: - + &New &Új - + &Save &Mentés - + Displ&ay &Megjelenítés - + Display && Cl&ose M&egjelenítés és bezárás - + New Alert Új értesítés - + You haven't specified any text for your alert. Please type in some text before clicking New. Az értesítés szövege nincs megadva. Adj meg valamilyen szöveget az Új gombra való kattintás előtt. - + &Parameter: &Paraméter: - + No Parameter Found Nem található a paraméter - + You have not entered a parameter to be replaced. Do you want to continue anyway? Nincs megadva a cserélendő paraméter. Folytatható? - + No Placeholder Found Nem található a helyjelölő - + The alert text does not contain '<>'. Do you want to continue anyway? Az értesítő szöveg nem tartalmaz „<>” karaktereket. @@ -119,32 +119,32 @@ Folytatható? AlertsPlugin.AlertsTab - + Font Betűkészlet - + Font name: Betűkészlet neve: - + Font color: Betűszín: - + Background color: Háttérszín: - + Font size: Betűméret: - + Alert timeout: Értesítés időtartama: @@ -152,510 +152,510 @@ Folytatható? BiblesPlugin - + &Bible &Biblia - + Bible name singular Biblia - + Bibles name plural Bibliák - + Bibles container title Bibliák - + No Book Found Nincs ilyen könyv - + No matching book could be found in this Bible. Check that you have spelled the name of the book correctly. A kért könyv nem található ebben a bibliában. Kérlek, ellenőrizd a könyv nevének helyesírását. - + Import a Bible. Biblia importálása. - + Add a new Bible. Biblia hozzáadása. - + Edit the selected Bible. A kijelölt biblia szerkesztése. - + Delete the selected Bible. A kijelölt biblia törlése. - + Preview the selected Bible. A kijelölt biblia előnézete. - + Send the selected Bible live. A kijelölt biblia élő adásba küldése. - + Add the selected Bible to the service. A kijelölt biblia hozzáadása a szolgálati sorrendhez. - + <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display Bible verses from different sources during the service. <strong>Biblia bővítmény</strong><br />A biblia bővítmény különféle forrásokból származó igehelyek vetítését teszi lehetővé a szolgálat alatt. - + &Upgrade older Bibles &Régebbi bibliák frissítés - + Upgrade the Bible databases to the latest format. Frissíti a biblia adatbázisokat a legutolsó formátumra. - + Genesis Teremtés - + Exodus Kivonulás - + Leviticus Leviták - + Numbers Számok - + Deuteronomy Második törvénykönyv - + Joshua Józsué - + Judges Bírák - + Ruth Rút - + 1 Samuel 1. Sámuel - + 2 Samuel 2. Sámuel - + 1 Kings 1. Királyok - + 2 Kings 2. Királyok - + 1 Chronicles 1. Krónikák - + 2 Chronicles 2. Krónikák - + Ezra Ezdrás - + Nehemiah Nehemiás - + Esther Eszter - + Job Jób - + Psalms Zsoltárok - + Proverbs Példabeszédek - + Ecclesiastes Prédikátor - + Song of Solomon Énekek éneke - + Isaiah Izajás - + Jeremiah Jeremiás - + Lamentations Jeremiás siralmai - + Ezekiel Ezékiel - + Daniel Dániel - + Hosea Ozeás - + Joel Joel - + Amos Ámosz - + Obadiah Abdiás - + Jonah Jónás - + Micah Mikeás - + Nahum Náhum - + Habakkuk Habakuk - + Zephaniah Szofoniás - + Haggai Aggeus - + Zechariah Zakariás - + Malachi Malakiás - + Matthew Máté - + Mark Márk - + Luke Lukács - + John János - + Acts Apostolok cselekedetei - + Romans Római - + 1 Corinthians 1. Korintusi - + 2 Corinthians 2. Korintusi - + Galatians Galata - + Ephesians Efezusi - + Philippians Filippi - + Colossians Kolosszei - + 1 Thessalonians 1. Tesszaloniki - + 2 Thessalonians 2. Tesszaloniki - + 1 Timothy 1. Timóteus - + 2 Timothy 2. Timóteus - + Titus Titusz - + Philemon Filemon - + Hebrews Zsidók - + James Jakab - + 1 Peter 1. Péter - + 2 Peter 2. Péter - + 1 John 1. János - + 2 John 2. János - + 3 John 3. János - + Jude Júdás - + Revelation Jelenések - + Judith Judit - + Wisdom Bölcsesség - + Tobit Tóbiás - + Sirach Sirák fia - + Baruch Báruk - + 1 Maccabees 1. Makkabeusok - + 2 Maccabees 2. Makkabeusok - + 3 Maccabees 3. Makkabeusok - + 4 Maccabees 4. Makkabeusok - + Rest of Daniel Dániel maradék - + Rest of Esther Eszter maradék - + Prayer of Manasses Manassze imája - + Letter of Jeremiah Jeremiás levele - + Prayer of Azariah Azarja imája - + Susanna Zsuzsanna - + Bel Bél és a sárkány - + 1 Esdras Ezdrás - + 2 Esdras Nehemiás - + :|v|V|verse|verses;;-|to;;,|and;;end Double-semicolon delimited separators for parsing references. Consult the developers for further information. :|v|V|versszak|versszakok;;-;;,|és;;vége @@ -664,32 +664,32 @@ Folytatható? BiblesPlugin.BibleEditForm - + You need to specify a version name for your Bible. Meg kell adni a biblia verziószámát. - + You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. Meg kell adni a biblia szerzői jogait. A közkincsű bibliákat meg kell jelölni ilyennek. - + Bible Exists Létező Biblia - + This Bible already exists. Please import a different Bible or first delete the existing one. Ez a biblia már létezik. Kérlek, importálj egy másik bibliát vagy előbb töröld a meglévőt. - + You need to specify a book name for "%s". Meg kell adni a könyv nevét: %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 @@ Szám csak az elején lehet és ezt követni kell néhány nem numerikus karakternek. - + Duplicate Book Name Azonos könyvnév - + The Book Name "%s" has been entered more than once. E könyvnév többször lett megadva: %s. @@ -711,39 +711,39 @@ Szám csak az elején lehet és ezt követni kell BiblesPlugin.BibleManager - + Scripture Reference Error Igehely hivatkozási hiba - + Web Bible cannot be used Online biblia nem használható - + Text Search is not available with Web Bibles. A keresés nem érhető el online biblián. - + 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. Nincs megadva keresési kifejezés. Több kifejezés is megadható. Szóközzel történő elválasztás esetén minden egyes kifejezésre történik a keresés, míg vesszővel való elválasztás esetén csak az egyikre. - + There are no Bibles currently installed. Please use the Import Wizard to install one or more Bibles. Jelenleg nincs telepített biblia. Kérlek, használd a bibliaimportáló tündért bibliák telepítéséhez. - + No Bibles Available Nincsenek elérhető bibliák - + 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 @@ Könyv fejezet%(verse)svers%(range)sfejezet%(verse)svers BiblesPlugin.BiblesTab - + Verse Display Vers megjelenítés - + Only show new chapter numbers Csak az új fejezetszámok megjelenítése - + Bible theme: Biblia téma: - + No Brackets Nincsenek zárójelek - + ( And ) ( és ) - + { And } { és } - + [ And ] [ és ] - + Note: Changes do not affect verses already in the service. Megjegyzés: A módosítások nem érintik a már a szolgálati sorrendben lévő verseket. - + Display second Bible verses A második biblia verseinek megjelenítése - + Custom Scripture References Egyedi szentírási hivatkozások - + Verse Separator: Versek elválasztása: - + Range Separator: Tartományok elválasztása: - + List Separator: Felsorolások elválasztása: - + End Mark: Vég jelölése: - + 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 @@ Egy függőleges vonal („|”) szolgál az elválasztásukra. Üresen hagyva az alapértelmezett érték áll helyre. - + 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 @@ Egy függőleges vonal („|”) szolgál az elválasztásukra. Üresen hagyva az alapértelmezett érték áll helyre. - + 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 @@ Egy függőleges vonal („|”) szolgál az elválasztásukra. Üresen hagyva az alapértelmezett érték áll helyre. - + 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 @@ Egy függőleges vonal („|”) szolgál az elválasztásukra. Üresen hagyva az alapértelmezett érték áll helyre. - + English Angol - + Default Bible Language Alapértelmezett biblia nyelv - + Book name language in search field, search results and on display: A keresési mezőben, a találati sorrendben és a képernyőn megjelenő könyvnevek alapértelmezett nyelve: - + Bible Language Biblia nyelve - + Application Language Alkalmazás nyelve @@ -904,42 +904,42 @@ megjelenő könyvnevek alapértelmezett nyelve: BiblesPlugin.BookNameDialog - + Select Book Name Jelöld ki a könyv nevét - + Current name: Jelenlegi név: - + Corresponding name: Megfelelő név: - + Show Books From Könyvek megjelenítése - + Old Testament Ószövetség - + New Testament Újszövetség - + Apocrypha Apokrif - + The following book name cannot be matched up internally. Please select the corresponding name from the list. A következő könyvnév nem ismerhető fel. Jelölj ki egy helyes nevet a következő listából. @@ -947,7 +947,7 @@ megjelenő könyvnevek alapértelmezett nyelve: BiblesPlugin.BookNameForm - + You need to select a book. Ki kell jelölni egy könyvet. @@ -955,18 +955,18 @@ megjelenő könyvnevek alapértelmezett nyelve: BiblesPlugin.CSVBible - + Importing books... %s Könyvek importálása… %s - + Importing verses from %s... Importing verses from <book name>... Versek importálása ebből a könyvből: %s… - + Importing verses... done. Versek importálása… kész. @@ -974,69 +974,69 @@ megjelenő könyvnevek alapértelmezett nyelve: BiblesPlugin.EditBibleForm - + Bible Editor Biblia szerkesztő - + License Details Licenc részletek - + Version name: Veziónév: - + Copyright: Szerzői jog: - + Permissions: Engedélyek: - + Default Bible Language Alapértelmezett biblia nyelv - + Book name language in search field, search results and on display: A keresési mezőben, a találati sorrendben és a képernyőn megjelenő könyvnevek alapértelmezett nyelve: - + Global Settings Általános beállítások - + Bible Language Biblia nyelve - + Application Language Alkalmazás nyelve - + English Angol - + This is a Web Download Bible. It is not possible to customize the Book Names. Ez egy webes biblia. Nincs lehetőség a könyvnevek módosítására. - + 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. Az egyedi könyvnevek alkalmazásához a „Biblia nyelve” beállítást kell alkalmazni a metaadat fülön, vagy az „Általános beállítások” esetén az OpenLP beállításai között a „Biblia” lapon. @@ -1044,38 +1044,38 @@ Nincs lehetőség a könyvnevek módosítására. BiblesPlugin.HTTPBible - + Registering Bible and loading books... Biblia regisztrálása és a könyvek letöltése… - + Registering Language... Nyelv regisztrálása… - + Importing %s... Importing <book name>... Importálás: %s… - + Download Error Letöltési hiba - + There was a problem downloading your verse selection. Please check your Internet connection, and if this error continues to occur please consider reporting a bug. Probléma történt a kijelölt versek letöltésekor. Kérem, ellenőrizd a az internetkapcsolatot, és ha a hiba nem oldódik meg, fontold meg a hiba bejelentését. - + Parse Error Feldolgozási hiba - + There was a problem extracting your verse selection. If this error continues to occur please consider reporting a bug. Probléma történt a kiválasztott versek kicsomagolásakor. Ha a hiba nem oldódik meg, fontold meg a hiba bejelentését. @@ -1253,17 +1253,17 @@ demand and thus an internet connection is required. BiblesPlugin.LanguageDialog - + Select Language Nyelvválasztás - + OpenLP is unable to determine the language of this translation of the Bible. Please select the language from the list below. Az OpenLP nem képes megállapítani a bibliafordítás nyelvét. Kérem, válassz egy nyelvet az alábbi listából. - + Language: Nyelv: @@ -1271,7 +1271,7 @@ demand and thus an internet connection is required. BiblesPlugin.LanguageForm - + You need to choose a language. Ki kell jelölni egy nyelvet. @@ -1279,92 +1279,92 @@ demand and thus an internet connection is required. BiblesPlugin.MediaItem - + Quick Gyors - + Find: Keresés: - + Book: Könyv: - + Chapter: Fejezet: - + Verse: Vers: - + From: Innentől: - + To: Idáig: - + Text Search Szöveg keresése - + Second: Második: - + Scripture Reference Igehely hivatkozás - + Toggle to keep or clear the previous results. Átváltás az előző eredmény megőrzése, ill. törlése között. - + You cannot combine single and dual Bible verse search results. Do you want to delete your search results and start a new search? Az egyes és a kettőzött bibliaversek nem kombinálhatók. Töröljük a keresési eredményt és kezdjünk egy újabbat? - + Bible not fully loaded. A biblia nem töltődött be teljesen. - + Information Információ - + 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. A második biblia nem tartalmaz minden verset, ami az elsőben megtalálható. Csak a mindkét bibliában fellelhető versek fognak megjelenni. Ezek a versek nem lesznek megtalálhatóak: %d. - + Search Scripture Reference... Igehely keresése... - + Search Text... Szöveg keresése... - + Are you sure you want to completely delete "%s" Bible from OpenLP? You will need to re-import this Bible to use it again. @@ -1376,7 +1376,7 @@ Az esetleges újboli alkalmazásához újra be kell majd importálni. BiblesPlugin.OpenSongImport - + Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. A megadott Biblia fájl hibás. Az OpenSong bibliák lehet, hogy tömörítve vannak. Ki kell tömöríteni őket importálás előtt. @@ -1384,7 +1384,7 @@ Az esetleges újboli alkalmazásához újra be kell majd importálni. BiblesPlugin.Opensong - + Importing %s %s... Importing <book name> <chapter>... Importálás: %s %s… @@ -1393,12 +1393,12 @@ Az esetleges újboli alkalmazásához újra be kell majd importálni. BiblesPlugin.OsisImport - + Detecting encoding (this may take a few minutes)... Kódolás észlelése (ez eltarthat pár percig)… - + Importing %s %s... Importing <book name> <chapter>... Importálás: %s %s… @@ -1407,149 +1407,149 @@ Az esetleges újboli alkalmazásához újra be kell majd importálni. BiblesPlugin.UpgradeWizardForm - + Select a Backup Directory Jelölj ki egy mappát a biztonsági mentésnek - + Bible Upgrade Wizard Bibliafrissítő tündér - + 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. A tündér segít az OpenLP 2 korábbi verzióiból származó bibliák frissítésében. Kattints az alábbi Következő gombra a folyamat indításhoz. - + Select Backup Directory Biztonsági mentés mappája - + Please select a backup directory for your Bibles Jelölj ki egy mappát a bibliáid biztonsági mentésének - + 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>. Az OpenLP 2.0 előző verziói nem képesek a frissített bibliákat alkalmazni. Ez a tündér segít biztonsági mentést készíteni a jelenlegi bibliákról, így ha vissza kell térni az OpenLP egy régebbi verziójára, akkor ezeket csak be kell majd másolni az OpenLP adatmappájába. A helyreállítási tudnivalók a <a href="http://wiki.openlp.org/faq">Gyakran Ismételt Kérdések</a> között találhatók. - + Please select a backup location for your Bibles. Jelölj ki egy helyet a bibliáid biztonsági mentésének. - + Backup Directory: Biztonsági mentés helye: - + There is no need to backup my Bibles Nincs szükségem biztonsági másolatra - + Select Bibles Bibliák kijelölése - + Please select the Bibles to upgrade Jelöld ki a frissítendő bibliákat - + Upgrading Frissítés - + Please wait while your Bibles are upgraded. Kérlek, várj, míg a bibliák frissítés alatt állnak. - + The backup was not successful. To backup your Bibles you need permission to write to the given directory. A biztonsági mentés nem teljes. A bibliák biztonsági mentéséhez írási jogosultság szükséges a megadott mappára. - + Upgrading Bible %s of %s: "%s" Failed Biblia frissítése: %s/%s: „%s” Sikertelen - + Upgrading Bible %s of %s: "%s" Upgrading ... Biblia frissítése: %s/%s: „%s” Frissítés… - + Download Error Letöltési hiba - + To upgrade your Web Bibles an Internet connection is required. A webes bibliák frissítéséhez internet kapcsolat szükséges. - + Upgrading Bible %s of %s: "%s" Upgrading %s ... Biblia frissítése: %s/%s: „%s” Frissítés: %s … - + Upgrading Bible %s of %s: "%s" Complete Biblia frissítése: %s/%s: „%s” Teljes - + , %s failed , %s sikertelen - + 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. Bibliák frissítése: %s teljesítve %s. Megjegyzés: a webes bibliák versei csak kérésre lesznek letöltve és ekkor is internet kapcsolat szükségeltetik. - + Upgrading Bible(s): %s successful%s Biblia frissítése: %s teljesítve %s - + Upgrade failed. A frissítés nem sikerült. - + You need to specify a backup directory for your Bibles. Meg kell adni egy könyvtárat a bibliák biztonsági mentéséhez. - + Starting upgrade... Frissítés indítása… - + There are no Bibles that need to be upgraded. Nincsenek frissítésre szoruló bibliák. @@ -1557,65 +1557,65 @@ Megjegyzés: a webes bibliák versei csak kérésre lesznek letöltve és ekkor 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>Speciális dia bővítmény</strong><br />A speciális dia bővítmény dalokhoz hasonló egyéni diasor vetítését teszi lehetővé. Ugyanakkor több szabadságot enged meg, mint a dalok bővítmény. - + Custom Slide name singular Speciális dia - + Custom Slides name plural Speciális diák - + Custom Slides container title Speciális dia - + Load a new custom slide. Új speciális dia betöltése. - + Import a custom slide. Speciális dia importálása. - + Add a new custom slide. Új speciális dia hozzáadása. - + Edit the selected custom slide. A kijelölt speciális dia szerkesztése. - + Delete the selected custom slide. A kijelölt speciális dia törlése. - + Preview the selected custom slide. A kijelölt speciális dia előnézete. - + Send the selected custom slide live. A kijelölt speciális dia élő adásba küldése. - + Add the selected custom slide to the service. A kijelölt speciális dia hozzáadása a szolgálati sorrendhez. @@ -1623,12 +1623,12 @@ Megjegyzés: a webes bibliák versei csak kérésre lesznek letöltve és ekkor CustomPlugin.CustomTab - + Custom Display Speciális dia megjelenése - + Display footer Lábléc megjelenítése @@ -1636,62 +1636,62 @@ Megjegyzés: a webes bibliák versei csak kérésre lesznek letöltve és ekkor CustomPlugin.EditCustomForm - + Edit Custom Slides Speciális diasor szerkesztése - + &Title: &Cím: - + Add a new slide at bottom. Új dia hozzáadása alulra. - + Edit the selected slide. Kijelölt dia szerkesztése. - + Edit all the slides at once. Minden kijelölt dia szerkesztése egyszerre. - + Split a slide into two by inserting a slide splitter. Dia ketté vágása egy diaelválasztó beszúrásával. - + The&me: &Téma: - + &Credits: &Közreműködők: - + You need to type in a title. Meg kell adnod a címet. - + You need to add at least one slide Meg kell adnod legalább egy diát - + Ed&it All &Összes szerkesztése - + Insert Slide Dia beszúrása @@ -1699,7 +1699,7 @@ Megjegyzés: a webes bibliák versei csak kérésre lesznek letöltve és ekkor CustomPlugin.EditVerseForm - + Edit Slide Dia szerkesztése @@ -1707,7 +1707,7 @@ Megjegyzés: a webes bibliák versei csak kérésre lesznek letöltve és ekkor CustomPlugin.MediaItem - + Are you sure you want to delete the %n selected custom slide(s)? Valóban törölhető a kijelölt %n speciális dia? @@ -1717,60 +1717,60 @@ Megjegyzés: a webes bibliák versei csak kérésre lesznek letöltve és ekkor 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>Kép bővítmény</strong><br />A kép a bővítmény különféle képek vetítését teszi lehetővé.<br />A bővítmény egyik különös figyelmet érdemlő képessége az, hogy képes a sorrendkezelőn csoportba foglalni a képeket, így könnyebbé téve képek tömeges vetítését. A bővítmény képes az OpenLP „időzített körkörös” lejátszásra is, amivel a diasort automatikusan tudjuk léptetni. Továbbá, a bővítményben megadott képekkel felülírhatjuk a téma háttérképét, amellyel a szöveg alapú elemek, mint pl. a dalok, a megadott háttérképpel jelennek meg, a témában beállított háttérkép helyett. - + Image name singular Kép - + Images name plural Képek - + Images container title Képek - + Load a new image. Új kép betöltése. - + Add a new image. Új kép hozzáadása. - + Edit the selected image. A kijelölt kép szerkesztése. - + Delete the selected image. A kijelölt kép törlése. - + Preview the selected image. A kijelölt kép előnézete. - + Send the selected image live. A kijelölt kép élő adásba küldése. - + Add the selected image to the service. A kijelölt kép hozzáadása a szolgálati sorrendhez. @@ -1778,7 +1778,7 @@ Megjegyzés: a webes bibliák versei csak kérésre lesznek letöltve és ekkor ImagePlugin.ExceptionDialog - + Select Attachment Melléklet kijelölése @@ -1786,44 +1786,44 @@ Megjegyzés: a webes bibliák versei csak kérésre lesznek letöltve és ekkor ImagePlugin.MediaItem - + Select Image(s) Képek kijelölése - + You must select an image to delete. Ki kell jelölni egy képet a törléshez. - + You must select an image to replace the background with. Ki kell jelölni egy képet a háttér cseréjéhez. - + Missing Image(s) Hiányzó képek - + The following image(s) no longer exist: %s A következő képek nem léteznek: %s - + The following image(s) no longer exist: %s Do you want to add the other images anyway? A következő képek nem léteznek: %s Szeretnél más képeket megadni? - + There was a problem replacing your background, the image file "%s" no longer exists. Probléma történt a háttér cseréje során, a(z) „%s” kép nem létezik. - + There was no display item to amend. Nem volt módosított megjelenő elem. @@ -1831,17 +1831,17 @@ Szeretnél más képeket megadni? ImagesPlugin.ImageTab - + Background Color Háttérszín - + Default Color: Alapértelmezett szín: - + Visible background for images with aspect ratio different to screen. A kép mögött látható háttér eltérő képernyőarány esetén. @@ -1849,60 +1849,60 @@ Szeretnél más képeket megadni? MediaPlugin - + <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. <strong>Média bővítmény</strong><br />A média bővítmény hangok és videók lejátszását teszi lehetővé. - + Media name singular Média - + Media name plural Média - + Media container title Média - + Load new media. Új médiafájl betöltése. - + Add new media. Új médiafájl hozzáadása. - + Edit the selected media. A kijelölt médiafájl szerkesztése. - + Delete the selected media. A kijelölt médiafájl törlése. - + Preview the selected media. A kijelölt médiafájl előnézete. - + Send the selected media live. A kijelölt médiafájl élő adásba küldése. - + Add the selected media to the service. A kijelölt médiafájl hozzáadása a szolgálati sorrendhez. @@ -1910,57 +1910,57 @@ Szeretnél más képeket megadni? MediaPlugin.MediaItem - + Select Media Médiafájl kijelölése - + You must select a media file to delete. Ki kell jelölni egy médiafájlt a törléshez. - + You must select a media file to replace the background with. Ki kell jelölni médiafájlt a háttér cseréjéhez. - + There was a problem replacing your background, the media file "%s" no longer exists. Probléma történt a háttér cseréje során, a(z) „%s” média fájl nem létezik. - + Missing Media File Hiányzó média fájl - + The file %s no longer exists. A(z) „%s” fájl nem létezik. - + Videos (%s);;Audio (%s);;%s (*) Videók (%s);;Hang (%s);;%s (*) - + There was no display item to amend. Nem volt módosított megjelenő elem. - + Unsupported File Nem támogatott fájl - + Automatic Automatikus - + Use Player: Lejátszó alkalmazása: @@ -1968,22 +1968,22 @@ Szeretnél más képeket megadni? MediaPlugin.MediaTab - + Available Media Players Elérhető médialejátszók - + %s (unavailable) %s (elérhetetlen) - + Player Order Lejátszó sorrend - + Allow media player to be overridden Lejátszó felülírásának engedélyezése @@ -1991,17 +1991,17 @@ Szeretnél más képeket megadni? OpenLP - + Image Files Kép fájlok - + Information Információ - + Bible format has changed. You have to upgrade your existing Bibles. Should OpenLP upgrade now? @@ -2013,32 +2013,61 @@ Frissítheti most az OpenLP? OpenLP.AboutForm - + Credits Közreműködők - + License Licenc - + build %s %s összeépíté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. Ez egy szabad szoftver; terjeszthető illetve módosítható a GNU Általános Közreadási Feltételek dokumentumában leírtak szerint - 2. verzió -, melyet a Szabad Szoftver Alapítvány ad ki. - + 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. Ez a program abban a reményben kerül közreadásra, hogy hasznos lesz, de minden egyéb GARANCIA NÉLKÜL, az eladhatóságra vagy valamely célra való alkalmazhatóságra való származtatott garanciát is beleértve. A további részleteket lásd alább. - + + Copyright © 2004-2012 %s +Portions copyright © 2004-2012 %s + Szerzői jog © 2004-2012 %s +Részleges szerzői jog © 2004-2012 %s + + + + 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. + +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 volunteering by using the button below. + OpenLP <version><revision> – Nyílt forrású dalszöveg vetítő + +Az OpenLP egy templomi/gyülekezeti bemutató, ill. dalszöveg vetítő szabad szoftver, mely használható énekek, bibliai versek, videók, képek és bemutatók (ha az Impress, PowerPoint vagy a PowerPoint Viewer telepítve van) vetítésére a gyülekezeti dicsőítés alatt egy számítógép és egy projektor segítségével. + +Többet az OpenLP-ről: http://openlp.org/ + +Az OpenLP-t önkéntesek készítették és tartják karban. Ha szeretnél több keresztény számítógépes programot, az alábbi gombbal vedd fontolóra az önkéntes részvételt. + + + + Volunteer + Önkéntes + + + Project Lead %s @@ -2057,12 +2086,20 @@ Packagers Translators Afrikaans (af) %s + Czeck (cs) + %s + Danish (da) + %s German (de) %s + Greek (el) + %s English, United Kingdom (en_GB) %s English, South Africa (en_ZA) %s + Spanish (es) + %s Estonian (et) %s French (fr) @@ -2079,13 +2116,15 @@ Translators %s Russian (ru) %s + Swedish (sv) + %s Documentation %s Built With Python: http://www.python.org/ - Qt4: http://qt.nokia.com/ + Qt4: http://qt.digia.com/ PyQt4: http://www.riverbankcomputing.co.uk/software/pyqt/intro Oxygen Icons: http://oxygen-icons.org/ @@ -2100,269 +2139,185 @@ Final Credit on the cross, setting us free from sin. We bring this software to you for free because He has set us free. - Projektvezetés - %s - -Fejlesztők - %s - -Hozzájárulók - %s - -Tesztelők - %s - -Csomagkészítők - %s - -Fordítók - Búr (af) - %s - Német (de) - %s - Angol, Egyesült Királyság (en_GB) - %s - Angol, Dél-Afrikai Köztársaság (en_ZA) - %s - Észt (et) - %s - Francia (fr) - %s - Magyar (hu) - %s - Japán (ja) - %s - Norvég bokmål (nb) - %s - Holland (nl) - %s - Portugál, Brazília (pt_BR) - %s - Orosz (ru) - %s - -Dokumentáció - %s - -Fordítás - Python: http://www.python.org/ - Qt4: http://qt.nokia.com/ - PyQt4: http://www.riverbankcomputing.co.uk/software/pyqt/intro - Oxygen ikonok: http://oxygen-icons.org/ - -Végső köszönet - „Úgy szerette Isten a világot, hogy - egyszülött Fiát adta oda, hogy egyetlen - benne hívő se vesszen el, hanem - örök élete legyen.” (Jn 3,16) - - És végül, de nem utolsósorban, a végső köszönet - Istené, Atyánké, mert elküldte a Fiát, - hogy meghaljon a kereszten, megszabadítva - bennünket a bűntől. Ezért ezt a programot - szabadnak és ingyenesnek készítettük, - mert Ő tett minket szabaddá. - - - - Copyright © 2004-2012 %s -Portions copyright © 2004-2012 %s - Szerzői jog © 2004-2012 %s -Részleges szerzői jog © 2004-2012 %s - - - - 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. - -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 volunteering by using the button below. - - - - - Volunteer OpenLP.AdvancedTab - + UI Settings Felhasználói felület beállításai - + Number of recent files to display: Előzmények megjelenítésének hossza: - + Remember active media manager tab on startup Újraindításkor az aktív médiakezelő fülek visszaállítása - + Double-click to send items straight to live Dupla kattintással az elemek azonnali élő adásba küldése - + Expand new service items on creation A sorrendbe kerülő elemek kibontása létrehozáskor - + Enable application exit confirmation Kilépési megerősítés engedélyezése - + Mouse Cursor Egérmutató - + Hide mouse cursor when over display window Egérmutató elrejtése a vetítési képernyő felett - + Default Image Alapértelmezett kép - + Background color: Háttérszín: - + Image file: Kép fájl: - + Open File Fájl megnyitása - + Advanced Haladó - + Preview items when clicked in Media Manager Elem előnézete a médiakezelőben való kattintáskor - + Click to select a color. Kattintás a szín kijelöléséhez. - + Browse for an image file to display. Tallózd be a megjelenítendő képfájlt. - + Revert to the default OpenLP logo. Az eredeti OpenLP logó visszaállítása. - + 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. Sorrend %Y-%m-%d %H-%M - + Default Service Name Alapértelmezett szolgálati sorrend neve - + Enable default service name Alapértelmezett szolgálati sorrend név - + Date and Time: Dátum és idő: - + Monday Hétfő - + Tuesday Kedd - + Wednesday Szerda - + Thurdsday Csütörtök - + Friday Péntek - + Saturday Szombat - + Sunday Vasárnap - + Now Most - + Time when usual service starts. A szolgálat szokásos kezdete. - + Name: Név: - + Consult the OpenLP manual for usage. Segítségéért tekints meg az OpenLP kézikönyvet. - + Revert to the default service name "%s". Alapértelmezett név helyreállítása: „%s”. - + Example: Példa: - + X11 X11 @@ -2372,82 +2327,82 @@ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for X11 ablakkezelő megkerülése - + Syntax error. Szintaktikai hiba. - + Data Location Adatok helye - + Current path: Jelenlegi útvonal: - + Custom path: Egyedi útvonal: - + Browse for new data file location. Tallózd be az adatállományok helyét. - + Set the data location to the default. Eredeti adathely visszaállítása. - + Cancel Mégsem - + Cancel OpenLP data directory location change. Az OpenLP adathely-modósításának visszavonása. - + Copy data to new location. Adatok másolása az új helyre. - + Copy the OpenLP data files to the new location. Az OpenLP adatállományainak az új helyre való másolása. - + <strong>WARNING:</strong> New data directory location contains OpenLP data files. These files WILL be replaced during a copy. <strong>FIGYELMEZTETÉS:</strong> Az új mappa már tartalmaz OpenLP adatállományokat, melyek felül lesznek írva másoláskor. - + Data Directory Error Adatmappa hiba - + Select Data Directory Location Adapmappa helyének kijelölése - + Confirm Data Directory Change Adatmappa változásának megerősítése - + Reset Data Directory Adatmappa visszaállítása - + 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. @@ -2456,12 +2411,12 @@ This location will be used after OpenLP is closed. Az OpenLP bezárása után jut érvényre a változás. - + Overwrite Existing Data Meglévő adatok felülírása - + OpenLP data directory was not found %s @@ -2471,19 +2426,31 @@ This data directory was previously changed from the OpenLP default location. If Click "No" to stop loading OpenLP. allowing you to fix the the problem. Click "Yes" to reset the data directory to the default location. - + Az OpenLP adatmappa nem található + +%s + +Az OpenLP alapértelmezett mappája előzőleg meg lett változtatva. Ha ez az új hely egy cserélhető adathozrdozón volt, azt újra eléhetővé kell tenni. + +A „Nem” gomb megszakítja az OpenLP betöltését, lehetőséget adva a hiba javítására. + +Az „Igen” gomb helyreállítja az adatmappát az alapértelmezett helyre. - + Are you sure you want to change the location of the OpenLP data directory to: %s The data directory will be changed when OpenLP is closed. - + Valóban szeretnéd az OpenLP adatmappa helyét megváltoztatni erre a helyre? + +%s + +Az OpenLP bezárása után jut érvényre a változás. - + WARNING: The location you have selected @@ -2491,45 +2458,51 @@ The location you have selected %s appears to contain OpenLP data files. Do you wish to replace these files with the current data files? - + FIGYELMEZTETÉS + +A kijelölt + +%s + +mappa már tartalmaz OpenLP adatállományokat. Valóban szeretnéd felülírni ezeket a fájlokat az aktuális adatfájlokkal? OpenLP.ExceptionDialog - + Error Occurred Hiba történt - + 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. Hoppá! Az OpenLP hibába ütközött, és nem tudta lekezelni. Az alsó szövegdoboz olyan információkat tartalmaz, amelyek hasznosak lehetnek az OpenLP fejlesztői számára, tehát kérjük, küld el a bugs@openlp.org email címre egy részletes leírás mellett, amely tartalmazza, hogy éppen hol és mit tettél, amikor a hiba történt. - + Send E-Mail E-mail küldése - + Save to File Mentés fájlba - + Please enter a description of what you were doing to cause this error (Minimum 20 characters) Írd le mit tettél, ami a hibához vezetett (minimum 20 karakter) - + Attach File Fájl csatolása - + Description characters to enter : %s Leírás: %s @@ -2537,24 +2510,24 @@ appears to contain OpenLP data files. Do you wish to replace these files with t OpenLP.ExceptionForm - + Platform: %s Platform: %s - + Save Crash Report Összeomlási jelentés mentése - + Text files (*.txt *.log *.text) Szöveg fájlok (*.txt *.log *.text) - + **OpenLP Bug Report** Version: %s @@ -2585,7 +2558,7 @@ Version: %s - + *OpenLP Bug Report* Version: %s @@ -2620,17 +2593,17 @@ Version: %s OpenLP.FileRenameForm - + File Rename Fájl átnevezése - + New File Name: Új fájl neve: - + File Copy Fájl másolása @@ -2638,17 +2611,17 @@ Version: %s OpenLP.FirstTimeLanguageForm - + Select Translation Fordítás kijelölése - + Choose the translation you'd like to use in OpenLP. Válassz egy fordítást, amit használni szeretnél az OpenLP-ben. - + Translation: Fordítás: @@ -2656,192 +2629,192 @@ Version: %s OpenLP.FirstTimeWizard - + Songs Dalok - + First Time Wizard Első indítás tündér - + Welcome to the First Time Wizard Üdvözlet az első indítás tündérben - + Activate required Plugins Igényelt bővítmények aktiválása - + Select the Plugins you wish to use. Jelöld ki az alkalmazni kívánt bővítményeket. - + Bible Biblia - + Images Képek - + Presentations Bemutatók - + Media (Audio and Video) Média (hang és videó) - + Allow remote access Távirányító - + Monitor Song Usage Dalstatisztika - + Allow Alerts Értesítések - + Default Settings Alapértelmezett beállítások - + Downloading %s... Letöltés %s… - + Download complete. Click the finish button to start OpenLP. Letöltés kész. Kattints a Befejezés gombra az OpenLP indításához. - + Enabling selected plugins... Kijelölt bővítmények engedélyezése… - + No Internet Connection Nincs internet kapcsolat - + Unable to detect an Internet connection. Nem sikerült internet kapcsolatot észlelni. - + Sample Songs Példa dalok - + Select and download public domain songs. Közkincs dalok kijelölése és letöltése. - + Sample Bibles Példa bibliák - + Select and download free Bibles. Szabad bibliák kijelölése és letöltése. - + Sample Themes Példa témák - + Select and download sample themes. Példa témák kijelölése és letöltése. - + Set up default settings to be used by OpenLP. Az OpenLP alapértelmezett beállításai. - + Default output display: Alapértelmezett kimeneti képernyő: - + Select default theme: Alapértelmezett téma kijelölése: - + Starting configuration process... Beállítási folyamat kezdése… - + This wizard will help you to configure OpenLP for initial use. Click the next button below to start. A tündér segít elkezdeni az OpenLP használatát. Kattints az alábbi Következő gombra az indításhoz. - + Setting Up And Downloading Beállítás és letöltés - + Please wait while OpenLP is set up and your data is downloaded. Várj, amíg az OpenLP beállítások érvényre jutnak és míg az adatok letöltődnek. - + Setting Up Beállítás - + Click the finish button to start OpenLP. Kattints a Befejezés gombra az OpenLP indításához. - + Download complete. Click the finish button to return to OpenLP. Letöltés kész. Kattints a Befejezés gombra az OpenLP-hez való visszatéréshez. - + Click the finish button to return to OpenLP. Kattints a Befejezés gombra az OpenLP-hez való visszatéréshez. - + Custom Slides Speciális diák - + Finish Befejezés - + No Internet connection was found. The First Time Wizard needs an Internet connection in order to be able to download sample songs, Bibles and themes. 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. @@ -2850,7 +2823,7 @@ To re-run the First Time Wizard and import this sample data at a later time, che Az Első indítás tündér újbóli indításához és a példaadatok későbbi betöltéséhez ellenőrizd az internetkapcsolatot és futtasd újra ezt a tündért az OpenLP Eszközök > Első indítás tündér menüpontjával. - + To cancel the First Time Wizard completely (and not start OpenLP), click the Cancel button now. @@ -2862,37 +2835,37 @@ A tündér teljes leállításához (és az OpenLP bezárásához) kattints a M OpenLP.FormattingTagDialog - + Configure Formatting Tags Formázó címkék beállítása - + Edit Selection Kijelölés szerkesztése - + Save Mentés - + Description Leírás - + Tag Címke - + Start HTML Nyitó HTML - + End HTML Befejező HTML @@ -2900,32 +2873,32 @@ A tündér teljes leállításához (és az OpenLP bezárásához) kattints a M OpenLP.FormattingTagForm - + Update Error Frissítési hiba - + Tag "n" already defined. Az „n” címke már létezik. - + New Tag Új címke - + <HTML here> <HTML itt> - + </and here> </és itt> - + Tag %s already defined. A címke már létezik: %s. @@ -2933,82 +2906,82 @@ A tündér teljes leállításához (és az OpenLP bezárásához) kattints a M OpenLP.FormattingTags - + Red Vörös - + Black Fekete - + Blue Kék - + Yellow Sárga - + Green Zöld - + Pink Rózsaszín - + Orange Narancs - + Purple Lila - + White Fehér - + Superscript Felső index - + Subscript Alsó index - + Paragraph Bekezdés - + Bold Félkövér - + Italics Dőlt - + Underline Aláhúzott - + Break Sortörés @@ -3016,122 +2989,122 @@ A tündér teljes leállításához (és az OpenLP bezárásához) kattints a M OpenLP.GeneralTab - + General Általános - + Monitors Monitorok - + Select monitor for output display: Vetítési képernyő kijelölése: - + Display if a single screen Megjelenítés egy képernyő esetén - + Application Startup Alkalmazás indítása - + Show blank screen warning Figyelmeztetés megjelenítése az elsötétített képernyőről - + Automatically open the last service Utolsó sorrend automatikus megnyitása - + Show the splash screen Indítóképernyő megjelenítése - + Application Settings Alkalmazás beállítások - + Prompt to save before starting a new service Rákérdezés mentésre új sorrend létrehozása előtt - + Automatically preview next item in service Következő elem automatikus előnézete a sorrendben - + sec mp - + CCLI Details CCLI részletek - + SongSelect username: SongSelect felhasználói név: - + SongSelect password: SongSelect jelszó: - + X X - + Y Y - + Height Magasság - + Width Szélesség - + Check for updates to OpenLP Frissítés keresése az OpenLP-hez - + Unblank display when adding new live item Képernyő elsötétítésének visszavonása új elem élő adásba küldésekor - + Timed slide interval: Időzített dia intervalluma: - + Background Audio Háttérzene - + Start background audio paused Leállított háttérzene indítása @@ -3141,12 +3114,12 @@ A tündér teljes leállításához (és az OpenLP bezárásához) kattints a M Sorrendben lévő diák határolása - + Override display position: Megjelenítési pozíció felülbírálása: - + Repeat track list Számok ismétlése @@ -3168,18 +3141,18 @@ A tündér teljes leállításához (és az OpenLP bezárásához) kattints a M &Move to next/previous service item - &Ugorjon a következő/előző szolgálati elemre + &Ugorjon a következő/előző sorrendben lévő elemre OpenLP.LanguageManager - + Language Nyelv - + Please restart OpenLP to use your new language setting. A nyelvi beállítások az OpenLP újraindítása után lépnek érvénybe. @@ -3187,7 +3160,7 @@ A tündér teljes leállításához (és az OpenLP bezárásához) kattints a M OpenLP.MainDisplay - + OpenLP Display OpenLP megjelenítés @@ -3195,287 +3168,287 @@ A tündér teljes leállításához (és az OpenLP bezárásához) kattints a M OpenLP.MainWindow - + &File &Fájl - + &Import &Importálás - + &Export &Exportálás - + &View &Nézet - + M&ode &Mód - + &Tools &Eszközök - + &Settings &Beállítások - + &Language &Nyelv - + &Help &Súgó - + Media Manager Médiakezelő - + Service Manager Sorrendkezelő - + Theme Manager Témakezelő - + &New &Új - + &Open Meg&nyitás - + Open an existing service. Meglévő sorrend megnyitása. - + &Save &Mentés - + Save the current service to disk. Aktuális sorrend mentése lemezre. - + Save &As... Mentés má&sként… - + Save Service As Sorrend mentése másként - + Save the current service under a new name. Az aktuális sorrend más néven való mentése. - + E&xit &Kilépés - + Quit OpenLP OpenLP bezárása - + &Theme &Téma - + &Configure OpenLP... OpenLP &beállítása… - + &Media Manager &Médiakezelő - + Toggle Media Manager Médiakezelő átváltása - + Toggle the visibility of the media manager. A médiakezelő láthatóságának átváltása. - + &Theme Manager &Témakezelő - + Toggle Theme Manager Témakezelő átváltása - + Toggle the visibility of the theme manager. A témakezelő láthatóságának átváltása. - + &Service Manager &Sorrendkezelő - + Toggle Service Manager Sorrendkezelő átváltása - + Toggle the visibility of the service manager. A sorrendkezelő láthatóságának átváltása. - + &Preview Panel &Előnézet panel - + Toggle Preview Panel Előnézet panel átváltása - + Toggle the visibility of the preview panel. Az előnézet panel láthatóságának átváltása. - + &Live Panel &Élő adás panel - + Toggle Live Panel Élő adás panel átváltása - + Toggle the visibility of the live panel. Az élő adás panel láthatóságának átváltása. - + &Plugin List &Bővítménylista - + List the Plugins Bővítmények listája - + &User Guide &Felhasználói kézikönyv - + &About &Névjegy - + More information about OpenLP További információ az OpenLP-ről - + &Online Help &Online súgó - + &Web Site &Weboldal - + Use the system language, if available. Rendszernyelv használata, ha elérhető. - + Set the interface language to %s A felhasználói felület nyelvének átváltása erre: %s - + Add &Tool... &Eszköz hozzáadása… - + Add an application to the list of tools. Egy alkalmazás hozzáadása az eszközök listához. - + &Default &Alapértelmezett - + Set the view mode back to the default. Nézetmód visszaállítása az alapértelmezettre. - + &Setup &Szerkesztés - + Set the view mode to Setup. Nézetmód váltása a Beállítás módra. - + &Live &Élő adás - + Set the view mode to Live. Nézetmód váltása a Élő módra. - + 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/. @@ -3484,108 +3457,108 @@ You can download the latest version from http://openlp.org/. A legfrissebb verzió a http://openlp.org/ oldalról szerezhető be. - + OpenLP Version Updated OpenLP verziófrissítés - + OpenLP Main Display Blanked Elsötétített OpenLP fő képernyő - + The Main Display has been blanked out A fő képernyő el lett sötétítve - + Default Theme: %s Alapértelmezett téma: %s - + English Please add the name of your language here Magyar - + Configure &Shortcuts... &Gyorsbillentyűk beállítása… - + Close OpenLP OpenLP bezárása - + Are you sure you want to close OpenLP? Valóban bezárható az OpenLP? - + Open &Data Folder... &Adatmappa megnyitása… - + Open the folder where songs, bibles and other data resides. A dalokat, bibliákat és egyéb adatokat tartalmazó mappa megnyitása. - + &Autodetect &Automatikus felismerés - + Update Theme Images Témaképek frissítése - + Update the preview images for all themes. Összes téma előnézeti képének frissítése. - + Print the current service. Az aktuális sorrend nyomtatása. - + &Recent Files &Legutóbbi fájlok - + L&ock Panels Panelek &zárolása - + Prevent the panels being moved. Megakadályozza a panelek mozgatását. - + Re-run First Time Wizard Első indítás tündér - + Re-run the First Time Wizard, importing songs, Bibles and themes. Első indítás tündér újbóli futtatása dalok, bibliák, témák importálásához. - + Re-run First Time Wizard? Újra futtatható az Első indítás tündér? - + 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. @@ -3594,43 +3567,43 @@ Re-running this wizard may make changes to your current OpenLP configuration and A tündér újbóli futtatása során megváltozhatnak az OpenLP aktuális beállításai, az alapértelmezett téma és új dalok adhatók hozzá a jelenlegi dallistákhoz. - + Clear List Clear List of recent files Lista törlése - + Clear the list of recent files. Törli a legutóbbi fájlok listáját. - + Configure &Formatting Tags... Formázó &címkék beállítása… - + Export OpenLP settings to a specified *.config file OpenLP beállításainak mentése egy meghatározott *.config fájlba - + Settings Beállítások - + Import OpenLP settings from a specified *.config file previously exported on this or another machine Az OpenLP beállításainak betöltése egy előzőleg ezen vagy egy másik gépen exportált meghatározott *.config fájlból - + Import settings? Beállítások betöltése? - + Are you sure you want to import settings? Importing settings will make permanent changes to your current OpenLP configuration. @@ -3643,71 +3616,77 @@ A beállítások betöltése tartós változásokat okoz a OpenLP jelenlegi beá Hibás beállítások betöltése rendellenes működést okozhat, vagy akár az OpenLP abnormális megszakadását is. - + Open File Fájl megnyitása - + OpenLP Export Settings Files (*.conf) OpenLP beállító export fájlok (*.conf) - + Import settings Importálási beállítások - + OpenLP will now close. Imported settings will be applied the next time you start OpenLP. Az OpenLP most leáll. Az importált beállítások az OpenLP következő indításakor lépnek érvénybe. - + Export Settings File Beállító export fájl - + OpenLP Export Settings File (*.conf) OpenLP beállító export fájlok (*.conf) - + New Data Directory Error Új adatmappa hiba - + The file you selected does appear to be a valid OpenLP settings file. Section [%s] is not valid Processing has terminated and no changed have been made. - + A kijelölt fájl nem tűnik érvényes OpenLP beállítás fájlnak. + +Ez a rész nem érvényes: [%s] + +A folyamat megszakítódik és a változások nem lesznek elmentve. - + Copying OpenLP data to new data directory location - %s - Please wait for copy to finish - + Az OpenLP adatok új helyre való másolása folyamatban - %s - Várj a folyamat befejeződéséig - + OpenLP Data directory copy failed %s - + Az OpenLP adatmappa másolása nem sikerül + +%s OpenLP.Manager - + Database Error Adatbázis hiba - + 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 @@ -3716,7 +3695,7 @@ Database: %s Adatbázis: %s - + OpenLP cannot load your database. Database: %s @@ -3728,62 +3707,62 @@ Adatbázis: %s OpenLP.MediaManagerItem - + No Items Selected Nincs kijelölt elem - + &Add to selected Service Item &Hozzáadás a kijelölt sorrend elemhez - + You must select one or more items to preview. Ki kell jelölni egy elemet az előnézethez. - + You must select one or more items to send live. Ki kell jelölni egy élő adásba küldendő elemet. - + You must select one or more items. Ki kell jelölni egy vagy több elemet. - + You must select an existing service item to add to. Ki kell jelölni egy sorrend elemet, amihez hozzá szeretné adni. - + Invalid Service Item Érvénytelen sorrend elem - + You must select a %s service item. Ki kell jelölni egy %s sorrend elemet. - + You must select one or more items to add. Ki kell jelölni egy vagy több elemet a hozzáadáshoz. - + No Search Results Nincs találat - + Invalid File Type Érvénytelen fájltípus - + Invalid File %s. Suffix not supported Érvénytelen fájl: %s. @@ -3795,7 +3774,7 @@ Az utótag nem támogatott &Klónozás - + Duplicate files were found on import and were ignored. Importálás közben duplikált fájl bukkant elő, figyelmet kívül lett hagyva. @@ -3803,12 +3782,12 @@ Az utótag nem támogatott OpenLP.OpenLyricsImportError - + <lyrics> tag is missing. A <lyrics> címke hiányzik. - + <verse> tag is missing. A <verse> címke hiányzik. @@ -3816,42 +3795,42 @@ Az utótag nem támogatott OpenLP.PluginForm - + Plugin List Bővítménylista - + Plugin Details Bővítmény részletei - + Status: Állapot: - + Active Aktív - + Inactive Inaktív - + %s (Inactive) %s (inaktív) - + %s (Active) %s (aktív) - + %s (Disabled) %s (letiltott) @@ -3859,12 +3838,12 @@ Az utótag nem támogatott OpenLP.PrintServiceDialog - + Fit Page Oldal kitöltése - + Fit Width Szélesség kitöltése @@ -3872,77 +3851,77 @@ Az utótag nem támogatott OpenLP.PrintServiceForm - + Options Beállítások - + Copy Másolás - + Copy as HTML Másolás HTML-ként - + Zoom In Nagyítás - + Zoom Out Kicsinyítés - + Zoom Original Eredeti nagyítás - + Other Options További beállítások - + Include slide text if available Dia szövegének beillesztése, ha elérhető - + Include service item notes Sorrend elem megjegyzéseinek beillesztése - + Include play length of media items Sorrend elem lejátszási hosszának beillesztése - + Add page break before each text item Oldaltörés hozzáadása minden szöveges elem elé - + Service Sheet Szolgálati adatlap - + Print Nyomtatás - + Title: Cím: - + Custom Footer Text: Egyedi lábjegyzet szöveg: @@ -3950,12 +3929,12 @@ Az utótag nem támogatott OpenLP.ScreenList - + Screen Képernyő - + primary elsődleges @@ -3963,12 +3942,12 @@ Az utótag nem támogatott OpenLP.ServiceItem - + <strong>Start</strong>: %s <strong>Kezdés</strong>: %s - + <strong>Length</strong>: %s <strong>Hossz</strong>: %s @@ -3976,7 +3955,7 @@ Az utótag nem támogatott OpenLP.ServiceItemEditForm - + Reorder Service Item Sorrend elemek újrarendezése @@ -3984,296 +3963,295 @@ Az utótag nem támogatott OpenLP.ServiceManager - + Move to &top Mozgatás &felülre - + Move item to the top of the service. Elem mozgatása a sorrend elejére. - + Move &up Mozgatás f&eljebb - + Move item up one position in the service. Elem mozgatása a sorrendben eggyel feljebb. - + Move &down Mozgatás &lejjebb - + Move item down one position in the service. Elem mozgatása a sorrendben eggyel lejjebb. - + Move to &bottom Mozgatás &alulra - + Move item to the end of the service. Elem mozgatása a sorrend végére. - + &Delete From Service &Törlés a sorrendből - + Delete the selected item from the service. Kijelölt elem törlése a sorrendből. - + &Add New Item Új elem &hozzáadása - + &Add to Selected Item &Hozzáadás a kijelölt elemhez - + &Edit Item &Elem szerkesztése - + &Reorder Item Elem újra&rendezése - + &Notes &Jegyzetek - + &Change Item Theme Elem témájának &módosítása - + OpenLP Service Files (*.osz) OpenLP sorrend fájlok (*.osz) - + File is not a valid service. The content encoding is not UTF-8. A fájl nem érvényes sorrend. A tartalom kódolása nem UTF-8. - + File is not a valid service. A fájl nem érvényes sorrend. - + Missing Display Handler Hiányzó képernyő kezelő - + Your item cannot be displayed as there is no handler to display it Az elemet nem lehet megjeleníteni, mert nincs kezelő, amely megjelenítené - + Your item cannot be displayed as the plugin required to display it is missing or inactive Az elemet nem lehet megjeleníteni, mert a bővítmény, amely kezelné, hiányzik vagy inaktív - + &Expand all Mind &kibontása - + Expand all the service items. Minden sorrend elem kibontása. - + &Collapse all Mind össze&csukása - + Collapse all the service items. Minden sorrend elem összecsukása. - + Open File Fájl megnyitása - + Moves the selection down the window. A kiválasztás lejjebb mozgatja az ablakot. - + Move up Mozgatás feljebb - + Moves the selection up the window. A kiválasztás feljebb mozgatja az ablakot. - + Go Live Élő adásba - + Send the selected item to Live. A kiválasztott elem élő adásba küldése. - + &Start Time &Kezdő időpont - + Show &Preview &Előnézet megjelenítése - + Modified Service Módosított sorrend - + The current service has been modified. Would you like to save this service? Az aktuális sorrend módosult. Szeretnéd elmenteni? - + Custom Service Notes: Egyedi szolgálati elem jegyzetek: - + Notes: Jegyzetek: - + Playing time: Lejátszási idő: - + Untitled Service Névtelen szolgálat - + File could not be opened because it is corrupt. A fájl nem nyitható meg, mivel sérült. - + Empty File Üres fájl - + This service file does not contain any data. A szolgálati sorrend fájl nem tartalmaz semmilyen adatot. - + Corrupt File Sérült fájl - + Load an existing service. Egy meglévő szolgálati sorrend betöltése. - + Save this service. Sorrend mentése. - + Select a theme for the service. Jelöljön ki egy témát a sorrendhez. - + This file is either corrupt or it is not an OpenLP 2.0 service file. A fájl vagy sérült vagy nem egy OpenLP 2.0 szolgálati sorrend fájl. - - Service File Missing - Hiányzó sorrend fájl - - - + Slide theme Dia téma - + Notes Jegyzetek - + Edit Szerkesztés - + Service copy only A sorrend csak másolható - + Error Saving File Állománymentési hiba - + There was an error saving your file. Hiba történt az állomány mentésekor. - - File missing from service + + Service File(s) Missing + + + + + The following file(s) in the service are missing: +%s - %s - -Continue saving? +These files will be removed if you continue to save. OpenLP.ServiceNoteForm - + Service Item Notes Sorrend elem jegyzet @@ -4281,7 +4259,7 @@ Continue saving? OpenLP.SettingsForm - + Configure OpenLP OpenLP beállítása @@ -4289,67 +4267,67 @@ Continue saving? OpenLP.ShortcutListDialog - + Action Parancs - + Shortcut Gyorsbillentyű - + Duplicate Shortcut Azonos gyorsbillentyű - + The shortcut "%s" is already assigned to another action, please use a different shortcut. A „%s” gyorsbillentyű már foglalt. - + Alternate Alternatív - + Select an action and click one of the buttons below to start capturing a new primary or alternate shortcut, respectively. Jelölj ki egy parancsot és kattints egyenként az egyik alul található gombra az elsődleges vagy alternatív gyorsbillentyű elfogásához. - + Default Alapértelmezett - + Custom Egyéni - + Capture shortcut. Gyorsbillentyű elfogása. - + Restore the default shortcut of this action. Az eredeti gyorsbillentyű visszaállítása. - + Restore Default Shortcuts Alapértelmezett gyorsbillentyűk visszaállítása - + Do you want to restore all shortcuts to their defaults? Valóban minden gyorsbillentyű visszaállítandó az alapértelmezettjére? - + Configure Shortcuts Gyorsbillentyűk beállítása @@ -4357,172 +4335,172 @@ Continue saving? OpenLP.SlideController - + Hide Elrejtés - + Go To Ugrás - + Blank Screen Képernyő elsötétítése - + Blank to Theme Elsötétítés a témára - + Show Desktop Asztal megjelenítése - + Previous Service Előző sorrend - + Next Service Következő sorrend - + Escape Item Kilépés az elemből - + Move to previous. Mozgatás az előzőre. - + Move to next. Mozgatás a következőre. - + Play Slides Diák vetítése - + Delay between slides in seconds. Diák közötti késleltetés másodpercben. - + Move to live. Élő adásba küldés. - + Add to Service. Hozzáadás a sorrendhez. - + Edit and reload song preview. Szerkesztés és az dal előnézetének újraolvasása. - + Start playing media. Médialejátszás indítása. - + Pause audio. Hang szüneteltetése. - + Pause playing media. Médialejátszás leállítása. - + Stop playing media. Médialejátszás szüneteltetése. - + Video position. Videó pozíció. - + Audio Volume. Hangerő. - + Go to "Verse" Ugrás a „versszakra” - + Go to "Chorus" Ugrás a „refrénre” - + Go to "Bridge" Ugrás a „hídra” - + Go to "Pre-Chorus" Ugrás az „előrefrénre” - + Go to "Intro" Ugrás a „bevezetésre” - + Go to "Ending" Ugrás a „lezárásra” - + Go to "Other" Ugrás a „másra” - + Previous Slide Előző dia - + Next Slide Következő dia - + Pause Audio Hang szüneteltetése - + Background Audio Háttérzene - + Go to next audio track. Ugrás a következő számra. - + Tracks Számok @@ -4530,17 +4508,17 @@ Continue saving? OpenLP.SpellTextEdit - + Spelling Suggestions Helyesírási javaslatok - + Formatting Tags Formázó címkék - + Language: Nyelv: @@ -4548,67 +4526,67 @@ Continue saving? OpenLP.StartTimeForm - + Hours: Óra: - + Minutes: Perc: - + Seconds: Másodperc: - + Item Start and Finish Time Elem kezdő és befejező idő - + Start Kezdés - + Finish Befejezés - + Length Hosszúság - + Time Validation Error Idő érvényességi hiba - + Finish time is set after the end of the media item A médiaelem befejező időpontja későbbre van állítva van, mint a hossza - + Start time is after the finish time of the media item A médiaelem kezdő időpontja későbbre van állítva, mint a befejezése - + Theme Layout Téma elrendezése - + The blue box shows the main area. Kék keret jelzi a fő tartalmat. - + The red box shows the footer. Vörös keret jelzi a láblécet. @@ -4616,559 +4594,559 @@ Continue saving? OpenLP.ThemeManager - + Create a new theme. Új téma létrehozása. - + Edit Theme Téma szerkesztése - + Edit a theme. Egy téma szerkesztése. - + Delete Theme Téma törlése - + Delete a theme. Egy téma törlése. - + Import Theme Téma importálása - + Import a theme. Egy téma importálása. - + Export Theme Téma exportálása - + Export a theme. Egy téma exportálása. - + &Edit Theme Téma sz&erkesztése - + &Delete Theme Téma &törlése - + Set As &Global Default Beállítás &globális alapértelmezetté - + %s (default) %s (alapértelmezett) - + You must select a theme to edit. Ki kell jelölni egy témát a szerkesztéshez. - + You are unable to delete the default theme. Az alapértelmezett témát nem lehet törölni. - + Theme %s is used in the %s plugin. A(z) %s témát a(z) %s bővítmény használja. - + You have not selected a theme. Nincs kijelölve egy téma sem. - + Save Theme - (%s) Téma mentése – (%s) - + Theme Exported Téma exportálva - + Your theme has been successfully exported. A téma sikeresen exportálásra került. - + Theme Export Failed A téma exportálása nem sikerült - + Your theme could not be exported due to an error. A témát nem sikerült exportálni egy hiba miatt. - + Select Theme Import File Importálandó téma fájl kijelölése - + File is not a valid theme. Nem érvényes témafájl. - + &Copy Theme Téma &másolása - + &Rename Theme Téma át&nevezése - + &Export Theme Téma e&xportálása - + You must select a theme to rename. Ki kell jelölni egy témát az átnevezéséhez. - + Rename Confirmation Átnevezési megerősítés - + Rename %s theme? A téma átnevezhető: %s? - + You must select a theme to delete. Ki kell jelölni egy témát a törléshez. - + Delete Confirmation Törlés megerősítése - + Delete %s theme? Törölhető ez a téma: %s? - + Validation Error Érvényességi hiba - + A theme with this name already exists. Ilyen fájlnéven már létezik egy téma. - + OpenLP Themes (*.theme *.otz) OpenLP témák (*.theme *.otz) - + Copy of %s Copy of <theme name> %s másolata - + Theme Already Exists A téma már létezik - + Theme %s already exists. Do you want to replace it? - + Ez a téma már létezik: %s. Szeretnéd felülírni? OpenLP.ThemeWizard - + Theme Wizard Téma tündér - + Welcome to the Theme Wizard Üdvözlet a téma tündérben - + Set Up Background Háttér beállítása - + Set up your theme's background according to the parameters below. A téma háttere az alábbi paraméterekkel állítható be. - + Background type: Háttér típusa: - + Solid Color Homogén szín - + Gradient Színátmenet - + Color: Szín: - + Gradient: Színátmenet: - + Horizontal Vízszintes - + Vertical Függőleges - + Circular Körkörös - + Top Left - Bottom Right Bal felső sarokból jobb alsó sarokba - + Bottom Left - Top Right Bal alsó sarokból jobb felső sarokba - + Main Area Font Details Fő tartalom betűkészlet jellemzői - + Define the font and display characteristics for the Display text A fő szöveg betűkészlete és megjelenési tulajdonságai - + Font: Betűkészlet: - + Size: Méret: - + Line Spacing: Sorköz: - + &Outline: &Körvonal: - + &Shadow: &Árnyék: - + Bold Félkövér - + Italic Dőlt - + Footer Area Font Details Lábléc betűkészlet jellemzői - + Define the font and display characteristics for the Footer text A lábléc szöveg betűkészlete és megjelenési tulajdonságai - + Text Formatting Details Szövegformázás jellemzői - + Allows additional display formatting information to be defined További megjelenési formázások - + Horizontal Align: Vízszintes igazítás: - + Left Balra zárt - + Right Jobbra zárt - + Center Középre igazított - + Output Area Locations Pozíciók - + Allows you to change and move the main and footer areas. A fő szöveg és a lábléc helyzetének mozgatása. - + &Main Area &Fő szöveg - + &Use default location &Alapértelmezett helyen - + X position: X pozíció: - + px px - + Y position: Y pozíció: - + Width: Szélesség: - + Height: Magasság: - + Use default location Alapértelmezett helyen - + Theme name: Téma neve: - + Edit Theme - %s Téma szerkesztése – %s - + This wizard will help you to create and edit your themes. Click the next button below to start the process by setting up your background. A tündér segít témákat létrehozni és módosítani. Kattints az alábbi Következő gombra a folyamat első lépésének indításhoz, a háttér beállításához. - + Transitions: Átmenetek: - + &Footer Area &Lábléc - + Starting color: Kezdő szín: - + Ending color: Befejező szín: - + Background color: Háttérszín: - + Justify Sorkizárt - + Layout Preview Elrendezés előnézete - + Transparent Átlátszó - + Preview and Save Előnézet és mentés - + Preview the theme and save it. Téma előnézete és mentése. - + (approximately %d lines per slide) - + (kb. %d sor diánként) - + Background Image Empty - + Háttérkép üres - + You have not selected a background image. Please select one before continuing. - + Nincs kijelölt háttérkép. Adj meg egyet a folytatás előtt. - + Select Image - + Kép kijelölése - + Theme Name Missing - + Téma neve nincs megadva - + There is no name for this theme. Please enter one. - + A témának nincs neve, meg kell adni. - + Theme Name Invalid - + Érvénytelen téma név - + Invalid theme name. Please enter one. - + A téma neve érvénytelen, érvényeset kell megadni. OpenLP.ThemesTab - + Global Theme Globális téma - + Theme Level Téma szint - + S&ong Level Dal &szint - + 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. Minden dalra az adatbázisban tárolt téma alkalmazása. Ha egy dalhoz nincs saját téma beállítva, akkor a szolgálati sorrendhez beállított alkalmazása. Ha a sorrendhez sincs téma beállítva, akkor a globális téma alkalmazása. - + &Service Level Szolgálati sorrend &szint - + 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. A szolgálati sorrendhez beállított téma alkalmazása, vagyis az egyes dalokhoz megadott témák felülírása. Ha a szolgálati sorrendhez nincs téma beállítva, akkor a globális téma alkalmazása. - + &Global Level &Globális szint - + Use the global theme, overriding any themes associated with either the service or the songs. A globális téma alkalmazása, vagyis a szolgálati sorrendhez, ill. a dalokhoz beállított témák felülírása. - + Themes Témák @@ -5176,315 +5154,315 @@ Continue saving? OpenLP.Ui - + Error Hiba - + About Névjegy - + &Add &Hozzáadás - + Advanced Haladó - + All Files Minden fájl - + Bottom Alulra - + Browse... Tallózás… - + Cancel Mégsem - + CCLI number: CCLI szám: - + Create a new service. Új szolgálati sorrend létrehozása. - + &Delete &Törlés - + &Edit &Szerkesztés - + Empty Field Üres mező - + Export Exportálás - + pt Abbreviated font pointsize unit pt - + Image Kép - + Import Importálás - + Live Élő adás - + Live Background Error Élő háttér hiba - + Load Betöltés - + Middle Középre - + New Új - + New Service Új sorrend - + New Theme Új téma - + No File Selected Singular Nincs kijelölt fájl - + No Files Selected Plural Nincsenek kijelölt fájlok - + No Item Selected Singular Nincs kijelölt elem - + No Items Selected Plural Nincsenek kijelölt elemek - + openlp.org 1.x openlp.org 1.x - + OpenLP 2.0 OpenLP 2.0 - + Preview Előnézet - + Replace Background Háttér cseréje - + Reset Background Háttér visszaállítása - + s The abbreviated unit for seconds mp - + Save && Preview Mentés és előnézet - + Search Keresés - + You must select an item to delete. Ki kell jelölni egy törlendő elemet. - + You must select an item to edit. Ki kell jelölni egy szerkesztendő elemet. - + Save Service Sorrend mentése - + Service Sorrendbe - + Start %s Kezdés %s - + Theme Singular Téma - + Themes Plural Témák - + Top Felülre - + Version Verzió - + Delete the selected item. Kiválasztott elem törlése. - + Move selection up one position. Kiválasztás eggyel feljebb helyezése. - + Move selection down one position. Kiválasztás eggyel lejjebb helyezése. - + &Vertical Align: &Függőleges igazítás: - + Finished import. Az importálás befejeződött. - + Format: Formátum: - + Importing Importálás - + Importing "%s"... Importálás „%s”… - + Select Import Source Jelölj ki az importálandó forrást - + Select the import format and the location to import from. Jelöld ki az importálás formátumát és az importálás helyét. - + 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. Az openlp.org 1.x importáló le lett tiltva egy hiányzó Python modul miatt. Ha szeretnéd használni ezt az importálót, telepíteni kell a „python-sqlite” modult. - + Open %s File %s fájl megnyitása - + %p% %p% - + Ready. Kész. - + Starting import... Importálás indítása… - + You need to specify at least one %s file to import from. A file type e.g. OpenSong Meg kell adni legalább egy %s fájlt az importáláshoz. @@ -5495,304 +5473,304 @@ Continue saving? Üdvözlet a bibliaimportáló tündérben - + Welcome to the Song Export Wizard Üdvözlet a dalexportáló tündérben - + Welcome to the Song Import Wizard Üdvözlet a dalimportáló tündérben - + Author Singular Szerző - + Authors Plural Szerzők - + © Copyright symbol. © - + Song Book Singular Énekeskönyv - + Song Books Plural Énekeskönyvek - + Song Maintenance Dalok kezelése - + Topic Singular Témakör - + Topics Plural Témakörök - + Continuous Folytonos - + Default Alapértelmezett - + Display style: Megjelenítési stílus: - + Duplicate Error Duplikátum hiba - + File Fájl - + Help Súgó - + h The abbreviated unit for hours ó - + Layout style: Elrendezés: - + Live Toolbar Élő eszköztár - + m The abbreviated unit for minutes p - + OpenLP is already running. Do you wish to continue? Az OpenLP mér fut. Folytatható? - + Settings Beállítások - + Tools Eszközök - + Unsupported File Nem támogatott fájl - + Verse Per Slide Egy vers diánként - + Verse Per Line Egy vers soronként - + View Nézet - + Title and/or verses not found A cím és/vagy a versszak nem található - + XML syntax error XML szintaktikai hiba - + View Mode Nézetmód - + Open service. Sorrend megnyitása. - + Print Service Szolgálati sorrend nyomtatása - + Replace live background. Élő adás hátterének cseréje. - + Reset live background. Élő adás hátterének visszaállítása. - + Split a slide into two only if it does not fit on the screen as one slide. Diák kettéválasztása csak akkor, ha nem fér ki a képernyőn egy diaként. - + Welcome to the Bible Upgrade Wizard Üdvözlet a bibliafrissítő tündérben - + Confirm Delete Törlés megerősítése - + Play Slides in Loop Ismétlődő diavetítés - + Play Slides to End Diavetítés a végéig - + Stop Play Slides in Loop Ismétlődő vetítés megállítása - + Stop Play Slides to End Vetítés megállítása - + Next Track Következő szám - + Search Themes... Search bar place holder text Témák keresése... - + Optional &Split &Feltételes törés - + Invalid Folder Selected Singular Érvénytelen kijelölt mappa - + Invalid File Selected Singular Érvénytelen kijelölt állomány - + Invalid Files Selected Plural Érvénytelen kijelölt állományok - + No Folder Selected Singular Nincs kijelölt mappa - + Open %s Folder %s mappa megnyitása - + You need to specify one %s file to import from. A file type e.g. OpenSong Meg kell adni egy %s fájlt az importáláshoz. - + You need to specify one %s folder to import from. A song format e.g. PowerSong Meg kell adni egy %s mappát az importáláshoz. - + Importing Songs - + Dalok importálása OpenLP.core.lib - + %1 and %2 Locale list separator: 2 items %1 és %2 - + %1, and %2 Locale list separator: end %1, és %2 - + %1, %2 Locale list separator: middle %1, %2 - + %1, %2 Locale list separator: start %1, %2 @@ -5801,50 +5779,50 @@ Continue saving? 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>Bemutató bővítmény</strong><br />A bemutató bővítmény különböző külső programok segítségével bemutatók megjelenítését teszi lehetővé. A prezentációs programok egy listából választhatók ki. - + Presentation name singular Bemutató - + Presentations name plural Bemutatók - + Presentations container title Bemutatók - + Load a new presentation. Új bemutató betöltése. - + Delete the selected presentation. A kijelölt bemutató törlése. - + Preview the selected presentation. A kijelölt bemutató előnézete. - + Send the selected presentation live. A kijelölt bemutató élő adásba küldése. - + Add the selected presentation to the service. A kijelölt bemutató hozzáadása a sorrendhez. @@ -5852,52 +5830,52 @@ Continue saving? PresentationPlugin.MediaItem - + Select Presentation(s) Bemutatók kijelölése - + Automatic Automatikus - + Present using: Bemutató ezzel: - + File Exists A fájl létezik - + A presentation with that filename already exists. Ilyen fájlnéven már létezik egy bemutató. - + This type of presentation is not supported. Ez a bemutató típus nem támogatott. - + Presentations (%s) Bemutatók (%s) - + Missing Presentation Hiányzó bemutató - + The presentation %s is incomplete, please reload. A bemutató hiányos, újra kell tölteni: %s. - + The presentation %s no longer exists. A bemutató már nem létezik: %s. @@ -5905,17 +5883,17 @@ Continue saving? PresentationPlugin.PresentationTab - + Available Controllers Elérhető vezérlők - + %s (unavailable) %s (elérhetetlen) - + Allow presentation application to be overridden A bemutató program felülírásának engedélyezése @@ -5923,24 +5901,24 @@ Continue saving? 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>Távirányító bővítmény</strong><br />A távirányító bővítmény egy böngésző vagy egy távoli API segítségével lehetővé teszi egy másik számítógépen futó OpenLP számára való üzenetküldést. - + Remote name singular Távirányító - + Remotes name plural Távirányítók - + Remote container title Távirányító @@ -5949,236 +5927,246 @@ Continue saving? RemotePlugin.Mobile - + OpenLP 2.0 Remote OpenLP 2.0 távirányító - + OpenLP 2.0 Stage View OpenLP 2.0 színpadi nézet - + Service Manager Sorrendkezelő - + Slide Controller Diakezelő - + Alerts Értesítések - + Search Keresés - + Refresh Frissítés - + Blank Elsötétítés - + Show Vetítés - + Prev Előző - + Next Következő - + Text Szöveg - + Show Alert Értesítés megjelenítése - + Go Live Élő adásba - + No Results Nincs találat - + Options Beállítások - + Add to Service Hozzáadás a sorrendhez - + Home Kezdőlap - + Theme Téma - + Desktop Asztal - + Add &amp; Go to Service Hozzáadás és ugrás a sorrendre + + + Service + Sorrend + + + + Slides + Diák + RemotePlugin.RemoteTab - + Serve on IP address: Szolgáltatás IP címe: - + Port number: Port száma: - + Server Settings Szerver beállítások - + Remote URL: Távirányító URL: - + Stage view URL: Színpadi nézet URL: - + Display stage time in 12h format Időkijelzés a színpadi nézeten 12 órás formában - + Android App Android alkalmazás - + Scan the QR code or click <a href="https://play.google.com/store/apps/details?id=org.openlp.android">download</a> to install the Android app from Google Play. - + Szkenneld be a QR kódot vagy kattints az Android alkalmazás <a href="https://play.google.com/store/apps/details?id=org.openlp.android">letöltéséhez</a> a Google Play-ből. SongUsagePlugin - + &Song Usage Tracking &Dalstatisztika rögzítése - + &Delete Tracking Data Rögzített adatok &törlése - + Delete song usage data up to a specified date. Dalstatisztika adatok törlése egy meghatározott dátumig. - + &Extract Tracking Data Rögzített adatok &kicsomagolása - + Generate a report on song usage. Dalstatisztika jelentés összeállítása. - + Toggle Tracking Rögzítés - + Toggle the tracking of song usage. Dalstatisztika rögzítésének átváltása. - + <strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services. <strong>Dalstatisztika bővítmény</strong><br />Ez a bővítmény rögzíti, hogy a dalok mikor lettek vetítve egy élő szolgálat vagy istentisztelet során. - + SongUsage name singular Dalstatisztika - + SongUsage name plural Dalstatisztika - + SongUsage container title Dalstatisztika - + Song Usage Dalstatisztika - + Song usage tracking is active. A dalstatisztika rögzítésre kerül. - + Song usage tracking is inactive. A dalstatisztika nincs rögzítés alatt. - + display megjelenítés - + printed nyomtatás @@ -6186,32 +6174,32 @@ Continue saving? SongUsagePlugin.SongUsageDeleteForm - + Delete Song Usage Data Dalstatisztika adatok törlése - + Delete Selected Song Usage Events? Valóban törölhetők a kijelölt dalstatisztika események? - + Are you sure you want to delete selected Song Usage data? Valóban törölhetők a kijelölt dalstatisztika adatok? - + Deletion Successful Sikeres törlés - + All requested data has been deleted successfully. Minden kért adat sikeresen törlésre került. - + Select the date up to which the song usage data should be deleted. All data recorded before this date will be permanently deleted. Ki kell választani egy dátumot, amely előtt a statisztika adatok törlése kerülnek. Minden ezelőtt rögzített adat véglegesen törlődni fog. @@ -6219,42 +6207,42 @@ Continue saving? SongUsagePlugin.SongUsageDetailForm - + Song Usage Extraction Dalstatisztika kicsomagolása - + Select Date Range Időintervallum kijelölése - + to - + Report Location Helyszín jelentése - + Output File Location Kimeneti fájl elérési útvonala - + usage_detail_%s_%s.txt Dalstatisztika_%s%s.txt - + Report Creation Riport készítése - + Report %s has been successfully created. @@ -6262,12 +6250,12 @@ has been successfully created. %s. - + Output Path Not Selected Kimeneti útvonal nincs kijelölve - + You have not set a valid output location for your song usage report. Please select an existing path on your computer. Egy nem létező útvonalat adtál meg a dalstatisztika riporthoz. Jelölj ki egy érvényes űtvonalat a számítógépen. @@ -6275,112 +6263,112 @@ has been successfully created. SongsPlugin - + &Song &Dal - + Import songs using the import wizard. Dalok importálása az importálás tündérrel. - + <strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs. <strong>Dal bővítmény</strong><br />A dal bővítmény dalok megjelenítését és kezelését teszi lehetővé. - + &Re-index Songs Dalok újra&indexelése - + Re-index the songs database to improve searching and ordering. Dal adatbázis újraindexelése a keresés és a rendezés javításához. - + Reindexing songs... Dalok indexelése folyamatban… - + Arabic (CP-1256) Arab (CP-1256) - + Baltic (CP-1257) Balti (CP-1257) - + Central European (CP-1250) Közép-európai (CP-1250) - + Cyrillic (CP-1251) Cirill (CP-1251) - + Greek (CP-1253) Görög (CP-1253) - + Hebrew (CP-1255) Héber (CP-1255) - + Japanese (CP-932) Japán (CP-932) - + Korean (CP-949) Koreai (CP-949) - + Simplified Chinese (CP-936) Egyszerűsített kínai (CP-936) - + Thai (CP-874) Thai (CP-874) - + Traditional Chinese (CP-950) Hagyományos kínai (CP-950) - + Turkish (CP-1254) Török (CP-1254) - + Vietnam (CP-1258) Vietnami (CP-1258) - + Western European (CP-1252) Nyugat-európai (CP-1252) - + Character Encoding Karakterkódolás - + The codepage setting is responsible for the correct character representation. Usually you are fine with the preselected choice. @@ -6389,105 +6377,105 @@ a karakterek helyes megjelenítéséért. Általában az előre beállított érték megfelelő. - + Please choose the character encoding. The encoding is responsible for the correct character representation. Válaszd ki a karakterkódolást. A kódlap felelős a karakterek helyes megjelenítéséért. - + Song name singular Dal - + Songs name plural Dalok - + Songs container title Dalok - + Exports songs using the export wizard. Dalok exportálása a dalexportáló tündérrel. - + Add a new song. Új dal hozzáadása. - + Edit the selected song. A kijelölt dal szerkesztése. - + Delete the selected song. A kijelölt dal törlése. - + Preview the selected song. A kijelölt dal előnézete. - + Send the selected song live. A kijelölt dal élő adásba küldése. - + Add the selected song to the service. A kijelölt dal hozzáadása a sorrendhez. - + Reindexing songs - + Dalok újraindexelése SongsPlugin.AuthorsForm - + Author Maintenance Szerzők kezelése - + Display name: Megjelenített név: - + First name: Keresztnév: - + Last name: Vezetéknév: - + You need to type in the first name of the author. Meg kell adni a szerző vezetéknevét. - + You need to type in the last name of the author. Meg kell adni a szerző keresztnevét. - + You have not set a display name for the author, combine the first and last names? Nincs megadva a szerző megjelenített neve, legyen előállítva a vezeték és keresztnevéből? @@ -6495,7 +6483,7 @@ A kódlap felelős a karakterek helyes megjelenítéséért. SongsPlugin.CCLIFileImport - + The file does not have a valid extension. A fájlnév nem tartalmaz valós kiterjesztést. @@ -6503,12 +6491,12 @@ A kódlap felelős a karakterek helyes megjelenítéséért. SongsPlugin.EasyWorshipSongImport - + Administered by %s Adminisztrálta: %s - + [above are Song Tags with notes imported from EasyWorship] @@ -6520,12 +6508,12 @@ EasyWorshipből kerültek importálásra] SongsPlugin.EditBibleForm - + Meta Data Metaadat - + Custom Book Names Egyedi könyvnevek @@ -6533,202 +6521,202 @@ EasyWorshipből kerültek importálásra] SongsPlugin.EditSongForm - + Song Editor Dalszerkesztő - + &Title: &Cím: - + Alt&ernate title: &Alternatív cím: - + &Lyrics: &Dalszöveg: - + &Verse order: Versszak &sorrend: - + Ed&it All &Összes szerkesztése - + Title && Lyrics Cím és szöveg - + &Add to Song &Hozzáadás - + &Remove &Eltávolítás - + &Manage Authors, Topics, Song Books Szerző, témakör, könyv &kezelése - + A&dd to Song H&ozzáadás - + R&emove &Eltávolítás - + Book: Könyv: - + Number: Szám: - + Authors, Topics && Song Book Szerző, témakör és könyv - + New &Theme Új &téma - + Copyright Information Szerzői jogi információ - + Comments Megjegyzések - + Theme, Copyright Info && Comments Téma, © és megjegyzés - + Add Author Szerző hozzáadása - + This author does not exist, do you want to add them? Ez a szerző még nem létezik, valóban hozzá kívánja adni? - + This author is already in the list. A szerző már benne van a listában. - + 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. Nincs kijelölve egyetlen szerző sem. Vagy válassz egy szerzőt a listából, vagy írj az új szerző mezőbe és kattints a Hozzáadás gombra a szerző megjelöléséhez. - + Add Topic Témakör hozzáadása - + This topic does not exist, do you want to add it? Ez a témakör még nem létezik, szeretnéd hozzáadni? - + This topic is already in the list. A témakör már benne van a listában. - + 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. Nincs kijelölve egyetlen témakör sem. Vagy válassz egy témakört a listából, vagy írj az új témakör mezőbe és kattints a Hozzáadás gombra a témakör megjelöléséhez. - + You need to type in a song title. Add meg a dal címét. - + You need to type in at least one verse. Legalább egy versszakot meg kell adnod. - + The verse order is invalid. There is no verse corresponding to %s. Valid entries are %s. A versszaksorrend hibás. Nincs ilyen versszak: %s. Az érvényes elemek ezek: %s. - + Add Book Könyv hozzáadása - + This song book does not exist, do you want to add it? Ez az énekeskönyv még nem létezik, szeretnéd hozzáadni a listához? - + You need to have an author for this song. Egy szerzőt meg kell adnod ehhez a dalhoz. - + Linked Audio Fájl - + Add &File(s) Fájl &hozzáadása - + Add &Media &Médiafájl hozzáadása - + Remove &All Fájlok &eltávolítása - + Open File(s) Fájlok megnyitása - + <strong>Warning:</strong> Not all of the verses are in use. <strong>Figyelmeztetés:</strong> Nincs minden verszak alkalmazva. - + The verse order is invalid. There are no verses corresponding to %s. Valid entries are %s. A versszaksorrend hibás. Nincsenek ilyen versszakok: %s. Az érvényes elemek ezek: %s. @@ -6736,22 +6724,22 @@ EasyWorshipből kerültek importálásra] SongsPlugin.EditVerseForm - + Edit Verse Versszak szerkesztése - + &Verse type: Versszak &típusa: - + &Insert &Beszúrás - + Split a slide into two by inserting a verse splitter. Dia kettéválasztása versszakelválasztó beszúrásával. @@ -6759,82 +6747,82 @@ EasyWorshipből kerültek importálásra] SongsPlugin.ExportWizardForm - + Song Export Wizard Dalexportáló tündér - + Select Songs Dalok kijelölése - + Check the songs you want to export. Jelöld ki az exportálandó dalokat. - + Uncheck All Minden kijelölés eltávolítása - + Check All Mindent kijelöl - + Select Directory Mappa kijelölése - + Directory: Mappa: - + Exporting Exportálás - + Please wait while your songs are exported. Várj, míg a dalok exportálódnak. - + You need to add at least one Song to export. Ki kell jelölni legalább egy dalt az exportáláshoz. - + No Save Location specified Nincs megadva a mentési hely - + Starting export... Exportálás indítása… - + You need to specify a directory. Egy mappát kell megadni. - + Select Destination Folder Célmappa kijelölése - + Select the directory where you want the songs to be saved. Jelöld ki a mappát, ahová a dalok mentésre kerülnek. - + This wizard will help to export your songs to the open and free <strong>OpenLyrics</strong> worship song format. A tündér segít a dalok szabad és ingyenes <strong>OpenLyrics</strong> formátumba való exportálásában. @@ -6842,172 +6830,172 @@ EasyWorshipből kerültek importálásra] SongsPlugin.ImportWizardForm - + Select Document/Presentation Files Jelölj ki egy dokumentum vagy egy bemutató fájlokat - + Song Import Wizard Dalimportáló tündér - + This wizard will help you to import songs from a variety of formats. Click the next button below to start the process by selecting a format to import from. A tündér segít a különféle formátumú dalok importálásában. Kattints az alábbi Következő gombra a folyamat első lépésének indításhoz, a formátum kiválasztásához. - + Generic Document/Presentation Általános dokumentum vagy bemutató - + Add Files... Fájlok hozzáadása… - + Remove File(s) Fájlok törlése - + Please wait while your songs are imported. Kérlek, várj, míg a dalok importálás alatt állnak. - + OpenLP 2.0 Databases OpenLP 2.0 adatbázisok - + openlp.org v1.x Databases openlp.org v1.x adatbázisok - + Words Of Worship Song Files Words of Worship dal fájlok - + Songs Of Fellowship Song Files Songs Of Fellowship dal fájlok - + SongBeamer Files SongBeamer fájlok - + SongShow Plus Song Files SongShow Plus dal fájlok - + Foilpresenter Song Files Foilpresenter dal fájlok - + Copy Másolás - + Save to File Mentés fájlba - + The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. A Songs of Fellowship importáló le lett tiltva, mivel az OpenLP nem talál OpenOffice-t vagy LibreOffice-t a számítógépen. - + The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. Az általános dokumentum, ill. bemutató importáló le lett tiltva, mivel az OpenLP nem talál OpenOffice-t vagy LibreOffice-t a számítógépen. - + OpenLyrics or OpenLP 2.0 Exported Song OpenLyrics vagy OpenLP 2.0 epoxrtált dal - + OpenLyrics Files OpenLyrics fájlok - + CCLI SongSelect Files CCLI SongSelect fájlok - + EasySlides XML File EasySlides XML fájl - + EasyWorship Song Database EasyWorship dal adatbázis - + DreamBeam Song Files DreamBeam dal fájlok - + You need to specify a valid PowerSong 1.0 database folder. Meg kell adni egy érvényes PowerSong 1.0 adatvázis mappát. - + 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>. Előbb CSV szövegfájllá kell konvertálni a ZionWorx adatbázist a <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">Felhasználói kézikönyv</a> útmutatása szerint. - + SundayPlus Song Files SundayPlus dal fájlok - + This importer has been disabled. Ez az importáló le lett tiltva. - + MediaShout Database MediaShout adatbázis - + The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. A MediaShout importáló csak Windows alatt támogatott. A hiányzó Python modul miatt le lett tiltva. Alkalmazásához telepíteni kell a "pyodbc" modult. - + SongPro Text Files SongPro szövegfájlok - + SongPro (Export File) SongPro (export fájl) - + In SongPro, export your songs using the File -> Export menu SongPro-ban a Fájl -> Exportálás menüpontban lehet exportálni a dalokat @@ -7015,12 +7003,12 @@ EasyWorshipből kerültek importálásra] SongsPlugin.MediaFilesForm - + Select Media File(s) Médiafájlok kijelölése - + Select one or more audio files from the list below, and click OK to import them into this song. Jelölj ki egy vagy több hangfájlt az alábbi listából és kattints az OK gombra a dalba való importálásukhoz. @@ -7038,7 +7026,7 @@ EasyWorshipből kerültek importálásra] Dalszöveg - + CCLI License: CCLI licenc: @@ -7048,7 +7036,7 @@ EasyWorshipből kerültek importálásra] Teljes dal - + Are you sure you want to delete the %n selected song(s)? Valóban törölhető a kijelöl %n dal? @@ -7060,7 +7048,7 @@ EasyWorshipből kerültek importálásra] Szerzők, témakörök, könyvek listájának kezelése. - + copy For song cloning másolás @@ -7094,7 +7082,7 @@ EasyWorshipből kerültek importálásra] SongsPlugin.MediaShoutImport - + Unable to open the MediaShout database. Nem sikerült megnyitni a MediaShout adatbázist. @@ -7102,7 +7090,7 @@ EasyWorshipből kerültek importálásra] SongsPlugin.OpenLP1SongImport - + Not a valid openlp.org 1.x song database. Ez nem egy openlp.org 1.x daladatbázis. @@ -7110,7 +7098,7 @@ EasyWorshipből kerültek importálásra] SongsPlugin.OpenLPSongImport - + Not a valid OpenLP 2.0 song database. Ez nem egy OpenLP 2.0 daladatbázis. @@ -7118,7 +7106,7 @@ EasyWorshipből kerültek importálásra] SongsPlugin.OpenLyricsExport - + Exporting "%s"... Exportálás „%s”… @@ -7126,55 +7114,55 @@ EasyWorshipből kerültek importálásra] SongsPlugin.PowerSongImport - + No songs to import. Nincsenek importálható dalok. - + Verses not found. Missing "PART" header. Versszakok nem találhatók. Hiányzik a „PART” fejléc. - + No %s files found. - + A fájlok nem találhatók %s. - + Invalid %s file. Unexpected byte value. - + Érvénytelen fájl: %s. Nem várt bájt érték. - + Invalid %s file. Missing "TITLE" header. - + Érvénytelen fájl: %s. Hiányzó „TITLE” fejléc. - + Invalid %s file. Missing "COPYRIGHTLINE" header. - + Érvénytelen fájl: %s. Hiányzó „COPYRIGHTLINE” fejléc. SongsPlugin.SongBookForm - + Song Book Maintenance Énekeskönyvek kezelése - + &Name: &Név: - + &Publisher: &Kiadó: - + You need to type in a name for the book. Meg kell adni a könyv nevét. @@ -7182,12 +7170,12 @@ EasyWorshipből kerültek importálásra] SongsPlugin.SongExportForm - + Your song export failed. Dalexportálás meghiúsult. - + Finished export. To import these files use the <strong>OpenLyrics</strong> importer. Exportálás befejeződött. Ezen fájlok importálásához majd az <strong>OpenLyrics</strong> importálót vedd igénybe. @@ -7195,27 +7183,27 @@ EasyWorshipből kerültek importálásra] SongsPlugin.SongImport - + copyright szerzői jog - + The following songs could not be imported: A következő dalok nem importálhatók: - + Cannot access OpenOffice or LibreOffice Nem lehet elérni az OpenOffice-t vagy a LibreOffice-t - + Unable to open file Nem sikerült megnyitni a fájlt - + File not found A fájl nem található @@ -7223,107 +7211,107 @@ EasyWorshipből kerültek importálásra] SongsPlugin.SongMaintenanceForm - + Could not add your author. A szerzőt nem lehet hozzáadni. - + This author already exists. Ez a szerző már létezik. - + Could not add your topic. A témakört nem lehet hozzáadni. - + This topic already exists. Ez a témakör már létezik. - + Could not add your book. A könyvet nem lehet hozzáadni. - + This book already exists. Ez a könyv már létezik. - + Could not save your changes. A módosításokat nem lehet elmenteni. - + Could not save your modified author, because the author already exists. A módosított szerzőt nem lehet elmenteni, mivel már a szerző létezik. - + Could not save your modified topic, because it already exists. A módosított témakört nem lehet elmenteni, mivel már létezik. - + Delete Author Szerző törlése - + Are you sure you want to delete the selected author? Valóban törölhető a kijelölt szerző? - + This author cannot be deleted, they are currently assigned to at least one song. Ezt a szerzőt nem lehet törölni, mivel jelenleg legalább egy dalhoz hozzá van rendelve. - + Delete Topic Témakör törlése - + Are you sure you want to delete the selected topic? Valóban törölhető a kijelölt témakör? - + This topic cannot be deleted, it is currently assigned to at least one song. Ezt a témakört nem lehet törölni, mivel jelenleg legalább egy dalhoz hozzá van rendelve. - + Delete Book Könyv törlése - + Are you sure you want to delete the selected book? Valóban törölhető a kijelölt könyv? - + This book cannot be deleted, it is currently assigned to at least one song. Ezt a könyvet nem lehet törölni, mivel jelenleg legalább egy dalhoz hozzá van rendelve. - + The author %s already exists. Would you like to make songs with author %s use the existing author %s? Ez a szerző már létezik: %s. Szeretnéd, hogy a dal – melynek szerzője %s – a már létező szerző (%s) dalai közé kerüljön rögzítésre? - + The topic %s already exists. Would you like to make songs with topic %s use the existing topic %s? Ez a témakör már létezik: %s. Szeretnéd, hogy a dal – melynek témaköre: %s – a már létező témakörben (%s) kerüljön rögzítésre? - + The book %s already exists. Would you like to make songs with book %s use the existing book %s? Ez a könyv már létezik: %s. Szeretnéd, hogy a dal – melynek könyve: %s – a már létező könyvben (%s) kerüljön rögzítésre? @@ -7331,27 +7319,27 @@ EasyWorshipből kerültek importálásra] SongsPlugin.SongsTab - + Songs Mode Dalmód - + Enable search as you type Gépelés közbeni keresés engedélyezése - + Display verses on live tool bar Versszakok megjelenítése az élő adás eszköztáron - + Update service from song edit Sorrendben lévő példány frissítése a dal módosításakor - + Import missing songs from service files Hiányzó dalok importálása a szolgálati fájlokból @@ -7359,17 +7347,17 @@ EasyWorshipből kerültek importálásra] SongsPlugin.TopicsForm - + Topic Maintenance Témakörök kezelése - + Topic name: Témakör neve: - + You need to type in a topic name. Meg kell adni egy témakör nevet. @@ -7377,37 +7365,37 @@ EasyWorshipből kerültek importálásra] SongsPlugin.VerseType - + Verse Versszak - + Chorus Refrén - + Bridge Híd - + Pre-Chorus Előrefrén - + Intro Bevezetés - + Ending Lezárás - + Other Más @@ -7415,29 +7403,29 @@ EasyWorshipből kerültek importálásra] SongsPlugin.ZionWorxImport - + Error reading CSV file. Hiba a CSV fájl olvasása közben. - + File not valid ZionWorx CSV format. A fájl nem érvényes ZionWorx CSV formátumú. - + Line %d: %s - + %d sor: %s - + Decoding error: %s - + Dekódolási hiba: %s - + Record %d - + %d rekord diff --git a/resources/i18n/id.ts b/resources/i18n/id.ts index 95b059bae..5e1618a15 100644 --- a/resources/i18n/id.ts +++ b/resources/i18n/id.ts @@ -3,108 +3,108 @@ AlertsPlugin - + &Alert - Per&ingatan + &Peringatan - + Show an alert message. Menampilkan pesan peringatan. - + Alert name singular Peringatan - + Alerts name plural Peringatan - + Alerts container title Peringatan - + <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of nursery alerts on the display screen. - <strong>Plugin Peringatan</strong><br>Plugin peringatan mengendalikan tampilan peringatan di layar tampilan. + <strong>Plugin Peringatan</strong><br>Plugin Peringatan mengendalikan penampilan peringatan di layar tampilan. AlertsPlugin.AlertForm - + Alert Message Pesan Peringatan - + Alert &text: - Peringatan &teks: + Teks &peringatan: - + &New &Baru - + &Save &Simpan - + Displ&ay - &Tampilan + &Tampilkan - + Display && Cl&ose Tampilkan dan &Tutup - + New Alert Peringatan Baru - + You haven't specified any text for your alert. Please type in some text before clicking New. - Teks isi peringatan belum dispesifikasi. Harap masukkan teks sebelum memilih Baru. + Teks isi peringatan belum ditentukan. Silakan masukkan teks sebelum memilih Baru. - + &Parameter: &Parameter: - + No Parameter Found Parameter Tidak Ditemukan - + You have not entered a parameter to be replaced. Do you want to continue anyway? Anda belum memasukkan parameter baru. Tetap lanjutkan? - + No Placeholder Found - Placeholder Tidak Ditemukan + Tempat Penampung Tidak Ditemukan - + The alert text does not contain '<>'. Do you want to continue anyway? - Peringatan tidak mengandung '<>'. + Teks peringatan tidak berisikan '<>'. Tetap lanjutkan? @@ -119,629 +119,631 @@ Tetap lanjutkan? AlertsPlugin.AlertsTab - + Font Fon - + Font name: Nama fon: - + Font color: Warna fon: - + Background color: Warna latar: - + Font size: Ukuran fon: - + Alert timeout: - Waktu-habis untuk peringatan: + Batas-waktu peringatan: BiblesPlugin - + &Bible &Alkitab - + Bible name singular Alkitab - + Bibles name plural Alkitab - + Bibles container title Alkitab - + No Book Found Kitab Tidak Ditemukan - + No matching book could be found in this Bible. Check that you have spelled the name of the book correctly. Kitab tidak ditemukan dalam Alkitab ini. Periksa apakah Anda telah mengeja nama kitab dengan benar. - + Import a Bible. Impor Alkitab. - + Add a new Bible. Tambahkan Alkitab baru. - + Edit the selected Bible. Sunting Alkitab terpilih. - + Delete the selected Bible. Hapus Alkitab terpilih. - + Preview the selected Bible. Pratinjau Alkitab terpilih. - + Send the selected Bible live. Tayangkan Alkitab terpilih. - + Add the selected Bible to the service. - Tambahkan Alkitab terpilih ke dalam layanan. + Tambahkan Alkitab terpilih ke Layanan. - + <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display Bible verses from different sources during the service. - <strong>Plugin Alkitab</strong><br />Plugin Alkitab menyediakan kemampuan untuk menayangkan ayat Alkitab dari berbagai sumber selama layanan. + <strong>Plugin Alkitab</strong><br />Plugin Alkitab menyediakan kemampuan untuk menampilkan ayat Alkitab dari sumber yang berbeda selama Layanan dijalankan. - + &Upgrade older Bibles - &Upgrade Alkitab lama + &Mutakhirkan Alkitab lama - + Upgrade the Bible databases to the latest format. - Perbarui basis data Alkitab ke format terbaru. - - - - Genesis - + Mutakhirkan basis-data Alkitab ke format terakhir. - Exodus - + Genesis + Kejadian - Leviticus - + Exodus + Keluaran - Numbers - + Leviticus + Imamat - Deuteronomy - + Numbers + Bilangan - Joshua - + Deuteronomy + Ulangan - Judges - + Joshua + Yosua - Ruth - + Judges + Hakim-hakim - 1 Samuel - + Ruth + Rut - 2 Samuel - + 1 Samuel + 1 Samuel - 1 Kings - + 2 Samuel + 2 Samuel - 2 Kings - + 1 Kings + 1 Raja-raja - 1 Chronicles - + 2 Kings + 2 Raja-raja - 2 Chronicles - + 1 Chronicles + 1 Tawarikh - Ezra - + 2 Chronicles + 2 Tawarikh - Nehemiah - + Ezra + Ezra - Esther - + Nehemiah + Nehemia - Job - + Esther + Ester - Psalms - + Job + Ayub - Proverbs - + Psalms + Mazmur - Ecclesiastes - + Proverbs + Amsal - Song of Solomon - + Ecclesiastes + Pengkotbah - Isaiah - + Song of Solomon + Kidung Agung - Jeremiah - + Isaiah + Yesaya - Lamentations - + Jeremiah + Yeremia - Ezekiel - + Lamentations + Ratapan - Daniel - + Ezekiel + Yehezkiel - Hosea - + Daniel + Daniel - Joel - + Hosea + Hosea - Amos - + Joel + Yoel - Obadiah - + Amos + Amos - Jonah - + Obadiah + Obaja - Micah - + Jonah + Yunus - Nahum - + Micah + Mikha - Habakkuk - + Nahum + Nahum - Zephaniah - + Habakkuk + Habakuk - Haggai - + Zephaniah + Zefanya - Zechariah - + Haggai + Hagai - Malachi - + Zechariah + Zakharia - Matthew - + Malachi + Maleakhi - Mark - + Matthew + Matius - Luke - + Mark + Markus - John - + Luke + Lukas - Acts - + John + Yohanes - Romans - + Acts + Kisah Para Rasul - 1 Corinthians - + Romans + Roma - 2 Corinthians - + 1 Corinthians + 1 Korintus - Galatians - + 2 Corinthians + 2 Korintus - Ephesians - + Galatians + Galatia - Philippians - + Ephesians + Efesus - Colossians - + Philippians + Filipi - 1 Thessalonians - + Colossians + Kolose - 2 Thessalonians - + 1 Thessalonians + 1 Tesalonika - 1 Timothy - + 2 Thessalonians + 2 Tesalonika - 2 Timothy - + 1 Timothy + 1 Timotius - Titus - + 2 Timothy + 2 Timotius - Philemon - + Titus + Titus - Hebrews - + Philemon + Filemon - James - + Hebrews + Ibrani - 1 Peter - + James + Yakobus - 2 Peter - + 1 Peter + 1 Petrus - 1 John - + 2 Peter + 2 Petrus - 2 John - + 1 John + 1 Yohanes - 3 John - + 2 John + 2 Yohanes - Jude - + 3 John + 3 Yohanes - Revelation - + Jude + Yudas - Judith - + Revelation + Wahyu - Wisdom - + Judith + Yudit - Tobit - + Wisdom + Keb. Salomo - Sirach - + Tobit + Tobit - Baruch - + Sirach + Sirakh - 1 Maccabees - + Baruch + Barukh - 2 Maccabees - + 1 Maccabees + 1 Makabe - 3 Maccabees - + 2 Maccabees + 2 Makabe - 4 Maccabees - + 3 Maccabees + 3 Maccabees - Rest of Daniel - + 4 Maccabees + 4 Maccabees - Rest of Esther - + Rest of Daniel + Tamb. Daniel - Prayer of Manasses - + Rest of Esther + Tamb. Ester - Letter of Jeremiah - + Prayer of Manasses + Prayer of Manasses - Prayer of Azariah - + Letter of Jeremiah + Letter of Jeremiah - Susanna - + Prayer of Azariah + Prayer of Azariah - Bel - + Susanna + Susanna - 1 Esdras - + Bel + Bel - 2 Esdras - + 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 BiblesPlugin.BibleEditForm - + You need to specify a version name for your Bible. - Anda harus menentukan nama versi untuk Alkitab Anda. + Anda harus menentukan suatu nama versi untuk Alkitab. - + You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. - Anda harus memberikan hak cipta untuk Alkitab Anda. Alkitab di Public Domain harus ditandai sedemikian. + Anda harus menetapkan hak cipta untuk Alkitab Anda. Alkitab di Public Domain harus ditandai seperti itu. - + Bible Exists - Alkitab Sudah Ada + Alkitab Sudah Ada - + This Bible already exists. Please import a different Bible or first delete the existing one. - Alkitab sudah ada. Silakan impor Alkitab lain atau hapus yang sudah ada. + Alkitab sudah ada. Silakan impor Alkitab lain atau hapus yang sudah ada. - + You need to specify a book name for "%s". - + Anda harus menentukan suatu nama kitab untuk "%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. - + Nama kitab "%s" tidak benar. +Nomor hanya dapat digunakan di awal dan harus +diikuti oleh satu atau lebih karakter non-numerik. - + Duplicate Book Name - + Duplikasi Nama Kitab - + The Book Name "%s" has been entered more than once. - + Nama kitab "%s" dimasukkan lebih dari sekali. BiblesPlugin.BibleManager - + Scripture Reference Error - Referensi Kitab Suci Galat + Referensi Alkitab Salah - + Web Bible cannot be used Alkitab Web tidak dapat digunakan - + Text Search is not available with Web Bibles. Pencarian teks tidak dapat dilakukan untuk Alkitab 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. Anda tidak memasukkan kata kunci pencarian. Anda dapat memisahkan kata kunci dengan spasi untuk mencari seluruh kata kunci dan Anda dapat memisahkan kata kunci dengan koma untuk mencari salah satu kata kunci. - + There are no Bibles currently installed. Please use the Import Wizard to install one or more Bibles. - TIdak ada Alkitab terpasang. Harap gunakan Wisaya Impor untuk memasang sebuah atau beberapa Alkitab. + TIdak ada Alkitab terpasang. Silakan gunakan Wisaya Impor untuk memasang satu atau beberapa Alkitab. - + No Bibles Available Alkitab tidak tersedia - + 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 @@ -751,185 +753,201 @@ Book Chapter%(verse)sVerse%(range)sVerse%(list)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sVerse%(list)sChapter%(verse)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sChapter%(verse)sVerse Please pay attention to the appended "s" of the wildcards and refrain from translating the words inside the names in the brackets. - + Referensi Alkitab tidak didukung oleh OpenLP atau tidak valid. Pastikan referensi Anda sesuai dengan salah satu pola berikut atau lihat manual: + +Bab +Bab%(range)sBab +Bab%(verse)sAyat%(range)sAyat +Bab%(verse)sAyat%(range)sAyat%(list)sAyat%(range)sAyat +Bab%(verse)sAyat%(range)sAyat%(list)sBab%(verse)sAyat%(range)sAyat +Bab%(verse)sAyat%(range)sBab%(verse)sAyat BiblesPlugin.BiblesTab - + Verse Display Tampilan Ayat - + Only show new chapter numbers - Hanya tampilkan nomor pasal baru + Hanya tampilkan nomor bab baru - + Bible theme: Tema Alkitab: - + No Brackets - Tanpa tanda kurung + Tanpa Tanda Kurung - + ( And ) ( Dan ) - + { And } { Dan } - + [ And ] [ Dan ] - + Note: Changes do not affect verses already in the service. - Catatan: -Perubahan tidak akan mempengaruhi ayat yang kini tampil. + Catatan: +Perubahan tidak mempengaruhi ayat yang sudah ada di Layanan. - + Display second Bible verses - Tampilkan ayat Alkitab selanjutnya + Tampilkan ayat Alkitab kedua (beda versi) - + Custom Scripture References - + Referensi Alkitab Suai - + Verse Separator: - + Pemisah Ayat: - + Range Separator: - + Pemisah Kisaran: - + List Separator: - + Pemisah Daftar: - + End Mark: - + Tanda Akhir: - + 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. - + Beberapa alternatif pemisah ayat dapat didefinisikan. +Semuanya harus dipisahkan oleh sebuah palang vertikal "|". +Silakan bersihkan baris penyuntingan ini untuk menggunakan nilai bawaan. - + 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. - + Beberapa alternatif pemisah kisaran dapat didefinisikan. +Semuanya harus dipisahkan oleh sebuah palang vertikal "|". +Silakan bersihkan baris penyuntingan ini untuk menggunakan nilai bawaan. - + 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. - + Beberapa alternatif pemisah daftar dapat didefinisikan. +Semuanya harus dipisahkan oleh sebuah palang vertikal "|". +Silakan bersihkan baris penyuntingan ini untuk menggunakan nilai bawaan. - + 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. - + Beberapa alternatif tanda akhir dapat didefinisikan. +Semuanya harus dipisahkan oleh sebuah palang vertikal "|". +Silakan bersihkan baris penyuntingan ini untuk menggunakan nilai bawaan. - + English - Inggris + Inggris - + Default Bible Language - + Bahasa Alkitab Bawaan - + Book name language in search field, search results and on display: - + Bahasa Kitab di bidang pencarian, +hasil pencarian, dan tampilan: - + Bible Language - + Bahasa Alkitab - + Application Language - + Bahasa Aplikasi BiblesPlugin.BookNameDialog - + Select Book Name - Pilih nama Kitab + Pilih Nama Kitab - + Current name: - Nama sekarang: + Nama saat ini: - + Corresponding name: - Nama yang cocok: + Nama yang sesuai: - + Show Books From - Tampilkan buku dari; + Tampilkan Kitab Dari - + Old Testament Perjanjian Lama - + New Testament Perjanjian Baru - + Apocrypha - Apokripa + Apokrif - + The following book name cannot be matched up internally. Please select the corresponding name from the list. - + Nama kitab berikut tidak dapat dicocokkan dengan sistem. Silakan pilih yang sesuai dari daftar. BiblesPlugin.BookNameForm - + You need to select a book. Anda harus memilih sebuah kitab. @@ -937,18 +955,18 @@ search results and on display: BiblesPlugin.CSVBible - + Importing books... %s Mengimpor kitab... %s - + Importing verses from %s... Importing verses from <book name>... Mengimpor ayat dari %s... - + Importing verses... done. Mengimpor ayat... selesai. @@ -956,109 +974,110 @@ search results and on display: BiblesPlugin.EditBibleForm - + Bible Editor - + Penyunting Alkitab - + License Details - Rincian Lisensi + Rincian Lisensi - + Version name: - Nama versi: + Nama versi: - + Copyright: - Hak cipta: + Hak Cipta: - + Permissions: - Izin: + Izin: - + Default Bible Language - + Bahasa Alkitab Bawaan - + Book name language in search field, search results and on display: - + Bahasa Kitab di bidang pencarian, hasil pencarian, dan tampilan: - + Global Settings - + Pengaturan Global - + Bible Language - + Bahasa Alkitab - + Application Language - + Bahasa Aplikasi - + English - Inggris + Inggris - + This is a Web Download Bible. It is not possible to customize the Book Names. - + Ini suatu Alkitab Unduhan dari Web. +Tidak mungkin untuk mengubahsuaikan Nama Kitab. - + 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. - + Untuk menggunakan nama kitab yang diubahsuaikan, "Bahasa Alkitab" harus dipilih pada tab Meta Data atau, jika "Pengaturan Global" dipilih pada halaman Alkitab di Konfigurasi OpenLP BiblesPlugin.HTTPBible - + Registering Bible and loading books... - Mendaftarkan Alkitab dan memuat buku... + Mendaftarkan Alkitab dan memuat kitab... - + Registering Language... Mendaftarkan bahasa... - + Importing %s... Importing <book name>... Mengimpor %s... - + Download Error - Unduhan Gagal + Unduhan Salah - + There was a problem downloading your verse selection. Please check your Internet connection, and if this error continues to occur please consider reporting a bug. - Ada masalah dalam mengunduh ayat yang terpilih. Mohon periksa sambungan internet Anda dan jika masalah berlanjut, pertimbangkan untuk melaporkan hal ini sebagai kutu. + Ada masalah dalam mengunduh ayat yang terpilih. Silakan periksa sambungan internet Anda dan jika masalah berlanjut, pertimbangkan untuk melaporkan hal ini sebagai bug. - + Parse Error - Galat saat parsing + Kesalahan Penguraian - + There was a problem extracting your verse selection. If this error continues to occur please consider reporting a bug. - Ada masalah dalam mengekstrak ayat yang terpilih. Jika masalah berlanjut, pertimbangkan untuk melaporkan hal ini sebagai kutu. + Ada masalah dalam mengekstrak ayat yang terpilih. Jika masalah berlanjut, silakan pertimbangkan untuk melaporkan hal ini sebagai bug. @@ -1071,12 +1090,12 @@ It is not possible to customize the Book Names. 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. - Wisaya ini akan membantu Anda mengimpor Alkitab dari berbagai format. Klik tombol lanjut di bawah untuk memulai proses dengan memilih format untuk diimpor. + Wisaya ini akan membantu Anda mengimpor Alkitab dari berbagai format. Klik tombol Selanjutnya di bawah untuk memulai proses dengan memilih format untuk diimpor. Web Download - Unduh dari web + Unduhan dari Web @@ -1116,12 +1135,12 @@ It is not possible to customize the Book Names. Password: - Sandi-lewat: + Kata sandi: Proxy Server (Optional) - Proxy Server (Opsional) + Server Proxy (Opsional) @@ -1141,32 +1160,32 @@ It is not possible to customize the Book Names. Copyright: - Hak cipta: + Hak Cipta: Please wait while your Bible is imported. - Mohon tunggu selama Alkitab diimpor. + Silakan tunggu selama Alkitab diimpor. You need to specify a file with books of the Bible to use in the import. - Anda harus menentukan berkas yang berisi nama kitab dalam Alkitab untuk digunakan dalam import. + Anda harus menentukan suatu berkas yang berisi kitab-kitab Alkitab untuk digunakan dalam impor. You need to specify a file of Bible verses to import. - Anda harus menentukan berkas Alkitab untuk diimpor. + Anda harus menentukan suatu berkas ayat Alkitab untuk diimpor. You need to specify a version name for your Bible. - Anda harus menentukan nama versi untuk Alkitab Anda. + Anda harus menentukan suatu nama versi untuk Alkitab. You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. - Anda harus memberikan hak cipta untuk Alkitab Anda. Alkitab di Public Domain harus ditandai sedemikian. + Anda harus menetapkan hak cipta untuk Alkitab Anda. Alkitab di Domain Publik harus ditandai seperti itu. @@ -1176,7 +1195,7 @@ It is not possible to customize the Book Names. This Bible already exists. Please import a different Bible or first delete the existing one. - Alkitab sudah ada. Silakan impor Alkitab lain atau hapus yang sudah ada. + Alkitab sudah ada. Silakan impor Alkitab lain atau hapus dahulu yang sudah ada. @@ -1191,7 +1210,7 @@ It is not possible to customize the Book Names. Bibleserver - Server Alkitab + BibleServer @@ -1216,7 +1235,7 @@ It is not possible to customize the Book Names. openlp.org 1.x Bible Files - Ayat Alkitab openlp.org 1.x + Berkas Alkitab openlp.org 1.x @@ -1227,24 +1246,24 @@ It is not possible to customize the Book Names. Registered Bible. Please note, that verses will be downloaded on demand and thus an internet connection is required. - Alkitab terdaftar. Mohon camkan, ayat akan diunduh saat -dibutuhkan dan membutuhkan koneksi internet. + Alkitab terdaftar. Perlu diketahui, ayat akan diunduh sesuai +permintaan dan membutuhkan sambungan internet. BiblesPlugin.LanguageDialog - + Select Language Pilih Bahasa - + OpenLP is unable to determine the language of this translation of the Bible. Please select the language from the list below. - OpenLP tidak dapat menentukan bahasa untuk terjemahan Alkitab ini. Mohon pilih bahasa dari daftar di bawah. + OpenLP tidak dapat menentukan bahasa untuk terjemahan Alkitab ini. Silakan pilih bahasa dari daftar di bawah. - + Language: Bahasa: @@ -1252,7 +1271,7 @@ dibutuhkan dan membutuhkan koneksi internet. BiblesPlugin.LanguageForm - + You need to choose a language. Anda harus memilih sebuah bahasa. @@ -1260,110 +1279,112 @@ dibutuhkan dan membutuhkan koneksi internet. BiblesPlugin.MediaItem - + Quick Cepat - + Find: Temukan: - + Book: Kitab: - + Chapter: - Pasal: + Bab: - + Verse: Ayat: - + From: Dari: - + To: - Kepada: + Sampai: - + Text Search Pencarian Teks - + Second: Kedua: - + Scripture Reference Referensi Alkitab - + Toggle to keep or clear the previous results. - Ganti untuk menyimpan atau menghapus hasil sebelumnya. + Simpan atau hapus hasil sebelumnya. - + You cannot combine single and dual Bible verse search results. Do you want to delete your search results and start a new search? - Tidak dapat menggabungkan hasil pencarian ayat. Ingin menghapus hasil pencarian dan mulai pencarian baru? + Anda tidak dapat menggabungkan hasil pencarian ayat kedua versi Alkitab. Apakah Anda ingin menghapus hasil pencarian dan mulai pencarian baru? - + Bible not fully loaded. Alkitab belum termuat seluruhnya. - + Information Informasi - + 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. - Alkitab kedua tidak memiliki seluruh ayat yang ada di Alkitab utama. Hanya ayat yang ditemukan di kedua Alkitab yang akan ditampilkan. %d ayat tidak terlihat di hasil. + Alkitab kedua tidak berisikan seluruh ayat yang ada di Alkitab utama. Hanya ayat yang ditemukan di kedua Alkitab yang akan ditampilkan. Ayat %d belum dimasukkan pada hasil. - + Search Scripture Reference... - + Mencari Referensi Alkitab... - + Search Text... - + Mencari Teks... - + Are you sure you want to completely delete "%s" Bible from OpenLP? You will need to re-import this Bible to use it again. - + Apakah Anda yakin ingin menghapus keseluruhan Alkitab "%s" dari OpenLP? + +Anda harus mengimpor ulang Alkitab ini untuk menggunakannya kembali. BiblesPlugin.OpenSongImport - + Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. - + Tipe berkas Alkitab tidak benar. Alkitab OpenSong mungkin dikompresi. Anda harus lakukan dekompresi sebelum mengimpor. BiblesPlugin.Opensong - + Importing %s %s... Importing <book name> <chapter>... Mengimpor %s %s... @@ -1372,12 +1393,12 @@ You will need to re-import this Bible to use it again. BiblesPlugin.OsisImport - + Detecting encoding (this may take a few minutes)... Mendeteksi pengodean (mungkin butuh beberapa menit)... - + Importing %s %s... Importing <book name> <chapter>... Mengimpor %s %s... @@ -1386,378 +1407,378 @@ You will need to re-import this Bible to use it again. BiblesPlugin.UpgradeWizardForm - + Select a Backup Directory - Pilih direktori cadangan + Pilih Direktori Cadangan - + Bible Upgrade Wizard - Wisaya Upgrade Alkitab + Wisaya Pemutakhiran Alkitab - + 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. - Wisaya ini akan membantu ada mengupgrade Alkitab yang tersedia. Klik tombol selanjutnya untuk memulai proses upgrade. + Wisaya ini akan membantu ada memutakhirkan Alkitab yang tersedia dari OpenLP 2 versi sebelumnya. Klik tombol Selanjutnya untuk memulai proses pemutakhirkan. - + Select Backup Directory - Pilih Direktori Pencadangan + Pilih Direktori Cadangan - + Please select a backup directory for your Bibles - Mohon pilih direktori pencadangan untuk Alkitab Anda + Silakan pilih direktori cadangan untuk Alkitab Anda - + 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>. - Rilis sebelumnya dari OpenLP 2.0 tidak dapat menggunakan Alkitab termutakhirkan. Langkah ini akan membuat sebuah cadangan untuk seluruh Alkitab Anda sehingga Anda tinggal menyalin berkas-berkas ke direktori data OpenLP jika Anda perlu kembali ke rilis sebelumnya dari OpenLP. Silakan lihat <a href="http://wiki.openlp.org/faq">Frequently Asked Questions</a>. + Rilis sebelumnya dari OpenLP 2.0 tidak dapat menggunakan Alkitab termutakhirkan. Langkah ini akan membuat pencadangan Alkitab saat ini sehingga Anda tinggal menyalin berkas-berkas ke direktori data OpenLP jika Anda perlu kembali ke rilis sebelumnya dari OpenLP. Silakan lihat <a href="http://wiki.openlp.org/faq">Frequently Asked Questions</a>. - + Please select a backup location for your Bibles. - Mohon pilh sebuah lokasi pencadangan untuk Alkitab Anda. + Silakan pilh sebuah lokasi cadangan untuk Alkitab Anda. - + Backup Directory: - Direktori Pencadangan: + Direktori Cadangan: - + There is no need to backup my Bibles - Tidak perlu membuat cadangan Alkitab + Tidak perlu membuat pencadangan Alkitab - + Select Bibles Pilih Alkitab - + Please select the Bibles to upgrade - Mohon pilih Alkitab untuk dimutakhirkan + Silakan pilih Alkitab untuk dimutakhirkan - + Upgrading Memutakhirkan - + Please wait while your Bibles are upgraded. - Mohon tunggu sementara Alkitab sedang diperbarui. + Silakan tunggu selama Alkitab sedang dimutakhirkan. - + The backup was not successful. To backup your Bibles you need permission to write to the given directory. - Pencadangan gagal. + Pencadangan tidak berhasil. Untuk mencadangkan Alkitab Anda perlu izin untuk menulis di direktori terpilih. - + Upgrading Bible %s of %s: "%s" Failed - Pemutakhiran Alkitab %s dari %s: "%s" + Memutakhirkan Alkitab %s dari %s: "%s" Gagal - + Upgrading Bible %s of %s: "%s" Upgrading ... - Pemutakhiran Alkitab %s dari %s: "%s" + Memutakhirkan Alkitab %s dari %s: "%s" Memutakhirkan ... - + Download Error - Unduhan Gagal + Unduhan Salah - + To upgrade your Web Bibles an Internet connection is required. - Untuk memutakhirkan Alkitab Web, koneksi internet dibutuhkan. + Untuk memutakhirkan Alkitab Web, sambungan internet dibutuhkan. - + Upgrading Bible %s of %s: "%s" Upgrading %s ... Memutakhirkan Alkitab %s dari %s: "%s" Memutakhirkan %s ... - + Upgrading Bible %s of %s: "%s" Complete - Perbaruan Alkitab %s dari %s: "%s" + Memutakhirkan Alkitab %s dari %s: "%s" Selesai - + , %s failed , %s gagal - + Upgrading Bible(s): %s successful%s Please note that verses from Web Bibles will be downloaded on demand and so an Internet connection is required. - Perbaruan Alkitab: %s sukses%s -Perhatikan bahwa ayat dari Alkitab Web akan diunduh saat diminta dan sambungan internet dibutuhkan. + Memutakhirkan (beberapa) Alkitab: %s berhasil%s +Perlu diketahui bahwa ayat dari Alkitab Web akan diunduh sesuai permintaan dan sambungan internet dibutuhkan. - + Upgrading Bible(s): %s successful%s - Pemutakhiran Alkitab: %s berhasil%s + Memutakhirkan (beberapa) Alkitab: %s berhasil%s - + Upgrade failed. - Pemutakhirkan gagal. + Pemutakhiran gagal. - + You need to specify a backup directory for your Bibles. - Anda harus membuat sebuah direktori pencadangan untuk Alkitab Anda. + Anda harus menentukan sebuah direktori cadangan untuk Alkitab Anda. - + Starting upgrade... - Memulai perbaruan... + Memulai pemutakhiran... - + There are no Bibles that need to be upgraded. - Tidak ada Alkitab yang perlu diperbarui. + Tidak ada Alkitab yang perlu dimutakhirkan. 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>Plugin Salindia Suai</strong><br />Plugin salindia suai menyediakan kemampuan untuk menyiapkan salindia teks yang dapat ditampilkan pada layar dengan cara yang sama seperti lagu. Plugin ini memberikan kebebasan lebih ketimbang plugin lagu. + <strong>Plugin Salindia Suai</strong><br />Plugin salindia suai menyediakan kemampuan untuk menyiapkan salindia teks suai yang dapat ditampilkan pada layar dengan cara yang sama seperti lagu. Plugin ini memberikan kebebasan lebih ketimbang plugin lagu. - + Custom Slide name singular Salindia Suai - + Custom Slides name plural - Salindia Suai + Salindia Suai - + Custom Slides container title Salindia Suai - + Load a new custom slide. Muat sebuah salindia suai. - + Import a custom slide. Impor sebuah salindia suai. - + Add a new custom slide. Tambahkan sebuah salindia suai. - + Edit the selected custom slide. - Sunting salindia-suai terpilih. + Sunting salindia suai terpilih. - + Delete the selected custom slide. - Hapus salindia-suai terpilih. + Hapus salindia suai terpilih. - + Preview the selected custom slide. - Pratinjau salindia-suai terpilih. + Pratinjau salindia suai terpilih. - + Send the selected custom slide live. - Tampilkan salindia-suai terpilih. + Tayangkan salindia suai terpilih. - + Add the selected custom slide to the service. - Tambahkan salindia-suai terpilih ke layanan. + Tambahkan salindia suai terpilih ke Layanan. CustomPlugin.CustomTab - + Custom Display Tampilan Suai - + Display footer - Catatan kaki tampilan + Tampilkan catatan kaki CustomPlugin.EditCustomForm - + Edit Custom Slides - Sunting Tampilan Suai + Sunting Salindia Suai - + &Title: &Judul: - + Add a new slide at bottom. - Tambahkan slide baru di bawah. + Tambahkan suatu salindia baru di dasar. - + Edit the selected slide. - Sunting slide terpilih. + Sunting salindia terpilih. - + Edit all the slides at once. - Sunting seluruh slide bersamaan. + Sunting seluruh salindia bersamaan. - + Split a slide into two by inserting a slide splitter. - Pecah slide menjadi dua menggunakan pemecah slide. + Pisah salindia menjadi dua menggunakan pemisah salindia. - + The&me: Te&ma: - + &Credits: &Kredit: - + You need to type in a title. Anda harus mengetikkan judul. - + You need to add at least one slide - Anda harus menambah paling sedikit satu salindia + Anda harus masukkan setidaknya satu salindia - + Ed&it All Sun&ting Semua - + Insert Slide - Tampilan Suai + Sisipkan Salindia CustomPlugin.EditVerseForm - + Edit Slide - + Sunting Salindia CustomPlugin.MediaItem - + Are you sure you want to delete the %n selected custom slide(s)? - - + + Anda yakin ingin menghapus %n salindia (- salindia) suaian terpilih ini? 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>Plugin Gambar</strong><br />Plugin gambar memungkinkan penayangan gambar.<br />Salah satu keunggulan fitur ini adalah kemampuan untuk menggabungkan beberapa gambar pada Service Manager, yang menjadikan penayangan beberapa gambar mudah. Plugin ini juga dapat menggunakan "perulangan terwaktu" dari OpenLP untuk membuat slide show yang berjalan otomatis. Juga, gambar dari plugin dapat digunakan untuk menggantikan latar tema. + <strong>Plugin Gambar</strong><br />Plugin gambar memungkinkan penayangan gambar.<br />Salah satu keunggulan fitur ini adalah kemampuan untuk menggabungkan beberapa gambar pada Manajer Layanan, yang menjadikan penayangan beberapa gambar lebih mudah. Plugin ini juga dapat menggunakan "pengulangan terwaktu" dari OpenLP untuk membuat penayangan salindia berjalan otomatis. Sebagai tambahan, gambar dari plugin dapat digunakan untuk menggantikan latar tema yang sedang digunakan, yang mana menjadikan butir berbasis teks seperti lagu dengan gambar pilihan sebagai latar bukan dari latar yang disediakan oleh tema. - + Image name singular Gambar - + Images name plural - Gambar + Gambar - + Images container title Gambar - + Load a new image. Muat gambar baru. - + Add a new image. - Tambah gambar baru. + Tambahkan suatu gambar baru. - + Edit the selected image. Sunting gambar terpilih. - + Delete the selected image. Hapus gambar terpilih. - + Preview the selected image. - Pratayang gambar terpilih. + Pratinjau gambar terpilih. - + Send the selected image live. Tayangkan gambar terpilih. - + Add the selected image to the service. - Tambahkan gambar terpilih ke layanan. + Tambahkan gambar terpilih ke Layanan. ImagePlugin.ExceptionDialog - + Select Attachment Pilih Lampiran @@ -1765,259 +1786,288 @@ Perhatikan bahwa ayat dari Alkitab Web akan diunduh saat diminta dan sambungan i ImagePlugin.MediaItem - + Select Image(s) - Pilih Gambar + Pilih (beberapa) Gambar - + You must select an image to delete. Pilih sebuah gambar untuk dihapus. - + You must select an image to replace the background with. Pilih sebuah gambar untuk menggantikan latar. - + Missing Image(s) - Gambar Tidak Ditemukan + (Beberapa) Gambar Hilang - + The following image(s) no longer exist: %s - Gambar berikut tidak ada lagi: %s + (Beberapa) Gambar berikut tidak ada lagi: %s - + The following image(s) no longer exist: %s Do you want to add the other images anyway? - Gambar berikut tidak ada lagi: %s -Ingin tetap menambah gambar lain? + (Beberapa) Gambar berikut tidak ada lagi: %s +Anda tetap ingin menambah gambar lain? - + There was a problem replacing your background, the image file "%s" no longer exists. Ada masalah dalam mengganti latar, berkas gambar "%s" tidak ada lagi. - + There was no display item to amend. - Tidak ada butir tampilan untuk di-amend. + Tidak ada butir tampilan untuk diubah. ImagesPlugin.ImageTab - + Background Color Warna Latar - + Default Color: Warna Bawaan: - + Visible background for images with aspect ratio different to screen. - + Latar yang dapat terlihat untuk gambar dengan rasio aspek yang berbeda dengan layar. MediaPlugin - + <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. <strong>Media Plugin</strong><br />Media plugin mampu memutar audio dan video. - - - Media - name singular - Media - Media - name plural - Media + name singular + Media - + + Media + name plural + Media + + + Media container title Media - + Load new media. Muat media baru. - + Add new media. Tambah media baru. - + Edit the selected media. Sunting media terpilih. - + Delete the selected media. Hapus media terpilih. - + Preview the selected media. Pratinjau media terpilih. - + Send the selected media live. Tayangkan media terpilih. - + Add the selected media to the service. - Tambahkan media terpilih ke layanan. + Tambahkan media terpilih ke Layanan. MediaPlugin.MediaItem - + Select Media Pilih Media - + You must select a media file to delete. Pilih sebuah berkas media untuk dihapus. - + You must select a media file to replace the background with. Pilih sebuah media untuk menggantikan latar. - + There was a problem replacing your background, the media file "%s" no longer exists. Ada masalah dalam mengganti latar, berkas media "%s" tidak ada lagi. - + Missing Media File - Berkas Media hilang + Berkas Media Hilang - + The file %s no longer exists. Berkas %s tidak ada lagi. - + Videos (%s);;Audio (%s);;%s (*) Videos (%s);;Audio (%s);;%s (*) - + There was no display item to amend. - Tidak ada butir tayangan untuk di-amend. + Tidak ada butir tampilan untuk diubah. - + Unsupported File - Berkas Tidak Didukung + Tidak Ada Dukungan untuk Berkas - + Automatic Otomatis - + Use Player: - Gunakan Pemutar: + Gunakan Pemain: MediaPlugin.MediaTab - + Available Media Players - + Pemain Media yang Tersedia - + %s (unavailable) - + %s (tidak tersedia) - + Player Order - + Urutan Permainan - + Allow media player to be overridden - + Izinkan pemain media untuk digantikan OpenLP - + Image Files Berkas Gambar - + Information Informasi - + Bible format has changed. You have to upgrade your existing Bibles. Should OpenLP upgrade now? Format Alkitab sudah diubah. -Anda harus menaiktingkatkan Alkitab yang sekarang. -Haruskah OpenLP menaiktingkatkan sekarang? +Anda harus memutakhirkan Alkitab yang sekarang. +Haruskah OpenLP dimutakhirkan sekarang? OpenLP.AboutForm - + Credits Kredit - + License Lisensi - + 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. - Program ini adalah perangkat lunak gratis; Anda dapat meredistribusikannya dan/atau memodifikasinya di bawah syarat-syarat GNU General Public License yang dikeluarkan Free Software Foundation; Lisensi versi 2. + Program ini adalah perangkat lunak gratis; Anda dapat menyebarluaskannya dan / atau memodifikasinya di bawah ketentuan GNU General Public License seperti yang diterbitkan oleh Free Software Foundation; Lisensi versi 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. Program ini didistribusikan dengan harapan dapat berguna, namun TANPA GARANSI; bahkan tanpa garansi implisit dalam PEMBELIAN maupun KETEPATAN TUJUAN TERTENTU. Lihat di bawah untuk detail lengkap. - + + Copyright © 2004-2012 %s +Portions copyright © 2004-2012 %s + Hak Cipta © 2004-2012 %s +Bagian hak cipta © 2004-2012 %s + + + + 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. + +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 volunteering by using the button below. + OpenLP <version><revision> - Open Source Lyrics Projection + +OpenLP adalah perangkat lunak presentasi gratis untuk gereja, atau perangkat lunak proyeksi lirik, digunakan untuk menampilkan salindia lagu, ayat Alkitab, video, gambar, dan berkas presentasi (jika Impress, PowerPoint atau PowerPoint Viewer terpasang) bagi acara penyembahan gereja dengan menggunakan komputer dan proyektor data. + +Ketahui lebih lanjut mengenai OpenLP: http://openlp.org/ + +OpenLP ditulis dan dikelola oleh sukarelawan. Jika Anda ingin melihat lebih banyak perangkat lunak Kristiani yang dibuat dengan gratis, silakan pertimbangkan untuk menjadi sukarelawan dengan menggunakan tombol di bawah ini. + + + + Volunteer + Sukarelawan + + + Project Lead %s @@ -2036,12 +2086,20 @@ Packagers Translators Afrikaans (af) %s + Czeck (cs) + %s + Danish (da) + %s German (de) %s + Greek (el) + %s English, United Kingdom (en_GB) %s English, South Africa (en_ZA) %s + Spanish (es) + %s Estonian (et) %s French (fr) @@ -2058,13 +2116,15 @@ Translators %s Russian (ru) %s + Swedish (sv) + %s Documentation %s Built With Python: http://www.python.org/ - Qt4: http://qt.nokia.com/ + Qt4: http://qt.digia.com/ PyQt4: http://www.riverbankcomputing.co.uk/software/pyqt/intro Oxygen Icons: http://oxygen-icons.org/ @@ -2079,365 +2139,284 @@ Final Credit on the cross, setting us free from sin. We bring this software to you for free because He has set us free. - Pemimpin Proyek - %s - -Pengembang -%s - -Kontributor -%s - -Penguji Coba -%s - -Pemaket -%s - -Penerjemah -Afrikaans (af) -%s -German (de) -%s -English, United Kingdom (en_GB) -%s -English, South Africa (en_ZA) -%s -Estonian (et) -%s -French (fr) -%s -Hungarian (hu) -%s -Japanese (ja) -%s -Norwegian Bokmål (nb) -%s -Dutch (nl) -%s -Portuguese, Brazil (pt_BR) -%s -Russian (ru) -%s - -Dokumentasi -%s - -Dibuat Dengan - Python: http://www.python.org/ - Qt4: http://qt.nokia.com/ - PyQt4: http://www.riverbankcomputing.co.uk/software/pyqt/intro - Oxygen Icons: http://oxygen-icons.org/ - -Kredit Akhir - "Karena begitu besarnya kasih Allah akan - dunia ini, sehingga Ia telah mengaruniakan - anak-Nya yang tunggal, supaya setiap orang - yang pecaya kepada-Nya tidak binasa, melainkan - beroleh hidup yang kekal. -- Yohanes 3:16 - - Dan <em>last but not least</em, kredit akhir - kepada Allah Bapa kita, untuk mengirim anak-Nya - untuk mati di salib, membebaskan kita dari dosa. - Kami memberikan perangkat lunak ini gratis karena - Dia telah membebaskan kita. - - - - Copyright © 2004-2012 %s -Portions copyright © 2004-2012 %s - - - - - 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. - -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 volunteering by using the button below. - - - - - Volunteer OpenLP.AdvancedTab - + UI Settings Pengaturan Antarmuka - + Number of recent files to display: - Jumlah berkas anyar untuk ditampilkan: + Jumlah berkas terbaru untuk ditampilkan: - + Remember active media manager tab on startup - Ingat tab media manager yang aktif saat mulai + Ingat tab Manajer Media yang aktif saat mulai - + Double-click to send items straight to live Klik-ganda untuk menayangkan butir terpilih - + Expand new service items on creation - Tampilkan benda service saat dibuat + Kembangkan butir Layanan baru saat dibuat - + Enable application exit confirmation Gunakan konfirmasi aplikasi keluar - + Mouse Cursor Kursor Tetikus - + Hide mouse cursor when over display window Sembunyikan kursor tetikus saat melewati jendela tampilan - + Default Image Gambar bawaan - + Background color: Warna latar: - + Image file: Berkas gambar: - + Open File Buka Berkas - + Advanced Lanjutan - + Preview items when clicked in Media Manager - Pratayang barang saat diklik pada Media Manager + Pratinjau butir saat diklik pada Manajer Media - + Click to select a color. Klik untuk memilih warna. - + Browse for an image file to display. - Ramban sebuah gambar untuk ditayangkan. + Menelusuri sebuah berkas gambar untuk ditampilkan. - + Revert to the default OpenLP logo. - Balikkan ke logo OpenLP bawaan. + Kembalikan ke logo OpenLP bawaan. - + 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. - + Layanan %d-%m-%Y %H-%M - + Default Service Name - + Nama Layanan Bawaan - + Enable default service name - + Gunakan nama Layanan bawaan - + Date and Time: - + Tanggal dan Waktu: - + Monday - + Senin - + Tuesday - + Selasa - + Wednesday - + Rabu - + Thurdsday - + Kamis - + Friday - + Jumat - + Saturday - + Sabtu - + Sunday - + Minggu - + Now - + Sekarang - + Time when usual service starts. - + Saat Layanan biasa dimulai. - + Name: - + Nama: - + Consult the OpenLP manual for usage. - + Lihat manual OpenLP untuk penggunaan. - + Revert to the default service name "%s". - + Kembalikan ke nama Layanan bawaan "%s". - + Example: - + Contoh: - + X11 - + X11 Bypass X11 Window Manager - + Abaikan Window Manager X11 - + Syntax error. - + Sintaks salah. - + Data Location - + Lokasi Data - + Current path: - + Jalur saat ini: - + Custom path: - + Jalur suai: - + Browse for new data file location. - + Telusuri lokasi berkas data baru. - + Set the data location to the default. - + Pasang lokasi data menjadi bawaan. - + Cancel - + Batal - + Cancel OpenLP data directory location change. - + Batalkan perubahan lokasi direktori data OpenLP - + Copy data to new location. - + Salin data ke lokasi baru. - + Copy the OpenLP data files to the new location. - + Salin berkas data OpenLP ke lokasi baru. - + <strong>WARNING:</strong> New data directory location contains OpenLP data files. These files WILL be replaced during a copy. - + <strong>PERINGATAN:</strong> Lokasi direktori data baru berisi berkas data OpenLP. Berkas ini AKAN digantikan saat penyalinan. - + Data Directory Error - + Direktori Data Salah - + Select Data Directory Location - + Pilih Lokasi Direktori Data - + Confirm Data Directory Change - + Konfirmasi Perubahan Direktori Data - + Reset Data Directory - + Setel-Ulang Direktori Data - + 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. - + Anda yakin ingin mengubah lokasi direktori data OpenLP ke lokasi bawaan? + +Lokasi ini akan digunakan setelah OpenLP ditutup. - + Overwrite Existing Data - + Tulis-Timpa Data yang Ada - + OpenLP data directory was not found %s @@ -2447,19 +2426,31 @@ This data directory was previously changed from the OpenLP default location. If Click "No" to stop loading OpenLP. allowing you to fix the the problem. Click "Yes" to reset the data directory to the default location. - + Direktori data OpenLP tidak ditemukan + +%s + +Direktori data ini telah berubah dari lokasi bawaan OpenLP. Jika lokasi baru ada pada media yang dapat dipindahkan, media tersebut harus siap digunakan. + +Klik "Tidak" untuk stop pemuatan OpenLP, sehinga Anda dapat memperbaiki masalah. + +Klik "Ya" untuk setel-ulang direktori data ke lokasi bawaan. - + Are you sure you want to change the location of the OpenLP data directory to: %s The data directory will be changed when OpenLP is closed. - + Anda yakin ingin mengganti lokasi direktori data OpenLP ke: + +%s + +Direktori data akan diubah setelah OpenLP ditutup. - + WARNING: The location you have selected @@ -2467,70 +2458,76 @@ The location you have selected %s appears to contain OpenLP data files. Do you wish to replace these files with the current data files? - + PERINGATAN: + +Lokasi yang Anda pilih + +%s + +nampaknya berisi berkas data OpenLP. Anda ingin mengganti berkas tersebut dengan berkas data saat ini? OpenLP.ExceptionDialog - + Error Occurred - Galat Terjadi + Terjadi Kesalahan - + 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. - Aduh! OpenLP mengalami masalah yang tidak dapat diatasi. Teks di kotak bawah mengandung informasi yang membantu pengembang OpenLP, jadi tolong surelkan ini ke bugs@openlp.org, bersama dengan deskripsi detail apa yang Anda lakukan saat masalah terjadi. + Ups! OpenLP mengalami masalah yang tidak dapat diatasi. Teks di kotak bawah berisikan informasi yang membantu pengembang OpenLP, silakan surelkan ini ke bugs@openlp.org, bersama dengan deskripsi detail apa yang Anda lakukan saat masalah terjadi. - + Send E-Mail Kirim Surel - + Save to File Simpan menjadi Berkas - + Please enter a description of what you were doing to cause this error (Minimum 20 characters) - Mohon masukkan deskripsi apa yang Anda lakukan saat galat terjadi + Silakan masukkan deskripsi apa yang Anda lakukan saat kesalahan terjadi (Paling sedikit 20 karakter) - + Attach File Lampirkan Berkas - + Description characters to enter : %s - Karakter deskripsi untuk dimasukkan: %s + Deskripsi karakter untuk dimasukkan: %s OpenLP.ExceptionForm - + Platform: %s Platform: %s - + Save Crash Report Simpan Laporan Crash - + Text files (*.txt *.log *.text) - File teks (*.txt *.log *.text) + Berkas teks (*.txt *.log *.text) - + **OpenLP Bug Report** Version: %s @@ -2545,23 +2542,23 @@ Version: %s --- Library Versions --- %s - **OpenLP Bug Report** -Version: %s + **Laporan Bug OpenLP** +Versi: %s ---- Details of the Exception. --- +--- Rincian Eksepsi. --- %s ---- Exception Traceback --- + --- Penelusuran Kembali dari Eksepsi --- %s ---- System information --- +--- Informasi Sistem --- %s ---- Library Versions --- +--- Versi Pustaka --- %s - + *OpenLP Bug Report* Version: %s @@ -2577,36 +2574,36 @@ Version: %s %s Please add the information that bug reports are favoured written in English. - *OpenLP Bug Report* -Version: %s + *Laporan Bug OpenLP* +Versi: %s ---- Details of the Exception. --- +--- Rincian Eksepsi. --- %s ---- Exception Traceback --- + --- Penelusuran Kembali dari Eksepsi --- %s ---- System information --- +--- Informasi Sistem --- %s ---- Library Versions --- +--- Versi Pustaka --- %s -Mohon gunakan bahasa Inggris untuk laporan kutu. + OpenLP.FileRenameForm - + File Rename Namai Berkas - + New File Name: Nama Berkas Baru: - + File Copy Salin Berkas @@ -2614,17 +2611,17 @@ Mohon gunakan bahasa Inggris untuk laporan kutu. OpenLP.FirstTimeLanguageForm - + Select Translation Pilih Terjemahan - + Choose the translation you'd like to use in OpenLP. Pilih terjemahan yang ingin Anda gunakan di OpenLP. - + Translation: Terjemahan: @@ -2632,239 +2629,243 @@ Mohon gunakan bahasa Inggris untuk laporan kutu. OpenLP.FirstTimeWizard - + Songs Lagu - + First Time Wizard Wisaya Kali Pertama - + Welcome to the First Time Wizard Selamat datang di Wisaya Kali Pertama - + Activate required Plugins Mengaktivasi Plugin yang dibutuhkan - + Select the Plugins you wish to use. Pilih Plugin yang ingin digunakan. - + Bible Alkitab - + Images Gambar - + Presentations Presentasi - + Media (Audio and Video) Media (Audio dan Video) - + Allow remote access - Izinkan akses jauh + Izinkan akses remote - + Monitor Song Usage Catat Penggunaan Lagu - + Allow Alerts Izinkan Peringatan - + Default Settings Pengaturan Bawaan - + Downloading %s... Mengunduh %s... - + Download complete. Click the finish button to start OpenLP. - Unduhan selesai. Klik tombol selesai untuk memulai OpenLP. + Unduhan selesai. Klik tombol Selesai untuk memulai OpenLP. - + Enabling selected plugins... Mengaktifkan plugin terpilih... - - - No Internet Connection - Tidak Terhubung ke Internet - - Unable to detect an Internet connection. - Tidak dapat mendeteksi koneksi Internet. + No Internet Connection + Tidak Tersambung ke Internet - + + Unable to detect an Internet connection. + Tidak dapat mendeteksi sambungan Internet. + + + Sample Songs Contoh Lagu - + Select and download public domain songs. Pilih dan unduh lagu domain bebas. - + Sample Bibles Contoh Alkitab - + Select and download free Bibles. Pilih dan unduh Alkitab gratis. - + Sample Themes Contoh Tema - + Select and download sample themes. Pilih dan unduh contoh tema. - + Set up default settings to be used by OpenLP. Atur pengaturan bawaan pada OpenLP. - + Default output display: Tampilan keluaran bawaan: - + Select default theme: Pilih tema bawaan: - + Starting configuration process... Memulai proses konfigurasi... - + This wizard will help you to configure OpenLP for initial use. Click the next button below to start. - Wisaya ini akan membantu mengonfigurasi OpenLP untuk penggunaan pertama. Klik tombol di bawah untuk memulai. + Wisaya ini akan membantu mengonfigurasi OpenLP untuk penggunaan pertama. Klik tombol Selanjutnya di bawah untuk memulai. - + Setting Up And Downloading Persiapan dan Pengunduhan - + Please wait while OpenLP is set up and your data is downloaded. - Mohon tunggu selama OpenLP dipersiapkan dan data Anda diunduh. + Silakan tunggu selama OpenLP dipersiapkan dan data Anda diunduh. - + Setting Up Persiapan - + Click the finish button to start OpenLP. - Klik tombol selesai untuk memulai OpenLP. + Klik tombol Selesai untuk memulai OpenLP. - + Download complete. Click the finish button to return to OpenLP. - Unduhan selesai. Klik tombol selesai untuk kembali ke OpenLP. + Unduhan selesai. Klik tombol Selesai untuk kembali ke OpenLP. - + Click the finish button to return to OpenLP. - Klik tombol selesai untuk kembali ke OpenLP. + Klik tombol Selesai untuk kembali ke OpenLP. - + Custom Slides Salindia Suai - + Finish Selesai - + 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. - + Sambungan internet tidak ditemukan. Wisaya Kali Pertama membutuhkan sambungan internet agar dapat mengunduh contoh lagu, Alkitab, dan tema. Klik tombol Selesai untuk memulai OpenLP dengan pengaturan awal dan tanpa data contoh. + +Untuk menjalankan lagi Wisaya Kali Pertama dan mengimpor data contoh di lain waktu, periksa sambungan Internet Anda dan jalankan lagi wisaya ini dengan memilih "Perkakas / Jalankan lagi Wisaya Kali Pertama" pada OpenLP. - + To cancel the First Time Wizard completely (and not start OpenLP), click the Cancel button now. - + + +Untuk membatalkan Wisaya Kali Pertama (dan tidak memulai OpenLP), klik tombol Batal sekarang. OpenLP.FormattingTagDialog - + Configure Formatting Tags Konfigurasi Label Pemformatan - + Edit Selection Sunting pilihan - + Save Simpan - + Description Deskripsi - + Tag Label - + Start HTML Mulai HTML - + End HTML Akhiri HTML @@ -2872,32 +2873,32 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can OpenLP.FormattingTagForm - + Update Error - Galat dalam Memperbarui + Kesalahan dalam Memperbarui - + Tag "n" already defined. Label "n" sudah terdefinisi. - + New Tag Label baru - + <HTML here> <HTML di sini> - + </and here> </dan sini> - + Tag %s already defined. Label %s telah terdefinisi. @@ -2905,82 +2906,82 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can OpenLP.FormattingTags - + Red Merah - + Black Hitam - + Blue Biru - + Yellow Kuning - + Green Hijau - + Pink Merah Muda - + Orange - Jingga + Oranye - + Purple Ungu - + White Putih - + Superscript Tulis-atas - + Subscript Tulis-bawah - + Paragraph Paragraf - + Bold Tebal - + Italics Miring - + Underline Garis Bawah - + Break Rehat @@ -2988,178 +2989,178 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can OpenLP.GeneralTab - + General Umum - + Monitors Monitor - + Select monitor for output display: Pilih monitor untuk tampilan keluaran: - + Display if a single screen Tampilkan jika layar tunggal - + Application Startup Awal Mulai Aplikasi - + Show blank screen warning Tampilkan peringatan layar kosong - + Automatically open the last service - Buka layanan terakhir secara otomatis + Buka Layanan terakhir secara otomatis - + Show the splash screen Tampilkan logo di awal - + Application Settings Pengaturan Aplikasi - + Prompt to save before starting a new service - Coba simpan sebelum memulai pelayanan baru + Sarankan untuk menyimpan sebelum memulai Layanan baru - + Automatically preview next item in service - Pratinjau item selanjutnya pada sevice + Pratinjau item selanjutnya pada Layanan - + sec sec - + CCLI Details Detail CCLI - + SongSelect username: Nama pengguna SongSelect: - + SongSelect password: Sandi-lewat SongSelect: - + X X - + Y Y - + Height Tinggi - + Width Lebar - + Check for updates to OpenLP - Cek pembaruan untuk OpenLP + Periksa pembaruan untuk OpenLP - + Unblank display when adding new live item - Jangan kosongkan layar saat menambah butir tayang baru + Jangan kosongkan layar saat menambah butir Tayang baru - + Timed slide interval: Selang waktu salindia: - + Background Audio Audio Latar - + Start background audio paused Mulai audio latar terjeda Service Item Slide Limits - + Batasan Salindia Butir Layanan - + Override display position: - + Gantikan posisi tampilan: - + Repeat track list - + Ulangi daftar lagu Behavior of next/previous on the last/first slide: - + Aturan selanjutnya/sebelumnya dari salindia terakhir/pertama: &Remain on Slide - + &Tetap pada Salindia &Wrap around - + &Pindah ke Salindia selanjutnya/sebelumnya pada butir Layanan yang sama &Move to next/previous service item - + &Pindah ke butir Layanan selanjutnya/sebelumnya OpenLP.LanguageManager - + Language Bahasa - + Please restart OpenLP to use your new language setting. - Mohon mulai ulang OpenLP untuk menggunakan pengaturan bahasa baru. + Silakan mulai ulang OpenLP untuk menggunakan pengaturan bahasa baru. OpenLP.MainDisplay - + OpenLP Display Tampilan OpenLP @@ -3167,667 +3168,682 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can OpenLP.MainWindow - + &File &Berkas - + &Import &Impor - + &Export &Ekspor - + &View - &Lihat + &Tinjau - + M&ode M&ode - + &Tools - &Kakas + &Perkakas - + &Settings &Pengaturan - + &Language &Bahasa - + &Help - Bantua&n + &Bantuan - + Media Manager Manajer Media - + Service Manager Manajer Layanan - + Theme Manager Manajer Tema - + &New &Baru - + &Open &Buka - + Open an existing service. - Buka layanan yang ada. + Buka Layanan yang ada. - + &Save &Simpan - + Save the current service to disk. - Menyimpan layanan aktif ke dalam diska. + Menyimpan Layanan saat ini ke dalam disk. - + Save &As... Simp&an Sebagai... - + Save Service As Simpan Layanan Sebagai - + Save the current service under a new name. - Menyimpan layanan aktif dengan nama baru. + Menyimpan Layanan saat ini dengan nama baru. - + E&xit Kelua&r - + Quit OpenLP Keluar dari OpenLP - + &Theme &Tema - + &Configure OpenLP... &Konfigurasi OpenLP... - + &Media Manager Manajer &Media - + Toggle Media Manager Ganti Manajer Media - + Toggle the visibility of the media manager. - Mengganti kenampakan manajer media. + Mengganti kenampakan Manajer Media. - + &Theme Manager Manajer &Tema - + Toggle Theme Manager Ganti Manajer Tema - + Toggle the visibility of the theme manager. - Mengganti kenampakan manajer tema. + Mengganti kenampakan Manajer Tema. - + &Service Manager - Manajer &Layanan + &Manajer Layanan - + Toggle Service Manager Ganti Manajer Layanan - + Toggle the visibility of the service manager. - Mengganti kenampakan manajer layanan. + Ganti visibilitas Manajer Layanan. - + &Preview Panel Panel &Pratinjau - + Toggle Preview Panel Ganti Panel Pratinjau - + Toggle the visibility of the preview panel. Ganti kenampakan panel pratinjau. - + &Live Panel - Pane&l Tayang + &Panel Tayang - + Toggle Live Panel Ganti Panel Tayang - + Toggle the visibility of the live panel. - Mengganti kenampakan panel tayang. + Mengganti kenampakan panel Tayang. - + &Plugin List Daftar &Plugin - + List the Plugins - Melihat daftar Plugin + Mendaftarkan Plugin - + &User Guide - T&untunan Pengguna + &Tuntunan Pengguna - + &About Tent&ang - + More information about OpenLP Informasi lebih lanjut tentang OpenLP - + &Online Help Bantuan &Daring - + &Web Site Situs &Web - + Use the system language, if available. - Gunakan bahasa sistem, jika ada. + Gunakan bahasa sistem, jika tersedia. - + Set the interface language to %s Ubah bahasa antarmuka menjadi %s - + Add &Tool... - Tambahkan Ala&t... + Tambahkan &Perkakas... - + Add an application to the list of tools. - Tambahkan aplikasi ke daftar alat. + Tambahkan sebuah aplikasi ke daftar perkakas. - + &Default &Bawaan - + Set the view mode back to the default. - Ubah mode tampilan ke bawaan. + Ubah mode tinjauan ke bawaan. - + &Setup &Persiapan - + Set the view mode to Setup. - Pasang mode tampilan ke Persiapan. + Pasang mode tinjauan ke Persiapan. - + &Live &Tayang - + Set the view mode to Live. - Pasang mode tampilan ke Tayang. + Pasang mode tinjauan ke Tayang. - + 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 versi %s sekarang siap untuk diunduh (Anda menggunakan versi %s). + OpenLP versi %s siap untuk diunduh (Anda saat ini menjalankan versi %s). Versi terbaru dapat diunduh dari http://openlp.org/. - + OpenLP Version Updated Versi OpenLP Terbarui - + OpenLP Main Display Blanked Tampilan Utama OpenLP Kosong - + The Main Display has been blanked out Tampilan Utama telah dikosongkan - + Default Theme: %s Tema Bawaan: %s - + English Please add the name of your language here Inggris - + Configure &Shortcuts... Atur &Pintasan... - + Close OpenLP Tutup OpenLP - + Are you sure you want to close OpenLP? - Yakin ingin menutup OpenLP? + Anda yakin ingin menutup OpenLP? - + Open &Data Folder... Buka Folder &Data... - + Open the folder where songs, bibles and other data resides. Buka folder tempat lagu, Alkitab, dan data lain disimpan. - + &Autodetect &Autodeteksi - + Update Theme Images Perbarui Gambar Tema - + Update the preview images for all themes. Perbarui gambar pratinjau untuk semua tema. - + Print the current service. - Cetak layanan saat ini. + Cetak Layanan saat ini. - + &Recent Files Be&rkas Baru-baru Ini - + L&ock Panels Kunci Pane&l - + Prevent the panels being moved. - Hindari panel digerakkan. + Hindari panel untuk dipindahkan. - + Re-run First Time Wizard - Jalankan Wisaya Kali Pertama + Jalankan lagi Wisaya Kali Pertama - + Re-run the First Time Wizard, importing songs, Bibles and themes. - Jalankan Wisaya Kali Pertama, mengimpor lagu, Alkitab, dan tema. + Jalankan lagi Wisaya Kali Pertama, mengimpor lagu, Alkitab, dan tema. - + Re-run First Time Wizard? - Jalankan Wisaya Kali Pertama? + Jalankan lagi Wisaya Kali Pertama? - + 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. - Anda yakin ingin menjalankan Wisaya Kali Pertama? + Anda yakin ingin menjalankan lagi Wisaya Kali Pertama? -Menjalankan wisaya ini mungkin akan mengubah konfigurasi OpenLP saat ini dan mungkin menambah lagu ke dalam daftar lagu dan mengubah tema bawaan. +Menjalankan lagi wisaya ini mungkin akan mengubah konfigurasi OpenLP saat ini dan mungkin menambah lagu ke dalam daftar lagu dan mengubah tema bawaan. - + Clear List Clear List of recent files Bersihkan Daftar - + Clear the list of recent files. Bersihkan daftar berkas baru-baru ini. - + Configure &Formatting Tags... Konfigurasi Label Pem&formatan... - + Export OpenLP settings to a specified *.config file - Ekspor pengaturan OpenLP ke dalam sebuah berkas *.config + Ekspor pengaturan OpenLP ke sebuah berkas *.config - + Settings Pengaturan - + Import OpenLP settings from a specified *.config file previously exported on this or another machine Impor pengaturan OpenLP dari sebuah berkas *.config yang telah diekspor - + Import settings? Impor pengaturan? - + Are you sure you want to import settings? Importing settings will make permanent changes to your current OpenLP configuration. Importing incorrect settings may cause erratic behaviour or OpenLP to terminate abnormally. - + Apakah Anda yakin ingin meng-impor pengaturan? + +Meng-impor pengaturan akan membuat perubahan permanen pada konfigurasi OpenLP Anda saat ini. + +Meng-impor pengaturan yang salah dapat menyebabkan perilaku tak menentu atau OpenLP berakhir secara tidak wajar. - + Open File - Buka Berkas + Membuka Berkas - + OpenLP Export Settings Files (*.conf) - + Berkas Ekspor Pengaturan OpenLP (*.conf) - + Import settings - + Impor Pengaturan - + OpenLP will now close. Imported settings will be applied the next time you start OpenLP. - + OpenLP sekarang akan ditutup. Pengaturan yang di-impor akan diterapkan saat berikutnya Anda memulai OpenLP. - + Export Settings File - + Berkas Ekspor Pengaturan - + OpenLP Export Settings File (*.conf) - + Berkas Ekspor Pengaturan OpenLP (*.conf) - + New Data Directory Error - + Direktori Data Baru Salah - + The file you selected does appear to be a valid OpenLP settings file. Section [%s] is not valid Processing has terminated and no changed have been made. - + Berkas yang Anda pilih nampaknya berkas pengaturan OpenLP yang valid. + +Bagian [%s] tidak valid + +Proses telah dihentikan dan tidak ada perubahan yang telah dibuat. - + Copying OpenLP data to new data directory location - %s - Please wait for copy to finish - + Sedang menyalin data OpenLP ke lokasi direktori data baru - %s - Silakan tunggu penyalinan selesai - + OpenLP Data directory copy failed %s - + Penyalinan direktori data OpenLP gagal + +%s OpenLP.Manager - + Database Error - + Basis-Data Salah - + 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 - + Basis-data yang sedang dimuat dibuat dalam versi OpenLP yang lebih baru. Basis-data adalah versi %d, sedangkan OpenLP membutuhkan versi %d. Basis-data tidak akan dimuat. + +Basis Data : %s - + OpenLP cannot load your database. Database: %s - + OpenLP tidak dapat memuat basis-data Anda. + +Basis-Data : %s OpenLP.MediaManagerItem - + No Items Selected - Tidak Ada Barang yang Terpilih + Tidak Ada Butir Terpilih - + &Add to selected Service Item - T&ambahkan ke dalam Butir Layanan + &Tambahkan ke Butir Layanan terpilih - + You must select one or more items to preview. - Anda harus memilih satu atau beberapa butir untuk dipratilik. + Anda harus memilih satu atau beberapa butir untuk dipratinjau. - + You must select one or more items to send live. Anda harus memilih satu atau beberapa butir untuk ditayangkan. - + You must select one or more items. Anda harus memilih satu atau beberapa butir. - + You must select an existing service item to add to. - Anda harus memilih butir layanan yang ada untuk ditambahkan. + Anda harus memilih sebuah Butir Layanan yang ada untuk ditambahkan. - + Invalid Service Item - Butir Layanan Tidak Sahih + Butir Layanan Tidak Valid - + You must select a %s service item. - Anda harus memilih sebuah butir layanan %s. + Anda harus memilih sebuah butir Layanan %s. - + You must select one or more items to add. - + Anda harus memilih satu atau lebih butir untuk menambahkan. - + No Search Results - + Tidak Ada Hasil Pencarian - + Invalid File Type - + Tipe Berkas Tidak Valid - + Invalid File %s. Suffix not supported - + Berkas Tidak Valid %s. +Tidak ada dukungan untuk akhiran ini &Clone - + &Kloning - + Duplicate files were found on import and were ignored. - + Duplikat berkas ditemukan saat impor dan diabaikan. OpenLP.OpenLyricsImportError - + <lyrics> tag is missing. - + Label <lyrics> hilang. - + <verse> tag is missing. - + Label <verse> hilang. OpenLP.PluginForm - + Plugin List Daftar Plugin - + Plugin Details Detail Plugin - + Status: Status: - + Active Aktif - + Inactive - Tidak Aktif + Nonaktif - + %s (Inactive) - % (Tidak Aktif) + %s (Nonaktif) - + %s (Active) %s (Aktif) - + %s (Disabled) - + %s (dinonaktifkan) OpenLP.PrintServiceDialog - + Fit Page Samakan dengan Halaman - + Fit Width Samakan dengan Lebar @@ -3835,90 +3851,90 @@ Suffix not supported OpenLP.PrintServiceForm - + Options - Pilihan + Opsi - + Copy Salin - + Copy as HTML Salin sebagai HTML - + Zoom In Perbesar - + Zoom Out Perkecil - + Zoom Original Kembalikan Ukuran - + Other Options - Pilihan Lain + Opsi Lain - + Include slide text if available - Masukkan teks dari salindia jika tersedia + Sertakan teks salindia jika tersedia - + Include service item notes - Masukkan catatan butir layanan + Masukkan catatan butir Layanan - + Include play length of media items - Masukkan lama putar butir media + Masukkan durasi permainan butir media - + Add page break before each text item Tambahkan pemisan sebelum tiap butir teks - + Service Sheet - + Lembar Layanan - + Print - - - - - Title: - + Cetak + Title: + Judul + + + Custom Footer Text: - + Teks Catatan Kaki Suai: OpenLP.ScreenList - + Screen Layar - + primary Utama @@ -3926,20 +3942,20 @@ Suffix not supported OpenLP.ServiceItem - + <strong>Start</strong>: %s - + <strong>Mulai</strong>: %s - + <strong>Length</strong>: %s - + <strong>Durasi</strong>: %s OpenLP.ServiceItemEditForm - + Reorder Service Item Atur Ulang Butir Layanan @@ -3947,3039 +3963,3054 @@ Suffix not supported OpenLP.ServiceManager - + Move to &top - Pindahkan ke punc&ak + Pindahkan ke puncak - + Move item to the top of the service. - Pindahkan butir ke puncak daftar layanan. + Pindahkan butir ke puncak daftar Layanan. - + Move &up - Pindahkan ke a&tas + Naikkan - + Move item up one position in the service. - Naikkan butir satu posisi pada daftar layanan. + Naikkan butir satu posisi pada daftar Layanan. - + Move &down - Pindahkan ke &bawah + Turunkan - + Move item down one position in the service. - Turunkan butir satu posisi pada daftar layanan. + Turunkan butir satu posisi pada daftar Layanan. - + Move to &bottom - Pindahkan ke &kaki + Pindahkan ke dasar - + Move item to the end of the service. - Pindahkan butir ke kaki daftar layanan. + Pindahkan butir ke akhir daftar Layanan. - + &Delete From Service - Hapus &dari Layanan + &Hapus dari Layanan - + Delete the selected item from the service. - Hapus butir terpilih dari layanan. + Hapus butir terpilih dari Layanan. - + &Add New Item T&ambahkan Butir Baru - + &Add to Selected Item - T&ambahkan ke Butir Terpilih + &Tambahkan ke Butir Terpilih - + &Edit Item &Sunting Butir - + &Reorder Item Atu&r Ulang Butir - + &Notes Catata&n - + &Change Item Theme &Ubah Tema - + OpenLP Service Files (*.osz) Berkas Layanan OpenLP (*.osz) - + File is not a valid service. The content encoding is not UTF-8. - Berkas bukan berupa layanan. + Berkas bukanlah Layanan yang valid. Isi berkas tidak berupa UTF-8. - + File is not a valid service. - Berkas bukan layanan sahih. + Berkas bukan Layanan valid. - + Missing Display Handler - Penangan Tayang hilang + Penangan Tayang Hilang - + Your item cannot be displayed as there is no handler to display it Butir tidak dapat ditayangkan karena tidak ada penangan untuk menayangkannya - + Your item cannot be displayed as the plugin required to display it is missing or inactive - Butir ini tidak dapat ditampilkan karena plugin yang dibutuhkan untuk menampilkannya hilang atau tidak aktif + Butir ini tidak dapat ditampilkan karena plugin yang dibutuhkan untuk menampilkannya hilang atau nonaktif - + &Expand all &Kembangkan semua - + Expand all the service items. - Kembangkan seluruh butir layanan. + Kembangkan seluruh butir Layanan. - + &Collapse all K&empiskan semua - + Collapse all the service items. - Kempiskan seluruh butir layanan. + Kempiskan seluruh butir Layanan. - + Open File Buka Berkas - + Moves the selection down the window. - Gerakkan pilihan ke bawah. + Pindahkan pilihan ke bawah jendela. - + Move up - Pindah atas + Naikkan - + Moves the selection up the window. - Pindahkan pilihan ke atas jendela + Pindahkan pilihan ke atas jendela. - + Go Live Tayangkan - + Send the selected item to Live. Tayangkan butir terpilih. - + &Start Time &Waktu Mulai - + Show &Preview Tampilkan &Pratinjau - + Modified Service - Layanan Terubah Suai + Layanan Termodifikasi - + The current service has been modified. Would you like to save this service? - Layanan saat ini telah terubah suai. Ingin menyimpan layanan ini? + Layanan saat ini telah termodifikasi. Ingin menyimpan Layanan ini? - + Custom Service Notes: - + Catatan Layanan Suai: - + Notes: - + Catatan : - + Playing time: - + Waktu permainan: - + Untitled Service - + Layanan Tanpa Judul - + File could not be opened because it is corrupt. Berkas tidak dapat dibuka karena rusak. - + Empty File Berkas Kosong - + This service file does not contain any data. - Berkas layanan ini tidak mengandung data apa pun. + Berkas Layanan ini tidak berisi data apa pun. - + Corrupt File Berkas Rusak - + Load an existing service. - + Muat Layanan yang ada saat ini. - + Save this service. - + Simpan Layanan ini. - + Select a theme for the service. - + Pilih suatu tema untuk Layanan - + This file is either corrupt or it is not an OpenLP 2.0 service file. - - - - - Service File Missing - - - - - Slide theme - + Berkas ini rusak ataupun bukan berkas Layanan OpenLP 2.0. + Slide theme + Tema salindia + + + Notes - + Catatan - + Edit - + Sunting - + Service copy only - + Salinan Layanan saja - + Error Saving File - + Penyimpanan Berkas Salah - + There was an error saving your file. + Terjadi kesalahan dalam penyimpanan berkas. + + + + Service File(s) Missing - - File missing from service + + The following file(s) in the service are missing: +%s - %s - -Continue saving? +These files will be removed if you continue to save. OpenLP.ServiceNoteForm - + Service Item Notes - + Catatan Butir Layanan OpenLP.SettingsForm - + Configure OpenLP - + Mengkonfigurasi OpenLP OpenLP.ShortcutListDialog - + Action - + Aksi - + Shortcut - + Jalan-Pintas - + Duplicate Shortcut - + Duplikasi Jalan-Pintas - + The shortcut "%s" is already assigned to another action, please use a different shortcut. - + Jalan-Pintas "%s" sudah diterapkan untuk aksi lain, silakan gunakan Jalan-Pintas yang berbeda. - + Alternate - + Alternatif - + Select an action and click one of the buttons below to start capturing a new primary or alternate shortcut, respectively. - + Pilih suatu aksi dan klik salah satu tombol di bawah ini untuk mulai mengambil, berturut-turut, jalan-pintas utama atau jalan-pintas alternatif yang baru. - + Default - + Bawaan - + Custom - + Suaian - + Capture shortcut. - + Menangkap jalan-pintas - + Restore the default shortcut of this action. - + Mengembalikan jalan-pintas bawaan untuk aksi ini. - + Restore Default Shortcuts - + Mengembalikan Jalan-Pintas Bawaan - + Do you want to restore all shortcuts to their defaults? - + Apakah Anda ingin mengembalikan semua jalan-pintas ke bawaan-nya masing-masing? - + Configure Shortcuts - + Mengkonfigurasi Jalan-Pintas OpenLP.SlideController - + Hide - + Sembunyikan - + Go To - + Tuju Ke - + Blank Screen - + Layar Kosong - + Blank to Theme - + Kosongkan jadi Tema - + Show Desktop - + Tampilkan Desktop - + Previous Service - + Layanan Sebelumnya - + Next Service - + Layanan Selanjutnya - + Escape Item - + Butir Keluar - + Move to previous. - + Pindah ke sebelumnya. - + Move to next. - + Pindah ke selanjutnya. - + Play Slides - + Mainkan Salindia - + Delay between slides in seconds. - + Penundaan antar salindia dalam hitungan detik. - + Move to live. - + Pindah ke Tayang. - + Add to Service. - + Tambahkan ke Layanan. - + Edit and reload song preview. - + Sunting dan muat-ulang pratinjau lagu. - + Start playing media. - + Mulai mainkan media. - + Pause audio. - + Sela audio. - + Pause playing media. - + Sela media yang sedang dimainkan. - + Stop playing media. - + Stop media yang sedang dimainkan. - + Video position. - + Posisi video. - + Audio Volume. - + Volume Audio. - + Go to "Verse" - + Tuju ke "Ayat" - + Go to "Chorus" - + Tuju ke "Refrain" - + Go to "Bridge" - + Tuju ke "Bridge" - + Go to "Pre-Chorus" - + Tuju ke "Pra-Refrain" - + Go to "Intro" - + Tuju ke "Intro" - + Go to "Ending" - + Tuju ke "Ending" - + Go to "Other" - + Tuju ke "Lainnya" - + Previous Slide - + Salindia Sebelumnya - + Next Slide - + Salindia Selanjutnya - + Pause Audio - + Sela Audio - + Background Audio - Audio Latar + Audio Latar - + Go to next audio track. - + Tuju ke trek audio selanjutnya. - + Tracks - + Trek OpenLP.SpellTextEdit - + Spelling Suggestions - + Saran Ejaan - + Formatting Tags - + Pemformatan Label - + Language: - Bahasa: + Bahasa: OpenLP.StartTimeForm - - - Hours: - - - Minutes: - + Hours: + Hitungan jam: - Seconds: - - - - - Item Start and Finish Time - + Minutes: + Hitungan menit: - Start - + Seconds: + Hitungan detik: + + + + Item Start and Finish Time + Butir Waktu Mulai & Selesai - Finish - Selesai + Start + Mulai + Finish + Selesai + + + Length - + Durasi - + Time Validation Error - + Validasi Waktu Salah - + Finish time is set after the end of the media item - + Waktu selesai diatur setelah akhir butir media - + Start time is after the finish time of the media item - + Waktu mulai diatur setelah waktu selesai butir media - + Theme Layout - + Tata-Letak Tema - + The blue box shows the main area. - + Kotak biru menunjukkan area utama. - + The red box shows the footer. - + Kotak merah menunjukkan catatan kaki. OpenLP.ThemeManager - + Create a new theme. - + Buat suatu tema baru. - + Edit Theme - + Sunting Tema - + Edit a theme. - + Sunting suatu tema. - + Delete Theme - + Hapus Tema - + Delete a theme. - + Hapus suatu tema. - + Import Theme - + Impor Tema - + Import a theme. - + Impor suatu tema. - + Export Theme - + Ekspor Tema - + Export a theme. - + Ekspor suatu tema. - + &Edit Theme - + &Sunting Tema - + &Delete Theme - + &Hapus Tema - + Set As &Global Default - + Atur Sebagai &Bawaan Global - + %s (default) - + %s (bawaan) - + You must select a theme to edit. - + Anda harus memilih suatu tema untuk disunting. - + You are unable to delete the default theme. - + Anda tidak dapat menghapus tema bawaan. - + Theme %s is used in the %s plugin. - + Tema %s digunakan dalam plugin %s. - + You have not selected a theme. - + Anda belum memilih suatu tema. - + Save Theme - (%s) - + Simpan Tema - (%s) - + Theme Exported - + Tema Telah Diekspor - + Your theme has been successfully exported. - + Tema pilihan Anda berhasil diekspor. - + Theme Export Failed - + Ekspor Tema Gagal - + Your theme could not be exported due to an error. - + Tema pilihan Anda tidak dapat diekspor karena suatu kesalahan. - + Select Theme Import File - + Pilih Berkas Tema Untuk Diimpor - + File is not a valid theme. - + Berkas bukan suatu tema yang valid. - + &Copy Theme - + &Salin Tema - + &Rename Theme - + &Namai Berkas - + &Export Theme - + &Ekspor Tema - + You must select a theme to rename. - + Anda harus memilih suatu tema untuk dinamai. - + Rename Confirmation - + Konfirmasi Penamaan - + Rename %s theme? - + Namai tema %s? - + You must select a theme to delete. - + Anda harus memilih suatu tema untuk dihapus. - + Delete Confirmation - + Konfirmasi Penghapusan - + Delete %s theme? - + Hapus tema %s? - + Validation Error - + Validasi Salah - + A theme with this name already exists. - + Suatu tema dengan nama ini sudah ada. - + OpenLP Themes (*.theme *.otz) - + Tema OpenLP (*.theme *.otz) - + Copy of %s Copy of <theme name> - + Salinan %s - + Theme Already Exists - + Tema Sudah Ada - + Theme %s already exists. Do you want to replace it? - + Tema %s sudah ada. Anda ingin menggantinya? OpenLP.ThemeWizard - + Theme Wizard - + Wisaya Tema - + Welcome to the Theme Wizard - + Selamat Datang di Wisaya Tema - + Set Up Background - + Siapkan Latar - + Set up your theme's background according to the parameters below. - + Siapkan latar tema Anda berdasarkan parameter di bawah ini. - + Background type: - + Tipe latar: - + Solid Color - + Warna Solid - + 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: - + Gradien + Color: + Warna: + + + + Gradient: + Gradien: + + + + Horizontal + Horisontal + + + + Vertical + Vertikal + + + + Circular + Sirkular + + + + Top Left - Bottom Right + Kiri Atas - Kanan Bawah + + + + Bottom Left - Top Right + Kiri Bawah - Kanan Atas + + + + Main Area Font Details + Rincian Fon di Area Utama + + + + Define the font and display characteristics for the Display text + Definisikan karakteristik fon dan tampilan untuk teks Tampilan + + + + Font: + Fon: + + + Size: - + Ukuran: - + Line Spacing: - + Penspasian Baris: - + &Outline: - + &Garis Besar: - + &Shadow: - - - - - Bold - Tebal + &Bayangan: + Bold + Tebal + + + Italic - + Miring - + Footer Area Font Details - + Rincian Fon di Catatan Kaki - + Define the font and display characteristics for the Footer text - + Definisikan karakteristik fon dan tampilan untuk teks Catatan Kaki - + Text Formatting Details - + Rincian Pemformatan Teks - + Allows additional display formatting information to be defined - + Izinkan informasi dari format tampilan tambahan untuk didefinisikan - + Horizontal Align: - + Sejajarkan Horisontal: - + Left - + Kiri - + Right - + Kanan - + Center - + Tengah - + Output Area Locations - + Lokasi Area Keluaran - + Allows you to change and move the main and footer areas. - + Izinkan Anda untuk mengganti dan memindahkan area utama dan catatan kaki. - + &Main Area - + &Area Utama - + &Use default location - + &Gunakan lokasi bawaan - + X position: - + Posisi X: - + px - + px - + Y position: - + Posisi Y: - + Width: - + Lebar: - + Height: - + Tinggi: - + Use default location - + Gunakan lokasi bawaan - + Theme name: - + Nama tema: - + Edit Theme - %s - + Sunting 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. - + Wisaya ini akan membantu Anda untuk membuat dan menyunting tema Anda. Klik tombol Selanjutnya di bawah ini untuk memulai proses dengan menyiapkan latar Anda. - + Transitions: - + Transisi: - + &Footer Area - + &Area Catatan Kaki - + Starting color: - + Warna mulai: - + Ending color: - + Warna akhir: - + Background color: - Warna latar: + Warna latar: - + Justify - + Justifikasi - + Layout Preview - + Pratinjau Tata-Letak - + Transparent - + Transparan - + Preview and Save - + Pratinjau dan Simpan - + Preview the theme and save it. - + Pratinjau tema dan simpan. - + (approximately %d lines per slide) - + (sekitar %d baris per salindia) - + Background Image Empty - + Gambar Latar Kosong - + You have not selected a background image. Please select one before continuing. - + Anda belum memilih suatu gambar latar. Silakan pilih satu sebelum melanjutkan. - + Select Image - + Pilih Gambar - + Theme Name Missing - + Nama Tema Hilang - + There is no name for this theme. Please enter one. - + Tidak ada nama untuk tema ini. Silakan masukkan satu. - + Theme Name Invalid - + Nama Tema Tidak Valid - + Invalid theme name. Please enter one. - + Nama Tema Tidak Valid. Silakan masukkan satu. OpenLP.ThemesTab - + Global Theme - + Tema Global - + Theme Level - + Tingkatan Tema - + S&ong Level - + Tingkatan Lagu - + 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. - + Gunakan tema dari setiap lagu dalam basis-data. Jika sebuah lagu tidak memiliki tema yang terkait dengannya, tema Layanan akan digunakan. Jika Layanan tidak memiliki tema, tema global akan digunakan. - + &Service Level - + Tingkatan Layanan - + 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. - + Gunakan tema dari Layanan, mengesampingkan apapun tema lagu individual. Jika Layanan tidak memiliki tema, tema global akan digunakan. - + &Global Level - + Tingkatan Global - + Use the global theme, overriding any themes associated with either the service or the songs. - + Gunakan tema global, mengesampingkan apapun tema yang terkait dengan Layanan atau lagu. - + Themes - + Tema OpenLP.Ui - + Error - - - - - About - + Salah - &Add - + About + Tentang - Advanced - Lanjutan + &Add + Tambah - All Files - + Advanced + Lanjutan - Bottom - + All Files + Semua Berkas - Browse... - + Bottom + Dasar - Cancel - + Browse... + Menelusuri... - CCLI number: - + Cancel + Batal + CCLI number: + Nomor CCLI: + + + Create a new service. - + Buat suatu Layanan baru. - + &Delete - - - - - &Edit - + &Hapus + &Edit + &Sunting + + + Empty Field - + Bidang Kosong - + Export - + Ekspor - + pt Abbreviated font pointsize unit - - - - - Image - Gambar + pt - Import - + Image + Gambar - + + Import + Impor + + + Live Tayang - + Live Background Error - + Latar Tayang Salah - + Load - - - - - Middle - + Muat - New - + Middle + Tengah - New Service - + New + Baru - New Theme - + New Service + Layanan Baru - - No File Selected - Singular - + + New Theme + Tema Baru - No Files Selected - Plural - + No File Selected + Singular + Tidak Ada Berkas Terpilih - No Item Selected - Singular - + No Files Selected + Plural + Tidak Ada Satupun Berkas Terpilih - No Items Selected - Plural - Tidak Ada Barang yang Terpilih + No Item Selected + Singular + Tidak Ada Butir Terpilih - openlp.org 1.x - + No Items Selected + Plural + Tidak Ada Satupun Butir Terpilih + openlp.org 1.x + openlp.org 1.x + + + OpenLP 2.0 - + OpenLP 2.0 - + Preview - + Pratinjau - + Replace Background - + Ganti Latar - + Reset Background - + Setel-Ulang Latar - + s The abbreviated unit for seconds - - - - - Save && Preview - + s + Save && Preview + Simpan && Pratinjau + + + Search - + Mencari - + You must select an item to delete. - + Anda harus memilih suatu butir untuk dihapus. - + You must select an item to edit. - - - - - Save Service - + Anda harus memilih suatu butir untuk disunting. + Save Service + Simpan Layanan + + + Service - + Layanan - + Start %s - - - - - Theme - Singular - + Mulai %s + Theme + Singular + Tema + + + Themes Plural - + Tema - + Top - + Puncak - + Version - + Versi - + Delete the selected item. - + Hapus butir terpilih. - + Move selection up one position. - + Naikkan pilihan satu posisi. - + Move selection down one position. - + Turunkan pilihan satu posisi. - + &Vertical Align: - - - - - Finished import. - + &Sejajarkan Vertikal: - Format: - + Finished import. + Impor selesai. - - Importing - + + Format: + Format: - Importing "%s"... - + Importing + Mengimpor - Select Import Source - + Importing "%s"... + Mengimpor "%s"... + Select Import Source + Pilih Sumber Impor + + + Select the import format and the location to import from. - + Pilih format impor dan lokasi sumber. - + 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. - + Pengimpor openlp.org 1.x telah dinonaktifkan karena modul Python hilang. Jika Anda ingin menggunakan pengimpor ini, Anda harus memasang modul "python-sqlite". - + Open %s File - - - - - %p% - + Buka Berkas %s + %p% + %p% + + + Ready. - + Siap. - + Starting import... - + Memulai impor... - + You need to specify at least one %s file to import from. A file type e.g. OpenSong - + Anda harus menentukan setidaknya satu berkas %s untuk diimpor. Welcome to the Bible Import Wizard - + Selamat Datang di Wisaya Impor Alkitab - + Welcome to the Song Export Wizard - + Selamat Datang di Wisaa Ekspor Lagu - + Welcome to the Song Import Wizard - - - - - Author - Singular - + Selamat Datang di Wisaya Impor Lagu - Authors - Plural - + Author + Singular + Pengarang - - © - Copyright symbol. - + + Authors + Plural + Pengarang - Song Book - Singular - + © + Copyright symbol. + © - Song Books - Plural - - - - - Song Maintenance - - - - - Topic + Song Book 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? - - - - - Settings - Pengaturan - - - - Tools - - - - - Unsupported File - Berkas Tidak Didukung - - - - Verse Per Slide - - - - - Verse Per Line - - - - - View - + Buku Lagu - Title and/or verses not found - + Song Books + Plural + Buku Lagu + + + + Song Maintenance + Pengelolaan Lagu + + + + Topic + Singular + Topik - XML syntax error - + Topics + Plural + Topik + + + + Continuous + Kontinu + + + + Default + Bawaan + + + + Display style: + Gaya tampilan: + + + + Duplicate Error + Duplikasi Salah + + + + File + Berkas + + + + Help + Bantuan + + + + h + The abbreviated unit for hours + h + + + + Layout style: + Gaya tata-letak: + + + + Live Toolbar + Palang-Perkakas Tayang + + + + m + The abbreviated unit for minutes + m + + + + OpenLP is already running. Do you wish to continue? + OpenLP sudah berjalan. Anda ingin melanjutkan? + + + + Settings + Pengaturan + + + + Tools + Perkakas + + + + Unsupported File + Tidak Ada Dukungan untuk Berkas + + + + Verse Per Slide + Ayat per Salindia + + + + Verse Per Line + Ayat per Baris + View + Tinjau + + + + Title and/or verses not found + Judul dan/atau ayat tidak ditemukan + + + + XML syntax error + Sintaks XML salah + + + 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 - + Mode Tinjauan - Play Slides in Loop - + Open service. + Buka Layanan. + + + + Print Service + Cetak Layanan + + + + Replace live background. + Ganti Latar Tayang. + + + + Reset live background. + Setel-Ulang latar Tayang. + + + + Split a slide into two only if it does not fit on the screen as one slide. + Pisah salindia menjadi dua jika tidak muat pada layar sebagai satu salindia. + + + + Welcome to the Bible Upgrade Wizard + Selamat Datang di Wisaya Pemutakhiran Alkitab + + + + Confirm Delete + Konfirmasi Penghapusan + Play Slides in Loop + Mainkan Salindia dalam Pengulangan + + + Play Slides to End - + Mainkan Salindia sampai Akhir - + Stop Play Slides in Loop - + Stop Mainkan Salindia dalam Pengulangan - + 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 - + Stop Mainkan Salindia sampai Akhir + Next Track + Trek Selanjutnya + + + + Search Themes... + Search bar place holder text + Mencari Tema... + + + + Optional &Split + Pisah &Opsional + + + + Invalid Folder Selected + Singular + Folder Terpilih Tidak Valid + + + + Invalid File Selected + Singular + Berkas Terpilih Tidak Valid + + + + Invalid Files Selected + Plural + Beberapa Berkas Terpilih Tidak Valid + + + No Folder Selected Singular - + Tidak Ada Folder Terpilih - + Open %s Folder - + Buka Folder %s - + You need to specify one %s file to import from. A file type e.g. OpenSong - + Anda harus menentukan sebuah berkas %s untuk diimpor. - + You need to specify one %s folder to import from. A song format e.g. PowerSong - + Anda harus menentukan sebuah folder %s untuk diimpor. - + Importing Songs - + Mengimpor Lagu OpenLP.core.lib - + %1 and %2 Locale list separator: 2 items - + %1 dan %2 - + %1, and %2 Locale list separator: end - + %1, dan %2 - + %1, %2 Locale list separator: middle - + %1, %2 - + %1, %2 Locale list separator: start - + %1, %2 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>Plugin Presentasi</strong><br />Plugin presentasi menyediakan kemampuan untuk menampilkan presentasi dengan sejumlah program berbeda. Pemilihan program presentasi yang ada tersedia untuk pengguna dalam kotak drop-down. - + Presentation name singular - + Presentasi - + Presentations name plural - Presentasi + Presentasi - + Presentations container title - Presentasi + Presentasi - + Load a new presentation. - + Muat suatu presentasi baru. - + Delete the selected presentation. - + Hapus presentasi terpilih. - + Preview the selected presentation. - + Pratinjau presentasi terpilih. - + Send the selected presentation live. - + Tayangkan presentasi terpilih. - + Add the selected presentation to the service. - + Tambahkan presentasi terpilih ke Layanan. PresentationPlugin.MediaItem - + Select Presentation(s) - + Pilih (beberapa) Presentasi - + Automatic - Otomatis + Otomatis - + Present using: - + Tampilkan dengan: - + File Exists - + Berkas Sudah Ada - + A presentation with that filename already exists. - + Suatu presentasi dengan nama itu sudah ada. - + This type of presentation is not supported. - + Tidak ada dukungan untuk tipe presentasi ini. - + Presentations (%s) - + Presentasi (%s) - + Missing Presentation - + Presentasi Hilang - + The presentation %s is incomplete, please reload. - + Presentasi %s tidak lengkap, silakan muat-ulang. - + The presentation %s no longer exists. - + Presentasi %s tidak ada lagi. PresentationPlugin.PresentationTab - + Available Controllers - + Pengontrol yang Tersedia - + %s (unavailable) - + %s (tidak tersedia) - + Allow presentation application to be overridden - + Izinkan aplikasi presentasi untuk digantikan 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 - + <strong>Plugin Remote</strong><br/>Plugin Remote menyediakan kemampuan untuk mengirimkan pesan ke versi OpenLP yang sedang berjalan pada suatu komputer berbeda via peramban web atau melalui API remote. - Remotes - name plural - + Remote + name singular + Remote - + + Remotes + name plural + Remote + + + Remote container title - + Remote RemotePlugin.Mobile - - - OpenLP 2.0 Remote - - + OpenLP 2.0 Remote + Remote OpenLP 2.0 + + + OpenLP 2.0 Stage View - + Tinjauan Bertahap OpenLP 2.0 - + Service Manager - Manajer Layanan + Manajer Layanan - + Slide Controller - - - - - Alerts - Peringatan + Pengontrol Salindia - Search - - - - - Refresh - - - - - Blank - - - - - Show - - - - - Prev - - - - - Next - - - - - Text - - - - - Show Alert - - - - - Go Live - Tayangkan - - - - No Results - - - - - Options - Pilihan - - - - Add to Service - + Alerts + Peringatan - Home - + Search + Mencari + + + + Refresh + Segarkan-ulang - Theme - + Blank + Kosong + + + + Show + Tampilkan + + + + Prev + Sebelumnya + + + + Next + Selanjutnya + + + + Text + Teks + + + + Show Alert + Tampilkan Peringatan + + + + Go Live + Tayangkan + + + + No Results + Tidak Ada Hasil + + + + Options + Opsi + + + + Add to Service + Tambahkan ke Layanan + + + + Home + Beranda - Desktop - + Theme + Tema - + + Desktop + Desktop + + + Add &amp; Go to Service - + Tambahkan &amp; Tuju ke Layanan + + + + Service + Layanan + + + + Slides + Salindia RemotePlugin.RemoteTab - + Serve on IP address: - + Tugaskan di alamat IP: - + Port number: - + Nomor port: - + Server Settings - + Pengaturan Server - + Remote URL: - + URL Remote: - + Stage view URL: - + URL Tinjauan Bertahap: - + Display stage time in 12h format - + Tampilkan waktu bertahap dalam format 12 jam - + Android App - + Apl. Android - + Scan the QR code or click <a href="https://play.google.com/store/apps/details?id=org.openlp.android">download</a> to install the Android app from Google Play. - + Pindai kode QR atau klik <a href="https://play.google.com/store/apps/details?id=org.openlp.android">download</a> untuk memasang apl. Android dari Google Play. SongUsagePlugin - + &Song Usage Tracking - + &Pelacakan Penggunaan Lagu - + &Delete Tracking Data - + &Hapus Data Pelacakan - + Delete song usage data up to a specified date. - + Hapus data penggunaan lagu sampai tanggal tertentu. - + &Extract Tracking Data - + &Ekstrak Data Pelacakan - + Generate a report on song usage. - + Hasilkan suatu laporan mengenai penggunaan lagu - + Toggle Tracking - + Ganti Pelacakan - + Toggle the tracking of song usage. - + Ganti pelacakan penggunaan lagu - + <strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services. - + <strong>Plugin PenggunaanLagu</strong><br />Plugin ini melacak penggunaan lagu dalam Layanan. - + SongUsage name singular - + PenggunaanLagu - + SongUsage name plural - + PenggunaanLagu - + SongUsage container title - + PenggunaanLagu - + Song Usage - + Penggunaan Lagu - + Song usage tracking is active. - + Pelacakan penggunaan lagu aktif. - + Song usage tracking is inactive. - + Pelacakan penggunaan lagu nonaktif. - + display - + tampilkan - + printed - + tercetak SongUsagePlugin.SongUsageDeleteForm - + Delete Song Usage Data - + Hapus Data Penggunaan Lagu - + Delete Selected Song Usage Events? - + Hapus Event Penggunaan Lagu Terpilih? - + Are you sure you want to delete selected Song Usage data? - + Anda yakin ingin menghapus data Penggunaan Lagu terpilih? - + Deletion Successful - + Penghapusan Berhasil - + All requested data has been deleted successfully. - + Semua data yang diminta telah berhasil dihapus. - + Select the date up to which the song usage data should be deleted. All data recorded before this date will be permanently deleted. - + Pilih tanggal sampai dengan mana data penggunaan lagu akan dihapus. Semua data terekam sebelum tanggal ini akan dihapus secara permanen. SongUsagePlugin.SongUsageDetailForm - + Song Usage Extraction - + Ekstraksi Penggunaan Lagu - + Select Date Range - + Pilih Kisaran Tanggal - + to - + ke - + Report Location - + Laporkan Lokasi - + Output File Location - + Lokasi Berkas Keluaran - + usage_detail_%s_%s.txt - + rincian_penggunaan_%s_%s.txt - + Report Creation - + Pembuatan Laporan - + Report %s has been successfully created. - + Laporan +%s +telah berhasil dibuat. - + Output Path Not Selected - + Jalur Keluaran Belum Terpilih - + You have not set a valid output location for your song usage report. Please select an existing path on your computer. - + Anda belum menetapkan lokasi keluaran yang valid untuk laporan penggunaan lagu. Silakan pilih suatu jalur yang ada di komputer Anda. SongsPlugin - + &Song - + &Lagu - + Import songs using the import wizard. - + Impor lagu dengan wisaya impor - + <strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs. - + <strong>Plugin Lagu</strong><br />Plugin Lagu menyediakan kemampuan untuk menampilkan dan mengelola lagu. - + &Re-index Songs - + &Indeks-ulang Lagu - + Re-index the songs database to improve searching and ordering. - + Indeks-ulang basis-data lagu untuk mempercepat pencarian dan pengaturan - + Reindexing songs... - - - - - Arabic (CP-1256) - + Mengindeks-ulang Lagu... - Baltic (CP-1257) - + Arabic (CP-1256) + Arab (CP-1256) - Central European (CP-1250) - + Baltic (CP-1257) + Baltik (CP-1257) - Cyrillic (CP-1251) - + Central European (CP-1250) + Eropa Tengah (CP-1250) - Greek (CP-1253) - + Cyrillic (CP-1251) + Cyrillic (CP-1251) - Hebrew (CP-1255) - + Greek (CP-1253) + Yunani (CP-1253) - Japanese (CP-932) - + Hebrew (CP-1255) + Ibrani (CP-1255) - Korean (CP-949) - + Japanese (CP-932) + Jepang (CP-932) - Simplified Chinese (CP-936) - + Korean (CP-949) + Korea (CP-949) - Thai (CP-874) - + Simplified Chinese (CP-936) + Mandarin - Sederhana (CP-936) - Traditional Chinese (CP-950) - + Thai (CP-874) + Thailand (CP-874) - Turkish (CP-1254) - + Traditional Chinese (CP-950) + Mandarin - Tradisional (CP-950) - Vietnam (CP-1258) - + Turkish (CP-1254) + Turki (CP-1254) + Vietnam (CP-1258) + Vietnam (CP-1258) + + + Western European (CP-1252) - + Eropa Barat (CP-1252) - + Character Encoding - + Pengodean Karakter - + The codepage setting is responsible for the correct character representation. Usually you are fine with the preselected choice. - + Pengaturan halaman-kode ini bertanggung-jawab +atas representasi karakter yang benar. +Biasanya pilihan yang dipilih sebelumnya sudah baik. - + Please choose the character encoding. The encoding is responsible for the correct character representation. - + Silakan pilih pengodean karakter. +Pengodean ini bertanggung-jawab atas representasi karakter yang benar. - + Song name singular - + Lagu - + Songs name plural - Lagu + Lagu - + Songs container title - Lagu + Lagu - + Exports songs using the export wizard. - - - - - Add a new song. - - - - - Edit the selected song. - + Ekspor lagu dengan wisaya ekspor. - Delete the selected song. - + Add a new song. + Tambahkan sebuah lagu baru. - Preview the selected song. - + Edit the selected song. + Sunting lagu terpilih. - Send the selected song live. - + Delete the selected song. + Hapus lagu terpilih. - Add the selected song to the service. - + Preview the selected song. + Pratinjau lagu terpilih. - + + Send the selected song live. + Tayangkan lagu terpilih. + + + + Add the selected song to the service. + Tambahkan lagu terpilih ke Layanan + + + Reindexing songs - + Mengindeks-ulang lagu SongsPlugin.AuthorsForm - + Author Maintenance - + Pengelolaan Pengarang - + Display name: - + Nama tampilan: - + First name: - + Nama depan: - + Last name: - + Nama belakang: - + You need to type in the first name of the author. - + Anda harus masukkan nama depan pengarang. - + You need to type in the last name of the author. - + Adna harus masukkan nama belakang pengarang. - + You have not set a display name for the author, combine the first and last names? - + Anda belum masukkan nama tampilan pengarang, kombinasikan nama depan dan belakang? SongsPlugin.CCLIFileImport - + The file does not have a valid extension. - + Berkas tidak memiliki ekstensi yang valid. SongsPlugin.EasyWorshipSongImport - + Administered by %s - + Dikelola oleh %s - + [above are Song Tags with notes imported from EasyWorship] - + +[terdapat di atas adalah Label Lagu beserta catatan yang diimpor dari EasyWorship] SongsPlugin.EditBibleForm - + Meta Data - + Meta Data - + Custom Book Names - + Nama Kitab Suai SongsPlugin.EditSongForm - + Song Editor - + Penyunting Lagu - + &Title: - &Judul: + &Judul: - + Alt&ernate title: - + Judul alternatif: - + &Lyrics: - + &Lirik: - + &Verse order: - + Urutan ayat: - + Ed&it All - Sun&ting Semua + Sunting Semua - + Title && Lyrics - + Judul && Lirik - + &Add to Song - + &Tambahkan ke Lagu - + &Remove - + &Singkirkan - + &Manage Authors, Topics, Song Books - + &Kelola Pengarang, Topik, Buku Lagu - + A&dd to Song - + Tambahkan ke Lagu - + R&emove - + Singkirkan - + Book: - Kitab: + Buku Lagu: - + Number: - + Nomor: - + Authors, Topics && Song Book - + Pengarang, Topik && Buku Lagu - + New &Theme - + Tema Baru - + Copyright Information - + Informasi Hak Cipta - + Comments - + Komentar - + Theme, Copyright Info && Comments - + Tema, Info Hak Cipta && Komentar - + Add Author - + Tambahkan Pengarang - + This author does not exist, do you want to add them? - + Pengarang ini tidak ada, Anda ingin menambahkannya? - + This author is already in the list. - + Pengarang ini sudah ada dalam daftar. - + 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. - + Anda belum memilih pengarang yang valid. Pilihlah suatu pengarang dari daftar, atau ketik suatu pengarang baru dan klik tombol "Tambahkan Pengarang ke Lagu" untuk menambahkan pengarang baru tersebut. - + Add Topic - + Tambahkan Topik - + This topic does not exist, do you want to add it? - + Topik ini tidak ada, Anda ingin menambahkannya? - + This topic is already in the list. - + Topik ini sudah ada dalam daftar. - + 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. - + Anda belum memilih topik yang valid. Pilihlah suatu topik dari daftar, atau ketik sebuah topik baru dan klik tombol "Tambahkan Topik ke Lagu" untuk menambahkan topik baru tersebut. - + You need to type in a song title. - + Anda harus mengetikkan judul lagu. - + You need to type in at least one verse. - + Anda harus mengetikkan setidaknya satu ayat. - + The verse order is invalid. There is no verse corresponding to %s. Valid entries are %s. - + Urutan ayat tidak valid. Tidak ada ayat yang sesuai dengan %s. Entri yang valid adalah %s. - + Add Book - + Tambahkan Buku Lagu - + This song book does not exist, do you want to add it? - + Buku lagu ini tidak ada, Anda ingin menambahkannya? - + You need to have an author for this song. - + Anda harus masukkan suatu pengarang untuk lagu ini. - + Linked Audio - + Audio Terhubung - + Add &File(s) - + Tambahkan &(beberapa) Berkas - + Add &Media - + Tambahkan Media - + Remove &All - + Hapus &Semua - + Open File(s) - + Buka (beberapa) Berkas - + <strong>Warning:</strong> Not all of the verses are in use. - + <strong>Peringatan:</strong> Tidak semua ayat tersebut digunakan. - + The verse order is invalid. There are no verses corresponding to %s. Valid entries are %s. - + Urutan ayat tidak valid. Tidak ada ayat yang sesuai dengan %s. Entri yang valid adalah %s. SongsPlugin.EditVerseForm - + Edit Verse - + Sunting Ayat - + &Verse type: - + &Tipe ayat: - + &Insert - + &Sisipkan - + Split a slide into two by inserting a verse splitter. - + Pisah salindia menjadi dua menggunakan pemisah ayat. SongsPlugin.ExportWizardForm - + Song Export Wizard - + Wisaya Ekspor Lagu - + Select Songs - + Pilih Lagu - + Check the songs you want to export. - + Centang lagu-lagu yang ingin Anda ekspor: - + Uncheck All - + Hapus Semua Centang - + Check All - + Centang Semua - + Select Directory - + Pilih Direktori - + Directory: - + Direktori: - + Exporting - + Mengekspor - + Please wait while your songs are exported. - + Silakan tunggu selama lagu diekspor. - + You need to add at least one Song to export. - + Anda harus masukkan setidaknya satu lagu untuk diekspor. - + No Save Location specified - + Lokasi Penyimpanan Belum Ditentukan - + Starting export... - + Memulai ekspor... - + You need to specify a directory. - + Anda harus menentukan sebuah direktori. - + Select Destination Folder - + Pilih Folder Tujuan - + Select the directory where you want the songs to be saved. - + Pilih direktori untuk menyimpan lagu. - + This wizard will help to export your songs to the open and free <strong>OpenLyrics</strong> worship song format. - + Wisaya ini akan membantu Anda mengekspor lagu ke format lagu penyembahan <strong>OpenLyrics</strong> yang terbuka dan gratis. SongsPlugin.ImportWizardForm - + Select Document/Presentation Files - + Pilih Dokumen / Berkas Presentasi - + Song Import Wizard - + Wisaya Impor Lagu - + 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. - + Wisaya ini akan membantu Anda mengimpor lagu dari berbagai format. Klik tombol Selanjutnya di bawah untuk memulai proses dengan memilih format untuk diimpor. - + Generic Document/Presentation - + Dokumen / Presentasi Generik - + Add Files... - + Tambahkan Berkas... - + Remove File(s) - + Hapus (beberapa) Berkas - + Please wait while your songs are imported. - + Silakan tunggu selama lagu diimpor. - + OpenLP 2.0 Databases - + Basis-Data OpenLP 2.0 - + openlp.org v1.x Databases - + Basis-Data openlp.org v1.x - + Words Of Worship Song Files - + Berkas Lagu Words of Worship - + Songs Of Fellowship Song Files - + Berkas Lagu Song Of Fellowship - + SongBeamer Files - + Berkas SongBeamer - + SongShow Plus Song Files - + Berkas Lagu SongShow Plus - + Foilpresenter Song Files - + Berkas Lagu Foilpresenter - + Copy - Salin + Salin - + Save to File - Simpan menjadi Berkas + Simpan menjadi Berkas - + The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. - + Pengimpor Songs of Fellowhip telah dinonaktifkan karena OpenLP tidak dapat mengakses OpenOffice atau LibreOffice. - + The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. - + Pengimpor dokumen / presentasi generik telah dinonaktifkan karena OpenLP tidak dapat mengakses OpenOffice atau LibreOffice. - + OpenLyrics or OpenLP 2.0 Exported Song - + Lagu OpenLyrics atau OpenLP 2.0 yang telah diekspor - + OpenLyrics Files - + Berkas OpenLyrics - + CCLI SongSelect Files - + Berkas CCLI SongSelect - + EasySlides XML File - + Berkas XML EasySlides - + EasyWorship Song Database - + Basis-Data Lagu EasyWorship - + DreamBeam Song Files - + Berkas Lagu DreamBeam - + You need to specify a valid PowerSong 1.0 database folder. - + Anda harus menentukan folder basis-data PowerSong 1.0 yang valid. - + 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>. - + Pertama konversi dahulu basis-data ZionWorx ke berkas teks CSV, seperti yang dijelaskan pada <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">User Manual</a>. - + SundayPlus Song Files - + Berkas Lagu SundayPlus - + This importer has been disabled. - + Pengimpor telah dinonaktifkan. - + MediaShout Database - + Basis-data MediaShout - + The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. - + Pengimpor MediaShout hanya didukung dalam Windows. Ini telah dinonaktifkan karena modul Python hilang. Jika Anda ingin menggunakan pengimpor ini, Anda harus memasang modul "pyodbc". - + SongPro Text Files - + Berkas Teks SongPro - + SongPro (Export File) - + SongPro (Berkas Ekspor) - + In SongPro, export your songs using the File -> Export menu - + Pada SongPro, ekspor lagu menggunakan menu Berkas -> Ekspor SongsPlugin.MediaFilesForm - + Select Media File(s) - + Pilih (beberapa) Berkas Media - + Select one or more audio files from the list below, and click OK to import them into this song. - + Pilih satu atau lebih berkas audio dari daftar di bawah, dan klik OK untuk mengimpornya ke lagu ini. @@ -6987,384 +7018,384 @@ The encoding is responsible for the correct character representation. Titles - + Judul Lyrics - + Lirik - + CCLI License: - + Lisensi CCLI: Entire Song - + Keseluruhan Lagu - + Are you sure you want to delete the %n selected song(s)? - - + + Anda yakin ingin menghapus %n lagu (- lagu) terpilih ini. Maintain the lists of authors, topics and books. - + Kelola daftar pengarang, topik, dan buku. - + copy For song cloning - + salinan Search Titles... - + Mencari Judul... Search Entire Song... - + Mencari Keseluruhan Lagu... Search Lyrics... - + Mencari Lirik... Search Authors... - + Mencari Pengarang... Search Song Books... - + Mencari Buku Lagu... SongsPlugin.MediaShoutImport - + Unable to open the MediaShout database. - + Tidak dapat membuka basis-data MediaShout SongsPlugin.OpenLP1SongImport - + Not a valid openlp.org 1.x song database. - + Bukan basis-data lagu openlp.org 1.x yang valid. SongsPlugin.OpenLPSongImport - + Not a valid OpenLP 2.0 song database. - + Bukan basis-data lagu OpenLP 2.0 yang valid. SongsPlugin.OpenLyricsExport - + Exporting "%s"... - + Mengekspor "%s"... SongsPlugin.PowerSongImport - + No songs to import. - + Tidak ada lagu untuk diimpor. - + Verses not found. Missing "PART" header. - + Ayat tidak ditemukan. Header "PART" hilang. - + No %s files found. - + Berkas %s tidak ditemukan. - + Invalid %s file. Unexpected byte value. - + Berkas %s tidak valid. Nilai byte tidak terduga. - + Invalid %s file. Missing "TITLE" header. - + Berkas %s tidak valid. Header "TITLE" hilang. - + Invalid %s file. Missing "COPYRIGHTLINE" header. - + Berkas %s tidak valid. Header "COPYRIGHTLINE" hilang. SongsPlugin.SongBookForm - + Song Book Maintenance - - - - - &Name: - + Pengelolaan Buku Lagu - &Publisher: - + &Name: + &Nama: - + + &Publisher: + &Penerbit: + + + You need to type in a name for the book. - + Anda harus mengetikkan nama untuk buku lagu. SongsPlugin.SongExportForm - + Your song export failed. - + Ekspor lagu gagal. - + Finished export. To import these files use the <strong>OpenLyrics</strong> importer. - + Ekspor selesai. Untuk mengimpor berkas ini gunakan pengimpor <strong>OpenLyrics</strong>. SongsPlugin.SongImport - + copyright - + hak cipta - + The following songs could not be imported: - + Lagu berikut tidak dapat diimpor: - + Cannot access OpenOffice or LibreOffice - + Tidak dapat mengakses OpenOffice atau LibreOffice - + Unable to open file - + Tidak dapat membuka berkas - + File not found - + Berkas tidak ditemukan SongsPlugin.SongMaintenanceForm - + Could not add your author. - + Tidak dapat menambahkan pengarang. - + This author already exists. - + Pengarang sudah ada. - + Could not add your topic. - + Tidak dapat menambahkan topik. - + This topic already exists. - + Topik sudah ada. - + Could not add your book. - + Tidak dapat menambahkan buku lagu. - + This book already exists. - + Buku lagu sudah ada. - + Could not save your changes. - + Tidak dapat menyimpan perubahan. - + Could not save your modified author, because the author already exists. - + Tidak dapat menyimpan pengarang yang telah dimodifikasi, karena sudah ada. - + Could not save your modified topic, because it already exists. - + Tidak dapat menyimpan topik yang telah dimodifikasi, karena sudah ada. - + Delete Author - + Hapus Pengarang - + Are you sure you want to delete the selected author? - + Anda yakin ingin menghapus pengarang terpilih? - + This author cannot be deleted, they are currently assigned to at least one song. - + Pengarang tidak dapat dihapus, karena masih terkait dengan setidaknya satu lagu. - + Delete Topic - + Hapus Topik - + Are you sure you want to delete the selected topic? - + Anda yakin ingin menghapus topik terpilih? - + This topic cannot be deleted, it is currently assigned to at least one song. - + Topik tidak dapat dihapus, karena masih terkait dengan setidaknya satu lagu. - + Delete Book - + Hapus Buku Lagu - + Are you sure you want to delete the selected book? - + Anda yakin ingin menghapus buku lagu terpilih? - + This book cannot be deleted, it is currently assigned to at least one song. - + Buku lagu tidak dapat dihapus, karena masih terkait dengan setidaknya satu lagu. - + The author %s already exists. Would you like to make songs with author %s use the existing author %s? - + Pengarang %s sudah ada. Anda ingin membuat lagu dengan pengarang %s menggunakan pengarang %s yang sudah ada? - + The topic %s already exists. Would you like to make songs with topic %s use the existing topic %s? - + Topik %s sudah ada. Anda ingin membuat lagu dengan topik %s menggunakan topik %s yang sudah ada? - + The book %s already exists. Would you like to make songs with book %s use the existing book %s? - + Buku lagu %s sudah ada. Anda ingin membuat lagu dengan buku lagu %s menggunakan buku lagu %s yang sudah ada? SongsPlugin.SongsTab - + Songs Mode - + Mode Lagu - + Enable search as you type - + Gunakan pencarian saat Anda mengetikkannya - + Display verses on live tool bar - + Tampilkan ayat pada Palang-Perkakas Tayang - + Update service from song edit - + Perbarui Layanan dari penyuntingan lagu - + Import missing songs from service files - + Impor lagu yang hilang dari berkas Layanan SongsPlugin.TopicsForm - + Topic Maintenance - + Pengelolaan Topik - + Topic name: - + Nama topik: - + You need to type in a topic name. - + Anda harus mengetikkan nama topik. SongsPlugin.VerseType - - - Verse - - - Chorus - + Verse + Ayat - Bridge - + Chorus + Refrain - Pre-Chorus - + Bridge + Bridge - Intro - + Pre-Chorus + Pra-Refrain - Ending - + Intro + Intro + Ending + Ending + + + Other Lainnya @@ -7372,29 +7403,29 @@ The encoding is responsible for the correct character representation. SongsPlugin.ZionWorxImport - + Error reading CSV file. - + Kesalahan dalam membaca berkas CSV. - + File not valid ZionWorx CSV format. - + Berkas bukan format CSV ZionWorx yang valid. - + Line %d: %s - + Baris %d: %s - + Decoding error: %s - + Kesalahan dalam pendekodean: %s - + Record %d - + Rekaman %d diff --git a/resources/i18n/it.ts b/resources/i18n/it.ts index 0eadc546a..74039457c 100644 --- a/resources/i18n/it.ts +++ b/resources/i18n/it.ts @@ -3,35 +3,35 @@ AlertsPlugin - + &Alert &Avviso - + Show an alert message. Mostra un messaggio di avviso. - + Alert name singular Avviso - + Alerts name plural Avvisi - + Alerts container title Avvisi - + <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of nursery alerts on the display screen. <strong>Plugin di Avvisi</strong><br />Il plugin di allarme controlla la visualizzazione di avvisi sul display. @@ -39,69 +39,69 @@ AlertsPlugin.AlertForm - + Alert Message Messaggio di avviso - + Alert &text: Avviso &testo: - + &New &Nuovo - + &Save &Salva - + Displ&ay Visualiz&za - + Display && Cl&ose Visualizza && Ch&iudi - + New Alert Nuovo Avviso - + You haven't specified any text for your alert. Please type in some text before clicking New. Non è stato specificato alcun testo per l'avviso. Si prega di digitare un testo prima di cliccare su Nuovo. - + &Parameter: &Parametro: - + No Parameter Found Nessun parametro Trovato - + You have not entered a parameter to be replaced. Do you want to continue anyway? Non è stato inserito un parametro da sostituire..⏎ Vuoi continuare comunque? - + No Placeholder Found Nessun Segnaposto Trovato - + The alert text does not contain '<>'. Do you want to continue anyway? Il testo di avviso non contiene '<>'.⏎ @@ -119,32 +119,32 @@ Vuoi continuare comunque? AlertsPlugin.AlertsTab - + Font Carattere - + Font name: Nome del Carattere - + Font color: Colore del Carattere - + Background color: Colore di sfondo: - + Font size: Dimensione Carattere: - + Alert timeout: Avviso Timeout: @@ -152,510 +152,510 @@ Vuoi continuare comunque? BiblesPlugin - + &Bible &Bibbia - + Bible name singular Bibbia - + Bibles name plural Bibbie - + Bibles container title Bibbie - + No Book Found Nessun libro trovato - + No matching book could be found in this Bible. Check that you have spelled the name of the book correctly. Nessun libro analogo può essere trovato in questa Bibbia. Verificare di aver digitato il nome del libro in modo corretto. - + Import a Bible. Importa una Bibbia. - + Add a new Bible. Aggiungi una nuova Bibbia. - + Edit the selected Bible. Modifica la Bibbia selezionata. - + Delete the selected Bible. Cancella la Bibbia selezionata - + Preview the selected Bible. Anteprima della Bibbia selezionata. - + Send the selected Bible live. Invia la Bibbia selezionata dal vivo. - + Add the selected Bible to the service. Aggiungi la Bibbia selezionata al servizio. - + <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display Bible verses from different sources during the service. <strong>Bibbia Plugin</strong><br />Il plugin della Bibbia offre la possibilità di visualizzare i versetti della Bibbia da fonti diverse durante il servizio. - + &Upgrade older Bibles &Aggiornamento vecchie Bibbie - + Upgrade the Bible databases to the latest format. Aggiorna i database della Bibbia al formato più recente. - + Genesis Genesi - + Exodus Esodo - + Leviticus Levitico - + Numbers Numeri - + Deuteronomy Deuteronomio - + Joshua Giosuè - + Judges Giudici - + Ruth Ruth - + 1 Samuel 1 Samuele - + 2 Samuel 2 Samuele - + 1 Kings 1 Re - + 2 Kings 2 Re - + 1 Chronicles - + 2 Chronicles - + Ezra - + Nehemiah - + Esther - + Job - + Psalms - + Proverbs - + Ecclesiastes - + Song of Solomon - + Isaiah - + Jeremiah - + Lamentations Lamentazioni - + Ezekiel Ezechiele - + Daniel Daniele - + Hosea Osea - + Joel Gioele - + Amos Amos - + Obadiah Abdia - + Jonah Giona - + Micah Michea - + Nahum Nahum - + Habakkuk Habacuc - + Zephaniah Sofonia - + Haggai Aggeo - + Zechariah Zaccaria - + Malachi Malachia - + Matthew Matteo - + Mark Marco - + Luke Luca - + John Giovanni - + Acts Atti degli Apostoli - + Romans Romani - + 1 Corinthians 1 Corinzi - + 2 Corinthians 2 Corinzi - + Galatians Galati - + Ephesians Efesini - + Philippians Filippesi - + Colossians Colossesi - + 1 Thessalonians 1 Tessalonicesi - + 2 Thessalonians 2 Tessalonicesi - + 1 Timothy 1 Timoteo - + 2 Timothy 2 Timoteo - + Titus Tito - + Philemon Filemone - + Hebrews Ebrei - + James Giacomo - + 1 Peter 1 Pietro - + 2 Peter 2 Pietro - + 1 John 1 Giovanni - + 2 John 2 Giovanni - + 3 John 3 Giovanni - + Jude Giuda - + Revelation Apocalisse - + 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 @@ Vuoi continuare comunque? BiblesPlugin.BibleEditForm - + You need to specify a version name for your Bible. Devi inserire un nome per la tua Bibbia - + You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. Devi inserire un copyright per la tua Bibbia. Bibbie di pubblico dominio devono essere contrassegnate come tali. - + Bible Exists La Bibbia esiste. - + This Bible already exists. Please import a different Bible or first delete the existing one. La bibbia esiste già. Importa una Bibbia differente o cancella quella inserita. - + 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 Errore di Riferimento nella Scrittura - + Web Bible cannot be used La Bibbia nel Web non può essere utilizzato - + Text Search is not available with Web Bibles. Cerca testo non è disponibile con La Bibbia sul 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. Non hai inserito una parola chiave di ricerca. ⏎ È possibile separare parole chiave diverse da uno spazio per la ricerca di tutte le parole chiave e si possono separare con una virgola per la ricerca di uno di loro. - + There are no Bibles currently installed. Please use the Import Wizard to install one or more Bibles. Non ci sono Bibbie attualmente installati. Si prega di utilizzare l'importazione guidata per installare uno o più Bibbie. - + No Bibles Available Bibbia non disponibile - + 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 Visualizza Versetto - + Only show new chapter numbers Mostra solo i numeri del nuovo capitolo - + Bible theme: Tema della Bibbia - + No Brackets Senza Parentesi Quadre - + ( And ) (E) - + { And } {E} - + [ And ] [E] - + Note: Changes do not affect verses already in the service. Nota: ⏎ Le modifiche non influiscono i versetti già nel servizio. - + Display second Bible verses Visualizza i Secondi versetti della Bibbia - + 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 Italian - + 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 Seleziona il Nome del Libro - + Current name: Nome Attuale: - + Corresponding name: Nome corrispondente: - + Show Books From Mostra i Libri da - + Old Testament Vecchio Testamento - + New Testament Nuovo Testamento - + Apocrypha Libri Apocrifi - + 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. È necessario selezionare un libro. @@ -937,18 +937,18 @@ search results and on display: BiblesPlugin.CSVBible - + Importing books... %s Importazione di libri ... %s - + Importing verses from %s... Importing verses from <book name>... Importazione dei versetti da%s... - + Importing verses... done. Importazione dei versetti ... finito. @@ -956,68 +956,68 @@ search results and on display: BiblesPlugin.EditBibleForm - + Bible Editor - + License Details Dettaglio Licenza - + Version name: Nome Versione: - + Copyright: Copyright: - + Permissions: Permessi - + Default Bible Language - + Book name language in search field, search results and on display: - + Global Settings - + Bible Language - + Application Language - + English Italian - + 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... Registrazione della Bibbia e caricamento dei libri... - + Registering Language... Registrazione Lingua... - + Importing %s... Importing <book name>... Importazione %s... - + Download Error Errore di Download - + 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. C'è stato un problema nel scaricare il versetto selezionato. Si prega di verificare la connessione internet, se questo errore persiste considera di segnalarlo. - + Parse Error Errore di interpretazione - + There was a problem extracting your verse selection. If this error continues to occur please consider reporting a bug. C'è stato un problema di estrazione del versetto selezionato. Se questo errore persiste ti prego di segnalarlo. @@ -1233,17 +1233,17 @@ demand and thus an internet connection is required. BiblesPlugin.LanguageDialog - + Select Language seleziona una lingua - + OpenLP is unable to determine the language of this translation of the Bible. Please select the language from the list below. OpenLP non è riuscito a determinare la lingua della Bibbia. Selezionala dalla lista sotto - + Language: Lingua: @@ -1251,7 +1251,7 @@ demand and thus an internet connection is required. BiblesPlugin.LanguageForm - + You need to choose a language. Devi scegliere una lingua. @@ -1259,92 +1259,92 @@ demand and thus an internet connection is required. BiblesPlugin.MediaItem - + Quick Veloce - + Find: Cerca: - + Book: Libro: - + Chapter: Capitolo - + Verse: Verso - + From: Da: - + To: A: - + Text Search Ricerca testo - + Second: Seconda - + Scripture Reference Riferimento Biblico - + 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. Bibbia caricata parzialmente - + Information Informazioni - + 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. La seconda Bibbia non contiene tutti i versi che sono nella Bibbia principale. Saranno mostrati solo i versi trovati in entrambe le Bibbie. %d versi non sono stati inclusi nei risultati - + Search Scripture Reference... - + Search Text... - + Are you sure you want to completely delete "%s" Bible from OpenLP? You will need to re-import this Bible to use it again. @@ -1354,7 +1354,7 @@ You will need to re-import this Bible to use it again. BiblesPlugin.OpenSongImport - + Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. @@ -1362,7 +1362,7 @@ You will need to re-import this Bible to use it again. BiblesPlugin.Opensong - + Importing %s %s... Importing <book name> <chapter>... Importando %s %s... @@ -1371,12 +1371,12 @@ You will need to re-import this Bible to use it again. BiblesPlugin.OsisImport - + Detecting encoding (this may take a few minutes)... - + Importing %s %s... Importing <book name> <chapter>... Importando %s %s... @@ -1385,148 +1385,148 @@ You will need to re-import this Bible to use it again. BiblesPlugin.UpgradeWizardForm - + Select a Backup Directory Seleziona una cartella per il backup - + 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 Seleziona la cartella di backup - + Please select a backup directory for your Bibles Seleziona la cartella di backup per le tue Bibbie - + 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>. Le precedenti versioni di OpenLP 2.0 non sono in grado di aggiornare le Bibbie. Verrà creata una copia di backup delle Bibbie attuali in modo che basterà copiare i files di backup nella cartella dei dati di OpenLp se c'è bisogno di ritornare a una vecchia versione di OpenLP. Le istruzioni su come ripristinare i files possono essere trovati nelle nostre <a href="http://wiki.openlp.org/faq">Frequently Asked Questions</a>. - + Please select a backup location for your Bibles. - + Backup Directory: Cartella di backup: - + There is no need to backup my Bibles Non eseguire il backup delle Bibbie - + Select Bibles Seleziona le Bibbie - + Please select the Bibles to upgrade Seleziona le Bibbie da aggiornare - + Upgrading Aggiornamento - + Please wait while your Bibles are upgraded. Attendi mentre la Bibbia viene aggiornata - + The backup was not successful. To backup your Bibles you need permission to write to the given directory. Backup non riuscito. Necessari i permessi in scrittura per la cartella data. - + Upgrading Bible %s of %s: "%s" Failed Aggiornamento della Bibbia %s di %s: "%s" Fallito - + Upgrading Bible %s of %s: "%s" Upgrading ... Aggiornamento della Bibbia %s di %s: "%s" Aggiornamento - + Download Error Download Error - + To upgrade your Web Bibles an Internet connection is required. Per aggiornare le Bibbie è richiesta una connessione internet - + Upgrading Bible %s of %s: "%s" Upgrading %s ... Aggiornamento della Bibbia %s di %s: "%s" Aggiornamento %s - + Upgrading Bible %s of %s: "%s" Complete Aggiornamento della Bibbia %s di %s: "%s" Completato - + , %s failed , %s fallito - + 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. Aggiornamento della\e Bibbia\e: %s riuscito %s Attenzione i versi delle Bibbie Online saranno scaricati on demand è quindi richiesta una connessione a internet. - + Upgrading Bible(s): %s successful%s Aggiornamento Bibbia\e: %s completato %s - + Upgrade failed. Aggiornamento fallito. - + You need to specify a backup directory for your Bibles. Devi specificare una cartella per il backup delle Bibbie - + Starting upgrade... Avvio aggiornamento... - + There are no Bibles that need to be upgraded. Non ci sono Bibbie che devono essere aggiornate. @@ -1534,65 +1534,65 @@ Attenzione i versi delle Bibbie Online saranno scaricati on demand è quindi ric 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. - + Custom Slide name singular Presentazione personalizzata - + Custom Slides name plural Presentazioni personalizzate - + Custom Slides container title Presentazioni Personalizzate - + Load a new custom slide. Carica una nuova presentazione - + Import a custom slide. Importa una presentazione - + Add a new custom slide. Aggiungi una nuova presentazione - + Edit the selected custom slide. Modifica la presentazione selezionata - + Delete the selected custom slide. Cancella la presentazione selezionata - + Preview the selected custom slide. Anteprima della presentazione selezionata - + Send the selected custom slide live. Manda live la presentazione selezionata - + Add the selected custom slide to the service. Aggiungi la presentazione selezionata al servizio @@ -1600,12 +1600,12 @@ Attenzione i versi delle Bibbie Online saranno scaricati on demand è quindi ric CustomPlugin.CustomTab - + Custom Display - + Display footer Mostra footer @@ -1613,62 +1613,62 @@ Attenzione i versi delle Bibbie Online saranno scaricati on demand è quindi ric CustomPlugin.EditCustomForm - + Edit Custom Slides Modifica la presentazione - + &Title: &Title: - + Add a new slide at bottom. aggiungi una nuova diapositiva sotto - + Edit the selected slide. modifica la diapositiva selezionata - + Edit all the slides at once. Modifica tutte le diapositive - + Split a slide into two by inserting a slide splitter. Dividi la diapositiva in due inserendo un divisore - + The&me: The&me: - + &Credits: &Credits: - + You need to type in a title. Inserisci il titolo - + You need to add at least one slide Inserisci almeno una diapositiva - + Ed&it All Ed&it Tutto - + Insert Slide Inserisci diapositiva @@ -1676,7 +1676,7 @@ Attenzione i versi delle Bibbie Online saranno scaricati on demand è quindi ric CustomPlugin.EditVerseForm - + Edit Slide @@ -1684,7 +1684,7 @@ Attenzione i versi delle Bibbie Online saranno scaricati on demand è quindi ric CustomPlugin.MediaItem - + Are you sure you want to delete the %n selected custom slide(s)? @@ -1695,60 +1695,60 @@ Attenzione i versi delle Bibbie Online saranno scaricati on demand è quindi ric 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 immagine - + Images name plural Immagini - + Images container title Immagini - + Load a new image. Carica una nuova immagine - + Add a new image. Aggiungi una nuova immagine - + Edit the selected image. Modifica l'immagine selezionata - + Delete the selected image. Cancella l'immagine selezionata - + Preview the selected image. Anteprima dell'immagine selezionata - + Send the selected image live. Invia l'immagine live - + Add the selected image to the service. Aggiungi l'immagine selezionata al servizio @@ -1756,7 +1756,7 @@ Attenzione i versi delle Bibbie Online saranno scaricati on demand è quindi ric ImagePlugin.ExceptionDialog - + Select Attachment Seleziona allegati @@ -1764,44 +1764,44 @@ Attenzione i versi delle Bibbie Online saranno scaricati on demand è quindi ric ImagePlugin.MediaItem - + Select Image(s) Seleziona immagine(i) - + You must select an image to delete. Seleziona almeno 1 immagine da eliminare - + You must select an image to replace the background with. Devi selezionare almeno 1 immagine con cui sostituire lo sfondo - + Missing Image(s) Immagini mancanti - + The following image(s) no longer exist: %s Impossibile trovare le seguenti immagini: %s - + The following image(s) no longer exist: %s Do you want to add the other images anyway? Impossibile trovare le seguenti immagini: %s Vuoi comunque caricare le altre immagini? - + There was a problem replacing your background, the image file "%s" no longer exists. E' stato riscontrato un errore nel sostituire lo sfondo, impossibile trovare il file "%s". - + There was no display item to amend. Nessun elemento visualizzato da modificare @@ -1809,17 +1809,17 @@ Vuoi comunque caricare le altre immagini? ImagesPlugin.ImageTab - + Background Color Colore di sfondo - + Default Color: Colore di default: - + Visible background for images with aspect ratio different to screen. @@ -1827,60 +1827,60 @@ Vuoi comunque caricare le altre immagini? MediaPlugin - + <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. <strong>Media Plugin</strong><br />Il plug in multimediale fornisce supporto per l'audio e il video - + Media name singular Media - + Media name plural Media - + Media container title Media - + Load new media. Carica un nuovo media - + Add new media. Aggiungi un nuovo media - + Edit the selected media. modifica il media selezionato - + Delete the selected media. cancella il media selezionato - + Preview the selected media. Anteprima del media selezionato - + Send the selected media live. Manda live il media selezionato - + Add the selected media to the service. Aggiungi il media selezionato al servizio @@ -1888,57 +1888,57 @@ Vuoi comunque caricare le altre immagini? MediaPlugin.MediaItem - + Select Media Seleziona media - + You must select a media file to delete. Devi prima selezionare un media da cancellare - + You must select a media file to replace the background with. Devi prima selezionare un file multimediale con cui sostituire lo sfondo - + There was a problem replacing your background, the media file "%s" no longer exists. E' stato riscontrato un errore nel sostituire lo sfondo, impossibile trovare il file "%s". - + Missing Media File impossibile trovare il file multimediale - + The file %s no longer exists. Impossibile trovare il file %s - + Videos (%s);;Audio (%s);;%s (*) Video (%s);;Audio (%s);;%s (*) - + There was no display item to amend. Nessun elemento visualizzato da modificare - + Unsupported File File non supportato - + Automatic Automatico - + Use Player: Usa player: @@ -1946,22 +1946,22 @@ Vuoi comunque caricare le altre immagini? MediaPlugin.MediaTab - + Available Media Players Media player disponibili - + %s (unavailable) %s (non disponibile) - + Player Order Ordine di riproduzione - + Allow media player to be overridden @@ -1969,17 +1969,17 @@ Vuoi comunque caricare le altre immagini? OpenLP - + Image Files File immagine - + Information Informazione - + Bible format has changed. You have to upgrade your existing Bibles. Should OpenLP upgrade now? @@ -1991,32 +1991,54 @@ OpenLP deve aggiornarle ora? OpenLP.AboutForm - + Credits Crediti - + License Licensa - + 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 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. - + + Copyright © 2004-2012 %s +Portions copyright © 2004-2012 %s + + + + + 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. + +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 volunteering by using the button below. + + + + + Volunteer + + + + Project Lead %s @@ -2035,12 +2057,20 @@ Packagers Translators Afrikaans (af) %s + Czeck (cs) + %s + Danish (da) + %s German (de) %s + Greek (el) + %s English, United Kingdom (en_GB) %s English, South Africa (en_ZA) %s + Spanish (es) + %s Estonian (et) %s French (fr) @@ -2057,13 +2087,15 @@ Translators %s Russian (ru) %s + Swedish (sv) + %s Documentation %s Built With Python: http://www.python.org/ - Qt4: http://qt.nokia.com/ + Qt4: http://qt.digia.com/ PyQt4: http://www.riverbankcomputing.co.uk/software/pyqt/intro Oxygen Icons: http://oxygen-icons.org/ @@ -2078,267 +2110,185 @@ Final Credit on the cross, setting us free from sin. We bring this software to you for free because He has set us free. - Project Lead - %s - -Developers - %s - -Contributors - %s - -Testers - %s - -Packagers - %s - -Translators - Afrikaans (af) - %s - German (de) - %s - English, United Kingdom (en_GB) - %s - English, South Africa (en_ZA) - %s - Estonian (et) - %s - French (fr) - %s - Hungarian (hu) - %s - Japanese (ja) - %s - Norwegian Bokmål (nb) - %s - Dutch (nl) - %s - Portuguese, Brazil (pt_BR) - %s - Russian (ru) - %s - -Documentation - %s - -Built With - Python: http://www.python.org/ - Qt4: http://qt.nokia.com/ - PyQt4: http://www.riverbankcomputing.co.uk/software/pyqt/intro - Oxygen Icons: http://oxygen-icons.org/ - -Final Credit - "For God so loved the world that He gave - His one and only Son, so that whoever - believes in Him will not perish but inherit - eternal life." -- John 3:16 - - And last but not least, final credit goes to - God our Father, for sending His Son to die - on the cross, setting us free from sin. We - bring this software to you for free because - He has set us free. - - - - Copyright © 2004-2012 %s -Portions copyright © 2004-2012 %s - - - - - 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. - -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 volunteering by using the button below. - - - - - Volunteer OpenLP.AdvancedTab - + UI Settings - + Number of recent files to display: Numero di files recenti da visualizzare - + Remember active media manager tab on startup - + Double-click to send items straight to live Doppio click, invia direttamente al live - + Expand new service items on creation Espandi i nuovi elementi del servizio alla creazione - + Enable application exit confirmation Chiedi prima di uscire - + Mouse Cursor Cursore del mouse - + Hide mouse cursor when over display window Nascondi il cursore del mouse sopra la finestra di visualizzazione - + Default Image Immagine di default - + Background color: Colore di sfondo: - + Image file: File immagine: - + Open File Apri file - + Advanced Avanzate - + Preview items when clicked in Media Manager Anteprima degli elementi clikkati in media manager - + Click to select a color. Click per scegliere un colore - + Browse for an image file to display. Scegli un'immagine da visualizzare - + Revert to the default OpenLP logo. Ritorna al logo di openLP di default - + 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 @@ -2348,94 +2298,94 @@ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for - + 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. - + 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 - + OpenLP data directory was not found %s @@ -2448,7 +2398,7 @@ Click "Yes" to reset the data directory to the default location. - + Are you sure you want to change the location of the OpenLP data directory to: %s @@ -2457,7 +2407,7 @@ The data directory will be changed when OpenLP is closed. - + WARNING: The location you have selected @@ -2471,39 +2421,39 @@ appears to contain OpenLP data files. Do you wish to replace these files with t OpenLP.ExceptionDialog - + Error Occurred Errore - + 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 Invia una E-Mail - + Save to File Save to File - + Please enter a description of what you were doing to cause this error (Minimum 20 characters) Inserisci una descrizione di quello che stavi facendo quando si è verificato l'errore (minimo 20 caratteri) - + Attach File Allega file - + Description characters to enter : %s Descrizione dei caratteri da inserire: %s @@ -2511,24 +2461,24 @@ appears to contain OpenLP data files. Do you wish to replace these files with t OpenLP.ExceptionForm - + Platform: %s Platform: %s - + Save Crash Report Salva il report dei crash - + Text files (*.txt *.log *.text) File di testo (*.txt *.log *.text) - + **OpenLP Bug Report** Version: %s @@ -2546,7 +2496,7 @@ Version: %s - + *OpenLP Bug Report* Version: %s @@ -2568,17 +2518,17 @@ Version: %s OpenLP.FileRenameForm - + File Rename Rinomina file - + New File Name: Nuovo nome file - + File Copy copia file @@ -2586,17 +2536,17 @@ Version: %s OpenLP.FirstTimeLanguageForm - + Select Translation Seleziona Traduzione - + Choose the translation you'd like to use in OpenLP. Seleziona la traduzione che vuoi usare in OpenLP - + Translation: Traduzione: @@ -2604,199 +2554,199 @@ Version: %s OpenLP.FirstTimeWizard - + Songs Canti - + First Time Wizard - + Welcome to the First Time Wizard - + Activate required Plugins Attiva i plug in richiesti - + Select the Plugins you wish to use. Seleziona i plugin che vuoi usare - + Bible Bibbia - + Images Immagini - + Presentations Presentazioni - + Media (Audio and Video) Media (audio e video) - + Allow remote access Permetti accesso remoto - + Monitor Song Usage - + Allow Alerts Permetti avvertimenti - + Default Settings Impostazioni di default - + Downloading %s... Downloading %s... - + Download complete. Click the finish button to start OpenLP. Download completato. Click il pulsante fine per avviare OpenLP - + Enabling selected plugins... Abilito i plugin selezionati... - + No Internet Connection Nessuna connessione a internet - + Unable to detect an Internet connection. Impossibile rilevare una connessione internet - + Sample Songs Canti di esempio - + Select and download public domain songs. Seleziona e scarica canti di pubblico dominio - + Sample Bibles Bibbie campione - + Select and download free Bibles. Seleziona e scarica Bibbie free - + Sample Themes Themi campione - + Select and download sample themes. Seleziona e scarica i temi campione - + Set up default settings to be used by OpenLP. Impostazioni di default per OpenLP - + Default output display: Schermo di output predefinito - + Select default theme: Seleziona il tema di default - + Starting configuration process... - + This wizard will help you to configure OpenLP for initial use. Click the next button below to start. - + Setting Up And Downloading - + Please wait while OpenLP is set up and your data is downloaded. - + Setting Up - + Click the finish button to start OpenLP. - + Download complete. Click the finish button to return to OpenLP. - + Click the finish button to return to 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. - + To cancel the First Time Wizard completely (and not start OpenLP), click the Cancel button now. @@ -2806,37 +2756,37 @@ 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 HTML - + End HTML @@ -2844,32 +2794,32 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can OpenLP.FormattingTagForm - + Update Error - + Tag "n" already defined. - + New Tag - + <HTML here> - + </and here> - + Tag %s already defined. @@ -2877,82 +2827,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 @@ -2960,122 +2910,122 @@ 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 - + SongSelect username: - + SongSelect password: - + X - + Y - + Height - + Width - + Check for updates to OpenLP - + Unblank display when adding new live item - + Timed slide interval: - + Background Audio - + Start background audio paused @@ -3085,12 +3035,12 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can - + Override display position: - + Repeat track list @@ -3118,12 +3068,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. @@ -3131,7 +3081,7 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can OpenLP.MainDisplay - + OpenLP Display @@ -3139,438 +3089,438 @@ 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 &Nuovo - + &Open - + Open an existing service. - + &Save &Salva - + Save the current service to disk. - + Save &As... - + Save Service As - + Save the current service under a new name. - + E&xit - + Quit OpenLP - + &Theme - + &Configure 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 - + &Online Help - + &Web Site - + Use the system language, if available. - + Set the interface language to %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/. - + OpenLP Version Updated - + OpenLP Main Display Blanked - + The Main Display has been blanked out - + Default Theme: %s - + English Please add the name of your language here Italian - + Configure &Shortcuts... - + Close OpenLP - + Are you sure you want to close 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. - + Clear List Clear List of recent files - + Clear the list of recent files. - + Configure &Formatting Tags... - + Export OpenLP settings to a specified *.config file - + Settings - + Import OpenLP settings from a specified *.config file previously exported on this or another machine - + Import settings? - + Are you sure you want to import settings? Importing settings will make permanent changes to your current OpenLP configuration. @@ -3579,42 +3529,42 @@ Importing incorrect settings may cause erratic behaviour or OpenLP to terminate - + Open File Apri file - + OpenLP Export Settings Files (*.conf) - + Import settings - + 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 - + The file you selected does appear to be a valid OpenLP settings file. Section [%s] is not valid @@ -3623,12 +3573,12 @@ Processing has terminated and no changed have been made. - + Copying OpenLP data to new data directory location - %s - Please wait for copy to finish - + OpenLP Data directory copy failed %s @@ -3638,19 +3588,19 @@ Processing has terminated and no changed have been made. 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 - + OpenLP cannot load your database. Database: %s @@ -3660,62 +3610,62 @@ 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. - + You must select one or more items to add. - + No Search Results - + Invalid File Type - + Invalid File %s. Suffix not supported @@ -3726,7 +3676,7 @@ Suffix not supported - + Duplicate files were found on import and were ignored. @@ -3734,12 +3684,12 @@ Suffix not supported OpenLP.OpenLyricsImportError - + <lyrics> tag is missing. - + <verse> tag is missing. @@ -3747,42 +3697,42 @@ Suffix not supported OpenLP.PluginForm - + Plugin List - + Plugin Details - + Status: - + Active - + Inactive - + %s (Inactive) - + %s (Active) - + %s (Disabled) @@ -3790,12 +3740,12 @@ Suffix not supported OpenLP.PrintServiceDialog - + Fit Page - + Fit Width @@ -3803,77 +3753,77 @@ Suffix not supported OpenLP.PrintServiceForm - + Options - + Copy - + Copy as 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: @@ -3881,12 +3831,12 @@ Suffix not supported OpenLP.ScreenList - + Screen - + primary @@ -3894,12 +3844,12 @@ Suffix not supported OpenLP.ServiceItem - + <strong>Start</strong>: %s - + <strong>Length</strong>: %s @@ -3907,7 +3857,7 @@ Suffix not supported OpenLP.ServiceItemEditForm - + Reorder Service Item @@ -3915,295 +3865,294 @@ Suffix not supported OpenLP.ServiceManager - + Move to &top - + Move item to the top of the service. - + Move &up - + Move item up one position in the service. - + Move &down - + Move item down one position in the service. - + Move to &bottom - + Move item to the end of the service. - + &Delete From Service - + Delete the selected item from the service. - + &Add New Item - + &Add to Selected Item - + &Edit Item - + &Reorder Item - + &Notes - + &Change Item Theme - + OpenLP Service Files (*.osz) - + File is not a valid service. The content encoding is not UTF-8. - + File is not a valid service. - + Missing Display Handler - + Your item cannot be displayed as there is no handler to display it - + Your item cannot be displayed as the plugin required to display it is missing or inactive - + &Expand all - + Expand all the service items. - + &Collapse all - + Collapse all the service items. - + Open File Apri 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. - - Service File Missing - - - - + Slide theme - + Notes - + Edit - + Service copy only - + Error Saving File - + There was an error saving your file. - - File missing from service + + Service File(s) Missing + + + + + The following file(s) in the service are missing: +%s - %s - -Continue saving? +These files will be removed if you continue to save. OpenLP.ServiceNoteForm - + Service Item Notes @@ -4211,7 +4160,7 @@ Continue saving? OpenLP.SettingsForm - + Configure OpenLP @@ -4219,67 +4168,67 @@ Continue saving? OpenLP.ShortcutListDialog - + Action - + Shortcut - + Duplicate Shortcut - + The shortcut "%s" is already assigned to another action, please use a different shortcut. - + 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 @@ -4287,172 +4236,172 @@ Continue saving? 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. - + 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 @@ -4460,17 +4409,17 @@ Continue saving? OpenLP.SpellTextEdit - + Spelling Suggestions - + Formatting Tags - + Language: Lingua: @@ -4478,67 +4427,67 @@ Continue saving? 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. @@ -4546,198 +4495,198 @@ Continue saving? 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) - + You must select a theme to edit. - + You are unable to delete the default theme. - + Theme %s is used in the %s plugin. - + You have not selected a theme. - + Save Theme - (%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? - + You must select a theme to delete. - + Delete Confirmation - + Delete %s theme? - + Validation Error - + A theme with this name already exists. - + OpenLP Themes (*.theme *.otz) - + Copy of %s Copy of <theme name> - + Theme Already Exists - + Theme %s already exists. Do you want to replace it? @@ -4745,312 +4694,312 @@ Continue saving? OpenLP.ThemeWizard - + Theme Wizard - + Welcome to the Theme Wizard - + Set Up Background - + Set up your theme's background according to the parameters below. - + Background type: - + Solid Color - + Gradient - + Color: - + Gradient: - + Horizontal - + Vertical - + Circular - + Top Left - Bottom Right - + Bottom Left - Top Right - + Main Area Font Details - + Define the font and display characteristics for the Display text - + Font: - + Size: - + Line Spacing: - + &Outline: - + &Shadow: - + Bold - + Italic - + Footer Area Font Details - + Define the font and display characteristics for the Footer text - + Text Formatting Details - + Allows additional display formatting information to be defined - + Horizontal Align: - + Left - + Right - + Center - + Output Area Locations - + Allows you to change and move the main and footer areas. - + &Main Area - + &Use default location - + X position: - + px - + Y position: - + Width: - + Height: - + Use default location - + Theme name: - + Edit Theme - %s - + This wizard will help you to create and edit your themes. Click the next button below to start the process by setting up your background. - + Transitions: - + &Footer Area - + Starting color: - + Ending color: - + Background color: Colore di sfondo: - + Justify - + Layout Preview - + Transparent - + Preview and Save - + Preview the theme and save it. - + (approximately %d lines per slide) - + Background Image Empty - + You have not selected a background image. Please select one before continuing. - + Select Image - + Theme Name Missing - + There is no name for this theme. Please enter one. - + Theme Name Invalid - + Invalid theme name. Please enter one. @@ -5058,47 +5007,47 @@ Continue saving? 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 @@ -5106,315 +5055,315 @@ Continue saving? OpenLP.Ui - + Error - + About - + &Add - + Advanced Avanzate - + All Files - + Bottom - + Browse... - + Cancel - + CCLI number: - + Create a new service. - + &Delete - + &Edit - + Empty Field - + Export - + pt Abbreviated font pointsize unit - + Image immagine - + 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 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 - + 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"... - + 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. - + Open %s File - + %p% - + Ready. - + Starting import... - + You need to specify at least one %s file to import from. A file type e.g. OpenSong @@ -5425,278 +5374,278 @@ Continue saving? - + 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? - + Settings - + Tools - + Unsupported File File non supportato - + Verse Per Slide - + Verse Per Line - + View - + Title and/or verses not found - + XML syntax error - + 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 - + 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 - + Importing Songs @@ -5704,25 +5653,25 @@ Continue saving? 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 @@ -5731,50 +5680,50 @@ Continue saving? 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 - + Presentations name plural Presentazioni - + Presentations container title Presentazioni - + Load a new presentation. - + Delete the selected presentation. - + Preview the selected presentation. - + Send the selected presentation live. - + Add the selected presentation to the service. @@ -5782,52 +5731,52 @@ Continue saving? PresentationPlugin.MediaItem - + Select Presentation(s) - + Automatic Automatico - + Present using: - + File Exists - + A presentation with that filename already exists. - + This type of presentation is not supported. - + Presentations (%s) - + Missing Presentation - + The presentation %s is incomplete, please reload. - + The presentation %s no longer exists. @@ -5835,17 +5784,17 @@ Continue saving? PresentationPlugin.PresentationTab - + Available Controllers - + %s (unavailable) %s (non disponibile) - + Allow presentation application to be overridden @@ -5853,24 +5802,24 @@ Continue saving? 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 - + Remotes name plural - + Remote container title @@ -5879,150 +5828,160 @@ Continue saving? RemotePlugin.Mobile - + OpenLP 2.0 Remote - + OpenLP 2.0 Stage View - + Service Manager - + Slide Controller - + Alerts Avvisi - + Search - + Refresh - + Blank - + Show - + Prev - + Next - + Text - + Show Alert - + Go Live - + No Results - + Options - + Add to Service - + Home - + Theme - + Desktop - + Add &amp; Go to Service + + + Service + + + + + Slides + + RemotePlugin.RemoteTab - + Serve on IP address: - + Port number: - + Server Settings - + Remote URL: - + Stage view URL: - + Display stage time in 12h format - + Android App - + Scan the QR code or click <a href="https://play.google.com/store/apps/details?id=org.openlp.android">download</a> to install the Android app from Google Play. @@ -6030,85 +5989,85 @@ Continue saving? 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. - + SongUsage name singular - + SongUsage name plural - + SongUsage container title - + Song Usage - + Song usage tracking is active. - + Song usage tracking is inactive. - + display - + printed @@ -6116,32 +6075,32 @@ Continue saving? 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. @@ -6149,54 +6108,54 @@ Continue saving? SongUsagePlugin.SongUsageDetailForm - + Song Usage Extraction - + Select Date Range - + to - + Report Location - + Output File Location - + usage_detail_%s_%s.txt - + Report Creation - + Report %s 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. @@ -6204,178 +6163,178 @@ 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. - + &Re-index Songs - + Re-index the songs database to improve searching and ordering. - + Reindexing songs... - + Arabic (CP-1256) - + Baltic (CP-1257) - + Central European (CP-1250) - + Cyrillic (CP-1251) - + Greek (CP-1253) - + Hebrew (CP-1255) - + Japanese (CP-932) - + Korean (CP-949) - + Simplified Chinese (CP-936) - + Thai (CP-874) - + Traditional Chinese (CP-950) - + Turkish (CP-1254) - + Vietnam (CP-1258) - + Western European (CP-1252) - + Character Encoding - + 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 - + Songs name plural Canti - + Songs container title Canti - + 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. - + Reindexing songs @@ -6383,37 +6342,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? @@ -6421,7 +6380,7 @@ The encoding is responsible for the correct character representation. SongsPlugin.CCLIFileImport - + The file does not have a valid extension. @@ -6429,12 +6388,12 @@ The encoding is responsible for the correct character representation. SongsPlugin.EasyWorshipSongImport - + Administered by %s - + [above are Song Tags with notes imported from EasyWorship] @@ -6444,12 +6403,12 @@ The encoding is responsible for the correct character representation. SongsPlugin.EditBibleForm - + Meta Data - + Custom Book Names @@ -6457,202 +6416,202 @@ The encoding is responsible for the correct character representation. SongsPlugin.EditSongForm - + Song Editor - + &Title: &Title: - + Alt&ernate title: - + &Lyrics: - + &Verse order: - + Ed&it All Ed&it Tutto - + Title && Lyrics - + &Add to Song - + &Remove - + &Manage Authors, Topics, Song Books - + A&dd to Song - + R&emove - + Book: Libro: - + 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. - + Add Book - + This song book does not exist, do you want to add it? - + You need to have an author for this song. - + Linked Audio - + Add &File(s) - + Add &Media - + Remove &All - + Open File(s) - + <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. @@ -6660,22 +6619,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. @@ -6683,82 +6642,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. @@ -6766,172 +6725,172 @@ 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.org v1.x Databases - + Words Of Worship Song Files - + Songs Of Fellowship Song Files - + SongBeamer Files - + SongShow Plus Song Files - + Foilpresenter Song Files - + Copy - + Save to File Save to File - + The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. - + The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. - + OpenLyrics or OpenLP 2.0 Exported Song - + OpenLyrics Files - + 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 - + This importer has been disabled. - + MediaShout Database - + The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. - + SongPro Text Files - + SongPro (Export File) - + In SongPro, export your songs using the File -> Export menu @@ -6939,12 +6898,12 @@ The encoding is responsible for the correct character representation. 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. @@ -6962,7 +6921,7 @@ The encoding is responsible for the correct character representation. - + CCLI License: @@ -6972,7 +6931,7 @@ The encoding is responsible for the correct character representation. - + Are you sure you want to delete the %n selected song(s)? @@ -6985,7 +6944,7 @@ The encoding is responsible for the correct character representation. - + copy For song cloning @@ -7019,7 +6978,7 @@ The encoding is responsible for the correct character representation. SongsPlugin.MediaShoutImport - + Unable to open the MediaShout database. @@ -7027,7 +6986,7 @@ The encoding is responsible for the correct character representation. SongsPlugin.OpenLP1SongImport - + Not a valid openlp.org 1.x song database. @@ -7035,7 +6994,7 @@ The encoding is responsible for the correct character representation. SongsPlugin.OpenLPSongImport - + Not a valid OpenLP 2.0 song database. @@ -7043,7 +7002,7 @@ The encoding is responsible for the correct character representation. SongsPlugin.OpenLyricsExport - + Exporting "%s"... @@ -7051,32 +7010,32 @@ The encoding is responsible for the correct character representation. SongsPlugin.PowerSongImport - + No songs to import. - + Verses not found. Missing "PART" header. - + No %s files found. - + Invalid %s file. Unexpected byte value. - + Invalid %s file. Missing "TITLE" header. - + Invalid %s file. Missing "COPYRIGHTLINE" header. @@ -7084,22 +7043,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. @@ -7107,12 +7066,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. @@ -7120,27 +7079,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 - + Unable to open file - + File not found @@ -7148,107 +7107,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? - + 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? @@ -7256,27 +7215,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 @@ -7284,17 +7243,17 @@ The encoding is responsible for the correct character representation. SongsPlugin.TopicsForm - + Topic Maintenance - + Topic name: - + You need to type in a topic name. @@ -7302,37 +7261,37 @@ The encoding is responsible for the correct character representation. SongsPlugin.VerseType - + Verse - + Chorus - + Bridge - + Pre-Chorus - + Intro - + Ending - + Other @@ -7340,27 +7299,27 @@ The encoding is responsible for the correct character representation. SongsPlugin.ZionWorxImport - + Error reading CSV file. - + File not valid ZionWorx CSV format. - + Line %d: %s - + Decoding error: %s - + Record %d diff --git a/resources/i18n/ja.ts b/resources/i18n/ja.ts index 5a30d2baa..b3963ec9c 100644 --- a/resources/i18n/ja.ts +++ b/resources/i18n/ja.ts @@ -3,35 +3,35 @@ AlertsPlugin - + &Alert 警告(&A) - + 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: 警告テキスト(&T): - + &New 新規作成(&N) - + &Save 保存(&S) - + Displ&ay 表示(&A) - + Display && Cl&ose 表示して閉じる(&O) - + New Alert 新しい警告 - + You haven't specified any text for your alert. Please type in some text before clicking New. 警告テキストが何も指定されていません。新規作成をクリックする前にテキストを入力してください。 - + &Parameter: パラメータ(&P): - + 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? 警告テキストは、'<>'を含みません。 @@ -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 聖書(&B) - + 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 古い聖書を更新(&U) - + Upgrade the Bible databases to the latest 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 - + 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. @@ -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. 聖書の著作権情報を設定する必要があります。パブリックドメインの聖書はそのようにマークされている必要があります。 - + 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」は2回以上入力されました。 @@ -711,39 +711,39 @@ be followed by one or more non-numeric characters. BiblesPlugin.BibleManager - + Scripture Reference Error 書名章節番号エラー - + Web Bible cannot be used ウェブ聖書は使用できません - + 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. 検索キーワードが入力されていません。 複数のキーワードをスペースで区切るとすべてに該当する箇所を検索し、カンマ (,) で区切るといずれかに該当する箇所を検索します。 - + 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,78 +766,78 @@ 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 2 つの聖句を表示 - + 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. @@ -846,7 +846,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. @@ -855,7 +855,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. @@ -864,7 +864,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. @@ -873,28 +873,28 @@ 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 アプリケーションの言語 @@ -902,42 +902,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. 以下の書名は内部の書名と一致しませんでした。対応するものを一覧から選択してください。 @@ -945,7 +945,7 @@ search results and on display: BiblesPlugin.BookNameForm - + You need to select a book. 書名を選択してください。 @@ -953,18 +953,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. 節をインポート中... 完了。 @@ -972,68 +972,68 @@ 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. ウェブ聖書は訳名を変更することができません。 - + 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. 任意の書名を使用するには、メタデータタブにて&quot;聖書言語&quot;を選択するか、&quot;全体設定&quot;の聖書タブにて設定し てください。 @@ -1042,38 +1042,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. 選択された聖書のダウンロードに失敗しました。インターネット接続を確認し、それでもエラーが繰り返して起こる場合は、バグ報告を検討してください。 - + Parse Error 構文エラー - + There was a problem extracting your verse selection. If this error continues to occur please consider reporting a bug. 選択された聖書の展開に失敗しました。エラーが繰り返して起こる場合は、バグ報告を検討してください。 @@ -1250,17 +1250,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: 言語: @@ -1268,7 +1268,7 @@ demand and thus an internet connection is required. BiblesPlugin.LanguageForm - + You need to choose a language. 言語を選択する必要があります。 @@ -1276,92 +1276,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? 1 つの聖書と複数の聖書の検索結果の結合はできません。検索結果を削除して再検索しますか? - + 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 completely delete "%s" Bible from OpenLP? You will need to re-import this Bible to use it again. @@ -1373,7 +1373,7 @@ You will need to re-import this Bible to use it again. BiblesPlugin.OpenSongImport - + Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. 不正な聖書ファイルです。OpenSongの聖書は圧縮されていることがあります。その場合、インポートする前に展開する必要があります。 @@ -1381,7 +1381,7 @@ You will need to re-import this Bible to use it again. BiblesPlugin.Opensong - + Importing %s %s... Importing <book name> <chapter>... %s %s をインポート中... @@ -1390,12 +1390,12 @@ You will need to re-import this Bible to use it again. BiblesPlugin.OsisImport - + Detecting encoding (this may take a few minutes)... エンコーディングを検出中です (数分かかることがあります)... - + Importing %s %s... Importing <book name> <chapter>... %s %s をインポート中... @@ -1404,149 +1404,149 @@ You will need to re-import this Bible to use it again. 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 のデータ ディレクトリにコピーしてください。 - + 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. ウェブ聖書を更新するにはインターネット接続が必要です。 - + 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 ウェブ聖書の本文は必要に応じてダウンロードされるため、インターネット接続が必要なことに注意してください。 - + 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. 更新する聖書はありません。 @@ -1554,65 +1554,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. 選択されたカスタム スライドを礼拝プログラムに追加します。 @@ -1620,12 +1620,12 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I CustomPlugin.CustomTab - + Custom Display カスタム表示 - + Display footer フッターを表示 @@ -1633,62 +1633,62 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I CustomPlugin.EditCustomForm - + Edit Custom Slides カスタム スライドを編集 - + &Title: タイトル(&T): - + 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: テーマ(&M): - + &Credits: クレジット(&C): - + You need to type in a title. タイトルの入力が必要です。 - + You need to add at least one slide 最低 1 枚のスライドが必要です - + Ed&it All すべて編集(&I) - + Insert Slide スライドを挿入 @@ -1696,7 +1696,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I CustomPlugin.EditVerseForm - + Edit Slide スライド編集 @@ -1704,7 +1704,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件のカスタムスライドを削除します。宜しいですか? @@ -1714,60 +1714,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. 選択された画像を礼拝プログラムに追加します。 @@ -1775,7 +1775,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I ImagePlugin.ExceptionDialog - + Select Attachment 添付を選択 @@ -1783,44 +1783,44 @@ 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 それでも他の画像を追加しますか? - + There was a problem replacing your background, the image file "%s" no longer exists. 背景を置換する際に問題が発生しました。画像ファイル "%s" が存在しません。 - + There was no display item to amend. 結合する項目がありません。 @@ -1828,17 +1828,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. アスペクト比がスクリーンと異なる画像が背景として表示されます。 @@ -1846,60 +1846,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. 選択したメディアを礼拝プログラムに追加します。 @@ -1907,57 +1907,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: 使用する再生ソフト: @@ -1965,22 +1965,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 メディアプレーヤを上書き可能にする @@ -1988,17 +1988,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? @@ -2010,32 +2010,57 @@ Should OpenLP upgrade now? OpenLP.AboutForm - + Credits クレジット - + License ライセンス - + 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. このプログラムは、フリーソフトです。あなたは、これを再配布したり、the Free Software Foundationが発行した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. このプログラムは、皆様のお役に立てると期待して配布しています。しかし、完全に無保障であることを理解してください。商品としての暗黙の保障としての商品適格性や特定の使用適合性もありません。詳しくは以下をお読みください。 - + + Copyright © 2004-2012 %s +Portions copyright © 2004-2012 %s + 著作権 © 2004-2012 %s +追加の著作権 © 2004-2012 %s + + + + 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. + +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 volunteering by using the button below. + OpenLP <version><revision> - オープンソース賛美詞投射ソフトウェア + +OpenLP は、教会専用のフリーのプレゼンテーション及び賛美詞投射ソフトウェアです。パソコンとプロジェクターを用いて、聖書箇所、画像また他プレゼンテーションデータ (OpenOffice.org や PowerPoint/Viewer が必要) を表示できます。 http://openlp.org/ にて詳しくご紹介しております。 OpenLP は、ボランティアの手で開発保守されています。もっと多くのクリスチャンの手によるフリーのソフトウェア開発に興味がある方は、以下のボタンからどうぞ。 + + + + Volunteer + 貢献者 + + + Project Lead %s @@ -2054,12 +2079,20 @@ Packagers Translators Afrikaans (af) %s + Czeck (cs) + %s + Danish (da) + %s German (de) %s + Greek (el) + %s English, United Kingdom (en_GB) %s English, South Africa (en_ZA) %s + Spanish (es) + %s Estonian (et) %s French (fr) @@ -2076,13 +2109,15 @@ Translators %s Russian (ru) %s + Swedish (sv) + %s Documentation %s Built With Python: http://www.python.org/ - Qt4: http://qt.nokia.com/ + Qt4: http://qt.digia.com/ PyQt4: http://www.riverbankcomputing.co.uk/software/pyqt/intro Oxygen Icons: http://oxygen-icons.org/ @@ -2097,270 +2132,185 @@ Final Credit on the cross, setting us free from sin. We bring this software to you for free because He has set us free. - プロジェクト リーダー - %s - -開発者 - %s - -貢献者 - %s - -テスター - %s - -パッケージャー - %s - -翻訳者 - アフリカーンス語 (af) - %s - ドイツ語 (de) - %s - 英語(英)(en_GB) - %s - 英語(南アフリカ) (en_ZA) - %s - エストニア語 (et) - %s - フランス語 (fr) - %s - ハンガリー語 (hu) - %s - 日本語 (ja) - %s - ノルウェー語 (nb) - %s - ドイツ語 (nl) - %s - ポルトガル語 (pt_BR) - %s - ロシア語 (ru) - %s - -ドキュメンテーション - %s - -ビルド ツール - Python: http://www.python.org/ - Qt4: http://qt.nokia.com/ - PyQt4: http://www.riverbankcomputing.co.uk/software/pyqt/intro - Oxygen Icons: http://oxygen-icons.org/ - -最後の称賛 - - - 「神はそのひとり子を賜わったほどに、この世 - を愛して下さった。それは御子を信じる者が - ひとりも滅びないで、永遠の命を得るためで - ある。 -- ヨハネの福音書3章16節 -- - - 最後に大切なことを言いいますが、最後の称賛を、私たち - の父なる神に帰します。父なる神は、その独り子を、私を - 罪から解放するために十字架の死に遣わして下さいました。 - 私たちは、このソフトウェアをあなたに無償フリー(無償)で提供 - します。それは神が私たちをフリー(自由)にして下さった故です。 - - - - Copyright © 2004-2012 %s -Portions copyright © 2004-2012 %s - 著作権 © 2004-2012 %s -追加の著作権 © 2004-2012 %s - - - - 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. - -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 volunteering by using the button below. - - - - - Volunteer OpenLP.AdvancedTab - + UI Settings UI 設定 - + 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. Service %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 @@ -2370,82 +2320,82 @@ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for 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. @@ -2453,12 +2403,12 @@ This location will be used after OpenLP is closed. この保存場所はOpenLPの終了後より使用されます。 - + Overwrite Existing Data 存在するデータの上書き - + OpenLP data directory was not found %s @@ -2468,19 +2418,31 @@ This data directory was previously changed from the OpenLP default location. If Click "No" to stop loading OpenLP. allowing you to fix the the problem. Click "Yes" to reset the data directory to the default location. - + OpenLPの保存場所が見つかりませんでした。 + +%s + +この保存場所は以前にデフォルトの場所から変更されています。もし新しい場所が取り外し可能なメディア上であった場合、そのメディアが使用出来るようにする必要があります。 + +「いいえ」をクリックするとOpenLPの開始を中断します。この問題を修正してください。 + +「はい」をクリックするとデフォルトの場所に戻します。 - + Are you sure you want to change the location of the OpenLP data directory to: %s The data directory will be changed when OpenLP is closed. - + 本当にOpenLPの保存場所を以下に変更してよいですか? + +%s + +OpenLPが終了した時に保存場所が変更されます。 - + WARNING: The location you have selected @@ -2488,45 +2450,49 @@ The location you have selected %s appears to contain OpenLP data files. Do you wish to replace these files with the current data files? - + 警告: + +選択された以下の場所は既にOpenLPのデータが含まれています。既存のファイルを現在のファイルで置き換えますか。 + +%s 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 は問題に直面し、復旧できませんでした。以下に表示される情報は、開発者が問題を修正するのに役立つかも知れません。bugs@openlp.org に以下のエラー メッセージと問題が発生するまでの手順を送ってください。 - + Send 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 @@ -2534,24 +2500,24 @@ appears to contain OpenLP data files. Do you wish to replace these files with t OpenLP.ExceptionForm - + Platform: %s プラットフォーム: %s - + Save Crash Report クラッシュ報告を保存 - + Text files (*.txt *.log *.text) テキスト ファイル (*.txt *.log *.text) - + **OpenLP Bug Report** Version: %s @@ -2583,7 +2549,7 @@ Version: %s - + *OpenLP Bug Report* Version: %s @@ -2619,17 +2585,17 @@ Version: %s OpenLP.FileRenameForm - + File Rename ファイル名を変更 - + New File Name: 新しいファイル名: - + File Copy ファイルをコピー @@ -2637,17 +2603,17 @@ Version: %s OpenLP.FirstTimeLanguageForm - + Select Translation 翻訳言語を選択 - + Choose the translation you'd like to use in OpenLP. OpenLP で利用する言語を選択してください。 - + Translation: 翻訳言語: @@ -2655,192 +2621,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. @@ -2849,7 +2815,7 @@ To re-run the First Time Wizard and import this sample data at a later time, che 初回起動ウィザードをもう一度実行してサンプルデータをインポートするには、&quot;ツール/初回起動ウィザードの再実行&quot;を選択してください。 - + To cancel the First Time Wizard completely (and not start OpenLP), click the Cancel button now. @@ -2859,37 +2825,37 @@ 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 HTML 開始HTML - + End HTML 終了HTML @@ -2897,32 +2863,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 here> - + </and here> </and here> - + Tag %s already defined. タグ「%s」は既に定義されています。 @@ -2930,82 +2896,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 改行 @@ -3013,122 +2979,122 @@ 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 スクリーンが 1 つしかなくても表示 - + 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 一時停止中のバックグラウンド音声を再生 @@ -3138,12 +3104,12 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can 礼拝項目スライドの上限 - + Override display position: 表示位置を上書き: - + Repeat track list 音声トラックの一覧を繰り返し再生 @@ -3171,12 +3137,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 を再起動してください。 @@ -3184,7 +3150,7 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can OpenLP.MainDisplay - + OpenLP Display OpenLP ディスプレイ @@ -3192,287 +3158,287 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can OpenLP.MainWindow - + &File ファイル(&F) - + &Import インポート(&I) - + &Export エクスポート(&E) - + &View 表示(&V) - + M&ode モード(&O) - + &Tools ツール(&T) - + &Settings 設定(&S) - + &Language 言語(&L) - + &Help ヘルプ(&H) - + Media Manager メディア マネージャ - + Service Manager 礼拝プログラム管理 - + Theme Manager テーマ マネージャ - + &New 新規作成(&N) - + &Open 開く(&O) - + Open an existing service. 存在する礼拝プログラムを開きます。 - + &Save 保存(&S) - + Save the current service to disk. 現在の礼拝プログラムをディスクに保存します。 - + Save &As... 名前を付けて保存(&A)... - + Save Service As 名前をつけて礼拝プログラムを保存 - + Save the current service under a new name. 現在の礼拝プログラムを新しい名前で保存します。 - + E&xit 終了(&X) - + Quit OpenLP OpenLP を終了 - + &Theme テーマ(&T) - + &Configure OpenLP... OpenLP の設定(&C)... - + &Media Manager メディア マネージャ(&M) - + Toggle Media Manager メディア マネージャを切り替える - + Toggle the visibility of the media manager. メディア マネージャの表示/非表示を切り替えます。 - + &Theme Manager テーマ マネージャ(&T) - + Toggle Theme Manager テーマ マネージャの切り替え - + Toggle the visibility of the theme manager. テーマ マネージャの表示/非表示を切り替えます。 - + &Service Manager 礼拝プログラム管理(&S) - + Toggle Service Manager 礼拝プログラムの切り替え - + Toggle the visibility of the service manager. 礼拝プログラムの表示/非表示を切り替える。 - + &Preview Panel プレビュー パネル(&P) - + Toggle Preview Panel プレビュー パネルの切り替え - + Toggle the visibility of the preview panel. プレビュー パネルの表示/非表示を切り替えます。 - + &Live Panel ライブ パネル(&L) - + Toggle Live Panel ライブ パネルの切り替え - + Toggle the visibility of the live panel. ライブ パネルの表示/非表示を切り替える。 - + &Plugin List プラグイン一覧(&P) - + List the Plugins プラグイン一覧を表示します - + &User Guide ユーザ ガイド(&U) - + &About バージョン情報(&A) - + More information about OpenLP OpenLP の詳細情報 - + &Online Help オンライン ヘルプ(&O) - + &Web Site ウェブ サイト(&W) - + Use the system language, if available. 可能であればシステム言語を使用します。 - + Set the interface language to %s インタフェース言語を %s に設定 - + Add &Tool... ツールを追加(&T)... - + Add an application to the list of tools. ツールの一覧にアプリケーションを追加します。 - + &Default 既定値(&D) - + Set the view mode back to the default. 表示モードを既定に戻します。 - + &Setup 設定(&S) - + Set the view mode to Setup. 表示モードを設定します。 - + &Live ライブ(&L) - + 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/. @@ -3481,108 +3447,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 OpenLP のプライマリ ディスプレイがブランクになりました - + Default Theme: %s 既定のテーマ: %s - + English Please add the name of your language here 日本語 - + Configure &Shortcuts... ショートカットの設定(&S)... - + Close OpenLP OpenLP を閉じる - + Are you sure you want to close OpenLP? OpenLP を本当に終了しますか? - + Open &Data Folder... データフォルダを開く(&D)... - + Open the folder where songs, bibles and other data resides. 賛美、聖書データなどのデータが含まれているフォルダを開く。 - + &Autodetect 自動検出(&A) - + Update Theme Images テーマの縮小画像を更新 - + Update the preview images for all themes. 全てのテーマの縮小画像を更新します。 - + Print the current service. 現在の礼拝プログラムを印刷します。 - + &Recent Files 最近使用したファイル(&R) - + L&ock Panels パネルを固定(&L) - + 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. @@ -3591,43 +3557,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... 書式タグを設定(&F)... - + Export OpenLP settings to a specified *.config file OpenLPの設定をファイルへエクスポート - + Settings 設定 - + Import OpenLP settings from a specified *.config file previously exported on this or another machine 以前にエクスポートしたファイルから OpenLP の設定をインポート - + Import settings? 設定をインポートしますか? - + Are you sure you want to import settings? Importing settings will make permanent changes to your current OpenLP configuration. @@ -3640,71 +3606,77 @@ 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 を終了させます。インポートされた設定は次の起動時に適用されます。 - + Export Settings File 設定ファイルのエクスポート - + OpenLP Export Settings File (*.conf) OpenLP 設定ファイル (*.conf) - + New Data Directory Error - 新しいデータディレクトリのエラー + 新しい保存場所のエラー - + The file you selected does appear to be a valid OpenLP settings file. Section [%s] is not valid Processing has terminated and no changed have been made. - + 選択されたファイルは有効なOpenLP設定ファイルではありません。 + +セクション [%s] は有効ではありません。 + +処理は中断され、変更は適用されませんでした。 - + Copying OpenLP data to new data directory location - %s - Please wait for copy to finish - + OpenLPデータを新しい保存場所 (%s) へコピーしています。コピーが終了するまでお待ちください。 - + OpenLP Data directory copy failed %s - + OpenLP保存場所のコピーに失敗 + +%s 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 @@ -3713,7 +3685,7 @@ Database: %s データベース: %s - + OpenLP cannot load your database. Database: %s @@ -3725,62 +3697,62 @@ Database: %s OpenLP.MediaManagerItem - + No Items Selected 項目が選択されていません - + &Add to selected Service Item 選択された礼拝項目に追加(&A) - + You must select one or more items to preview. プレビューするには 1 つ以上の項目を選択する必要があります。 - + You must select one or more items to send live. ライブに送信するには 1 つ以上の項目を選択する必要があります。 - + You must select one or more items. 1 つ以上の項目を選択する必要があります。 - + 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 見つかりませんでした - + Invalid File Type 無効なファイルタイプ - + Invalid File %s. Suffix not supported %sは無効なファイルです。 @@ -3792,7 +3764,7 @@ Suffix not supported 閉じる(&C) - + Duplicate files were found on import and were ignored. インポート中に重複するファイルが見つかり、無視されました。 @@ -3800,12 +3772,12 @@ Suffix not supported OpenLP.OpenLyricsImportError - + <lyrics> tag is missing. <lyrics>タグが見つかりません。 - + <verse> tag is missing. <verse>タグが見つかりません。 @@ -3813,42 +3785,42 @@ Suffix not supported OpenLP.PluginForm - + Plugin List プラグイン一覧 - + Plugin Details プラグイン詳細 - + Status: 状況: - + Active 有効 - + Inactive 無効 - + %s (Inactive) %s (無効) - + %s (Active) %s (有効) - + %s (Disabled) %s (無効) @@ -3856,12 +3828,12 @@ Suffix not supported OpenLP.PrintServiceDialog - + Fit Page サイズをページに合わせる - + Fit Width サイズをページの横幅に合わせる @@ -3869,77 +3841,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: カスタムフッターテキスト: @@ -3947,12 +3919,12 @@ Suffix not supported OpenLP.ScreenList - + Screen スクリーン - + primary プライマリ @@ -3960,12 +3932,12 @@ Suffix not supported OpenLP.ServiceItem - + <strong>Start</strong>: %s <strong>開始</strong>: %s - + <strong>Length</strong>: %s <strong>長さ</strong>: %s @@ -3973,7 +3945,7 @@ Suffix not supported OpenLP.ServiceItemEditForm - + Reorder Service Item 礼拝項目を並べ替え @@ -3981,296 +3953,295 @@ Suffix not supported OpenLP.ServiceManager - + Move to &top 一番上に移動(&t) - + Move item to the top of the service. 選択した項目を最も上に移動する。 - + Move &up 一つ上に移動(&u) - + Move item up one position in the service. 選択した項目を1つ上に移動する。 - + Move &down 一つ下に移動(&d) - + Move item down one position in the service. 選択した項目を1つ下に移動する。 - + Move to &bottom 一番下に移動(&b) - + Move item to the end of the service. 選択した項目を最も下に移動する。 - + &Delete From Service 削除(&D) - + Delete the selected item from the service. 選択した項目を礼拝プログラムから削除する。 - + &Add New Item 新しい項目を追加(&A) - + &Add to Selected Item 選択された項目を追加(&A) - + &Edit Item 項目の編集(&E) - + &Reorder Item 項目を並べ替え(&R) - + &Notes メモ(&N) - + &Change Item Theme 項目の外観テーマを変更(&C) - + 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 すべて展開(&E) - + Expand all the service items. 全ての項目を展開する。 - + &Collapse all すべて折り畳む(&C) - + 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 開始時間(&S) - + Show &Preview プレビュー表示(&P) - + 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. ファイルの保存中にエラーが発生しました。 - - File missing from service + + Service File(s) Missing + + + + + The following file(s) in the service are missing: +%s - %s - -Continue saving? +These files will be removed if you continue to save. OpenLP.ServiceNoteForm - + Service Item Notes 礼拝項目メモ @@ -4278,7 +4249,7 @@ Continue saving? OpenLP.SettingsForm - + Configure OpenLP OpenLPの設定 @@ -4286,67 +4257,67 @@ Continue saving? 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 ショートカットの設定 @@ -4354,172 +4325,172 @@ Continue saving? 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. ビデオの表示位置。 - + 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 トラック @@ -4527,17 +4498,17 @@ Continue saving? OpenLP.SpellTextEdit - + Spelling Suggestions 綴りの推奨 - + Formatting Tags タグフォーマット - + Language: 言語: @@ -4545,627 +4516,627 @@ Continue saving? 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. - フッターに青いボックスが表示されます。 + フッターに赤いボックスが表示されます。 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 外観テーマの編集(&E) - + &Delete Theme 外観テーマの削除(&D) - + Set As &Global Default 全体の既定として設定(&G)) - + %s (default) %s (既定) - + You must select a theme to edit. 編集する外観テーマを選択してください。 - + You are unable to delete the default theme. 既定の外観テーマを削除する事はできません。 - + Theme %s is used in the %s plugin. %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 外観テーマのコピー(&C) - + &Rename Theme 外観テーマの名前を変更(&N) - + &Export Theme 外観テーマのエキスポート(&E) - + 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 外観テーマを削除します。宜しいですか? - + Validation Error 検証エラー - + A theme with this name already exists. 同名の外観テーマが既に存在します。 - + OpenLP Themes (*.theme *.otz) OpenLP 外観テーマ (*.theme *.otz) - + Copy of %s Copy of <theme name> Copy of %s - + Theme Already Exists テーマが既に存在 - + Theme %s already exists. Do you want to replace it? - + テーマ%sは既に存在します。上書きしますか? OpenLP.ThemeWizard - + Theme Wizard 外観テーマウィザード - + Welcome to the Theme Wizard 外観テーマウィザードをようこそ - + Set Up Background 背景設定 - + Set up your theme's background according to the parameters below. 以下の項目に応じて、外観テーマに使用する背景を設定してください。 - + Background type: 背景の種類: - + Solid Color 単色 - + Gradient グラデーション - + Color: 色: - + Gradient: グラデーション: - + Horizontal - + Vertical - + Circular 放射状 - + Top Left - Bottom Right 左上 - 右下 - + Bottom Left - Top Right 左下 - 右上 - + Main Area Font Details 中央表示エリアのフォント詳細 - + Define the font and display characteristics for the Display text 中央エリアの表示のための文字設定とフォントを定義してください - + Font: フォント: - + Size: 文字サイズ: - + Line Spacing: 文字間: - + &Outline: アウトライン(&O): - + &Shadow: 影(&S): - + Bold 太字 - + Italic 斜体 - + Footer Area Font Details フッターフォント詳細 - + Define the font and display characteristics for the Footer text フッター表示のための文字設定とフォントを定義してください - + Text Formatting Details テキストフォーマット詳細 - + Allows additional display formatting information to be defined 追加の表示フォーマット情報が定義される事を許可する - + Horizontal Align: 水平位置: - + Left 左揃え - + Right 右揃え - + Center 中央揃え - + Output Area Locations 出力エリアの場所 - + Allows you to change and move the main and footer areas. 中央エリアとフッターエリアの場所が変更される事を許可する。 - + &Main Area 中央エリア(&M) - + &Use default location 既定の場所を使う(&U) - + X position: X位置: - + px px - + Y position: Y位置: - + Width: 幅: - + Height: 高: - + Use default location 既定の場所を使う - + 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 フッター(&F) - + Starting color: 色1: - + Ending color: 色2: - + Background color: 背景色: - + Justify 揃える - + Layout Preview レイアウト プレビュー - + Transparent 透明 - + Preview and Save 保存しプレビュー - + Preview the theme and save it. 外観テーマを保存しプレビューします。 - + (approximately %d lines per slide) - + (スライド1枚におよそ%d行) - + Background Image Empty - + 背景画像が存在しません - + You have not selected a background image. Please select one before continuing. - + 背景の画像が選択されていません。続行する前に選択してください。 - + Select Image - + 画像の選択 - + Theme Name Missing - + 外観テーマ名が不明です - + There is no name for this theme. Please enter one. - + 外観テーマ名がありません。入力してください。 - + Theme Name Invalid - + 無効な外観テーマ名 - + Invalid theme name. Please enter one. - + 無効な外観テーマ名です。入力してください。 OpenLP.ThemesTab - + Global Theme 全体外観テーマ - + Theme Level 外観テーマレベル - + S&ong Level 賛美レベル(&O) - + 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 礼拝プログラムレベル(&S) - + 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 全体レベル(&G) - + Use the global theme, overriding any themes associated with either the service or the songs. 全体外観テーマを用い、すべての礼拝プログラムや賛美に関連付けられた外観テーマを上書きします。 - + Themes 外観テーマ @@ -5173,315 +5144,315 @@ Continue saving? OpenLP.Ui - + Error エラー - + About ソフトウェア情報 - + &Add 追加(&A) - + Advanced 詳細設定 - + All Files 全てのファイル - + Bottom 下部 - + Browse... 参照... - + Cancel キャンセル - + CCLI number: CCLI番号: - + Create a new service. 新規礼拝プログラムを作成します。 - + &Delete 削除(&D) - + &Edit 編集(&E) - + 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: 垂直整列(&V): - + 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. The openlp.org 1.xの取込機能が、Pythonの拡張機能がないためオフになっています。取込機能をお使いになられる場合、python-sqlite拡張機能をインストール必要があります。 - + 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ファイルを最低一つ選択する必要があります。 @@ -5492,304 +5463,304 @@ Continue saving? 聖書インポートウィザードへようこそ - + 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 スライドに1節 - + Verse Per Line 1行に1節 - + 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. 1枚のスライドに納まらないときのみ、スライドが分割されます。 - + 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 オプションの分割(&S) - + 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フォルダを選択してください。 - + Importing Songs - + 賛美のインポート 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 @@ -5798,50 +5769,50 @@ Continue saving? 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. 選択したプレゼンテーションを礼拝プログラムに追加します。 @@ -5849,52 +5820,52 @@ Continue saving? 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 は存在しません。 @@ -5902,17 +5873,17 @@ Continue saving? PresentationPlugin.PresentationTab - + Available Controllers 使用可能なコントローラ - + %s (unavailable) %s (利用不可) - + Allow presentation application to be overridden プレゼンテーションアプリケーションの上書きを可能にする @@ -5920,24 +5891,24 @@ Continue saving? 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 />遠隔操作プラグインは、ウェブブラウザや遠隔操作APIを使用して、他のコンピュータ上のOpenLPを操作する機能を提供します。 - + Remote name singular 遠隔操作 - + Remotes name plural 遠隔操作 - + Remote container title 遠隔操作 @@ -5946,236 +5917,246 @@ Continue saving? 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 &amp; Go to Service 追加し礼拝プログラムへ移動 + + + Service + 礼拝プログラム + + + + Slides + スライド + 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 App - + Scan the QR code or click <a href="https://play.google.com/store/apps/details?id=org.openlp.android">download</a> to install the Android app from Google Play. - + QRコードをスキャンするか、<a href="https://play.google.com/store/apps/details?id=org.openlp.android">ダウンロード</a>をクリックしてGoogle PlayからAndroidアプリをインストールしてください。 SongUsagePlugin - + &Song Usage Tracking 賛美の利用記録(&S) - + &Delete Tracking Data 利用記録を削除(&D) - + Delete song usage data up to a specified date. 削除する利用記録の対象となるまでの日付を指定してください。 - + &Extract Tracking Data 利用記録の抽出(&E) - + 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>SongUsage Plugin</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 印刷済み @@ -6183,32 +6164,32 @@ Continue saving? 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. 利用記録を削除する日を選択してください。この日以前の記録は全て削除されます。 @@ -6216,42 +6197,42 @@ Continue saving? 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. @@ -6260,12 +6241,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. 賛美利用記録レポートの出力先が無効です。コンピューター上に存在するフォルダを選択して下さい。 @@ -6273,216 +6254,216 @@ has been successfully created. SongsPlugin - + &Song 賛美(&S) - + 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 賛美のインデックスを再作成(&R) - + 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. 文字コード設定は、文字が正常に表示されるのに必要な設定です。通常、既定設定で問題ありません。 - + 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. 選択した賛美を礼拝プログラムに追加します。 - + Reindexing songs - + 賛美のインデックスを再作成 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? 表示名が設定されていません。名と姓を合わせますか? @@ -6490,7 +6471,7 @@ The encoding is responsible for the correct character representation. SongsPlugin.CCLIFileImport - + The file does not have a valid extension. ファイルの拡張子が無効です。 @@ -6498,12 +6479,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] @@ -6514,12 +6495,12 @@ The encoding is responsible for the correct character representation. SongsPlugin.EditBibleForm - + Meta Data メタデータ - + Custom Book Names 任意の書名 @@ -6527,202 +6508,202 @@ The encoding is responsible for the correct character representation. SongsPlugin.EditSongForm - + Song Editor ソングエディタ - + &Title: タイトル(&T): - + Alt&ernate title: サブタイトル(&e): - + &Lyrics: 賛美詞(&L): - + &Verse order: 節順(&V): - + Ed&it All 全て編集(&E) - + Title && Lyrics タイトル && 賛美詞 - + &Add to Song 賛美に追加(&A) - + &Remove 削除(&R) - + &Manage Authors, Topics, Song Books アーティスト、題目、アルバムを管理(&M) - + A&dd to Song 賛美に追加(&A) - + R&emove 削除(&e) - + Book: 書名: - + Number: ナンバー: - + Authors, Topics && Song Book アーティスト、題目 && アルバム - + New &Theme 新しい外観テーマ(&N) - + 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. アーティストを入力する必要があります。 - + Linked Audio 関連付けられた音声 - + Add &File(s) ファイルを追加(&F) - + Add &Media メディアを追加(&M) - + Remove &All すべて削除(&A) - + 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です。 @@ -6730,22 +6711,22 @@ The encoding is responsible for the correct character representation. SongsPlugin.EditVerseForm - + Edit Verse バース編集 - + &Verse type: バースのタイプ(&): - + &Insert 挿入(&I) - + Split a slide into two by inserting a verse splitter. スライド分割機能を用い、スライドを分割してください。 @@ -6753,82 +6734,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> worship song形式としてエキスポートできます。 @@ -6836,173 +6817,173 @@ 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 v1.x データベース - + Words Of Worship Song Files Words Of Worship Song ファイル - + Songs Of Fellowship Song Files Songs Of Fellowship Song ファイル - + SongBeamer Files SongBeamerファイル - + SongShow Plus Song Files SongShow Plus Songファイル - + Foilpresenter Song Files Foilpresenter Song ファイル - + Copy コピー - + Save to File ファイルに保存 - + The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. OpenOfficeまたはLibreOfficeに接続できないため、Songs of Fellowshipのインポート機能は無効になっています。 - + The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. OpenOfficeまたはLibreOfficeに接続できないため、汎用ドキュメント/プレゼンテーションのインポート機能は無効になっています。 - + OpenLyrics or OpenLP 2.0 Exported Song OpenLyrics OpenLP 2.0からエクスポートされたデータ - + OpenLyrics Files OpenLyricsファイル - + CCLI SongSelect Files CCLI SongSelectファイル - + EasySlides XML File Easy Slides XMLファイル - + EasyWorship Song Database EasyWorship Songデータベース - + DreamBeam Song Files DreamBeam Song ファイル - + 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>. <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">User Manual</a>に従ってZionWorxデータベースファイルをCSVへ変換してください。 - + SundayPlus Song Files SundayPlus Songファイル - + This importer has been disabled. このインポートは使用できません。 - + MediaShout Database MediaShoutデータベース - + The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. MediaShoutのインポートはWindowsのみで利用可能です。この機能を使用するためには、Pythonの"pyodbc"モジュールを インストールしてください。 - + SongPro Text Files SongProテキストファイル - + SongPro (Export File) SongPro (エキスポートファイル) - + In SongPro, export your songs using the File -> Export menu SongProにおいて、メニューのFile-&gt;Exportからエクスポートしてください。 @@ -7010,12 +6991,12 @@ The encoding is responsible for the correct character representation. 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. 音声ファイルを下の一覧から1つ以上選択し、OKをクリックしてインポートしてください。 @@ -7033,7 +7014,7 @@ The encoding is responsible for the correct character representation. 賛美詞 - + CCLI License: CCLI ライセンス: @@ -7043,7 +7024,7 @@ The encoding is responsible for the correct character representation. 賛美全体 - + Are you sure you want to delete the %n selected song(s)? 選択された%n件の賛美を削除します。宜しいですか? @@ -7055,7 +7036,7 @@ The encoding is responsible for the correct character representation. アーティスト、トピックとアルバムの一覧を保守します。 - + copy For song cloning コピー @@ -7089,7 +7070,7 @@ The encoding is responsible for the correct character representation. SongsPlugin.MediaShoutImport - + Unable to open the MediaShout database. MediaShoutデータベースを開けません。 @@ -7097,7 +7078,7 @@ The encoding is responsible for the correct character representation. SongsPlugin.OpenLP1SongImport - + Not a valid openlp.org 1.x song database. 有効なopenlp.org v1.xデータベースではありません。 @@ -7105,7 +7086,7 @@ The encoding is responsible for the correct character representation. SongsPlugin.OpenLPSongImport - + Not a valid OpenLP 2.0 song database. 有効なOpenLP 2.0データベースではありません。 @@ -7113,7 +7094,7 @@ The encoding is responsible for the correct character representation. SongsPlugin.OpenLyricsExport - + Exporting "%s"... 「%s」をエキスポートしています... @@ -7121,55 +7102,55 @@ The encoding is responsible for the correct character representation. SongsPlugin.PowerSongImport - + No songs to import. インポートする賛美が見つかりません。 - + Verses not found. Missing "PART" header. 歌詞が見つかりません。"PART"ヘッダが不足しています。 - + No %s files found. - + %sファイルが見つかりません。 - + Invalid %s file. Unexpected byte value. - + 無効な%sファイルです。予期せぬバイトがみつかりました。 - + Invalid %s file. Missing "TITLE" header. - + 無効な%sファイルです。"TITLE"ヘッダが見つかりません。 - + Invalid %s file. Missing "COPYRIGHTLINE" header. - + 無効な%sファイルです。"COPYRIGHTLINE"ヘッダが見つかりません。 SongsPlugin.SongBookForm - + Song Book Maintenance アルバムの保守 - + &Name: 名前(&N): - + &Publisher: 発行元(&P): - + You need to type in a name for the book. アルバム名を入力してください。 @@ -7177,12 +7158,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>インポータを使用してください。 @@ -7190,27 +7171,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 ファイルが見つかりません @@ -7218,107 +7199,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で賛美を作りますか? @@ -7326,27 +7307,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 不足している賛美を礼拝ファイルからインポートする @@ -7354,17 +7335,17 @@ The encoding is responsible for the correct character representation. SongsPlugin.TopicsForm - + Topic Maintenance 題目保守 - + Topic name: 題目名: - + You need to type in a topic name. 題目名を入力してください。 @@ -7372,37 +7353,37 @@ The encoding is responsible for the correct character representation. SongsPlugin.VerseType - + Verse バース - + Chorus コーラス - + Bridge ブリッジ - + Pre-Chorus 間奏 - + Intro 序奏 - + Ending エンディング - + Other その他 @@ -7410,29 +7391,29 @@ The encoding is responsible for the correct character representation. SongsPlugin.ZionWorxImport - + Error reading CSV file. CSVファイルの読み込みに失敗しました。 - + File not valid ZionWorx CSV format. ファイルは有効なZionWorx CSV形式ではありません。 - + Line %d: %s - + %d行: %s - + Decoding error: %s - + デコードエラー: %s - + Record %d - + レコード %d diff --git a/resources/i18n/ko.ts b/resources/i18n/ko.ts index f34c95a5a..cf7b443fc 100644 --- a/resources/i18n/ko.ts +++ b/resources/i18n/ko.ts @@ -3,35 +3,35 @@ AlertsPlugin - + &Alert 경고(&A) - + 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. @@ -39,68 +39,68 @@ AlertsPlugin.AlertForm - + Alert Message 경고 메세지 - + Alert &text: 경고 문구(&T) - + &New 새로 만들기(&N) - + &Save 저장(&S) - + Displ&ay 출력(&A) - + Display && Cl&ose 출력 && 닫기(&O) - + 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? @@ -117,32 +117,32 @@ Do you want to continue anyway? AlertsPlugin.AlertsTab - + Font 글꼴 - + Font name: 글꼴: - + Font color: 글꼴색: - + Background color: 배경색: - + Font size: 글꼴 크기: - + Alert timeout: 경고 타임아웃: @@ -150,510 +150,510 @@ Do you want to continue anyway? BiblesPlugin - + &Bible 성경(&B) - + 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. - + &Upgrade older Bibles - + Upgrade the Bible databases to the latest 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 요한1서 - + 2 John 요한2서 - + 3 John 요한3서 - + 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. @@ -662,44 +662,44 @@ 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. - + 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". - + 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. @@ -707,38 +707,38 @@ be followed by one or more non-numeric characters. BiblesPlugin.BibleManager - + Scripture Reference Error 성경 참조 오류 - + Web Bible cannot be used - + 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. - + 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 @@ -754,128 +754,128 @@ 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. - + 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 Korean - + Default Bible Language - + Book name language in search field, search results and on display: - + Bible Language - + Application Language @@ -883,42 +883,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. @@ -926,7 +926,7 @@ search results and on display: BiblesPlugin.BookNameForm - + You need to select a book. @@ -934,18 +934,18 @@ search results and on display: BiblesPlugin.CSVBible - + Importing books... %s - + Importing verses from %s... Importing verses from <book name>... - + Importing verses... done. @@ -953,68 +953,68 @@ 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 Korean - + 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. @@ -1022,38 +1022,38 @@ It is not possible to customize the Book Names. BiblesPlugin.HTTPBible - + Registering Bible and loading books... - + Registering Language... - + Importing %s... Importing <book name>... - + Download Error - + There was a problem downloading your verse selection. Please check your Internet connection, and if this error continues to occur please consider reporting a bug. - + Parse Error - + There was a problem extracting your verse selection. If this error continues to occur please consider reporting a bug. @@ -1230,17 +1230,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. - + Language: @@ -1248,7 +1248,7 @@ demand and thus an internet connection is required. BiblesPlugin.LanguageForm - + You need to choose a language. @@ -1256,92 +1256,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. - + Search Scripture Reference... - + Search Text... - + Are you sure you want to completely delete "%s" Bible from OpenLP? You will need to re-import this Bible to use it again. @@ -1351,7 +1351,7 @@ You will need to re-import this Bible to use it again. BiblesPlugin.OpenSongImport - + Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. @@ -1359,7 +1359,7 @@ You will need to re-import this Bible to use it again. BiblesPlugin.Opensong - + Importing %s %s... Importing <book name> <chapter>... @@ -1368,12 +1368,12 @@ You will need to re-import this Bible to use it again. BiblesPlugin.OsisImport - + Detecting encoding (this may take a few minutes)... - + Importing %s %s... Importing <book name> <chapter>... @@ -1382,143 +1382,143 @@ You will need to re-import this Bible to use it again. 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. - + 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>. - + 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 - + Upgrading Bible %s of %s: "%s" Upgrading ... - + Download Error - + To upgrade your Web Bibles an Internet connection is required. - + Upgrading Bible %s of %s: "%s" Upgrading %s ... - + Upgrading Bible %s of %s: "%s" Complete - + , %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 - + Upgrade failed. - + You need to specify a backup directory for your Bibles. - + Starting upgrade... - + There are no Bibles that need to be upgraded. @@ -1526,65 +1526,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. - + 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. @@ -1592,12 +1592,12 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I CustomPlugin.CustomTab - + Custom Display - + Display footer @@ -1605,62 +1605,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 @@ -1668,7 +1668,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I CustomPlugin.EditVerseForm - + Edit Slide @@ -1676,7 +1676,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)? @@ -1686,60 +1686,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 - + 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. @@ -1747,7 +1747,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I ImagePlugin.ExceptionDialog - + Select Attachment @@ -1755,43 +1755,43 @@ 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 - + The following image(s) no longer exist: %s Do you want to add the other images anyway? - + There was a problem replacing your background, the image file "%s" no longer exists. - + There was no display item to amend. @@ -1799,17 +1799,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. @@ -1817,60 +1817,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. - - - Media - name singular - - 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. @@ -1878,57 +1878,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. - + Missing Media File - + The file %s no longer exists. - + Videos (%s);;Audio (%s);;%s (*) - + There was no display item to amend. - + Unsupported File - + Automatic - + Use Player: @@ -1936,22 +1936,22 @@ Do you want to add the other images anyway? MediaPlugin.MediaTab - + Available Media Players - + %s (unavailable) - + Player Order - + Allow media player to be overridden @@ -1959,17 +1959,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? @@ -1979,32 +1979,54 @@ Should OpenLP upgrade now? OpenLP.AboutForm - + Credits - + License - + 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 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. - + + Copyright © 2004-2012 %s +Portions copyright © 2004-2012 %s + + + + + 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. + +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 volunteering by using the button below. + + + + + Volunteer + + + + Project Lead %s @@ -2023,12 +2045,20 @@ Packagers Translators Afrikaans (af) %s + Czeck (cs) + %s + Danish (da) + %s German (de) %s + Greek (el) + %s English, United Kingdom (en_GB) %s English, South Africa (en_ZA) %s + Spanish (es) + %s Estonian (et) %s French (fr) @@ -2045,13 +2075,15 @@ Translators %s Russian (ru) %s + Swedish (sv) + %s Documentation %s Built With Python: http://www.python.org/ - Qt4: http://qt.nokia.com/ + Qt4: http://qt.digia.com/ PyQt4: http://www.riverbankcomputing.co.uk/software/pyqt/intro Oxygen Icons: http://oxygen-icons.org/ @@ -2068,205 +2100,183 @@ Final Credit He has set us free. - - - Copyright © 2004-2012 %s -Portions copyright © 2004-2012 %s - - - - - 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. - -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 volunteering by using the button below. - - - - - Volunteer - - 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. - + 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 @@ -2276,94 +2286,94 @@ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for - + 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. - + 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 - + OpenLP data directory was not found %s @@ -2376,7 +2386,7 @@ Click "Yes" to reset the data directory to the default location. - + Are you sure you want to change the location of the OpenLP data directory to: %s @@ -2385,7 +2395,7 @@ The data directory will be changed when OpenLP is closed. - + WARNING: The location you have selected @@ -2399,38 +2409,38 @@ appears to contain OpenLP data files. Do you wish to replace these files with t 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. - + Send E-Mail - + Save to File - + Please enter a description of what you were doing to cause this error (Minimum 20 characters) - + Attach File - + Description characters to enter : %s @@ -2438,23 +2448,23 @@ appears to contain OpenLP data files. Do you wish to replace these files with t OpenLP.ExceptionForm - + Platform: %s - + Save Crash Report - + Text files (*.txt *.log *.text) - + **OpenLP Bug Report** Version: %s @@ -2472,7 +2482,7 @@ Version: %s - + *OpenLP Bug Report* Version: %s @@ -2494,17 +2504,17 @@ Version: %s OpenLP.FileRenameForm - + File Rename - + New File Name: - + File Copy @@ -2512,17 +2522,17 @@ Version: %s OpenLP.FirstTimeLanguageForm - + Select Translation - + Choose the translation you'd like to use in OpenLP. - + Translation: @@ -2530,199 +2540,199 @@ 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... - + Download complete. Click the finish button to start 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. - + 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. - + Setting Up And Downloading - + Please wait while OpenLP is set up and your data is downloaded. - + Setting Up - + Click the finish button to start OpenLP. - + Download complete. Click the finish button to return to OpenLP. - + Click the finish button to return to 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. - + To cancel the First Time Wizard completely (and not start OpenLP), click the Cancel button now. @@ -2732,37 +2742,37 @@ 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 HTML - + End HTML @@ -2770,32 +2780,32 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can OpenLP.FormattingTagForm - + Update Error - + Tag "n" already defined. - + New Tag - + <HTML here> - + </and here> - + Tag %s already defined. @@ -2803,82 +2813,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 @@ -2886,122 +2896,122 @@ 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 - + SongSelect username: - + SongSelect password: - + X - + Y - + Height - + Width - + Check for updates to OpenLP - + Unblank display when adding new live item - + Timed slide interval: - + Background Audio - + Start background audio paused @@ -3011,12 +3021,12 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can - + Override display position: - + Repeat track list @@ -3044,12 +3054,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. @@ -3057,7 +3067,7 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can OpenLP.MainDisplay - + OpenLP Display @@ -3065,438 +3075,438 @@ 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 새로 만들기(&N) - + &Open - + Open an existing service. - + &Save 저장(&S) - + Save the current service to disk. - + Save &As... - + Save Service As - + Save the current service under a new name. - + E&xit - + Quit OpenLP - + &Theme - + &Configure 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 - + &Online Help - + &Web Site - + Use the system language, if available. - + Set the interface language to %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/. - + OpenLP Version Updated - + OpenLP Main Display Blanked - + The Main Display has been blanked out - + Default Theme: %s - + English Please add the name of your language here Korean - + Configure &Shortcuts... - + Close OpenLP - + Are you sure you want to close 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. - + Clear List Clear List of recent files - + Clear the list of recent files. - + Configure &Formatting Tags... - + Export OpenLP settings to a specified *.config file - + Settings - + Import OpenLP settings from a specified *.config file previously exported on this or another machine - + Import settings? - + Are you sure you want to import settings? Importing settings will make permanent changes to your current OpenLP configuration. @@ -3505,42 +3515,42 @@ Importing incorrect settings may cause erratic behaviour or OpenLP to terminate - + Open File - + OpenLP Export Settings Files (*.conf) - + Import settings - + 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 - + The file you selected does appear to be a valid OpenLP settings file. Section [%s] is not valid @@ -3549,12 +3559,12 @@ Processing has terminated and no changed have been made. - + Copying OpenLP data to new data directory location - %s - Please wait for copy to finish - + OpenLP Data directory copy failed %s @@ -3564,19 +3574,19 @@ Processing has terminated and no changed have been made. 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 - + OpenLP cannot load your database. Database: %s @@ -3586,62 +3596,62 @@ 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. - + You must select one or more items to add. - + No Search Results - + Invalid File Type - + Invalid File %s. Suffix not supported @@ -3652,7 +3662,7 @@ Suffix not supported - + Duplicate files were found on import and were ignored. @@ -3660,12 +3670,12 @@ Suffix not supported OpenLP.OpenLyricsImportError - + <lyrics> tag is missing. - + <verse> tag is missing. @@ -3673,42 +3683,42 @@ Suffix not supported OpenLP.PluginForm - + Plugin List - + Plugin Details - + Status: - + Active - + Inactive - + %s (Inactive) - + %s (Active) - + %s (Disabled) @@ -3716,12 +3726,12 @@ Suffix not supported OpenLP.PrintServiceDialog - + Fit Page - + Fit Width @@ -3729,77 +3739,77 @@ Suffix not supported OpenLP.PrintServiceForm - + Options - + Copy - + Copy as 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: @@ -3807,12 +3817,12 @@ Suffix not supported OpenLP.ScreenList - + Screen - + primary @@ -3820,12 +3830,12 @@ Suffix not supported OpenLP.ServiceItem - + <strong>Start</strong>: %s - + <strong>Length</strong>: %s @@ -3833,7 +3843,7 @@ Suffix not supported OpenLP.ServiceItemEditForm - + Reorder Service Item @@ -3841,295 +3851,294 @@ Suffix not supported OpenLP.ServiceManager - + Move to &top - + Move item to the top of the service. - + Move &up - + Move item up one position in the service. - + Move &down - + Move item down one position in the service. - + Move to &bottom - + Move item to the end of the service. - + &Delete From Service - + Delete the selected item from the service. - + &Add New Item - + &Add to Selected Item - + &Edit Item - + &Reorder Item - + &Notes - + &Change Item Theme - + OpenLP Service Files (*.osz) - + File is not a valid service. The content encoding is not UTF-8. - + File is not a valid service. - + Missing Display Handler - + Your item cannot be displayed as there is no handler to display it - + Your item cannot be displayed as the plugin required to display it is missing or inactive - + &Expand all - + Expand all the service items. - + &Collapse all - + Collapse all the service items. - + Open File - + Moves the selection down the window. - + Move up - + Moves the selection up the window. - + Go Live - + Send the selected item to Live. - + &Start Time - + Show &Preview - + 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. - - Service File Missing - - - - + Slide theme - + Notes - + Edit - + Service copy only - + Error Saving File - + There was an error saving your file. - - File missing from service + + Service File(s) Missing + + + + + The following file(s) in the service are missing: +%s - %s - -Continue saving? +These files will be removed if you continue to save. OpenLP.ServiceNoteForm - + Service Item Notes @@ -4137,7 +4146,7 @@ Continue saving? OpenLP.SettingsForm - + Configure OpenLP @@ -4145,67 +4154,67 @@ Continue saving? OpenLP.ShortcutListDialog - + Action - + Shortcut - + Duplicate Shortcut - + The shortcut "%s" is already assigned to another action, please use a different shortcut. - + 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 @@ -4213,172 +4222,172 @@ Continue saving? 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. - + 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 @@ -4386,17 +4395,17 @@ Continue saving? OpenLP.SpellTextEdit - + Spelling Suggestions - + Formatting Tags - + Language: @@ -4404,67 +4413,67 @@ Continue saving? 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. @@ -4472,198 +4481,198 @@ Continue saving? 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) - + You must select a theme to edit. - + You are unable to delete the default theme. - + Theme %s is used in the %s plugin. - + You have not selected a theme. - + Save Theme - (%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? - + You must select a theme to delete. - + Delete Confirmation - + Delete %s theme? - + Validation Error - + A theme with this name already exists. - + OpenLP Themes (*.theme *.otz) - + Copy of %s Copy of <theme name> - + Theme Already Exists - + Theme %s already exists. Do you want to replace it? @@ -4671,312 +4680,312 @@ Continue saving? OpenLP.ThemeWizard - + Theme Wizard - + Welcome to the Theme Wizard - + Set Up Background - + Set up your theme's background according to the parameters below. - + Background type: - + Solid Color - + Gradient - + Color: - + Gradient: - + Horizontal - + Vertical - + Circular - + Top Left - Bottom Right - + Bottom Left - Top Right - + Main Area Font Details - + Define the font and display characteristics for the Display text - + Font: - + Size: - + Line Spacing: - + &Outline: - + &Shadow: - + Bold - + Italic - + Footer Area Font Details - + Define the font and display characteristics for the Footer text - + Text Formatting Details - + Allows additional display formatting information to be defined - + Horizontal Align: - + Left - + Right - + Center - + Output Area Locations - + Allows you to change and move the main and footer areas. - + &Main Area - + &Use default location - + X position: - + px - + Y position: - + Width: - + Height: - + Use default location - + Theme name: - + Edit Theme - %s - + This wizard will help you to create and edit your themes. Click the next button below to start the process by setting up your background. - + Transitions: - + &Footer Area - + Starting color: - + Ending color: - + Background color: 배경색: - + Justify - + Layout Preview - + Transparent - + Preview and Save - + Preview the theme and save it. - + (approximately %d lines per slide) - + Background Image Empty - + You have not selected a background image. Please select one before continuing. - + Select Image - + Theme Name Missing - + There is no name for this theme. Please enter one. - + Theme Name Invalid - + Invalid theme name. Please enter one. @@ -4984,47 +4993,47 @@ Continue saving? 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 @@ -5032,315 +5041,315 @@ Continue saving? OpenLP.Ui - + Error - + About - + &Add - + Advanced - + All Files - + Bottom - + Browse... - + Cancel - + CCLI number: - + Create a new service. - + &Delete - + &Edit - + Empty Field - + Export - + pt Abbreviated font pointsize unit - + 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 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 - + 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"... - + 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. - + Open %s File - + %p% - + Ready. - + Starting import... - + You need to specify at least one %s file to import from. A file type e.g. OpenSong @@ -5351,278 +5360,278 @@ Continue saving? - + 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? - + Settings - + Tools - + Unsupported File - + Verse Per Slide - + Verse Per Line - + View - + Title and/or verses not found - + XML syntax error - + 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 - + 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 - + Importing Songs @@ -5630,25 +5639,25 @@ Continue saving? 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 @@ -5657,50 +5666,50 @@ Continue saving? 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 - + 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. @@ -5708,52 +5717,52 @@ Continue saving? PresentationPlugin.MediaItem - + Select Presentation(s) - + Automatic - + Present using: - + File Exists - + A presentation with that filename already exists. - + This type of presentation is not supported. - + Presentations (%s) - + Missing Presentation - + The presentation %s is incomplete, please reload. - + The presentation %s no longer exists. @@ -5761,17 +5770,17 @@ Continue saving? PresentationPlugin.PresentationTab - + Available Controllers - + %s (unavailable) - + Allow presentation application to be overridden @@ -5779,24 +5788,24 @@ Continue saving? 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 - + Remotes name plural - + Remote container title @@ -5805,150 +5814,160 @@ Continue saving? RemotePlugin.Mobile - + OpenLP 2.0 Remote - + OpenLP 2.0 Stage View - + 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 &amp; Go to Service + + + Service + + + + + Slides + + RemotePlugin.RemoteTab - + Serve on IP address: - + Port number: - + Server Settings - + Remote URL: - + Stage view URL: - + Display stage time in 12h format - + Android App - + Scan the QR code or click <a href="https://play.google.com/store/apps/details?id=org.openlp.android">download</a> to install the Android app from Google Play. @@ -5956,85 +5975,85 @@ Continue saving? 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. - + SongUsage name singular - + SongUsage name plural - + SongUsage container title - + Song Usage - + Song usage tracking is active. - + Song usage tracking is inactive. - + display - + printed @@ -6042,32 +6061,32 @@ Continue saving? 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. @@ -6075,54 +6094,54 @@ Continue saving? SongUsagePlugin.SongUsageDetailForm - + Song Usage Extraction - + Select Date Range - + to - + Report Location - + Output File Location - + usage_detail_%s_%s.txt - + Report Creation - + Report %s 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. @@ -6130,178 +6149,178 @@ 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. - + &Re-index Songs - + Re-index the songs database to improve searching and ordering. - + Reindexing songs... - + Arabic (CP-1256) - + Baltic (CP-1257) - + Central European (CP-1250) - + Cyrillic (CP-1251) - + Greek (CP-1253) - + Hebrew (CP-1255) - + Japanese (CP-932) - + Korean (CP-949) - + Simplified Chinese (CP-936) - + Thai (CP-874) - + Traditional Chinese (CP-950) - + Turkish (CP-1254) - + Vietnam (CP-1258) - + Western European (CP-1252) - + Character Encoding - + 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 - + 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. - + Reindexing songs @@ -6309,37 +6328,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? @@ -6347,7 +6366,7 @@ The encoding is responsible for the correct character representation. SongsPlugin.CCLIFileImport - + The file does not have a valid extension. @@ -6355,12 +6374,12 @@ The encoding is responsible for the correct character representation. SongsPlugin.EasyWorshipSongImport - + Administered by %s - + [above are Song Tags with notes imported from EasyWorship] @@ -6370,12 +6389,12 @@ The encoding is responsible for the correct character representation. SongsPlugin.EditBibleForm - + Meta Data - + Custom Book Names @@ -6383,202 +6402,202 @@ 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. - + Add Book - + This song book does not exist, do you want to add it? - + You need to have an author for this song. - + Linked Audio - + Add &File(s) - + Add &Media - + Remove &All - + Open File(s) - + <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. @@ -6586,22 +6605,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. @@ -6609,82 +6628,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. @@ -6692,172 +6711,172 @@ 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.org v1.x Databases - + Words Of Worship Song Files - + Songs Of Fellowship Song Files - + SongBeamer Files - + SongShow Plus Song Files - + Foilpresenter Song Files - + Copy - + Save to File - + The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. - + The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. - + OpenLyrics or OpenLP 2.0 Exported Song - + OpenLyrics Files - + 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 - + This importer has been disabled. - + MediaShout Database - + The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. - + SongPro Text Files - + SongPro (Export File) - + In SongPro, export your songs using the File -> Export menu @@ -6865,12 +6884,12 @@ The encoding is responsible for the correct character representation. 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. @@ -6888,7 +6907,7 @@ The encoding is responsible for the correct character representation. - + CCLI License: @@ -6898,7 +6917,7 @@ The encoding is responsible for the correct character representation. - + Are you sure you want to delete the %n selected song(s)? @@ -6910,7 +6929,7 @@ The encoding is responsible for the correct character representation. - + copy For song cloning @@ -6944,7 +6963,7 @@ The encoding is responsible for the correct character representation. SongsPlugin.MediaShoutImport - + Unable to open the MediaShout database. @@ -6952,7 +6971,7 @@ The encoding is responsible for the correct character representation. SongsPlugin.OpenLP1SongImport - + Not a valid openlp.org 1.x song database. @@ -6960,7 +6979,7 @@ The encoding is responsible for the correct character representation. SongsPlugin.OpenLPSongImport - + Not a valid OpenLP 2.0 song database. @@ -6968,7 +6987,7 @@ The encoding is responsible for the correct character representation. SongsPlugin.OpenLyricsExport - + Exporting "%s"... @@ -6976,32 +6995,32 @@ The encoding is responsible for the correct character representation. SongsPlugin.PowerSongImport - + No songs to import. - + Verses not found. Missing "PART" header. - + No %s files found. - + Invalid %s file. Unexpected byte value. - + Invalid %s file. Missing "TITLE" header. - + Invalid %s file. Missing "COPYRIGHTLINE" header. @@ -7009,22 +7028,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. @@ -7032,12 +7051,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. @@ -7045,27 +7064,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 - + Unable to open file - + File not found @@ -7073,107 +7092,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? - + 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? @@ -7181,27 +7200,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 @@ -7209,17 +7228,17 @@ The encoding is responsible for the correct character representation. SongsPlugin.TopicsForm - + Topic Maintenance - + Topic name: - + You need to type in a topic name. @@ -7227,37 +7246,37 @@ The encoding is responsible for the correct character representation. SongsPlugin.VerseType - + Verse - + Chorus - + Bridge - + Pre-Chorus - + Intro - + Ending - + Other @@ -7265,27 +7284,27 @@ The encoding is responsible for the correct character representation. SongsPlugin.ZionWorxImport - + Error reading CSV file. - + File not valid ZionWorx CSV format. - + Line %d: %s - + Decoding error: %s - + Record %d diff --git a/resources/i18n/ko_KR.ts b/resources/i18n/ko_KR.ts new file mode 100644 index 000000000..871935a0c --- /dev/null +++ b/resources/i18n/ko_KR.ts @@ -0,0 +1,7311 @@ + + + + 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. + + + + + 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? + + + + + AlertsPlugin.AlertsManager + + + Alert message created and displayed. + + + + + AlertsPlugin.AlertsTab + + + Font + + + + + Font name: + + + + + Font color: + + + + + Background color: + + + + + Font size: + + + + + Alert timeout: + + + + + 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. + + + + + &Upgrade older Bibles + + + + + Upgrade the Bible databases to the latest 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. + + + + + 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. + + + + + 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". + + + + + 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. + + + + + BiblesPlugin.BibleManager + + + Scripture Reference Error + + + + + Web Bible cannot be used + + + + + 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. + + + + + 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 +Book Chapter%(range)sChapter +Book Chapter%(verse)sVerse%(range)sVerse +Book Chapter%(verse)sVerse%(range)sVerse%(list)sVerse%(range)sVerse +Book Chapter%(verse)sVerse%(range)sVerse%(list)sChapter%(verse)sVerse%(range)sVerse +Book Chapter%(verse)sVerse%(range)sChapter%(verse)sVerse + Please pay attention to the appended "s" of the wildcards and refrain from translating the words inside the names in the brackets. + + + + + 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. + + + + + 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 + + + + + Default Bible Language + + + + + Book name language in search field, +search results and on display: + + + + + Bible Language + + + + + Application Language + + + + + 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. + + + + + BiblesPlugin.BookNameForm + + + You need to select a book. + + + + + BiblesPlugin.CSVBible + + + Importing books... %s + + + + + Importing verses from %s... + Importing verses from <book name>... + + + + + Importing verses... done. + + + + + 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. + + + + + 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. + + + + + BiblesPlugin.HTTPBible + + + Registering Bible and loading books... + + + + + Registering Language... + + + + + Importing %s... + Importing <book name>... + + + + + Download Error + + + + + There was a problem downloading your verse selection. Please check your Internet connection, and if this error continues to occur please consider reporting a bug. + + + + + Parse Error + + + + + There was a problem extracting your verse selection. If this error continues to occur please consider reporting a bug. + + + + + 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 + + + + + Location: + + + + + Crosswalk + + + + + BibleGateway + + + + + Bible: + + + + + Download Options + + + + + Server: + + + + + Username: + + + + + Password: + + + + + Proxy Server (Optional) + + + + + 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 + + + + + Bibleserver + + + + + Permissions: + + + + + Bible file: + + + + + Books file: + + + + + Verses file: + + + + + openlp.org 1.x Bible Files + + + + + Registering Bible... + + + + + Registered Bible. Please note, that verses will be downloaded on +demand and thus an internet connection is required. + + + + + 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. + + + + + Language: + + + + + BiblesPlugin.LanguageForm + + + You need to choose a language. + + + + + 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. + + + + + Search Scripture Reference... + + + + + Search Text... + + + + + Are you sure you want to completely delete "%s" Bible from OpenLP? + +You will need to re-import this Bible to use it again. + + + + + BiblesPlugin.OpenSongImport + + + Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. + + + + + BiblesPlugin.Opensong + + + Importing %s %s... + Importing <book name> <chapter>... + + + + + BiblesPlugin.OsisImport + + + Detecting encoding (this may take a few minutes)... + + + + + Importing %s %s... + Importing <book name> <chapter>... + + + + + 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. + + + + + 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>. + + + + + 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 + + + + + Upgrading Bible %s of %s: "%s" +Upgrading ... + + + + + Download Error + + + + + To upgrade your Web Bibles an Internet connection is required. + + + + + Upgrading Bible %s of %s: "%s" +Upgrading %s ... + + + + + Upgrading Bible %s of %s: "%s" +Complete + + + + + , %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 + + + + + Upgrade failed. + + + + + You need to specify a backup directory for your Bibles. + + + + + Starting upgrade... + + + + + There are no Bibles that need to be upgraded. + + + + + 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. + + + + + 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. + + + + + CustomPlugin.CustomTab + + + Custom Display + + + + + Display footer + + + + + 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 + + + + + CustomPlugin.EditVerseForm + + + Edit Slide + + + + + CustomPlugin.MediaItem + + + Are you sure you want to delete the %n selected custom slide(s)? + + + + + + + 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 + + + + + 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. + + + + + ImagePlugin.ExceptionDialog + + + Select Attachment + + + + + 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 + + + + + The following image(s) no longer exist: %s +Do you want to add the other images anyway? + + + + + There was a problem replacing your background, the image file "%s" no longer exists. + + + + + There was no display item to amend. + + + + + ImagesPlugin.ImageTab + + + Background Color + + + + + Default Color: + + + + + Visible background for images with aspect ratio different to screen. + + + + + MediaPlugin + + + <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. + + + + + 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. + + + + + 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. + + + + + Missing Media File + + + + + The file %s no longer exists. + + + + + Videos (%s);;Audio (%s);;%s (*) + + + + + There was no display item to amend. + + + + + Unsupported File + + + + + Automatic + + + + + Use Player: + + + + + MediaPlugin.MediaTab + + + Available Media Players + + + + + %s (unavailable) + + + + + Player Order + + + + + Allow media player to be overridden + + + + + OpenLP + + + Image Files + + + + + Information + + + + + Bible format has changed. +You have to upgrade your existing Bibles. +Should OpenLP upgrade now? + + + + + OpenLP.AboutForm + + + Credits + + + + + License + + + + + 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 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. + + + + + Copyright © 2004-2012 %s +Portions copyright © 2004-2012 %s + + + + + 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. + +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 volunteering by using the button below. + + + + + Volunteer + + + + + Project Lead + %s + +Developers + %s + +Contributors + %s + +Testers + %s + +Packagers + %s + +Translators + Afrikaans (af) + %s + Czeck (cs) + %s + Danish (da) + %s + German (de) + %s + Greek (el) + %s + English, United Kingdom (en_GB) + %s + English, South Africa (en_ZA) + %s + Spanish (es) + %s + Estonian (et) + %s + French (fr) + %s + Hungarian (hu) + %s + Japanese (ja) + %s + Norwegian Bokmål (nb) + %s + Dutch (nl) + %s + Portuguese, Brazil (pt_BR) + %s + Russian (ru) + %s + Swedish (sv) + %s + +Documentation + %s + +Built With + Python: http://www.python.org/ + Qt4: http://qt.digia.com/ + PyQt4: http://www.riverbankcomputing.co.uk/software/pyqt/intro + Oxygen Icons: http://oxygen-icons.org/ + +Final Credit + "For God so loved the world that He gave + His one and only Son, so that whoever + believes in Him will not perish but inherit + eternal life." -- John 3:16 + + And last but not least, final credit goes to + God our Father, for sending His Son to die + on the cross, setting us free from sin. We + bring this software to you for free because + He has set us free. + + + + + 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. + + + + + 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 + + + + + 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 + + + + + OpenLP data directory was not found + +%s + +This data directory was previously changed from the OpenLP default location. If the new location was on removable media, that media needs to be made available. + +Click "No" to stop loading OpenLP. allowing you to fix the the problem. + +Click "Yes" to reset the data directory to the default location. + + + + + Are you sure you want to change the location of the OpenLP data directory to: + +%s + +The data directory will be changed when OpenLP is closed. + + + + + WARNING: + +The location you have selected + +%s + +appears to contain OpenLP data files. Do you wish to replace these files with the current data files? + + + + + 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. + + + + + Send E-Mail + + + + + Save to File + + + + + Please enter a description of what you were doing to cause this error +(Minimum 20 characters) + + + + + Attach File + + + + + Description characters to enter : %s + + + + + OpenLP.ExceptionForm + + + Platform: %s + + + + + + Save Crash Report + + + + + Text files (*.txt *.log *.text) + + + + + **OpenLP Bug Report** +Version: %s + +--- Details of the Exception. --- + +%s + + --- Exception Traceback --- +%s +--- System information --- +%s +--- Library Versions --- +%s + + + + + + *OpenLP Bug Report* +Version: %s + +--- Details of the Exception. --- + +%s + + --- Exception Traceback --- +%s +--- System information --- +%s +--- Library Versions --- +%s + + Please add the information that bug reports are favoured written in English. + + + + + OpenLP.FileRenameForm + + + File Rename + + + + + New File Name: + + + + + File Copy + + + + + OpenLP.FirstTimeLanguageForm + + + Select Translation + + + + + Choose the translation you'd like to use in OpenLP. + + + + + Translation: + + + + + 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... + + + + + Download complete. Click the finish button to start 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. + + + + + 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. + + + + + Setting Up And Downloading + + + + + Please wait while OpenLP is set up and your data is downloaded. + + + + + Setting Up + + + + + Click the finish button to start OpenLP. + + + + + Download complete. Click the finish button to return to OpenLP. + + + + + Click the finish button to return to 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. + + + + + + +To cancel the First Time Wizard completely (and not start OpenLP), click the Cancel button now. + + + + + OpenLP.FormattingTagDialog + + + Configure Formatting Tags + + + + + Edit Selection + + + + + Save + + + + + Description + + + + + Tag + + + + + Start HTML + + + + + End HTML + + + + + OpenLP.FormattingTagForm + + + Update Error + + + + + Tag "n" already defined. + + + + + New Tag + + + + + <HTML here> + + + + + </and here> + + + + + Tag %s already defined. + + + + + OpenLP.FormattingTags + + + Red + + + + + Black + + + + + Blue + + + + + Yellow + + + + + Green + + + + + Pink + + + + + Orange + + + + + Purple + + + + + White + + + + + Superscript + + + + + Subscript + + + + + Paragraph + + + + + Bold + + + + + Italics + + + + + Underline + + + + + Break + + + + + 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 + + + + + SongSelect username: + + + + + SongSelect password: + + + + + X + + + + + Y + + + + + Height + + + + + Width + + + + + Check for updates to 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 + + + + + OpenLP.LanguageManager + + + Language + + + + + Please restart OpenLP to use your new language setting. + + + + + OpenLP.MainDisplay + + + OpenLP Display + + + + + 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 + + + + + &Theme + + + + + &Configure 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 + + + + + &Online Help + + + + + &Web Site + + + + + Use the system language, if available. + + + + + Set the interface language to %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/. + + + + + OpenLP Version Updated + + + + + OpenLP Main Display Blanked + + + + + The Main Display has been blanked out + + + + + Default Theme: %s + + + + + English + Please add the name of your language here + + + + + Configure &Shortcuts... + + + + + Close OpenLP + + + + + Are you sure you want to close 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. + + + + + Clear List + Clear List of recent files + + + + + Clear the list of recent files. + + + + + Configure &Formatting Tags... + + + + + Export OpenLP settings to a specified *.config file + + + + + Settings + + + + + Import OpenLP settings from a specified *.config file previously exported on this or another machine + + + + + Import settings? + + + + + Are you sure you want to import settings? + +Importing settings will make permanent changes to your current OpenLP configuration. + +Importing incorrect settings may cause erratic behaviour or OpenLP to terminate abnormally. + + + + + Open File + + + + + OpenLP Export Settings Files (*.conf) + + + + + Import settings + + + + + 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 + + + + + The file you selected does appear to be a valid OpenLP settings file. + +Section [%s] is not valid + +Processing has terminated and no changed have been made. + + + + + Copying OpenLP data to new data directory location - %s - Please wait for copy to finish + + + + + OpenLP Data directory copy failed + +%s + + + + + 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 + + + + + OpenLP cannot load your database. + +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. + + + + + You must select one or more items to add. + + + + + No Search Results + + + + + Invalid File Type + + + + + Invalid File %s. +Suffix not supported + + + + + &Clone + + + + + Duplicate files were found on import and were ignored. + + + + + OpenLP.OpenLyricsImportError + + + <lyrics> tag is missing. + + + + + <verse> tag is missing. + + + + + OpenLP.PluginForm + + + Plugin List + + + + + Plugin Details + + + + + Status: + + + + + Active + + + + + Inactive + + + + + %s (Inactive) + + + + + %s (Active) + + + + + %s (Disabled) + + + + + OpenLP.PrintServiceDialog + + + Fit Page + + + + + Fit Width + + + + + OpenLP.PrintServiceForm + + + Options + + + + + Copy + + + + + Copy as 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: + + + + + OpenLP.ScreenList + + + Screen + + + + + primary + + + + + OpenLP.ServiceItem + + + <strong>Start</strong>: %s + + + + + <strong>Length</strong>: %s + + + + + OpenLP.ServiceItemEditForm + + + Reorder Service Item + + + + + OpenLP.ServiceManager + + + Move to &top + + + + + Move item to the top of the service. + + + + + Move &up + + + + + Move item up one position in the service. + + + + + Move &down + + + + + Move item down one position in the service. + + + + + Move to &bottom + + + + + Move item to the end of the service. + + + + + &Delete From Service + + + + + Delete the selected item from the service. + + + + + &Add New Item + + + + + &Add to Selected Item + + + + + &Edit Item + + + + + &Reorder Item + + + + + &Notes + + + + + &Change Item Theme + + + + + OpenLP Service Files (*.osz) + + + + + File is not a valid service. +The content encoding is not UTF-8. + + + + + File is not a valid service. + + + + + Missing Display Handler + + + + + Your item cannot be displayed as there is no handler to display it + + + + + Your item cannot be displayed as the plugin required to display it is missing or inactive + + + + + &Expand all + + + + + Expand all the service items. + + + + + &Collapse all + + + + + Collapse all the service items. + + + + + Open File + + + + + Moves the selection down the window. + + + + + Move up + + + + + Moves the selection up the window. + + + + + Go Live + + + + + Send the selected item to Live. + + + + + &Start Time + + + + + Show &Preview + + + + + 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. + + + + + Slide theme + + + + + Notes + + + + + Edit + + + + + Service copy only + + + + + Error Saving File + + + + + There was an error saving your file. + + + + + Service File(s) Missing + + + + + The following file(s) in the service are missing: +%s + +These files will be removed if you continue to save. + + + + + OpenLP.ServiceNoteForm + + + Service Item Notes + + + + + OpenLP.SettingsForm + + + Configure OpenLP + + + + + OpenLP.ShortcutListDialog + + + Action + + + + + Shortcut + + + + + Duplicate Shortcut + + + + + The shortcut "%s" is already assigned to another action, please use a different shortcut. + + + + + 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 + + + + + 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. + + + + + 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 + + + + + OpenLP.SpellTextEdit + + + Spelling Suggestions + + + + + Formatting Tags + + + + + Language: + + + + + 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. + + + + + 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) + + + + + You must select a theme to edit. + + + + + You are unable to delete the default theme. + + + + + Theme %s is used in the %s plugin. + + + + + You have not selected a theme. + + + + + Save Theme - (%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? + + + + + You must select a theme to delete. + + + + + Delete Confirmation + + + + + Delete %s theme? + + + + + Validation Error + + + + + A theme with this name already exists. + + + + + OpenLP Themes (*.theme *.otz) + + + + + Copy of %s + Copy of <theme name> + + + + + Theme Already Exists + + + + + Theme %s already exists. Do you want to replace it? + + + + + OpenLP.ThemeWizard + + + Theme Wizard + + + + + Welcome to the Theme Wizard + + + + + Set Up Background + + + + + Set up your theme's background according to the parameters below. + + + + + Background type: + + + + + Solid Color + + + + + Gradient + + + + + Color: + + + + + Gradient: + + + + + Horizontal + + + + + Vertical + + + + + Circular + + + + + Top Left - Bottom Right + + + + + Bottom Left - Top Right + + + + + Main Area Font Details + + + + + Define the font and display characteristics for the Display text + + + + + Font: + + + + + Size: + + + + + Line Spacing: + + + + + &Outline: + + + + + &Shadow: + + + + + Bold + + + + + Italic + + + + + Footer Area Font Details + + + + + Define the font and display characteristics for the Footer text + + + + + Text Formatting Details + + + + + Allows additional display formatting information to be defined + + + + + Horizontal Align: + + + + + Left + + + + + Right + + + + + Center + + + + + Output Area Locations + + + + + Allows you to change and move the main and footer areas. + + + + + &Main Area + + + + + &Use default location + + + + + X position: + + + + + px + + + + + Y position: + + + + + Width: + + + + + Height: + + + + + Use default location + + + + + Theme name: + + + + + Edit Theme - %s + + + + + This wizard will help you to create and edit your themes. Click the next button below to start the process by setting up your background. + + + + + Transitions: + + + + + &Footer Area + + + + + Starting color: + + + + + Ending color: + + + + + Background color: + + + + + Justify + + + + + Layout Preview + + + + + Transparent + + + + + Preview and Save + + + + + Preview the theme and save it. + + + + + (approximately %d lines per slide) + + + + + Background Image Empty + + + + + You have not selected a background image. Please select one before continuing. + + + + + Select Image + + + + + Theme Name Missing + + + + + There is no name for this theme. Please enter one. + + + + + Theme Name Invalid + + + + + Invalid theme name. Please enter one. + + + + + 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 + + + + + OpenLP.Ui + + + Error + + + + + About + + + + + &Add + + + + + Advanced + + + + + All Files + + + + + Bottom + + + + + Browse... + + + + + Cancel + + + + + CCLI number: + + + + + Create a new service. + + + + + &Delete + + + + + &Edit + + + + + Empty Field + + + + + Export + + + + + pt + Abbreviated font pointsize unit + + + + + 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 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 + + + + + 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"... + + + + + 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. + + + + + Open %s File + + + + + %p% + + + + + Ready. + + + + + Starting 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 + + + + + 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? + + + + + Settings + + + + + Tools + + + + + Unsupported File + + + + + Verse Per Slide + + + + + Verse Per Line + + + + + View + + + + + Title and/or verses not found + + + + + XML syntax error + + + + + 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 + + + + + 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 + + + + + Importing Songs + + + + + 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 + + + + + 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 + + + + + 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. + + + + + PresentationPlugin.MediaItem + + + Select Presentation(s) + + + + + Automatic + + + + + Present using: + + + + + File Exists + + + + + A presentation with that filename already exists. + + + + + This type of presentation is not supported. + + + + + Presentations (%s) + + + + + Missing Presentation + + + + + The presentation %s is incomplete, please reload. + + + + + The presentation %s no longer exists. + + + + + PresentationPlugin.PresentationTab + + + Available Controllers + + + + + %s (unavailable) + + + + + Allow presentation application to be overridden + + + + + 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 + + + + + Remotes + name plural + + + + + Remote + container title + + + + + RemotePlugin.Mobile + + + OpenLP 2.0 Remote + + + + + OpenLP 2.0 Stage View + + + + + 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 &amp; Go to Service + + + + + Service + + + + + Slides + + + + + RemotePlugin.RemoteTab + + + Serve on IP address: + + + + + Port number: + + + + + Server Settings + + + + + Remote URL: + + + + + Stage view URL: + + + + + Display stage time in 12h format + + + + + Android App + + + + + Scan the QR code or click <a href="https://play.google.com/store/apps/details?id=org.openlp.android">download</a> to install the Android app from Google Play. + + + + + 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. + + + + + SongUsage + name singular + + + + + SongUsage + name plural + + + + + SongUsage + container title + + + + + Song Usage + + + + + Song usage tracking is active. + + + + + Song usage tracking is inactive. + + + + + display + + + + + printed + + + + + 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. + + + + + SongUsagePlugin.SongUsageDetailForm + + + Song Usage Extraction + + + + + Select Date Range + + + + + to + + + + + Report Location + + + + + Output File Location + + + + + usage_detail_%s_%s.txt + + + + + Report Creation + + + + + Report +%s +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. + + + + + SongsPlugin + + + &Song + + + + + Import songs using the import wizard. + + + + + <strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs. + + + + + &Re-index Songs + + + + + Re-index the songs database to improve searching and ordering. + + + + + Reindexing songs... + + + + + Arabic (CP-1256) + + + + + Baltic (CP-1257) + + + + + Central European (CP-1250) + + + + + Cyrillic (CP-1251) + + + + + Greek (CP-1253) + + + + + Hebrew (CP-1255) + + + + + Japanese (CP-932) + + + + + Korean (CP-949) + + + + + Simplified Chinese (CP-936) + + + + + Thai (CP-874) + + + + + Traditional Chinese (CP-950) + + + + + Turkish (CP-1254) + + + + + Vietnam (CP-1258) + + + + + Western European (CP-1252) + + + + + Character Encoding + + + + + 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 + + + + + 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. + + + + + Reindexing songs + + + + + 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? + + + + + SongsPlugin.CCLIFileImport + + + The file does not have a valid extension. + + + + + SongsPlugin.EasyWorshipSongImport + + + Administered by %s + + + + + +[above are Song Tags with notes imported from + EasyWorship] + + + + + SongsPlugin.EditBibleForm + + + Meta Data + + + + + Custom Book Names + + + + + 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. + + + + + Add Book + + + + + This song book does not exist, do you want to add it? + + + + + You need to have an author for this song. + + + + + Linked Audio + + + + + Add &File(s) + + + + + Add &Media + + + + + Remove &All + + + + + Open File(s) + + + + + <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. + + + + + SongsPlugin.EditVerseForm + + + Edit Verse + + + + + &Verse type: + + + + + &Insert + + + + + Split a slide into two by inserting a verse splitter. + + + + + 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. + + + + + 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.org v1.x Databases + + + + + Words Of Worship Song Files + + + + + Songs Of Fellowship Song Files + + + + + SongBeamer Files + + + + + SongShow Plus Song Files + + + + + Foilpresenter Song Files + + + + + Copy + + + + + Save to File + + + + + The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. + + + + + The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. + + + + + OpenLyrics or OpenLP 2.0 Exported Song + + + + + OpenLyrics Files + + + + + 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 + + + + + This importer has been disabled. + + + + + MediaShout Database + + + + + The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. + + + + + SongPro Text Files + + + + + SongPro (Export File) + + + + + In SongPro, export your songs using the File -> Export menu + + + + + 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. + + + + + SongsPlugin.MediaItem + + + Titles + + + + + Lyrics + + + + + CCLI License: + + + + + Entire Song + + + + + Are you sure you want to delete the %n selected song(s)? + + + + + + + Maintain the lists of authors, topics and books. + + + + + copy + For song cloning + + + + + Search Titles... + + + + + Search Entire Song... + + + + + Search Lyrics... + + + + + Search Authors... + + + + + Search Song Books... + + + + + SongsPlugin.MediaShoutImport + + + Unable to open the MediaShout database. + + + + + SongsPlugin.OpenLP1SongImport + + + Not a valid openlp.org 1.x song database. + + + + + SongsPlugin.OpenLPSongImport + + + Not a valid OpenLP 2.0 song database. + + + + + SongsPlugin.OpenLyricsExport + + + Exporting "%s"... + + + + + SongsPlugin.PowerSongImport + + + No songs to import. + + + + + Verses not found. Missing "PART" header. + + + + + No %s files found. + + + + + Invalid %s file. Unexpected byte value. + + + + + Invalid %s file. Missing "TITLE" header. + + + + + Invalid %s file. Missing "COPYRIGHTLINE" header. + + + + + SongsPlugin.SongBookForm + + + Song Book Maintenance + + + + + &Name: + + + + + &Publisher: + + + + + You need to type in a name for the book. + + + + + SongsPlugin.SongExportForm + + + Your song export failed. + + + + + Finished export. To import these files use the <strong>OpenLyrics</strong> importer. + + + + + SongsPlugin.SongImport + + + copyright + + + + + The following songs could not be imported: + + + + + Cannot access OpenOffice or LibreOffice + + + + + Unable to open file + + + + + File not found + + + + + 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? + + + + + 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? + + + + + 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 + + + + + SongsPlugin.TopicsForm + + + Topic Maintenance + + + + + Topic name: + + + + + You need to type in a topic name. + + + + + SongsPlugin.VerseType + + + Verse + + + + + Chorus + + + + + Bridge + + + + + Pre-Chorus + + + + + Intro + + + + + Ending + + + + + Other + + + + + SongsPlugin.ZionWorxImport + + + Error reading CSV file. + + + + + File not valid ZionWorx CSV format. + + + + + Line %d: %s + + + + + Decoding error: %s + + + + + Record %d + + + + diff --git a/resources/i18n/lv.ts b/resources/i18n/lv.ts new file mode 100644 index 000000000..6574c12c7 --- /dev/null +++ b/resources/i18n/lv.ts @@ -0,0 +1,7315 @@ + + + + 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. + + + + + AlertsPlugin.AlertForm + + + Alert Message + + + + + Alert &text: + + + + + &New + + + + + &Save + un saglabāt + + + + Displ&ay + + + + + Display && Cl&ose + + + + + New Alert + Jauns ziņojums + + + + 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? + + + + + AlertsPlugin.AlertsManager + + + Alert message created and displayed. + Izveidots un attēlots paziņojuma teksts. + + + + AlertsPlugin.AlertsTab + + + Font + Burti + + + + Font name: + Burtu veids: + + + + Font color: + Burtu krāsa: + + + + Background color: + Fona krāsa: + + + + Font size: + Burtu izmērs: + + + + Alert timeout: + + + + + BiblesPlugin + + + &Bible + + + + + Bible + name singular + Bībele + + + + Bibles + name plural + Bībeles + + + + Bibles + container title + Bībeles + + + + 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. + Importēt Bībeli. + + + + Add a new Bible. + Pievienot jaunu Bībeli. + + + + Edit the selected Bible. + Rediģēt atzīmēto Bībeli. + + + + Delete the selected Bible. + Dzēst atzīmēto Bībeli. + + + + Preview the selected Bible. + Pārbaudīt atzīmēto Bībeli. + + + + Send the selected Bible live. + + + + + Add the selected Bible to the service. + Izmantot atzīmētās Bībeles šai kalpošanā. + + + + <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display Bible verses from different sources during the service. + + + + + &Upgrade older Bibles + un atjaunojiet vecāka veida Bībeles + + + + Upgrade the Bible databases to the latest 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. + + + + + 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. + + + + + 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". + + + + + 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. + + + + + BiblesPlugin.BibleManager + + + Scripture Reference Error + + + + + Web Bible cannot be used + Tīmekļa Bībele nav pieejama + + + + 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. + + + + + There are no Bibles currently installed. Please use the Import Wizard to install one or more Bibles. + Vēl neviena Bībele nav instalēta. Lūdzu izmantojiet importēšanas vedni (ang. wizard) vienas vai vairāku Bībeles tekstu instalēšanai. + + + + No Bibles Available + Nav pieejamas Bībeles + + + + 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 +Book Chapter%(range)sChapter +Book Chapter%(verse)sVerse%(range)sVerse +Book Chapter%(verse)sVerse%(range)sVerse%(list)sVerse%(range)sVerse +Book Chapter%(verse)sVerse%(range)sVerse%(list)sChapter%(verse)sVerse%(range)sVerse +Book Chapter%(verse)sVerse%(range)sChapter%(verse)sVerse + Please pay attention to the appended "s" of the wildcards and refrain from translating the words inside the names in the brackets. + + + + + BiblesPlugin.BiblesTab + + + Verse Display + Rādīt pantu + + + + Only show new chapter numbers + Rādīt tikai jaunās nodaļas numurus + + + + Bible theme: + + + + + No Brackets + + + + + ( And ) + ( un ) + + + + { 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. + + + + + 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 + + + + + Default Bible Language + + + + + Book name language in search field, +search results and on display: + + + + + Bible Language + + + + + Application Language + + + + + BiblesPlugin.BookNameDialog + + + Select Book Name + + + + + Current name: + + + + + Corresponding name: + + + + + Show Books From + + + + + Old Testament + Vecā derība + + + + New Testament + Jaunā derība + + + + Apocrypha + + + + + The following book name cannot be matched up internally. Please select the corresponding name from the list. + + + + + BiblesPlugin.BookNameForm + + + You need to select a book. + + + + + BiblesPlugin.CSVBible + + + Importing books... %s + + + + + Importing verses from %s... + Importing verses from <book name>... + + + + + Importing verses... done. + + + + + 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. + + + + + 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. + + + + + BiblesPlugin.HTTPBible + + + Registering Bible and loading books... + + + + + Registering Language... + + + + + Importing %s... + Importing <book name>... + + + + + Download Error + + + + + There was a problem downloading your verse selection. Please check your Internet connection, and if this error continues to occur please consider reporting a bug. + + + + + Parse Error + + + + + There was a problem extracting your verse selection. If this error continues to occur please consider reporting a bug. + + + + + 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 + + + + + Location: + + + + + Crosswalk + + + + + BibleGateway + + + + + Bible: + + + + + Download Options + + + + + Server: + + + + + Username: + + + + + Password: + + + + + Proxy Server (Optional) + + + + + 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 + + + + + Bibleserver + + + + + Permissions: + + + + + Bible file: + + + + + Books file: + + + + + Verses file: + + + + + openlp.org 1.x Bible Files + + + + + Registering Bible... + + + + + Registered Bible. Please note, that verses will be downloaded on +demand and thus an internet connection is required. + + + + + 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. + + + + + Language: + + + + + BiblesPlugin.LanguageForm + + + You need to choose a language. + + + + + BiblesPlugin.MediaItem + + + Quick + + + + + Find: + + + + + Book: + + + + + Chapter: + + + + + Verse: + + + + + From: + No: + + + + To: + Līdz: + + + + Text Search + Meklēt tekstā + + + + 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. + + + + + Search Scripture Reference... + + + + + Search Text... + + + + + Are you sure you want to completely delete "%s" Bible from OpenLP? + +You will need to re-import this Bible to use it again. + + + + + BiblesPlugin.OpenSongImport + + + Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. + + + + + BiblesPlugin.Opensong + + + Importing %s %s... + Importing <book name> <chapter>... + + + + + BiblesPlugin.OsisImport + + + Detecting encoding (this may take a few minutes)... + + + + + Importing %s %s... + Importing <book name> <chapter>... + + + + + 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. + + + + + 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>. + + + + + 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 + + + + + Upgrading Bible %s of %s: "%s" +Upgrading ... + + + + + Download Error + + + + + To upgrade your Web Bibles an Internet connection is required. + + + + + Upgrading Bible %s of %s: "%s" +Upgrading %s ... + + + + + Upgrading Bible %s of %s: "%s" +Complete + + + + + , %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 + + + + + Upgrade failed. + + + + + You need to specify a backup directory for your Bibles. + + + + + Starting upgrade... + + + + + There are no Bibles that need to be upgraded. + + + + + 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. + + + + + 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. + + + + + CustomPlugin.CustomTab + + + Custom Display + + + + + Display footer + + + + + 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 + + + + + CustomPlugin.EditVerseForm + + + Edit Slide + + + + + CustomPlugin.MediaItem + + + Are you sure you want to delete the %n selected custom slide(s)? + + + + + + + + + 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 + + + + + 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. + + + + + ImagePlugin.ExceptionDialog + + + Select Attachment + + + + + 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 + + + + + The following image(s) no longer exist: %s +Do you want to add the other images anyway? + + + + + There was a problem replacing your background, the image file "%s" no longer exists. + + + + + There was no display item to amend. + + + + + ImagesPlugin.ImageTab + + + Background Color + + + + + Default Color: + + + + + Visible background for images with aspect ratio different to screen. + + + + + MediaPlugin + + + <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. + + + + + 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. + + + + + 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. + + + + + Missing Media File + + + + + The file %s no longer exists. + + + + + Videos (%s);;Audio (%s);;%s (*) + + + + + There was no display item to amend. + + + + + Unsupported File + + + + + Automatic + + + + + Use Player: + + + + + MediaPlugin.MediaTab + + + Available Media Players + + + + + %s (unavailable) + + + + + Player Order + + + + + Allow media player to be overridden + + + + + OpenLP + + + Image Files + + + + + Information + + + + + Bible format has changed. +You have to upgrade your existing Bibles. +Should OpenLP upgrade now? + + + + + OpenLP.AboutForm + + + Credits + + + + + License + + + + + 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 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. + + + + + Copyright © 2004-2012 %s +Portions copyright © 2004-2012 %s + + + + + 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. + +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 volunteering by using the button below. + + + + + Volunteer + + + + + Project Lead + %s + +Developers + %s + +Contributors + %s + +Testers + %s + +Packagers + %s + +Translators + Afrikaans (af) + %s + Czeck (cs) + %s + Danish (da) + %s + German (de) + %s + Greek (el) + %s + English, United Kingdom (en_GB) + %s + English, South Africa (en_ZA) + %s + Spanish (es) + %s + Estonian (et) + %s + French (fr) + %s + Hungarian (hu) + %s + Japanese (ja) + %s + Norwegian Bokmål (nb) + %s + Dutch (nl) + %s + Portuguese, Brazil (pt_BR) + %s + Russian (ru) + %s + Swedish (sv) + %s + +Documentation + %s + +Built With + Python: http://www.python.org/ + Qt4: http://qt.digia.com/ + PyQt4: http://www.riverbankcomputing.co.uk/software/pyqt/intro + Oxygen Icons: http://oxygen-icons.org/ + +Final Credit + "For God so loved the world that He gave + His one and only Son, so that whoever + believes in Him will not perish but inherit + eternal life." -- John 3:16 + + And last but not least, final credit goes to + God our Father, for sending His Son to die + on the cross, setting us free from sin. We + bring this software to you for free because + He has set us free. + + + + + 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: + Fona krāsa: + + + + 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. + + + + + 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 + + + + + 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 + + + + + OpenLP data directory was not found + +%s + +This data directory was previously changed from the OpenLP default location. If the new location was on removable media, that media needs to be made available. + +Click "No" to stop loading OpenLP. allowing you to fix the the problem. + +Click "Yes" to reset the data directory to the default location. + + + + + Are you sure you want to change the location of the OpenLP data directory to: + +%s + +The data directory will be changed when OpenLP is closed. + + + + + WARNING: + +The location you have selected + +%s + +appears to contain OpenLP data files. Do you wish to replace these files with the current data files? + + + + + 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. + + + + + Send E-Mail + + + + + Save to File + + + + + Please enter a description of what you were doing to cause this error +(Minimum 20 characters) + + + + + Attach File + + + + + Description characters to enter : %s + + + + + OpenLP.ExceptionForm + + + Platform: %s + + + + + + Save Crash Report + + + + + Text files (*.txt *.log *.text) + + + + + **OpenLP Bug Report** +Version: %s + +--- Details of the Exception. --- + +%s + + --- Exception Traceback --- +%s +--- System information --- +%s +--- Library Versions --- +%s + + + + + + *OpenLP Bug Report* +Version: %s + +--- Details of the Exception. --- + +%s + + --- Exception Traceback --- +%s +--- System information --- +%s +--- Library Versions --- +%s + + Please add the information that bug reports are favoured written in English. + + + + + OpenLP.FileRenameForm + + + File Rename + + + + + New File Name: + + + + + File Copy + + + + + OpenLP.FirstTimeLanguageForm + + + Select Translation + + + + + Choose the translation you'd like to use in OpenLP. + + + + + Translation: + + + + + OpenLP.FirstTimeWizard + + + Songs + + + + + First Time Wizard + + + + + Welcome to the First Time Wizard + + + + + Activate required Plugins + + + + + Select the Plugins you wish to use. + + + + + Bible + Bībele + + + + Images + + + + + Presentations + + + + + Media (Audio and Video) + + + + + Allow remote access + + + + + Monitor Song Usage + + + + + Allow Alerts + + + + + Default Settings + + + + + Downloading %s... + + + + + Download complete. Click the finish button to start 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. + + + + + 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. + + + + + Setting Up And Downloading + + + + + Please wait while OpenLP is set up and your data is downloaded. + + + + + Setting Up + + + + + Click the finish button to start OpenLP. + + + + + Download complete. Click the finish button to return to OpenLP. + + + + + Click the finish button to return to 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. + + + + + + +To cancel the First Time Wizard completely (and not start OpenLP), click the Cancel button now. + + + + + OpenLP.FormattingTagDialog + + + Configure Formatting Tags + + + + + Edit Selection + + + + + Save + + + + + Description + + + + + Tag + + + + + Start HTML + + + + + End HTML + + + + + OpenLP.FormattingTagForm + + + Update Error + + + + + Tag "n" already defined. + + + + + New Tag + + + + + <HTML here> + + + + + </and here> + + + + + Tag %s already defined. + + + + + OpenLP.FormattingTags + + + Red + + + + + Black + + + + + Blue + + + + + Yellow + + + + + Green + + + + + Pink + + + + + Orange + + + + + Purple + + + + + White + + + + + Superscript + + + + + Subscript + + + + + Paragraph + + + + + Bold + + + + + Italics + + + + + Underline + + + + + Break + + + + + 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 + + + + + SongSelect username: + + + + + SongSelect password: + + + + + X + + + + + Y + + + + + Height + + + + + Width + + + + + Check for updates to 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 + + + + + OpenLP.LanguageManager + + + Language + + + + + Please restart OpenLP to use your new language setting. + + + + + OpenLP.MainDisplay + + + OpenLP Display + + + + + 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 + un saglabāt + + + + Save the current service to disk. + + + + + Save &As... + + + + + Save Service As + + + + + Save the current service under a new name. + + + + + E&xit + + + + + Quit OpenLP + + + + + &Theme + + + + + &Configure 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 + + + + + &Online Help + + + + + &Web Site + + + + + Use the system language, if available. + + + + + Set the interface language to %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/. + + + + + OpenLP Version Updated + + + + + OpenLP Main Display Blanked + + + + + The Main Display has been blanked out + + + + + Default Theme: %s + + + + + English + Please add the name of your language here + + + + + Configure &Shortcuts... + + + + + Close OpenLP + + + + + Are you sure you want to close 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. + + + + + Clear List + Clear List of recent files + + + + + Clear the list of recent files. + + + + + Configure &Formatting Tags... + + + + + Export OpenLP settings to a specified *.config file + + + + + Settings + + + + + Import OpenLP settings from a specified *.config file previously exported on this or another machine + + + + + Import settings? + + + + + Are you sure you want to import settings? + +Importing settings will make permanent changes to your current OpenLP configuration. + +Importing incorrect settings may cause erratic behaviour or OpenLP to terminate abnormally. + + + + + Open File + + + + + OpenLP Export Settings Files (*.conf) + + + + + Import settings + + + + + 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 + + + + + The file you selected does appear to be a valid OpenLP settings file. + +Section [%s] is not valid + +Processing has terminated and no changed have been made. + + + + + Copying OpenLP data to new data directory location - %s - Please wait for copy to finish + + + + + OpenLP Data directory copy failed + +%s + + + + + 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 + + + + + OpenLP cannot load your database. + +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. + + + + + You must select one or more items to add. + + + + + No Search Results + + + + + Invalid File Type + + + + + Invalid File %s. +Suffix not supported + + + + + &Clone + + + + + Duplicate files were found on import and were ignored. + + + + + OpenLP.OpenLyricsImportError + + + <lyrics> tag is missing. + + + + + <verse> tag is missing. + + + + + OpenLP.PluginForm + + + Plugin List + + + + + Plugin Details + + + + + Status: + + + + + Active + + + + + Inactive + + + + + %s (Inactive) + + + + + %s (Active) + + + + + %s (Disabled) + + + + + OpenLP.PrintServiceDialog + + + Fit Page + + + + + Fit Width + + + + + OpenLP.PrintServiceForm + + + Options + + + + + Copy + + + + + Copy as 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: + + + + + OpenLP.ScreenList + + + Screen + + + + + primary + + + + + OpenLP.ServiceItem + + + <strong>Start</strong>: %s + + + + + <strong>Length</strong>: %s + + + + + OpenLP.ServiceItemEditForm + + + Reorder Service Item + + + + + OpenLP.ServiceManager + + + Move to &top + + + + + Move item to the top of the service. + + + + + Move &up + + + + + Move item up one position in the service. + + + + + Move &down + + + + + Move item down one position in the service. + + + + + Move to &bottom + + + + + Move item to the end of the service. + + + + + &Delete From Service + + + + + Delete the selected item from the service. + + + + + &Add New Item + + + + + &Add to Selected Item + + + + + &Edit Item + + + + + &Reorder Item + + + + + &Notes + + + + + &Change Item Theme + + + + + OpenLP Service Files (*.osz) + + + + + File is not a valid service. +The content encoding is not UTF-8. + + + + + File is not a valid service. + + + + + Missing Display Handler + + + + + Your item cannot be displayed as there is no handler to display it + + + + + Your item cannot be displayed as the plugin required to display it is missing or inactive + + + + + &Expand all + + + + + Expand all the service items. + + + + + &Collapse all + + + + + Collapse all the service items. + + + + + Open File + + + + + Moves the selection down the window. + + + + + Move up + + + + + Moves the selection up the window. + + + + + Go Live + + + + + Send the selected item to Live. + + + + + &Start Time + + + + + Show &Preview + + + + + 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. + + + + + Slide theme + + + + + Notes + + + + + Edit + + + + + Service copy only + + + + + Error Saving File + + + + + There was an error saving your file. + + + + + Service File(s) Missing + + + + + The following file(s) in the service are missing: +%s + +These files will be removed if you continue to save. + + + + + OpenLP.ServiceNoteForm + + + Service Item Notes + + + + + OpenLP.SettingsForm + + + Configure OpenLP + + + + + OpenLP.ShortcutListDialog + + + Action + + + + + Shortcut + + + + + Duplicate Shortcut + + + + + The shortcut "%s" is already assigned to another action, please use a different shortcut. + + + + + 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 + + + + + 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. + + + + + 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 + + + + + OpenLP.SpellTextEdit + + + Spelling Suggestions + + + + + Formatting Tags + + + + + Language: + + + + + 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. + + + + + 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) + + + + + You must select a theme to edit. + + + + + You are unable to delete the default theme. + + + + + Theme %s is used in the %s plugin. + + + + + You have not selected a theme. + + + + + Save Theme - (%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? + + + + + You must select a theme to delete. + + + + + Delete Confirmation + + + + + Delete %s theme? + + + + + Validation Error + + + + + A theme with this name already exists. + + + + + OpenLP Themes (*.theme *.otz) + + + + + Copy of %s + Copy of <theme name> + + + + + Theme Already Exists + + + + + Theme %s already exists. Do you want to replace it? + + + + + OpenLP.ThemeWizard + + + Theme Wizard + + + + + Welcome to the Theme Wizard + + + + + Set Up Background + + + + + Set up your theme's background according to the parameters below. + + + + + Background type: + + + + + Solid Color + + + + + Gradient + + + + + Color: + + + + + Gradient: + + + + + Horizontal + + + + + Vertical + + + + + Circular + + + + + Top Left - Bottom Right + + + + + Bottom Left - Top Right + + + + + Main Area Font Details + + + + + Define the font and display characteristics for the Display text + + + + + Font: + + + + + Size: + + + + + Line Spacing: + + + + + &Outline: + + + + + &Shadow: + + + + + Bold + + + + + Italic + + + + + Footer Area Font Details + + + + + Define the font and display characteristics for the Footer text + + + + + Text Formatting Details + + + + + Allows additional display formatting information to be defined + + + + + Horizontal Align: + + + + + Left + + + + + Right + + + + + Center + + + + + Output Area Locations + + + + + Allows you to change and move the main and footer areas. + + + + + &Main Area + + + + + &Use default location + + + + + X position: + + + + + px + + + + + Y position: + + + + + Width: + + + + + Height: + + + + + Use default location + + + + + Theme name: + + + + + Edit Theme - %s + + + + + This wizard will help you to create and edit your themes. Click the next button below to start the process by setting up your background. + + + + + Transitions: + + + + + &Footer Area + + + + + Starting color: + + + + + Ending color: + + + + + Background color: + Fona krāsa: + + + + Justify + + + + + Layout Preview + + + + + Transparent + + + + + Preview and Save + + + + + Preview the theme and save it. + + + + + (approximately %d lines per slide) + + + + + Background Image Empty + + + + + You have not selected a background image. Please select one before continuing. + + + + + Select Image + + + + + Theme Name Missing + + + + + There is no name for this theme. Please enter one. + + + + + Theme Name Invalid + + + + + Invalid theme name. Please enter one. + + + + + 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 + + + + + OpenLP.Ui + + + Error + + + + + About + + + + + &Add + + + + + Advanced + + + + + All Files + + + + + Bottom + + + + + Browse... + + + + + Cancel + + + + + CCLI number: + + + + + Create a new service. + + + + + &Delete + + + + + &Edit + + + + + Empty Field + + + + + Export + + + + + pt + Abbreviated font pointsize unit + + + + + 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 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 + + + + + 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"... + + + + + 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. + + + + + Open %s File + + + + + %p% + + + + + Ready. + + + + + Starting 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 + + + + + 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? + + + + + Settings + + + + + Tools + + + + + Unsupported File + + + + + Verse Per Slide + + + + + Verse Per Line + + + + + View + + + + + Title and/or verses not found + + + + + XML syntax error + + + + + 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 + + + + + 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 + + + + + Importing Songs + + + + + 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 + + + + + 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 + + + + + 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. + + + + + PresentationPlugin.MediaItem + + + Select Presentation(s) + + + + + Automatic + + + + + Present using: + + + + + File Exists + + + + + A presentation with that filename already exists. + + + + + This type of presentation is not supported. + + + + + Presentations (%s) + + + + + Missing Presentation + + + + + The presentation %s is incomplete, please reload. + + + + + The presentation %s no longer exists. + + + + + PresentationPlugin.PresentationTab + + + Available Controllers + + + + + %s (unavailable) + + + + + Allow presentation application to be overridden + + + + + 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 + + + + + Remotes + name plural + + + + + Remote + container title + + + + + RemotePlugin.Mobile + + + OpenLP 2.0 Remote + + + + + OpenLP 2.0 Stage View + + + + + 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 &amp; Go to Service + + + + + Service + + + + + Slides + + + + + RemotePlugin.RemoteTab + + + Serve on IP address: + + + + + Port number: + + + + + Server Settings + + + + + Remote URL: + + + + + Stage view URL: + + + + + Display stage time in 12h format + + + + + Android App + + + + + Scan the QR code or click <a href="https://play.google.com/store/apps/details?id=org.openlp.android">download</a> to install the Android app from Google Play. + + + + + 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. + + + + + SongUsage + name singular + + + + + SongUsage + name plural + + + + + SongUsage + container title + + + + + Song Usage + + + + + Song usage tracking is active. + + + + + Song usage tracking is inactive. + + + + + display + + + + + printed + + + + + 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. + + + + + SongUsagePlugin.SongUsageDetailForm + + + Song Usage Extraction + + + + + Select Date Range + + + + + to + + + + + Report Location + + + + + Output File Location + + + + + usage_detail_%s_%s.txt + + + + + Report Creation + + + + + Report +%s +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. + + + + + SongsPlugin + + + &Song + + + + + Import songs using the import wizard. + + + + + <strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs. + + + + + &Re-index Songs + + + + + Re-index the songs database to improve searching and ordering. + + + + + Reindexing songs... + + + + + Arabic (CP-1256) + + + + + Baltic (CP-1257) + + + + + Central European (CP-1250) + + + + + Cyrillic (CP-1251) + + + + + Greek (CP-1253) + + + + + Hebrew (CP-1255) + + + + + Japanese (CP-932) + + + + + Korean (CP-949) + + + + + Simplified Chinese (CP-936) + + + + + Thai (CP-874) + + + + + Traditional Chinese (CP-950) + + + + + Turkish (CP-1254) + + + + + Vietnam (CP-1258) + + + + + Western European (CP-1252) + + + + + Character Encoding + + + + + 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 + + + + + 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. + + + + + Reindexing songs + + + + + 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? + + + + + SongsPlugin.CCLIFileImport + + + The file does not have a valid extension. + + + + + SongsPlugin.EasyWorshipSongImport + + + Administered by %s + + + + + +[above are Song Tags with notes imported from + EasyWorship] + + + + + SongsPlugin.EditBibleForm + + + Meta Data + + + + + Custom Book Names + + + + + 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. + + + + + Add Book + + + + + This song book does not exist, do you want to add it? + + + + + You need to have an author for this song. + + + + + Linked Audio + + + + + Add &File(s) + + + + + Add &Media + + + + + Remove &All + + + + + Open File(s) + + + + + <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. + + + + + SongsPlugin.EditVerseForm + + + Edit Verse + + + + + &Verse type: + + + + + &Insert + + + + + Split a slide into two by inserting a verse splitter. + + + + + 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. + + + + + 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.org v1.x Databases + + + + + Words Of Worship Song Files + + + + + Songs Of Fellowship Song Files + + + + + SongBeamer Files + + + + + SongShow Plus Song Files + + + + + Foilpresenter Song Files + + + + + Copy + + + + + Save to File + + + + + The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. + + + + + The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. + + + + + OpenLyrics or OpenLP 2.0 Exported Song + + + + + OpenLyrics Files + + + + + 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 + + + + + This importer has been disabled. + + + + + MediaShout Database + + + + + The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. + + + + + SongPro Text Files + + + + + SongPro (Export File) + + + + + In SongPro, export your songs using the File -> Export menu + + + + + 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. + + + + + SongsPlugin.MediaItem + + + Titles + + + + + Lyrics + + + + + CCLI License: + + + + + Entire Song + + + + + Are you sure you want to delete the %n selected song(s)? + + + + + + + + + Maintain the lists of authors, topics and books. + + + + + copy + For song cloning + + + + + Search Titles... + + + + + Search Entire Song... + + + + + Search Lyrics... + + + + + Search Authors... + + + + + Search Song Books... + + + + + SongsPlugin.MediaShoutImport + + + Unable to open the MediaShout database. + + + + + SongsPlugin.OpenLP1SongImport + + + Not a valid openlp.org 1.x song database. + + + + + SongsPlugin.OpenLPSongImport + + + Not a valid OpenLP 2.0 song database. + + + + + SongsPlugin.OpenLyricsExport + + + Exporting "%s"... + + + + + SongsPlugin.PowerSongImport + + + No songs to import. + + + + + Verses not found. Missing "PART" header. + + + + + No %s files found. + + + + + Invalid %s file. Unexpected byte value. + + + + + Invalid %s file. Missing "TITLE" header. + + + + + Invalid %s file. Missing "COPYRIGHTLINE" header. + + + + + SongsPlugin.SongBookForm + + + Song Book Maintenance + + + + + &Name: + + + + + &Publisher: + + + + + You need to type in a name for the book. + + + + + SongsPlugin.SongExportForm + + + Your song export failed. + + + + + Finished export. To import these files use the <strong>OpenLyrics</strong> importer. + + + + + SongsPlugin.SongImport + + + copyright + + + + + The following songs could not be imported: + + + + + Cannot access OpenOffice or LibreOffice + + + + + Unable to open file + + + + + File not found + + + + + 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? + + + + + 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? + + + + + 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 + + + + + SongsPlugin.TopicsForm + + + Topic Maintenance + + + + + Topic name: + + + + + You need to type in a topic name. + + + + + SongsPlugin.VerseType + + + Verse + + + + + Chorus + + + + + Bridge + + + + + Pre-Chorus + + + + + Intro + + + + + Ending + + + + + Other + + + + + SongsPlugin.ZionWorxImport + + + Error reading CSV file. + + + + + File not valid ZionWorx CSV format. + + + + + Line %d: %s + + + + + Decoding error: %s + + + + + Record %d + + + + diff --git a/resources/i18n/nb.ts b/resources/i18n/nb.ts index 7f16308c8..c3beced0c 100644 --- a/resources/i18n/nb.ts +++ b/resources/i18n/nb.ts @@ -3,107 +3,109 @@ AlertsPlugin - + &Alert &Varsel - + Show an alert message. Vis en varselmelding. - + Alert name singular Varsel - + Alerts name plural - Varsler + Varsel - + Alerts container title Varsler - + <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of nursery alerts on the display screen. - + Dette programtillegget kontrolerer visningen av varsel- og opplysningsmeldinger AlertsPlugin.AlertForm - + Alert Message Varselmelding - + Alert &text: Varsel&tekst: - + &New &Ny - + &Save &Lagre - + Displ&ay Vis - + Display && Cl&ose Vis && Lukk - + New Alert Nytt Varsel - + You haven't specified any text for your alert. Please type in some text before clicking New. Du har ikke spesifisert noen tekst for varselet. Vennligst skriv inn en tekst før du trykker Ny. - + &Parameter: &Parameter: - + No Parameter Found - + Ingen parametre funnet - + You have not entered a parameter to be replaced. Do you want to continue anyway? - + Du har ikke angitt et parameter i feltet. +Vil du fortsette? - + No Placeholder Found - + Ingen plassholder funnet - + The alert text does not contain '<>'. Do you want to continue anyway? - + Varselteksten inneholder ikke '<>'. +Vil du fortsette likevel? @@ -117,32 +119,32 @@ Do you want to continue anyway? AlertsPlugin.AlertsTab - + Font Skrifttype - + Font name: Skriftnavn: - + Font color: Skriftfarge: - + Background color: Bakgrunnsfarge: - + Font size: Skriftstørrelse: - + Alert timeout: Varselvarighet: @@ -150,510 +152,510 @@ Do you want to continue anyway? BiblesPlugin - + &Bible &Bibel - + Bible name singular - + Bibel - + Bibles name plural - + Bibler - + Bibles container title - + Bibler - + No Book Found Ingen bok funnet - + No matching book could be found in this Bible. Check that you have spelled the name of the book correctly. Ingen samsvarende bok ble funnet i denne bibelen. Sjekk at du har stavet navnet på boken riktig. - - - Import a Bible. - - - Add a new Bible. - + Import a Bible. + Importer en ny bibel. - Edit the selected Bible. - + Add a new Bible. + Legg til en ny bibel - Delete the selected Bible. - + Edit the selected Bible. + Rediger valgte bibel. - Preview the selected Bible. - + Delete the selected Bible. + Slett valgte bibel. - - Send the selected Bible live. - + + Preview the selected Bible. + Forhåndsvis valgte bibel. + Send the selected Bible live. + Frem-vis valgte bibel. + + + Add the selected Bible to the service. - + Legg valgte bibelsitat til gudsteneste-/møteplanlegger. - + <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display Bible verses from different sources during the service. - + Dette tillegget gjør det mulig å vise bibelsitat fra ulike kilder under en gudsteneste/møte. - + &Upgrade older Bibles - + &Oppgraderer eldre bibler - + Upgrade the Bible databases to the latest format. - + Oppgrader bibeldatabasen til nyeste format. - + Genesis - + Exodus - + Leviticus - + Numbers - + Deuteronomy - + Joshua - + Judges - + Ruth - + 1 Samuel - + 2 Samuel - + 1 Kings - + 2 Kings - - - 1 Chronicles - - - 2 Chronicles - + 1 Chronicles + 1. Krønikebok + 2 Chronicles + 1. Krønikebok {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 - - - 2 Corinthians - + 1 Corinthians + 1. Korinterne + 2 Corinthians + 1. Korinterne {2 ?} + + + 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. @@ -662,44 +664,44 @@ Do you want to continue anyway? BiblesPlugin.BibleEditForm - + You need to specify a version name for your Bible. Du må spesifisere et versjonsnavn for Bibelen din. - + You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. - Du må angi kopiretten for Bibelen. Offentlige bibler må markeres deretter. + Du trenger å angi opphavsrett for denne bibelen. Bibler som er Public Domain må merkes som sådan. - + Bible Exists - Bibelen finnes + Bibelen finnes fra før - + This Bible already exists. Please import a different Bible or first delete the existing one. Denne bibelen finnes alt. Vennligst importer en annen bibel eller slett først den eksisterende. - + 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. @@ -707,39 +709,39 @@ be followed by one or more non-numeric characters. BiblesPlugin.BibleManager - + Scripture Reference Error Bibelreferansefeil - + Web Bible cannot be used Nettbibel kan ikke brukes - + Text Search is not available with Web Bibles. Tekstsøk er ikke tilgjengelig med nettbibler. - + 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 har ikke angitt et søkeord. Du kan skille ulike søkeord med mellomrom for å søke etter alle søkeordene dine, og du kan skille dem med komma for å søke etter ett av dem. - + There are no Bibles currently installed. Please use the Import Wizard to install one or more Bibles. Det er ingen bibler installert. Vennligst bruk importeringsveiviseren for å installere en eller flere bibler. - + No Bibles Available Ingen bibler tilgjengelig - + 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 @@ -755,128 +757,128 @@ Book Chapter%(verse)sVerse%(range)sChapter%(verse)sVerse BiblesPlugin.BiblesTab - + Verse Display Versvisning - + Only show new chapter numbers - Bare vis nye kapittelnummer + Vis bare nye kapittelnummer - + Bible theme: Bibel tema: - + No Brackets Ingen klammer - + ( And ) ( Og ) - + { And } { Og } - + [ And ] [ Og ] - + Note: Changes do not affect verses already in the service. Merk: -Endringer påvirker ikke vers som alt er lagt til møtet. +Endringer påvirker ikke vers som allerede fins møtetprogrammet. - + Display second Bible verses Vis alternative 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 Norwegian - + Default Bible Language - + Book name language in search field, search results and on display: - + Bible Language - + Application Language @@ -884,42 +886,42 @@ search results and on display: BiblesPlugin.BookNameDialog - + Select Book Name - + Velg bok - + Current name: - + Gjeldende navn: - + Corresponding name: - + Tilsvarende navn: - + Show Books From - + Vis bøker fra - + Old Testament - + Det gamle testamente - + New Testament - + Der nye testamente - + Apocrypha - + Apokryfene - + The following book name cannot be matched up internally. Please select the corresponding name from the list. @@ -927,95 +929,95 @@ search results and on display: BiblesPlugin.BookNameForm - + You need to select a book. - + Du må velge bok BiblesPlugin.CSVBible - + Importing books... %s - + Importerer bøker... %s - + Importing verses from %s... Importing verses from <book name>... - + Importerer vers fra %s... - + Importing verses... done. - + Ferdig å importere vers... BiblesPlugin.EditBibleForm - + Bible Editor - + License Details Lisensdetaljer - + Version name: Versjonsnavn: - + Copyright: - Opphavsrett: + Opphavsrett/Copyright: - + Permissions: Tillatelser: - + Default Bible Language - + Book name language in search field, search results and on display: - + Global Settings - + Bible Language - + Application Language - + English Norwegian - + 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. @@ -1023,40 +1025,40 @@ It is not possible to customize the Book Names. BiblesPlugin.HTTPBible - + Registering Bible and loading books... - + Registrer bibel og laster bøker... - + Registering Language... - + Registrer språk - + Importing %s... Importing <book name>... - + Importerer %s... - + Download Error - + Nedlastingsfeil - + There was a problem downloading your verse selection. Please check your Internet connection, and if this error continues to occur please consider reporting a bug. - + Det oppstod et problem ved nedlastingen av de valgte versene. Vennligst sjekk internettilkoblingen, dersom denne feilen vedvarer, vær vennlig å rapportere feilen. - + Parse Error - + Analysefeil - + There was a problem extracting your verse selection. If this error continues to occur please consider reporting a bug. - + Det oppstod et problem ved uthenting av de valgte versene. Dersom denne feilen vedvarer, vær vennlig å rapportere feilen. @@ -1079,7 +1081,7 @@ It is not possible to customize the Book Names. Location: - Plassering: + Plassering/kilde: @@ -1104,7 +1106,7 @@ It is not possible to customize the Book Names. Server: - Tjener: + Server: @@ -1119,7 +1121,7 @@ It is not possible to customize the Book Names. Proxy Server (Optional) - Proxytjener (valgfritt) + Proxyserver (valgfritt) @@ -1139,7 +1141,7 @@ It is not possible to customize the Book Names. Copyright: - Opphavsrett: + Opphavsrett/Copyright: @@ -1149,7 +1151,7 @@ It is not possible to customize the Book Names. You need to specify a file with books of the Bible to use in the import. - Du må angi en fil som inneholder bøkene i Bibelen du vil importere. + Du må angi en fil som inneholder bøkene i bibelen du vil importere. @@ -1169,7 +1171,7 @@ It is not possible to customize the Book Names. Bible Exists - Bibelen finnes + Bibelen finnes fra før @@ -1179,7 +1181,7 @@ It is not possible to customize the Book Names. Your Bible import failed. - + Bibelimporteringen mislyktes. @@ -1189,7 +1191,7 @@ It is not possible to customize the Book Names. Bibleserver - Bibeltjener + Bibelserver @@ -1219,130 +1221,130 @@ It is not possible to customize the Book Names. Registering Bible... - + Registrerer Bibel Registered Bible. Please note, that verses will be downloaded on demand and thus an internet connection is required. - + Registrert bibel. Vær oppmerksom på at versene blir nedlastet på din forespørsel. Derfor er det nøvendig å være tilkoplet internet. BiblesPlugin.LanguageDialog - + Select Language - + Velg språk - + 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 å fastslå språket i oversettelsen av denne bibelen. Velg språk fra listen under. - + Language: - + Språk: BiblesPlugin.LanguageForm - + You need to choose a language. - + Du må velge språk. BiblesPlugin.MediaItem - + Quick Hurtig - + Find: - + Finn: - + Book: Bok: - + Chapter: Kapittel: - + Verse: Vers: - + From: - + Fra: - + To: - + Til: - + Text Search Tekstsøk - + Second: Alternativ: - + Scripture Reference Bibelreferanse - + Toggle to keep or clear the previous results. - + Velg for å beholde eller slette tidlegere resultat. - + 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 enkle og doble bibelvers-søkeresultater. Ønsker du å slette dine søkeresultater og starte et nytt søk? - + Bible not fully loaded. - + Bibelen er ikke fullstendig lastet. - + Information - + Informasjon - + 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 andre bibelen innehoder ikke alle versene i hovedbibelen. Bare vers funnet i begge vil bli vist. %d vers er ikke med i resulstatet. - + Search Scripture Reference... - + Search Text... - + Are you sure you want to completely delete "%s" Bible from OpenLP? You will need to re-import this Bible to use it again. @@ -1352,7 +1354,7 @@ You will need to re-import this Bible to use it again. BiblesPlugin.OpenSongImport - + Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. @@ -1360,7 +1362,7 @@ You will need to re-import this Bible to use it again. BiblesPlugin.Opensong - + Importing %s %s... Importing <book name> <chapter>... Importerer %s %s... @@ -1369,12 +1371,12 @@ You will need to re-import this Bible to use it again. BiblesPlugin.OsisImport - + Detecting encoding (this may take a few minutes)... Oppdager tegnkoding (dette kan ta noen minutter)... - + Importing %s %s... Importing <book name> <chapter>... Importerer %s %s... @@ -1383,222 +1385,227 @@ You will need to re-import this Bible to use it again. BiblesPlugin.UpgradeWizardForm - + Select a Backup Directory - + Velg en backup katalog - + Bible Upgrade Wizard - + Oppgraderings veiviser. - + 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. - + Denne veilederen hjelper deg til å oppgradere dine eksisterende bibler fra en tidligere versjon av OpenLP 2. Klikk neste nedenfor for å starte oppgraderingen. - + Select Backup Directory - + Velg backup katalog - + Please select a backup directory for your Bibles - + Venligst velg en backup katalog for dine bibler - + 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>. - + Tidligere versjoner av OpenLP 2.0 kan ikke benytte oppgraderte bibler. Dette vil opprette en backup av dine eksisterende bibler slik at du enkelt kan kopiere filene tilbake til OpenLP fillageret dersom du behøver å gå tilbake til en tidligere versjon av OpenLP. Instruksjoner på hvordan du kan gjenopprette filene kan finnes i vår <a href="http://wiki.openlp.org/faq">Ofte Spurte Spørsmål</a> - + Please select a backup location for your Bibles. - + Velg backupstasjon for dine bibler. - + Backup Directory: - + Backup katalog: - + There is no need to backup my Bibles - + Det er ikke nødvendig å oppgrade mine bibler - + Select Bibles - + Velg bibel - + Please select the Bibles to upgrade - + Vegl bibel som skal oppgraderes - + Upgrading - + Oppgraderer - + Please wait while your Bibles are upgraded. - + Venligst vent, biblene blir oppdatert. - + The backup was not successful. To backup your Bibles you need permission to write to the given directory. - + Backup mislyktes. ⏎ For å ta backup av dine filer må du ha tillatelse til å skrive til den oppgitte mappen. - + Upgrading Bible %s of %s: "%s" Failed - + Bibeloppgradering %s av %s: "%s" +Var misslykket - + Upgrading Bible %s of %s: "%s" Upgrading ... - + Bibeloppgraderer %s av %s: "%s" +Oppgraderer ... - + Download Error - + Nedlastingsfeil - + To upgrade your Web Bibles an Internet connection is required. - + For å oppgradere din internett-bibel er det nødvendig med internettilkobling. - + Upgrading Bible %s of %s: "%s" Upgrading %s ... - + Oppgraderer bibel %s av %s: "%s" +Oppgraderer %s... - + Upgrading Bible %s of %s: "%s" Complete - + Oppgraderer bibel %s av %s: "%s" +Ferdig - + , %s failed - + , %s feilet - + 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. - + Oppgradering bibel(er): %s vellykket%s +Vær oppmerksom på at versene fra netbibler blir nedlastet på din forespørsel så det er nødvendig med internettilkobling. - + Upgrading Bible(s): %s successful%s - + Oppgradering bibel(er): %s vellykket%s - + Upgrade failed. - + Oppgraderingen var mislykket. - + You need to specify a backup directory for your Bibles. - + Du må spesifisere en mappe for backup av dine bibler. - + Starting upgrade... - + Starter oppgradering... - + There are no Bibles that need to be upgraded. - + Det er ingen bibler som trenger oppgradering. 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>Brukerdefinert lysbilde</strong><br/> Programtillegget for brukerdefinert lysbilde gir en sørre frihett til å lage egne tekst bilder som kan vises på samme vis som sanger. - + Custom Slide name singular - + Brukerdefinert lysbilde - + Custom Slides name plural - + Brukerdefinerte lysbilder - + Custom Slides container title - - - - - Load a new custom slide. - + Brukerdefinerte lysbilder - Import a custom slide. - + Load a new custom slide. + Vis et nytt brukerdefinert lysbilde. - Add a new custom slide. - + Import a custom slide. + Iporter et brukerdefinert lysbilde. + Add a new custom slide. + Legg til et egendefinert lysbilde. + + + Edit the selected custom slide. - + Rediger det valgte lysbilde. - + Delete the selected custom slide. - + Slett det valgte lysbilde. - + Preview the selected custom slide. - + Forhåndsvis valgte lysbilde. - + Send the selected custom slide live. - + Frem-vis valgte egendefinerte side. - + Add the selected custom slide to the service. - + Legg valgte lysbilde til møteplan. CustomPlugin.CustomTab - + Custom Display Tilpasset visning - + Display footer Vis bunntekst @@ -1606,70 +1613,70 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I CustomPlugin.EditCustomForm - + Edit Custom Slides Rediger egendefinerte lysbilder - + &Title: &Tittel: - + Add a new slide at bottom. Legg til nytt lysbilde nederst. - + Edit the selected slide. Rediger markert lysbilde. - + Edit all the slides at once. Rediger alle lysbilder på en gang. - + Split a slide into two by inserting a slide splitter. Del lysbilde i to ved å sette inn en lysbildedeler. - + The&me: Tema: - + &Credits: &Credits: - + You need to type in a title. Du må skrive inn en tittel. - + You need to add at least one slide Du må legge til minst et lysbilde - + Ed&it All Rediger alle - + Insert Slide - + Tilføy lysbilde CustomPlugin.EditVerseForm - + Edit Slide @@ -1677,7 +1684,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)? @@ -1688,68 +1695,68 @@ 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>Bildetillegg</strong><br />Bildetillegget gir mulighet til visning av bilder.<br />Et av særtrekkene med dette tillegget er muligheten til å gruppere flere bilder sammen i møteplanleggeren, noe som gjør visning av flere bilder enklere. Programtillegget kan også benytte seg av OpenLP's "tidsbestemte løkke"-funksjon til å lage en lysbildefremvisning som kjører automatisk. I tillegg kan bilder fra tillegget brukes til å overstyre gjeldende temabakgrunn, noe som gir tekstbaserte saker, som sanger, det valgte bildet som bakgrunn. - + Image name singular Bilde - + Images name plural - Bilder + Bilder - + Images container title Bilder - + Load a new image. - - - - - Add a new image. - + Last et nytt bilde. - Edit the selected image. - + Add a new image. + Legg til et nytt bilde. - Delete the selected image. - + Edit the selected image. + Rediger valgte bilde. - Preview the selected image. - + Delete the selected image. + Slett valgte bilde. - Send the selected image live. - + Preview the selected image. + Forhåndsvis valgte bilde. + Send the selected image live. + Send valgte bilde til skjerm. + + + Add the selected image to the service. - + Legg valgte bilde til møteprogrammet. ImagePlugin.ExceptionDialog - + Select Attachment Velg vedlegg @@ -1757,62 +1764,62 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I ImagePlugin.MediaItem - + Select Image(s) - + Velg bilde(r) - + You must select an image to delete. Du må velge et bilde å slette. - + You must select an image to replace the background with. Du må velge et bilde å erstatte bakgrunnen med. - + Missing Image(s) Bilde(r) mangler - + The following image(s) no longer exist: %s De følgende bilde(r) finnes ikke lenger: %s - + The following image(s) no longer exist: %s Do you want to add the other images anyway? De følgende bilde(r) finnes ikke lenger: %s Vil du likevel legge til de andre bildene? - + There was a problem replacing your background, the image file "%s" no longer exists. Det oppstod et problem ved erstatting av bakgrunnen, bildefilen "%s" finnes ikke lenger. - + There was no display item to amend. - + Det ble ikke vist noe som skulle endres. ImagesPlugin.ImageTab - + Background Color - + Bakgrunnsfarge - + Default Color: - + Standard farge: - + Visible background for images with aspect ratio different to screen. @@ -1820,141 +1827,141 @@ Vil du likevel legge til de andre bildene? MediaPlugin - + <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. <strong>Mediatillegg</strong><br />Mediatillegget tilbyr avspilling av lyd og video. - - - Media - name singular - Media - Media - name plural - Media + name singular + Media - + + Media + name plural + Media + + + Media container title Media - + Load new media. - - - - - Add new media. - + Last ny media-fil. - Edit the selected media. - + Add new media. + Legg til nytt media. - Delete the selected media. - + Edit the selected media. + Rediger valgte media. - Preview the selected media. - + Delete the selected media. + Slett valgte media. - Send the selected media live. - + Preview the selected media. + Forhåndsvis valgte media. + Send the selected media live. + Frem-vis valgte media. + + + Add the selected media to the service. - + Legg valgte media til møteprogram. MediaPlugin.MediaItem - + Select Media - Velg fil + Velg media - + You must select a media file to delete. - Du må velge en fil å slette + Du må velge en media-fil som sakl slettes. - + You must select a media file to replace the background with. Du må velge en fil å erstatte bakgrunnen med. - + There was a problem replacing your background, the media file "%s" no longer exists. Det oppstod et problem ved bytting av bakgrunn, filen "%s" finnes ikke lenger. - + Missing Media File - Fil mangler + Media-fil mangler - + The file %s no longer exists. Filen %s finnes ikke lenger - + Videos (%s);;Audio (%s);;%s (*) Videoer (%s);;Lyd (%s);;%s (*) - + There was no display item to amend. - + Det var ingen vinings element å endre. - + Unsupported File - + Ustøttet fil - + Automatic - + Automatisk - + Use Player: - + Bruk mediaspiller: MediaPlugin.MediaTab - + Available Media Players - + Tilgjengelige mediaspillere - + %s (unavailable) - + %s (uttilgjengelig) - + Player Order - + Spiller rekkeflølge - + Allow media player to be overridden @@ -1962,52 +1969,76 @@ Vil du likevel legge til de andre bildene? OpenLP - + Image Files Bildefiler - + Information - + Informasjon - + Bible format has changed. You have to upgrade your existing Bibles. Should OpenLP upgrade now? - + Bibelformatet er forandret. +Du må oppgradere eksiterende bibler. +Vil du at OpenLP skal oppgradere nå? OpenLP.AboutForm - + Credits - Credits + Medvirkende - + License - + Lisens - + 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 programmet er fri programvare; du kan redistribuere det og/eller endre det under betingelsene i GNU General Public License versjon 2, som publisert av Free Software Foundation. - + 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 programmet er distribuert i det håp at det vil være nyttig, men UTEN NOEN FORM FOR GARANTI; selv uten underforståtte garantier om SALGBARHET eller ANVENDELIGHET FOR ET SPESIELT FORMÅL. Se nedenfor for flere detaljer. - + + Copyright © 2004-2012 %s +Portions copyright © 2004-2012 %s + + + + + 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. + +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 volunteering by using the button below. + + + + + Volunteer + + + + Project Lead %s @@ -2026,12 +2057,20 @@ Packagers Translators Afrikaans (af) %s + Czeck (cs) + %s + Danish (da) + %s German (de) %s + Greek (el) + %s English, United Kingdom (en_GB) %s English, South Africa (en_ZA) %s + Spanish (es) + %s Estonian (et) %s French (fr) @@ -2048,13 +2087,15 @@ Translators %s Russian (ru) %s + Swedish (sv) + %s Documentation %s Built With Python: http://www.python.org/ - Qt4: http://qt.nokia.com/ + Qt4: http://qt.digia.com/ PyQt4: http://www.riverbankcomputing.co.uk/software/pyqt/intro Oxygen Icons: http://oxygen-icons.org/ @@ -2069,267 +2110,185 @@ Final Credit on the cross, setting us free from sin. We bring this software to you for free because He has set us free. - Prosjektleder -%s - -Utviklere -%s - -Bidragsytere -%s - -Testere -%s - -Pakkere -%s - -Oversettere -Afrikaans (af) -%s -Tysk (de) -%s -Engelsk, Storbritannia (en_GB) -%s -Engelsk, Sør-Afrika (en_ZA) -%s -Estisk (et) -%s -Fransk (fr) -%s -Ungarsk (hu) -%s -Japansk (ja) -%s -Norsk - bokmål (nb) -%s -Nederlandsk (nl) -%s -Portogisisk, Brazil (pt_BR) -%s -Russisk (ru) -%s - -Dokumentasjon -%s - -Laget med -Python: http://www.python.org/ -Qt4: http://qt.nokia.com/ -PyQt4: http://www.riverbankcomputing.co.uk/software/pyqt/intro -Oxygen Icons: http://oxygen-icons.org/ - -Endelig takk -"For så høyt har Gud elsket verden, at han -ga sin Sønn, den enbårne, for at hver den -som tror på ham, ikke skal gå fortapt, men -ha evig liv." -- Joh 3:16 - -Og sist, men ikke minst, takken går til Gud vår -far, for at han sendet oss sin Sønn for å dø -på korset, og satte oss fri fra synd. Vi gir deg -dette programmet fritt for omkostninger, -fordi han har satt oss fri. - - - - Copyright © 2004-2012 %s -Portions copyright © 2004-2012 %s - - - - - 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. - -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 volunteering by using the button below. - - - - - Volunteer OpenLP.AdvancedTab - + UI Settings Innstillinger for brukergrensesnitt - + Number of recent files to display: Antall nylig brukte filer å vise. - + Remember active media manager tab on startup Husk aktiv mediebehandlerfane ved oppstart - + Double-click to send items straight to live - Dobbelklikk for å sende saker direkte live + Dobbelklikk for å sende poster direkte til fremvisning - + Expand new service items on creation - Utvid nye møteenheter ved opprettelse + Utvid nye programposter ved opprettelse - + Enable application exit confirmation Aktiver avsluttningsbekreftelse - + Mouse Cursor - + Musepekeren - + Hide mouse cursor when over display window - + Sjul musepekeren når den er over visningsvinduet - + Default Image - + Standard bilde - + Background color: - Bakgrunnsfarge: + Bakgrunnsfarge: - + Image file: - + Bilde fil: - + Open File - + Åpne fil - + Advanced - + Avansert - + Preview items when clicked in Media Manager - + Forhåndsvis element som er markert i Media Manager - + Click to select a color. - + Klikk for å velge farge. - + Browse for an image file to display. - + Søk etter en bildefild som skal vises. - + Revert to the default OpenLP logo. - + Gå tilbake til standar 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. - + 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 @@ -2339,94 +2298,94 @@ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for - + Syntax error. - + Data Location - + Current path: - + Custom path: - + Browse for new data file location. - + Set the data location to the default. - + Cancel - + Avbryt - + 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 - + OpenLP data directory was not found %s @@ -2439,7 +2398,7 @@ Click "Yes" to reset the data directory to the default location. - + Are you sure you want to change the location of the OpenLP data directory to: %s @@ -2448,7 +2407,7 @@ The data directory will be changed when OpenLP is closed. - + WARNING: The location you have selected @@ -2462,62 +2421,64 @@ appears to contain OpenLP data files. Do you wish to replace these files with t OpenLP.ExceptionDialog - + Error Occurred - + Feil oppstod - + 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! Det oppstod et problem i OpenLP som ikke kunne opprettes. Teksten i boksen nedenfor inneholder innformsjon som kan være nyttig for OopenLP's utviklere. Så venligst send en e-post til bugs@openlp.org sammen med en detaljert beskrivels om hva du gjorde da problemet oppstod. - + Send E-Mail - + Send e-post - + Save to File - + Lagre til fil - + Please enter a description of what you were doing to cause this error (Minimum 20 characters) - + Venligst send en beskrivelse av hva du gjorde som forårsaket feilen +(Minimum 20 tegn.) - + Attach File - + Legg ved fil - + Description characters to enter : %s - + Skriv forklarende tekst: %s OpenLP.ExceptionForm - + Platform: %s - + Pattform: %s + - + Save Crash Report - + Lagre krasj raport - + Text files (*.txt *.log *.text) - + Tekst filer (*.txt *.log *.text) - + **OpenLP Bug Report** Version: %s @@ -2532,10 +2493,23 @@ Version: %s --- Library Versions --- %s - + **OpenLP feilrapport** +Versjon: %s + +--- Detaljer av feilen. --- + +%s + + --- Tilbakesporing av feilen --- +%s +--- System informasjon --- +%s +--- Bibliotek versjoner --- +%s + - + *OpenLP Bug Report* Version: %s @@ -2551,241 +2525,253 @@ Version: %s %s Please add the information that bug reports are favoured written in English. - + **OpenLP feilrapport** +Versjon: %s + +--- Detaljer av feilen. --- + +%s + + --- Tilbakesporing av feilen --- +%s +--- System informasjon --- +%s +--- Bibliotek versjoner --- +%s OpenLP.FileRenameForm - + File Rename - + Skift navn på filen - + New File Name: - + Nytt filnavn: - + File Copy - + Kopier fil OpenLP.FirstTimeLanguageForm - + Select Translation - + Velg oversetting - + Choose the translation you'd like to use in OpenLP. - + Velg oversetting som du vil bruke i OppenLP. - + Translation: - + Oversetting: OpenLP.FirstTimeWizard - + Songs - + Sanger - + First Time Wizard - + Første gangs veiviser - + Welcome to the First Time Wizard - + Velkommen til "Første gangs veiviser" - + Activate required Plugins - + Aktiver nødvendige programtillegg. - + Select the Plugins you wish to use. - - - - - Bible - + Velg tillegg som du ønsker å bruke. - Images - Bilder + Bible + Bibel - - Presentations - + + Images + Bilder - Media (Audio and Video) - + Presentations + Presentasjoner - Allow remote access - + Media (Audio and Video) + Media (Lyd og video) - Monitor Song Usage - + Allow remote access + Tillate fjernkontroll - Allow Alerts - - - - - Default Settings - - - - - Downloading %s... - - - - - Download complete. Click the finish button to start OpenLP. - - - - - Enabling selected plugins... - + Monitor Song Usage + Overvåke bruk av sanger - 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. - + Allow Alerts + Tillate varsel-meldinger - Set up default settings to be used by OpenLP. - + Default Settings + Standardinnstillinger + + + + Downloading %s... + Nedlasting %s... + + + + Download complete. Click the finish button to start OpenLP. + Nedlasting fullført. Klikk på ferdig knappen for å starte OpenLP. + + + + Enabling selected plugins... + Aktiverer programtillegg... + + + + No Internet Connection + Mangler internett tilkobling + + + + Unable to detect an Internet connection. + Umulig å oppdage en internett-tilkobling. + + + + Sample Songs + Eksempel-sanger + + + + Select and download public domain songs. + Velg og last ned public domain PD sanger. + + + + Sample Bibles + Eksempel-bibler + + + + Select and download free Bibles. + Velg og last ned gratis bibler. + + + + Sample Themes + Eksempel tema + + + + Select and download sample themes. + Velg og last ned eksempel tema. - Default output display: - + Set up default settings to be used by OpenLP. + Sett opp standard-innstillinger for OpenLP. - Select default theme: - + Default output display: + Standard skjerm: - Starting configuration process... - - - - - This wizard will help you to configure OpenLP for initial use. Click the next button below to start. - - - - - Setting Up And Downloading - - - - - Please wait while OpenLP is set up and your data is downloaded. - - - - - Setting Up - - - - - Click the finish button to start OpenLP. - - - - - Download complete. Click the finish button to return to OpenLP. - - - - - Click the finish button to return to OpenLP. - - - - - Custom Slides - + Select default theme: + Velg standard tema: - Finish - + Starting configuration process... + Starter konfigurasjonsprosessen.. - + + This wizard will help you to configure OpenLP for initial use. Click the next button below to start. + Denne veiviseren hjelper deg å sette opp OpenLP til førstegangs bruk. Klikk neste for å starte. + + + + Setting Up And Downloading + Setter opp og laster ned + + + + Please wait while OpenLP is set up and your data is downloaded. + Venligst vent mens OpenLP blir satt opp og data lastet ned. + + + + Setting Up + Setter opp + + + + Click the finish button to start OpenLP. + Klikk ferdig knappen for å starte OpenLP. + + + + Download complete. Click the finish button to return to OpenLP. + Nedlastingen er ferdig. Klikk ferdig for å gå tilbake til OpenLP. + + + + Click the finish button to return to OpenLP. + Klikk ferdig for å gå tilbake til OpenLP. + + + + Custom Slides + Egendefinerte lysbilder + + + + Finish + Ferdig + + + 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. @@ -2795,278 +2781,278 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can OpenLP.FormattingTagDialog - + Configure Formatting Tags - + Konfigurere formateringskoder - + Edit Selection - + Redigere valg - + Save - + Lagre - + Description - + Beskrivelse - + Tag - + Kode - + Start HTML - + Start HTML - + End HTML - + Slutt HTML OpenLP.FormattingTagForm - + Update Error - + Feil ved oppdateringen - + Tag "n" already defined. - + Koden "n" er allrede definert. - + New Tag - + Ny kode - + <HTML here> - + <Sett inn Hypertekst her> - + </and here> - + </og her> - + Tag %s already defined. - + Merket %s er allerede definert OpenLP.FormattingTags - + Red - + Rød - + Black - + Svart - + Blue - + Blå - + Yellow - + Gul - + Green - + Grønn - + Pink - + Rosa - + Orange - + Oransje - + Purple - + Lilla - + White - + Hvit - + Superscript - + Overstilt tekst - + Subscript - + Understilt tekst - + Paragraph - + Avsnitt - + Bold - + Fet - + Italics - + Skråstilt - + Underline - + Understrek - + Break - + Mellomrom OpenLP.GeneralTab - - - General - - + General + Generell + + + Monitors - + Skjermer - + Select monitor for output display: - + Velg skjerm som innhold skal vises på: - + Display if a single screen - + Vis dersom enkel skjerm - + Application Startup Programoppstart - + Show blank screen warning - + Vis svart skjerm - + Automatically open the last service Åpne forrige møteplan automatisk - + Show the splash screen - + Vis logo - + Application Settings Programinnstillinger - + Prompt to save before starting a new service - + Spør om å lagre før du starter en ny møteplan - + Automatically preview next item in service - - - - - sec - + Automatisk forhåndsvis neste post i møteplanen + sec + sekunder + + + CCLI Details - + CCLI-detaljer - + SongSelect username: - + SongSelect brukernavn: - + SongSelect password: - - - - - X - + SongSelect passord: - Y - + X + X - Height - + Y + Y - Width - - - - - Check for updates to OpenLP - - - - - Unblank display when adding new live item - - - - - Timed slide interval: - + Height + Høyde - Background Audio - + Width + Bredde - + + Check for updates to OpenLP + Se etter oppdateringer til OpenLP + + + + Unblank display when adding new live item + Gjør skjerm synlig når nytt element blir lagt til + + + + Timed slide interval: + Tidsbestemt lysbilde-intervall: + + + + Background Audio + Bakgrunnslyd + + + Start background audio paused - + Start med bakgrunnsmusikk pauset @@ -3074,12 +3060,12 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can - + Override display position: - + Repeat track list @@ -3107,503 +3093,511 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can OpenLP.LanguageManager - + Language - + Språk - + Please restart OpenLP to use your new language setting. - + Vennligst start OpenLP på nytt for å bruke de nye språkinnstillingene. OpenLP.MainDisplay - + OpenLP Display - + OpenLP Display OpenLP.MainWindow - + &File &Fil - + &Import &Importer - + &Export &Eksporter - - - &View - - - M&ode - + &View + &Vis - &Tools - + M&ode + M&odus + &Tools + &Verktøy + + + &Settings &Innstillinger - + &Language - + &Språk - + &Help &Hjelp - + Media Manager - + Mediabehandler - + Service Manager - + Møteplanlegger - + Theme Manager - + Temabehandler - + &New - &Ny + &Ny - + &Open - + &Åpne - + Open an existing service. - + Åpne en allerede eksisterende møteprogram. - + &Save - &Lagre + &Lagre - + Save the current service to disk. - + Lagre gjeldene møteprogram til disk. - + Save &As... - + Lagre &som - + Save Service As - + Lagre tjeneste som... - + Save the current service under a new name. - + Lagre gjeldene møteprogram med et nytt navn. - + E&xit &Avslutt - + Quit OpenLP - + Avslutt OpenLP - + &Theme - + &Tema - + &Configure OpenLP... - + &Sett opp OpenLP - + &Media Manager - + &Mediebehandler - + Toggle Media Manager - + Endre til mediebehandler - + Toggle the visibility of the media manager. - + Endrer visning av mediebehandler - + &Theme Manager - + &Temabehandler - + Toggle Theme Manager - + Endre til temabehandler - + Toggle the visibility of the theme manager. - + Endrer visning av temabehandler - + &Service Manager - + &Møteprogram-behandler - + Toggle Service Manager - + Endre til møteprogram-behandler - + Toggle the visibility of the service manager. - + Endrer visning av møteprogram-behandler - + &Preview Panel &Forhåndsvisningspanel - + Toggle Preview Panel Vis forhåndsvisningspanel - + Toggle the visibility of the preview panel. - + Bytt visning av forhåndsvisningspanel. - + &Live Panel - + &Fremvisningspanel - + Toggle Live Panel - + Vis Fremvisningspanel - + Toggle the visibility of the live panel. - + Bytt visning av fremvisningspanel - + &Plugin List - + &Tilleggsmoduler - + List the Plugins - + List opp tilleggsmoduler - + &User Guide &Brukerveiledning - - - &About - - + &About + &Om + + + More information about OpenLP - + Mer informasjon om OpenLP - + &Online Help - + &Online hjelp - + &Web Site - + &Nettside - + Use the system language, if available. - + Bruk systemspråk, dersom tilgjengelig - + Set the interface language to %s - + Sett brukerspråk til %s - + Add &Tool... - + Legg til &verktøy - + Add an application to the list of tools. - + Legg til en applikasjon i verktøylisten - + &Default - + &Standar - + Set the view mode back to the default. - - - - - &Setup - + Tilbakestill programmet til standard visning. - Set the view mode to Setup. - + &Setup + &Planlegging - - &Live - + + Set the view mode to Setup. + Sett progammet i planleggingmodus. - Set the view mode to Live. - + &Live + &Fremvisning - + + Set the view mode to Live. + Sett programmet i fremvisningsmodus + + + 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/. - + Versjon %s av OpenLP er no tilgjengelig for nedlasting (du kjører versjon %s) + +Du kan laste ned siste versjon fra http://openlp.org/. - + OpenLP Version Updated - + OpenLp er oppdatert - + OpenLP Main Display Blanked - + OpenLP visningsskjerm er avslått - + The Main Display has been blanked out - + Visningsskjerm er avslått - + Default Theme: %s - + Standard tema: %s - + English Please add the name of your language here Norwegian - + Configure &Shortcuts... - + Konfigurer &hurtigtaster - + Close OpenLP - + Avslutt OpenLP - + Are you sure you want to close OpenLP? - + Er du sikker på at du vil avslutte OpenLP? - + Open &Data Folder... - + Opne &datakatalog - + Open the folder where songs, bibles and other data resides. - + Opne mappen der sanger, bibler og andre data lagres. - + &Autodetect - + Oppdag &automatisk - + Update Theme Images - + Oppdater temabilder - + Update the preview images for all themes. - + Oppdater forhåndsvisningsbilder for all tema. - + Print the current service. - + Skriv ut gjeldende møteprogram. - + &Recent Files - + Sist brukte &møteprogram - + L&ock Panels - + L&ås paneler - + Prevent the panels being moved. - + Forhindrer at paneler blir flyttet. - + Re-run First Time Wizard - + Kjør første gangs veiviseren på nytt - + Re-run the First Time Wizard, importing songs, Bibles and themes. - + Kjør første gangs veiviseren på nytt og importer sanger, bibler og tema. - + Re-run First Time Wizard? - + Vil du kjøre første gangs veiviseren på nytt? - + 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. - + Vil du kjøre første gangs veiviseren på nytt? + +Dersom du kjører veiviseren på nytt du vil sansynlig gjøre forandringer i gjeldende oppsett i OpenLP og legge til sanger i eksisterende sangliste og bytte gjeldene tema. - + Clear List Clear List of recent files - + Tøm listen - + Clear the list of recent files. - + Tømmer listen over sist brukte møteprogram. - + Configure &Formatting Tags... - + Konfigurerer &formateringskoder - + Export OpenLP settings to a specified *.config file - + Eksporter OpenLP-innstillingene til en spesifisert *.config-fil - + Settings - + Innstillinger - + Import OpenLP settings from a specified *.config file previously exported on this or another machine - + Importer OpenLP-innstillier fra en spesifisert *.config fil som tidlegere er eksportert fra denne eller en annen datamaskin. - + Import settings? - + Vil du importere instillinger? - + Are you sure you want to import settings? Importing settings will make permanent changes to your current OpenLP configuration. Importing incorrect settings may cause erratic behaviour or OpenLP to terminate abnormally. - + Er du sikker på at du vil importere instillinger? + +Å iportere innstillinger vil gjøre permanente forandringer i din nåværende OpenLP konfigurasjon. + +Dersom du importerer feil instillinger kan føre til uberegnelig opptreden eller OpenLP avsluttes unormalt. - + Open File - + Opne fil - + OpenLP Export Settings Files (*.conf) - + OpenLP-innstillingsfiler (*.conf) - + Import settings - + Importer innstillinger - + OpenLP will now close. Imported settings will be applied the next time you start OpenLP. - + OpenLP vil nå avsluttes. Importerte instillinger blir aktive ved neste oppstart av OpenLP. - + Export Settings File - + Ekstorter innstillingsfil - + OpenLP Export Settings File (*.conf) - + OpenLP-innstillingsfiler (*.conf) - + New Data Directory Error - + The file you selected does appear to be a valid OpenLP settings file. Section [%s] is not valid @@ -3612,12 +3606,12 @@ Processing has terminated and no changed have been made. - + Copying OpenLP data to new data directory location - %s - Please wait for copy to finish - + OpenLP Data directory copy failed %s @@ -3627,108 +3621,113 @@ Processing has terminated and no changed have been made. OpenLP.Manager - + Database Error - + Databasefeil - + 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 - + Databasen som vart forsøkt lastet er laget i en nyere versjon av OpenLP. Databasen har versjon %d, OpenLP krever versjon %d. Databasen blir ikke lastet. + +Database: %s - + OpenLP cannot load your database. Database: %s - + OpenLP kan ikke laste databasen. + +Database: %s OpenLP.MediaManagerItem - + No Items Selected - + Ingen poster er valgt - + &Add to selected Service Item - + &Legg til i valgt post i møteprogrammet - + You must select one or more items to preview. - + Du må velge en eller flere poster som skal forhåndsvises. - + You must select one or more items to send live. - + Du må velge en eller flere poster som skal fremvises. - + You must select one or more items. - + Du må velge en eller flere poster. - + You must select an existing service item to add to. - + Du må velge en eksiterende post i møteprogrammet som skal legges til. - + Invalid Service Item - + Ugyldig møteprogrampost - + You must select a %s service item. - + Du må velge en post av typen %s i møteprogrammet. - + You must select one or more items to add. - + Du må velge en eller flere poster som skal legges til. - + No Search Results - + Ingen søkeresultat - + Invalid File Type - + Ugyldig filtype - + Invalid File %s. Suffix not supported - + Ugyldig fil %s. +Fil-endelsen støttes ikke. &Clone - + &Klone - + Duplicate files were found on import and were ignored. - + Like versjoner av filene ble funnet ved importen og ble ignorert. OpenLP.OpenLyricsImportError - + <lyrics> tag is missing. - + <verse> tag is missing. @@ -3736,712 +3735,712 @@ Suffix not supported OpenLP.PluginForm - + Plugin List - + Tillegsmoduler - + Plugin Details - + Moduldetaljer - + Status: - + Status - + Active Aktiv - + Inactive - + Inaktive - + %s (Inactive) - + %s (Inaktiv) - + %s (Active) - + %s (Aktiv) - + %s (Disabled) - + %s (Deaktivert) OpenLP.PrintServiceDialog - + Fit Page - + Tilpass siden - + Fit Width - + Tilpass bredden OpenLP.PrintServiceForm - + Options - + Alternativ - + Copy - + Kopier - + Copy as HTML - + Kopier som HTML - + Zoom In - + Zoom inn - + Zoom Out - + Zoom ut - + Zoom Original - + Tilbakestill zoom - + Other Options - + Andre alternativ - + Include slide text if available - + Innkludere sidetekst om tilgjengelig - + Include service item notes - + Inkluder notater - + Include play length of media items - + Inkluder spillelengd for mediaposter - + Add page break before each text item - + Legg til sideskift for kvar tekst-post - + Service Sheet - + Møteprogram - + Print - - - - - Title: - + Skriv ut + Title: + Tittel: + + + Custom Footer Text: - + Egendefinert bunntekst: OpenLP.ScreenList - + Screen - + Skjerm - + primary - + primær OpenLP.ServiceItem - + <strong>Start</strong>: %s - + <strong>Start</strong>: %s - + <strong>Length</strong>: %s - + <strong>Lengde</strong>: %s OpenLP.ServiceItemEditForm - + Reorder Service Item - + Ommorganisere programpost OpenLP.ServiceManager - + Move to &top - + Flytt &øverst - + Move item to the top of the service. - + Legg posten øverst på møteprogramet - + Move &up - + Flytt &opp - + Move item up one position in the service. - + Flytter posten opp et steg. - + Move &down - + Flytt &ned - + Move item down one position in the service. - + Flytter posten et steg ned. - + Move to &bottom - + Flytt neder&st - + Move item to the end of the service. - + Legg posten sist på møteprogrammet. - + &Delete From Service - + &Slett fra møteprogramet - + Delete the selected item from the service. - + Slett valgte post frå programmet. - + &Add New Item - + &Legg til ny post - + &Add to Selected Item - + Legg til i &valgt post - + &Edit Item - + &Redigere post - + &Reorder Item - + &Omorganiser post - + &Notes - + &Notater - + &Change Item Theme - + &Skift postens tema - + OpenLP Service Files (*.osz) - + OpenLP møteprogramfiler (*.osz) - + File is not a valid service. The content encoding is not UTF-8. - + Filen er ikke gyldig møteprogramfil. +Innholdet er ikke etter UTF-8 koding. - + File is not a valid service. - + Filen er ikke gyldig møteprogram-fil. - + Missing Display Handler - + Visningsmodul mangler - + Your item cannot be displayed as there is no handler to display it - + Posten kan ikke vises fordi visningsmodul mangler - + Your item cannot be displayed as the plugin required to display it is missing or inactive - + Posten kan ikke vises fordi nødvendig programtillegg enten mangler eller er inaktiv. - + &Expand all - + &Utvid alle - + Expand all the service items. - + Utvider alle postene i møteprogrammet. - + &Collapse all - + &Kollapse alle - + Collapse all the service items. - + Kollapse alle poster i programmet. - + Open File - + Åpne fil - + Moves the selection down the window. - + Flytter utvalget nedover vinduet. - + Move up - + Flytte opp - + Moves the selection up the window. - + Flytter utvalget oppover vinduet. - + Go Live - + Send til fremvisning - + Send the selected item to Live. - + Sender valgt element til fremvisning. - + &Start Time - + &Starttid - + Show &Preview - + &Forhåndsvis - + Modified Service - + Endret møteprogram - + The current service has been modified. Would you like to save this service? - + Gjeldende møteprogram er endret. Vil du lagre? - + Custom Service Notes: - + Egne møteprogram notater: - + Notes: - + Notater: - + Playing time: - + Spilletid: - + Untitled Service - + Uten tittel; møteprogram - + File could not be opened because it is corrupt. - + Filen kunne åpnes fordi den er skadet. - + Empty File - + Tom fil - + This service file does not contain any data. - + Denne møteprogram filen er tom. - + Corrupt File - + Skadet fil - + Load an existing service. - + Åpne en eksisterende møteprogramfil - + Save this service. - + Lagre dette møteprogrammet. - + Select a theme for the service. - + Velg et tema for møteprogrammet. - + This file is either corrupt or it is not an OpenLP 2.0 service file. - - - - - Service File Missing - - - - - Slide theme - + Denne filen er enten skadet eller det er ikke en OpenLP 2,0 møtprogram fil. - Notes - + Slide theme + Lysbilde-tema - + + Notes + Notater + + + Edit - + Service copy only - + Error Saving File - + There was an error saving your file. - - File missing from service + + Service File(s) Missing + + + + + The following file(s) in the service are missing: +%s - %s - -Continue saving? +These files will be removed if you continue to save. OpenLP.ServiceNoteForm - + Service Item Notes - + Programpost notater OpenLP.SettingsForm - + Configure OpenLP - + Konfigurer OpenLP OpenLP.ShortcutListDialog - + Action - + Handling - + Shortcut - + Hurtigtast - + Duplicate Shortcut - + Dublett - + The shortcut "%s" is already assigned to another action, please use a different shortcut. - + Hurtigtasten "%s" er allerede brukt til en annen handling, bruk en annen hurtigtast. - + Alternate - + Alternativ - + Select an action and click one of the buttons below to start capturing a new primary or alternate shortcut, respectively. - + Velg en handling og trykk på knappene nedenfor for å lage en ny primær eller en alternativ hurtigtast. - + Default - + Standard - + Custom - + Egendefinert - + Capture shortcut. - + Opprette hurtigtast. - + Restore the default shortcut of this action. - + Tilbakestill til standard hurtigtast for denne handlingen. - + Restore Default Shortcuts - + Tilbakestill til standard hurtigtast - + Do you want to restore all shortcuts to their defaults? - + Ønsker du å tilbakestille alle hurtigtaster til standard verdier? - + Configure Shortcuts - + Konfigurer hurtigtaster OpenLP.SlideController - + Hide - + Sjul - + Go To - + Gå til - + Blank Screen - + Blanke skjerm - + Blank to Theme - + Blanke til tema - + Show Desktop - + Vis skrivebord - + Previous Service - + Forrige møteprogram - + Next Service - + Neste møteprogram - + Escape Item - + Avbryt post - + Move to previous. - + Flytt til forrige. - + Move to next. - + Flytt til neste - + Play Slides - + Spill sider - + Delay between slides in seconds. - + Ventetid mellom bildene i sekunder. - + Move to live. - + Flytt til fremvisning. - + Add to Service. - + Legg til i møteprogram. - + Edit and reload song preview. - + Rediger og oppdater forhåndsvisning. - + Start playing media. - + Start avspilling av media. - + Pause audio. - + Pause lyden. - + Pause playing media. - + Pause avspilling av media. - + Stop playing media. - + Stopp avspilling av media. - + Video position. - + Videoposisjon. - + Audio Volume. - + Lydvolum - + Go to "Verse" - + Gå til "Vers" - + Go to "Chorus" - + Gå til "Refreng" - + Go to "Bridge" - + Gå til "Mellomspill" - + Go to "Pre-Chorus" - + Gå til "Bro" - + Go to "Intro" - + Gå til "Intro" - + Go to "Ending" - + Gå til "Avslutt" - + Go to "Other" - + Gå til "Annet" - + Previous Slide - + Next Slide - + Pause Audio - + Background Audio - + Bakgrunnslyd - + Go to next audio track. - + Tracks @@ -4449,284 +4448,284 @@ Continue saving? OpenLP.SpellTextEdit - + Spelling Suggestions - + Staveforslag - + Formatting Tags - + Formateringstagger - + Language: - + Språk: OpenLP.StartTimeForm - - - Hours: - - - Minutes: - + Hours: + Timer: - Seconds: - - - - - Item Start and Finish Time - + Minutes: + Minutter: - Start - + Seconds: + Sekunder: + + + + Item Start and Finish Time + Start og sluttid - Finish - + Start + Start + Finish + Slutt + + + Length - + Lengde - + Time Validation Error - + Tidskontrollfeil - + Finish time is set after the end of the media item - + Sluttiden er satt til etter slutten av mediaposten - + Start time is after the finish time of the media item - + Starttiden er etter sluttiden av mediaposten - + Theme Layout - + Temalayout - + The blue box shows the main area. - + Den blå ruten viser hovedområdet. - + The red box shows the footer. - + Den røde ruten viser bunnteksten. OpenLP.ThemeManager - + Create a new theme. - + Lag et nytt tema. - + Edit Theme - + Rediger tema - + Edit a theme. - + Rediger et tema. - + Delete Theme - + Slett tema - + Delete a theme. - + Slett et tema. - + Import Theme - + Importer tema - + Import a theme. - + Importer et tema. - + Export Theme - + Eksporter tema - + Export a theme. - + Eksporter et tema. - + &Edit Theme - + &Rediger tema - + &Delete Theme - + &Slett tema - + Set As &Global Default - + Sett som &globalt tema - + %s (default) - + %s (standard) - + You must select a theme to edit. - + Du må velge et tema å redigere. - + You are unable to delete the default theme. - Du kan ikke slette det globale temaet. + Du kan ikke slette standard tema. - + Theme %s is used in the %s plugin. - + Tema %s er i bruk i programmodulen %s. - + You have not selected a theme. - + Du har ikke valgt et tema. - + Save Theme - (%s) - + Lagre tema -(%s) - + Theme Exported - + Tema eksportert - + Your theme has been successfully exported. - + Temaet har blitt eksportert uten problem. - + Theme Export Failed - + Temaeksporten var mislykket - + Your theme could not be exported due to an error. - + Temaet kunne ikke eksporteres på grunn av en feil. - + Select Theme Import File - + Velg en tema importfil - + File is not a valid theme. Filen er ikke et gyldig tema. - + &Copy Theme - + &Kopier tema - + &Rename Theme - + &Endre navn på tema - + &Export Theme - + &Eksporter tema - + You must select a theme to rename. - + Du må velge et tema som skal endre navn. - + Rename Confirmation - + Stadfest navnendring - + Rename %s theme? - + Endre navn på tema %s? - + You must select a theme to delete. - + Du må velge et tema som skal slettes. - + Delete Confirmation - + Stadfest sletting - + Delete %s theme? - + Slett %s tema? - + Validation Error - + Kontrollfeil - + A theme with this name already exists. - + Et tema med dette navnet finnes allerede. - + OpenLP Themes (*.theme *.otz) - + OpenLP tema (*.theme *.otz) - + Copy of %s Copy of <theme name> - + Kopi av %s - + Theme Already Exists - + Theme %s already exists. Do you want to replace it? @@ -4734,312 +4733,312 @@ Continue saving? OpenLP.ThemeWizard - + Theme Wizard - + Tema veiviser - + Welcome to the Theme Wizard - + Velkommen til tema-veiviseren - + Set Up Background - + Sett opp bakgrunn - + Set up your theme's background according to the parameters below. - + Sett opp tema-bakgrunn i henhold til parameterne nedenfor - + Background type: - + Bakgrunns-type: - + Solid Color - + Ensfarget - + 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: - + Gradient + Color: + Farge: + + + + Gradient: + Gradient: + + + + Horizontal + Horisontal + + + + Vertical + Vertikal + + + + Circular + Sirkulær + + + + Top Left - Bottom Right + Øverst til venstre - Nederst til høyre + + + + Bottom Left - Top Right + Nederst til venstre - Øverst til høyre + + + + Main Area Font Details + Fontdetaljer for hovudfeltet + + + + Define the font and display characteristics for the Display text + Angi skriftstørrelsen og egenskaper for visningsteksten + + + + Font: + Font: + + + Size: - + Størrelse - + Line Spacing: - + Linjeavstand: - + &Outline: - + &Kontur: - + &Shadow: - - - - - Bold - + &Skygge: + Bold + Fet + + + Italic - + Kursiv - + Footer Area Font Details - + Fontdetaljer for bunntekstområdet - + Define the font and display characteristics for the Footer text - + Angi skriftstørrelsen og egenskaper for bunnteksten - + Text Formatting Details - + Tekstformatering - + Allows additional display formatting information to be defined - + Ytterlige innstillingsmuliger for hvorledes teksten skal vises - + Horizontal Align: - + Vannrett - + Left - + Venstre - + Right - + Høgre - + Center - + Midten - + Output Area Locations - + Plassering av visningsområda - + Allows you to change and move the main and footer areas. - + Her kan du endre plasseringen av hovedområdet og bunnteksten. - + &Main Area - + &Hovedområdet - + &Use default location - + &Bruk standard plassering - + X position: - + X posisjon: - + px - + px - + Y position: - + Y posisjon: - + Width: - + Bredde - + Height: - + Høyde - + Use default location - + Bruk standard plassering - + Theme name: - + Tema navn: - + Edit Theme - %s - + Rediger 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 veiviseren vil hjelpe deg å lage og redigere dine temaer. Klikk på Neste-knappen under for å starte prosessen med å sette opp din bakgrunn. - + Transitions: - + Overganger: - + &Footer Area - + &Bunntekst - + Starting color: - + Startfarge: - + Ending color: - + Sluttfarge: - + Background color: - Bakgrunnsfarge: + Bakgrunnsfarge: - + Justify - + Finjuster - + Layout Preview - + Forhåndsvisning av layout - + Transparent - + Preview and Save - + Preview the theme and save it. - + (approximately %d lines per slide) - + Background Image Empty - + You have not selected a background image. Please select one before continuing. - + Select Image - + Theme Name Missing - + There is no name for this theme. Please enter one. - + Theme Name Invalid - + Invalid theme name. Please enter one. @@ -5047,645 +5046,645 @@ Continue saving? OpenLP.ThemesTab - + Global Theme - + Globalt tema - + Theme Level - + Temanivå - + S&ong Level - + S&angnivå - + 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. - + Bruker temaet fra hver sang i databasen. Hvis en sang ikke har et tema tilknyttet, brukes program tema. Hvis møteprogrammet ikke har et tema, brukes det globale tema. - + &Service Level - + &Programnivå - + 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. - + Bruker temaet fra møteprogrammet og ignorer individuelle sangtema. Dersom det ikke er satt opp spesielt tema for møtet bruk globalt tema. - + &Global Level - + &Globalt nivå - + Use the global theme, overriding any themes associated with either the service or the songs. - + Bruker globalt tema, og overstyrer eventuelle temaer knyttet enten møteprogrammet eller sangene. - + Themes - + Temaer OpenLP.Ui - + Error - - - - - About - + Feil - &Add - + About + Om - Advanced - + &Add + &Legg til - All Files - + Advanced + Avansert - Bottom - + All Files + Alle filer - Browse... - + Bottom + Bunn - Cancel - + Browse... + Bla - CCLI number: - + Cancel + Avbryt + CCLI number: + CCLI nummer: + + + Create a new service. - + Lag ett nytt møteprogram. - + &Delete - + &Slett - + &Edit &Rediger - + Empty Field - + Tomt felt - + Export - + Eksportere - + pt Abbreviated font pointsize unit - - - - - Image - Bilde + pt - Import - + Image + Bilde - - Live - + + Import + Importere + Live + Fremvisning + + + Live Background Error - + Fremvisning bakgrunns feil - + Load - - - - - Middle - + Laste - New - + Middle + Midten - New Service - + New + Nytt - New Theme - + New Service + Nytt møteprogram - - No File Selected - Singular - + + New Theme + Nytt tema - No Files Selected - Plural - + No File Selected + Singular + Ingen fil er valgt - No Item Selected - Singular - + No Files Selected + Plural + Inger filer er valgt - No Items Selected - Plural - + No Item Selected + Singular + Ingen post er valgt - openlp.org 1.x - + No Items Selected + Plural + Ingen poster er valgt + openlp.org 1.x + openlp.org 1.x + + + OpenLP 2.0 - + OpenLP 2.0 - + Preview - + Forhåndsvisning - + Replace Background - + Erstatt bakgrunn - + Reset Background - + Tilbakestill bakgrunn - + s The abbreviated unit for seconds - - - - - Save && Preview - + s + Save && Preview + Lagre && Forhåndsvisning + + + Search - + Søk - + You must select an item to delete. - + Du må velge en post å slette. - + You must select an item to edit. - - - - - Save Service - + Du må velge en post å redigere. + Save Service + Lagre møteprogram + + + Service - + Møteprogram - + Start %s - - - - - Theme - Singular - + Start %s + Theme + Singular + Tema + + + Themes Plural - + Temaer - + Top - + Topp - + Version - + Versjon - + Delete the selected item. - + Slett valgte post. - + Move selection up one position. - + Flytt valgte ett steg opp. - + Move selection down one position. - + Flytt valgte ett steg ned - + &Vertical Align: - - - - - Finished import. - + &Loddrett justering: - Format: - + Finished import. + Import fullført. - - Importing - + + Format: + Format: - Importing "%s"... - + Importing + Importerer + Importing "%s"... + Importerer "%s"... + + + Select Import Source Velg importeringskilde - + Select the import format and the location to import from. - + Velg importformat og plasseringen du vil importere 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. - + Openlp.org 1.x import rutinen har blitt deaktivert på grunn av en manglende Python-modul. Hvis du ønsker å bruke denne import rutinen, må du installere "python-SQLite" modulen. - + Open %s File - - - - - %p% - + Åpne %s fil + %p% + %p% + + + Ready. - + Klar - + Starting import... - + Starter å importere... - + You need to specify at least one %s file to import from. A file type e.g. OpenSong - + Du må angi minst én %s fil som du vil importere fra. Welcome to the Bible Import Wizard - + Velkommen til bibele importveiviseren - + Welcome to the Song Export Wizard - + Velkommen til sang eksportveiviseren - + Welcome to the Song Import Wizard - - - - - Author - Singular - + Velkommen til sang importveiviseren - Authors - Plural - + Author + Singular + Forfatter - - © - Copyright symbol. - + + Authors + Plural + Forfattere - Song Book - Singular - + © + Copyright symbol. + © - Song Books - Plural - + Song Book + Singular + Sangbok - - Song Maintenance - + + Song Books + Plural + Sangbøker + Song Maintenance + Vedlikehold av sanger + + + Topic Singular Emne - + Topics Plural - - - - - Continuous - + Emner - Default - + Continuous + Kontinuerlig - - Display style: - + + Default + Standard + Display style: + Visning-stil: + + + Duplicate Error - + Duplikat feil - + File - - - - - Help - + Fil + Help + Hjelp + + + h The abbreviated unit for hours - + h - + Layout style: - + Layout stil: - + Live Toolbar - + Fremvisning - verktøylinje - + m The abbreviated unit for minutes - + m - + OpenLP is already running. Do you wish to continue? - + OpenLP kjører allerede. Vil du fortsette? - + Settings - + Innstillinger - + Tools - - - - - Unsupported File - + Verktøy - Verse Per Slide - + Unsupported File + Denne filen støttes ikke + Verse Per Slide + Vers pr side + + + Verse Per Line - - - - - View - - - - - Title and/or verses not found - - - - - XML syntax error - + Vers pr linje + View + Vis + + + + Title and/or verses not found + Tittel og/eller vers ikke funnet + + + + XML syntax error + XML syntaksfeil + + + 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 - + Visningsmodus - Play Slides in Loop - + Open service. + Åpne møteprogram + + + + Print Service + Skriv ut møteprogram + + + + Replace live background. + Erstatt fremvisningbakgrunn. + + + + Reset live background. + Tilbakestill fremvisningbakgrunn. + + + + Split a slide into two only if it does not fit on the screen as one slide. + Splitte en side i to bare hvis det ikke passer på skjermen som en side. + + + + Welcome to the Bible Upgrade Wizard + Velkommen til denne bibel oppgradering veiviseren + + + + Confirm Delete + Bekreft slett + Play Slides in Loop + Kontinuerlig visning av sider + + + Play Slides to End - + Vis sider til "siste side" - + Stop Play Slides in Loop - + Stopp kontinuerlig visning - + Stop Play Slides to End - + Stopp visning av sider "til siste side" - + 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 - + Importing Songs @@ -5693,130 +5692,130 @@ Continue saving? OpenLP.core.lib - + %1 and %2 Locale list separator: 2 items - + %1 og %2 - + %1, and %2 Locale list separator: end - + %1, og %2 - + %1, %2 Locale list separator: middle - + %1, %2 - + %1, %2 Locale list separator: start - + %1, %2 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> Programtillegget for presentasjoner </ strong> <br /> Programtillegget gir mulighet til å vise presentasjoner ved hjelp av en rekke ulike programmer. Valget av tilgjengelige presentasjonsprogrammer er tilgjengelig for brukeren i en nedtrekksboks. - + Presentation name singular - + Presentasjon - + Presentations name plural - + Presentasjoner - + Presentations container title - + Presentasjoner - + Load a new presentation. - + Last en ny presentasjon. - + Delete the selected presentation. - + Slett den valgte presentasjonen. - + Preview the selected presentation. - + Forhåndsvis den valgte presentasjonen. - + Send the selected presentation live. - + Fremvis valgte presentasjon - + Add the selected presentation to the service. - + Legg valgte presentasjon til møteprogrammet. PresentationPlugin.MediaItem - + Select Presentation(s) - + Velg presentasjon(er) - + Automatic - + Automatisk - + Present using: - + Presenter ved hjelp av: - + File Exists - + Filen eksisterer allerede - + A presentation with that filename already exists. - + En presentasjon med dette filnavnet eksisterer allerede. - + This type of presentation is not supported. - + Denne type presentasjoner er ikke støttet. - + Presentations (%s) - + Presentasjoner (%s) - + Missing Presentation - + Presentasjonen mangler - + The presentation %s is incomplete, please reload. - + The presentation %s no longer exists. @@ -5824,17 +5823,17 @@ Continue saving? PresentationPlugin.PresentationTab - + Available Controllers - + Tilgjengelige presentasjonsprogram - + %s (unavailable) - + %s (utilgjengelig) - + Allow presentation application to be overridden @@ -5842,176 +5841,186 @@ Continue saving? 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 - + <strong> Fjernstyrings programtillegget </ strong> <br /> Dette fjernstyrings tillegget gir mulighet til å sende meldinger til en kjørende versjon av OpenLP på en annen datamaskin via en nettleser eller via en fjernkontroll-app. - Remotes - name plural - + Remote + name singular + Fjernstyring - + + Remotes + name plural + Fjernstyringer + + + Remote container title - + Fjernstyring RemotePlugin.Mobile - - - OpenLP 2.0 Remote - - + OpenLP 2.0 Remote + OpenLP 2.0 fjernstyring + + + OpenLP 2.0 Stage View - + OpenLP 2.0 senevisning - + Service Manager - + Møteprogram - + Slide Controller - - - - - Alerts - Varsler + Visningskontroll - Search - - - - - Refresh - - - - - Blank - - - - - Show - - - - - Prev - - - - - Next - - - - - Text - - - - - Show Alert - - - - - Go Live - - - - - No Results - - - - - Options - - - - - Add to Service - + Alerts + Varslmeldinger + Search + Søk + + + + Refresh + Oppdater + + + + Blank + Slukk + + + + Show + Vis + + + + Prev + Forrige + + + + Next + Neste + + + + Text + Tekst + + + + Show Alert + Vis varselmelding + + + + Go Live + Send til fremvisning + + + + No Results + Ingen resultat + + + + Options + Alternativer + + + + Add to Service + Legg til i møteprogram + + + Home - + Theme - + Tema - + Desktop - + Add &amp; Go to Service + + + Service + Møteprogram + + + + Slides + + RemotePlugin.RemoteTab - + Serve on IP address: - + Bruk IP-adresse: - + Port number: - + Portnummer - + Server Settings - + Serverinstillinger - + Remote URL: - + Fjernstyring URL: - + Stage view URL: - + Sene-visning URL: - + Display stage time in 12h format - + Vis sene-tiden i 12-timersformat - + Android App - + Scan the QR code or click <a href="https://play.google.com/store/apps/details?id=org.openlp.android">download</a> to install the Android app from Google Play. @@ -6019,173 +6028,175 @@ Continue saving? SongUsagePlugin - + &Song Usage Tracking - + &Logging av sangbruk - + &Delete Tracking Data - + &Slett loggdata - + Delete song usage data up to a specified date. - + Slett loggdata til en gitt dato. - + &Extract Tracking Data - + &Ta utdrag av loggdata - + Generate a report on song usage. - + Generere en rapport om sang bruken. - + Toggle Tracking - + Slå på logging - + Toggle the tracking of song usage. - + Slår logging av sanger av/på. - + <strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services. - + <strong>Sagbruk modulen</strong><br />Dette programtillegget logger bruken av sangene på møtene. - + SongUsage name singular - + Sangbruk - + SongUsage name plural - + Sangbruk - + SongUsage container title - + Sangbruk - + Song Usage - + Sangbruk - + Song usage tracking is active. - + Sang loggingen er aktiv - + Song usage tracking is inactive. - + Sang loggingen er ikke aktiv - + display - + vise - + printed - + utskrevet SongUsagePlugin.SongUsageDeleteForm - + Delete Song Usage Data - + Slette sangbruksdata - + Delete Selected Song Usage Events? - + Slette valgte hendelser i loggen? - + Are you sure you want to delete selected Song Usage data? - + Er du sikker at du ønsker å slette valgte data? - + Deletion Successful - + Sletting vellykket - + All requested data has been deleted successfully. - + Sletting av alle valgte data var vellykket. - + Select the date up to which the song usage data should be deleted. All data recorded before this date will be permanently deleted. - + Velg en dato som sangbruks-data skal slettes fram til. Alle data som er registrert før denne datoen vil bli permanent slettet. SongUsagePlugin.SongUsageDetailForm - + Song Usage Extraction - + Hente ut sangbruksdata - + Select Date Range Velg dato-område - + to - + til - + Report Location - + Målmappe - + Output File Location - + Ut-fil plasering - + usage_detail_%s_%s.txt - + bruks_ditaljer_%s_%s.txt - + Report Creation - + Rapport opprettet - + Report %s has been successfully created. - + Rapport +%s +er opprettet uten problem. - + Output Path Not Selected - + Målmappe er ikke valgt - + You have not set a valid output location for your song usage report. Please select an existing path on your computer. @@ -6193,178 +6204,178 @@ has been successfully created. SongsPlugin - + &Song &Sang - + Import songs using the import wizard. - + <strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs. - + &Re-index Songs - + Re-index the songs database to improve searching and ordering. - + Reindexing songs... - + Arabic (CP-1256) - + Baltic (CP-1257) - + Central European (CP-1250) - + Cyrillic (CP-1251) - + Greek (CP-1253) - + Hebrew (CP-1255) - + Japanese (CP-932) - + Korean (CP-949) - + Simplified Chinese (CP-936) - + Thai (CP-874) - + Traditional Chinese (CP-950) - + Turkish (CP-1254) - + Vietnam (CP-1258) - + Western European (CP-1252) - + Character Encoding - + 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 - + Songs name plural - + Sanger - + Songs container title - + Sanger - + 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. - + Send valgte sang til fremvisning. - + Add the selected song to the service. - + Reindexing songs @@ -6372,37 +6383,37 @@ The encoding is responsible for the correct character representation. SongsPlugin.AuthorsForm - + Author Maintenance Behandle forfatterdata - + 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? @@ -6410,7 +6421,7 @@ The encoding is responsible for the correct character representation. SongsPlugin.CCLIFileImport - + The file does not have a valid extension. @@ -6418,12 +6429,12 @@ The encoding is responsible for the correct character representation. SongsPlugin.EasyWorshipSongImport - + Administered by %s - + [above are Song Tags with notes imported from EasyWorship] @@ -6433,12 +6444,12 @@ The encoding is responsible for the correct character representation. SongsPlugin.EditBibleForm - + Meta Data - + Custom Book Names @@ -6446,202 +6457,202 @@ The encoding is responsible for the correct character representation. SongsPlugin.EditSongForm - + Song Editor Sangredigeringsverktøy - + &Title: &Tittel: - + Alt&ernate title: - + &Lyrics: - + &Verse order: - + Ed&it All Rediger alle - + Title && Lyrics - + &Add to Song - + &Remove - + &Manage Authors, Topics, Song Books - + A&dd to Song - + R&emove - + Book: Bok: - + 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. - + Add Book - + This song book does not exist, do you want to add it? - + You need to have an author for this song. - + Du må angi en forfatter til denne sangen. - + Linked Audio - + Add &File(s) - + Add &Media - + Remove &All - + Open File(s) - + <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. @@ -6649,22 +6660,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. @@ -6672,82 +6683,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. - + Du må legge til minst én sang som skal eksporteres. - + 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. @@ -6755,172 +6766,172 @@ 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.org v1.x Databases - + Words Of Worship Song Files - + Songs Of Fellowship Song Files - + SongBeamer Files - + SongShow Plus Song Files - + Foilpresenter Song Files - + Copy - + Kopier - + Save to File - + Lagre til fil - + The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. - + The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. - + OpenLyrics or OpenLP 2.0 Exported Song - + OpenLyrics Files - + 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 - + This importer has been disabled. - + MediaShout Database - + The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. - + SongPro Text Files - + SongPro (Export File) - + In SongPro, export your songs using the File -> Export menu @@ -6928,12 +6939,12 @@ The encoding is responsible for the correct character representation. 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. @@ -6951,7 +6962,7 @@ The encoding is responsible for the correct character representation. - + CCLI License: @@ -6961,7 +6972,7 @@ The encoding is responsible for the correct character representation. - + Are you sure you want to delete the %n selected song(s)? @@ -6974,7 +6985,7 @@ The encoding is responsible for the correct character representation. - + copy For song cloning @@ -7008,7 +7019,7 @@ The encoding is responsible for the correct character representation. SongsPlugin.MediaShoutImport - + Unable to open the MediaShout database. @@ -7016,7 +7027,7 @@ The encoding is responsible for the correct character representation. SongsPlugin.OpenLP1SongImport - + Not a valid openlp.org 1.x song database. @@ -7024,7 +7035,7 @@ The encoding is responsible for the correct character representation. SongsPlugin.OpenLPSongImport - + Not a valid OpenLP 2.0 song database. @@ -7032,7 +7043,7 @@ The encoding is responsible for the correct character representation. SongsPlugin.OpenLyricsExport - + Exporting "%s"... @@ -7040,32 +7051,32 @@ The encoding is responsible for the correct character representation. SongsPlugin.PowerSongImport - + No songs to import. - + Ingen sanger å importere. - + Verses not found. Missing "PART" header. - + No %s files found. - + Invalid %s file. Unexpected byte value. - + Invalid %s file. Missing "TITLE" header. - + Invalid %s file. Missing "COPYRIGHTLINE" header. @@ -7073,22 +7084,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. @@ -7096,12 +7107,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. @@ -7109,27 +7120,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 - + Unable to open file - + File not found @@ -7137,107 +7148,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? Er du sikker på at du vil slette den valgte forfatteren? - + This author cannot be deleted, they are currently assigned to at least one song. - + 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? - + 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? @@ -7245,27 +7256,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 - + Vis versene på fremvis - verktøylinje - + Update service from song edit - + Import missing songs from service files @@ -7273,17 +7284,17 @@ The encoding is responsible for the correct character representation. SongsPlugin.TopicsForm - + Topic Maintenance - + Topic name: - + You need to type in a topic name. @@ -7291,37 +7302,37 @@ The encoding is responsible for the correct character representation. SongsPlugin.VerseType - + Verse - + Chorus - + Bridge - + Pre-Chorus - + Intro - + Ending - + Other Annet @@ -7329,27 +7340,27 @@ The encoding is responsible for the correct character representation. SongsPlugin.ZionWorxImport - + Error reading CSV file. - + File not valid ZionWorx CSV format. - + Line %d: %s - + Decoding error: %s - + Record %d diff --git a/resources/i18n/nl.ts b/resources/i18n/nl.ts index 4277845e7..1ec29f8c4 100644 --- a/resources/i18n/nl.ts +++ b/resources/i18n/nl.ts @@ -3,35 +3,35 @@ AlertsPlugin - + &Alert W&aarschuwing - + Show an alert message. Toon waarschuwingsberichten. - + Alert name singular Waarschuwing - + Alerts name plural Waarschuwingen - + Alerts container title Waarschuwingen - + <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of nursery alerts on the display screen. <strong>Waarschuwings Plug-in</strong><br />De waarschuwings plug-in regelt de weergave van waarschuwingen op het scherm. Bijvoorbeeld voor de kinderopvang. @@ -39,69 +39,69 @@ AlertsPlugin.AlertForm - + Alert Message Waarschuwing - + Alert &text: Waarschuwings&text: - + &New &Nieuw - + &Save Op&slaan - + Displ&ay Wee&rgeven - + Display && Cl&ose &Weergeven en sluiten - + New Alert Nieuwe waarschuwing - + You haven't specified any text for your alert. Please type in some text before clicking New. De waarschuwing bevat geen tekst. Voer eerst tekst in voordat u op nieuw klikt. - + &Parameter: &Parameter: - + No Parameter Found Geen parameters gevonden - + You have not entered a parameter to be replaced. Do you want to continue anyway? U heeft geen parameter opgegeven die vervangen moeten worden Toch doorgaan? - + No Placeholder Found Niet gevonden - + The alert text does not contain '<>'. Do you want to continue anyway? De waarschuwing bevat geen '<>'. @@ -119,32 +119,32 @@ Toch doorgaan? AlertsPlugin.AlertsTab - + Font Lettertype - + Font name: Naam lettertype: - + Font color: Letterkleur: - + Background color: Achtergrondkleur: - + Font size: Corpsgrootte: - + Alert timeout: Tijdsduur: @@ -152,510 +152,510 @@ Toch doorgaan? BiblesPlugin - + &Bible &Bijbel - + Bible name singular Bijbel - + Bibles name plural Bijbels - + Bibles container title Bijbels - + No Book Found Geen bijbelboek gevonden - + No matching book could be found in this Bible. Check that you have spelled the name of the book correctly. Er kon geen bijbelboek met die naam gevonden worden. Controleer de spelling. - + Import a Bible. Importeer een bijbel. - + Add a new Bible. Voeg een nieuwe bijbel toe. - + Edit the selected Bible. Geselecteerde bijbel bewerken. - + Delete the selected Bible. Geselecteerde bijbel verwijderen. - + Preview the selected Bible. Voorbeeld geselecteerde bijbeltekst. - + Send the selected Bible live. Geselecteerde bijbeltekst live tonen. - + Add the selected Bible to the service. Geselecteerde bijbeltekst aan de liturgie toevoegen. - + <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display Bible verses from different sources during the service. <strong>Bijbel Plugin</strong><br />De Bijbel plugin voorziet in de mogelijkheid bijbelteksten uit verschillende bronnen weer te geven tijdens de dienst. - + &Upgrade older Bibles &Upgrade oude bijbels - + Upgrade the Bible databases to the latest format. Upgrade de bijbel databases naar de meest recente indeling. - + Genesis Genesis - + Exodus Exodus - + Leviticus Leviticus - + Numbers Numeri - + Deuteronomy Deuteronomium - + Joshua Jozua - + Judges Rechteren - + Ruth Ruth - + 1 Samuel 1 Samuël - + 2 Samuel 2 Samuël - + 1 Kings 1 Koningen - + 2 Kings 2 Koningen - + 1 Chronicles 1 Kronieken - + 2 Chronicles 2 Kronieken - + Ezra Ezra - + Nehemiah Nehemiah - + Esther Esther - + Job Job - + Psalms Psalmen - + Proverbs Spreuken - + Ecclesiastes Prediker - + Song of Solomon Hooglied - + Isaiah Jesaja - + Jeremiah Jeremia - + Lamentations Klaagliederen - + Ezekiel Ezechiël - + Daniel Daniël - + Hosea Hosea - + Joel Joël - + Amos Amos - + Obadiah Obadja - + Jonah Jona - + Micah Micha - + Nahum Nahum - + Habakkuk Habakuk - + Zephaniah Sefanja - + Haggai Haggai - + Zechariah Zacharias - + Malachi Maleachi - + Matthew Matteüs - + Mark Marcus - + Luke Lucas - + John Johannes - + Acts Handelingen - + Romans Romeinen - + 1 Corinthians 1 Korintiërs - + 2 Corinthians 2 Korintiërs - + Galatians Galaten - + Ephesians Efeziërs - + Philippians Filippenzen - + Colossians Kolossenzen - + 1 Thessalonians 1 Tessalonicenzen - + 2 Thessalonians 2Tessalonicenzen - + 1 Timothy 1 Timoteüs - + 2 Timothy 2 Timoteüs - + Titus Titus - + Philemon Filemon - + Hebrews Hebreeën - + 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 Openbaringen - + Judith Judith - + Wisdom Wijsheid - + Tobit Tobit - + Sirach Sirach - + Baruch Baruch - + 1 Maccabees 1 Makkabeeën - + 2 Maccabees 2 Makkabeeën - + 3 Maccabees 3 Makkabeeën - + 4 Maccabees 4 Makkabeeën - + Rest of Daniel Toevoegingen aan Daniël - + Rest of Esther Ester (Grieks) - + Prayer of Manasses Manasse - + Letter of Jeremiah Brief van Jeremia - + Prayer of Azariah Gebed van 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|vers|verzen;;-|tot;;,|en;;eind @@ -664,32 +664,32 @@ Toch doorgaan? BiblesPlugin.BibleEditForm - + You need to specify a version name for your Bible. U moet een naam opgeven voor deze versie van uw bijbel. - + You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. U moet opgeven welke copyrights gelden voor deze bijbelvertaling. Bijbel in het publieke domein moeten als zodanig gemarkeerd worden. - + Bible Exists Bijbel bestaat - + This Bible already exists. Please import a different Bible or first delete the existing one. Deze bijbelvertaling bestaat reeds. Importeer een andere vertaling of verwijder eerst de bestaande versie. - + You need to specify a book name for "%s". U moet een naam opgeven voor het bijbelboek "%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 @@ Nummers mogen alleen aan het begin gebruikt worden en moeten gevolgd worden door een of meerdere niet-nummer lettertekens. - + Duplicate Book Name Dupliceer naam bijbelboek - + The Book Name "%s" has been entered more than once. De naam van het bijbelboek "%s" is meer dan een keer opgegeven. @@ -711,39 +711,39 @@ gevolgd worden door een of meerdere niet-nummer lettertekens. BiblesPlugin.BibleManager - + Scripture Reference Error Fouten in schriftverwijzingen - + Web Bible cannot be used Online bijbels kunnen niet worden gebruikt - + Text Search is not available with Web Bibles. In online bijbels kunt u niet zoeken op tekst. - + 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. Geen zoekterm opgegeven. Woorden met een spatie ertussen betekent zoeken naar alle woorden, Woorden met een komma ertussen betekent zoeken naar de afzonderlijke woorden. - + There are no Bibles currently installed. Please use the Import Wizard to install one or more Bibles. Er zijn geen bijbels geïnstalleerd. Gebruik de Import assistent om een of meerdere bijbels te installeren. - + No Bibles Available Geen bijbels beschikbaar - + 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 @@ Boek Hoofdstuk%(verse)sVers%(range)sHoofdstuk%(verse)sVers BiblesPlugin.BiblesTab - + Verse Display Bijbeltekst weergave - + Only show new chapter numbers Toon alleen nieuw hoodstuknummer - + Bible theme: Bijbel thema: - + No Brackets geen haakjes - + ( And ) ( en ) - + { And } { en } - + [ And ] [ en ] - + Note: Changes do not affect verses already in the service. Nota Bene: Deze wijzigingen hebben geen betrekking op bijbelverzen die al in de liturgie zijn opgenomen. - + Display second Bible verses Toon tweede bijbelvertaling - + Custom Scripture References Aangepaste schriftverwijzingen - + Verse Separator: Vers scheidingsteken: - + Range Separator: Bereik scheidingsteken: - + List Separator: Lijst scheidingsteken: - + End Mark: End teken: - + 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 @@ Ze moeten gescheiden worden door een verticale streep "|". Maak de regel leeg om de standaardinstelling te gebruiken. - + 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 @@ Ze moeten gescheiden worden door een verticale streep "|". Maak de regel leeg om de standaardinstelling te gebruiken. - + 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 @@ Ze moeten gescheiden worden door een verticale streep "|". Maak de regel leeg om de standaardinstelling te gebruiken. - + 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 @@ Ze moeten gescheiden worden door een verticale streep "|". Maak de regel leeg om de standaardinstelling te gebruiken. - + English Engels - + Default Bible Language Standaardtaal bijbelvertaling - + Book name language in search field, search results and on display: Taal van de namen van bijbelboeken in zoekvelden, zoekresultaten en in weergave: - + Bible Language Taal bijbelvertaling - + Application Language Taal van het programma @@ -904,42 +904,42 @@ zoekresultaten en in weergave: BiblesPlugin.BookNameDialog - + Select Book Name Selecteer naam bijbelboek - + Current name: Huidige naam: - + Corresponding name: Overeenkomstige naam: - + Show Books From Toon boeken uit - + Old Testament Oude Testament - + New Testament Nieuwe Testament - + Apocrypha Apocriefe boeken - + The following book name cannot be matched up internally. Please select the corresponding name from the list. Voor de volgende namen van bijbelboeken is geen passend alternatief. Selecteer het juiste bijbelboek uit de lijst. @@ -947,7 +947,7 @@ zoekresultaten en in weergave: BiblesPlugin.BookNameForm - + You need to select a book. Geef een boek op. @@ -955,18 +955,18 @@ zoekresultaten en in weergave: BiblesPlugin.CSVBible - + Importing books... %s Importeren bijbelboeken... %s - + Importing verses from %s... Importing verses from <book name>... Importeren bijbelverzen uit %s... - + Importing verses... done. Importeren bijbelverzen... klaar. @@ -974,69 +974,69 @@ zoekresultaten en in weergave: BiblesPlugin.EditBibleForm - + Bible Editor Bijbel bewerker - + License Details Licentie details - + Version name: Versie naam: - + Copyright: Copyright: - + Permissions: Rechten: - + Default Bible Language Standaardtaal bijbelboeken - + Book name language in search field, search results and on display: Taal van de namen van bijbelboeken in zoekvelden, zoekresultaten en in weergave: - + Global Settings Globale instellingen - + Bible Language Bijbeltaal - + Application Language Programmataal - + English ENgels - + This is a Web Download Bible. It is not possible to customize the Book Names. Deze bijbelvertaling is van het web gedownload. De namen van bijbelboeken kan niet aangepast worden. - + 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. Om aangepaste namen voor bijbelboeken te gebruiken, moet "Bijbeltaal" geselecteerd zijn op het tabblad Meta Data of, als "Globale instellingen" is geselecteerd, op de Bijbel pagina in configuratie OpenLP. @@ -1044,38 +1044,38 @@ De namen van bijbelboeken kan niet aangepast worden. BiblesPlugin.HTTPBible - + Registering Bible and loading books... Registreer Bijbel en laad de boeken... - + Registering Language... Registreer de taal... - + Importing %s... Importing <book name>... Importeer "%s"... - + Download Error Download fout - + There was a problem downloading your verse selection. Please check your Internet connection, and if this error continues to occur please consider reporting a bug. Er ging iets mis bij het downloaden van de bijbelverzen. Controleer uw internet verbinding (open bijv. een pagina in de internetbrowser). Als dit probleem zich blijft herhalen is er misschien sprake van een bug. - + Parse Error Verwerkingsfout - + There was a problem extracting your verse selection. If this error continues to occur please consider reporting a bug. Er ging iets mis bij het uitpakken van de bijbelverzen. Als dit probleem zich blijft herhalen is er misschien sprake van een bug. @@ -1253,17 +1253,17 @@ indien nodig en een internetverbinding is dus noodzakelijk. BiblesPlugin.LanguageDialog - + Select Language Selecteer taal - + OpenLP is unable to determine the language of this translation of the Bible. Please select the language from the list below. OpenLP kan niet bepalen in welke taal deze Bijbel is geschreven. Selecteer een taal uit de onderstaande lijst. - + Language: Taal: @@ -1271,7 +1271,7 @@ indien nodig en een internetverbinding is dus noodzakelijk. BiblesPlugin.LanguageForm - + You need to choose a language. Geef een taal op. @@ -1279,92 +1279,92 @@ indien nodig en een internetverbinding is dus noodzakelijk. BiblesPlugin.MediaItem - + Quick Snelzoeken - + Find: Vind: - + Book: Boek: - + Chapter: Hoofdstuk: - + Verse: Vers: - + From: Van: - + To: Tot: - + Text Search Zoek op tekst - + Second: Tweede: - + Scripture Reference Schriftverwijzing - + Toggle to keep or clear the previous results. Zoekresultaten wel / niet behouden. - + You cannot combine single and dual Bible verse search results. Do you want to delete your search results and start a new search? Enkele en dubbele bijbelvers zoekresultaten kunnen niet gecombineerd worden. Resultaten wissen en opnieuw beginnen? - + Bible not fully loaded. Bijbel niet geheel geladen. - + Information Informatie - + 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. De tweede bijbelvertaling bevat niet alle verzen die in de eerste bijbelvertaling staan. Alleen de verzen die in beide vertalingen voorkomen worden getoond. %d verzen zijn niet opgenomen in de resultaten. - + Search Scripture Reference... Doorzoek schriftverwijzing - + Search Text... Doorzoek tekst... - + Are you sure you want to completely delete "%s" Bible from OpenLP? You will need to re-import this Bible to use it again. @@ -1376,7 +1376,7 @@ Opnieuw importeren om alsnog te gebruiken. BiblesPlugin.OpenSongImport - + Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. Incorrect bijbelbestand. OpenSong bijbels mogen gecomprimeerd zijn. Decomprimeren voordat u ze importeert. @@ -1384,7 +1384,7 @@ Opnieuw importeren om alsnog te gebruiken. BiblesPlugin.Opensong - + Importing %s %s... Importing <book name> <chapter>... %s %s wordt geïmporteerd... @@ -1393,12 +1393,12 @@ Opnieuw importeren om alsnog te gebruiken. BiblesPlugin.OsisImport - + Detecting encoding (this may take a few minutes)... Tekstcodering detecteren (dat kan even duren)... - + Importing %s %s... Importing <book name> <chapter>... %s %s wordt geïmporteerd... @@ -1407,149 +1407,149 @@ Opnieuw importeren om alsnog te gebruiken. BiblesPlugin.UpgradeWizardForm - + Select a Backup Directory Selecteer Backup map - + Bible Upgrade Wizard Bijbel Upgrade Assistent - + 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. Deze Assistent helpt u bestaande bijbels op te waarderen van een eerdere indeling van OpenLP 2. Om de Assistent te starten klikt op volgende. - + Select Backup Directory Selecteer Backup map - + Please select a backup directory for your Bibles Selecteer een map om de backup van uw bijbel in op te slaan - + 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>. Eerdere versies van OpenLP 2.0 kunnen de nieuwe bijbelbestanden niet lezen. De assistent maakt een backup van uw huidige bestanden zodat u eenvoudig de bijbels terug kunt zetten in de OpenLP data-map voor het geval u met een oude versie van OpenLP moet werken. Instructies hoe de oorspronkelijke bestanden te herstellen staan in de <a href="http://wiki.openlp.org/faq">Frequently Asked Questions</a>(engelstalig). - + Please select a backup location for your Bibles. Selecteer een map om de backup van uw bijbel in op te slaan. - + Backup Directory: Backup map: - + There is no need to backup my Bibles Er hoeft geen Backup gemaakt te worden - + Select Bibles Selecteer bijbels - + Please select the Bibles to upgrade Selecteer de bijbels om op te waarderen - + Upgrading Opwaarderen - + Please wait while your Bibles are upgraded. Even geduld. De bijbels worden opgewaardeerd. - + The backup was not successful. To backup your Bibles you need permission to write to the given directory. De backup is mislukt. Om bijbels op te waarderen moet de map beschrijfbaar zijn.. - + Upgrading Bible %s of %s: "%s" Failed Opwaarderen Bijbel %s van %s: "%s" Faal - + Upgrading Bible %s of %s: "%s" Upgrading ... Opwaarderen Bijbel %s van %s: "%s" Opwaarderen ... - + Download Error Download fout - + To upgrade your Web Bibles an Internet connection is required. Om online bijbels op te waarderen is een internet verbinding noodzakelijk. - + Upgrading Bible %s of %s: "%s" Upgrading %s ... Opwaarderen Bijbel %s van %s: "%s" Opwaarderen %s ... - + Upgrading Bible %s of %s: "%s" Complete Opwaarderen Bijbel %s van %s: "%s" Klaar - + , %s failed , %s mislukt - + 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. Opwaarderen Bijbel(s): %s gelukt%s Let op, de bijbelverzen worden gedownload indien nodig en een internetverbinding is dus noodzakelijk. - + Upgrading Bible(s): %s successful%s Opwaarderen Bijbel(s): %s gelukt%s - + Upgrade failed. Opwaarderen mislukt. - + You need to specify a backup directory for your Bibles. Selecteer een map om de backup van uw bijbels in op te slaan. - + Starting upgrade... Start upgrade... - + There are no Bibles that need to be upgraded. Er zijn geen bijbels om op te waarderen. @@ -1557,65 +1557,65 @@ Let op, de bijbelverzen worden gedownload indien nodig en een internetverbinding 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 plugin</strong><br />De custom plugin voorziet in mogelijkheden aangepaste tekst weer te geven op dezelfde manier als liederen. Deze plugin voorziet in meer mogelijkheden dan de Lied plugin. - + Custom Slide name singular Aangepaste dia - + Custom Slides name plural Aangepaste dia’s - + Custom Slides container title Aangepaste dia’s - + Load a new custom slide. Aangepaste dia laden. - + Import a custom slide. Aangepaste dia importeren. - + Add a new custom slide. Aangepaste dia toevoegen. - + Edit the selected custom slide. Geselecteerde dia bewerken. - + Delete the selected custom slide. Geselecteerde aangepaste dia verwijderen. - + Preview the selected custom slide. Bekijk voorbeeld aangepaste dia. - + Send the selected custom slide live. Bekijk aangepaste dia live. - + Add the selected custom slide to the service. Aangepaste dia aan liturgie toevoegen. @@ -1623,12 +1623,12 @@ Let op, de bijbelverzen worden gedownload indien nodig en een internetverbinding CustomPlugin.CustomTab - + Custom Display Aangepaste weergave - + Display footer Voettekst weergeven @@ -1636,62 +1636,62 @@ Let op, de bijbelverzen worden gedownload indien nodig en een internetverbinding CustomPlugin.EditCustomForm - + Edit Custom Slides Aangepaste dia's bewerken - + &Title: &Titel: - + Add a new slide at bottom. Nieuwe dia onderaan invoegen. - + Edit the selected slide. Geselecteerde dia bewerken. - + Edit all the slides at once. Alle dia's tegelijk bewerken. - + Split a slide into two by inserting a slide splitter. Dia doormidden delen door een dia 'splitter' in te voegen. - + The&me: The&ma: - + &Credits: &Credits: - + You need to type in a title. Geef een titel op. - + You need to add at least one slide Minstens een dia invoegen - + Ed&it All &Alles bewerken - + Insert Slide Invoegen dia @@ -1699,7 +1699,7 @@ Let op, de bijbelverzen worden gedownload indien nodig en een internetverbinding CustomPlugin.EditVerseForm - + Edit Slide Bewerk dia @@ -1707,7 +1707,7 @@ Let op, de bijbelverzen worden gedownload indien nodig en een internetverbinding CustomPlugin.MediaItem - + Are you sure you want to delete the %n selected custom slide(s)? Weet u zeker dat u %n geslecteerde dia(s) wilt verwijderen? @@ -1718,60 +1718,60 @@ Let op, de bijbelverzen worden gedownload indien nodig en een internetverbinding 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>Afbeeldingen Plugin</strong><br />De afbeeldingen plugin voorziet in de mogelijkheid afbeeldingen te laten zien.<br />Een van de bijzondere mogelijkheden is dat meerdere afbeeldingen als groep in de liturgie worden opgenomen, zodat weergave van meerdere afbeeldingen eenvoudiger wordt. Deze plugin maakt doorlopende diashows (bijv. om de 3 sec. een nieuwe dia) mogelijk. Ook kun met deze plugin de achtergrondafbeelding van het thema vervangen met een andere afbeelding. Ook de combinatie van tekst en beeld is mogelijk. - + Image name singular Afbeelding - + Images name plural Bilder - + Images container title Afbeeldingen - + Load a new image. Afbeelding laden. - + Add a new image. Afbeelding toevoegen. - + Edit the selected image. Afbeelding bewerken. - + Delete the selected image. Geselecteerde afbeelding wissen. - + Preview the selected image. Geselecteerde afbeelding voorbeeld bekijken. - + Send the selected image live. Geselecteerde afbeelding Live tonen. - + Add the selected image to the service. Geselecteerde afbeelding aan liturgie toevoegen. @@ -1779,7 +1779,7 @@ Let op, de bijbelverzen worden gedownload indien nodig en een internetverbinding ImagePlugin.ExceptionDialog - + Select Attachment Selecteer bijlage @@ -1787,44 +1787,44 @@ Let op, de bijbelverzen worden gedownload indien nodig en een internetverbinding ImagePlugin.MediaItem - + Select Image(s) Selecteer afbeelding(en) - + You must select an image to delete. Selecteer een afbeelding om te verwijderen. - + You must select an image to replace the background with. Selecteer een afbeelding om de achtergrond te vervangen. - + Missing Image(s) Ontbrekende afbeelding(en) - + The following image(s) no longer exist: %s De volgende afbeelding(en) ontbreken: %s - + The following image(s) no longer exist: %s Do you want to add the other images anyway? De volgende afbeelding(en) ontbreken: %s De andere afbeeldingen alsnog toevoegen? - + There was a problem replacing your background, the image file "%s" no longer exists. Achtergrond kan niet vervangen worden, omdat de afbeelding "%s" ontbreekt. - + There was no display item to amend. Er is geen weergave item om te verbeteren. @@ -1832,17 +1832,17 @@ De andere afbeeldingen alsnog toevoegen? ImagesPlugin.ImageTab - + Background Color Achtergrondkleur - + Default Color: Standaard kleur: - + Visible background for images with aspect ratio different to screen. Zichtbare achtergrond voor afbeeldingen met een andere verhouding dan het scherm. @@ -1850,60 +1850,60 @@ De andere afbeeldingen alsnog toevoegen? MediaPlugin - + <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. <strong>Media Plugin</strong><br />De media plugin voorziet in mogelijkheden audio en video af te spelen. - + Media name singular Medien - + Media name plural Medien - + Media container title Media - + Load new media. Laad nieuw media bestand. - + Add new media. Voeg nieuwe media toe. - + Edit the selected media. Bewerk geselecteerd media bestand. - + Delete the selected media. Verwijder geselecteerd media bestand. - + Preview the selected media. Toon voorbeeld van geselecteerd media bestand. - + Send the selected media live. Toon geselecteerd media bestand Live. - + Add the selected media to the service. Voeg geselecteerd media bestand aan liturgie toe. @@ -1911,57 +1911,57 @@ De andere afbeeldingen alsnog toevoegen? MediaPlugin.MediaItem - + Select Media Secteer media bestand - + You must select a media file to delete. Selecteer een media bestand om te verwijderen. - + You must select a media file to replace the background with. Selecteer een media bestand om de achtergrond mee te vervangen. - + There was a problem replacing your background, the media file "%s" no longer exists. Probleem met het vervangen van de achtergrond, omdat het bestand "%s" niet meer bestaat. - + Missing Media File Ontbrekend media bestand - + The file %s no longer exists. Media bestand %s bestaat niet meer. - + Videos (%s);;Audio (%s);;%s (*) Video’s (%s);;Audio (%s);;%s (*) - + There was no display item to amend. Er is geen weergave item om te verbeteren. - + Unsupported File Niet ondersteund bestandsformaat - + Automatic Automatisch - + Use Player: Gebruik speler: @@ -1969,22 +1969,22 @@ De andere afbeeldingen alsnog toevoegen? MediaPlugin.MediaTab - + Available Media Players Beschikbare media spelers - + %s (unavailable) %s (niet beschikbaar) - + Player Order Speler volgorde - + Allow media player to be overridden Toestaan om de mediaspeler te overschrijven @@ -1992,17 +1992,17 @@ De andere afbeeldingen alsnog toevoegen? OpenLP - + Image Files Afbeeldingsbestanden - + Information Informatie - + Bible format has changed. You have to upgrade your existing Bibles. Should OpenLP upgrade now? @@ -2014,32 +2014,61 @@ Zal OpenLP dat nu doen? OpenLP.AboutForm - + Credits Credits - + License Licentie - + 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. - + + Copyright © 2004-2012 %s +Portions copyright © 2004-2012 %s + Copyright © 2004-2012 %s +Portions copyright © 2004-2012 %s + + + + 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. + +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 volunteering by using the button below. + OpenLP <version><revision> - Open Source Lyrics Projection + +OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if Impress, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. + +Find out more about OpenLP: http://openlp.org/ + +OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider volunteering by using the button below. + + + + Volunteer + Doe mee + + + Project Lead %s @@ -2058,12 +2087,20 @@ Packagers Translators Afrikaans (af) %s + Czeck (cs) + %s + Danish (da) + %s German (de) %s + Greek (el) + %s English, United Kingdom (en_GB) %s English, South Africa (en_ZA) %s + Spanish (es) + %s Estonian (et) %s French (fr) @@ -2080,13 +2117,15 @@ Translators %s Russian (ru) %s + Swedish (sv) + %s Documentation %s Built With Python: http://www.python.org/ - Qt4: http://qt.nokia.com/ + Qt4: http://qt.digia.com/ PyQt4: http://www.riverbankcomputing.co.uk/software/pyqt/intro Oxygen Icons: http://oxygen-icons.org/ @@ -2101,270 +2140,185 @@ Final Credit on the cross, setting us free from sin. We bring this software to you for free because He has set us free. - Project Lead - %s - -Developers - %s - -Contributors - %s - -Testers - %s - -Packagers - %s - -Translators - Afrikaans (af) - %s - German (de) - %s - English, United Kingdom (en_GB) - %s - English, South Africa (en_ZA) - %s - Estonian (et) - %s - French (fr) - %s - Hungarian (hu) - %s - Japanese (ja) - %s - Norwegian Bokmål (nb) - %s - Dutch (nl) - %s - Portuguese, Brazil (pt_BR) - %s - Russian (ru) - %s - -Documentation - %s - -Built With - Python: http://www.python.org/ - Qt4: http://qt.nokia.com/ - PyQt4: http://www.riverbankcomputing.co.uk/software/pyqt/intro - Oxygen Icons: http://oxygen-icons.org/ - -Final Credit - "For God so loved the world that He gave - His one and only Son, so that whoever - believes in Him will not perish but inherit - eternal life." -- John 3:16 - - And last but not least, final credit goes to - God our Father, for sending His Son to die - on the cross, setting us free from sin. We - bring this software to you for free because - He has set us free. - -Deze tekst is niet vertaald. - - - - Copyright © 2004-2012 %s -Portions copyright © 2004-2012 %s - Copyright © 2004-2012 %s -Portions copyright © 2004-2012 %s - - - - 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. - -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 volunteering by using the button below. - - - - - Volunteer OpenLP.AdvancedTab - + UI Settings UI instellingen - + Number of recent files to display: Aantal recent geopende bestanden: - + Remember active media manager tab on startup Laatstgeopende tab opslaan - + Double-click to send items straight to live Dubbelklikken om onderdelen direct aan live toe te voegen - + Expand new service items on creation Nieuwe liturgieonderdelen automatisch uitklappen - + Enable application exit confirmation Afsluiten OpenLP bevestigen - + Mouse Cursor Muisaanwijzer - + Hide mouse cursor when over display window Verberg muisaanwijzer in het weergave venster - + Default Image standaard afbeelding - + Background color: Achtergrondkleur: - + Image file: Afbeeldingsbestand: - + Open File Open bestand - + Advanced Geavanceerd - + Preview items when clicked in Media Manager Voorbeeld direct laten zien bij aanklikken in Media beheer - + Click to select a color. Klik om een kleur te kiezen. - + Browse for an image file to display. Blader naar een afbeelding om te laten zien. - + Revert to the default OpenLP logo. Herstel standaard 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. Liturgie %d-%m-%Y %H-%M - + Default Service Name Standaard liturgienaam - + Enable default service name Gebruik standaard liturgienaam - + Date and Time: Datum en tijd: - + Monday maandag - + Tuesday dinsdag - + Wednesday woensdag - + Thurdsday donderdag - + Friday vrijdag - + Saturday zaterdag - + Sunday zondag - + Now Nu - + Time when usual service starts. Begintijd gewone dienst - + Name: Naam: - + Consult the OpenLP manual for usage. Raadpleeg de OpenLP handleiding voor gebruik. - + Revert to the default service name "%s". Herstel de standaard liturgienaam "%s". - + Example: Voorbeeld: - + X11 X11 @@ -2374,82 +2328,82 @@ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for Negeer X11 Window Manager - + Syntax error. Syntax error. - + Data Location Bestandslocatie - + Current path: Huidige pad: - + Custom path: Aangepast pad: - + Browse for new data file location. Blader voor een nieuwe bestandslocatie voor de data. - + Set the data location to the default. Herstel bestandslocatie naar standaard. - + Cancel Annuleer - + Cancel OpenLP data directory location change. Annuleer OpenLP bestandslocatie wijziging. - + Copy data to new location. Kopieer data naar de nieuwe bestandslocatie. - + Copy the OpenLP data files to the new location. Kopieer OpenLP data naar de nieuwe bestandslocatie. - + <strong>WARNING:</strong> New data directory location contains OpenLP data files. These files WILL be replaced during a copy. <strong>PAS OP:</strong> In de nieuwe bestandslocatie staan al OpenLP data bestanden. Die bestanden worden vervangen tijdens kopieren. - + Data Directory Error Bestandslocatie fout - + Select Data Directory Location Selecteer bestandslocatie - + Confirm Data Directory Change Bevestig wijziging bestandslocatie - + Reset Data Directory Herstel bestandslocatie data - + 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. @@ -2458,12 +2412,12 @@ This location will be used after OpenLP is closed. Deze bestandslocatie wordt gebruikt nadat OpenLP is afgesloten. - + Overwrite Existing Data Overschrijf bestaande data - + OpenLP data directory was not found %s @@ -2473,19 +2427,31 @@ This data directory was previously changed from the OpenLP default location. If Click "No" to stop loading OpenLP. allowing you to fix the the problem. Click "Yes" to reset the data directory to the default location. - + OpenLP data directory is niet gevonden + +%s + +Deze data directory werd onlangs gewijzigd ten opzichte van de OpenLP standaard locatie. Als de nieuwe locatie op een verwijderbare schijf staat, moet u nu eerst zelf zorgen dat de schijf beschikbaar is. + +Klik "Nee" om OpenLP niet verder te laden en eerst het probleem te verhelpen. + +Klik "Ja" om de standaardinstellingen te gebruiken. - + Are you sure you want to change the location of the OpenLP data directory to: %s The data directory will be changed when OpenLP is closed. - + Weet u zeker dat de locatie van de OpenLP data directory wilt veranderen in: + +%s + +De data directory zal worden gewijzigd bij het afsluiten van OpenLP. - + WARNING: The location you have selected @@ -2493,46 +2459,52 @@ The location you have selected %s appears to contain OpenLP data files. Do you wish to replace these files with the current data files? - + WAARSCHUWING: + +De locatie die u heeft gekozen + +%s + +lijkt al OpenLP data bestanden te bevatten. Wilt u de oude bestanden vervangen met de huidige? OpenLP.ExceptionDialog - + Error Occurred Er gaat iets fout - + 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 heeft een probleem en kan het niet zelf oplossen. De tekst in het onderste venster bevat informatie waarmee de OpenLP ontwikkelaars iets kunnen. Stuur een e-mail naar: bugs@openlp.org met een gedetailleerde beschrijving van het probleem en hoe het ontstond. - + Send E-Mail Stuur e-mail - + Save to File Opslaan als bestand - + Please enter a description of what you were doing to cause this error (Minimum 20 characters) Omschrijf in het Engels wat u deed toen deze fout zich voordeed (minstens 20 tekens gebruiken) - + Attach File Voeg bestand toe - + Description characters to enter : %s Toelichting aanvullen met nog %s tekens @@ -2540,24 +2512,24 @@ Stuur een e-mail naar: bugs@openlp.org met een gedetailleerde beschrijving van h OpenLP.ExceptionForm - + Platform: %s Plattform: %s - + Save Crash Report Bewaar Bug Report - + Text files (*.txt *.log *.text) Tekstbestand (*.txt *.log *.text) - + **OpenLP Bug Report** Version: %s @@ -2588,7 +2560,7 @@ Version: %s - + *OpenLP Bug Report* Version: %s @@ -2623,17 +2595,17 @@ Schrijf in het Engels, omdat de meeste programmeurs geen Nederlands spreken. OpenLP.FileRenameForm - + File Rename Bestand hernoemen - + New File Name: Nieuwe bestandsnaam: - + File Copy Bestand kopiëren @@ -2641,17 +2613,17 @@ Schrijf in het Engels, omdat de meeste programmeurs geen Nederlands spreken. OpenLP.FirstTimeLanguageForm - + Select Translation Selecteer vertaling - + Choose the translation you'd like to use in OpenLP. Kies de vertaling waarin u OpenLP wilt gebruiken. - + Translation: Vertaling: @@ -2659,192 +2631,192 @@ Schrijf in het Engels, omdat de meeste programmeurs geen Nederlands spreken. OpenLP.FirstTimeWizard - + Songs Liederen - + First Time Wizard Eerste keer assistent - + Welcome to the First Time Wizard Welkom bij de Eerste keer Assistent - + Activate required Plugins Activeer noodzakelijke plugins - + Select the Plugins you wish to use. Selecteer de plugins die je gaat gebruiken. - + Bible Bijbel - + Images Afbeeldingen - + Presentations Presentaties - + Media (Audio and Video) Media (Audio en Video) - + Allow remote access Toegang op afstand toestaan - + Monitor Song Usage Liedgebruik bijhouden - + Allow Alerts Toon berichten - + Default Settings Standaard instellingen - + Downloading %s... Downloaden %s... - + Download complete. Click the finish button to start OpenLP. Download compleet. Klik op afrond om OpenLP te starten. - + Enabling selected plugins... Geselecteerde plugins inschakelen... - + No Internet Connection Geen internetverbinding - + Unable to detect an Internet connection. OpenLP kan geen internetverbinding vinden. - + Sample Songs Voorbeeld liederen - + Select and download public domain songs. Selecteer en download liederen uit het publieke domein. - + Sample Bibles Voorbeeld bijbels - + Select and download free Bibles. Selecteer en download (gratis) bijbels uit het publieke domein. - + Sample Themes Voorbeeld thema's - + Select and download sample themes. Selecteer en download voorbeeld thema's. - + Set up default settings to be used by OpenLP. Stel standaardinstellingen in voor OpenLP. - + Default output display: Standaard weergave scherm: - + Select default theme: Selecteer standaard thema: - + Starting configuration process... Begin het configuratie proces... - + This wizard will help you to configure OpenLP for initial use. Click the next button below to start. Deze assistent helpt u bij het instellen van OpenLP voor het eerste gebruik. Klik op volgende om te beginnen. - + Setting Up And Downloading Instellen en downloaden - + Please wait while OpenLP is set up and your data is downloaded. Even geduld terwijl OpenLP ingesteld wordt en de voorbeeldgegevens worden gedownload. - + Setting Up Instellen - + Click the finish button to start OpenLP. Klik op afronden om OpenLP te starten. - + Download complete. Click the finish button to return to OpenLP. Download compleet. Klik op afronden om OpenLP te starten. - + Click the finish button to return to OpenLP. Klik op afronden om OpenLP te starten. - + Custom Slides Aangepaste dia’s - + Finish Eind - + 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. @@ -2853,7 +2825,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. @@ -2865,37 +2837,37 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can OpenLP.FormattingTagDialog - + Configure Formatting Tags Configureer Opmaak tags - + Edit Selection Bewerk selectie - + Save Opslaan - + Description Omschrijving - + Tag Tag - + Start HTML Start HTML - + End HTML Eind HTML @@ -2903,32 +2875,32 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can OpenLP.FormattingTagForm - + Update Error Update Fout - + Tag "n" already defined. Tag "n" bestaat al. - + New Tag Nieuwe tag - + <HTML here> <HTML here> - + </and here> </and here> - + Tag %s already defined. Tag %s bestaat al. @@ -2936,82 +2908,82 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can OpenLP.FormattingTags - + Red Rood - + Black Zwart - + Blue Blauw - + Yellow Geel - + Green Groen - + Pink Roze - + Orange Oranje - + Purple Paars - + White Wit - + Superscript Superscript - + Subscript Subscript - + Paragraph Paragraaf - + Bold Vet - + Italics Cursief - + Underline Onderstreept - + Break Breek af @@ -3019,122 +2991,122 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can OpenLP.GeneralTab - + General Algemeen - + Monitors Beeldschermen - + Select monitor for output display: Projectiescherm: - + Display if a single screen Weergeven bij enkel scherm - + Application Startup Programma start - + Show blank screen warning Toon zwart scherm waarschuwing - + Automatically open the last service Automatisch laatste liturgie openen - + Show the splash screen Toon splash screen - + Application Settings Programma instellingen - + Prompt to save before starting a new service Waarschuw om werk op te slaan bij het beginnen van een nieuwe liturgie - + Automatically preview next item in service Automatisch volgend onderdeel van liturgie tonen - + sec sec - + CCLI Details CCLI-details - + SongSelect username: SongSelect gebruikersnaam: - + SongSelect password: SongSelect wachtwoord: - + X X - + Y Y - + Height Hoogte - + Width Breedte - + Check for updates to OpenLP Controleer op updates voor OpenLP - + Unblank display when adding new live item Zwart scherm uitschakelen als er een nieuw live item wordt toegevoegd - + Timed slide interval: Tijd tussen dia’s: - + Background Audio Achtergrond geluid - + Start background audio paused Start achtergrond geluid gepauseerd @@ -3144,12 +3116,12 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can Limiet Liturgieitems per dia - + Override display position: Overschrijf scherm positie - + Repeat track list herhaal tracklijst @@ -3177,12 +3149,12 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can OpenLP.LanguageManager - + Language Taal - + Please restart OpenLP to use your new language setting. Start OpenLP opnieuw op om de nieuwe taalinstellingen te gebruiken. @@ -3190,7 +3162,7 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can OpenLP.MainDisplay - + OpenLP Display OpenLP Weergave @@ -3198,287 +3170,287 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can OpenLP.MainWindow - + &File &Bestand - + &Import &Importeren - + &Export &Exporteren - + &View &Weergave - + M&ode M&odus - + &Tools &Hulpmiddelen - + &Settings &Instellingen - + &Language Taa&l - + &Help &Help - + Media Manager Mediabeheer - + Service Manager Liturgie beheer - + Theme Manager Thema beheer - + &New &Nieuw - + &Open &Open - + Open an existing service. Open een bestaande liturgie. - + &Save Op&slaan - + Save the current service to disk. Deze liturgie opslaan. - + Save &As... Opslaan &als... - + Save Service As Liturgie opslaan als - + Save the current service under a new name. Deze liturgie onder een andere naam opslaan. - + E&xit &Afsluiten - + Quit OpenLP OpenLP afsluiten - + &Theme &Thema - + &Configure OpenLP... &Instellingen... - + &Media Manager &Media beheer - + Toggle Media Manager Media beheer wel / niet tonen - + Toggle the visibility of the media manager. Media beheer wel / niet tonen. - + &Theme Manager &Thema beheer - + Toggle Theme Manager Thema beheer wel / niet tonen - + Toggle the visibility of the theme manager. Thema beheer wel / niet tonen. - + &Service Manager &Liturgie beheer - + Toggle Service Manager Liturgie beheer wel / niet tonen - + Toggle the visibility of the service manager. Liturgie beheer wel / niet tonen. - + &Preview Panel &Voorbeeld - + Toggle Preview Panel Voorbeeld wel / niet tonen - + Toggle the visibility of the preview panel. Voorbeeld wel / niet tonen. - + &Live Panel &Live venster - + Toggle Live Panel Live venster wel / niet tonen - + Toggle the visibility of the live panel. Live venster wel / niet tonen. - + &Plugin List &Plugin Lijst - + List the Plugins Lijst met plugins =uitbreidingen van OpenLP - + &User Guide Gebr&uikshandleiding - + &About &Over OpenLP - + More information about OpenLP Meer Informatie over OpenLP - + &Online Help &Online help - + &Web Site &Website - + Use the system language, if available. Gebruik systeem standaardtaal, indien mogelijk. - + Set the interface language to %s %s als taal in OpenLP gebruiken - + Add &Tool... Hulpprogramma &toevoegen... - + Add an application to the list of tools. Voeg een hulpprogramma toe aan de lijst. - + &Default &Standaard - + Set the view mode back to the default. Terug naar de standaard weergave modus. - + &Setup &Setup - + Set the view mode to Setup. Weergave modus naar Setup. - + &Live &Live - + Set the view mode to Live. Weergave modus naar 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/. @@ -3487,108 +3459,108 @@ You can download the latest version from http://openlp.org/. U kunt de laatste versie op http://openlp.org/ downloaden. - + OpenLP Version Updated Nieuwe OpenLP versie beschikbaar - + OpenLP Main Display Blanked OpenLP projectie op zwart - + The Main Display has been blanked out Projectie is uitgeschakeld: scherm staat op zwart - + Default Theme: %s Standaardthema: %s - + English Please add the name of your language here Nederlands - + Configure &Shortcuts... &Sneltoetsen instellen... - + Close OpenLP OpenLP afsluiten - + Are you sure you want to close OpenLP? OpenLP afsluiten? - + Open &Data Folder... Open &Data map... - + Open the folder where songs, bibles and other data resides. Open de map waar liederen, bijbels en andere data staat. - + &Autodetect &Autodetecteer - + Update Theme Images Thema afbeeldingen opwaarderen - + Update the preview images for all themes. Voorbeeld afbeeldingen opwaarderen voor alle thema’s. - + Print the current service. Druk de huidige liturgie af. - + &Recent Files &Recente bestanden - + L&ock Panels Panelen op sl&ot - + Prevent the panels being moved. Voorkomen dat panelen verschuiven. - + Re-run First Time Wizard Herstart Eerste keer assistent - + Re-run the First Time Wizard, importing songs, Bibles and themes. Herstart Eerste keer assistent, importeer voorbeeld liederen, bijbels en thema’s. - + Re-run First Time Wizard? Herstart Eerste keer assistent? - + 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. @@ -3597,43 +3569,43 @@ Re-running this wizard may make changes to your current OpenLP configuration and De Eerste keer assistent opnieuw starten zou veranderingen in uw huidige OpenLP instellingen kunnen maken en mogelijk liederen aan uw huidige lijst kunnen toevoegen en uw standaard thema wijzigen. - + Clear List Clear List of recent files Lijst leegmaken - + Clear the list of recent files. Maak de lijst met recente bestanden leeg. - + Configure &Formatting Tags... Configureer &Opmaak tags... - + Export OpenLP settings to a specified *.config file Exporteer OpenLP instellingen naar een *.config bestand - + Settings Instellingen - + Import OpenLP settings from a specified *.config file previously exported on this or another machine Importeer OpenLP instellingen uit een bestaand *.config bestand afkomstig van deze of een andere computer - + Import settings? Importeer instelling? - + Are you sure you want to import settings? Importing settings will make permanent changes to your current OpenLP configuration. @@ -3646,71 +3618,77 @@ Instellingen importeren zal uw huidige OpenLP configuratie veranderen. Incorrecte instellingen importeren veroorzaakt onvoorspelbare effecten of OpenLP kan spontaan stoppen. - + Open File Open bestand - + OpenLP Export Settings Files (*.conf) OpenLP Export instellingsbestanden (*.config) - + Import settings Importeer instellingen - + OpenLP will now close. Imported settings will be applied the next time you start OpenLP. OpenLP sluit nu af. De geïmporteeerde instellingen worden bij de volgende start van OpenLP toegepast. - + Export Settings File Exporteer instellingen - + OpenLP Export Settings File (*.conf) OpenLP Export instellingsbestand (*.config) - + New Data Directory Error Nieuwe bestandslocatie fout - + The file you selected does appear to be a valid OpenLP settings file. Section [%s] is not valid Processing has terminated and no changed have been made. - + Het geslecteerde bestand is geen geldig OpenLP settings bestand. + +Sectie [%s] klopt niet + +Verwerking is gestopt en er is niets veranderd. - + Copying OpenLP data to new data directory location - %s - Please wait for copy to finish - + OpenLP data wordt nu naar de nieuwe data directory locatie gekopieerd - %s - Even wachten tot het kopiëren klaar is. - + OpenLP Data directory copy failed %s - + OpenLP Data directory kopieren is mislukt + +%s OpenLP.Manager - + Database Error Database 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 @@ -3719,7 +3697,7 @@ Database: %s Database: %s - + OpenLP cannot load your database. Database: %s @@ -3731,62 +3709,62 @@ Database: %s OpenLP.MediaManagerItem - + No Items Selected Niets geselecteerd - + &Add to selected Service Item &Voeg selectie toe aan de liturgie - + You must select one or more items to preview. Selecteer een of meerdere onderdelen om voorbeeld te laten zien. - + You must select one or more items to send live. Selecteer een of meerdere onderdelen om Live te tonen. - + You must select one or more items. Selecteer een of meerdere onderdelen. - + You must select an existing service item to add to. Selecteer een liturgie om deze onderdelen aan toe te voegen. - + Invalid Service Item Ongeldige Liturgie onderdeel - + You must select a %s service item. Selecteer een %s liturgie onderdeel. - + You must select one or more items to add. Selecteer een of meerdere onderdelen om toe te voegen. - + No Search Results Niets gevonden - + Invalid File Type Ongeldig bestandsformaat - + Invalid File %s. Suffix not supported Ongeldig bestand %s. @@ -3798,7 +3776,7 @@ Extensie niet ondersteund &Kloon - + Duplicate files were found on import and were ignored. Identieke bestanden zijn bij het importeren gevonden en worden genegeerd. @@ -3806,12 +3784,12 @@ Extensie niet ondersteund OpenLP.OpenLyricsImportError - + <lyrics> tag is missing. <liedtekst> tag mist. - + <verse> tag is missing. <vers> tag mist. @@ -3819,42 +3797,42 @@ Extensie niet ondersteund OpenLP.PluginForm - + Plugin List Plugin Lijst - + Plugin Details Plugin details - + Status: Status: - + Active Actief - + Inactive Inactief - + %s (Inactive) %s (inactief) - + %s (Active) %s (actief) - + %s (Disabled) %s (uitgeschakeld) @@ -3862,12 +3840,12 @@ Extensie niet ondersteund OpenLP.PrintServiceDialog - + Fit Page Passend hele pagina - + Fit Width Passend pagina breedte @@ -3875,77 +3853,77 @@ Extensie niet ondersteund OpenLP.PrintServiceForm - + Options Opties - + Copy Kopieer - + Copy as HTML Kopieer als HTML - + Zoom In Inzoomen - + Zoom Out Uitzoomen - + Zoom Original Werkelijke grootte - + Other Options Overige opties - + Include slide text if available Inclusief dia tekst indien beschikbaar - + Include service item notes Inclusief liturgie opmerkingen - + Include play length of media items Inclusief afspeellengte van media items - + Add page break before each text item Voeg een pagina-einde toe voor elke tekst item - + Service Sheet Liturgie blad - + Print Afdrukken - + Title: Titel: - + Custom Footer Text: Aangepaste voettekst: @@ -3953,12 +3931,12 @@ Extensie niet ondersteund OpenLP.ScreenList - + Screen Beeldscherm - + primary primair scherm @@ -3966,12 +3944,12 @@ Extensie niet ondersteund OpenLP.ServiceItem - + <strong>Start</strong>: %s <strong>Start</strong>: %s - + <strong>Length</strong>: %s <strong>Lengte</strong>: %s @@ -3979,7 +3957,7 @@ Extensie niet ondersteund OpenLP.ServiceItemEditForm - + Reorder Service Item Liturgie onderdelen herschikken @@ -3987,296 +3965,295 @@ Extensie niet ondersteund OpenLP.ServiceManager - + Move to &top Bovenaan plaa&tsen - + Move item to the top of the service. Plaats dit onderdeel bovenaan. - + Move &up Naar b&oven - + Move item up one position in the service. Verplaats een plek naar boven. - + Move &down Naar bene&den - + Move item down one position in the service. Verplaats een plek naar beneden. - + Move to &bottom Onderaan &plaatsen - + Move item to the end of the service. Plaats dit onderdeel onderaan. - + &Delete From Service Verwij&deren uit de liturgie - + Delete the selected item from the service. Verwijder dit onderdeel uit de liturgie. - + &Add New Item &Voeg toe - + &Add to Selected Item &Voeg selectie toe - + &Edit Item B&ewerk onderdeel - + &Reorder Item He&rschik onderdeel - + &Notes Aa&ntekeningen - + &Change Item Theme &Wijzig onderdeel thema - + OpenLP Service Files (*.osz) OpenLP liturgie bestanden (*.osz) - + File is not a valid service. The content encoding is not UTF-8. Geen geldig liturgie bestand. Tekst codering is geen UTF-8. - + File is not a valid service. Geen geldig liturgie bestand. - + Missing Display Handler Ontbrekende weergave regelaar - + Your item cannot be displayed as there is no handler to display it Dit onderdeel kan niet weergegeven worden, omdat er een regelaar ontbreekt - + Your item cannot be displayed as the plugin required to display it is missing or inactive Dit onderdeel kan niet weergegeven worden omdat de benodigde plugin ontbreekt of inactief is - + &Expand all Alles &uitklappen - + Expand all the service items. Alle liturgie onderdelen uitklappen. - + &Collapse all Alles &inklappen - + Collapse all the service items. Alle liturgie onderdelen inklappen. - + Open File Open bestand - + Moves the selection down the window. Verplaatst de selectie naar beneden. - + Move up Naar boven - + Moves the selection up the window. Verplaatst de selectie naar boven. - + Go Live Ga Live - + Send the selected item to Live. Toon selectie Live. - + &Start Time &Start Tijd - + Show &Preview Toon &Voorbeeld - + Modified Service Gewijzigde liturgie - + The current service has been modified. Would you like to save this service? De huidige liturgie is gewijzigd. Veranderingen opslaan? - + Custom Service Notes: Aangepaste liturgie kanttekeningen: - + Notes: Aantekeningen: - + Playing time: Speeltijd: - + Untitled Service Liturgie zonder naam - + File could not be opened because it is corrupt. Bestand kan niet worden geopend omdat het beschadigd is. - + Empty File Leeg bestand - + This service file does not contain any data. Deze liturgie bevat nog geen gegevens. - + Corrupt File Corrupt bestand - + Load an existing service. Laad een bestaande liturgie. - + Save this service. Deze liturgie opslaan. - + Select a theme for the service. Selecteer een thema voor de liturgie. - + This file is either corrupt or it is not an OpenLP 2.0 service file. Dit bestand is beschadigd of geen OpenLP 2.0 liturgie bestand. - - Service File Missing - Ontbrekend liturgiebestand - - - + Slide theme Dia thema - + Notes Aantekeningen - + Edit Bewerk - + Service copy only Liturgie alleen kopiëren - + Error Saving File Fout bij het opslaan - + There was an error saving your file. Er ging iets fout bij het opslaan van het bestand. - - File missing from service + + Service File(s) Missing + + + + + The following file(s) in the service are missing: +%s - %s - -Continue saving? +These files will be removed if you continue to save. OpenLP.ServiceNoteForm - + Service Item Notes Liturgische kanttekeningen @@ -4284,7 +4261,7 @@ Continue saving? OpenLP.SettingsForm - + Configure OpenLP Configureer OpenLP @@ -4292,67 +4269,67 @@ Continue saving? OpenLP.ShortcutListDialog - + Action Actie - + Shortcut snelkoppeling - + Duplicate Shortcut Snelkoppelingen dupliceren - + The shortcut "%s" is already assigned to another action, please use a different shortcut. Deze snelkoppeling "%s" wordt al voor iets anders gebruikt. Kies een andere toetscombinatie. - + Alternate Afwisselend - + Select an action and click one of the buttons below to start capturing a new primary or alternate shortcut, respectively. Selecteer een actie en klik op één van de knoppen hieronder om respectievelijk een primaire of alternatieve sneltoets vast te leggen. - + Default Standaard - + Custom Aangepaste dia - + Capture shortcut. Sneltoets vastleggen. - + Restore the default shortcut of this action. Herstel de standaard sneltoets voor de actie. - + Restore Default Shortcuts Herstel standaard sneltoetsen - + Do you want to restore all shortcuts to their defaults? Weet u zeker dat u alle standaard sneltoetsen wilt herstellen? - + Configure Shortcuts Sneltoetsen instellen @@ -4360,172 +4337,172 @@ Continue saving? OpenLP.SlideController - + Hide Verbergen - + Go To Ga naar - + Blank Screen Zwart scherm - + Blank to Theme Zwart naar thema - + Show Desktop Toon bureaublad - + Previous Service Vorige liturgie - + Next Service Volgende liturgie - + Escape Item Onderdeel annuleren - + Move to previous. Vorige. - + Move to next. Volgende. - + Play Slides Dia’s tonen - + Delay between slides in seconds. Pauze tussen dia’s in seconden. - + Move to live. Toon Live. - + Add to Service. Voeg toe aan Liturgie. - + Edit and reload song preview. Bewerk en herlaad lied voorbeeld. - + Start playing media. Speel media af. - + Pause audio. Pauzeer audio. - + Pause playing media. Afspelen pauzeren - + Stop playing media. Afspelen stoppen - + Video position. Video positie - + Audio Volume. Audio volume - + Go to "Verse" Ga naar "Vers" - + Go to "Chorus" Ga naar "Refrein" - + Go to "Bridge" Ga naar "Bridge" - + Go to "Pre-Chorus" Ga naar "pre-Refrein" - + Go to "Intro" Ga naar "Intro" - + Go to "Ending" Ga naar "Einde" - + Go to "Other" Ga naar "Overige" - + Previous Slide vorige dia - + Next Slide volgende dia - + Pause Audio Pauzeer audio - + Background Audio Achtergrondgeluid - + Go to next audio track. Ga naar de volgende audiotrack. - + Tracks Tracks @@ -4533,17 +4510,17 @@ Continue saving? OpenLP.SpellTextEdit - + Spelling Suggestions Spelling suggesties - + Formatting Tags Opmaak tags - + Language: Taal: @@ -4551,67 +4528,67 @@ Continue saving? OpenLP.StartTimeForm - + Hours: Uren: - + Minutes: Minuten: - + Seconds: Seconden: - + Item Start and Finish Time Item start en eind tijd - + Start Start - + Finish Eind - + Length Lengte - + Time Validation Error Tijd validatie fout - + Finish time is set after the end of the media item Eind tijd is ingesteld tot na het eind van het media item - + Start time is after the finish time of the media item Start tijd is ingesteld tot na het eind van het media item - + Theme Layout Thema Layout - + The blue box shows the main area. Het blauwe vlak toont het hoofdgebied. - + The red box shows the footer. Het rode vlak toont het gebied voor de voettekst. @@ -4619,559 +4596,559 @@ Continue saving? OpenLP.ThemeManager - + Create a new theme. Maak een nieuw thema. - + Edit Theme Bewerk thema - + Edit a theme. Bewerk een thema. - + Delete Theme Verwijder thema - + Delete a theme. Verwijder thema. - + Import Theme Importeer thema - + Import a theme. Importeer thema. - + Export Theme Exporteer thema - + Export a theme. Exporteer thema. - + &Edit Theme B&ewerk thema - + &Delete Theme Verwij&der thema - + Set As &Global Default Instellen als al&gemene standaard - + %s (default) %s (standaard) - + You must select a theme to edit. Selecteer een thema om te bewerken. - + You are unable to delete the default theme. Het standaard thema kan niet worden verwijderd. - + Theme %s is used in the %s plugin. Thema %s wordt gebruikt in de %s plugin. - + You have not selected a theme. Selecteer een thema. - + Save Theme - (%s) Thema opslaan - (%s) - + Theme Exported Thema geëxporteerd - + Your theme has been successfully exported. Exporteren thema is gelukt. - + Theme Export Failed Exporteren thema is mislukt - + Your theme could not be exported due to an error. Thema kan niet worden geëxporteerd als gevolg van een fout. - + Select Theme Import File Selecteer te importeren thema bestand - + File is not a valid theme. Geen geldig thema bestand. - + &Copy Theme &Kopieer thema - + &Rename Theme He&rnoem thema - + &Export Theme &Exporteer thema - + You must select a theme to rename. Selecteer een thema om te hernoemen. - + Rename Confirmation Bevestig hernoemen - + Rename %s theme? %s thema hernoemen? - + You must select a theme to delete. Selecteer een thema om te verwijderen. - + Delete Confirmation Bevestig verwijderen - + Delete %s theme? %s thema verwijderen? - + Validation Error Validatie fout - + A theme with this name already exists. Er bestaat al een thema met deze naam. - + OpenLP Themes (*.theme *.otz) OpenLP Thema's (*.theme *.otz) - + Copy of %s Copy of <theme name> Kopie van %s - + Theme Already Exists Theama bestaat al - + Theme %s already exists. Do you want to replace it? - + Thema %s bestaat reeds. Vervangen? OpenLP.ThemeWizard - + Theme Wizard Thema assistent - + Welcome to the Theme Wizard Welkom bij de thema assistent - + Set Up Background Achtergrond instellen - + Set up your theme's background according to the parameters below. Thema achtergrond instellen met onderstaande parameters. - + Background type: Achtergrond type: - + Solid Color Vaste kleur - + Gradient Kleurverloop - + Color: Kleur: - + Gradient: Kleurverloop: - + Horizontal Horizontaal - + Vertical Verticaal - + Circular Radiaal - + Top Left - Bottom Right Links boven - rechts onder - + Bottom Left - Top Right Links onder - Rechts boven - + Main Area Font Details Font instellingen algemeen - + Define the font and display characteristics for the Display text Stel de eigenschappen voor de tekst weergave in - + Font: Lettertype: - + Size: Grootte: - + Line Spacing: Interlinie: - + &Outline: &Omtrek: - + &Shadow: &Schaduw: - + Bold Vet - + Italic Cursief - + Footer Area Font Details Eigenschappen voettekst - + Define the font and display characteristics for the Footer text Stel de eigenschappen voor de voettekst weergave in - + Text Formatting Details Tekst opmaak eigenschappen - + Allows additional display formatting information to be defined Toestaan dat er afwijkende opmaak kan worden bepaald - + Horizontal Align: Horizontaal uitlijnen: - + Left links - + Right rechts - + Center Centreren - + Output Area Locations Uitvoer gebied locaties - + Allows you to change and move the main and footer areas. Toestaan dat tekstvelden gewijzigd en verplaatst worden. - + &Main Area &Hoofdgebied - + &Use default location Gebr&uik standaard locatie - + X position: X positie: - + px px - + Y position: Y positie: - + Width: Breedte: - + Height: Hoogte: - + Use default location Gebruik standaard locatie - + Theme name: Thema naam: - + Edit Theme - %s Bewerk thema - %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. Deze assistent helpt bij het maken en bewerken van thema's. Klik op volgende om als eerste een achtergrond in te stellen. - + Transitions: Overgangen: - + &Footer Area &Voettekst gebied - + Starting color: Beginkleur: - + Ending color: Eindkleur: - + Background color: Achtergrondkleur: - + Justify Uitvullen - + Layout Preview Layout voorbeeld - + Transparent Transparant - + Preview and Save Voorbeeld en opslaan - + Preview the theme and save it. Toon een voorbeeld en sla het thema op. - + (approximately %d lines per slide) - + (ongeveer %d regels per dia) - + Background Image Empty - + Achtergrondafbeelding Leeg - + You have not selected a background image. Please select one before continuing. - + Geen achtergrondafbeelding geselecteerd. Kies een mooie uit alvorens door te gaan. - + Select Image - + Selecteer afbeelding - + Theme Name Missing - + Thema Naam ontbreekt - + There is no name for this theme. Please enter one. - + Dit thema heeft geen naam. Bedenk een passende naam. - + Theme Name Invalid - + Thema naam ongeldig - + Invalid theme name. Please enter one. - + De naam van het thema is niet geldig. Bedenk een andere naam. OpenLP.ThemesTab - + Global Theme Globaal thema - + Theme Level Thema niveau - + S&ong Level &Lied 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. Gebruik het thema bij elk lied in de database. Als een lied geen eigen thema heeft, gebruik dan het thema van de liturgie. Als de liturgie geen eigen thema heeft, gebruik dan het globale thema. - + &Service Level &Liturgie niveau - + 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 het thema van de liturgie en negeer de thema's van elk lied afzonderlijk. Als de liturgie geen eigen thema heeft, gebruik dan het globale thema. - + &Global Level &Globaal niveau - + Use the global theme, overriding any themes associated with either the service or the songs. Gebruik het globale thema en negeer alle thema's van de liturgie of de afzonderlijke liederen. - + Themes Thema's @@ -5179,315 +5156,315 @@ Continue saving? OpenLP.Ui - + Error Fout - + About Over - + &Add &Toevoegen - + Advanced Geavanceerd - + All Files Alle bestanden - + Bottom Onder - + Browse... Bladeren... - + Cancel Annuleren - + CCLI number: CCLI nummer: - + Create a new service. Maak nieuwe liturgie. - + &Delete Verwij&deren - + &Edit &Bewerken - + Empty Field Wis veld - + Export Exporteren - + pt Abbreviated font pointsize unit pt - + Image Afbeelding - + Import Importeren - + Live Live - + Live Background Error Live achtergrond fout - + Load Laad - + Middle Midden - + New Nieuw - + New Service Nieuwe liturgie - + New Theme Nieuw thema - + No File Selected Singular Geen bestand geselecteerd - + No Files Selected Plural Geen bestanden geselecteerd - + No Item Selected Singular Geen item geselecteerd - + No Items Selected Plural Geen items geselecteerd - + openlp.org 1.x openlp.org 1.x - + OpenLP 2.0 OpenLP 2.0 - + Preview Voorbeeld - + Replace Background Vervang achtergrond - + Reset Background Herstel achtergrond - + s The abbreviated unit for seconds s - + Save && Preview Opslaan && voorbeeld bekijken - + Search Zoek - + You must select an item to delete. Selecteer een item om te verwijderen. - + You must select an item to edit. Selecteer iets om te bewerken. - + Save Service Liturgie opslaan - + Service Liturgie - + Start %s Start %s - + Theme Singular Thema - + Themes Plural Thema's - + Top Boven - + Version Versie - + Delete the selected item. Verwijder het geselecteerde item. - + Move selection up one position. Verplaats selectie een plek naar boven. - + Move selection down one position. Verplaats selectie een plek naar beneden. - + &Vertical Align: &Verticaal uitlijnen: - + Finished import. Importeren beëindigd. - + Format: Formaat: - + Importing Importeren - + Importing "%s"... Importeren "%s"... - + Select Import Source Selecteer te importeren bestand - + Select the import format and the location to import from. Selecteer te importeren bestand en het bestandsformaat. - + 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 bestand - + %p% %p% - + Ready. Klaar. - + Starting import... Start importeren... - + You need to specify at least one %s file to import from. A file type e.g. OpenSong Selecteer minstens een %s bestand om te importeren. @@ -5498,304 +5475,304 @@ Continue saving? Welkom bij de Bijbel Import Assistent - + Welcome to the Song Export Wizard Welkom bij de lied export assistent - + Welcome to the Song Import Wizard Welkom bij de lied import assistent - + Author Singular Auteur - + Authors Plural Auteurs - + © Copyright symbol. © - + Song Book Singular Liedbundel - + Song Books Plural Liedboeken - + Song Maintenance Liederen beheer - + Topic Singular Onderwerp - + Topics Plural Onderwerpen - + Continuous Doorlopend - + Default Standaard - + Display style: Weergave stijl: - + Duplicate Error Dupliceer fout - + File Bestand - + Help Help - + h The abbreviated unit for hours h - + Layout style: Paginaformaat: - + Live Toolbar Live Werkbalk - + m The abbreviated unit for minutes m - + OpenLP is already running. Do you wish to continue? OpenLP is reeds gestart. Weet u zeker dat u wilt doorgaan? - + Settings Instellingen - + Tools Hulpmiddelen - + Unsupported File Niet ondersteund bestandsformaat - + Verse Per Slide Bijbelvers per dia - + Verse Per Line Bijbelvers per regel - + View Weergave - + Title and/or verses not found Titel en/of verzen niet gevonden - + XML syntax error XML syntax fout - + View Mode Weergave modus - + Open service. Open liturgie. - + Print Service Liturgie afdrukken - + Replace live background. Vervang Live achtergrond. - + Reset live background. Herstel Live achtergrond. - + Split a slide into two only if it does not fit on the screen as one slide. Dia opdelen als de inhoud niet op een dia past. - + Welcome to the Bible Upgrade Wizard Welkom bij de Bijbel Opwaardeer Assistent - + Confirm Delete Bevestig verwijderen - + Play Slides in Loop Dia’s doorlopend tonen - + Play Slides to End Dia’s tonen tot eind - + Stop Play Slides in Loop Stop dia’s doorlopend tonen - + Stop Play Slides to End Stop dia’s tonen tot eind - + Next Track Volgende track - + Search Themes... Search bar place holder text Doorzoek thema... - + Optional &Split Optioneel &splitsen - + Invalid Folder Selected Singular Ongeldige map geselecteerd - + Invalid File Selected Singular Ongeldig bestand geselecteerd - + Invalid Files Selected Plural Ongeldige bestanden geselecteerd - + No Folder Selected Singular Geen map geselecteerd - + Open %s Folder Open %s map - + You need to specify one %s file to import from. A file type e.g. OpenSong Specificeer een %s bestand om vanuit te importeren. - + You need to specify one %s folder to import from. A song format e.g. PowerSong Specificeer een %s map om vanuit te importeren. - + Importing Songs - + Liederen importeren 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 @@ -5804,50 +5781,50 @@ Continue saving? 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>Presentatie plugin</strong><br />De presentatie plugin voorziet in de mogelijkheid om verschillende soorten presentaties weer te geven. De keuze van beschikbare presentatie software staat in een uitklapmenu. - + Presentation name singular Presentatie - + Presentations name plural Präsentationen - + Presentations container title Presentaties - + Load a new presentation. Laad nieuwe presentatie. - + Delete the selected presentation. Geselecteerde presentatie verwijderen. - + Preview the selected presentation. Geef van geselecteerde presentatie voorbeeld weer. - + Send the selected presentation live. Geselecteerde presentatie Live. - + Add the selected presentation to the service. Voeg geselecteerde presentatie toe aan de liturgie. @@ -5855,52 +5832,52 @@ Continue saving? PresentationPlugin.MediaItem - + Select Presentation(s) Selecteer presentatie(s) - + Automatic automatisch - + Present using: Presenteren met: - + File Exists Bestand bestaat - + A presentation with that filename already exists. Er bestaat al een presentatie met die naam. - + This type of presentation is not supported. Dit soort presentatie wordt niet ondersteund. - + Presentations (%s) Presentaties (%s) - + Missing Presentation Ontbrekende presentatie - + The presentation %s is incomplete, please reload. Presentatie %s is niet compleet, herlaad a.u.b. - + The presentation %s no longer exists. Presentatie %s bestaat niet meer. @@ -5908,17 +5885,17 @@ Continue saving? PresentationPlugin.PresentationTab - + Available Controllers Beschikbare regelaars - + %s (unavailable) %s (niet beschikbaar) - + Allow presentation application to be overridden Toestaan presentatieprogramma te overschrijven @@ -5926,24 +5903,24 @@ Continue saving? 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 voorziet in de mogelijkheid berichten te sturen naar een andere (draaiende) versie van OpenLP op een andere computer via een web-browser of via de remote API. - + Remote name singular Remote - + Remotes name plural Remotes - + Remote container title Remote @@ -5952,236 +5929,246 @@ Continue saving? RemotePlugin.Mobile - + OpenLP 2.0 Remote OpenLP 2.0 Remote - + OpenLP 2.0 Stage View OpenLP 2.0 Podium Weergave - + Service Manager Liturgie beheer - + Slide Controller Dia regelaar - + Alerts Waarschuwingen - + Search Zoek - + Refresh Vernieuwen - + Blank Leeg - + Show Toon - + Prev Vorige - + Next Volgende - + Text Tekst - + Show Alert Toon waarschuwingen - + Go Live Ga Live - + No Results Niets gevonden - + Options Opties - + Add to Service Voeg toe aan Liturgie - + Home Home - + Theme Thema - + Desktop Bureaublad - + Add &amp; Go to Service Toevoegen &amp; ga naar liturgie + + + Service + Liturgie + + + + Slides + Dia’s + RemotePlugin.RemoteTab - + Serve on IP address: Beschikbaar via IP-adres: - + Port number: Poort nummer: - + Server Settings Server instellingen - + Remote URL: Remote URL: - + Stage view URL: Podium weergave URL: - + Display stage time in 12h format Toon tijd in 12h opmaak - + Android App Android App - + Scan the QR code or click <a href="https://play.google.com/store/apps/details?id=org.openlp.android">download</a> to install the Android app from Google Play. - + Scan de QR code of klik <a href="https://play.google.com/store/apps/details?id=org.openlp.android">download</a> om de Android app from Google Play te installeren. SongUsagePlugin - + &Song Usage Tracking &Lied gebruik bijhouden - + &Delete Tracking Data Verwij&der gegevens liedgebruik - + Delete song usage data up to a specified date. Verwijder alle gegevens over lied gebruik tot een bepaalde datum. - + &Extract Tracking Data &Extraheer gegevens liedgebruik - + Generate a report on song usage. Geneer rapportage liedgebruik. - + Toggle Tracking Gegevens bijhouden aan|uit - + Toggle the tracking of song usage. Gegevens liedgebruik bijhouden aan of uit zetten. - + <strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services. <strong>Liedgebruik plugin</strong><br />Met deze plugin kunt u bijhouden welke liederen tijdens de vieringen gezongen worden. - + SongUsage name singular Liedprotokollierung - + SongUsage name plural Liedprotokollierung - + SongUsage container title Liedgebruik - + Song Usage Liedgebruik - + Song usage tracking is active. Lied gebruik bijhouden is actief. - + Song usage tracking is inactive. Lied gebruik bijhouden is in-actief. - + display weergave - + printed afgedrukt @@ -6189,32 +6176,32 @@ Continue saving? SongUsagePlugin.SongUsageDeleteForm - + Delete Song Usage Data Gegevens liedgebruik verwijderen - + Delete Selected Song Usage Events? Wilt u de gegevens liedgebruik verwijderen? - + Are you sure you want to delete selected Song Usage data? Weet u zeker dat u de gegevens liedgebruik wilt verwijderen? - + Deletion Successful Succesvol verwijderd - + All requested data has been deleted successfully. Alle opgegeven data is verwijderd. - + Select the date up to which the song usage data should be deleted. All data recorded before this date will be permanently deleted. Selecteer de datum tot wanneer de gegevens liedgebruik verwijderd moeten worden. Alle gegevens van voor die datum worden verwijderd. @@ -6222,42 +6209,42 @@ Continue saving? SongUsagePlugin.SongUsageDetailForm - + Song Usage Extraction Gegevens liedgebruik extraheren - + Select Date Range Selecteer periode - + to tot - + Report Location Locatie rapport - + Output File Location Bestandslocatie - + usage_detail_%s_%s.txt liedgebruik_details_%s_%s.txt - + Report Creation Maak rapportage - + Report %s has been successfully created. @@ -6266,12 +6253,12 @@ has been successfully created. is gemaakt. - + Output Path Not Selected Uitvoer pad niet geselecteerd - + You have not set a valid output location for your song usage report. Please select an existing path on your computer. Geen geldige bestandslocatie opgegeven om de rapportage liedgebruik op te slaan. Kies een bestaande map op uw computer. @@ -6279,112 +6266,112 @@ is gemaakt. SongsPlugin - + &Song &Lied - + Import songs using the import wizard. Importeer liederen met de lied assistent. - + <strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs. <strong>Lied plugin</strong><br />De lied plugin regelt de weergave en het beheer van liederen. - + &Re-index Songs He&r-indexeer liederen - + Re-index the songs database to improve searching and ordering. Her-indexxer de liederen in de database om het zoeken en ordenen te verbeteren. - + Reindexing songs... Liederen her-indexeren... - + Arabic (CP-1256) Arabisch (CP-1256) - + Baltic (CP-1257) Baltisch (CP-1257) - + Central European (CP-1250) Centraal Europees (CP-1250) - + Cyrillic (CP-1251) Cyrillisch (CP-1251) - + Greek (CP-1253) Grieks (CP-1253) - + Hebrew (CP-1255) Hebreeuws (CP-1255) - + Japanese (CP-932) Japans (CP-932) - + Korean (CP-949) Koreaans (CP-949) - + Simplified Chinese (CP-936) Chinees, eenvoudig (CP-936) - + Thai (CP-874) Thais (CP-874) - + Traditional Chinese (CP-950) Traditioneel Chinees (CP-950) - + Turkish (CP-1254) Turks (CP-1254) - + Vietnam (CP-1258) Vietnamees (CP-1258) - + Western European (CP-1252) Westeuropees (CP-1252) - + Character Encoding Tekst codering - + The codepage setting is responsible for the correct character representation. Usually you are fine with the preselected choice. @@ -6393,105 +6380,105 @@ een correcte weergave van lettertekens. Meestal voldoet de suggestie van OpenLP. - + Please choose the character encoding. The encoding is responsible for the correct character representation. Kies een tekstcodering (codepage). De tekstcodering is verantwoordelijk voor een correcte weergave van lettertekens. - + Song name singular Lied - + Songs name plural Lieder - + Songs container title Liederen - + Exports songs using the export wizard. Exporteer liederen met de export assistent. - + Add a new song. Voeg nieuw lied toe. - + Edit the selected song. Bewerk geselecteerde lied. - + Delete the selected song. Verwijder geselecteerde lied. - + Preview the selected song. Toon voorbeeld geselecteerd lied. - + Send the selected song live. Toon lied Live. - + Add the selected song to the service. Voeg geselecteerde lied toe aan de liturgie. - + Reindexing songs - + Herindexeren liederen SongsPlugin.AuthorsForm - + Author Maintenance Auteur hebeer - + Display name: Weergave naam: - + First name: Voornaam: - + Last name: Achternaam: - + You need to type in the first name of the author. De voornaam van de auteur moet worden opgegeven. - + You need to type in the last name of the author. De achternaam van de auteur moet worden opgegeven. - + You have not set a display name for the author, combine the first and last names? Geen weergave naam opgegeven. Moeten de voor- en achternaam gecombineerd worden? @@ -6499,7 +6486,7 @@ De tekstcodering is verantwoordelijk voor een correcte weergave van lettertekens SongsPlugin.CCLIFileImport - + The file does not have a valid extension. Dit bestand heeft geen geldige extensie. @@ -6507,12 +6494,12 @@ De tekstcodering is verantwoordelijk voor een correcte weergave van lettertekens SongsPlugin.EasyWorshipSongImport - + Administered by %s Beheerd door %s - + [above are Song Tags with notes imported from EasyWorship] @@ -6524,12 +6511,12 @@ De tekstcodering is verantwoordelijk voor een correcte weergave van lettertekens SongsPlugin.EditBibleForm - + Meta Data Meta Data - + Custom Book Names Aangepaste namen bijbelboeken @@ -6537,202 +6524,202 @@ De tekstcodering is verantwoordelijk voor een correcte weergave van lettertekens SongsPlugin.EditSongForm - + Song Editor Lied bewerker - + &Title: &Titel: - + Alt&ernate title: Afwiss&elende titel: - + &Lyrics: Lied&tekst: - + &Verse order: &Vers volgorde: - + Ed&it All &Alles bewerken - + Title && Lyrics Titel && Liedtekst - + &Add to Song Voeg toe &aan lied - + &Remove Ve&rwijderen - + &Manage Authors, Topics, Song Books &Beheer auteurs, onderwerpen, liedboeken - + A&dd to Song Voeg toe &aan lied - + R&emove V&erwijderen - + Book: Boek: - + Number: Nummer: - + Authors, Topics && Song Book Auteurs, onderwerpen && liedboeken - + New &Theme Nieuw &Thema - + Copyright Information Copyright - + Comments Commentaren - + Theme, Copyright Info && Comments Thema, Copyright && Commentaren - + Add Author Voeg auteur toe - + This author does not exist, do you want to add them? Deze auteur bestaat nog niet, toevoegen? - + This author is already in the list. Deze auteur staat al in de lijst. - + 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. Geen auteur geselecteerd. Kies een auteur uit de lijst of voeg er een toe door de naam in te typen en op de knop "Voeg auteur toe" te klikken. - + Add Topic Voeg onderwerp toe - + This topic does not exist, do you want to add it? Dit onderwerp bestaat nog niet, toevoegen? - + This topic is already in the list. Dit onderwerp staat al in de lijst. - + 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. Geen geldig onderwerp geselecteerd. Kies een onderwerp uit de lijst of type een nieuw onderwerp en klik op "Nieuw onderwerp toevoegen". - + You need to type in a song title. Vul de titel van het lied in. - + You need to type in at least one verse. Vul minstens de tekst van één couplet in. - + The verse order is invalid. There is no verse corresponding to %s. Valid entries are %s. De volgorde van de coupletten klopt niet. Er is geen couplet dat overeenkomt met %s. Wel zijn %s beschikbaar. - + Add Book Voeg boek toe - + This song book does not exist, do you want to add it? Dit liedboek bestaat nog niet, toevoegen? - + You need to have an author for this song. Iemand heeft dit lied geschreven. - + Linked Audio Gekoppelde audio - + Add &File(s) Bestand(en) &toevoegen - + Add &Media Voeg &Media toe - + Remove &All &Alles verwijderen - + Open File(s) Open bestand(en) - + <strong>Warning:</strong> Not all of the verses are in use. <strong>Let op:</strong> Niet alle verzen worden gebruikt. - + The verse order is invalid. There are no verses corresponding to %s. Valid entries are %s. Ongeldige vers volgorde. Er zijn geen verzen die overeenkomen met %s. Geldig zijn %s. @@ -6740,22 +6727,22 @@ De tekstcodering is verantwoordelijk voor een correcte weergave van lettertekens SongsPlugin.EditVerseForm - + Edit Verse Couplet bewerken - + &Verse type: Co&uplet type: - + &Insert &Invoegen - + Split a slide into two by inserting a verse splitter. Dia doormidden delen door een dia 'splitter' in te voegen. @@ -6763,82 +6750,82 @@ De tekstcodering is verantwoordelijk voor een correcte weergave van lettertekens SongsPlugin.ExportWizardForm - + Song Export Wizard Lied Exporteer Assistent - + Select Songs Selecteer liederen - + Check the songs you want to export. Selecteer de liederen die u wilt exporteren. - + Uncheck All Deselecteer alles - + Check All Selecteer alles - + Select Directory Selecteer map - + Directory: Map: - + Exporting Exporteren - + Please wait while your songs are exported. Even wachten terwijl de liederen worden geëxporteerd. - + You need to add at least one Song to export. Kies minstens een lied om te exporteren. - + No Save Location specified Niet opgegeven waar bestand moet worden bewaard - + Starting export... Start exporteren... - + You need to specify a directory. Geef aan waar het bestand moet worden opgeslagen. - + Select Destination Folder Selecteer een doelmap - + Select the directory where you want the songs to be saved. Selecteer een map waarin de liederen moeten worden bewaard. - + This wizard will help to export your songs to the open and free <strong>OpenLyrics</strong> worship song format. Deze assistent helpt u bij het exporteren van liederen naar het open en vrije <strong>OpenLyrics</strong> worship lied formaat. @@ -6846,172 +6833,172 @@ De tekstcodering is verantwoordelijk voor een correcte weergave van lettertekens SongsPlugin.ImportWizardForm - + Select Document/Presentation Files Selecteer Documenten/Presentatie bestanden - + Song Import Wizard Lied importeer assistent - + 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. Deze assistent helpt liederen in verschillende bestandsformaten te importeren in OpenLP. Klik op volgende en kies daarna het bestandsformaat van het te importeren lied. - + Generic Document/Presentation Algemeen Document/Presentatie - + Add Files... Toevoegen... - + Remove File(s) Verwijder bestand(en) - + Please wait while your songs are imported. Even geduld tijdens het importeren. - + OpenLP 2.0 Databases OpenLP 2.0 Databases - + openlp.org v1.x Databases openlp.org v1.x Databases - + Words Of Worship Song Files Words Of Worship Lied bestanden - + Songs Of Fellowship Song Files Songs Of Fellowship lied bestanden - + SongBeamer Files SongBeamer bestanden - + SongShow Plus Song Files SongShow Plus lied bestanden - + Foilpresenter Song Files Foilpresenter lied bestanden - + Copy Kopieer - + Save to File Opslaan als bestand - + The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. Songs of Fellowship import is uitgeschakeld omdat OpenLP OpenOffice.org niet kan vinden op deze computer. - + The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. Algemeen document/presentatie import is uitgeschakeld omdat OpenLP OpenOffice.org niet kan vinden op deze computer. - + OpenLyrics or OpenLP 2.0 Exported Song OpenLyrics of OpenLP 2.0 geëxporteerd lied - + OpenLyrics Files OpenLyrics bestanden - + CCLI SongSelect Files CCLI SongSelect bestanden - + EasySlides XML File EasySlides XML bestanden - + EasyWorship Song Database EasyWorship Lied Database - + DreamBeam Song Files DreamBeam liedbestanden - + You need to specify a valid PowerSong 1.0 database folder. Specificeer een geldige PowerSong 1.0 database map. - + 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>. Convert uw ZionWorx database naar een CSV tekstbestand, zoals staat uitgelegd in de engelstalige <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">gebruikershandleiding</a>. - + SundayPlus Song Files SundayPlus liedbestanden - + This importer has been disabled. importeren is uitgeschakeld - + MediaShout Database MediaShout Database - + The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. MediaShout importeren wordt alleen ondersteund onder Windows. Het is uitgeschakeld omdat een bepaalde Python module ontbreekt. Om te kunnen importeren, moet u de "pyodbc" module installeren. - + SongPro Text Files SongPro Tekst bestanden - + SongPro (Export File) SongPro (Exporteer bestand) - + In SongPro, export your songs using the File -> Export menu Exporteer de liederen in SongPro via het menu File -> Export @@ -7019,12 +7006,12 @@ De tekstcodering is verantwoordelijk voor een correcte weergave van lettertekens SongsPlugin.MediaFilesForm - + Select Media File(s) Selecteer media bestand(en) - + Select one or more audio files from the list below, and click OK to import them into this song. Selecteer een of meerdere audiobestanden uit de lijst, en klik OK om te importeren in dit lied. @@ -7042,7 +7029,7 @@ De tekstcodering is verantwoordelijk voor een correcte weergave van lettertekens Liedtekst - + CCLI License: CCLI Licentie: @@ -7052,7 +7039,7 @@ De tekstcodering is verantwoordelijk voor een correcte weergave van lettertekens Gehele lied - + Are you sure you want to delete the %n selected song(s)? Weet u zeker dat u dit %n lied wilt verwijderen? @@ -7065,7 +7052,7 @@ De tekstcodering is verantwoordelijk voor een correcte weergave van lettertekens Beheer de lijst met auteurs, onderwerpen en liedboeken. - + copy For song cloning kopieer @@ -7099,7 +7086,7 @@ De tekstcodering is verantwoordelijk voor een correcte weergave van lettertekens SongsPlugin.MediaShoutImport - + Unable to open the MediaShout database. Kan de MediaShout database niet openen. @@ -7107,7 +7094,7 @@ De tekstcodering is verantwoordelijk voor een correcte weergave van lettertekens SongsPlugin.OpenLP1SongImport - + Not a valid openlp.org 1.x song database. Geen geldige openlp.org v1.x lied database. @@ -7115,7 +7102,7 @@ De tekstcodering is verantwoordelijk voor een correcte weergave van lettertekens SongsPlugin.OpenLPSongImport - + Not a valid OpenLP 2.0 song database. Geen geldige OpenLP 2.0 lied database. @@ -7123,7 +7110,7 @@ De tekstcodering is verantwoordelijk voor een correcte weergave van lettertekens SongsPlugin.OpenLyricsExport - + Exporting "%s"... Exporteren "%s"... @@ -7131,55 +7118,55 @@ De tekstcodering is verantwoordelijk voor een correcte weergave van lettertekens SongsPlugin.PowerSongImport - + No songs to import. Geen liederen om te importeren. - + Verses not found. Missing "PART" header. Coupletten niet gevonden. Ontbrekende "PART" header. - + No %s files found. - + Geen %s bestanden gevonden. - + Invalid %s file. Unexpected byte value. - + Ongeldig %s bestand. Onverwachte byte waarde. - + Invalid %s file. Missing "TITLE" header. - + Ongeldig %s bestand. Ontbrekende "TITLE" header. - + Invalid %s file. Missing "COPYRIGHTLINE" header. - + Ongeldig %s bestand. Ontbrekende "COPYRIGHTLINE" header. SongsPlugin.SongBookForm - + Song Book Maintenance Onderhoud Liedboeken - + &Name: &Naam: - + &Publisher: &Uitgever: - + You need to type in a name for the book. Er moet een naam worden opgegeven. @@ -7187,12 +7174,12 @@ De tekstcodering is verantwoordelijk voor een correcte weergave van lettertekens SongsPlugin.SongExportForm - + Your song export failed. Liederen export is mislukt. - + Finished export. To import these files use the <strong>OpenLyrics</strong> importer. Klaar met exporteren. Om deze bestanden te importeren gebruik <strong>OpenLyrics</strong> importeren. @@ -7200,27 +7187,27 @@ De tekstcodering is verantwoordelijk voor een correcte weergave van lettertekens SongsPlugin.SongImport - + copyright copyright - + The following songs could not be imported: De volgende liederen konden niet worden geïmporteerd: - + Cannot access OpenOffice or LibreOffice Kan niet bij OpenOffice.org of LibreOffice komen - + Unable to open file Kan bestand niet openen - + File not found Bestand niet gevonden @@ -7228,107 +7215,107 @@ De tekstcodering is verantwoordelijk voor een correcte weergave van lettertekens SongsPlugin.SongMaintenanceForm - + Could not add your author. Kon de auteur niet toevoegen. - + This author already exists. Deze auteur bestaat al. - + Could not add your topic. Kon dit onderwerp niet toevoegen. - + This topic already exists. Dit onderwerp bestaat al. - + Could not add your book. Kon dit boek niet toevoegen. - + This book already exists. Dit boek bestaat al. - + Could not save your changes. De wijzigingen kunnen niet opgeslagen worden. - + Could not save your modified author, because the author already exists. Kan de auteur niet opslaan, omdat deze reeds bestaat. - + Could not save your modified topic, because it already exists. Kan dit onderwerp niet opslaan, omdat het reeds bestaat. - + Delete Author Auteur verwijderen - + Are you sure you want to delete the selected author? Weet u zeker dat u de auteur wilt verwijderen? - + This author cannot be deleted, they are currently assigned to at least one song. Deze auteur kan niet worden verwijderd, omdat er nog een lied aan is gekoppeld. - + Delete Topic Onderwerp verwijderen - + Are you sure you want to delete the selected topic? Weet u zeker dat u dit onderwerp wilt verwijderen? - + This topic cannot be deleted, it is currently assigned to at least one song. Dit onderwerp kan niet worden verwijderd, omdat er nog een lied aan is gekoppeld. - + Delete Book Verwijder boek - + Are you sure you want to delete the selected book? Weet u zeker dat u dit boek wilt verwijderen? - + This book cannot be deleted, it is currently assigned to at least one song. Dit liedboek kan niet worden verwijderd, omdat er nog een lied aan is gekoppeld. - + The author %s already exists. Would you like to make songs with author %s use the existing author %s? Deze auteur %s bestaat al. Liederen met auteur %s aan deze auteur %s koppelen? - + The topic %s already exists. Would you like to make songs with topic %s use the existing topic %s? Dit onderwerp %s bestaat al. Liederen met onderwerp %s aan %s koppelen? - + The book %s already exists. Would you like to make songs with book %s use the existing book %s? Dit liedboek %s bestaat al. Liederen uit het Liedboek %s aan het liedboek %s koppelen? @@ -7336,27 +7323,27 @@ De tekstcodering is verantwoordelijk voor een correcte weergave van lettertekens SongsPlugin.SongsTab - + Songs Mode Lied instellingen - + Enable search as you type Zoeken tijdens het typen - + Display verses on live tool bar Coupletten weergeven op live werkbalk - + Update service from song edit Liturgie bijwerken met bewerkt lied - + Import missing songs from service files Importeer ontbrekende liederen uit liturgiebestand @@ -7364,17 +7351,17 @@ De tekstcodering is verantwoordelijk voor een correcte weergave van lettertekens SongsPlugin.TopicsForm - + Topic Maintenance Onderwerp onderhoud - + Topic name: Onderwerp naam: - + You need to type in a topic name. U moet een onderwerp invullen. @@ -7382,37 +7369,37 @@ De tekstcodering is verantwoordelijk voor een correcte weergave van lettertekens SongsPlugin.VerseType - + Verse Couplet - + Chorus Refrein - + Bridge Bridge - + Pre-Chorus Tussenspel - + Intro Intro - + Ending Eind - + Other Overig @@ -7420,29 +7407,29 @@ De tekstcodering is verantwoordelijk voor een correcte weergave van lettertekens SongsPlugin.ZionWorxImport - + Error reading CSV file. Fout bij het lezen van CSV bestand. - + File not valid ZionWorx CSV format. Bestand geen geldig ZionWorx CSV indeling. - + Line %d: %s - + Regel %d: %s - + Decoding error: %s - + Decoding error: %s - + Record %d - + Opnemen %d diff --git a/resources/i18n/pl.ts b/resources/i18n/pl.ts index d84d4176f..60ed8ca6a 100644 --- a/resources/i18n/pl.ts +++ b/resources/i18n/pl.ts @@ -3,107 +3,107 @@ AlertsPlugin - + &Alert - + &Komunikat - + Show an alert message. - + Pokaż komunikat. - + Alert name singular - + Komunikat - + Alerts name plural - + Komunikaty - + Alerts container title - + Komunikaty - + <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of nursery alerts on the display screen. - + <strong>Wtyczka Komunikatów</strong><br />Wtyczka komunikatów pozwala pokazywać pilne komunikaty na ekranie. AlertsPlugin.AlertForm - + Alert Message - + Komunikat - + Alert &text: - + &Treść komunikatu: - + &New - + &Nowy - + &Save - + &Zapisz - + Displ&ay - + Pokaz - + Display && Cl&ose - + Wyświetl i zamknij - + New Alert - + Nowy komunikat - + You haven't specified any text for your alert. Please type in some text before clicking New. - + Nie wpisałeś jeszcze żadnego tekstu w bieżącym komunikacie. Wpisz jakiś tekst zanim naciśniesz Nowy. - + &Parameter: - + &Parametr: - + No Parameter Found - + Nie znaleziono żadnego parametru - + You have not entered a parameter to be replaced. Do you want to continue anyway? - + Nie wprowadziłeś parametru do zastąpienia. Czy mimo to chcesz kontynuować? - + No Placeholder Found - + Nie znaleziono symbolu zastępczego - + The alert text does not contain '<>'. Do you want to continue anyway? - + Tekst ostrzegawczy nie zawiera '<>'. Czy mimo to chcesz kontynuować? @@ -111,634 +111,637 @@ Do you want to continue anyway? Alert message created and displayed. - + Komunikat został stworzony i wyświetlony. AlertsPlugin.AlertsTab - + Font Czcionka - + Font name: Nazwa czcionki: - + Font color: Kolor czcionki: - + Background color: - Tło czcionki: + Kolor tła: - + Font size: Wielkość czcionki: - + Alert timeout: - + Czas komunikatu: BiblesPlugin - + &Bible - - - - - Bible - name singular - + &Biblia + Bible + name singular + Biblia + + + Bibles name plural - + Biblie - + Bibles container title - + Biblie - + No Book Found - + Nie znaleziono Księgi - + No matching book could be found in this Bible. Check that you have spelled the name of the book correctly. - - - - - Import a Bible. - + Nie znaleziono odpowiadającej księgi w Biblii. Sprawdź, czy zapisałeś nazwę księgi poprawnie. - Add a new Bible. - + Import a Bible. + Importuj Biblię. - Edit the selected Bible. - + Add a new Bible. + Dodaj nową Biblię. - Delete the selected Bible. - + Edit the selected Bible. + Edytuj zaznaczoną Biblię. - Preview the selected Bible. - + Delete the selected Bible. + Usuń zaznaczoną Biblię. - - Send the selected Bible live. - + + Preview the selected Bible. + Podgląd zaznaczonej Biblii. + Send the selected Bible live. + Wyświetl zaznaczoną Biblię na ekranie. + + + Add the selected Bible to the service. - + Dodaj zaznaczoną Biblię do planu nabożeństwa. - + <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display Bible verses from different sources during the service. - + <strong>Wtyczka Biblijna</strong>Wtyczka Biblijna zapewnia możliwość wyświetlania wersetów biblijnych z różnych źródeł podczas posługi. + + - + &Upgrade older Bibles - + &Uaktualnij starsze Biblie - + Upgrade the Bible databases to the latest format. - - - - - Genesis - + Zaktualizuj bazę danych Biblii do najnowszego formatu. - Exodus - + Genesis + Ks. Rodzaju - Leviticus - + Exodus + Ks. Wyjścia - Numbers - + Leviticus + Ks. Kapłańska - Deuteronomy - + Numbers + Ks. Liczb - Joshua - + Deuteronomy + Ks. Powt. Prawa - Judges - + Joshua + Ks. Jozuego - Ruth - + Judges + Ks. Sędziów - 1 Samuel - + Ruth + Ks. Rut - 2 Samuel - + 1 Samuel + 1 Ks. Samuela - 1 Kings - + 2 Samuel + 2 Ks. Samuela - 2 Kings - + 1 Kings + 1 Ks. Królewska - 1 Chronicles - + 2 Kings + 2 Ks. Królewska - 2 Chronicles - + 1 Chronicles + 1 Ks. Kronik - Ezra - + 2 Chronicles + 2 Ks. Kronik - Nehemiah - + Ezra + Ks. Ezdrasza - Esther - + Nehemiah + Ks. Nehemiasza - Job - + Esther + Ks. Estery - Psalms - + Job + Ks. Hioba - Proverbs - + Psalms + Ks. Psalmów - Ecclesiastes - + Proverbs + Ks. Przysłów - Song of Solomon - + Ecclesiastes + Ks. Koheleta - Isaiah - + Song of Solomon + Pieśń nad pieśniami - Jeremiah - + Isaiah + Ks. Izajasza - Lamentations - + Jeremiah + Ks. Jeremiasza - Ezekiel - + Lamentations + Lamentacje Jeremiasza - Daniel - + Ezekiel + Ks. Ezechiela - Hosea - + Daniel + Ks. Daniela - Joel - + Hosea + Ks. Ozeasza - Amos - + Joel + Ks. Joela - Obadiah - + Amos + Ks. Amosa - Jonah - + Obadiah + Ks. Abdiasza - Micah - + Jonah + Ks. Jonasza - Nahum - + Micah + Ks. Micheasza - Habakkuk - + Nahum + Ks. Nahuma - Zephaniah - + Habakkuk + Ks. Habakuka - Haggai - + Zephaniah + Ks. Sofoniasza - Zechariah - + Haggai + Ks. Aggeusza - Malachi - + Zechariah + Ks. Zachariasza - Matthew - + Malachi + Ks. Malachiasza - Mark - + Matthew + Ew. Mateusza - Luke - + Mark + Ew. Marka - John - + Luke + Ew. Łukasza - Acts - + John + Ew. Jana - Romans - + Acts + Dzieje Apost. - 1 Corinthians - + Romans + List do Rzymian - 2 Corinthians - + 1 Corinthians + 1 list do Koryntian - Galatians - + 2 Corinthians + 2 list do Koryntian - Ephesians - + Galatians + List do Galatów - Philippians - + Ephesians + List do Efezjan - Colossians - + Philippians + List do Filipian - 1 Thessalonians - + Colossians + List do Kolosan - 2 Thessalonians - + 1 Thessalonians + 1 List do Tesaloniczan - 1 Timothy - + 2 Thessalonians + 2 List do Tesaloniczan - 2 Timothy - + 1 Timothy + 1 List do Tymoteusza - Titus - + 2 Timothy + 2 List do Tymoteusza - Philemon - + Titus + List do Tytusa - Hebrews - + Philemon + List do Filemona - James - + Hebrews + List do Hebrajczyków - 1 Peter - + James + List Jakuba - 2 Peter - + 1 Peter + 1 List Piotra - 1 John - + 2 Peter + 2 List Piotra - 2 John - + 1 John + 1 List Jana - 3 John - + 2 John + 2 List Jana - Jude - + 3 John + 3 List Jana - Revelation - + Jude + List Judy - Judith - + Revelation + Apokalipsa - Wisdom - + Judith + Ks. Judyty - Tobit - + Wisdom + Ks. Mądrości - Sirach - + Tobit + Ks. Tobiasza - Baruch - + Sirach + Mądrość Syracha - 1 Maccabees - + Baruch + Ks. Barucha - 2 Maccabees - + 1 Maccabees + 1 Ks. Machabejska - 3 Maccabees - + 2 Maccabees + 2 Ks. Machabejska - 4 Maccabees - + 3 Maccabees + 3 Ks. Machabejska - Rest of Daniel - + 4 Maccabees + 4 Ks. Machabejska - Rest of Esther - + Rest of Daniel + Reszta Ks. Daniela - Prayer of Manasses - + Rest of Esther + Reszta Ks. Estery - Letter of Jeremiah - + Prayer of Manasses + Modlitwa Manassesa - Prayer of Azariah - + Letter of Jeremiah + List Jeremiasza - Susanna - + Prayer of Azariah + Modlitwa Azariasza - Bel - + Susanna + Zuzanna - 1 Esdras - + Bel + Bel - 2 Esdras - + 1 Esdras + 3 Ks. Ezdrasza - + + 2 Esdras + 4 Ks. Ezdrasza + + + :|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 BiblesPlugin.BibleEditForm - + You need to specify a version name for your Bible. - + Musisz podać nazwę tłumaczenia tej Biblii. - + You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. - + Musisz ustawić prawa autorskie Biblii. Biblie domeny publicznej muszą zostać oznaczone. - + Bible Exists - + Biblia istnieje - + This Bible already exists. Please import a different Bible or first delete the existing one. - + Ta Biblia już istnieje. Proszę zaimportować inną lub usunąć już istniejącą. - + You need to specify a book name for "%s". - + Musisz sprecyzować nazwę księgi dla "%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. - + Nazwa księgi "%s" nie jest poprawna. +Liczby mogą zostać użyte jedynie na początku i poprzedzać tekst. - + Duplicate Book Name - + Duplikuj nazwę księgi - + The Book Name "%s" has been entered more than once. - + Nazwa księgi "%s" została wpisana więcej niż raz. BiblesPlugin.BibleManager - + Scripture Reference Error - + Błąd odnośnika Pisma - + Web Bible cannot be used - + Biblia internetowa nie może być użyta - + Text Search is not available with Web Bibles. - + Wyszukiwanie tekstu jest niedostępne dla Biblii internetowych. - + 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. - + Nie wprowadzono słów kluczowych wyszukiwania. Możesz oddzielić słowa spacją, by wyszukać wszystkie słowa kluczowe oraz możesz rozdzielić je przecinkami, aby wyszukać tylko jedno z nich. - + There are no Bibles currently installed. Please use the Import Wizard to install one or more Bibles. - + Nie zainstalowano żadnych tekstów Biblijnych. Użyj Kreatora Importu aby zainstalować teksty bibijne. - + No Bibles Available - + Żadna Biblia nie jest dostępna - + 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 @@ -748,313 +751,327 @@ Book Chapter%(verse)sVerse%(range)sVerse%(list)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sVerse%(list)sChapter%(verse)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sChapter%(verse)sVerse Please pay attention to the appended "s" of the wildcards and refrain from translating the words inside the names in the brackets. - + Twój odnośnik nie jest wspierany przez OpenLP bądź jest błędny. Proszę, upewnij się, że Twoje odniesienie pasuje do jednego z poniższych wzorów. + +Księga Rozdział +Księga Rozdział%(range)sRozdział +Księga Rozdział%(verse)sWerset%(range)sWerset +Księga Rozdział%(verse)sWerset%(range)sWerset%(list)sWerset%(range)sWerset +Księga Rozdział%(verse)sWerset%(range)sWerset%(list)sRozdział%(verse)sWerset%(range)sWerset +Księga Rozdział%(verse)sWerset%(range)sRozdział%(verse)sWerset BiblesPlugin.BiblesTab - + Verse Display - + Wyświetl werset - + Only show new chapter numbers - + Pokaż tylko nowe numery rozdziałów - + Bible theme: - + Motyw Biblii: - + No Brackets - + Brak klamer - + ( And ) - + ( i ) - + { And } - + { i } - + [ And ] - + [ i ] - + Note: Changes do not affect verses already in the service. - + Uwaga: ⏎ Zmiany nie wpływają na wersety użyte już w planie nabożeństwa. - + Display second Bible verses - + Wyświetl kolejne wersety Biblijne - + Custom Scripture References - + Niestandardowe odnośniki do Pisma - + Verse Separator: - + Separator zwrotek: - + Range Separator: - + Separator rangi: - + List Separator: - + Separator listy: - + End Mark: - + Końcowy znak: - + 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. - + Alternatywne separatory wersów mogą być zdefiniowane. +Muszą one być odseparowane poziomą kreską "|". Proszę zatwierdzić, by użyć domyślnej wartości. - + 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 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. - + Alternatywne separatory list mogą być zdefiniowane. +Muszą one być odseparowane poziomą kreską "|". Proszę zatwierdzić, by użyć domyślnej wartości. - + 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. - + Alternatywne separatory znaków końcowych mogą być zdefiniowane. +Muszą one być odseparowane poziomą kreską "|". Proszę zatwierdzić, by użyć domyślnej wartości. - + English - Polish + Angielski - + Default Bible Language - + Domyślny język Biblii - + Book name language in search field, search results and on display: - + Book name language in search field, +search results and on display: - + Bible Language - + Język Biblii - + Application Language - + Język Aplikacji BiblesPlugin.BookNameDialog - + Select Book Name - + Wybierz nazwę Księgi - + Current name: - + Obecna nazwa: - + Corresponding name: - + Odpowiednia nazwa: - + Show Books From - + Pokaż Księgi z - + Old Testament - + Stary Testament - + New Testament - + Nowy Testament - + Apocrypha - + Apokryfy - + The following book name cannot be matched up internally. Please select the corresponding name from the list. - + Następująca księga nie może zostać dopasowana. Proszę wybrać odpowiednią nazwę z listy. BiblesPlugin.BookNameForm - + You need to select a book. - + Musisz zaznaczyć jakąś Księgę. BiblesPlugin.CSVBible - + Importing books... %s - + Import ksiąg ... %s - + Importing verses from %s... Importing verses from <book name>... - + Import wersów z %s... - + Importing verses... done. - + Import wersów... wykonano. BiblesPlugin.EditBibleForm - + Bible Editor - + Edytor Biblii - + License Details - + Szczegóły licencji - + Version name: - + Nazwa wersji: - + Copyright: - + Prawa autorskie: - + Permissions: - + Zezwolenia: - + Default Bible Language - + Domyślny język Biblii - + Book name language in search field, search results and on display: - + Book name language in search field, search results and on display: - + Global Settings - + Globalne ustawienia - + Bible Language - + Język Biblii - + Application Language - + Język aplikacji - + English - Polish + Angielski - + This is a Web Download Bible. It is not possible to customize the Book Names. - + To jest pobrana Biblia internetowa. +Nie można dostosowywać i zmieniać nazw ksiąg. - + 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. - + Aby użyć innych nazw Ksiąg, musi być zaznaczony "język Biblii" w zakładce metadanych lub gdy "Globalne ustawienia" są zaznaczone, na stronie Biblia w Konfiguracji OpenLP. BiblesPlugin.HTTPBible - + Registering Bible and loading books... - + Rejestrowanie Biblii i wczytywanie ksiąg... - + Registering Language... - + Rejestrowanie języka... - + Importing %s... Importing <book name>... - + Importowanie %s... - + Download Error - + Błąd pobierania - + 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. - + Wystąpił problem podczas pobierania wybranych wersetów. Sprawdź swoje połączenie internetowe, a jeśli błąd nadal występuje, należy rozważyć zgłoszenie błędu oprogramowania. - + Parse Error - + Błąd przetwarzania - + There was a problem extracting your verse selection. If this error continues to occur please consider reporting a bug. - + Wystąpił problem wyodrębnienia wybranego wersetu. Jeśli błąd nadal występuje należy rozważyć zgłoszenie błędu oprogramowania @@ -1062,950 +1079,986 @@ It is not possible to customize the Book Names. Bible Import Wizard - + Kreator importu Biblii 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. - + Ten kreator pomoże ci zaimportować Biblię z różnych formatów. Kliknij poniższy przycisk Dalej aby rozpocząć proces przez wybranie formatu początkowego. Web Download - + Pobieranie z internetu Location: - + Lokalizacja: Crosswalk - + Crosswalk BibleGateway - + BibleGateway Bible: - + Biblia: Download Options - + Opcje pobierania Server: - + Serwer: Username: - + Nazwa użytkownika: Password: - + Hasło: Proxy Server (Optional) - + Serwer Proxy (opcjonalnie) License Details - + Szczegóły licencji Set up the Bible's license details. - + Ustaw szczegóły licencyjne ?! Biblii Version name: - + Nazwa tłumaczenia: Copyright: - + Prawa autorskie: Please wait while your Bible is imported. - + Proszę czekać, aż Biblia zostanie zaimportowana. You need to specify a file with books of the Bible to use in the import. - + Sprecyzuj plik z księgami Biblii aby móc użyć go do importu. You need to specify a file of Bible verses to import. - + Musisz określić plik z wersetami biblijnymi, aby móc importować You need to specify a version name for your Bible. - + Musisz określić nazwę wersji Biblii. You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. - + Musisz określić prawa autorskie dla Biblii. Biblie w domenie publicznej muszą być określone. Bible Exists - + Biblia istnieje This Bible already exists. Please import a different Bible or first delete the existing one. - + Ta Biblia już istnieje. Proszę zaimportuj inną Biblię, albo usuń istniejącą. Your Bible import failed. - + Import Biblii zakończony niepowodzeniem CSV File - + Plik CSV Bibleserver - + Serwer Biblii Permissions: - + Uprawnienia: Bible file: - + Plik Biblii: Books file: - + Plik Ksiąg: Verses file: - + Plik wersetów: openlp.org 1.x Bible Files - + Plik Biblii w formacie openlp.org 1.x Registering Bible... - + Rejestrowanie Biblii... Registered Bible. Please note, that verses will be downloaded on demand and thus an internet connection is required. - + Biblia została zarejestrowana. Pamiętaj, że wersety będą pobierane na bieżąco, więc wymagane jest połączenie z internetem. BiblesPlugin.LanguageDialog - + Select Language - + Wybierz język - + OpenLP is unable to determine the language of this translation of the Bible. Please select the language from the list below. - + OpenLP nie jest w stanie określić języka tego tłumaczenia Biblii. Proszę wybierz język z poniższej listy. - + Language: - + Język: BiblesPlugin.LanguageForm - + You need to choose a language. - + Musisz wybrać jakiś język BiblesPlugin.MediaItem - + Quick - + Szybko - + Find: - + Znajdź: - + Book: - + Księga: - + Chapter: - + Rozdział: - + Verse: - + Werset: - + From: - + Od: - + To: - + Do: - + Text Search - + Wyszukaj tekst: - + Second: - + Druga: - + Scripture Reference - + Odnośnik biblijny - + Toggle to keep or clear the previous results. - + Przycisk, aby zachować, bądź wyczyścić poprzednie rezultaty. - + You cannot combine single and dual Bible verse search results. Do you want to delete your search results and start a new search? - + Nie możesz łączyć pojedyńczych i podwójnych wersetów Biblii w wynikach wyszukiwania. Czy chcesz usunąć wyniki wyszukiwania i rozpocząć je od początku? - + Bible not fully loaded. - + Biblia nie wczytana w pełni. - + Information - + Informacja - + 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. - + Druga Biblia nie zawiera wszystkich wersetów, które występują w głównej Biblii. Jedynie wersety znalezione w obu tłumaczeniach zostaną wyświetlone. %d wersety nie zostały zawarte w wynikach. - + Search Scripture Reference... - + Wpisz odnośnik... - + Search Text... - + Przeszukaj tekst... - + Are you sure you want to completely delete "%s" Bible from OpenLP? You will need to re-import this Bible to use it again. - + Czy jesteś pewien, że chcesz zupełnie usunąć "%s" Biblię z OpenLP? + +Będziesz musiał zaimportować ją ponownie, aby móc jej znowu używać. BiblesPlugin.OpenSongImport - + Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. - + Niewłaściwy typ Biblii. Biblie na OpenSong'a mogą być skompresowane. Musisz je rozpakować przed importowaniem. BiblesPlugin.Opensong - + Importing %s %s... Importing <book name> <chapter>... - + Importowanie %s %s BiblesPlugin.OsisImport - + Detecting encoding (this may take a few minutes)... - + Wykrywanie kodowania (może to potrwać kilka minut)... - + Importing %s %s... Importing <book name> <chapter>... - + Importowanie %s %s BiblesPlugin.UpgradeWizardForm - + Select a Backup Directory - + Wybierz folder kopii zapasowej - + Bible Upgrade Wizard - + Kreator Aktualizacji Biblii - + 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. - + Ten kreator pozwoli ci na aktualizację istniejącej Biblii z poprzedniej wersji OpenLP 2. Kliknij poniższy przycisk dalej aby rozpocząć proces aktualizacji. - + Select Backup Directory - + Wybierz folder Kopii Zapasowej - + Please select a backup directory for your Bibles - + Wybierz folder kopii zapasowej dla twoich Biblii - + 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>. - + Poprzednie wydania OpenLP 2.0 nie mogą używać zaktualizowanej Biblii. Za chwilę zostanie utworzona kopia zapasowa obecnych Biblii, więc będziesz mógł po prostu skopiować dane z powrotem do katalogu OpenLP w przypadku gdy będziesz potrzebował powrócić do poprzedniego wydania OpenLP. Instrukcje jak przywrócić pliki można znaleźć w naszym dziale <a href="http://wiki.openlp.org/faq">FAQ Frequently Asked Questions - Najczęściej Zadawane Pytania</a>. - + Please select a backup location for your Bibles. - + Proszę wybrać lokalizację kopii zapasowej twojej Biblii. - + Backup Directory: - + Katalog kopii zapasowej: - + There is no need to backup my Bibles - + Nie ma potrzeby tworzenia kopii zapasowej Biblii - + Select Bibles - + Wybierz Biblię - + Please select the Bibles to upgrade - + Proszę wybrać Biblie do zaktualizowania - + Upgrading - + Aktualizacja - + Please wait while your Bibles are upgraded. - + Proszę czekać podczas aktualizacji Biblii - + The backup was not successful. To backup your Bibles you need permission to write to the given directory. - + Tworzenie kopii zapasowej zakończone niepowodzeniem. ⏎ Aby utworzyć kopię zapasową twojej Biblii musisz mieć uprawnienia do zapisywania w danym folderze. - + Upgrading Bible %s of %s: "%s" Failed - + Aktualizowanie Biblii %s of %s: "%s" ⏎ Niepowodzenie - + Upgrading Bible %s of %s: "%s" Upgrading ... - + Aktualizowanie Biblii %s of %s: "%s" ⏎ Aktualizowanie w toku... - + Download Error - + Błąd pobierania - + To upgrade your Web Bibles an Internet connection is required. - + Aby aktualizować twoje internetowe Biblie wymagane jest połączenie z internetem. - + Upgrading Bible %s of %s: "%s" Upgrading %s ... - + Aktualizowanie Biblii %s of %s: "%s" ⏎ Aktualizowanie %s.. - + Upgrading Bible %s of %s: "%s" Complete - + Aktualizowanie Biblii %s of %s: "%s" ⏎ Ukończono! - + , %s failed - + %s niepowodzenie - + 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. - + Uaktualnianie Biblii(s): %s udana%s +Proszę zauważ, że Biblie internetowo będą pobierane na bieżąco, więc wymagane jest połączenie internetowe. - + Upgrading Bible(s): %s successful%s - + Aktualizowanie Biblii: %s successful%s - + Upgrade failed. - + Aktualizacja zakończona niepowodzeniem. - + You need to specify a backup directory for your Bibles. - + Musisz określić katalog dla kopii zapasowej twojej Biblii. - + Starting upgrade... - + Rozpoczynanie aktualizacji... - + There are no Bibles that need to be upgraded. - + Brak Biblii wymagających aktualizacji. 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>Wtyczna Niestandardowych Slajdów</strong><br />Wtyczka niestandardowych slajdów zapewnia możliwość utworzenia niestandardowych tekstów na slajdach, które mogą być wyświetlane na ekranie w ten sam sposób jak pieśni. Ta wtyczka zapewnia większą swobodę niż wtyczka pieśni. - + Custom Slide name singular - + Slajd niestadardowy - + Custom Slides name plural - + Slajdy niestandardowe - + Custom Slides container title - - - - - Load a new custom slide. - + Slajdy niestandardowe - Import a custom slide. - + Load a new custom slide. + Wczytaj nowy slajd niestandardowy. - Add a new custom slide. - + Import a custom slide. + Importowanie slajdów niestandardowych. + Add a new custom slide. + Dodaj nowy slajd niestandardowy. + + + Edit the selected custom slide. - + Edytuj wybrany slajd niestandardowy. - + Delete the selected custom slide. - + Usuń wybrany slajd niestandardowy - + Preview the selected custom slide. - + Podgląd wybranego slajdu niestandardowego. - + Send the selected custom slide live. - + Wyświetl wybrany slajd niestandardowy na ekranie. - + Add the selected custom slide to the service. - + Dodaj wybrany slajd niestandardowy do planu nabożeństwa. CustomPlugin.CustomTab - + Custom Display - + Niestandardowe wyświetlanie - + Display footer - + Wyświetl stopkę CustomPlugin.EditCustomForm - + Edit Custom Slides - + Edytuj slajdy niestandardowe - + &Title: - + &Tytuł: - + Add a new slide at bottom. - + Dodaj nowy slajd na dole. - + Edit the selected slide. - + Edytuj wybrany slajd. - + Edit all the slides at once. - + Edytuj wszystkie slajdy natychmiast. - + Split a slide into two by inserting a slide splitter. - + Połącz dwa slajdy w jeden za pomocą łączenia slajdów. - + The&me: - + Motyw: - + &Credits: - + &Twórcy: - + You need to type in a title. - + Musisz napisać tytuł. - + You need to add at least one slide - + Musisz dodać przynajmniej jeden slajd - + Ed&it All - + Edytuj wszystko - + Insert Slide - + Wstaw slajd CustomPlugin.EditVerseForm - + Edit Slide - + Edytuj slajd CustomPlugin.MediaItem - + Are you sure you want to delete the %n selected custom slide(s)? - - - - + + Czy na pewno chcesz usunąć %n zaznaczonych slajdów niestandardowych? + Czy jesteś pewien, że chcesz usunąć %n zaznaczonych slajdów niestandardowych? + Czy na pewno chcesz usunąć %n zaznaczonych slajdów niestandardowych? 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 - + <strong>Wtyczka Obrazy</strong><br />Wtyczka obrazu zapewnia wyświetlanie obrazów. <br /> Jedną z wyróżniających cech tej wtyczki jest możliwość grupowania kilku zdjęć razem z Menadżerem Posługi, dzięki czemu wyświetlanie zdjęć jest łatwiejsze. Można także wykorzystać pętlę czasową do tworzenia pokazu slajdów, który uruchamia się automatycznie. Pozwala ona także na zmianę tła wyświetlanych pieśni. + Image + name singular + Obraz + + + Images name plural - + Obrazy - + Images container title - + Obrazy - + Load a new image. - - - - - Add a new image. - + Wczytaj nowy obraz. - Edit the selected image. - + Add a new image. + Dodaj nowy obraz. - Delete the selected image. - + Edit the selected image. + Edytuj wybrany obraz. - Preview the selected image. - + Delete the selected image. + Usuń zaznaczony obraz. - Send the selected image live. - + Preview the selected image. + Podgląd zaznaczonego obrazu. + Send the selected image live. + Wyświetl wybrany obraz na ekranie. + + + Add the selected image to the service. - + Dodaj zaznaczony obraz do planu nabożeństwa. + ImagePlugin.ExceptionDialog - + Select Attachment - + Wybierz załącznik ImagePlugin.MediaItem - + Select Image(s) - + Wybierz obraz(y) - + You must select an image to delete. - + Musisz wybrać obraz do usunięcia - + You must select an image to replace the background with. - + Musisz zaznaczyć obraz, by zastąpić go na tło. - + Missing Image(s) - + Brakujące obrazy - + The following image(s) no longer exist: %s - + Następujące obrazy nie istnieją: %s - + The following image(s) no longer exist: %s Do you want to add the other images anyway? - + Następujące obrazy nie istnieją: %s +Czy mimo to chcesz dodać inne? - + There was a problem replacing your background, the image file "%s" no longer exists. - + Nastąpił problem ze zmianą tła, plik "%s" nie istnieje. - + There was no display item to amend. - + Nie było wyświetlanej pozycji do korekty. ImagesPlugin.ImageTab - + Background Color - + Kolor tła - + Default Color: - + Domyślny kolor: - + Visible background for images with aspect ratio different to screen. - + Widoczne tło dla obrazów o innych proporcjach w stosunku do ekranu. MediaPlugin - + <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. - - - - - Media - name singular - + <strong>Wtyczka Multimedialna</strong><br />Wtyczka Multimedialna zapewnia odtwarzanie audio i video. Media - name plural - + name singular + Multimedia - + + Media + name plural + Multimedia + + + Media container title - + Multimedia - + Load new media. - - - - - Add new media. - + Wczytaj nowe multimedia. - Edit the selected media. - + Add new media. + Dodaj nowe multimedia. - Delete the selected media. - + Edit the selected media. + Edytuj zaznaczone multimedia. - Preview the selected media. - + Delete the selected media. + Usuń zaznaczone multimedia. - Send the selected media live. - + Preview the selected media. + Podgląd zaznaczonych multimediów. + Send the selected media live. + Wyświetl wybrane multimedia na ekranie. + + + Add the selected media to the service. - + Dodaj wybrane multimedia do planu nabożeństwa. MediaPlugin.MediaItem - + Select Media - + Wybierz multimedia - + You must select a media file to delete. - + Musisz zaznaczyć plik multimedialny do usunięcia. - + You must select a media file to replace the background with. - + Musisz zaznaczyć plik, by zastąpić go na tło. - + There was a problem replacing your background, the media file "%s" no longer exists. - + Wystąpił problem ze zmianą tła, plik "%s" nie istnieje. - + Missing Media File - + Brakujący plik multimedialny - + The file %s no longer exists. - + Plik %s nie istnieje - + Videos (%s);;Audio (%s);;%s (*) - + Wideo (%s);;Audio (%s);;%s (*) - + There was no display item to amend. - + Nie było wyświetlanej pozycji do korekty. - + Unsupported File - + Nieobsługiwany format - + Automatic - + Automatyczny - + Use Player: - + Użyj odtwarzacza: MediaPlugin.MediaTab - + Available Media Players - + Dostepne odtwarzacze multimediów - + %s (unavailable) - + %s (niedostępny) - + Player Order - + Porządek modlitw - + Allow media player to be overridden - + Zezwól odtwarzaczowi multimediów być nadrzędnym OpenLP - + Image Files - + Pliki obrazów - + Information - + Informacja - + Bible format has changed. You have to upgrade your existing Bibles. Should OpenLP upgrade now? - + Format Biblii został zmieniony +Musisz uaktualnić istniejące Biblie. +Czy OpenLP ma to zrobić teraz? OpenLP.AboutForm - + Credits - + Zasługi - + License - + Licencja - + build %s - + zbuduj %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. - + Ten program jest wolnym oprogramowaniem; możesz go rozpowszechniać i/albo modyfikować pod warunkami Powszechnej Licencji Publicznej GNU, wydanej przez Fundację Wolnego Oprogramowania - według wersji drugiej tej Licencji. - + 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. - + Program został rozpowszechniony z nadzieją, iż będzie on użyteczny, lecz BEZ ŻADNEJ GWARANCJI; nawet bez sugerowania HANDLOWEJ gwarancji lub PRZYDATNOŚCI DO OKREŚLONEGO CELU. Więcej informacji poniżej. - + + Copyright © 2004-2012 %s +Portions copyright © 2004-2012 %s + Copyright © 2004-2012 %s +Portions copyright © 2004-2012 %s + + + + 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. + +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 volunteering by using the button below. + OpenLP <version><revision> - Otwartoźródłowy Edytor Pieśni + +OpenLP jest wolnym programem przeznaczonym do projekcji pieśni lub puszczania prezentacji w kościele, umożliwia puszczenie pieśni, tekstów Biblijnych, filmów, zdjęć a nawet prezentacji (jeśli Impress, PowerPoint lub PowerPoint Viewer jest zainstalowany) na komputerze przez projektor. + +Dowiedz się więcej o OpenLP: http://openlp.org/ + +OpenLP jest pisany i wspierany przez wolontariuszy. Jeśli chciałbyś, aby więcej wolnych, Chrześcijańskich programów było pisanych, proszę rozważ współpracę przez naciśnięcie poniższego przycisku. + + + + Volunteer + Ochotnicy + + + Project Lead %s @@ -2024,12 +2077,20 @@ Packagers Translators Afrikaans (af) %s + Czeck (cs) + %s + Danish (da) + %s German (de) %s + Greek (el) + %s English, United Kingdom (en_GB) %s English, South Africa (en_ZA) %s + Spanish (es) + %s Estonian (et) %s French (fr) @@ -2046,13 +2107,15 @@ Translators %s Russian (ru) %s + Swedish (sv) + %s Documentation %s Built With Python: http://www.python.org/ - Qt4: http://qt.nokia.com/ + Qt4: http://qt.digia.com/ PyQt4: http://www.riverbankcomputing.co.uk/software/pyqt/intro Oxygen Icons: http://oxygen-icons.org/ @@ -2069,302 +2132,282 @@ Final Credit He has set us free. - - - Copyright © 2004-2012 %s -Portions copyright © 2004-2012 %s - - - - - 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. - -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 volunteering by using the button below. - - - - - Volunteer - - OpenLP.AdvancedTab - + UI Settings - + Ustawienia interfejsu - + Number of recent files to display: - + Liczba ostatnio używanych plików do wyświetlenia: - + Remember active media manager tab on startup - + Zapamiętaj aktywną kartę menedżera multimediów - + Double-click to send items straight to live - + Kliknij podwójnie, aby wyświetlić pozycje na ekranie - + Expand new service items on creation - + Rozszerz pozycje nowego planu do tworzenia - + Enable application exit confirmation - + Zezwól aplikacji potwierdzenie wyjścia - + Mouse Cursor - + Kursor myszy - + Hide mouse cursor when over display window - + Ukryj kursor myszy, gdy pojawia się wyświetlający ekran - + Default Image - + Domyślny obraz - + Background color: - Tło czcionki: + Kolor tła: - + Image file: - + Plik obrazu: - + Open File - + Otwórz plik - + Advanced - + Zaawansowane - + Preview items when clicked in Media Manager - + Podgląd zaznaczonych pozycji w Menedżerze Multimediów - + Click to select a color. - + Kliknij aby wybrać kolor. - + Browse for an image file to display. - + Wybierz plik obrazu do wyświetlenia. - + Revert to the default OpenLP logo. - + Powróć do domyślnego 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. - + Plan %Y-%m-%d %H-%M - + Default Service Name - + Domyślna nazwa planu nabożeństwa - + Enable default service name - + Ustaw domyślną nazwę planu nabożeństwa - + Date and Time: - + Czas i data: - + Monday - + Poniedziałek - + Tuesday - + Wtorek - + Wednesday - + Środa - + Thurdsday - + Czwartek - + Friday - + Piątek - + Saturday - + Sobota - + Sunday - + Niedziela - + Now - + Teraz - + Time when usual service starts. - + Standardowa godzina rozpoczęcia. - + Name: - + Imię: - + Consult the OpenLP manual for usage. - + Zaznajom się z instrukcją obsługi OpenLP. - + Revert to the default service name "%s". - + Powróć do domyślnej nazwy planu nabożeństwa "%s".. - + Example: - + Przykład: - + X11 - + X11 Bypass X11 Window Manager - + Bypass X11 Window Manager - + Syntax error. - + Błąd składni. - + Data Location - + Lokalizacja danych - + Current path: - + Aktualna ścieżka: - + Custom path: - + Inna ścieżka: - + Browse for new data file location. - + Przeglądaj nowy katalog danych. - + Set the data location to the default. - + Ustaw pliki lokalizacji jako domyślne. - + Cancel - + Anuluj - + Cancel OpenLP data directory location change. - + Anuluj zmianę lokalizacji katalogu OpenLP. - + Copy data to new location. - + Skopiuj dane do nowej lokalizacji. - + Copy the OpenLP data files to the new location. - + Skopiuj pliki danych OpenLP do nowej lokalizacji. - + <strong>WARNING:</strong> New data directory location contains OpenLP data files. These files WILL be replaced during a copy. - + <strong>Uwaga:</strong> Nowa lokalizacja katalogu danych zawiera dane z plikami OpenLP. Te pliki będą zastąpione podczas kopiowania. - + Data Directory Error - + Błąd katalogu danych - + Select Data Directory Location - + Zaznacz katalog lokalizacji danych - + Confirm Data Directory Change - + Potwierdź zmianę katalogu plików - + Reset Data Directory - + Zresetuj katalog z danymi - + 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. - + Czy jesteś pewien, że chcesz zmienić lokalizację katalogu z danymi OpenLP na domyślne? + +Katalog z danymi zostanie przywrucony jak OpenLP zostanie zamknięty. - + Overwrite Existing Data - + Nadpisz istniejące dane - + OpenLP data directory was not found %s @@ -2374,19 +2417,31 @@ This data directory was previously changed from the OpenLP default location. If Click "No" to stop loading OpenLP. allowing you to fix the the problem. Click "Yes" to reset the data directory to the default location. - + OpenLP data directory was not found + +%s + +This data directory was previously changed from the OpenLP default location. Jeśli nowa lokalizacja jest na zewnętrznym urządzeniu, to musi być ono podłączone. + +Naciśnij "Nie", aby zatrzymać ładowanie programu. Dzięki temu będziesz mógł naprawić problem. + +Naciśnij "Tak", aby zresetować katalog z danymi w domyślnej lokalizacji. - + Are you sure you want to change the location of the OpenLP data directory to: %s The data directory will be changed when OpenLP is closed. - + Czy jesteś pewien, że chcesz zmienić lokalizację katalogu OpenLP z danymi na: + +%s + +Katalog z danymi zostanie zmieniony jak OpenLP zostanie zamknięty. - + WARNING: The location you have selected @@ -2394,68 +2449,75 @@ The location you have selected %s appears to contain OpenLP data files. Do you wish to replace these files with the current data files? - + Uwaga: + +Lokalizacja, którą wybrałeś + +%s + +okazuje się zawierać pliki OpenLP. Czy chcesz zastąpić te pliki obecnymi danymi? OpenLP.ExceptionDialog - + Error Occurred - + Wystąpił błąd - + 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 napotkał problem i już nie wstał... Poniższe pole tekstowe zawiera informacje, które mogą być pomocne dla programistów OpenLP. Proszę wysłać e-mail na adres bugs@openlp.org wraz z dokładnym opisem czynności jakie były wykonywane w momencie wystąpienia błędu. - + Send E-Mail - + Wyślij e-mail - + Save to File - + Zapisz do pliku - + Please enter a description of what you were doing to cause this error (Minimum 20 characters) - + Proszę wprowadzić opis czynności, jakie były wykonywane w momencie wystąpienia błędu ⏎ (Minimum 20 znaków) - + Attach File - + Załącz plik - + Description characters to enter : %s - + Opis znaku do wpisania: %s OpenLP.ExceptionForm - + Platform: %s - + Platforma: %s + - + Save Crash Report - + Zapisz raport o awarii - + Text files (*.txt *.log *.text) - + Pliki tekstowe (*.txt *.log *.text) - + **OpenLP Bug Report** Version: %s @@ -2470,10 +2532,23 @@ Version: %s --- Library Versions --- %s - + **Raport błędu OpenLP** +Wersja: %s + +--- Szczegóły wyjątku. --- + +%s + + --- Exception Traceback --- +%s +--- Informacje o systemie --- +%s +--- Wersje bibliotek --- +%s + - + *OpenLP Bug Report* Version: %s @@ -2489,4391 +2564,4443 @@ Version: %s %s Please add the information that bug reports are favoured written in English. - + **Raport błędu OpenLP** +Wersja: %s + +--- Szczegóły wyjątku. --- + +%s + + --- Exception Traceback --- +%s +--- Informacje o systemie --- +%s +--- Wersje bibliotek --- +%s OpenLP.FileRenameForm - + File Rename - + Zmiana nazwy pliku - + New File Name: - + Nowa nazwa pliku: - + File Copy - + Kopiuj plik OpenLP.FirstTimeLanguageForm - + Select Translation - + Wybierz tłumaczenie - + Choose the translation you'd like to use in OpenLP. - + Wybierz tłumaczenie, z którego chcesz korzystać w OpenLP. - + Translation: - + Tłumaczenie: OpenLP.FirstTimeWizard - + Songs - + Pieśni - + First Time Wizard - + Kreator pierwszego razu - + Welcome to the First Time Wizard - + Witaj w Kreatorze pierwszego razu - + Activate required Plugins - + Aktywuj wymagane wtyczki - + Select the Plugins you wish to use. - - - - - Bible - + Wybierz wtyczki, których chcesz używać. - Images - + Bible + Biblia - - Presentations - + + Images + Obrazy - Media (Audio and Video) - + Presentations + Prezentacje - Allow remote access - + Media (Audio and Video) + Multimedia (pliki dźwiękowe i filmy) - Monitor Song Usage - + Allow remote access + Zezwól na zdalny dostęp - Allow Alerts - - - - - Default Settings - - - - - Downloading %s... - - - - - Download complete. Click the finish button to start OpenLP. - - - - - Enabling selected plugins... - + Monitor Song Usage + Monitor użycia pieśni - 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. - + Allow Alerts + Komunikaty - Set up default settings to be used by OpenLP. - + Default Settings + Ustawienia domyślne + + + + Downloading %s... + Pobieranie %s... + + + + Download complete. Click the finish button to start OpenLP. + Pobieranie zakończone. Naciśnij przycisk Zakończ, aby włączyć OpenLP. + + + + Enabling selected plugins... + Aktywowanie wybranych wtyczek... + + + + No Internet Connection + Brak połączenia z internetem + + + + Unable to detect an Internet connection. + Nie można wykryć połączenia internetowego. + + + + Sample Songs + Przykładowe pieśni + + + + Select and download public domain songs. + Zaznacz i pobierz darmowe pieśni. + + + + Sample Bibles + Przykładowe Biblie + + + + Select and download free Bibles. + Zaznacz i pobierz darmowe Biblie. + + + + Sample Themes + Przykładowe motywy + + + + Select and download sample themes. + Zaznacz i pobierz przykładowe motywy. - Default output display: - + Set up default settings to be used by OpenLP. + Ustal domyślne ustawienia dla OpenLP. - Select default theme: - + Default output display: + Domyślny ekran wyjściowy: - Starting configuration process... - - - - - This wizard will help you to configure OpenLP for initial use. Click the next button below to start. - - - - - Setting Up And Downloading - - - - - Please wait while OpenLP is set up and your data is downloaded. - - - - - Setting Up - - - - - Click the finish button to start OpenLP. - - - - - Download complete. Click the finish button to return to OpenLP. - - - - - Click the finish button to return to OpenLP. - - - - - Custom Slides - + Select default theme: + Wybierz domyślny motyw: - Finish - + Starting configuration process... + Rozpoczynanie procesu konfiguracji... - + + This wizard will help you to configure OpenLP for initial use. Click the next button below to start. + Ten kreator pomoże ci skonfigurować OpenLP do pierwszego użycia. Kliknij na przycisk Dalej aby rozpocząć. + + + + Setting Up And Downloading + Konfigurowanie i Pobieranie + + + + Please wait while OpenLP is set up and your data is downloaded. + Proszę czekać - OpenLP konfiguruje i pobiera dane + + + + Setting Up + Konfigurowanie + + + + Click the finish button to start OpenLP. + Naciśnij przycisk Zakończ, aby włączyć OpenLP. + + + + Download complete. Click the finish button to return to OpenLP. + Pobieranie zakończone. Naciśnij przycisk Zakończ, aby wrócić do OpenLP. + + + + Click the finish button to return to OpenLP. + Naciśnij przycisk Zakończ, aby wrócić do OpenLP. + + + + Custom Slides + Slajdy niestandardowe + + + + Finish + Koniec + + + 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. - + Brak połączenia internetowego. Kreator pierwszego razu potrzebuje połączenia z internetem, aby móc pobierać przykładowe pieśni, Biblie i motywy. Naciśnij przycisk Zakończ, aby włączyć OpenLP z wstępnymi ustawieniami, bez przykładowych danych. + +Aby uruchomić Kreator pierwszego razu i zaimportować przykładowe dane później, sprawdź połączenie internetowe i uruchom ponownie ten kreator przez zaznaczanie "Narzędzie/Włącz kreator pierwszego razu" w OpenLP. - + To cancel the First Time Wizard completely (and not start OpenLP), click the Cancel button now. - + + +Aby anulować Kreator pierwszego uruchomienia zupełnie (i nie włączyć OpenLP), naciśnij Anuluj teraz. OpenLP.FormattingTagDialog - + Configure Formatting Tags - + Konfiguruj znaczniki formatowania - + Edit Selection - + Edytuj zaznaczenie - + Save - + Zapisz - + Description - + Opis - + Tag - + Znacznik - + Start HTML - + Początek HTML - + End HTML - + Koniec HTML OpenLP.FormattingTagForm - + Update Error - + Błąd aktualizacji - + Tag "n" already defined. - + Znacznik "n" już został zdefiniowany. - + New Tag - + Nowy znacznik - + <HTML here> - + <HTML here> - + </and here> - + </and here> - + Tag %s already defined. - + Znacznik %s już został zdefiniowany. OpenLP.FormattingTags - + Red - + Czerwony - + Black - + Czarny - + Blue - + Niebieski - + Yellow - + Żółty - + Green - + Zielony - + Pink - + Różowy - + Orange - + Pomarańczowy - + Purple - + Fioletowy - + White - + Biały - + Superscript - + Indeks górny - + Subscript - + Indeks dolny - + Paragraph - + Paragraf - + Bold - + Pogrubienie - + Italics - + Kursywa - + Underline - + Podkreślenie - + Break - + Przerwa OpenLP.GeneralTab - - - General - - + General + Ekrany + + + Monitors - + Ekrany - + Select monitor for output display: - + Wybierz ekran wyjściowy: - + Display if a single screen - + Wyświetl, jeśli jest tylko jeden ekran - + Application Startup - + Startowanie aplikacji - + Show blank screen warning - + Pokaż ostrzeżenie o braku ekranu - + Automatically open the last service - + Automatycznie otwórz ostatni plan nabożeństwa - + Show the splash screen - + Pokaż ekran powitalny - + Application Settings - + Ustawienia aplikacji - + Prompt to save before starting a new service - + Proponuj zapisanie przed tworzeniem nowego planu - + Automatically preview next item in service - - - - - sec - + Automatyczny podgląd następnej pozycji z planu nabożeństw + sec + sek + + + CCLI Details - + Szczegóły CCLI - + SongSelect username: - + Użytkownik SongSelect: - + SongSelect password: - - - - - X - + Hasło SongSelect: - Y - + X + X - Height - + Y + Y - Width - - - - - Check for updates to OpenLP - - - - - Unblank display when adding new live item - - - - - Timed slide interval: - + Height + Wysokość - Background Audio - + Width + Szerokość - + + Check for updates to OpenLP + Sprawdź aktualizację OpenLP + + + + Unblank display when adding new live item + Wyłącz wygaszenie ekranu podczas wyświetlania nowego elementu na ekranie + + + + Timed slide interval: + Czas zmieniania slajdów: + + + + Background Audio + Tło audio + + + Start background audio paused - + Rozpocznij granie muzyki w tle Service Item Slide Limits - + Limity pozycji slajdów planu nabożeństwa - + Override display position: - + Nadrzędna pozycja wyświetlania: - + Repeat track list - + Powtarzaj listę utworów Behavior of next/previous on the last/first slide: - + Zachowanie następnego/poprzedniego slajdu w ostatnim/pierwszym slajdzie: &Remain on Slide - + Pozostaw na slajdzie &Wrap around - + &Wrap around &Move to next/previous service item - + Przenieś do następnej/poprzedniej pozycji nabożeństwa. OpenLP.LanguageManager - + Language - + Język - + Please restart OpenLP to use your new language setting. - + Proszę zresetować OpenLP, aby móc używać nowego języka. OpenLP.MainDisplay - + OpenLP Display - + Wyświetlacz OpenLP OpenLP.MainWindow - - - &File - - - &Import - + &File + &Plik - &Export - + &Import + &Importuj - - &View - + + &Export + &Eksportuj - M&ode - + &View + &Widok - &Tools - + M&ode + &Tryb + &Tools + &Narzędzia + + + &Settings - + &Ustawienia - + &Language - - - - - &Help - + &Język + &Help + Pomo&c + + + Media Manager - + Menedżer Multimediów - + Service Manager - + Menedżer planu nabożeństwa - + Theme Manager - + Menedżer Motywów - + &New - + &Nowy - + &Open - + &Otwórz - + Open an existing service. - + Otwórz istniejący plan nabożeństwa - + &Save - + &Zapisz - + Save the current service to disk. - + Zapisz obecny plan nabożeństwa na dysk. - + Save &As... - + Zapisz &jako... - + Save Service As - + Zapisz plan nabożeństwa jako - + Save the current service under a new name. - + Zapisz obecny plan nabożeństwa pod nową nazwą - + E&xit - + &Wyjście - + Quit OpenLP - + Wyjdź z OpenLP - + &Theme - + &Motyw - + &Configure OpenLP... - + Konfiguruj &OpenLP... - + &Media Manager - + &Menedżer Multimediów - + Toggle Media Manager - + Przełącz Menedżera Multimediów - + Toggle the visibility of the media manager. - + Przełącz widoczność menedżera multimediów. - + &Theme Manager - + Menadżer mo&tywów - + Toggle Theme Manager - + Przełącz menedżera motywów. - + Toggle the visibility of the theme manager. - + Przełącz widoczność menedżera motywów. - + &Service Manager - + &Plan nabożeństw - + Toggle Service Manager - + Przełącz menedżera planu nabożeństwa - + Toggle the visibility of the service manager. - + Przełącz widoczność menedżera planu nabożeństwa. - + &Preview Panel - + Panel p&odglądu - + Toggle Preview Panel - + Przełącz panel podglądu - + Toggle the visibility of the preview panel. - + Przełącz widoczność panelu podglądu. - + &Live Panel - + Panel &ekranu - + Toggle Live Panel - + Przełącz panel ekranu - + Toggle the visibility of the live panel. - + Przełącz widoczność panelu ekranu. - + &Plugin List - + &Lista wtyczek - + List the Plugins - + Lista wtyczek - + &User Guide - - - - - &About - + Podręcznik użytkownika + &About + &O programie + + + More information about OpenLP - + Więcej informacji o OpenLP - + &Online Help - + &Pomoc online - + &Web Site - + &Strona internetowa - + Use the system language, if available. - + Użyj języka systemu, jeśli jest dostępny. - + Set the interface language to %s - + Ustaw język interfejsu na %s - + Add &Tool... - + Dodaj narzędzie... - + Add an application to the list of tools. - + Dodaj aplikację do listy narzędzi. - + &Default - + &Domyślny - + Set the view mode back to the default. - - - - - &Setup - + Przywróć tryb podglądu do domyślnych ustawień. - Set the view mode to Setup. - + &Setup + &Szybki - - &Live - + + Set the view mode to Setup. + Ustaw tryb widoku w konfiguracji. - Set the view mode to Live. - + &Live + &Ekran - + + Set the view mode to Live. + Ustaw tryb widoku na ekranie. + + + 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/. - + Wersja %s OpenLP jest teraz dostępna do pobrania (obecnie używasz wersji %s). + +Możesz pobrać najnowszą wersję z http://openlp.org/. - + OpenLP Version Updated - + Wersja OpenLP zaktualizowana - + OpenLP Main Display Blanked - + Główny Ekran OpenLP Wygaszony - + The Main Display has been blanked out - + Główny Ekran został odłączony - + Default Theme: %s - + Domyślny motyw: %s - + English Please add the name of your language here Polish - + Configure &Shortcuts... - + Konfiguruj &skróty... - + Close OpenLP - + Zamknij OpenLP - + Are you sure you want to close OpenLP? - + Czy na pewno chcesz zamknąć OpenLP? - + Open &Data Folder... - + &Otwórz katalog programu... - + Open the folder where songs, bibles and other data resides. - + Otwórz folder w którym pieśni, Biblie i inne dane są przechowywane. - + &Autodetect - + &Wykryj automatycznie - + Update Theme Images - + Aktualizuj obrazy motywów - + Update the preview images for all themes. - + Zaktualizuj obrazy podglądu dla wszystkich motywów. - + Print the current service. - + Drukuj obecny plan nabożeństwa - + &Recent Files - + Ostatnio &używane - + L&ock Panels - + &Zablokuj panele - + Prevent the panels being moved. - + Zapobiegaj przenoszeniu paneli. - + Re-run First Time Wizard - + Włącz Kreator pierwszego razu - + Re-run the First Time Wizard, importing songs, Bibles and themes. - + Włączanie Kreator pierwszego razu, importowanie pieśni, Biblii i motywów. - + Re-run First Time Wizard? - + Włączyć Kreator pierwszego razu? - + 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. - + Czy jesteś pewny otwierania po raz drugi Kreatora pierwszego razu? + +Otwieranie go ponownie może spowodować zmiany w obecnej konfiguracji OpenLP, dodać pieśni do istniejącej już listy i zmienić domyślny motyw. - + Clear List Clear List of recent files - + Wyczyść listę - + Clear the list of recent files. - + Wyczyść listę ostatnich plików. - + Configure &Formatting Tags... - + &Konfiguruj znaczniki formatowania... - + Export OpenLP settings to a specified *.config file - + Eksportuj ustawienia OpenLP do określonego pliku *.config - + Settings - + Ustawienia - + Import OpenLP settings from a specified *.config file previously exported on this or another machine - + Importuj ustawienia OpenLP z określonego pliku *.config, wcześniej wyeksportowanego na tym, bądź innym urządzeniu. - + Import settings? - + Importować ustawienia? - + Are you sure you want to import settings? Importing settings will make permanent changes to your current OpenLP configuration. Importing incorrect settings may cause erratic behaviour or OpenLP to terminate abnormally. - + Czy na pewno chcesz importować ustawienia? + +Importowanie ustawień wprowadzi stałe zmiany do obecnej konfiguracji OpenLP. + +Importowanie niewłaściwych ustawień może spowodować niewłaściwe zachowanie lub OpenLP zakończy niespodziewanie swoje działanie. - + Open File - + Otwórz plik - + OpenLP Export Settings Files (*.conf) - + Wyeksportowane pliki ustawień OpenLP (*.conf) - + Import settings - + Importowanie ustawień - + OpenLP will now close. Imported settings will be applied the next time you start OpenLP. - + OpenLP teraz się wyłączy. Importowane ustawienia będą zastosowane następnym razem po włączeniu OpenLP - + Export Settings File - + Eksportowanie ustawień - + OpenLP Export Settings File (*.conf) - + Eksport pliku ustawień OpenLP (*.conf) - + New Data Directory Error - + Błąd nowego katalogu z danymi - + The file you selected does appear to be a valid OpenLP settings file. Section [%s] is not valid Processing has terminated and no changed have been made. - + Wybrany plik wydaje się być uszkodzonym plikiem ustawień OpenLP. + +Sekcja [%s] nie jest odpowiedni + +Proces został zakończony, nie nastąpiły żadne zmiany. - + Copying OpenLP data to new data directory location - %s - Please wait for copy to finish - + Kopiowanie danych OpenLP do nowej lokalizacji - %s - Proszę zaczekać, aż zakończenie - + OpenLP Data directory copy failed %s - + Kopiowanie katalogu z danymi zakończone niepowodzeniem + +%s OpenLP.Manager - + Database Error - + Błąd bazy danych - + 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 - + Wczytywana baza danych została stworzona we wcześniejszych wersjach OpenLP. Wersja bazy danych: %d, podczas gdy OpenLP przewiduje wersji %d. Baza danych nie zostanie wczytana. + +Baza danych: %s - + OpenLP cannot load your database. Database: %s - + OpenLP nie może wczytać Twojej bazy danych. + +Baza danych: %s OpenLP.MediaManagerItem - + No Items Selected - + Nie wybrano żadnych pozycji - + &Add to selected Service Item - + Dodaj do zaznaczonego elementy planu nabożeństwa - + You must select one or more items to preview. - + Musisz zaznaczyć przynajmniej jeden element aby uruchomić podgląd. - + You must select one or more items to send live. - + Musisz zaznaczyć przynajmniej jeden element aby pokazać go na ekranie. - + You must select one or more items. - + Musisz zaznaczyć jeden lub więcej elementów. - + You must select an existing service item to add to. - + Musisz wybrać istniejącą pozycję, by ją dodać. - + Invalid Service Item - + Niewłaściwy element planu - + You must select a %s service item. - + Musisz zaznaczyć %s element planu nabożeństwa. - + You must select one or more items to add. - + Musisz zaznaczyć jeden lub więcej elementów, aby to dodać. - + No Search Results - + Brak wyników wyszukiwania - + Invalid File Type - + Zły rodzaj pliku - + Invalid File %s. Suffix not supported - + Niewłaściwy plik %s. +Nieobsługiwany przyrostek. &Clone - + &Klonuj - + Duplicate files were found on import and were ignored. - + Podwójne pliki zostały znalezione i zignorowane. OpenLP.OpenLyricsImportError - + <lyrics> tag is missing. - + Brakuje znacznika <lyrics>. - + <verse> tag is missing. - + Brakuje znacznika <verse>. OpenLP.PluginForm - + Plugin List - + Lista wtyczek - + Plugin Details - + Wtyczka szczegółów - + Status: - + Status: - + Active - + Aktywny - + Inactive - + Nieaktywny - + %s (Inactive) - + %s (Nieaktywny) - + %s (Active) - + %s (Aktywny) - + %s (Disabled) - + %s (Uszkodzony) OpenLP.PrintServiceDialog - + Fit Page - + Dopasowany do strony - + Fit Width - + Dopasowany do szerokości OpenLP.PrintServiceForm - + Options - + Opcje - + Copy - + Kopiuj - + Copy as HTML - + Kopiuj jako HTML - + Zoom In - + Powiększ - + Zoom Out - + Pomniejsz - + Zoom Original - + Oryginalny rozmiar - + Other Options - + Inne opcje - + Include slide text if available - + Przedstaw również slajd z tekstem, jeśli jest dostępny - + Include service item notes - + Przedstaw również notatki - + Include play length of media items - + Przedstaw również czas trwania multimediów. - + Add page break before each text item - + Dodaj stronę przerwy przed każdą pozycją tekstową - + Service Sheet - + Plan nabożeństwa - + Print - - - - - Title: - + Drukuj + Title: + Tytuł: + + + Custom Footer Text: - + Niestandardowy tekst stopki: OpenLP.ScreenList - + Screen - + Ekran - + primary - + główny OpenLP.ServiceItem - + <strong>Start</strong>: %s - + <strong>Start</strong>: %s - + <strong>Length</strong>: %s - + <strong>Długość</strong>: %s OpenLP.ServiceItemEditForm - + Reorder Service Item - + Zmień kolejność pozycji w planie nabożeństwa OpenLP.ServiceManager - + Move to &top - + Przenieś na górę - + Move item to the top of the service. - + Przenieś pozycję na górę listy. - + Move &up - + Przenieś wyżej - + Move item up one position in the service. - + Przenieś pozycję o jedną w górę. - + Move &down - + Przenieś niżej - + Move item down one position in the service. - + Przenieś pozycję o jedną w dół - + Move to &bottom - + Przenieś na dół - + Move item to the end of the service. - + Przenieś pozycję na dół listy - + &Delete From Service - + &Usuń z planu - + Delete the selected item from the service. - + Usuń wybraną pozycję z planu. - + &Add New Item - + Dodaj nową pozycję - + &Add to Selected Item - + Dodaj do wybranej pozycji - + &Edit Item - + &Edytuj element - + &Reorder Item - + &Zmień kolejność - + &Notes - + &Notatki - + &Change Item Theme - + Zmień &motyw dla elementu - + OpenLP Service Files (*.osz) - + OpenLP pliki planu (*.osz) - + File is not a valid service. The content encoding is not UTF-8. - + Plik nie jest właściwym planem nabożeństwa. +Kodowanie nie jest UTF-8. - + File is not a valid service. - + Plik nie odpowiada planowi nabożeństwa. - + Missing Display Handler - + Brak sterownika wyświetlacza - + Your item cannot be displayed as there is no handler to display it - + Pozycja nie może zostać wyświetlona, jeśli nie ma właściwych sterowników - + Your item cannot be displayed as the plugin required to display it is missing or inactive - + Pozycja nie może zostać wyświetlona, jeśli brakuje wymaganej wtyczki lub jest nieaktywna - + &Expand all - + Rozwiń wszystko - + Expand all the service items. - + Rozwiń wszystkie pozycje planu. - + &Collapse all - + Zwiń wszystko - + Collapse all the service items. - + Zwiń wszystkie pozycje planu. - + Open File - + Otwórz plik - + Moves the selection down the window. - + Przesuń zaznaczenie w dół okna. - + Move up - + Przesuń w górę - + Moves the selection up the window. - + Przesuń zaznaczenie w górę okna. - + Go Live - + Wyświetl na ekranie - + Send the selected item to Live. - + Wyślij wybrane pozycje na ekran główny - + &Start Time - + Czas startu - + Show &Preview - + &Podgląd - + Modified Service - + Zmodyfikowany plan - + The current service has been modified. Would you like to save this service? - + Obecny plan nabożeństwa został zmodyfikowany. Czy chciałbyś go zapisać? - + Custom Service Notes: - + Notatki z planu - + Notes: - + Notatki - + Playing time: - + Czas odtwarzania: - + Untitled Service - + Plan bez tytułu - + File could not be opened because it is corrupt. - + Plik nie może być otwarty, ponieważ jest uszkodzony. - + Empty File - + Pusty plik - + This service file does not contain any data. - + Ten plik nie zawiera danych. - + Corrupt File - + Uszkodzony plik - + Load an existing service. - + Otwórz istniejący plan nabożeństwa. - + Save this service. - + Zapisz plan nabożeństwa. - + Select a theme for the service. - + Wybierz motyw dla planu nabożeństwa. - + This file is either corrupt or it is not an OpenLP 2.0 service file. - - - - - Service File Missing - - - - - Slide theme - + Plik jest uszkodzony lub nie jest plikiem OpenLP 2.0 + Slide theme + Motyw slajdu + + + Notes - + Notatki - + Edit - + Edytuj - + Service copy only - + Plan tylko do kopiowania - + Error Saving File - + Błąd zapisywania pliku - + There was an error saving your file. + Błąd w zapisywaniu Twojego pliku. + + + + Service File(s) Missing - - File missing from service + + The following file(s) in the service are missing: +%s - %s - -Continue saving? +These files will be removed if you continue to save. OpenLP.ServiceNoteForm - + Service Item Notes - + Notatki z planu OpenLP.SettingsForm - + Configure OpenLP - + Konfiguruj OpenLP OpenLP.ShortcutListDialog - + Action - + Akcja - + Shortcut - + Skróty - + Duplicate Shortcut - + Duplikuj skróty - + The shortcut "%s" is already assigned to another action, please use a different shortcut. - + Skrót "%s" już jest przypisany innemu działaniu, proszę użyć innego skrótu - + Alternate - + Zastępca - + Select an action and click one of the buttons below to start capturing a new primary or alternate shortcut, respectively. - + Wybierz akcję i wciśnij jeden z przycisków poniżej by stwarzać odpowiednio podstawowe i alternatywne skróty. - + Default - + Domyślny - + Custom - + Niestandardowy - + Capture shortcut. - + Stwórz skróty. - + Restore the default shortcut of this action. - + Przywróć domyślny skrót tej akcji. - + Restore Default Shortcuts - + Przywróć domyślne skróty - + Do you want to restore all shortcuts to their defaults? - + Czy chcesz przywrócić domyślne skróty? - + Configure Shortcuts - + Konfiguruj skróty OpenLP.SlideController - + Hide - + Ukryj - + Go To - + Idź do - + Blank Screen - + Wygaś Ekran - + Blank to Theme - + Włącz motyw - + Show Desktop - + Pokaż pulpit - + Previous Service - + Poprzedni plan - + Next Service - + Następny plan - + Escape Item - + Olej element - + Move to previous. - + Przenieś do poprzednich. - + Move to next. - + Przenieś do następnych. - + Play Slides - + Uruchom slajdy - + Delay between slides in seconds. - + Opóźnienie między slajdami w sekundach - + Move to live. - + Przenieś na ekran. - + Add to Service. - + Dodaj do planu nabożeństwa. - + Edit and reload song preview. - + Edytuj i załaduj ponownie podgląd pieśni. - + Start playing media. - + Zacznij odtwarzanie multimediów. - + Pause audio. - + Przerwij audio. - + Pause playing media. - + Przerwij odtwarzanie multimediów. - + Stop playing media. - + Zatrzymaj odtwarzanie multimediów. - + Video position. - + Pozycja wideo. - + Audio Volume. - + Głośność. - + Go to "Verse" - + Idź do "Zwrotka" - + Go to "Chorus" - + Idź do "Refren" - + Go to "Bridge" - + Idź do "Bridge" - + Go to "Pre-Chorus" - + Idź do "Pre-Chorus" - + Go to "Intro" - + Idź do "Wejście" - + Go to "Ending" - + Idź do "Zakończenie" - + Go to "Other" - + Idź do "Inne" - + Previous Slide - + Poprzedni slajd - + Next Slide - + Następny slajd - + Pause Audio - + Przerwij audio - + Background Audio - + Tło audio. - + Go to next audio track. - + Przejdź do następnego utworu. - + Tracks - + Utwór OpenLP.SpellTextEdit - + Spelling Suggestions - + Sugestie pisowni - + Formatting Tags - + Znaczniki formatowania - + Language: - + Język: OpenLP.StartTimeForm - - - Hours: - - - Minutes: - + Hours: + Godziny: - Seconds: - - - - - Item Start and Finish Time - + Minutes: + Minuty: - Start - + Seconds: + Sekundy: + + + + Item Start and Finish Time + Czas rozpoczęcia i zakończenia - Finish - + Start + Rozpoczęcie + Finish + Zakończenie + + + Length - + Długość - + Time Validation Error - + Błąd weryfikacji czasu - + Finish time is set after the end of the media item - + Czas zakończenia jest ustawiony po zakończeniu multimediów - + Start time is after the finish time of the media item - + Czas rozpoczęcia jest ustawiony po zakończeniu multimediów - + Theme Layout - + Układ motywu - + The blue box shows the main area. - + Niebieski kolor wyznacza główny obszar. - + The red box shows the footer. - + Czerwony kolor wyznacza stopkę. OpenLP.ThemeManager - + Create a new theme. - + Stwórz nowy motyw - + Edit Theme - + Edytuj motyw - + Edit a theme. - + Edytuj motyw. - + Delete Theme - + Usuń motyw - + Delete a theme. - + Usuń motyw. - + Import Theme - + Importuj motyw - + Import a theme. - + Importuj motyw. - + Export Theme - + Eksportuj motyw - + Export a theme. - + Eksportuj motyw. - + &Edit Theme - + &Edytuj motyw - + &Delete Theme - + &Usuń motyw - + Set As &Global Default - + Ustaw jako &domyślny - + %s (default) - + %s (domyślny) - + You must select a theme to edit. - + Musisz zaznaczyć motyw do edycji. - + You are unable to delete the default theme. - + Nie możesz usunąć domyślnego motywu. - + Theme %s is used in the %s plugin. - + Motyw %s jest użyty w %s wtyczce. - + You have not selected a theme. - + Nie wybrałeś motywu. - + Save Theme - (%s) - + Zapisz motyw -(%s) - + Theme Exported - + Motyw wyeksportowano - + Your theme has been successfully exported. - + Motyw został pomyślnie wyeksportowany. - + Theme Export Failed - + Eksport motywu się nie powiódł. - + Your theme could not be exported due to an error. - + Z powodu błędu motyw nie może zostać wyeksportowany. - + Select Theme Import File - + Wybierz plik importu motywu - + File is not a valid theme. - + Plik nie jest właściwym motywem. - + &Copy Theme - + &Kopiuj motyw - + &Rename Theme - + &Zmień nazwę motywu - + &Export Theme - + Eksportuj &motyw - + You must select a theme to rename. - + Musisz zaznaczyć motyw, aby zmienić jego nazwę. - + Rename Confirmation - + Potwierdzenie zmiany nazwy - + Rename %s theme? - + Zmienić nazwę motywu %s? - + You must select a theme to delete. - + Musisz zaznaczyć moty do usunięcia. - + Delete Confirmation - + Usuń potwierdzenie - + Delete %s theme? - + Usunąć motyw %s? - + Validation Error - + Błąd weryfikacji - + A theme with this name already exists. - + Motyw o tej nazwie już istnieje. - + OpenLP Themes (*.theme *.otz) - + Motywy OpenLP (*.theme *.otz) - + Copy of %s Copy of <theme name> - + Kopia %s - + Theme Already Exists - + Motyw już istnieje - + Theme %s already exists. Do you want to replace it? - + Motyw %s już istnieje. Czy chcesz go zastąpić? OpenLP.ThemeWizard - + Theme Wizard - + Kreator Motywów - + Welcome to the Theme Wizard - + Witaj w kreatorze motywów - + Set Up Background - + Ustaw tło - + Set up your theme's background according to the parameters below. - + Ustaw tło motywu stosownie do poniższych parametrów. - + Background type: - + Typ tła: - + Solid Color - + Jednolity kolor - + 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: - + Gradient + Color: + Kolor: + + + + Gradient: + Gradient: + + + + Horizontal + Poziomo + + + + Vertical + Pionowo + + + + Circular + Pierścieniowy + + + + Top Left - Bottom Right + Górne lewo - Dolne prawo + + + + Bottom Left - Top Right + Dolne lewo - Górne prawo + + + + Main Area Font Details + Szczegóły czcionki głównego obszaru + + + + Define the font and display characteristics for the Display text + Zdefiniuj czcionkę i wyznacz właściwości wyświetlanego tekstu + + + + Font: + Czcionka: + + + Size: - + Rozmiar: - + Line Spacing: - + Odstępy między linijkami: - + &Outline: - + Kontur: - + &Shadow: - - - - - Bold - + Cień: + Bold + Pogrubienie + + + Italic - + Kursywa - + Footer Area Font Details - + Szczegóły czcionki obszaru stopki - + Define the font and display characteristics for the Footer text - + Zdefiniuj czcionki i wyświetlane właściwości stopki - + Text Formatting Details - + Szczegóły formatowania tekstu - + Allows additional display formatting information to be defined - + Pozwala na edycję dodatkowych parametrów formatowania tekstu. - + Horizontal Align: - + Wyrównanie poziome: - + Left - + Do lewej - + Right - + Do prawej - + Center - + Do środka - + Output Area Locations - + Lokalizacje obszaru wyjściowego - + Allows you to change and move the main and footer areas. - + Pozwala Ci na zmianę i przeniesienie obszaru głównego i stopki. - + &Main Area - + Obszar &główny - + &Use default location - + &Użyj domyślnej lokalizacji - + X position: - + pozycja X: - + px - + px - + Y position: - + pozycja Y: - + Width: - + Szerokość: - + Height: - + Wysokość: - + Use default location - + Użyj domyślnej lokalizacji - + Theme name: - + Nazwa motywu: - + Edit Theme - %s - + Edytuj motyw - %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. - + Ten kreator pomoże Ci stworzyć i edytować motywy. Kliknij przycisk poniżej, by zacząć przygotowywać twoje tło. - + Transitions: - + Przejścia: - + &Footer Area - + Obszar &stopki - + Starting color: - + Kolor początkowy: - + Ending color: - + Kolor końcowy: - + Background color: - Tło czcionki: + Kolor tła: - + Justify - + Justuj - + Layout Preview - + Podgląd układu - + Transparent - + Przezroczysty - + Preview and Save - + Podgląd i Zapis - + Preview the theme and save it. - + Obejrzyj i zapisz motyw. - + (approximately %d lines per slide) - + (maksymalnie %d linijek na slajd) - + Background Image Empty - + Pusty obraz tła - + You have not selected a background image. Please select one before continuing. - + Nie podałeś obrazka tła. Proszę, wybierz jeden zanim kontynuujesz. - + Select Image - + Wybierz obraz - + Theme Name Missing - + Brakująca nazwa motywu - + There is no name for this theme. Please enter one. - + Ten motyw nie ma nazwy. Proszę, wpisz jakąś. - + Theme Name Invalid - + Niewłaściwa nazwa motywu - + Invalid theme name. Please enter one. - + Niewłaściwa nazwa motywu. Proszę, wpisz jakąś. OpenLP.ThemesTab - + Global Theme - + Globalny motyw - + Theme Level - + Poziom motywu - + S&ong Level - + Poziom pieśni - + 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. - + Użyj motywu każdej pieśni z bazy danych. Jeśli pieśń nie ma przypisanego motywu, użyj motywu nabożeństwa. Jeśli nabożeństwo nie ma motywu, użyj motywu globalnego. - + &Service Level - + Poziom nabożeństwa - + 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. - + Użyj motywu przypisanego nabożeństwu ignorując indywidualne motywy pieśni. Jeśli nabożeństwo nie ma motywu, użyj motywu globalnego. - + &Global Level - + Poziom globalny - + Use the global theme, overriding any themes associated with either the service or the songs. - + Użyj motywu globalnego ignorując motyw przypisany nabożeństwu lub pieśni. - + Themes - + Motywy OpenLP.Ui - + Error - - - - - About - + Błąd - &Add - + About + O programie - Advanced - + &Add + &Dodaj - All Files - + Advanced + Zaawansowane - Bottom - + All Files + Wszystkie pliki - Browse... - + Bottom + Dół - Cancel - + Browse... + Szukaj... - CCLI number: - + Cancel + Anuluj + CCLI number: + numer CCLI + + + Create a new service. - + Stwórz nowy plan nabożeństwa. - + &Delete - - - - - &Edit - + &Usuń + &Edit + &Edytuj + + + Empty Field - + Puste pole - + Export - + Eksport - + pt Abbreviated font pointsize unit - - - - - Image - + - Import - + Image + Obraz - - Live - + + Import + Import + Live + Ekran + + + Live Background Error - + Błąd tła ekranu głównego - + Load - - - - - Middle - + Ładuj - New - + Middle + Środek - New Service - + New + Nowy - New Theme - + New Service + Nowy plan nabożeństwa - - No File Selected - Singular - + + New Theme + Nowy motyw - No Files Selected - Plural - + No File Selected + Singular + Nie zaznaczono pliku - No Item Selected - Singular - + No Files Selected + Plural + Nie zaznaczono plików - No Items Selected - Plural - + No Item Selected + Singular + Nie zaznaczono żadnej pozycji - openlp.org 1.x - + No Items Selected + Plural + Nie zaznaczono żadnych pozycji + openlp.org 1.x + openlp.org 1.x + + + OpenLP 2.0 - + OpenLP 2.0 - + Preview - + Podgląd - + Replace Background - + Zastąp tło - + Reset Background - + Resetuj tło - + s The abbreviated unit for seconds - - - - - Save && Preview - + s + Save && Preview + Zapisz && Podgląd + + + Search - + Szukaj - + You must select an item to delete. - + Musisz wybrać pozycję do usunięcia - + You must select an item to edit. - - - - - Save Service - + Musisz wybrać pozycję do edycji + Save Service + Zapisz plan nabożeństwa + + + Service - + Plan Nabożeństwa - + Start %s - - - - - Theme - Singular - + Start %s + Theme + Singular + Motyw + + + Themes Plural - + Motywy - + Top - + Góra - + Version - + Wersja - + Delete the selected item. - + Usuń zaznaczoną pozycję - + Move selection up one position. - + Przenieś zaznaczenie w górę o jedną pozycję. - + Move selection down one position. - + Przenieś zaznaczenie w dół o jedną pozycję. - + &Vertical Align: - - - - - Finished import. - + Wyrównanie pionowe: - Format: - + Finished import. + Importowanie zakończono. - - Importing - + + Format: + Format: - Importing "%s"... - + Importing + Importowanie - Select Import Source - + Importing "%s"... + Importowanie "%s"... + Select Import Source + Wybierz źródło importu + + + Select the import format and the location to import from. - + Wybierz format importu i jego lokalizację. - + 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. - + Importer z openlp.org 1.x został wyłączony z powodu brakującego modułu Pythona. Jeśli chcesz go użyć, to zainstaluj moduł "python-sqlite". - + Open %s File - - - - - %p% - + Otwórz %s plik + %p% + %p% + + + Ready. - + Gotowy. - + Starting import... - + Zaczynanie importu... - + You need to specify at least one %s file to import from. A file type e.g. OpenSong - + Musisz określić przynajmniej jeden %s plik do importowania. Welcome to the Bible Import Wizard - + Witamy w Kreatorze Importu Biblii - + Welcome to the Song Export Wizard - + Witamy w Kreatorze Eksportu Pieśni - + Welcome to the Song Import Wizard - - - - - Author - Singular - + Witamy w Kreatorze Importu Pieśni - Authors - Plural - + Author + Singular + Autor - - © - Copyright symbol. - + + Authors + Plural + Autorzy - Song Book - Singular - + © + Copyright symbol. + © - Song Books - Plural - - - - - Song Maintenance - - - - - Topic + Song Book 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? - - - - - Settings - - - - - Tools - - - - - Unsupported File - - - - - Verse Per Slide - - - - - Verse Per Line - - - - - View - + Śpiewnik - Title and/or verses not found - + Song Books + Plural + Śpiewniki + + + + Song Maintenance + Maintenance pieśni + + + + Topic + Singular + Temat - XML syntax error - + Topics + Plural + Tematy + + + + Continuous + Tekst ciągły + + + + Default + Domyślny + + + + Display style: + Styl wyświetlania: + + + + Duplicate Error + Błąd duplikacji + + + + File + Plik + + + + Help + Pomoc + + + + h + The abbreviated unit for hours + h + + + + Layout style: + Styl układu: + + + + Live Toolbar + Pasek narzędzi ekranu głównego + + + + m + The abbreviated unit for minutes + m + + + + OpenLP is already running. Do you wish to continue? + OpenLP jest włączone. Czy chcesz kontynuować? + + + + Settings + Ustawienia + + + + Tools + Narzędzia + + + + Unsupported File + Nieobsługiwany plik + + + + Verse Per Slide + Werset na slajd + + + + Verse Per Line + Werset na linijkę + View + Widok + + + + Title and/or verses not found + Tytuł lub wersety nie zostały znalezione + + + + XML syntax error + Błąd składni 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 - + Tryb widoku - Play Slides in Loop - + Open service. + Otwórz plan nabożeństwa. + + + + Print Service + Drukuj plan nabożeństwa + + + + Replace live background. + Zastąp tło ekranu głównego. + + + + Reset live background. + Resetuj tło ekranu głównego. + + + + Split a slide into two only if it does not fit on the screen as one slide. + Podziel slajd na dwa, jeśli tekst nie zmieści się na jednym. + + + + Welcome to the Bible Upgrade Wizard + Witaj w Kreatorze Aktualizowania Biblii + + + + Confirm Delete + Potwierdź usuwanie + Play Slides in Loop + Odtwarzaj slajdy w kółko + + + Play Slides to End - + Odtwórz slajdy do końca - + Stop Play Slides in Loop - + Zakończ odtwarzanie slajdów w kółko - + 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 - + Zakończ odtwarzanie slajdów do końca + Next Track + Następny utwór + + + + Search Themes... + Search bar place holder text + Przeszukaj motywy... + + + + Optional &Split + &Opcjonalny podział + + + + Invalid Folder Selected + Singular + Zaznaczono niewłaściwy katalog + + + + Invalid File Selected + Singular + Zaznaczono niewłaściwy plik + + + + Invalid Files Selected + Plural + Zaznaczono niewłaściwe pliki + + + No Folder Selected Singular - + Nie zaznaczono żadnego katalogu - + Open %s Folder - + Otwórz folder %s - + You need to specify one %s file to import from. A file type e.g. OpenSong - + Musisz sprecyzować plik %s, by z niego importować. - + You need to specify one %s folder to import from. A song format e.g. PowerSong - + Musisz podać jeden %s katalog, aby importować z niego. - + Importing Songs - + Importowanie pieśni OpenLP.core.lib - + %1 and %2 Locale list separator: 2 items - + %1 i %2 - + %1, and %2 Locale list separator: end - + %1, i %2 - + %1, %2 Locale list separator: middle - + %1, %2 - + %1, %2 Locale list separator: start - + %1, %2 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>Wtyczka prezentacji</strong><br />Wtyczka prezentacji zapewnia możliwość przedstawiania prezentacji za pomocą wielu programów. Wybór odpowiedniego programu prezentacji jest udostępniony użytkownikowi na liście wyboru. - + Presentation name singular - + Prezentacja - + Presentations name plural - + Prezentacje - + Presentations container title - + Prezentacje - + Load a new presentation. - + Wczytaj nową prezentację. - + Delete the selected presentation. - + Usuń zaznaczoną prezentację. - + Preview the selected presentation. - + Podgląd zaznaczonej prezentacji. - + Send the selected presentation live. - + Wyświetl prezentację na ekranie głównym. - + Add the selected presentation to the service. - + Dodaj zaznaczoną prezentację do planu nabożeństwa. PresentationPlugin.MediaItem - + Select Presentation(s) - + Zaznacz prezentację - + Automatic - + Automatycznie - + Present using: - + Present using: - + File Exists - + Plik istnieje - + A presentation with that filename already exists. - + Prezentacja o tej nazwie już istnieje. - + This type of presentation is not supported. - + Ten typ prezentacji nie jest obsługiwany. - + Presentations (%s) - + Prezentacje (%s) - + Missing Presentation - + Brakująca prezentacja - + The presentation %s is incomplete, please reload. - + Prezentacja %s jest niekompletna, proszę wczytaj ponownie. - + The presentation %s no longer exists. - + Prezentacja %s już nie istnieje. PresentationPlugin.PresentationTab - + Available Controllers - + Używane oprogramowanie prezentacji - + %s (unavailable) - + %s (niedostępny) - + Allow presentation application to be overridden - + Zezwól aplikacji prezentacji być nadrzędną 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 - + <strong>Zdalna wtyczka</strong><br />Zdalna wtyczka umożliwia wysyłanie wiadomości do uruchomionych programów OpenLP na innych komputerach przez przeglądarkę internetową lub przez zdalne API. - Remotes - name plural - + Remote + name singular + Zdalny - + + Remotes + name plural + Zdalne + + + Remote container title - + Zdalny RemotePlugin.Mobile - - - OpenLP 2.0 Remote - - + OpenLP 2.0 Remote + Zdalny OpenLP 2.0 + + + OpenLP 2.0 Stage View - + Widok sceny OpenLP 2.0 - + Service Manager - + Plan Nabożeństwa - + Slide Controller - - - - - Alerts - + Kontroler slajdów - Search - - - - - Refresh - - - - - Blank - - - - - Show - - - - - Prev - - - - - Next - - - - - Text - - - - - Show Alert - - - - - Go Live - - - - - No Results - - - - - Options - - - - - Add to Service - + Alerts + Komunikaty - Home - + Search + Szukaj + + + + Refresh + Odśwież - Theme - + Blank + Wygaś + + + + Show + Pokaż + + + + Prev + Prev + + + + Next + Następny + + + + Text + Tekst + + + + Show Alert + Pokaż Komunikat + + + + Go Live + Wyświetl na ekranie + + + + No Results + Brak wyników + + + + Options + Opcje + + + + Add to Service + Dodaj do planu nabożeństwa + + + + Home + Home - Desktop - + Theme + Motyw - + + Desktop + Pulpit + + + Add &amp; Go to Service - + Add &amp; Go to Service + + + + Service + Plan nabożeństwa + + + + Slides + Slajdy RemotePlugin.RemoteTab - + Serve on IP address: - + Podaj na adres IP: - + Port number: - + Numer portu: - + Server Settings - + Ustawienia serwera - + Remote URL: - + Zdalny URL: - + Stage view URL: - + Widok sceny URL: - + Display stage time in 12h format - + Wyświetl czas w 12-godzinnym formacie - + Android App - + Android App - + Scan the QR code or click <a href="https://play.google.com/store/apps/details?id=org.openlp.android">download</a> to install the Android app from Google Play. - + Zeskanuj kod QR lub kliknij <a href="https://play.google.com/store/apps/details?id=org.openlp.android">download</a> aby zainstalować aplikację na Androida przez Google Play. SongUsagePlugin - + &Song Usage Tracking - + Śledzenie &używania pieśni - + &Delete Tracking Data - + &Usuń dane śledzenia - + Delete song usage data up to a specified date. - + Usuń dane użycia piosenki do określonej daty. - + &Extract Tracking Data - + &Eksportuj dane śledzenia - + Generate a report on song usage. - + Generuj raport używalności pieśni. - + Toggle Tracking - + Włącz śledzenie - + Toggle the tracking of song usage. - + Włącz śledzenie używalności pieśni. - + <strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services. - + <strong>Wtyczka Zastosowania Pieśni</strong><br />Ta wtyczka śledzi wykorzystanie pieśni. - + SongUsage name singular - + Zastosowanie Pieśni - + SongUsage name plural - + Zastosowanie Pieśni - + SongUsage container title - + Zastosowanie Pieśni - + Song Usage - + Zastosowanie Pieśni - + Song usage tracking is active. - + Śledzenie używalności pieśni jest włączone. - + Song usage tracking is inactive. - + Śledzenie używalności pieśni jest wyłączone. - + display - + wyświetl - + printed - + wydrukowany SongUsagePlugin.SongUsageDeleteForm - + Delete Song Usage Data - + Usuń dane używalności pieśni - + Delete Selected Song Usage Events? - + Usunąć zaznaczone wydarzenia używalności pieśni? - + Are you sure you want to delete selected Song Usage data? - + Czy na pewno chcesz usunąć zaznaczone dane wykorzystania pieśni? - + Deletion Successful - + Usuwanie przebiegło pomyślnie - + All requested data has been deleted successfully. - + Wszystkie żądane dane zostały pomyślnie usunięte. - + Select the date up to which the song usage data should be deleted. All data recorded before this date will be permanently deleted. - + Wybierz datę, do której dane odnośnie używalności pieśni zostaną usunięte. Wszystkie dane zapisane przed tą datą zostaną permanentnie usunięte. SongUsagePlugin.SongUsageDetailForm - + Song Usage Extraction - + Raportowanie używalności pieśni - + Select Date Range - + Wybierz zakres dat - + to - + do - + Report Location - + Zgłoś lokalizację - + Output File Location - + Lokalizacja pliku wyjściowego - + usage_detail_%s_%s.txt - + uzywalność_piesni_%s_%s.txt - + Report Creation - + Tworzenie raportu - + Report %s has been successfully created. - + Raport +%s +został pomyślnie stworzony. - + Output Path Not Selected - + Ścieżka wyjściowa nie jest zaznaczona - + You have not set a valid output location for your song usage report. Please select an existing path on your computer. - + Nie podałeś właściwej lokalizacji dla raportu używalności pieśni. Proszę, wybierz istniejącą ścieżkę na Twoim komputerze. SongsPlugin - + &Song - + &Pieśń - + Import songs using the import wizard. - + Importuj pieśni używając kreatora importu. - + <strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs. - + <strong>Wtyczka Pieśni</strong><br />Wtyczka pieśni zapewnia możliwość wyświetlania i zarządzania pieśniami. - + &Re-index Songs - + &Przeindeksuj pieśni - + Re-index the songs database to improve searching and ordering. - + Przeindeksuj bazę pieśni, aby przyspieszyć wyszukiwanie i porządkowanie. - + Reindexing songs... - - - - - Arabic (CP-1256) - + Przeindeksowywanie pieśni... - Baltic (CP-1257) - + Arabic (CP-1256) + Arabic (CP-1256) - Central European (CP-1250) - + Baltic (CP-1257) + Baltic (CP-1257) - Cyrillic (CP-1251) - + Central European (CP-1250) + Central European (CP-1250) - Greek (CP-1253) - + Cyrillic (CP-1251) + Cyrillic (CP-1251) - Hebrew (CP-1255) - + Greek (CP-1253) + Greek (CP-1253) - Japanese (CP-932) - + Hebrew (CP-1255) + Hebrew (CP-1255) - Korean (CP-949) - + Japanese (CP-932) + Japanese (CP-932) - Simplified Chinese (CP-936) - + Korean (CP-949) + Korean (CP-949) - Thai (CP-874) - + Simplified Chinese (CP-936) + Simplified Chinese (CP-936) - Traditional Chinese (CP-950) - + Thai (CP-874) + Thai (CP-874) - Turkish (CP-1254) - + Traditional Chinese (CP-950) + Traditional Chinese (CP-950) - Vietnam (CP-1258) - + Turkish (CP-1254) + Turkish (CP-1254) + Vietnam (CP-1258) + Vietnam (CP-1258) + + + Western European (CP-1252) - + Western European (CP-1252) - + Character Encoding - + Kodowanie znaków - + The codepage setting is responsible for the correct character representation. Usually you are fine with the preselected choice. - + Tablica znaków jest odpowiedzialna +za właściwe reprezentowanie znaków +Zazwyczaj domyślny wybór jest najlepszy. - + Please choose the character encoding. The encoding is responsible for the correct character representation. - + Proszę wybierz kodowanie znaków. +Kodowanie znaków jest odpowiedzialne za ich właściwą reprezentację. - + Song name singular - + Pieśń - + Songs name plural - + Pieśni - + Songs container title - + Pieśni - + Exports songs using the export wizard. - - - - - Add a new song. - - - - - Edit the selected song. - + Eksportuj pieśni używając kreatora eksportu - Delete the selected song. - + Add a new song. + Dodaj nową pieśń. - Preview the selected song. - + Edit the selected song. + Edytuj wybraną pieśń. - Send the selected song live. - + Delete the selected song. + Usuń wybraną pieśń. - Add the selected song to the service. - + Preview the selected song. + Podgląd wybranej pieśni. - + + Send the selected song live. + Wyświetl zaznaczone pieśni na ekranie. + + + + Add the selected song to the service. + Dodaj wybraną pieśń do planu nabożeństwa. + + + Reindexing songs - + Przeindeksowywanie pieśni SongsPlugin.AuthorsForm - + Author Maintenance - + Maintenance autorów - + Display name: - + Wyświetlana nazwa: - + First name: - + Imię: - + Last name: - + Nazwisko: - + You need to type in the first name of the author. - + Wpisz imię autora. - + You need to type in the last name of the author. - + Wpisz nazwisko autora. - + You have not set a display name for the author, combine the first and last names? - + Nie ustawiłeś wyświetlanej nazwy autora. Połączyć imię i nazwisko? SongsPlugin.CCLIFileImport - + The file does not have a valid extension. - + Ten plik ma niewłaściwe rozszerzenie. SongsPlugin.EasyWorshipSongImport - + Administered by %s - + Administrowanie przez %s - + [above are Song Tags with notes imported from EasyWorship] - + +[powyżej są Tagi Pieśni z notatkami z + EasyWorship] SongsPlugin.EditBibleForm - + Meta Data - + Metadane - + Custom Book Names - + Nazwy ksiąg SongsPlugin.EditSongForm - + Song Editor - + Edytor pieśni - + &Title: - + &Tytuł: - + Alt&ernate title: - + Alternatywny tytuł: - + &Lyrics: - + Słowa: - + &Verse order: - + Kolejność wersów: - + Ed&it All - + Edytuj całość - + Title && Lyrics - + Tytuł i słowa - + &Add to Song - + Dodaj do &pieśni - + &Remove - + &Usuń - + &Manage Authors, Topics, Song Books - + &Zarządzaj autorami, tematami, śpiewnikami - + A&dd to Song - + Dodaj do pieśni - + R&emove - + U&suń - + Book: - + Śpiewnik: - + Number: - + Numer: - + Authors, Topics && Song Book - + Autorzy, tematy i śpiewniki - + New &Theme - + &Nowy motyw - + Copyright Information - + Informacje o prawach autorskich - + Comments - + Komentarze - + Theme, Copyright Info && Comments - + Motywy, prawa autorskie, komentarze - + Add Author - + Dodaj autora - + This author does not exist, do you want to add them? - + Ten autor nie istnieje, czy chcesz go dodać? - + This author is already in the list. - + Ten autor już występuje na liście. - + 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. - + Nie wybrałeś odpowiedniego autora. Wybierz autora z listy lub wpisz nowego autora i wybierz "Dodaj autora do pieśni", by dodać nowego autora. - + Add Topic - + Dodaj temat - + This topic does not exist, do you want to add it? - + Ten temat nie istnieje, czy chcesz go dodać? - + This topic is already in the list. - + Ten temat już istnieje. - + 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. - + Nie wybrałeś odpowiedniego tematu. Wybierz autora z listy lub wpisz nowy temat i wybierz "Dodaj temat pieśni", by dodać nowy temat. - + You need to type in a song title. - + Musisz podać tytuł pieśni. - + You need to type in at least one verse. - + Musisz wpisać przynajmniej jedną zwrotkę. - + The verse order is invalid. There is no verse corresponding to %s. Valid entries are %s. - + Kolejność zwrotek jest niewłaściwa. Nie ma zwrotki odpowiadającej %s. Właściwe zwrotki to: %s. - + Add Book - + Dodaj śpiewnik - + This song book does not exist, do you want to add it? - + Ten śpiewnik nie istnieje, czy chcesz go dodać? - + You need to have an author for this song. - + Musisz wpisać autora pieśni. - + Linked Audio - + Połączone audio - + Add &File(s) - + &Dodaj plik(i) - + Add &Media - + Dodaj &multimedia - + Remove &All - + Usuń &wszystko - + Open File(s) - + Otwórz plik(i) - + <strong>Warning:</strong> Not all of the verses are in use. - + <strong>Uwaga:</strong> Nie wszystkie zwrotki są w użyciu. - + The verse order is invalid. There are no verses corresponding to %s. Valid entries are %s. - + Kolejność zwrotek jest niewłaściwa. Nie ma zwrotki odpowiadającej %s. Właściwe zwrotki to: %s. SongsPlugin.EditVerseForm - + Edit Verse - + Edytuj wersety - + &Verse type: - + Typ zwrotek: - + &Insert - + &Wstaw - + Split a slide into two by inserting a verse splitter. - + Podziel slajd na dwa przez dodanie rozdzielacza. SongsPlugin.ExportWizardForm - + Song Export Wizard - + Kreator Eksportu Pieśni - + Select Songs - + Wybierz pieśni - + Check the songs you want to export. - + Wybierz pieśni, które chcesz eksportować. - + Uncheck All - + Odznacz wszystkie - + Check All - + Zaznacz wszystkie - + Select Directory - + Wybierz katalog - + Directory: - + Katalog: - + Exporting - + Eksportowanie - + Please wait while your songs are exported. - + Proszę czekać podczas eksportowania pieśni. - + You need to add at least one Song to export. - + Musisz wybrać przynajmniej jedną pieśń do eksportu. - + No Save Location specified - + Nie podano lokalizacji do zapisania - + Starting export... - + Zaczynanie eksportowania... - + You need to specify a directory. - + Musisz wybrać jakiś katalog. - + Select Destination Folder - + Wybierz folder docelowy - + Select the directory where you want the songs to be saved. - + Wybierz katalog, w którym chcesz zapisać pieśni. - + This wizard will help to export your songs to the open and free <strong>OpenLyrics</strong> worship song format. - + Ten kreator pomoże Ci wyeksportować pieśni do otwartego i wolnego<strong>OpenLyrics</strong> uwielbieniowego formatu pieśni. SongsPlugin.ImportWizardForm - + Select Document/Presentation Files - + Wybierz pliki dokumentu/prezentacji - + Song Import Wizard - + Kreator importowania pieśni - + 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. - + Ten kreator pomoże Ci zaimportować pieśni z różnych formatów. Naciśnij poniższy przycisk dalej, aby zacząć proces poprzez wybieranie formatu, z którego będziemy importować. - + Generic Document/Presentation - + Ogólny dokument/prezentacja - + Add Files... - + Dodaj pliki... - + Remove File(s) - + Usuń plik(i) - + Please wait while your songs are imported. - + Proszę czekać podczas importowania pieśni. - + OpenLP 2.0 Databases - + Bazy danych OpenLP 2.0 - + openlp.org v1.x Databases - + Bazy danych openlp.org v1.x - + Words Of Worship Song Files - + Pliki pieśni Słów Uwielbienia (Words of Worship) - + Songs Of Fellowship Song Files - + Pliki Songs Of Fellowship Song - + SongBeamer Files - + Pliki SongBeamer - + SongShow Plus Song Files - + Pliki SongShow Plus Song - + Foilpresenter Song Files - + Pliki pieśni Foilpresenter - + Copy - + Kopiuj - + Save to File - + Zapisz do pliku - + The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. - + Importer Songs of Fellowship został zatrzymany, ponieważ OpenLP nie może uzyskać dostępu do OpenOffice lub LibreOffice. - + The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. - + Ogólny importer dokumentu/prezentacji został uznany za uszkodzony, ponieważ OpenLP nie może uzyskać dostępu do OpenOffice lub LibreOffice. - + OpenLyrics or OpenLP 2.0 Exported Song - + OpenLyrics lub wyeksportowane pieśni OpenLP 2.0 - + OpenLyrics Files - + Pliki OpenLyric - + CCLI SongSelect Files - + Pliki CCLI SongSelect - + EasySlides XML File - + Pliki EasySlides XML - + EasyWorship Song Database - + Baza pieśni EasyWorship - + DreamBeam Song Files - + Pliki pieśni DreamBeam - + You need to specify a valid PowerSong 1.0 database folder. - + Musisz podać właściwy folder z bazą danych programu 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>. - + Najpierw przekonwertuj swoją bazę danych ZionWorx do pliku tekstowego CSV tak, jak jest wytłumaczone tutaj <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">User Manual</a>. - + SundayPlus Song Files - + Pliki pieśni SundayPlus - + This importer has been disabled. - + Ten importer został wyłączony. - + MediaShout Database - + Baza danych MediaShout - + The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. - + Importer MediaShout jest wspierany jedynie na Windowsie. Został wyłączony z powodu brakującego modułu Pythona. Jeśli chcesz go użyć, to zainstaluj moduł "pyodbc". - + SongPro Text Files - + Pliki tekstowe SongPro - + SongPro (Export File) - + SongPro (Eksport plików) - + In SongPro, export your songs using the File -> Export menu - + W SongPro, wyeksportuj pieśni używając Plik -> Eksport SongsPlugin.MediaFilesForm - + Select Media File(s) - + Wybierz pliki multimedialne - + Select one or more audio files from the list below, and click OK to import them into this song. - + Wybierz jedno lub więcej audio z listy poniżej i wybierz OK, by importować je do tej pieśni. @@ -6881,416 +7008,416 @@ The encoding is responsible for the correct character representation. Titles - + Tytuły Lyrics - + Słowa - + CCLI License: - + Licencja CCLI: Entire Song - + Cała pieśń - + Are you sure you want to delete the %n selected song(s)? - - - - + + Czy jesteś pewny, że chcesz usunąć %n zaznaczoną pieśń? + Czy jesteś pewny, że chcesz usunąć %n zaznaczonych pieśni? + Czy jesteś pewny, że chcesz usunąć %n zaznaczonych pieśni? Maintain the lists of authors, topics and books. - + Zarządzaj listami autorów, tematów i śpiewników. - + copy For song cloning - + kopiuj Search Titles... - + Przeszukaj tematy... Search Entire Song... - + Przeszukaj całą pieśń... Search Lyrics... - + Przeszukaj słowa pieśni... Search Authors... - + Przeszukaj autorów... Search Song Books... - + Przeszukaj śpiewniki... SongsPlugin.MediaShoutImport - + Unable to open the MediaShout database. - + Nie można otworzyć bazy danych MediaShout. SongsPlugin.OpenLP1SongImport - + Not a valid openlp.org 1.x song database. - + Niewłaściwa baza pieśni openlp.org 1.x. SongsPlugin.OpenLPSongImport - + Not a valid OpenLP 2.0 song database. - + Niewłaściwa baza pieśni Openlp 2.0. SongsPlugin.OpenLyricsExport - + Exporting "%s"... - + Eksportowanie "%s"... SongsPlugin.PowerSongImport - + No songs to import. - + Brak pieśni do importu. - + Verses not found. Missing "PART" header. - + Nie znaleziono zwrotek. Brakuje nagłówka "PART" - + No %s files found. - + Nie znaleziono plików %s. - + Invalid %s file. Unexpected byte value. - + Niewłaściwy plik %s. Nieoczekiwana wartość. - + Invalid %s file. Missing "TITLE" header. - + Niewłaściwy plik %s. Brakujący "TYTUŁ" nagłówka. - + Invalid %s file. Missing "COPYRIGHTLINE" header. - + Niewłaściwy plik %s. Brakujący "PRAWAAUTORSKIE" nagłówka. SongsPlugin.SongBookForm - + Song Book Maintenance - - - - - &Name: - + Maintenance śpiewników - &Publisher: - + &Name: + &Imię: - + + &Publisher: + &Wydawca: + + + You need to type in a name for the book. - + Musisz wpisać nazwę śpiewnika. SongsPlugin.SongExportForm - + Your song export failed. - + Eksport pieśni zakończony niepowodzeniem. - + Finished export. To import these files use the <strong>OpenLyrics</strong> importer. - + Eskport zakończony. Aby importować te pliki, użyj <strong>OpenLyrics</strong> importera. SongsPlugin.SongImport - + copyright - + prawa autorskie - + The following songs could not be imported: - + Następujące pieśni nie mogą zostać importowane: - + Cannot access OpenOffice or LibreOffice - + Brak dojścia do OpenOffice lub LibreOffice - + Unable to open file - + Niemożliwy do otwarcia plik - + File not found - + Nie znaleziono pliku SongsPlugin.SongMaintenanceForm - + Could not add your author. - + Nie można dodać autora. - + This author already exists. - + Ten autor już istnieje. - + Could not add your topic. - + Temat nie mógł zostać dodany. - + This topic already exists. - + Ten temat już istnieje. - + Could not add your book. - + Śpiewnik nie mógł zostać dodany. - + This book already exists. - + Ten śpiewnik już istnieje. - + Could not save your changes. - + Nie można zapisać Twoich zmian. - + Could not save your modified author, because the author already exists. - + Nie można zapisać autora, ponieważ on już istnieje. - + Could not save your modified topic, because it already exists. - + Nie można zapisać tematu, ponieważ on już istnieje. - + Delete Author - + Usuń autora - + Are you sure you want to delete the selected author? - + Czy na pewno chcesz usunąć wybranego autora? - + This author cannot be deleted, they are currently assigned to at least one song. - + Autor nie może zostać usunięty, jest przypisany do przynajmniej jednej pieśni. - + Delete Topic - + Usuń temat - + Are you sure you want to delete the selected topic? - + Czy na pewno chcesz usunąć wybrany temat? - + This topic cannot be deleted, it is currently assigned to at least one song. - + Temat nie może zostać usunięty, jest przypisany do przynajmniej jednej pieśni. - + Delete Book - + Usuń śpiewnik - + Are you sure you want to delete the selected book? - + Czy na pewno chcesz usunąć wybrany śpiewnik? - + This book cannot be deleted, it is currently assigned to at least one song. - + Śpiewnik nie może zostać usunięty, jest przypisany do przynajmniej jednej pieśni. - + The author %s already exists. Would you like to make songs with author %s use the existing author %s? - + Autor %s już istnieje. Czy chcesz pieśni autora %s przypisać istniejącemu autorowi %s? - + The topic %s already exists. Would you like to make songs with topic %s use the existing topic %s? - + Temat %s już istnieje. Czy chcesz pieśni o temacie %s przypisać istniejącemu tematowi %s? - + The book %s already exists. Would you like to make songs with book %s use the existing book %s? - + Śpiewnik %s już istnieje. Czy chcesz pieśni ze śpiewnika %s przypisać istniejącemu śpiewnikowi %s? SongsPlugin.SongsTab - + Songs Mode - + Tryb pieśni - + Enable search as you type - + Umożliwiaj przeszukiwanie, gdy piszesz - + Display verses on live tool bar - + Wyświetlaj wersety na pomocniczym pasku na ekranie - + Update service from song edit - + Uaktualnij plan nabożeństwa po edycji pieśni - + Import missing songs from service files - + Importowanie brakujących pieśni z plików SongsPlugin.TopicsForm - + Topic Maintenance - + Maintenance tematów - + Topic name: - + Nazwa tematu: - + You need to type in a topic name. - + Musisz wpisać nazwę tematu. SongsPlugin.VerseType - - - Verse - - - Chorus - + Verse + Zwrotka - Bridge - + Chorus + Refren - Pre-Chorus - + Bridge + Bridge - Intro - + Pre-Chorus + Pre-Chorus - Ending - + Intro + Intro + Ending + Zakończenie + + + Other - + Inne SongsPlugin.ZionWorxImport - + Error reading CSV file. - + Błąd czytania pliku CSV - + File not valid ZionWorx CSV format. - + Plik nie jest formatu ZionWorx CSV. - + Line %d: %s - + Linijka %d: %s - + Decoding error: %s - + Błąd dekodowania: %s - + Record %d - + Nagraj %d diff --git a/resources/i18n/pt_BR.ts b/resources/i18n/pt_BR.ts index 09b346250..a303d61a9 100644 --- a/resources/i18n/pt_BR.ts +++ b/resources/i18n/pt_BR.ts @@ -3,35 +3,35 @@ AlertsPlugin - + &Alert &Alerta - + Show an alert message. Exibir uma mensagem de alerta. - + Alert name singular Alerta - + Alerts name plural Alertas - + Alerts container title Alertas - + <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of nursery alerts on the display screen. <strong>Plugin de Alerta</strong><br />O plugin de alerta controla a exibição de mensagens do berçario na tela. @@ -39,69 +39,69 @@ AlertsPlugin.AlertForm - + Alert Message Mensagem de Alerta - + Alert &text: &Texto de Alerta: - + &New &Novo - + &Save &Salvar - + Displ&ay &Exibir - + Display && Cl&ose Exibir && &Fechar - + New Alert Novo Alerta - + You haven't specified any text for your alert. Please type in some text before clicking New. Você não digitou nenhum texto para o seu alerta. Por favor digite algum texto antes de clicar em Novo. - + &Parameter: &Parâmetro: - + No Parameter Found Nenhum Parâmetro Encontrado - + You have not entered a parameter to be replaced. Do you want to continue anyway? Você não informou um parâmetro para ser substituído. Deseja continuar mesmo assim? - + No Placeholder Found Nenhum Marcador de Posição Encontrado - + The alert text does not contain '<>'. Do you want to continue anyway? O texto de alerta não contém '<>'. @@ -119,32 +119,32 @@ Deseja continuar mesmo assim? AlertsPlugin.AlertsTab - + Font Fonte - + Font name: Nome da fonte: - + Font color: Cor da fonte: - + Background color: Cor de fundo: - + Font size: Tamanho da fonte: - + Alert timeout: Tempo limite para o Alerta: @@ -152,510 +152,510 @@ Deseja continuar mesmo assim? BiblesPlugin - + &Bible &Bíblia - + Bible name singular Bíblia - + Bibles name plural Bíblias - + Bibles container title Bíblias - + No Book Found Nenhum Livro Encontrado - + No matching book could be found in this Bible. Check that you have spelled the name of the book correctly. Nenhum livro correspondente foi encontrado nesta Bíblia. Verifique se você digitou o nome do livro corretamente. - + Import a Bible. Importar uma Bíblia. - + Add a new Bible. Adicionar uma Bíblia nova. - + Edit the selected Bible. Editar a Bíblia selecionada. - + Delete the selected Bible. Excluir a Bíblia selecionada. - + Preview the selected Bible. Pré-visualizar a Bíblia selecionada. - + Send the selected Bible live. Projetar a Bíblia selecionada. - + Add the selected Bible to the service. Adicionar a Bíblia selecionada ao culto. - + <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display Bible verses from different sources during the service. <strong>Plugin de Bíblia</strong><br />O plugin de Bíblia permite exibir versículos bíblicos de diferentes origens durante o culto. - + &Upgrade older Bibles &Atualizar Bíblias antigas - + Upgrade the Bible databases to the latest format. Atualizar o banco de dados de Bíblias para o formato atual. - + Genesis Gênesis - + Exodus Êxodo - + Leviticus Levítico - + Numbers Números - + Deuteronomy Deuteronômio - + Joshua Josué - + Judges Juízes - + Ruth Rute - + 1 Samuel 1 Samuel - + 2 Samuel 2 Samuel - + 1 Kings 1 Reis - + 2 Kings 2 Reis - + 1 Chronicles 1 Crônicas - + 2 Chronicles 2 Crônicas - + Ezra Esdras - + Nehemiah Neemias - + Esther Ester - + Job - + Psalms Salmos - + Proverbs Provérbios - + Ecclesiastes Eclesiastes - + Song of Solomon Cântico dos Cânticos - + Isaiah Isaías - + Jeremiah Jeremias - + Lamentations Lamentações de Jeremias - + Ezekiel Ezequiel - + Daniel Daniel - + Hosea Oseias - + Joel Joel - + Amos Amós - + Obadiah Obadias - + Jonah Jonas - + Micah Miqueias - + Nahum Naum - + Habakkuk Habacuque - + Zephaniah Sofonias - + Haggai Ageu - + Zechariah Zacarias - + Malachi Malaquias - + Matthew Mateus - + Mark Marcos - + Luke Lucas - + John João - + Acts Atos dos Apóstolos - + Romans Romanos - + 1 Corinthians 1 Coríntios - + 2 Corinthians 2 Coríntios - + Galatians Gálatas - + Ephesians Efésios - + Philippians Filipenses - + Colossians Colossenses - + 1 Thessalonians 1 Tessalonicenses - + 2 Thessalonians 2 Tessalonicenses - + 1 Timothy 1 Timóteo - + 2 Timothy 2 Timóeo - + Titus Tito - + Philemon Filemon - + Hebrews Hebreus - + James Tiago - + 1 Peter 1 Pedro - + 2 Peter 2 Pedro - + 1 John 1 João - + 2 John 2 João - + 3 John 3 João - + Jude Judas - + Revelation Apócalipse - + Judith Judite - + Wisdom Sabedoria - + Tobit Tobias - + Sirach Eclesiástico - + Baruch Baruque - + 1 Maccabees 1 Macabeus - + 2 Maccabees 2 Macabeus - + 3 Maccabees 3 Macabeus - + 4 Maccabees 4 Macabeus - + Rest of Daniel Acréscimos de Daniel - + Rest of Esther Adições a Ester - + Prayer of Manasses Oração de Manassés - + Letter of Jeremiah Carta de Jeremias - + Prayer of Azariah Oração de Azarias - + Susanna Suzana - + 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|verso|versos;;-|até;;,|e;;fim @@ -664,32 +664,32 @@ Deseja continuar mesmo assim? BiblesPlugin.BibleEditForm - + You need to specify a version name for your Bible. É necessário especificar um nome para esta versão da Bíblia. - + You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. É necessário informar os Direitos Autorais para esta Bíblia. Traduções em domínio público precisam ser marcadas como tal. - + Bible Exists A Bíblia existe - + This Bible already exists. Please import a different Bible or first delete the existing one. Esta Bíblia já existe. Por favor importa outra Bíblia ou remova a já existente. - + You need to specify a book name for "%s". É necessário especificar um nome de livro para "%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 @@ Números só podem ser usados na início e precisam ser seguidos de um ou mais caracteres não-numéricos. - + Duplicate Book Name Nome de Livro Duplicado - + The Book Name "%s" has been entered more than once. O nome de Livro "%s" foi informado mais de uma vez. @@ -711,39 +711,39 @@ ser seguidos de um ou mais caracteres não-numéricos. BiblesPlugin.BibleManager - + Scripture Reference Error Erro de Referência na Escritura - + Web Bible cannot be used Não é possível usar a Bíblia Online - + Text Search is not available with Web Bibles. A Pesquisa de Texto não está disponível para Bíblias Online. - + 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. Você não digitou uma palavra-chave de pesquisa. Você pode separar diferentes palavras-chave com um espaço para procurar por todas as palavras-chave e pode separá-las com uma vírgula para pesquisar por alguma delas. - + There are no Bibles currently installed. Please use the Import Wizard to install one or more Bibles. Não há Bíblias instaladas atualmente. Por favor, utilize o Assistente de Importação para instalar uma ou mais Bíblias. - + No Bibles Available - Nenhum Bíblia Disponível + Nenhuma Bíblia Disponível - + 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 @@ Livro Capítulo%(verse)sVerso%(range)sCapítulo%(verse)sVerso BiblesPlugin.BiblesTab - + Verse Display Exibição do Versículo - + Only show new chapter numbers Somente mostrar números de capítulos novos - + Bible theme: Tema da Bíblia: - + No Brackets Sem Parênteses - + ( And ) ( E ) - + { And } { E } - + [ And ] [ E ] - + Note: Changes do not affect verses already in the service. Observação: Mudanças não afetam os versículos que já estão no culto. - + Display second Bible verses Exibir versículos da Bíblia secundária - + Custom Scripture References Referências Personalizadas das Escrituras - + Verse Separator: Separador de Versos - + Range Separator: Separador de Faixas: - + List Separator: Separador de Listas: - + End Mark: Marcação de Fim: - + 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 @@ Eles devem ser separados por uma barra vertical "|". Por favor, limpe esta linha edição para usar o valor padrão. - + 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 @@ Eles devem ser separados por uma barra vertical "|". Por favor, limpe esta linha edição para usar o valor padrão. - + 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 @@ Eles devem ser separados por uma barra vertical "|". Por favor, limpe esta linha edição para usar o valor padrão. - + 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 @@ Eles devem ser separados por uma barra vertical "|". Por favor, limpe esta linha edição para usar o valor padrão. - + English Inglês - + Default Bible Language Idioma Padrão de Bíblia - + Book name language in search field, search results and on display: Idioma do nome de livros a ser usado na caixa de busca, resultados da busca e na exibição: - + Bible Language Idioma da Bíblia - + Application Language Idioma do Aplicativo @@ -904,42 +904,42 @@ busca, resultados da busca e na exibição: BiblesPlugin.BookNameDialog - + Select Book Name Selecione o Nome do Livro - + Current name: Nome atual: - + Corresponding name: Nome correspondente: - + Show Books From Mostrar Livros do - + Old Testament Antigo Testamento - + New Testament Novo Testamento - + Apocrypha Apócrifos - + The following book name cannot be matched up internally. Please select the corresponding name from the list. Não foi encontrado um nome interno que corresponde ao seguinte nome de livro. Por favor escolha o nome correspondente da lista. @@ -947,7 +947,7 @@ busca, resultados da busca e na exibição: BiblesPlugin.BookNameForm - + You need to select a book. Você deve selecionar um livro. @@ -955,18 +955,18 @@ busca, resultados da busca e na exibição: BiblesPlugin.CSVBible - + Importing books... %s Importando livros... %s - + Importing verses from %s... Importing verses from <book name>... Importando versículos de %s... - + Importing verses... done. Importando versículos... concluído. @@ -974,69 +974,69 @@ busca, resultados da busca e na exibição: BiblesPlugin.EditBibleForm - + Bible Editor Editor de Bíblia - + License Details Detalhes da Licença - + Version name: Nome da versão: - + Copyright: Direitos Autorais: - + Permissions: Permissões: - + Default Bible Language Idioma Padrão de Bíblia - + Book name language in search field, search results and on display: Idioma do nome de livros a ser usado na caixa de busca, resultados da busca e na exibição: - + Global Settings Configurações Globais - + Bible Language Idioma da Bíblia - + Application Language Idioma da Aplicação - + English Inglês - + This is a Web Download Bible. It is not possible to customize the Book Names. Esta Bíblia foi baixada da Internet. Não é possível modificar os nomes dos Livros. - + 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. Para usar os nomes de livros personalizados, "Idioma da Bíblia" deve estar selecionado na aba Meta Dados ou, se estiver selecionado "Ajustes Globais", na página Bíblia no Configurar OpenLP. @@ -1044,38 +1044,38 @@ It is not possible to customize the Book Names. BiblesPlugin.HTTPBible - + Registering Bible and loading books... Registrando Bíblia e carregando livros... - + Registering Language... Registrando Idioma... - + Importing %s... Importing <book name>... Importando %s... - + Download Error Erro ao Baixar - + There was a problem downloading your verse selection. Please check your Internet connection, and if this error continues to occur please consider reporting a bug. Ocorreu um problema ao baixar os versículos selecionados. Verifique sua conexão com a Internet, e se este erro continuar ocorrendo, por favor considere relatar um bug. - + Parse Error Erro de Interpretação - + There was a problem extracting your verse selection. If this error continues to occur please consider reporting a bug. Ocorreu um problema ao extrair os versículos selecionados. Se este erro continuar ocorrendo, por favor considere relatar um bug. @@ -1247,23 +1247,23 @@ It is not possible to customize the Book Names. Registered Bible. Please note, that verses will be downloaded on demand and thus an internet connection is required. Bíblia registrada. Por favor, observe que os verísulos serão baixados de acordo -com o usu, portanto uma conexão com a internet é necessária. +com o uso, portanto uma conexão com a internet é necessária. BiblesPlugin.LanguageDialog - + Select Language Selecione Idioma - + OpenLP is unable to determine the language of this translation of the Bible. Please select the language from the list below. OpenLP não pôde determinar o idioma desta tradução da Bíblia. Por favor, selecione o idioma na lista abaixo. - + Language: Idioma: @@ -1271,7 +1271,7 @@ com o usu, portanto uma conexão com a internet é necessária. BiblesPlugin.LanguageForm - + You need to choose a language. Você deve escolher um idioma. @@ -1279,92 +1279,92 @@ com o usu, portanto uma conexão com a internet é necessária. BiblesPlugin.MediaItem - + Quick Rápido - + Find: Localizar: - + Book: Livro: - + Chapter: Capítulo: - + Verse: Versículo: - + From: De: - + To: Até: - + Text Search Pesquisar Texto - + Second: Segundo: - + Scripture Reference Referência da Escritura - + Toggle to keep or clear the previous results. Alternar entre manter ou limpar resultados anteriores. - + You cannot combine single and dual Bible verse search results. Do you want to delete your search results and start a new search? Você não pode combinar os resultados de buscas de versículo Bíblicos simples e duplo. Você deseja deletar os resultados da sua busca e comecar uma nova? - + Bible not fully loaded. Bíblia não carregada completamente. - + Information Informações - + 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. A Bíblia secundária não contém todos os versículos que estão na Bíblia principal. Somente versículos encontrados em ambas as Bíblias serão exibidas. %d versículos não foram inclusos nos resultados. - + Search Scripture Reference... Pesquisar referência... - + Search Text... Pesquisar texto... - + Are you sure you want to completely delete "%s" Bible from OpenLP? You will need to re-import this Bible to use it again. @@ -1375,7 +1375,7 @@ Para usá-la de novo, você precisará fazer a importação novamente. BiblesPlugin.OpenSongImport - + Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. Foi fornecido um tipo de Bíblia incorreto. Os arquivos de Bíblia do OpenSong podem estar comprimidos. Você precisa descomprimí-lo antes de importá-lo. @@ -1383,7 +1383,7 @@ Para usá-la de novo, você precisará fazer a importação novamente. BiblesPlugin.Opensong - + Importing %s %s... Importing <book name> <chapter>... Importando %s %s... @@ -1392,12 +1392,12 @@ Para usá-la de novo, você precisará fazer a importação novamente. BiblesPlugin.OsisImport - + Detecting encoding (this may take a few minutes)... Detectando codificação (isto pode levar alguns minutos)... - + Importing %s %s... Importing <book name> <chapter>... Importando %s %s... @@ -1406,149 +1406,149 @@ Para usá-la de novo, você precisará fazer a importação novamente. BiblesPlugin.UpgradeWizardForm - + Select a Backup Directory Selecione um Diretório para Cópia de Segurança - + Bible Upgrade Wizard Assistente de Atualização de Bíblias - + 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. Este assistente irá ajudá-lo a atualizar suas Bíblias existentes a partir de uma versão anterior do OpenLP 2. Clique no botão avançar abaixo para começar o processo de atualização. - + Select Backup Directory Selecione o Diretório para Cópia de Segurança - + Please select a backup directory for your Bibles Por favor, selecione um diretório para a cópia de segurança das suas Bíblias - + 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>. - As versões anteriores do OpenLP 2.0 não conseguem usar as Bíblias atualizadas. Isto irá criar uma cópia de segurança das suas Bíblias atuais para que possa copiar os arquivos de voltar para o diretório de dados do OpenLP caso seja necessário voltar a uma versão anterior do OpenLP. Instruções de como recuperar os arquivos podem ser encontradas no nosso <a href="http://wiki.openlp.org/faq">Perguntas Frequentes</a>. + As versões anteriores do OpenLP 2.0 não conseguem usar as Bíblias atualizadas. Isto irá criar uma cópia de segurança das suas Bíblias atuais para que possa copiar os arquivos de volta para o diretório de dados do OpenLP caso seja necessário voltar a uma versão anterior do OpenLP. Instruções sobre como recuperar os arquivos podem ser encontradas no nosso <a href="http://wiki.openlp.org/faq">Perguntas Frequentes</a>. - + Please select a backup location for your Bibles. Por favor, selecione o local da cópia de segurança das suas Bíblias. - + Backup Directory: Diretório de Cópia de Segurança: - + There is no need to backup my Bibles Não é necessário fazer uma cópia de segurança das minhas Bíblias - + Select Bibles Selecione Bíblias - + Please select the Bibles to upgrade Por favor, selecione as Bíblias a atualizar - + Upgrading Atualizando - + Please wait while your Bibles are upgraded. Por favor, aguarde enquanto suas Bíblias são atualizadas. - + The backup was not successful. To backup your Bibles you need permission to write to the given directory. A cópia de segurança não teve êxito. Para fazer uma cópia de segurança das suas Bíblias é necessário permissão de escrita no diretório selecionado. - + Upgrading Bible %s of %s: "%s" Failed Atualizando Bíblia %s de %s: "%s" Falhou - + Upgrading Bible %s of %s: "%s" Upgrading ... Atualizando Bíblia %s de %s: "%s" Atualizando ... - + Download Error Erro ao Baixar - + To upgrade your Web Bibles an Internet connection is required. Para atualizar suas Bíblias Internet é necessária uma conexão com a internet. - + Upgrading Bible %s of %s: "%s" Upgrading %s ... Atualizando Bíblia %s de %s: "%s" Atualizando %s ... - + Upgrading Bible %s of %s: "%s" Complete Atualizando Bíblia %s de %s: "%s" Finalizado - + , %s failed . %s falhou - + 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. Atualizando Bíblia(s): %s com sucesso%s -Observe, que versículos das Bíblias Internet serão transferidos sob demanda então é necessária uma conexão com a internet. +Por favor, observe que versículos das Bíblias da Internet serão transferidos sob demanda, então é necessária uma conexão com a internet. - + Upgrading Bible(s): %s successful%s Atualizando Bíblia(s): %s com sucesso%s - + Upgrade failed. A atualização falhou. - + You need to specify a backup directory for your Bibles. Você precisa informar um diretório de backup para as suas Bíblias. - + Starting upgrade... Iniciando atualização... - + There are no Bibles that need to be upgraded. Não há Bíblias que necessitam ser atualizadas. @@ -1556,65 +1556,65 @@ Observe, que versículos das Bíblias Internet serão transferidos sob demanda e 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>Plugin de Slide Personalizado</strong><br />O plugin de slide personalizado permite criar slides de texto personalizados que são apresentados da mesma maneira que as músicas. Este plugin permite mais liberdade do que o plugin de músicas. - + Custom Slide name singular Slide Personalizado - + Custom Slides name plural Slides Personalizados - + Custom Slides container title Slides Personalizados - + Load a new custom slide. Carregar um novo slide personalizado. - + Import a custom slide. Importar um slide personalizado. - + Add a new custom slide. Adicionar um novo slide personalizado. - + Edit the selected custom slide. Editar o slide personalizado selecionado. - + Delete the selected custom slide. Excluir o slide personalizado selecionado. - + Preview the selected custom slide. Pré-visualizar o slide personalizado atual. - + Send the selected custom slide live. Enviar o slide personalizado selecionado para a projeção. - + Add the selected custom slide to the service. Adicionar o slide personalizado selecionado ao culto. @@ -1622,12 +1622,12 @@ Observe, que versículos das Bíblias Internet serão transferidos sob demanda e CustomPlugin.CustomTab - + Custom Display Exibir Personalizado - + Display footer Exibir rodapé @@ -1635,62 +1635,62 @@ Observe, que versículos das Bíblias Internet serão transferidos sob demanda e CustomPlugin.EditCustomForm - + Edit Custom Slides Editar Slides Personalizados - + &Title: &Título: - + Add a new slide at bottom. Adicionar um novo slide no final. - + Edit the selected slide. Editar o slide selecionado. - + Edit all the slides at once. Editar todos os slides de uma vez. - + Split a slide into two by inserting a slide splitter. Dividir um slide em dois, inserindo um divisor de slides. - + The&me: Te&ma: - + &Credits: &Créditos: - + You need to type in a title. Você deve digitar um título. - + You need to add at least one slide Você deve adicionar pelo menos um slide - + Ed&it All &Editar Todos - + Insert Slide Inserir Slide @@ -1698,7 +1698,7 @@ Observe, que versículos das Bíblias Internet serão transferidos sob demanda e CustomPlugin.EditVerseForm - + Edit Slide Editar Slide @@ -1706,7 +1706,7 @@ Observe, que versículos das Bíblias Internet serão transferidos sob demanda e CustomPlugin.MediaItem - + Are you sure you want to delete the %n selected custom slide(s)? Tem certeza que deseja excluir o %n slide personalizado selecionado? @@ -1717,60 +1717,60 @@ Observe, que versículos das Bíblias Internet serão transferidos sob demanda e 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>Plugin de Imagens</strong><br />O plugin de imagens permite a exibição de imagens.<br />Uma das funcionalidades importantes deste plugin é a possibilidade de agrupar várias imagens no culto, facilitando a exibição de várias imagens. Este plugin também pode usar a funcionalidade de "repetição temporizada" do OpenLP para criar uma apresentação de slides que é executada automaticamente. Além disso, imagens do plugin podem ser usadas em sobreposição ao plano de fundo do tema atual, exibindo itens baseados em texto como músicas com a imagem selecionada ao fundo ao invés do plano de fundo fornecido pelo tema. - + Image name singular Imagem - + Images name plural Imagens - + Images container title Imagens - + Load a new image. Carregar uma nova imagem. - + Add a new image. Adicionar uma nova imagem. - + Edit the selected image. Editar a imagem selecionada. - + Delete the selected image. Excluir a imagem selecionada. - + Preview the selected image. Pré-visualizar a imagem selecionada. - + Send the selected image live. Enviar a imagem selecionada para a projeção. - + Add the selected image to the service. Adicionar a imagem selecionada ao culto. @@ -1778,7 +1778,7 @@ Observe, que versículos das Bíblias Internet serão transferidos sob demanda e ImagePlugin.ExceptionDialog - + Select Attachment Selecionar Anexo @@ -1786,44 +1786,44 @@ Observe, que versículos das Bíblias Internet serão transferidos sob demanda e ImagePlugin.MediaItem - + Select Image(s) - Selecionar Imagem(s) + Selecionar Imagem(ns) - + You must select an image to delete. Você precisa selecionar uma imagem para excluir. - + You must select an image to replace the background with. Você precisa selecionar uma imagem para definir como plano de fundo. - + Missing Image(s) - Imagem(s) não encontrada(s) + Imagem(ns) não encontrada(s) - + The following image(s) no longer exist: %s - A(s) seguinte(s) imagem(s) não existe(m) mais: %s + A(s) seguinte(s) imagem(ns) não existe(m) mais: %s - + The following image(s) no longer exist: %s Do you want to add the other images anyway? - A(s) seguinte(s) imagem(s) não existe(m) mais: %s -Mesmo assim, deseja continuar adicionando as outras imagens? + A(s) seguinte(s) imagem(ns) não existe(m) mais: %s +Deseja continuar adicionando as outras imagens mesmo assim? - + There was a problem replacing your background, the image file "%s" no longer exists. Ocorreu um erro ao substituir o plano de fundo, o arquivo de imagem "%s" não existe. - + There was no display item to amend. Não há nenhum item de exibição para corrigir. @@ -1831,17 +1831,17 @@ Mesmo assim, deseja continuar adicionando as outras imagens? ImagesPlugin.ImageTab - + Background Color Cor do Plano de Fundo - + Default Color: Cor Padrão: - + Visible background for images with aspect ratio different to screen. Plano de fundo que será visto nas imagens que possuem proporção altura/largura diferente da tela. @@ -1849,60 +1849,60 @@ Mesmo assim, deseja continuar adicionando as outras imagens? MediaPlugin - + <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. <strong>Plugin de Mídia</strong><br />O plugin de mídia permite a reprodução de áudio e vídeo. - + Media name singular Mídia - + Media name plural Mídia - + Media container title Mídia - + Load new media. Carregar nova mídia. - + Add new media. Adicionar nova mídia. - + Edit the selected media. Editar a mídia selecionada. - + Delete the selected media. Excluir a mídia selecionada. - + Preview the selected media. Pré-visualizar a mídia selecionada. - + Send the selected media live. Enviar a mídia selecionada para a projeção. - + Add the selected media to the service. Adicionar a mídia selecionada ao culto. @@ -1910,57 +1910,57 @@ Mesmo assim, deseja continuar adicionando as outras imagens? MediaPlugin.MediaItem - + Select Media Selecionar Mídia - + You must select a media file to delete. Você deve selecionar um arquivo de mídia para apagar. - + You must select a media file to replace the background with. Você precisa selecionar um arquivo de mídia para substituir o plano de fundo. - + There was a problem replacing your background, the media file "%s" no longer exists. Ocorreu um erro ao substituir o plano de fundo. O arquivo de mídia "%s" não existe. - + Missing Media File Arquivo de Mídia não encontrado - + The file %s no longer exists. O arquivo %s não existe. - + Videos (%s);;Audio (%s);;%s (*) Vídeos (%s);;Áudio (%s);;%s (*) - + There was no display item to amend. Não há nenhum item de exibição para corrigir. - + Unsupported File Arquivo não suportado - + Automatic Automático - + Use Player: Usar Reprodutor: @@ -1968,22 +1968,22 @@ Mesmo assim, deseja continuar adicionando as outras imagens? MediaPlugin.MediaTab - + Available Media Players Reprodutores de Mídia Disponíveis - + %s (unavailable) %s (indisponível) - + Player Order Sequência de Reprodução - + Allow media player to be overridden Permitir que o reprodutor de mídia seja alterado @@ -1991,54 +1991,83 @@ Mesmo assim, deseja continuar adicionando as outras imagens? OpenLP - + Image Files Arquivos de Imagem - + Information Informações - + Bible format has changed. You have to upgrade your existing Bibles. Should OpenLP upgrade now? O formato de Bíblia foi alterado. Você deve atualizar suas Bíblias existentes. -OpenLP deve atualizar agora? +O OpenLP deve atualizar agora? OpenLP.AboutForm - + Credits Créditos - + License Licença - + build %s compilação %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. Este programa é um software livre; você pode redistribui-lo e/ou modifica-lo dentro dos termos da Licença Pública Geral GNU como publicada pela Fundação do Software Livre; na versão 2 da Licença. - + 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. Este programa é distribuido na esperança que será útil, mas SEM NENHUMA GARANTIA; sem mesmo a garantia implícita de COMERCIALIZAÇÃO ou ADEQUAÇÃO PARA UM DETERMINADO FIM. Veja abaixo para maiores detalhes. - + + Copyright © 2004-2012 %s +Portions copyright © 2004-2012 %s + Copyright © 2004-2012 %s +Porções copyright © 2004-2012 %s + + + + 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. + +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 volunteering by using the button below. + OpenLP <version><revision> - Projeção de Letras Código Aberto + +O OpenLP é um software livre, de apresentações ou projeção de letras em igrejas, usado para exibir slides de músicas, versículos da Bíblia, vídeos, imagens, e até apresentações (se estiver instalado o Impress, PowerPoint ou visualizador PowerPoint) para louvor na igreja usando um computador e um projetor. + +Conheça mais sobre o OpenLP: http://openlp.org/ + +O OpenLP é escrito e mantido por voluntários. Se você gostaria de ver mais softwares Cristãos gratuítos sendo escritos, por favor, considere contribuir usando o botão abaixo. + + + + Volunteer + Contribuir + + + Project Lead %s @@ -2057,12 +2086,20 @@ Packagers Translators Afrikaans (af) %s + Czeck (cs) + %s + Danish (da) + %s German (de) %s + Greek (el) + %s English, United Kingdom (en_GB) %s English, South Africa (en_ZA) %s + Spanish (es) + %s Estonian (et) %s French (fr) @@ -2079,13 +2116,15 @@ Translators %s Russian (ru) %s + Swedish (sv) + %s Documentation %s Built With Python: http://www.python.org/ - Qt4: http://qt.nokia.com/ + Qt4: http://qt.digia.com/ PyQt4: http://www.riverbankcomputing.co.uk/software/pyqt/intro Oxygen Icons: http://oxygen-icons.org/ @@ -2100,268 +2139,185 @@ Final Credit on the cross, setting us free from sin. We bring this software to you for free because He has set us free. - Líder do Projeto - %s - -Desenvolvedores - %s - -Contribuidores - %s - -Testadores - %s - -Empacotadores - %s - -Tradutores - Afrikaans (af) - %s - Alemão (de) - %s - Inglês, Reino Unido (en_GB) - %s - Inglês, África do Sul (en_ZA) - %s - Estoniano (et) - %s - Francês (fr) - %s - Húngaro (hu) - %s - Japonês (ja) - %s - Norueguês Bokmål (nb) - %s - Holandês (nl) - %s - Português do Brazil (pt_BR) - %s - Russo (ru) - %s - -Documentação - %s - -Desenvolvido com - Python: http://www.python.org/ - Qt4: http://qt.nokia.com/ - PyQt4: http://www.riverbankcomputing.co.uk/software/pyqt/intro - Oxygen Icons: http://oxygen-icons.org/ - -Créditos Finais - "Porque Deus amou o mundo de tal maneira - que deu o seu Filho unigênito, para que todo - aquele que nele crê não pereça, mas tenha - a vida eterna.." -- João 3:16 - - E por fim mas não menos importante, os créditos finais vão para - Deus, o nosso Pai, por enviar o Seu filho para morrer - na cruz, nos justificando do pecado. Nós - trazemos este software de graça para você porque - pela Graça ele nos libertou. - - - - Copyright © 2004-2012 %s -Portions copyright © 2004-2012 %s - Copyright © 2004-2012 %s -Porções copyright © 2004-2012 %s - - - - 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. - -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 volunteering by using the button below. - - - - - Volunteer OpenLP.AdvancedTab - + UI Settings Configurações da Interface - + Number of recent files to display: Número de arquivos recentes a serem exibidos: - + Remember active media manager tab on startup Lembrar aba ativa do gerenciador de mídia ao iniciar - + Double-click to send items straight to live Clicar duas vezes para diretamente projetar itens - + Expand new service items on creation Expandir novos itens do culto ao serem criados - + Enable application exit confirmation Habilitar confirmação de saída do programa - + Mouse Cursor Ponteiro do Mouse - + Hide mouse cursor when over display window Ocultar o cursor do mouse quando estiver sobre a tela de projeção - + Default Image Imagem Padrão - + Background color: Cor do plano de fundo: - + Image file: Arquivo de Imagem: - + Open File Abrir Arquivo - + Advanced Avançado - + Preview items when clicked in Media Manager Pré-visualizar itens quando clicados no Gerenciador de Mídia - + Click to select a color. Clique para selecionar uma cor. - + Browse for an image file to display. Procurar um arquivo de imagem para exibir. - + Revert to the default OpenLP logo. Reverter ao logotipo padrão 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. Culto %Y-%m-%d %H-%M - + Default Service Name Nome Padrão de Culto - + Enable default service name Habilitar nome padrão de culto - + Date and Time: Data e Hora: - + Monday Segunda-feira - + Tuesday Terça-feira - + Wednesday Quarta-feira - + Thurdsday Quinta-feira - + Friday Sexta-feira - + Saturday Sábado - + Sunday Domingo - + Now Agora - + Time when usual service starts. Hora em que o culto normal se inicia. - + Name: Nome: - + Consult the OpenLP manual for usage. Consulte o manual OpenLP para uso. - + Revert to the default service name "%s". Reverter para o nome padrão de culto "%s". - + Example: Exemplo: - + X11 X11 @@ -2371,82 +2327,82 @@ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for Desativar Gerenciador de Janelas X11 - + Syntax error. Erro de sintaxe. - + Data Location Local dos Dados - + Current path: Caminho atual: - + Custom path: Caminho personalizado: - + Browse for new data file location. Escolher um novo local para os arquivos de dados. - + Set the data location to the default. Restabelecer o local de dados para o padrão. - + Cancel Cancelar - + Cancel OpenLP data directory location change. Cancelar a mudança da localização dos dados do OpenLP. - + Copy data to new location. Copiar os dados para a nova localização. - + Copy the OpenLP data files to the new location. Copiar os arquivos de dados do OpenLP para a nova localização. - + <strong>WARNING:</strong> New data directory location contains OpenLP data files. These files WILL be replaced during a copy. <strong>AVISO:</strong> O novo diretório de dados já contém arquivos do OpenLP. Estes arquivos SERÃO sobrescritos durante uma cópia. - + Data Directory Error Erro no Diretório de Dados - + Select Data Directory Location Seleciona a Localização do Diretório de Dados - + Confirm Data Directory Change Confirmar Mudança do Diretório de Dados - + Reset Data Directory Restabelecer o Diretório de Dados - + 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. @@ -2455,12 +2411,12 @@ This location will be used after OpenLP is closed. Esta localização será usada depois que o OpenLP for fechado. - + Overwrite Existing Data Sobrescrever Dados Existentes - + OpenLP data directory was not found %s @@ -2470,19 +2426,31 @@ This data directory was previously changed from the OpenLP default location. If Click "No" to stop loading OpenLP. allowing you to fix the the problem. Click "Yes" to reset the data directory to the default location. - + O diretório de dados do OpenLP não foi encontrado + +%s + +Este diretório de dados foi previamente alterado do local padrão do OpenLP. Se o novo local estava em uma mídia removível, a mídia deve ser disponibilizada. + +Clique em "Não" para cancelar a carga do OpenLP permitindo que o problema seja corrigido. + +Clique em "Sim" para redifinir o diretório de dados para o local padrão. - + Are you sure you want to change the location of the OpenLP data directory to: %s The data directory will be changed when OpenLP is closed. - + Tem certeza que deseja alterar o local do diretório de dados do OpenLP para: + +%s + +O diretório de dados será alterado quando o OpenLP for encerrado. - + WARNING: The location you have selected @@ -2490,45 +2458,51 @@ The location you have selected %s appears to contain OpenLP data files. Do you wish to replace these files with the current data files? - + AVISO: + +O local selecionado + +%s + +aparentemente contém arquivos de dados do OpenLP. Deseja substituir estes arquivos com os arquivos de dados atuais? OpenLP.ExceptionDialog - + Error Occurred Ocorreu um Erro - + 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. Ops! O OpenLP encontrou um problema e não pôde recuperar-se. O texto na caixa abaixo contém informações que podem ser úteis para os desenvolvedores do OpenLP, então, por favor, envie um e-mail para bugs@openlp.org, junto com uma descrição detalhada daquilo que você estava fazendo quando o problema ocorreu. - + Send E-Mail Enviar E-Mail - + Save to File Salvar para um Arquivo - + Please enter a description of what you were doing to cause this error (Minimum 20 characters) Por favor, descreva o que você estava fazendo para causar este erro (Mínimo de 20 caracteres) - + Attach File Anexar Arquivo - + Description characters to enter : %s Caracteres que podem ser digitadas na descrição: %s @@ -2536,24 +2510,24 @@ appears to contain OpenLP data files. Do you wish to replace these files with t OpenLP.ExceptionForm - + Platform: %s Plataforma: %s - + Save Crash Report Salvar Relatório de Travamento - + Text files (*.txt *.log *.text) Arquivos de texto (*.txt *.log *.text) - + **OpenLP Bug Report** Version: %s @@ -2584,7 +2558,7 @@ Versão %s - + *OpenLP Bug Report* Version: %s @@ -2620,17 +2594,17 @@ Agradecemos se for possível escrever seu relatório em inglês. OpenLP.FileRenameForm - + File Rename Renomear arquivo - + New File Name: Novo nome de Arquivo: - + File Copy Copiar arquivo @@ -2638,17 +2612,17 @@ Agradecemos se for possível escrever seu relatório em inglês. OpenLP.FirstTimeLanguageForm - + Select Translation Selecione Idioma - + Choose the translation you'd like to use in OpenLP. Escolha o idioma que você gostaria de utilizar no OpenLP. - + Translation: Idioma: @@ -2656,192 +2630,192 @@ Agradecemos se for possível escrever seu relatório em inglês. OpenLP.FirstTimeWizard - + Songs Músicas - + First Time Wizard Assistente de Primeira Utilização - + Welcome to the First Time Wizard Bem vindo ao Assistente de Primeira Utilização - + Activate required Plugins Ativar os Plugins necessários - + Select the Plugins you wish to use. Selecione os Plugins que você deseja utilizar. - + Bible Bíblia - + Images Imagens - + Presentations Apresentações - + Media (Audio and Video) Mídia (Áudio e Vídeo) - + Allow remote access Permitir acesso remoto - + Monitor Song Usage Monitorar Utilização das Músicas - + Allow Alerts Permitir Alertas - + Default Settings Configurações Padrões - + Downloading %s... Transferindo %s... - + Download complete. Click the finish button to start OpenLP. Transferência finalizada. Clique no botão terminar para iniciar o OpenLP. - + Enabling selected plugins... Habilitando os plugins selecionados... - + No Internet Connection Conexão com a Internet Indisponível - + Unable to detect an Internet connection. Não foi possível detectar uma conexão com a Internet. - + Sample Songs Músicas de Exemplo - + Select and download public domain songs. Selecione e baixe músicas de domínio público. - + Sample Bibles Bíblias de Exemplo - + Select and download free Bibles. Selecione e baixe Bíblias gratuitas. - + Sample Themes Temas de Exemplo - + Select and download sample themes. Selecione e baixe temas de exemplo. - + Set up default settings to be used by OpenLP. Configure os ajustes padrões que serão utilizados pelo OpenLP. - + Default output display: Saída de projeção padrão: - + Select default theme: Selecione o tema padrão: - + Starting configuration process... Iniciando o processo de configuração... - + This wizard will help you to configure OpenLP for initial use. Click the next button below to start. Este assistente irá ajudá-lo na configuração do OpenLP para o uso inicial. Clique abaixo no botão avançar para começar. - + Setting Up And Downloading Configurando e Transferindo - + Please wait while OpenLP is set up and your data is downloaded. Por favor, aguarde enquanto o OpenLP é configurado e seus dados são transferidos. - + Setting Up Configurando - + Click the finish button to start OpenLP. Clique o botão finalizar para iniciar o OpenLP. - + Download complete. Click the finish button to return to OpenLP. Transferência finalizada. Clique no botão finalizar para retornar ao OpenLP. - + Click the finish button to return to OpenLP. Cloque no botão finalizar para retornar ao OpenLP. - + Custom Slides Slides Personalizados - + Finish Finalizar - + 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. @@ -2852,7 +2826,7 @@ Para iniciar o Assistente de Primeira Execução novamente e baixar letras de m Clique no botão finalizar para iniciar o OpenLP com as configurações iniciais. - + To cancel the First Time Wizard completely (and not start OpenLP), click the Cancel button now. @@ -2866,37 +2840,37 @@ Para cancelar o Assistente de Primeira Execução (e não iniciar o OpenLP), cli OpenLP.FormattingTagDialog - + Configure Formatting Tags Configurar Etiquetas de Formatação - + Edit Selection Editar Seleção - + Save Salvar - + Description Descrição - + Tag Tag - + Start HTML Iniciar HTML - + End HTML Finalizar HTML @@ -2904,32 +2878,32 @@ Para cancelar o Assistente de Primeira Execução (e não iniciar o OpenLP), cli OpenLP.FormattingTagForm - + Update Error Erro na Atualização - + Tag "n" already defined. Tag "n" já está definida. - + New Tag - Novo Tag + Nova Tag - + <HTML here> <HTML aqui> - + </and here> </e aqui> - + Tag %s already defined. Tag %s já está definida. @@ -2937,82 +2911,82 @@ Para cancelar o Assistente de Primeira Execução (e não iniciar o OpenLP), cli OpenLP.FormattingTags - + Red Vermelho - + Black Preto - + Blue Azul - + Yellow Amarelo - + Green Verde - + Pink Rosa - + Orange Laranja - + Purple Roxo - + White Branco - + Superscript Sobrescrito - + Subscript Subscrito - + Paragraph Parágrafo - + Bold Negrito - + Italics Itálico - + Underline Sublinhado - + Break Quebra @@ -3020,122 +2994,122 @@ Para cancelar o Assistente de Primeira Execução (e não iniciar o OpenLP), cli OpenLP.GeneralTab - + General Geral - + Monitors Monitores - + Select monitor for output display: Selecione o monitor para exibição: - + Display if a single screen Exibir no caso de uma única tela - + Application Startup Inicialização do Aplicativo - + Show blank screen warning Exibir alerta de tela em branco - + Automatically open the last service Abrir automaticamente o último culto - + Show the splash screen Exibir a tela de abertura - + Application Settings Configurações do Aplicativo - + Prompt to save before starting a new service Perguntar se salva antes de iniciar um novo culto - + Automatically preview next item in service Pré-visualizar automaticamente o item seguinte do culto - + sec seg - + CCLI Details Detalhes de CCLI - + SongSelect username: Usuário SongSelect: - + SongSelect password: Senha SongSelect: - + X X - + Y Y - + Height Altura - + Width Largura - + Check for updates to OpenLP Procurar por atualizações do OpenLP - + Unblank display when adding new live item Ativar projeção ao adicionar um item novo - + Timed slide interval: Intervalo temporizado de slide: - + Background Audio Áudio de Fundo - + Start background audio paused Iniciar áudio de fundo em pausa @@ -3145,12 +3119,12 @@ Para cancelar o Assistente de Primeira Execução (e não iniciar o OpenLP), cli Limites de Slide de Itens de Culto - + Override display position: Alterar posição de exibição: - + Repeat track list Repetir lista de faixas @@ -3178,12 +3152,12 @@ Para cancelar o Assistente de Primeira Execução (e não iniciar o OpenLP), cli OpenLP.LanguageManager - + Language Idioma - + Please restart OpenLP to use your new language setting. Por favor reinicie o OpenLP para usar a nova configuração de idioma. @@ -3191,7 +3165,7 @@ Para cancelar o Assistente de Primeira Execução (e não iniciar o OpenLP), cli OpenLP.MainDisplay - + OpenLP Display Saída do OpenLP @@ -3199,287 +3173,287 @@ Para cancelar o Assistente de Primeira Execução (e não iniciar o OpenLP), cli OpenLP.MainWindow - + &File &Arquivo - + &Import &Importar - + &Export &Exportar - + &View &Exibir - + M&ode M&odo - + &Tools &Ferramentas - + &Settings &Configurações - + &Language &Idioma - + &Help Aj&uda - + Media Manager Gerenciador de Mídia - + Service Manager Gerenciador de Culto - + Theme Manager Gerenciador de Tema - + &New &Novo - + &Open &Abrir - + Open an existing service. Abrir um culto existente. - + &Save &Salvar - + Save the current service to disk. Salvar o culto atual no disco. - + Save &As... Salvar &Como... - + Save Service As Salvar Culto Como - + Save the current service under a new name. Salvar o culto atual com um novo nome. - + E&xit S&air - + Quit OpenLP Fechar o OpenLP - + &Theme &Tema - + &Configure OpenLP... &Configurar o OpenLP... - + &Media Manager &Gerenciador de Mídia - + Toggle Media Manager Alternar Gerenciador de Mídia - + Toggle the visibility of the media manager. Alternar a visibilidade do gerenciador de mídia. - + &Theme Manager &Gerenciador de Tema - + Toggle Theme Manager Alternar para Gerenciamento de Tema - + Toggle the visibility of the theme manager. Alternar a visibilidade do gerenciador de tema. - + &Service Manager Gerenciador de &Culto - + Toggle Service Manager Alternar o Gerenciador de Culto - + Toggle the visibility of the service manager. Alternar visibilidade do gerenciador de culto. - + &Preview Panel &Painel de Pré-Visualização - + Toggle Preview Panel Alternar o Painel de Pré-Visualização - + Toggle the visibility of the preview panel. Alternar a visibilidade do painel de pré-visualização. - + &Live Panel &Painel de Projeção - + Toggle Live Panel Alternar Painel da Projeção - + Toggle the visibility of the live panel. Alternar a visibilidade do painel de projeção. - + &Plugin List &Lista de Plugins - + List the Plugins Listar os Plugins - + &User Guide &Guia do Usuário - + &About &Sobre - + More information about OpenLP Mais informações sobre o OpenLP - + &Online Help &Ajuda Online - + &Web Site &Web Site - + Use the system language, if available. Usar o idioma do sistema, caso disponível. - + Set the interface language to %s Definir o idioma da interface como %s - + Add &Tool... Adicionar &Ferramenta... - + Add an application to the list of tools. Adicionar um aplicativo à lista de ferramentas. - + &Default &Padrão - + Set the view mode back to the default. Reverter o modo de visualização ao padrão. - + &Setup &Configuração - + Set the view mode to Setup. Configurar o modo de visualização para Configuração. - + &Live &Ao Vivo - + Set the view mode to Live. Configurar o modo de visualização como Ao Vivo. - + 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/. @@ -3488,108 +3462,108 @@ You can download the latest version from http://openlp.org/. Voce pode baixar a última versão em http://openlp.org/. - + OpenLP Version Updated Versão do OpenLP Atualizada - + OpenLP Main Display Blanked Tela Principal do OpenLP desativada - + The Main Display has been blanked out A Tela Principal foi desativada - + Default Theme: %s Tema padrão: %s - + English Please add the name of your language here Português do Brasil - + Configure &Shortcuts... Configurar &Atalhos... - + Close OpenLP Fechar o OpenLP - + Are you sure you want to close OpenLP? Você tem certeza de que deseja fechar o OpenLP? - + Open &Data Folder... Abrir Pasta de &Dados... - + Open the folder where songs, bibles and other data resides. Abrir a pasta na qual músicas, bíblias e outros arquivos são armazenados. - + &Autodetect &Auto detectar - + Update Theme Images Atualizar Imagens de Tema - + Update the preview images for all themes. Atualizar as imagens de pré-visualização de todos os temas. - + Print the current service. Imprimir o culto atual. - + &Recent Files Arquivos &Recentes - + L&ock Panels Tr&avar Painéis - + Prevent the panels being moved. Previne que os painéis sejam movidos. - + Re-run First Time Wizard Iniciar o Assistente de Primeira Execução novamente - + Re-run the First Time Wizard, importing songs, Bibles and themes. Iniciar o Assistente de Primeira Execução novamente importando músicas, Bíblia e temas. - + Re-run First Time Wizard? Deseja iniciar o Assistente de Primeira Execução novamente? - + 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. @@ -3598,43 +3572,43 @@ Re-running this wizard may make changes to your current OpenLP configuration and Executar o assistente novamente poderá fazer mudanças na sua configuração atual, adicionar músicas à sua base existente e mudar o seu tema padrão. - + Clear List Clear List of recent files Limpar Lista - + Clear the list of recent files. Limpar a lista de arquivos recentes. - + Configure &Formatting Tags... Configurar Etiquetas de &Formatação... - + Export OpenLP settings to a specified *.config file Exportar as configurações do OpenLP para um arquivo *.config - + Settings Configurações - + Import OpenLP settings from a specified *.config file previously exported on this or another machine Importar as configurações do OpenLP de um arquivo *.config que foi previamente exportado neste ou em outro computador - + Import settings? Importar configurações? - + Are you sure you want to import settings? Importing settings will make permanent changes to your current OpenLP configuration. @@ -3647,71 +3621,77 @@ Importar as configurações irá fazer mudanças permanentes no seu OpenLP. Importar configurações incorretas pode causar problemas de execução ou que o OpenLP finalize de forma inesperada. - + Open File Abrir Arquivo - + OpenLP Export Settings Files (*.conf) Arquivo de Configurações do OpenLP (*.conf) - + Import settings Importar configurações - + OpenLP will now close. Imported settings will be applied the next time you start OpenLP. O OpenLP irá finalizar. As configurações importadas serão aplicadas na próxima execução do OpenLP. - + Export Settings File Exportar arquivo de configurações - + OpenLP Export Settings File (*.conf) Arquivo de Configurações do OpenLP (*.conf) - + New Data Directory Error Erro no Novo Diretório de Dados - + The file you selected does appear to be a valid OpenLP settings file. Section [%s] is not valid Processing has terminated and no changed have been made. - + O arquivo que você selecionou não parece ser um arquivo de configuração OpenLP válido. + +A seção [%s] não é válida. + +O processamento foi interrompido e nenhuma alteração foi realizada. - + Copying OpenLP data to new data directory location - %s - Please wait for copy to finish - + Copiando dados do OpenLP para o novo local do diretório de dados - %s - Por favor, aguarde a finalização da cópia - + OpenLP Data directory copy failed %s - + Falhou a cópia do diretório de dados do OpenLP + +%s OpenLP.Manager - + Database Error Erro no Banco de Dados - + 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 @@ -3720,7 +3700,7 @@ Database: %s Banco de dados: %s - + OpenLP cannot load your database. Database: %s @@ -3732,62 +3712,62 @@ Banco de Dados: %s OpenLP.MediaManagerItem - + No Items Selected Nenhum Item Selecionado - + &Add to selected Service Item &Adicionar ao Item de Ordem de Culto selecionado - + You must select one or more items to preview. Você deve selecionar um ou mais itens para pré-visualizar. - + You must select one or more items to send live. Você deve selecionar um ou mais itens para projetar. - + You must select one or more items. Você deve selecionar um ou mais itens. - + You must select an existing service item to add to. Você deve selecionar um item de culto existente ao qual adicionar. - + Invalid Service Item Item de Culto inválido - + You must select a %s service item. Você deve selecionar um item de culto %s. - + You must select one or more items to add. Você deve selecionar um ou mais itens para adicionar. - + No Search Results Nenhum Resultado de Busca - + Invalid File Type Tipo de Arquivo Inválido - + Invalid File %s. Suffix not supported Arquivo Inválido %s. @@ -3799,7 +3779,7 @@ Sufixo não suportado &Duplicar - + Duplicate files were found on import and were ignored. Arquivos duplicados foram encontrados na importação e foram ignorados. @@ -3807,12 +3787,12 @@ Sufixo não suportado OpenLP.OpenLyricsImportError - + <lyrics> tag is missing. tag <lyrics> ausente. - + <verse> tag is missing. tag <verse> ausente. @@ -3820,42 +3800,42 @@ Sufixo não suportado OpenLP.PluginForm - + Plugin List Lista de Plugins - + Plugin Details Detalhes do Plugin - + Status: Status: - + Active Ativo - + Inactive Inativo - + %s (Inactive) %s (Inativo) - + %s (Active) %s (Ativo) - + %s (Disabled) %s (Desabilitado) @@ -3863,12 +3843,12 @@ Sufixo não suportado OpenLP.PrintServiceDialog - + Fit Page Ajustar à Página - + Fit Width Ajustar à Largura @@ -3876,77 +3856,77 @@ Sufixo não suportado OpenLP.PrintServiceForm - + Options Opções - + Copy Copiar - + Copy as HTML Copiar como HTML - + Zoom In Aumentar o Zoom - + Zoom Out Diminuir o Zoom - + Zoom Original Zoom Original - + Other Options Outras Opções - + Include slide text if available Incluir texto do slide se disponível - + Include service item notes Incluir notas do item de culto - + Include play length of media items Incluir duração dos itens de mídia - + Add page break before each text item Adicionar uma quebra de página antes de cada item de texto - + Service Sheet Folha de Culto - + Print Imprimir - + Title: Título: - + Custom Footer Text: Texto de Rodapé Customizado: @@ -3954,12 +3934,12 @@ Sufixo não suportado OpenLP.ScreenList - + Screen Tela - + primary primário @@ -3967,12 +3947,12 @@ Sufixo não suportado OpenLP.ServiceItem - + <strong>Start</strong>: %s <strong>Início</strong>: %s - + <strong>Length</strong>: %s <strong>Duração</strong>: %s @@ -3980,7 +3960,7 @@ Sufixo não suportado OpenLP.ServiceItemEditForm - + Reorder Service Item Reordenar Item de Culto @@ -3988,296 +3968,295 @@ Sufixo não suportado OpenLP.ServiceManager - + Move to &top Mover para o &topo - + Move item to the top of the service. Mover item para o topo do culto. - + Move &up Mover para &cima - + Move item up one position in the service. Mover item uma posição para cima no culto. - + Move &down Mover para &baixo - + Move item down one position in the service. Mover item uma posição para baixo no culto. - + Move to &bottom Mover para o &final - + Move item to the end of the service. Mover item para o final do culto. - + &Delete From Service &Excluir do Culto - + Delete the selected item from the service. Excluir o item selecionado do culto. - + &Add New Item &Adicionar um Novo Item - + &Add to Selected Item &Adicionar ao Item Selecionado - + &Edit Item &Editar Item - + &Reorder Item &Reordenar Item - + &Notes &Anotações - + &Change Item Theme &Alterar Tema do Item - + OpenLP Service Files (*.osz) Arquivos de Culto do OpenLP (*.osz) - + File is not a valid service. The content encoding is not UTF-8. O arquivo não é um culto válida. A codificação do conteúdo não é UTF-8. - + File is not a valid service. Arquivo não é uma ordem de culto válida. - + Missing Display Handler Faltando o Manipulador de Exibição - + Your item cannot be displayed as there is no handler to display it O seu item não pode ser exibido porque não existe um manipulador para exibí-lo - + Your item cannot be displayed as the plugin required to display it is missing or inactive O item não pode ser exibido porque o plugin necessário para visualizá-lo está ausente ou está desativado - + &Expand all &Expandir todos - + Expand all the service items. Expandir todos os itens do culto. - + &Collapse all &Recolher todos - + Collapse all the service items. Recolher todos os itens do culto. - + Open File Abrir Arquivo - + Moves the selection down the window. Move a seleção para baixo dentro da janela. - + Move up Mover para cima - + Moves the selection up the window. Move a seleção para cima dentro da janela. - + Go Live Projetar - + Send the selected item to Live. Enviar o item selecionado para a Projeção. - + &Start Time &Horário Inicial - + Show &Preview Exibir &Pré-visualização - + Modified Service Culto Modificado - + The current service has been modified. Would you like to save this service? O culto atual foi modificada. Você gostaria de salvar este culto? - + Custom Service Notes: Anotações de Culto Personalizados: - + Notes: Observações: - + Playing time: Duração: - + Untitled Service Culto Sem Nome - + File could not be opened because it is corrupt. Arquivo não pôde ser aberto porque está corrompido. - + Empty File Arquivo vazio - + This service file does not contain any data. Este arquivo de culto não contém dados. - + Corrupt File Arquivo corrompido - + Load an existing service. Carregar um culto existente. - + Save this service. Salvar este culto. - + Select a theme for the service. Selecionar um tema para o culto. - + This file is either corrupt or it is not an OpenLP 2.0 service file. Este arquivo está corrompido ou não é um arquivo de culto do OpenLP 2.0. - - Service File Missing - Arquivo do Culto não encontrado - - - + Slide theme Tema do Slide - + Notes Notas - + Edit Editar - + Service copy only Somente cópia de culto - + Error Saving File Erro ao Salvar Arquivo - + There was an error saving your file. Houve um erro ao salvar seu arquivo. - - File missing from service + + Service File(s) Missing + + + + + The following file(s) in the service are missing: +%s - %s - -Continue saving? +These files will be removed if you continue to save. OpenLP.ServiceNoteForm - + Service Item Notes Anotações do Item de Culto @@ -4285,7 +4264,7 @@ Continue saving? OpenLP.SettingsForm - + Configure OpenLP Configurar o OpenLP @@ -4293,67 +4272,67 @@ Continue saving? OpenLP.ShortcutListDialog - + Action Ação - + Shortcut Atalho - + Duplicate Shortcut Atalho Repetido - + The shortcut "%s" is already assigned to another action, please use a different shortcut. O atalho "%s" já está designado para outra ação, escolha um atalho diferente. - + Alternate Alternativo - + Select an action and click one of the buttons below to start capturing a new primary or alternate shortcut, respectively. Selecione uma ação e clique em um dos botões abaixo para iniciar a captura de um novo atalho primário ou alternativo, respectivamente. - + Default Padrão - + Custom Personalizado - + Capture shortcut. Capturar atalho. - + Restore the default shortcut of this action. Restaurar o atalho padrão desta ação. - + Restore Default Shortcuts Restaurar Atalhos Padrões - + Do you want to restore all shortcuts to their defaults? Deseja restaurar todos os atalhos ao seus padrões? - + Configure Shortcuts Configurar Atalhos @@ -4361,172 +4340,172 @@ Continue saving? OpenLP.SlideController - + Hide Ocultar - + Go To Ir Para - + Blank Screen Apagar Tela - + Blank to Theme Apagar e deixar o Tema - + Show Desktop Mostrar a Área de Trabalho - + Previous Service Lista Anterior - + Next Service Próxima Lista - + Escape Item Escapar Item - + Move to previous. Mover para o anterior. - + Move to next. Mover para o seguinte. - + Play Slides Exibir Slides - + Delay between slides in seconds. Espera entre slides em segundos. - + Move to live. Mover para projeção. - + Add to Service. Adicionar ao Culto. - + Edit and reload song preview. Editar e recarregar pré-visualização da música. - + Start playing media. Começar a reproduzir mídia. - + Pause audio. Pausar o áudio. - + Pause playing media. Pausar mídia sendo reproduzido. - + Stop playing media. Parar mídia sendo reproduzido. - + Video position. Posição do vídeo - + Audio Volume. Volume do Áudio. - + Go to "Verse" Ir para "Estrofe" - + Go to "Chorus" Ir para "Refrão" - + Go to "Bridge" Ir para "Ponte" - + Go to "Pre-Chorus" Ir para "Pré-Refrão" - + Go to "Intro" Ir para "Introdução" - + Go to "Ending" Ir para "Final" - + Go to "Other" Ir para "Outro" - + Previous Slide Slide Anterior - + Next Slide Slide Seguinte - + Pause Audio Interromper Som - + Background Audio Som de Fundo - + Go to next audio track. Ir para a próxima faixa de áudio - + Tracks Faixas @@ -4534,17 +4513,17 @@ Continue saving? OpenLP.SpellTextEdit - + Spelling Suggestions Sugestões Ortográficas - + Formatting Tags Tags de Formatação - + Language: Idioma: @@ -4552,67 +4531,67 @@ Continue saving? OpenLP.StartTimeForm - + Hours: Horários: - + Minutes: Minutos: - + Seconds: Segundos: - + Item Start and Finish Time Tempo de Início e Término do item - + Start Início - + Finish Fim - + Length Duração - + Time Validation Error Erro de Validação de Tempo - + Finish time is set after the end of the media item O tempo final está após o fim do item de mídia - + Start time is after the finish time of the media item O tempo inicial está após o fim do item de mídia - + Theme Layout Disposição do Tema - + The blue box shows the main area. A caixa azul mostra a área principal. - + The red box shows the footer. A caixa vermelha mostra o rodapé. @@ -4620,559 +4599,559 @@ Continue saving? OpenLP.ThemeManager - + Create a new theme. Criar um novo tema. - + Edit Theme Editar Tema - + Edit a theme. Editar um tema. - + Delete Theme Excluir Tema - + Delete a theme. Excluir um tema. - + Import Theme Importar Tema - + Import a theme. Importar um tema. - + Export Theme Exportar Tema - + Export a theme. Exportar um tema. - + &Edit Theme &Editar Tema - + &Delete Theme &Apagar Tema - + Set As &Global Default Definir como Padrão &Global - + %s (default) %s (padrão) - + You must select a theme to edit. Você precisa selecionar um tema para editar. - + You are unable to delete the default theme. Você não pode apagar o tema padrão. - + Theme %s is used in the %s plugin. O tema %s é usado no plugin %s. - + You have not selected a theme. Você não selecionou um tema. - + Save Theme - (%s) Salvar Tema - (%s) - + Theme Exported Tema Exportado - + Your theme has been successfully exported. Seu tema foi exportado com sucesso. - + Theme Export Failed Falha ao Exportar Tema - + Your theme could not be exported due to an error. O tema não pôde ser exportado devido a um erro. - + Select Theme Import File Selecionar Arquivo de Importação de Tema - + File is not a valid theme. O arquivo não é um tema válido. - + &Copy Theme &Copiar Tema - + &Rename Theme &Renomear Tema - + &Export Theme &Exportar Tema - + You must select a theme to rename. Você precisa selecionar um tema para renomear. - + Rename Confirmation Confirmar Renomeação - + Rename %s theme? Renomear o tema %s? - + You must select a theme to delete. Você precisa selecionar um tema para excluir. - + Delete Confirmation Confirmar Exclusão - + Delete %s theme? Apagar o tema %s? - + Validation Error Erro de Validação - + A theme with this name already exists. Já existe um tema com este nome. - + OpenLP Themes (*.theme *.otz) Temas do OpenLP (*.theme *.otz) - + Copy of %s Copy of <theme name> Cópia do %s - + Theme Already Exists Tema Já Existe - + Theme %s already exists. Do you want to replace it? - + O Tema %s já existe. Deseja substituí-lo? OpenLP.ThemeWizard - + Theme Wizard Assistente de Tema - + Welcome to the Theme Wizard Bem-vindo ao Assistente de Tema - + Set Up Background Configurar Plano de Fundo - + Set up your theme's background according to the parameters below. Configure o plano de fundo de seu tema de acordo com os parâmetros abaixo. - + Background type: Tipo de plano de fundo: - + Solid Color Cor Sólida - + Gradient Degradê - + Color: Cor: - + Gradient: Degradê: - + Horizontal Horizontal - + Vertical Vertical - + Circular Circular - + Top Left - Bottom Right Esquerda Superior - Direita Inferior - + Bottom Left - Top Right Esquerda Inferior - Direita Superior - + Main Area Font Details Detalhes da Fonte da Área Principal - + Define the font and display characteristics for the Display text Definir a fonte e características de exibição para o texto de Exibição - + Font: Fonte: - + Size: Tamanho: - + Line Spacing: Espaçamento entre linhas: - + &Outline: &Contorno: - + &Shadow: &Sombra: - + Bold Negrito - + Italic Itálico - + Footer Area Font Details Detalhes de Fonte da Área de Rodapé - + Define the font and display characteristics for the Footer text Defina a fone e as características de exibição do texto de Rodapé - + Text Formatting Details Detalhes da Formatação de Texto - + Allows additional display formatting information to be defined Permite que informações adicionais de formatações de exibição sejam definidas - + Horizontal Align: Alinhamento Horizontal: - + Left Esquerda - + Right Direita - + Center Centralizado - + Output Area Locations Posições das Áreas de Saída - + Allows you to change and move the main and footer areas. Permite modificar e mover as áreas principal e de rodapé. - + &Main Area &Área Principal - + &Use default location &Usar posição padrão - + X position: Posição X: - + px px - + Y position: Posição Y: - + Width: Largura: - + Height: Altura: - + Use default location Usar posição padrão - + Theme name: Nome do tema: - + Edit Theme - %s Editar 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. Este assistente vai ajudá-lo a criar e editar seus temas. Clique no botão avançar abaixo para iniciar o processo, configurando seu plano de fundo. - + Transitions: Transições: - + &Footer Area Área do &Rodapé - + Starting color: Cor inicial: - + Ending color: Cor final: - + Background color: Cor do Plano de Fundo: - + Justify Justificar - + Layout Preview Previsualizar a Disposição - + Transparent Transparente - + Preview and Save Visualizar e Salvar - + Preview the theme and save it. Visualizar o tema e salvar - + (approximately %d lines per slide) - + (aproximadamente %d linhas por slide) - + Background Image Empty - + Imagem de Fundo Não-especificado - + You have not selected a background image. Please select one before continuing. - + Você não selecionou uma imagem de fundo. Por favor, selecione uma antes de continuar. - + Select Image - + Selecione Imagem - + Theme Name Missing - + Falta Nome do Tema - + There is no name for this theme. Please enter one. - + Não existe um nome para este tema. Favor digitar um. - + Theme Name Invalid - + Nome do Tema Inválido - + Invalid theme name. Please enter one. - + Nome do tema inválido. Favor especificar um. OpenLP.ThemesTab - + Global Theme Tema Global - + Theme Level Nível do Tema - + S&ong Level Nível de &Música - + 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 o tema de cada música na base de dados. Se uma música não tiver um tema associado a ela, então usar o tema do culto. Se o culto não tiver um tema, então usar o tema global. - + &Service Level Nível de &Culto - + 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. Usar o tema do culto, ignorando qualquer temas das músicas individuais. Se o culto não tiver um tema, então usar o tema global. - + &Global Level Nível &Global - + Use the global theme, overriding any themes associated with either the service or the songs. Usar o tema global, ignorando qualquer tema associado ao culto ou às músicas. - + Themes Temas @@ -5180,315 +5159,315 @@ Continue saving? OpenLP.Ui - + Error Erro - + About Sobre - + &Add &Adicionar - + Advanced Avançado - + All Files Todos os Arquivos - + Bottom Rodapé - + Browse... Procurar... - + Cancel Cancelar - + CCLI number: Número CCLI: - + Create a new service. Criar uma novo culto. - + &Delete &Excluir - + &Edit &Editar - + Empty Field Campo Vazio - + Export Exportar - + pt Abbreviated font pointsize unit pt - + Image Imagem - + Import Importar - + Live Projeção - + Live Background Error Erro no Fundo da Projeção - + Load Carregar - + Middle Meio - + New Novo - + New Service Novo Culto - + New Theme Novo Tema - + No File Selected Singular Nenhum Arquivo Selecionado - + No Files Selected Plural Nenhum Arquivo Selecionado - + No Item Selected Singular Nenhum Item Selecionado - + No Items Selected Plural Nenhum Item Selecionado - + openlp.org 1.x openlp.org 1.x - + OpenLP 2.0 OpenLP 2.0 - + Preview Pré-Visualização - + Replace Background Substituir Plano de Fundo - + Reset Background Restabelecer o Plano de Fundo - + s The abbreviated unit for seconds s - + Save && Preview Salvar && Pré-Visualizar - + Search Pesquisar - + You must select an item to delete. Você precisa selecionar um item para excluir. - + You must select an item to edit. Você precisa selecionar um item para editar. - + Save Service Salvar Culto - + Service Culto - + Start %s Início %s - + Theme Singular Tema - + Themes Plural Temas - + Top Topo - + Version Versão - + Delete the selected item. Excluir o item selecionado. - + Move selection up one position. Mover a seleção para cima em uma posição. - + Move selection down one position. Mover a seleção para baixo em uma posição. - + &Vertical Align: Alinhamento &Vertical: - + Finished import. Importação concluída. - + Format: Formato: - + Importing Importando - + Importing "%s"... Importando "%s"... - + Select Import Source Selecionar Origem da Importação - + Select the import format and the location to import from. Selecione o formato e a localização para a importação. - + 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. O importador do openlp.org 1.x foi desabilitado devido à falta de um módulo Python. Se você deseja utilizar este importador, você precisará instalar o módulo "python-sqlite". - + Open %s File Abrir o Arquivo %s - + %p% %p% - + Ready. Pronto. - + Starting import... Iniciando importação... - + You need to specify at least one %s file to import from. A file type e.g. OpenSong Você precisa especificar pelo menos um arquivo %s para importar. @@ -5499,304 +5478,304 @@ Continue saving? Bem Vindo ao Assistente de Importação de Bíblias - + Welcome to the Song Export Wizard Bem Vindo ao Assistente de Exportação de Músicas - + Welcome to the Song Import Wizard Bem-vindo ao Assistente de Importação de Música - + Author Singular Autor - + Authors Plural Autores - + © Copyright symbol. © - + Song Book Singular Hinário - + Song Books Plural Hinários - + Song Maintenance Gerenciamento de Músicas - + Topic Singular Tópico - + Topics Plural Tópicos - + Continuous Contínuo - + Default Padrão - + Display style: Estilo de Exibição: - + Duplicate Error Erro de duplicidade - + File Arquivo - + Help Ajuda - + h The abbreviated unit for hours h - + Layout style: Estilo do Layout: - + Live Toolbar Barra de Ferramentas de Projeção - + m The abbreviated unit for minutes m - + OpenLP is already running. Do you wish to continue? OpenLP já está sendo executado. Deseja continuar? - + Settings Configurações - + Tools Ferramentas - + Unsupported File Arquivo Não Suportado - + Verse Per Slide Versículos por Slide - + Verse Per Line Versículos por Linha - + View Visualizar - + Title and/or verses not found Título e/ou estrófes não encontradas - + XML syntax error Erro de sintaxe XML - + View Mode Modo de Visualização - + Open service. Abrir culto. - + Print Service Imprimir Culto - + Replace live background. Trocar fundo da projeção. - + Reset live background. Reverter fundo da projeção. - + Split a slide into two only if it does not fit on the screen as one slide. Dividir um slide em dois somente se não couber na tela em um único slide. - + Welcome to the Bible Upgrade Wizard Bem-vindo ao Assistente de Atualização de Bíblias - + Confirm Delete Confirmar Exclusão - + Play Slides in Loop Exibir Slides com Repetição - + Play Slides to End Exibir Slides até o Fim - + Stop Play Slides in Loop Parar Slides com Repetição - + Stop Play Slides to End Parar Slides até o Final - + Next Track Faixa Seguinte - + Search Themes... Search bar place holder text Pesquisar temas... - + Optional &Split Divisão Opcional - + Invalid Folder Selected Singular Diretório Inválido Selecionado - + Invalid File Selected Singular Arquivo Inválido Selecionado - + Invalid Files Selected Plural Arquivos Inválidos Selecionados - + No Folder Selected Singular Nenhum Diretório Selecionado - + Open %s Folder Abrir Diretório %s - + You need to specify one %s file to import from. A file type e.g. OpenSong Você precisa especificar um arquivo %s de onde importar. - + You need to specify one %s folder to import from. A song format e.g. PowerSong Você precisa especificar um diretório %s de onde importar. - + Importing Songs - + Importando Músicas OpenLP.core.lib - + %1 and %2 Locale list separator: 2 items %1 e %2 - + %1, and %2 Locale list separator: end %1, e %2 - + %1, %2 Locale list separator: middle %1, %2 - + %1, %2 Locale list separator: start %1, %2 @@ -5805,50 +5784,50 @@ Continue saving? 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>Plugin de Apresentação</strong><br />O plugin de apresentação permite exibir apresentações utilizando vários programas diferentes. Os programas disponíveis são exibidos em uma caixa de seleção. - + Presentation name singular Apresentação - + Presentations name plural Apresentações - + Presentations container title Apresentações - + Load a new presentation. Carregar uma nova apresentação. - + Delete the selected presentation. Excluir a apresentação selecionada. - + Preview the selected presentation. Pré-visualizar a apresentação selecionada. - + Send the selected presentation live. Enviar a apresentação selecionada para a projeção. - + Add the selected presentation to the service. Adicionar a apresentação selecionada ao culto. @@ -5856,52 +5835,52 @@ Continue saving? PresentationPlugin.MediaItem - + Select Presentation(s) Selecionar Apresentação(ões) - + Automatic Automático - + Present using: Apresentar usando: - + File Exists O Arquivo já Existe - + A presentation with that filename already exists. Já existe uma apresentação com este nome. - + This type of presentation is not supported. Este tipo de apresentação não é suportado. - + Presentations (%s) Apresentações (%s) - + Missing Presentation Apresentação Não Encontrada - + The presentation %s is incomplete, please reload. A apresentação %s está incompleta, por favor recarregue. - + The presentation %s no longer exists. A apresentação %s já não existe mais. @@ -5909,17 +5888,17 @@ Continue saving? PresentationPlugin.PresentationTab - + Available Controllers Controladores Disponíveis - + %s (unavailable) %s (indisponivel) - + Allow presentation application to be overridden Permitir que o aplicativo de apresentações seja alterado @@ -5927,24 +5906,24 @@ Continue saving? 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>Plugin Remoto</strong><br />O plugin remoto permite enviar mensagens para uma versão do OpenLP em execução em um computador diferente através de um navegador de internet ou através da API remota. - + Remote name singular Remoto - + Remotes name plural Remotos - + Remote container title Remoto @@ -5953,236 +5932,246 @@ Continue saving? RemotePlugin.Mobile - + OpenLP 2.0 Remote OpenLP 2.0 Remoto - + OpenLP 2.0 Stage View OpenLP 2.0 Visão de Palco - + Service Manager Gerenciador de Culto - + Slide Controller Controlador de Slide - + Alerts Alertas - + Search Pesquisar - + Refresh Atualizar - + Blank Desativar - + Show Exibir - + Prev Ant - + Next Seg - + Text Texto - + Show Alert Mostrar Alerta - + Go Live Projetar - + No Results Nenhum Resultado - + Options Opções - + Add to Service Adicionar ao Culto - + Home Home - + Theme Tema - + Desktop Área de Trabalho - + Add &amp; Go to Service Adicionar ao Culto + + + Service + Culto + + + + Slides + Slides + RemotePlugin.RemoteTab - + Serve on IP address: Endereço IP do servidor: - + Port number: Número de porta: - + Server Settings Configurações do Servidor - + Remote URL: URL Remoto: - + Stage view URL: URL de Visualização de Palco: - + Display stage time in 12h format Exibir hora de palco no formato 12h - + Android App Aplicativo Android - + Scan the QR code or click <a href="https://play.google.com/store/apps/details?id=org.openlp.android">download</a> to install the Android app from Google Play. - + Scaneia o código de resposta rápida ou clique em <a href="https://play.google.com/store/apps/details?id=org.openlp.android">download</a> para instalar o aplicativo Android a partir do Google Play. SongUsagePlugin - + &Song Usage Tracking &Registro de Uso de Músicas - + &Delete Tracking Data &Excluir Dados de Registro - + Delete song usage data up to a specified date. Excluir registros de uso até uma data específica. - + &Extract Tracking Data &Extrair Dados de Registro - + Generate a report on song usage. Gerar um relatório sobre o uso das músicas. - + Toggle Tracking Alternar Registro - + Toggle the tracking of song usage. Alternar o registro de uso das músicas. - + <strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services. <strong>Plugin de Uso das Músicas</strong><br />Este plugin registra o uso das músicas nos cultos. - + SongUsage name singular Registro das Músicas - + SongUsage name plural UsoDaMúsica - + SongUsage container title Uso das Músicas - + Song Usage Uso das Músicas - + Song usage tracking is active. Registro de uso das Músicas está ativado. - + Song usage tracking is inactive. Registro de uso das Músicas está desativado. - + display exibir - + printed impresso @@ -6190,32 +6179,32 @@ Continue saving? SongUsagePlugin.SongUsageDeleteForm - + Delete Song Usage Data Excluir Dados de Registro das Músicas - + Delete Selected Song Usage Events? Deseja Excluir os Eventos de Uso das Músicas? - + Are you sure you want to delete selected Song Usage data? Você tem certeza de que deseja excluir os dados selecionados de Uso das Músicas? - + Deletion Successful Exclusão Bem Sucedida - + All requested data has been deleted successfully. Todos os dados solicitados foram apagados com sucesso. - + Select the date up to which the song usage data should be deleted. All data recorded before this date will be permanently deleted. Selecione uma data limite para que os dados de uso de músicas seja excluído. Todos os registros antes desta data será excluídos permanentemente. @@ -6223,42 +6212,42 @@ Continue saving? SongUsagePlugin.SongUsageDetailForm - + Song Usage Extraction Extração de Uso das Músicas - + Select Date Range Selecionar Faixa de Datas - + to até - + Report Location Localização do Relatório - + Output File Location Local do arquivo de saída - + usage_detail_%s_%s.txt detalhe_uso_%s_%s.txt - + Report Creation Criação de Relatório - + Report %s has been successfully created. @@ -6267,12 +6256,12 @@ has been successfully created. foi criado com sucesso. - + Output Path Not Selected Caminho de saída não foi selecionado - + You have not set a valid output location for your song usage report. Please select an existing path on your computer. Você precisa selecionar uma localização de sapida válida para o relatório de uso de músicas. Por favor selecione um caminho existente no seu computador. @@ -6280,112 +6269,112 @@ foi criado com sucesso. SongsPlugin - + &Song &Música - + Import songs using the import wizard. Importar músicas com o assistente de importação. - + <strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs. <strong>Plugin de Músicas</strong><br />O plugin de músicas permite exibir e gerenciar músicas. - + &Re-index Songs &Re-indexar Músicas - + Re-index the songs database to improve searching and ordering. Re-indexar o banco de dados de músicas para melhorar a busca e a ordenação. - + Reindexing songs... Reindexando músicas... - + Arabic (CP-1256) Arábico (CP-1256) - + Baltic (CP-1257) Báltico (CP-1257) - + Central European (CP-1250) Europeu Central (CP-1250) - + Cyrillic (CP-1251) Cirílico (CP-1251) - + Greek (CP-1253) Grego (CP-1253) - + Hebrew (CP-1255) Hebraico (CP-1255) - + Japanese (CP-932) Japonês (CP-932) - + Korean (CP-949) Coreano (CP-949) - + Simplified Chinese (CP-936) Chinês Simplificado (CP-936) - + Thai (CP-874) Tailandês (CP-874) - + Traditional Chinese (CP-950) Chinês Tradicional (CP-950) - + Turkish (CP-1254) Turco (CP-1254) - + Vietnam (CP-1258) Vietnamita (CP-1258) - + Western European (CP-1252) Europeu Ocidental (CP-1252) - + Character Encoding Codificação de Caracteres - + The codepage setting is responsible for the correct character representation. Usually you are fine with the preselected choice. @@ -6394,105 +6383,105 @@ pela correta representação dos caracteres. Normalmente pode usar a opção pré-selecionada. - + Please choose the character encoding. The encoding is responsible for the correct character representation. Escolha a codificação dos caracteres. A codificação é responsável pela correta representação dos caracteres. - + Song name singular Música - + Songs name plural Músicas - + Songs container title Músicas - + Exports songs using the export wizard. Exporta músicas utilizando o assistente de exportação. - + Add a new song. Adicionar uma nova música. - + Edit the selected song. Editar a música selecionada. - + Delete the selected song. Excluir a música selecionada. - + Preview the selected song. Pré-visualizar a música selecionada. - + Send the selected song live. Enviar a música selecionada para a projeção. - + Add the selected song to the service. Adicionar a música selecionada ao culto. - + Reindexing songs - + Reindexando músicas SongsPlugin.AuthorsForm - + Author Maintenance Gerenciamento de Autores - + Display name: Nome de tela: - + First name: Primeiro nome: - + Last name: Sobrenome: - + You need to type in the first name of the author. Você precisa digitar o primeiro nome do autor. - + You need to type in the last name of the author. Você precisa digitar o sobrenome do autor. - + You have not set a display name for the author, combine the first and last names? Você não definiu um nome de tela para o autor, combinar o nome e o sobrenome? @@ -6500,7 +6489,7 @@ A codificação é responsável pela correta representação dos caracteres. SongsPlugin.CCLIFileImport - + The file does not have a valid extension. O arquivo não possui uma extensão válida. @@ -6508,12 +6497,12 @@ A codificação é responsável pela correta representação dos caracteres. SongsPlugin.EasyWorshipSongImport - + Administered by %s Administrado por %s - + [above are Song Tags with notes imported from EasyWorship] @@ -6525,12 +6514,12 @@ EasyWorship] SongsPlugin.EditBibleForm - + Meta Data Metadados - + Custom Book Names Nomes de Livros Personalizados @@ -6538,202 +6527,202 @@ EasyWorship] SongsPlugin.EditSongForm - + Song Editor Editor de Músicas - + &Title: &Título: - + Alt&ernate title: Título &Alternativo: - + &Lyrics: &Letra: - + &Verse order: Ordem das &estrofes: - + Ed&it All &Editar Todos - + Title && Lyrics Título && Letra - + &Add to Song &Adicionar à Música - + &Remove &Remover - + &Manage Authors, Topics, Song Books &Gerenciar Autores, Assuntos, Hinários - + A&dd to Song A&dicionar uma Música - + R&emove R&emover - + Book: Hinário: - + Number: Número: - + Authors, Topics && Song Book Autores, Assuntos && Hinários - + New &Theme Novo &Tema - + Copyright Information Direitos Autorais - + Comments Comentários - + Theme, Copyright Info && Comments Tema, Direitos Autorais && Comentários - + Add Author Adicionar Autor - + This author does not exist, do you want to add them? Este autor não existe, deseja adicioná-lo? - + This author is already in the list. Este autor já está na lista. - + 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. Você não selecionou um autor válido. Selecione um autor da lista, ou digite um novo autor e clique em "Adicionar Autor à Música" para adicioná-lo. - + Add Topic Adicionar Assunto - + This topic does not exist, do you want to add it? Este assunto não existe, deseja adicioná-lo? - + This topic is already in the list. Este assunto já está na lista. - + 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. Você não selecionou um assunto válido. Selecione um assunto da lista ou digite um novo assunto e clique em "Adicionar Assunto à Música" para adicioná-lo. - + You need to type in a song title. Você deve digitar um título para a música. - + You need to type in at least one verse. Você deve digitar ao menos um verso. - + The verse order is invalid. There is no verse corresponding to %s. Valid entries are %s. A ordem das estrofes é inválida. Não há estrofe correspondente a %s. Valores válidos são %s. - + Add Book Adicionar Hinário - + This song book does not exist, do you want to add it? Este hinário não existe, deseja adicioná-lo? - + You need to have an author for this song. Você precisa ter um autor para esta música. - + Linked Audio Áudio Ligado - + Add &File(s) Adicionar &Arquivo(s) - + Add &Media Adicionar &Mídia - + Remove &All Excluir &Todos - + Open File(s) Abrir Arquivo(s) - + <strong>Warning:</strong> Not all of the verses are in use. <strong>Aviso:</strong> Nem todos os versos estão em uso. - + The verse order is invalid. There are no verses corresponding to %s. Valid entries are %s. A ordem dos versos está inválido. Não há versos correspondentes a %s. Entradas válidas são %s. @@ -6741,22 +6730,22 @@ EasyWorship] SongsPlugin.EditVerseForm - + Edit Verse Editar Estrofe - + &Verse type: Tipo de &Estrofe: - + &Insert &Inserir - + Split a slide into two by inserting a verse splitter. Dividir um slide em dois, inserindo um divisor de estrófes. @@ -6764,82 +6753,82 @@ EasyWorship] SongsPlugin.ExportWizardForm - + Song Export Wizard Assistente de Exportação de Músicas - + Select Songs Selecionar Músicas - + Check the songs you want to export. Marque as músicas que você deseja exportar. - + Uncheck All Desmarcar Todas - + Check All Marcar Todas - + Select Directory Selecionar Diretório - + Directory: Diretório: - + Exporting Exportando - + Please wait while your songs are exported. Por favor aguarde enquanto as suas músicas são exportadas. - + You need to add at least one Song to export. Você precisa adicionar pelo menos uma Música para exportar. - + No Save Location specified Nenhum Localização para Salvar foi especificado - + Starting export... Iniciando a exportação... - + You need to specify a directory. Você precisa especificar um diretório. - + Select Destination Folder Selecione a Pasta de Destino - + Select the directory where you want the songs to be saved. Selecionar o diretório onde deseja salvar as músicas. - + This wizard will help to export your songs to the open and free <strong>OpenLyrics</strong> worship song format. Este assistente irá ajudar na exportação de suas músicas para o formato aberto e gratuito <strong>OpenLyrics</strong>. @@ -6847,172 +6836,172 @@ EasyWorship] SongsPlugin.ImportWizardForm - + Select Document/Presentation Files Selecione Arquivos de Documentos/Apresentações - + Song Import Wizard Assistente de Importação de Música - + 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. Este assistente irá ajudá-lo a importar músicas de uma variedade de formatos. Clique no abaixo no botão Próximo para iniciar o processo, escolhendo um desses formatos. - + Generic Document/Presentation Documento/Apresentação Genérica - + Add Files... Adicionar Arquivos... - + Remove File(s) Remover Arquivos(s) - + Please wait while your songs are imported. Por favor espere enquanto as suas músicas são importadas. - + OpenLP 2.0 Databases Bancos de Dados do OpenLP 2.0 - + openlp.org v1.x Databases Bancos de Dados do openlp.org v1.x - + Words Of Worship Song Files Arquivos de Música do Words Of Worship - + Songs Of Fellowship Song Files Arquivos do Songs Of Fellowship - + SongBeamer Files Arquivos do SongBeamer - + SongShow Plus Song Files Arquivos do SongShow Plus - + Foilpresenter Song Files Arquivos do Folipresenter - + Copy Copiar - + Save to File Salvar em Arquivo - + The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. A importação Songs of Fellowship foi desabilitada porque OpenLP não consegue acessar OpenOffice ou LibreOffice. - + The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. A importação de documentos/apresentações genéricos foi desabilitada porque OpenLP não consegue acessar OpenOffice ou LibreOffice. - + OpenLyrics or OpenLP 2.0 Exported Song Música Exportada OpenLyrics ou OpenLP 2.0 - + OpenLyrics Files Arquivos OpenLyrics - + CCLI SongSelect Files Arquivos CCLI - + EasySlides XML File Arquivo XML EasySlides - + EasyWorship Song Database Músicas EasyWorship - + DreamBeam Song Files Arquivos de Música DreamBeam - + You need to specify a valid PowerSong 1.0 database folder. Você precisa especificar um diretório válido de banco de dados do 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>. Primeiro converta o seu banco de dados do ZionWorx, como explicado no <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">Manual do Usuário</a> - + SundayPlus Song Files Arquivos de Música do SundayPlus - + This importer has been disabled. Esta importação foi desabilitada. - + MediaShout Database Banco de Dados do MediaShout - + The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. A importação do MediaShout somente é suportada no Windows. Ela foi desabilitada por causa de um módulo Python inexistente. Se você deseja utilizar esta importação, você precisa instalar o módulo "pyodbc". - + SongPro Text Files Arquivos Texto do SongPro - + SongPro (Export File) SongPro (Arquivo de Exportação) - + In SongPro, export your songs using the File -> Export menu No SongPro, exporte as suas músicas utilizando o menu Arquivo -> Exportar. @@ -7020,12 +7009,12 @@ EasyWorship] SongsPlugin.MediaFilesForm - + Select Media File(s) Selecionar Arquivo(s) de Mídia - + Select one or more audio files from the list below, and click OK to import them into this song. Selecione um ou mais arquivos de áudio da lista abaixo. Clique OK para importá-los à esta música. @@ -7043,7 +7032,7 @@ EasyWorship] Letras - + CCLI License: Licença CCLI: @@ -7053,7 +7042,7 @@ EasyWorship] Música Inteira - + Are you sure you want to delete the %n selected song(s)? Tem certeza de que deseja excluir a(s) %n música(s) selecionada(s)? @@ -7066,7 +7055,7 @@ EasyWorship] Gerencia a lista de autores, tópicos e hinários. - + copy For song cloning copiar @@ -7100,7 +7089,7 @@ EasyWorship] SongsPlugin.MediaShoutImport - + Unable to open the MediaShout database. Não foi possível abrir o banco de dados do MediaShout. @@ -7108,7 +7097,7 @@ EasyWorship] SongsPlugin.OpenLP1SongImport - + Not a valid openlp.org 1.x song database. Não é uma base de dados de músicas válida do openlp.org 1.x. @@ -7116,7 +7105,7 @@ EasyWorship] SongsPlugin.OpenLPSongImport - + Not a valid OpenLP 2.0 song database. Não é uma base de dados de músicas válida do OpenLP 2.0. @@ -7124,7 +7113,7 @@ EasyWorship] SongsPlugin.OpenLyricsExport - + Exporting "%s"... Exportando "%s"... @@ -7132,55 +7121,55 @@ EasyWorship] SongsPlugin.PowerSongImport - + No songs to import. Nenhuma música para importar. - + Verses not found. Missing "PART" header. Os versículos não foram encontrados. O cabeçalho "PART" está faltando. - + No %s files found. - + Nenhum arquivo %s encontrado. - + Invalid %s file. Unexpected byte value. - + Arquivo %s inválido. Valor inesperado de byte. - + Invalid %s file. Missing "TITLE" header. - + Arquivo %s inválido. Falta cabeçalho "TITLE". - + Invalid %s file. Missing "COPYRIGHTLINE" header. - + Arquivo %s inválido. Falta cabeçalho "COPYRIGHTLINE". SongsPlugin.SongBookForm - + Song Book Maintenance Gerenciamento de Hinários - + &Name: &Nome: - + &Publisher: &Editora: - + You need to type in a name for the book. Você precisa digitar um nome para o livro. @@ -7188,12 +7177,12 @@ EasyWorship] SongsPlugin.SongExportForm - + Your song export failed. A sua exportação de músicas falhou. - + Finished export. To import these files use the <strong>OpenLyrics</strong> importer. Exportação Finalizada. Para importar estes arquivos, use o importador <strong>OpenLyrics</strong>. @@ -7201,27 +7190,27 @@ EasyWorship] SongsPlugin.SongImport - + copyright copyright - + The following songs could not be imported: As seguintes músicas não puderam ser importadas: - + Cannot access OpenOffice or LibreOffice Não foi possível acessar OpenOffice ou LibreOffice - + Unable to open file Não foi possível abrir o arquivo - + File not found Arquivo não encontrado @@ -7229,107 +7218,107 @@ EasyWorship] SongsPlugin.SongMaintenanceForm - + Could not add your author. Não foi possível adicionar seu autor. - + This author already exists. Este autor já existe. - + Could not add your topic. Não foi possível adicionar seu assunto. - + This topic already exists. Este assunto já existe. - + Could not add your book. Não foi possível adicionar seu livro. - + This book already exists. Este livro já existe. - + Could not save your changes. Não foi possível salvar suas alterações. - + Could not save your modified author, because the author already exists. Não foi possível salvar sue autor modificado, pois o autor já existe. - + Could not save your modified topic, because it already exists. O assunto modificado não pode ser salvo porque já existe. - + Delete Author Excluir Autor - + Are you sure you want to delete the selected author? Você tem certeza de que deseja excluir o autor selecionado? - + This author cannot be deleted, they are currently assigned to at least one song. Este autor não pode ser apagado, pois está associado a pelo menos uma música. - + Delete Topic Excluir Assunto - + Are you sure you want to delete the selected topic? Tem certeza de que quer apagar o assunto selecionado? - + This topic cannot be deleted, it is currently assigned to at least one song. Este assunto não pode ser apagado, pois está associado a pelo menos uma música. - + Delete Book Excluir Hinário - + Are you sure you want to delete the selected book? Tem certeza de que quer excluir o hinário selecionado? - + This book cannot be deleted, it is currently assigned to at least one song. Este hinário não pode ser excluido, pois está associado a ao menos uma música. - + The author %s already exists. Would you like to make songs with author %s use the existing author %s? O autor %s já existe. Deseja que as músicas com o autor %s usem o autor %s existente? - + The topic %s already exists. Would you like to make songs with topic %s use the existing topic %s? O assunto %s já existe. Deseja que as músicas com o assunto %s usem o assunto %s existente? - + The book %s already exists. Would you like to make songs with book %s use the existing book %s? O hinário %s já existe. Deseja que as músicas com o hinário %s usem o hinário %s existente? @@ -7337,27 +7326,27 @@ EasyWorship] SongsPlugin.SongsTab - + Songs Mode Modo de Música - + Enable search as you type Habilitar busca ao digitar - + Display verses on live tool bar Exibir versículos na barra de ferramentas de projeção - + Update service from song edit Atualizar culto após editar música - + Import missing songs from service files Importar músicas de arquivos de culto @@ -7365,17 +7354,17 @@ EasyWorship] SongsPlugin.TopicsForm - + Topic Maintenance Gerenciamento de Assuntos - + Topic name: Nome do assunto: - + You need to type in a topic name. Você precisa digitar um nome para o assunto. @@ -7383,37 +7372,37 @@ EasyWorship] SongsPlugin.VerseType - + Verse Estrofe - + Chorus Refrão - + Bridge Ponte - + Pre-Chorus Pré-Estrofe - + Intro Introdução - + Ending Final - + Other Outra @@ -7421,29 +7410,29 @@ EasyWorship] SongsPlugin.ZionWorxImport - + Error reading CSV file. Erro ao ler o arquivo CSV. - + File not valid ZionWorx CSV format. O arquivo não é um arquivo CSV válido do ZionWorx. - + Line %d: %s - + Linha %d: %s - + Decoding error: %s - + Erro de decodificação: %s - + Record %d - + Registro %d diff --git a/resources/i18n/ro.ts b/resources/i18n/ro.ts new file mode 100644 index 000000000..ad2e6309c --- /dev/null +++ b/resources/i18n/ro.ts @@ -0,0 +1,7315 @@ + + + + AlertsPlugin + + + &Alert + &Anunț + + + + Show an alert message. + Arată anunț + + + + Alert + name singular + Anunț + + + + Alerts + name plural + Anunțuri + + + + Alerts + container title + Anunțuri + + + + <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of nursery alerts on the display screen. + <strong>Extensie anunț</strong><br />Extensia Anunț comandă afișarea textelor pe ecran. + + + + AlertsPlugin.AlertForm + + + Alert Message + Textul anunțului + + + + Alert &text: + Anunț&text + + + + &New + &Nou + + + + &Save + Salveaza + + + + Displ&ay + &Afișează + + + + Display && Cl&ose + Afișează && Închide + + + + New Alert + Anunț nou + + + + You haven't specified any text for your alert. Please type in some text before clicking New. + Nu ai specificat nici un text pt. alerta ta! Scrie un text inante de a face clic pe Nou. + + + + &Parameter: + Parametru: + + + + No Parameter Found + Nu s-a gasit nici un parametru + + + + You have not entered a parameter to be replaced. +Do you want to continue anyway? + Nu ai introdus nici un parametru care să fie modificat. Vrei totuși să continui? + + + + No Placeholder Found + + + + + The alert text does not contain '<>'. +Do you want to continue anyway? + + + + + AlertsPlugin.AlertsManager + + + Alert message created and displayed. + + + + + AlertsPlugin.AlertsTab + + + Font + + + + + Font name: + + + + + Font color: + + + + + Background color: + + + + + Font size: + + + + + Alert timeout: + + + + + 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. + + + + + &Upgrade older Bibles + + + + + Upgrade the Bible databases to the latest 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. + + + + + 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. + + + + + 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". + + + + + 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. + + + + + BiblesPlugin.BibleManager + + + Scripture Reference Error + + + + + Web Bible cannot be used + + + + + 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. + + + + + 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 +Book Chapter%(range)sChapter +Book Chapter%(verse)sVerse%(range)sVerse +Book Chapter%(verse)sVerse%(range)sVerse%(list)sVerse%(range)sVerse +Book Chapter%(verse)sVerse%(range)sVerse%(list)sChapter%(verse)sVerse%(range)sVerse +Book Chapter%(verse)sVerse%(range)sChapter%(verse)sVerse + Please pay attention to the appended "s" of the wildcards and refrain from translating the words inside the names in the brackets. + + + + + 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. + + + + + 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 + + + + + Default Bible Language + + + + + Book name language in search field, +search results and on display: + + + + + Bible Language + + + + + Application Language + + + + + 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. + + + + + BiblesPlugin.BookNameForm + + + You need to select a book. + + + + + BiblesPlugin.CSVBible + + + Importing books... %s + + + + + Importing verses from %s... + Importing verses from <book name>... + + + + + Importing verses... done. + + + + + 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. + + + + + 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. + + + + + BiblesPlugin.HTTPBible + + + Registering Bible and loading books... + + + + + Registering Language... + + + + + Importing %s... + Importing <book name>... + + + + + Download Error + + + + + There was a problem downloading your verse selection. Please check your Internet connection, and if this error continues to occur please consider reporting a bug. + + + + + Parse Error + + + + + There was a problem extracting your verse selection. If this error continues to occur please consider reporting a bug. + + + + + 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 + + + + + Location: + + + + + Crosswalk + + + + + BibleGateway + + + + + Bible: + + + + + Download Options + + + + + Server: + + + + + Username: + + + + + Password: + + + + + Proxy Server (Optional) + + + + + 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 + + + + + Bibleserver + + + + + Permissions: + + + + + Bible file: + + + + + Books file: + + + + + Verses file: + + + + + openlp.org 1.x Bible Files + + + + + Registering Bible... + + + + + Registered Bible. Please note, that verses will be downloaded on +demand and thus an internet connection is required. + + + + + 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. + + + + + Language: + + + + + BiblesPlugin.LanguageForm + + + You need to choose a language. + + + + + 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. + + + + + Search Scripture Reference... + + + + + Search Text... + + + + + Are you sure you want to completely delete "%s" Bible from OpenLP? + +You will need to re-import this Bible to use it again. + + + + + BiblesPlugin.OpenSongImport + + + Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. + + + + + BiblesPlugin.Opensong + + + Importing %s %s... + Importing <book name> <chapter>... + + + + + BiblesPlugin.OsisImport + + + Detecting encoding (this may take a few minutes)... + + + + + Importing %s %s... + Importing <book name> <chapter>... + + + + + 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. + + + + + 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>. + + + + + 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 + + + + + Upgrading Bible %s of %s: "%s" +Upgrading ... + + + + + Download Error + + + + + To upgrade your Web Bibles an Internet connection is required. + + + + + Upgrading Bible %s of %s: "%s" +Upgrading %s ... + + + + + Upgrading Bible %s of %s: "%s" +Complete + + + + + , %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 + + + + + Upgrade failed. + + + + + You need to specify a backup directory for your Bibles. + + + + + Starting upgrade... + + + + + There are no Bibles that need to be upgraded. + + + + + 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. + + + + + 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. + + + + + CustomPlugin.CustomTab + + + Custom Display + + + + + Display footer + + + + + 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 + + + + + CustomPlugin.EditVerseForm + + + Edit Slide + + + + + CustomPlugin.MediaItem + + + Are you sure you want to delete the %n selected custom slide(s)? + + + + + + + + + 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 + + + + + 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. + + + + + ImagePlugin.ExceptionDialog + + + Select Attachment + + + + + 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 + + + + + The following image(s) no longer exist: %s +Do you want to add the other images anyway? + + + + + There was a problem replacing your background, the image file "%s" no longer exists. + + + + + There was no display item to amend. + + + + + ImagesPlugin.ImageTab + + + Background Color + + + + + Default Color: + + + + + Visible background for images with aspect ratio different to screen. + + + + + MediaPlugin + + + <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. + + + + + 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. + + + + + 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. + + + + + Missing Media File + + + + + The file %s no longer exists. + + + + + Videos (%s);;Audio (%s);;%s (*) + + + + + There was no display item to amend. + + + + + Unsupported File + + + + + Automatic + + + + + Use Player: + + + + + MediaPlugin.MediaTab + + + Available Media Players + + + + + %s (unavailable) + + + + + Player Order + + + + + Allow media player to be overridden + + + + + OpenLP + + + Image Files + + + + + Information + + + + + Bible format has changed. +You have to upgrade your existing Bibles. +Should OpenLP upgrade now? + + + + + OpenLP.AboutForm + + + Credits + + + + + License + + + + + 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 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. + + + + + Copyright © 2004-2012 %s +Portions copyright © 2004-2012 %s + + + + + 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. + +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 volunteering by using the button below. + + + + + Volunteer + + + + + Project Lead + %s + +Developers + %s + +Contributors + %s + +Testers + %s + +Packagers + %s + +Translators + Afrikaans (af) + %s + Czeck (cs) + %s + Danish (da) + %s + German (de) + %s + Greek (el) + %s + English, United Kingdom (en_GB) + %s + English, South Africa (en_ZA) + %s + Spanish (es) + %s + Estonian (et) + %s + French (fr) + %s + Hungarian (hu) + %s + Japanese (ja) + %s + Norwegian Bokmål (nb) + %s + Dutch (nl) + %s + Portuguese, Brazil (pt_BR) + %s + Russian (ru) + %s + Swedish (sv) + %s + +Documentation + %s + +Built With + Python: http://www.python.org/ + Qt4: http://qt.digia.com/ + PyQt4: http://www.riverbankcomputing.co.uk/software/pyqt/intro + Oxygen Icons: http://oxygen-icons.org/ + +Final Credit + "For God so loved the world that He gave + His one and only Son, so that whoever + believes in Him will not perish but inherit + eternal life." -- John 3:16 + + And last but not least, final credit goes to + God our Father, for sending His Son to die + on the cross, setting us free from sin. We + bring this software to you for free because + He has set us free. + + + + + 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. + + + + + 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 + + + + + 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 + + + + + OpenLP data directory was not found + +%s + +This data directory was previously changed from the OpenLP default location. If the new location was on removable media, that media needs to be made available. + +Click "No" to stop loading OpenLP. allowing you to fix the the problem. + +Click "Yes" to reset the data directory to the default location. + + + + + Are you sure you want to change the location of the OpenLP data directory to: + +%s + +The data directory will be changed when OpenLP is closed. + + + + + WARNING: + +The location you have selected + +%s + +appears to contain OpenLP data files. Do you wish to replace these files with the current data files? + + + + + 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. + + + + + Send E-Mail + + + + + Save to File + + + + + Please enter a description of what you were doing to cause this error +(Minimum 20 characters) + + + + + Attach File + + + + + Description characters to enter : %s + + + + + OpenLP.ExceptionForm + + + Platform: %s + + + + + + Save Crash Report + + + + + Text files (*.txt *.log *.text) + + + + + **OpenLP Bug Report** +Version: %s + +--- Details of the Exception. --- + +%s + + --- Exception Traceback --- +%s +--- System information --- +%s +--- Library Versions --- +%s + + + + + + *OpenLP Bug Report* +Version: %s + +--- Details of the Exception. --- + +%s + + --- Exception Traceback --- +%s +--- System information --- +%s +--- Library Versions --- +%s + + Please add the information that bug reports are favoured written in English. + + + + + OpenLP.FileRenameForm + + + File Rename + + + + + New File Name: + + + + + File Copy + + + + + OpenLP.FirstTimeLanguageForm + + + Select Translation + + + + + Choose the translation you'd like to use in OpenLP. + + + + + Translation: + + + + + 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... + + + + + Download complete. Click the finish button to start 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. + + + + + 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. + + + + + Setting Up And Downloading + + + + + Please wait while OpenLP is set up and your data is downloaded. + + + + + Setting Up + + + + + Click the finish button to start OpenLP. + + + + + Download complete. Click the finish button to return to OpenLP. + + + + + Click the finish button to return to 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. + + + + + + +To cancel the First Time Wizard completely (and not start OpenLP), click the Cancel button now. + + + + + OpenLP.FormattingTagDialog + + + Configure Formatting Tags + + + + + Edit Selection + + + + + Save + + + + + Description + + + + + Tag + + + + + Start HTML + + + + + End HTML + + + + + OpenLP.FormattingTagForm + + + Update Error + + + + + Tag "n" already defined. + + + + + New Tag + + + + + <HTML here> + + + + + </and here> + + + + + Tag %s already defined. + + + + + OpenLP.FormattingTags + + + Red + + + + + Black + + + + + Blue + + + + + Yellow + + + + + Green + + + + + Pink + + + + + Orange + + + + + Purple + + + + + White + + + + + Superscript + + + + + Subscript + + + + + Paragraph + + + + + Bold + + + + + Italics + + + + + Underline + + + + + Break + + + + + 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 + + + + + SongSelect username: + + + + + SongSelect password: + + + + + X + + + + + Y + + + + + Height + + + + + Width + + + + + Check for updates to 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 + + + + + OpenLP.LanguageManager + + + Language + + + + + Please restart OpenLP to use your new language setting. + + + + + OpenLP.MainDisplay + + + OpenLP Display + + + + + OpenLP.MainWindow + + + &File + + + + + &Import + + + + + &Export + + + + + &View + + + + + M&ode + + + + + &Tools + + + + + &Settings + + + + + &Language + + + + + &Help + + + + + Media Manager + + + + + Service Manager + + + + + Theme Manager + + + + + &New + &Nou + + + + &Open + + + + + Open an existing service. + + + + + &Save + Salveaza + + + + Save the current service to disk. + + + + + Save &As... + + + + + Save Service As + + + + + Save the current service under a new name. + + + + + E&xit + + + + + Quit OpenLP + + + + + &Theme + + + + + &Configure 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 + + + + + &Online Help + + + + + &Web Site + + + + + Use the system language, if available. + + + + + Set the interface language to %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/. + + + + + OpenLP Version Updated + + + + + OpenLP Main Display Blanked + + + + + The Main Display has been blanked out + + + + + Default Theme: %s + + + + + English + Please add the name of your language here + + + + + Configure &Shortcuts... + + + + + Close OpenLP + + + + + Are you sure you want to close 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. + + + + + Clear List + Clear List of recent files + + + + + Clear the list of recent files. + + + + + Configure &Formatting Tags... + + + + + Export OpenLP settings to a specified *.config file + + + + + Settings + + + + + Import OpenLP settings from a specified *.config file previously exported on this or another machine + + + + + Import settings? + + + + + Are you sure you want to import settings? + +Importing settings will make permanent changes to your current OpenLP configuration. + +Importing incorrect settings may cause erratic behaviour or OpenLP to terminate abnormally. + + + + + Open File + + + + + OpenLP Export Settings Files (*.conf) + + + + + Import settings + + + + + 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 + + + + + The file you selected does appear to be a valid OpenLP settings file. + +Section [%s] is not valid + +Processing has terminated and no changed have been made. + + + + + Copying OpenLP data to new data directory location - %s - Please wait for copy to finish + + + + + OpenLP Data directory copy failed + +%s + + + + + 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 + + + + + OpenLP cannot load your database. + +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. + + + + + You must select one or more items to add. + + + + + No Search Results + + + + + Invalid File Type + + + + + Invalid File %s. +Suffix not supported + + + + + &Clone + + + + + Duplicate files were found on import and were ignored. + + + + + OpenLP.OpenLyricsImportError + + + <lyrics> tag is missing. + + + + + <verse> tag is missing. + + + + + OpenLP.PluginForm + + + Plugin List + + + + + Plugin Details + + + + + Status: + + + + + Active + + + + + Inactive + + + + + %s (Inactive) + + + + + %s (Active) + + + + + %s (Disabled) + + + + + OpenLP.PrintServiceDialog + + + Fit Page + + + + + Fit Width + + + + + OpenLP.PrintServiceForm + + + Options + + + + + Copy + + + + + Copy as 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: + + + + + OpenLP.ScreenList + + + Screen + + + + + primary + + + + + OpenLP.ServiceItem + + + <strong>Start</strong>: %s + + + + + <strong>Length</strong>: %s + + + + + OpenLP.ServiceItemEditForm + + + Reorder Service Item + + + + + OpenLP.ServiceManager + + + Move to &top + + + + + Move item to the top of the service. + + + + + Move &up + + + + + Move item up one position in the service. + + + + + Move &down + + + + + Move item down one position in the service. + + + + + Move to &bottom + + + + + Move item to the end of the service. + + + + + &Delete From Service + + + + + Delete the selected item from the service. + + + + + &Add New Item + + + + + &Add to Selected Item + + + + + &Edit Item + + + + + &Reorder Item + + + + + &Notes + + + + + &Change Item Theme + + + + + OpenLP Service Files (*.osz) + + + + + File is not a valid service. +The content encoding is not UTF-8. + + + + + File is not a valid service. + + + + + Missing Display Handler + + + + + Your item cannot be displayed as there is no handler to display it + + + + + Your item cannot be displayed as the plugin required to display it is missing or inactive + + + + + &Expand all + + + + + Expand all the service items. + + + + + &Collapse all + + + + + Collapse all the service items. + + + + + Open File + + + + + Moves the selection down the window. + + + + + Move up + + + + + Moves the selection up the window. + + + + + Go Live + + + + + Send the selected item to Live. + + + + + &Start Time + + + + + Show &Preview + + + + + 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. + + + + + Slide theme + + + + + Notes + + + + + Edit + + + + + Service copy only + + + + + Error Saving File + + + + + There was an error saving your file. + + + + + Service File(s) Missing + + + + + The following file(s) in the service are missing: +%s + +These files will be removed if you continue to save. + + + + + OpenLP.ServiceNoteForm + + + Service Item Notes + + + + + OpenLP.SettingsForm + + + Configure OpenLP + + + + + OpenLP.ShortcutListDialog + + + Action + + + + + Shortcut + + + + + Duplicate Shortcut + + + + + The shortcut "%s" is already assigned to another action, please use a different shortcut. + + + + + 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 + + + + + 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. + + + + + 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 + + + + + OpenLP.SpellTextEdit + + + Spelling Suggestions + + + + + Formatting Tags + + + + + Language: + + + + + 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. + + + + + 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) + + + + + You must select a theme to edit. + + + + + You are unable to delete the default theme. + + + + + Theme %s is used in the %s plugin. + + + + + You have not selected a theme. + + + + + Save Theme - (%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? + + + + + You must select a theme to delete. + + + + + Delete Confirmation + + + + + Delete %s theme? + + + + + Validation Error + + + + + A theme with this name already exists. + + + + + OpenLP Themes (*.theme *.otz) + + + + + Copy of %s + Copy of <theme name> + + + + + Theme Already Exists + + + + + Theme %s already exists. Do you want to replace it? + + + + + OpenLP.ThemeWizard + + + Theme Wizard + + + + + Welcome to the Theme Wizard + + + + + Set Up Background + + + + + Set up your theme's background according to the parameters below. + + + + + Background type: + + + + + Solid Color + + + + + Gradient + + + + + Color: + + + + + Gradient: + + + + + Horizontal + + + + + Vertical + + + + + Circular + + + + + Top Left - Bottom Right + + + + + Bottom Left - Top Right + + + + + Main Area Font Details + + + + + Define the font and display characteristics for the Display text + + + + + Font: + + + + + Size: + + + + + Line Spacing: + + + + + &Outline: + + + + + &Shadow: + + + + + Bold + + + + + Italic + + + + + Footer Area Font Details + + + + + Define the font and display characteristics for the Footer text + + + + + Text Formatting Details + + + + + Allows additional display formatting information to be defined + + + + + Horizontal Align: + + + + + Left + + + + + Right + + + + + Center + + + + + Output Area Locations + + + + + Allows you to change and move the main and footer areas. + + + + + &Main Area + + + + + &Use default location + + + + + X position: + + + + + px + + + + + Y position: + + + + + Width: + + + + + Height: + + + + + Use default location + + + + + Theme name: + + + + + Edit Theme - %s + + + + + This wizard will help you to create and edit your themes. Click the next button below to start the process by setting up your background. + + + + + Transitions: + + + + + &Footer Area + + + + + Starting color: + + + + + Ending color: + + + + + Background color: + + + + + Justify + + + + + Layout Preview + + + + + Transparent + + + + + Preview and Save + + + + + Preview the theme and save it. + + + + + (approximately %d lines per slide) + + + + + Background Image Empty + + + + + You have not selected a background image. Please select one before continuing. + + + + + Select Image + + + + + Theme Name Missing + + + + + There is no name for this theme. Please enter one. + + + + + Theme Name Invalid + + + + + Invalid theme name. Please enter one. + + + + + 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 + + + + + OpenLP.Ui + + + Error + + + + + About + + + + + &Add + + + + + Advanced + + + + + All Files + + + + + Bottom + + + + + Browse... + + + + + Cancel + + + + + CCLI number: + + + + + Create a new service. + + + + + &Delete + + + + + &Edit + + + + + Empty Field + + + + + Export + + + + + pt + Abbreviated font pointsize unit + + + + + 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 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 + + + + + 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"... + + + + + 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. + + + + + Open %s File + + + + + %p% + + + + + Ready. + + + + + Starting 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 + + + + + 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? + + + + + Settings + + + + + Tools + + + + + Unsupported File + + + + + Verse Per Slide + + + + + Verse Per Line + + + + + View + + + + + Title and/or verses not found + + + + + XML syntax error + + + + + 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 + + + + + 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 + + + + + Importing Songs + + + + + 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 + + + + + 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 + + + + + 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. + + + + + PresentationPlugin.MediaItem + + + Select Presentation(s) + + + + + Automatic + + + + + Present using: + + + + + File Exists + + + + + A presentation with that filename already exists. + + + + + This type of presentation is not supported. + + + + + Presentations (%s) + + + + + Missing Presentation + + + + + The presentation %s is incomplete, please reload. + + + + + The presentation %s no longer exists. + + + + + PresentationPlugin.PresentationTab + + + Available Controllers + + + + + %s (unavailable) + + + + + Allow presentation application to be overridden + + + + + 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 + + + + + Remotes + name plural + + + + + Remote + container title + + + + + RemotePlugin.Mobile + + + OpenLP 2.0 Remote + + + + + OpenLP 2.0 Stage View + + + + + Service Manager + + + + + Slide Controller + + + + + Alerts + Anunțuri + + + + Search + + + + + Refresh + + + + + Blank + + + + + Show + + + + + Prev + + + + + Next + + + + + Text + + + + + Show Alert + + + + + Go Live + + + + + No Results + + + + + Options + + + + + Add to Service + + + + + Home + + + + + Theme + + + + + Desktop + + + + + Add &amp; Go to Service + + + + + Service + + + + + Slides + + + + + RemotePlugin.RemoteTab + + + Serve on IP address: + + + + + Port number: + + + + + Server Settings + + + + + Remote URL: + + + + + Stage view URL: + + + + + Display stage time in 12h format + + + + + Android App + + + + + Scan the QR code or click <a href="https://play.google.com/store/apps/details?id=org.openlp.android">download</a> to install the Android app from Google Play. + + + + + 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. + + + + + SongUsage + name singular + + + + + SongUsage + name plural + + + + + SongUsage + container title + + + + + Song Usage + + + + + Song usage tracking is active. + + + + + Song usage tracking is inactive. + + + + + display + + + + + printed + + + + + 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. + + + + + SongUsagePlugin.SongUsageDetailForm + + + Song Usage Extraction + + + + + Select Date Range + + + + + to + + + + + Report Location + + + + + Output File Location + + + + + usage_detail_%s_%s.txt + + + + + Report Creation + + + + + Report +%s +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. + + + + + SongsPlugin + + + &Song + + + + + Import songs using the import wizard. + + + + + <strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs. + + + + + &Re-index Songs + + + + + Re-index the songs database to improve searching and ordering. + + + + + Reindexing songs... + + + + + Arabic (CP-1256) + + + + + Baltic (CP-1257) + + + + + Central European (CP-1250) + + + + + Cyrillic (CP-1251) + + + + + Greek (CP-1253) + + + + + Hebrew (CP-1255) + + + + + Japanese (CP-932) + + + + + Korean (CP-949) + + + + + Simplified Chinese (CP-936) + + + + + Thai (CP-874) + + + + + Traditional Chinese (CP-950) + + + + + Turkish (CP-1254) + + + + + Vietnam (CP-1258) + + + + + Western European (CP-1252) + + + + + Character Encoding + + + + + 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 + + + + + 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. + + + + + Reindexing songs + + + + + 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? + + + + + SongsPlugin.CCLIFileImport + + + The file does not have a valid extension. + + + + + SongsPlugin.EasyWorshipSongImport + + + Administered by %s + + + + + +[above are Song Tags with notes imported from + EasyWorship] + + + + + SongsPlugin.EditBibleForm + + + Meta Data + + + + + Custom Book Names + + + + + 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. + + + + + Add Book + + + + + This song book does not exist, do you want to add it? + + + + + You need to have an author for this song. + + + + + Linked Audio + + + + + Add &File(s) + + + + + Add &Media + + + + + Remove &All + + + + + Open File(s) + + + + + <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. + + + + + SongsPlugin.EditVerseForm + + + Edit Verse + + + + + &Verse type: + + + + + &Insert + + + + + Split a slide into two by inserting a verse splitter. + + + + + 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. + + + + + 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.org v1.x Databases + + + + + Words Of Worship Song Files + + + + + Songs Of Fellowship Song Files + + + + + SongBeamer Files + + + + + SongShow Plus Song Files + + + + + Foilpresenter Song Files + + + + + Copy + + + + + Save to File + + + + + The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. + + + + + The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. + + + + + OpenLyrics or OpenLP 2.0 Exported Song + + + + + OpenLyrics Files + + + + + 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 + + + + + This importer has been disabled. + + + + + MediaShout Database + + + + + The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. + + + + + SongPro Text Files + + + + + SongPro (Export File) + + + + + In SongPro, export your songs using the File -> Export menu + + + + + 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. + + + + + SongsPlugin.MediaItem + + + Titles + + + + + Lyrics + + + + + CCLI License: + + + + + Entire Song + + + + + Are you sure you want to delete the %n selected song(s)? + + + + + + + + + Maintain the lists of authors, topics and books. + + + + + copy + For song cloning + + + + + Search Titles... + + + + + Search Entire Song... + + + + + Search Lyrics... + + + + + Search Authors... + + + + + Search Song Books... + + + + + SongsPlugin.MediaShoutImport + + + Unable to open the MediaShout database. + + + + + SongsPlugin.OpenLP1SongImport + + + Not a valid openlp.org 1.x song database. + + + + + SongsPlugin.OpenLPSongImport + + + Not a valid OpenLP 2.0 song database. + + + + + SongsPlugin.OpenLyricsExport + + + Exporting "%s"... + + + + + SongsPlugin.PowerSongImport + + + No songs to import. + + + + + Verses not found. Missing "PART" header. + + + + + No %s files found. + + + + + Invalid %s file. Unexpected byte value. + + + + + Invalid %s file. Missing "TITLE" header. + + + + + Invalid %s file. Missing "COPYRIGHTLINE" header. + + + + + SongsPlugin.SongBookForm + + + Song Book Maintenance + + + + + &Name: + + + + + &Publisher: + + + + + You need to type in a name for the book. + + + + + SongsPlugin.SongExportForm + + + Your song export failed. + + + + + Finished export. To import these files use the <strong>OpenLyrics</strong> importer. + + + + + SongsPlugin.SongImport + + + copyright + + + + + The following songs could not be imported: + + + + + Cannot access OpenOffice or LibreOffice + + + + + Unable to open file + + + + + File not found + + + + + 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? + + + + + 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? + + + + + 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 + + + + + SongsPlugin.TopicsForm + + + Topic Maintenance + + + + + Topic name: + + + + + You need to type in a topic name. + + + + + SongsPlugin.VerseType + + + Verse + + + + + Chorus + + + + + Bridge + + + + + Pre-Chorus + + + + + Intro + + + + + Ending + + + + + Other + + + + + SongsPlugin.ZionWorxImport + + + Error reading CSV file. + + + + + File not valid ZionWorx CSV format. + + + + + Line %d: %s + + + + + Decoding error: %s + + + + + Record %d + + + + diff --git a/resources/i18n/ru.ts b/resources/i18n/ru.ts index a7b551c21..d11578913 100644 --- a/resources/i18n/ru.ts +++ b/resources/i18n/ru.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,68 +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? - + Следующих изображений больше не существуют: %s +Добавить остальные изображения? - + No Placeholder Found - + Заполнитель не найден - + The alert text does not contain '<>'. Do you want to continue anyway? Текст оповещения не содержит '<>'. @@ -118,32 +119,32 @@ Do you want to continue anyway? AlertsPlugin.AlertsTab - + Font Шрифт - + Font name: Шрифт: - + Font color: Цвет: - + Background color: Цвет фона: - + Font size: Размер: - + Alert timeout: Таймаут оповещения: @@ -151,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 - + 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. @@ -663,44 +664,44 @@ 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. - Вам необходимо указать авторские права Библии. Переводы Библии находящиеся в свободном доступе должны быть помечены как таковые. + Вам необходимо указать авторские права Библии. Переводы Библии находящиеся в свободном доступе должны быть помечены как таковые. - + 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". - + 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. @@ -708,39 +709,39 @@ be followed by one or more non-numeric characters. BiblesPlugin.BibleManager - + Scripture Reference Error Ошибка ссылки на Писание - + Web Bible cannot be used Веб-Библия не может быть использована - + 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. Вы не указали ключевое слово для поиска. Вы можете разделить разичные ключевые слова пробелами чтобы осуществить поиск по фразе, а также можете использовать запятые, чтобы искать по каждому из указанных ключевых слов. - + 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 @@ -756,128 +757,128 @@ Book Chapter%(verse)sVerse%(range)sChapter%(verse)sVerse BiblesPlugin.BiblesTab - + Verse Display Отображение стихов - + Only show new chapter numbers Показывать только номера новых глав - + Bible theme: Тема для отображения Библии - + No Brackets Без скобок - + ( And ) ( XXX ) - + { And } { XXX } - + [ And ] [ XXX ] - + 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. - + 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 Русский - + Default Bible Language - + Book name language in search field, search results and on display: - + Bible Language - + Application Language @@ -885,42 +886,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. @@ -928,7 +929,7 @@ search results and on display: BiblesPlugin.BookNameForm - + You need to select a book. Вы должны выбрать книгу. @@ -936,18 +937,18 @@ search results and on display: BiblesPlugin.CSVBible - + Importing books... %s - + Импорт книг... %s - + Importing verses from %s... Importing verses from <book name>... - + Importing verses... done. @@ -955,68 +956,68 @@ 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. - + 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. @@ -1024,38 +1025,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. Возникла проблема при загрузке секции стихов. Пожалуйста, проверьте параметры Интернет соединения, и случае если ошибка происходит при нормальном Интернет соединении, сообщите о ней на сайте разработчика в разделе Ошибки. - + Parse Error Ошибка обработки - + There was a problem extracting your verse selection. If this error continues to occur please consider reporting a bug. @@ -1233,17 +1234,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: Язык: @@ -1251,7 +1252,7 @@ demand and thus an internet connection is required. BiblesPlugin.LanguageForm - + You need to choose a language. Вы должны выбрать язык. @@ -1259,92 +1260,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 completely delete "%s" Bible from OpenLP? You will need to re-import this Bible to use it again. @@ -1354,7 +1355,7 @@ You will need to re-import this Bible to use it again. BiblesPlugin.OpenSongImport - + Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. @@ -1362,7 +1363,7 @@ You will need to re-import this Bible to use it again. BiblesPlugin.Opensong - + Importing %s %s... Importing <book name> <chapter>... Импортирую %s %s... @@ -1371,12 +1372,12 @@ You will need to re-import this Bible to use it again. BiblesPlugin.OsisImport - + Detecting encoding (this may take a few minutes)... Определение кодировки (это может занять несколько минут)... - + Importing %s %s... Importing <book name> <chapter>... Импортирую %s %s... @@ -1385,149 +1386,149 @@ You will need to re-import this Bible to use it again. 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">Frequently Asked Questions</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. Для выполнения обновления сетевых Библий необходимо наличие интернет соединения. - + 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 Пожалуйста, помните, что стихи сетевых Библий загружаются по требованию, поэтому необходимо наличие интернет соединения. - + 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. Нет Библий, которым необходимо обновление. @@ -1535,65 +1536,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. Добавить выбранный специальный слайд к порядку служения. @@ -1601,12 +1602,12 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I CustomPlugin.CustomTab - + Custom Display Отображение - + Display footer @@ -1614,62 +1615,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 Вставить слайд @@ -1677,7 +1678,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I CustomPlugin.EditVerseForm - + Edit Slide @@ -1685,7 +1686,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)? @@ -1697,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 />Одной из отличительных возможностей этого плагина является возможность группировать выбранные изображение в менеджере служения, что делает работу с большим количеством изображений более легкой. Этот плагин также позволяет использовать возможности "временной петли" OpenLP, чтобы создавать слайд-шоу, которые выполняются автоматически. В дополнение к этому, изображения из плагина могут быть использованы, чтобы заменить текущий фон, что позволяет отображать текстовые элементы, такие как песни, с выбранным изображением в качестве фона, вместо фона, который указан в теме. - + 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. Добавить выбранное изображение к служению. @@ -1758,7 +1759,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I ImagePlugin.ExceptionDialog - + Select Attachment Выбрать Вложение @@ -1766,44 +1767,44 @@ 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 Добавить остальные изображения? - + There was a problem replacing your background, the image file "%s" no longer exists. Возникла проблема при замене Фона проектора, файл "%s" больше не существует. - + There was no display item to amend. Отсутствует объект для изменений. @@ -1811,78 +1812,78 @@ 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. - + Видимый фон для изображений с соотношением сторон отличаемым от экрана. 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. Добавить выбранный объект к порядку служения. @@ -1890,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 (*) Videos (%s);;Audio (%s);;%s (*) - + There was no display item to amend. Отсутствует объект для изменений. - + Unsupported File - + Файл не поддерживается - + Automatic - + Use Player: @@ -1948,22 +1949,22 @@ Do you want to add the other images anyway? MediaPlugin.MediaTab - + Available Media Players - + %s (unavailable) - + Player Order - + Allow media player to be overridden @@ -1971,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? @@ -1993,32 +1994,54 @@ Should OpenLP upgrade now? OpenLP.AboutForm - + Credits Разрешения - + License Лицензия - + 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. Эта программа распространяется в надежде, что она будет полезна, но БЕЗ КАКИХ-ЛИБО ГАРАНТИЙ; даже без подразумеваемой гарантии ТОВАРНОЙ ПРИГОДНОСТИ или ПРИГОДНОСТИ ДЛЯ ОСОБЫХ НУЖД. Детали смотрите ниже. - + + Copyright © 2004-2012 %s +Portions copyright © 2004-2012 %s + + + + + 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. + +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 volunteering by using the button below. + + + + + Volunteer + + + + Project Lead %s @@ -2037,12 +2060,20 @@ Packagers Translators Afrikaans (af) %s + Czeck (cs) + %s + Danish (da) + %s German (de) %s + Greek (el) + %s English, United Kingdom (en_GB) %s English, South Africa (en_ZA) %s + Spanish (es) + %s Estonian (et) %s French (fr) @@ -2059,13 +2090,15 @@ Translators %s Russian (ru) %s + Swedish (sv) + %s Documentation %s Built With Python: http://www.python.org/ - Qt4: http://qt.nokia.com/ + Qt4: http://qt.digia.com/ PyQt4: http://www.riverbankcomputing.co.uk/software/pyqt/intro Oxygen Icons: http://oxygen-icons.org/ @@ -2080,267 +2113,185 @@ Final Credit on the cross, setting us free from sin. We bring this software to you for free because He has set us free. - Руководитель проекта -%s - -Разработчики -%s - -Спонсоры -%s - -Тестировщики -%s - -Файлы инсталяции -%s - -Переводчики -Afrikaans (af) -%s -German (de) -%s -English, United Kingdom (en_GB) -%s -English, South Africa (en_ZA) -%s -Estonian (et) -%s -French (fr) -%s -Hungarian (hu) -%s -Japanese (ja) -%s -Norwegian Bokmål (nb) -%s -Dutch (nl) -%s -Portuguese, Brazil (pt_BR) -%s -Русский (ru) -%s - -Документация -%s - -Продукт создан с использованием -Python: http://www.python.org/ -Qt4: http://qt.nokia.com/ -PyQt4: http://www.riverbankcomputing.co.uk/software/pyqt/intro -Oxygen Icons: http://oxygen-icons.org/ - -Заключительные признательности -"Ибо так возлюбил Бог мир, что отдал -Сына Своего Единородного, дабы всякий -верующий в Него, не погиб, но имел -жизнь вечную.." -- Ин 3:16 - -И последняя, но не менее важная признательность -Богу Отцу, который послал Своего Сына на смерть -на кресте, чтобы освободить нас от греха. Мы -даем эту программу без платы потому, что -Он освободил нас, не требуя платы. - - - - Copyright © 2004-2012 %s -Portions copyright © 2004-2012 %s - - - - - 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. - -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 volunteering by using the button below. - - - - - Volunteer 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. - + 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 @@ -2350,94 +2301,94 @@ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for - + 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. - + 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 - + OpenLP data directory was not found %s @@ -2450,7 +2401,7 @@ Click "Yes" to reset the data directory to the default location. - + Are you sure you want to change the location of the OpenLP data directory to: %s @@ -2459,7 +2410,7 @@ The data directory will be changed when OpenLP is closed. - + WARNING: The location you have selected @@ -2473,39 +2424,39 @@ appears to contain OpenLP data files. Do you wish to replace these files with t 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 столкнулся с ошибкой и не смог обработать ее. Текст ниже содержит информацию, которая может быть полезна разработчикам продукта, поэтому, пожалуйста, отправьте ее на 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 @@ -2513,24 +2464,24 @@ appears to contain OpenLP data files. Do you wish to replace these files with t OpenLP.ExceptionForm - + Platform: %s Платформа: %s - + Save Crash Report Сохранить отчет об ошибке - + Text files (*.txt *.log *.text) Текстовый файл (*.txt *.log *.text) - + **OpenLP Bug Report** Version: %s @@ -2561,7 +2512,7 @@ Version: %s - + *OpenLP Bug Report* Version: %s @@ -2596,17 +2547,17 @@ Version: %s OpenLP.FileRenameForm - + File Rename Имя файла - + New File Name: Имя нового файла: - + File Copy @@ -2614,17 +2565,17 @@ Version: %s OpenLP.FirstTimeLanguageForm - + Select Translation Выбор перевода - + Choose the translation you'd like to use in OpenLP. Укажите перевод, который вы хотели бы использовать в OpenLP. - + Translation: Перевод: @@ -2632,199 +2583,199 @@ 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. - + To cancel the First Time Wizard completely (and not start OpenLP), click the Cancel button now. @@ -2834,37 +2785,37 @@ 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 HTML - + End HTML @@ -2872,32 +2823,32 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can OpenLP.FormattingTagForm - + Update Error - + Tag "n" already defined. - + New Tag - + <HTML here> <HTML здесь> - + </and here> - + Tag %s already defined. @@ -2905,82 +2856,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 @@ -2988,122 +2939,122 @@ 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 Х - + 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 @@ -3113,12 +3064,12 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can - + Override display position: - + Repeat track list @@ -3146,12 +3097,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 чтобы использовать новые языковые настройки. @@ -3159,7 +3110,7 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can OpenLP.MainDisplay - + OpenLP Display Дисплей OpenLP @@ -3167,287 +3118,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 Preview Panel - + Toggle the visibility of the preview panel. Toggle the visibility of the preview 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 &Список плагинов - + List the Plugins Выводит список плагинов - + &User Guide &Руководство пользователя - + &About &О программе - + More information about OpenLP Больше информации про OpenLP - + &Online Help &Помощь онлайн - + &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/. @@ -3456,108 +3407,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 - + 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. @@ -3566,43 +3517,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 - + Settings - Настройки + Настройки - + Import OpenLP settings from a specified *.config file previously exported on this or another machine - + Import settings? - + Are you sure you want to import settings? Importing settings will make permanent changes to your current OpenLP configuration. @@ -3611,42 +3562,42 @@ Importing incorrect settings may cause erratic behaviour or OpenLP to terminate - + Open File Открыть файл - + OpenLP Export Settings Files (*.conf) - + Import settings - + 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 - + The file you selected does appear to be a valid OpenLP settings file. Section [%s] is not valid @@ -3655,12 +3606,12 @@ Processing has terminated and no changed have been made. - + Copying OpenLP data to new data directory location - %s - Please wait for copy to finish - + OpenLP Data directory copy failed %s @@ -3670,19 +3621,19 @@ Processing has terminated and no changed have been made. 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 - + OpenLP cannot load your database. Database: %s @@ -3692,62 +3643,62 @@ 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 Результаты поиска отсутствуют - + Invalid File Type Неправильный тип файла - + Invalid File %s. Suffix not supported Неправильный файл %s. @@ -3759,7 +3710,7 @@ Suffix not supported &Клонировать - + Duplicate files were found on import and were ignored. @@ -3767,55 +3718,55 @@ Suffix not supported OpenLP.OpenLyricsImportError - + <lyrics> tag is missing. - + <verse> tag is missing. - + <verse> тег отсутствует. OpenLP.PluginForm - + Plugin List Список плагинов - + Plugin Details Описание плагина - + Status: Статус: - + Active Активирован - + Inactive Деактивирован - + %s (Inactive) %s (Деактивирован) - + %s (Active) %s (Активирован) - + %s (Disabled) %s (Запрещен) @@ -3823,12 +3774,12 @@ Suffix not supported OpenLP.PrintServiceDialog - + Fit Page Вписать в страницу - + Fit Width @@ -3836,77 +3787,77 @@ Suffix not supported OpenLP.PrintServiceForm - + Options Опции - + Copy Копировать - + Copy as HTML Копировать как HTML - + Zoom In Увеличить - + Zoom Out Уменьшить - + Zoom Original 1:1 - + 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: Специальный текст подписи: @@ -3914,12 +3865,12 @@ Suffix not supported OpenLP.ScreenList - + Screen Экран - + primary основной @@ -3927,12 +3878,12 @@ Suffix not supported OpenLP.ServiceItem - + <strong>Start</strong>: %s <strong>Начать</strong>: %s - + <strong>Length</strong>: %s <strong>Длина</strong>: %s @@ -3940,7 +3891,7 @@ Suffix not supported OpenLP.ServiceItemEditForm - + Reorder Service Item Изменить порядок служения @@ -3948,296 +3899,295 @@ 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. - - File missing from service + + Service File(s) Missing + + + + + The following file(s) in the service are missing: +%s - %s - -Continue saving? +These files will be removed if you continue to save. OpenLP.ServiceNoteForm - + Service Item Notes Заметки к элементам служения @@ -4245,7 +4195,7 @@ Continue saving? OpenLP.SettingsForm - + Configure OpenLP Настроить OpenLP @@ -4253,67 +4203,67 @@ Continue saving? 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 Настроить быстрые клавиши @@ -4321,190 +4271,190 @@ Continue saving? 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. - + Позиция видео - + 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 - + Треки OpenLP.SpellTextEdit - + Spelling Suggestions Правописание - + Formatting Tags Теги форматирования - + Language: Язык: @@ -4512,67 +4462,67 @@ Continue saving? 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. @@ -4580,198 +4530,198 @@ Continue saving? 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. Вы должны выбрать тему для редактирования. - + You are unable to delete the default theme. Вы не можете удалить тему назначенную по умолчанию. - + Theme %s is used in the %s plugin. Тема %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? - + Validation Error Ошибка Проверки - + A theme with this name already exists. Тема с подобным именем уже существует. - + OpenLP Themes (*.theme *.otz) - + Copy of %s Copy of <theme name> Копия %s - + Theme Already Exists - + Theme %s already exists. Do you want to replace it? @@ -4779,312 +4729,312 @@ Continue saving? OpenLP.ThemeWizard - + Theme Wizard Мастер Тем - + Welcome to the Theme Wizard Добро пожаловать в Мастер Тем - + Set Up Background Выбор фона - + Set up your theme's background according to the parameters below. Установите фон темы в соответствии с параметрами. - + Background type: Тип фона: - + Solid Color Сплошная заливка - + Gradient Градиент - + Color: Цвет: - + Gradient: Градиент: - + Horizontal Горизонтальный - + Vertical Вертикальный - + Circular Круговой - + Top Left - Bottom Right Верх слева - низ справа - + Bottom Left - Top Right Низ слева - верх справа - + Main Area Font Details Шрифт основной области - + Define the font and display characteristics for the Display text Определите шрифт и характеристики дисплея - + Font: Шрифт: - + Size: Размер: - + Line Spacing: Интервал: - + &Outline: &Контур: - + &Shadow: &Тень: - + Bold - + Italic Курсив - + Footer Area Font Details Настройки шрифта подписи - + Define the font and display characteristics for the Footer text Определите шрифт для подписи - + Text Formatting Details Настройки форматирования текста - + Allows additional display formatting information to be defined Разрешить дополнительные настройки форматирования - + Horizontal Align: Горизонтальная привязка: - + Left Слева - + Right Справа - + Center По центру - + Output Area Locations Расположение области вывода - + Allows you to change and move the main and footer areas. Разрешить изменять и перемещать основную область и область вывода. - + &Main Area &Основная область - + &Use default location &Использовать положение по умолчанию - + X position: Позиция Х: - + px px - + Y position: Позиция Y: - + Width: Ширина: - + Height: Высота: - + Use default location Использовать расположение по умолчанию - + 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. - + (approximately %d lines per slide) - + Background Image Empty - + You have not selected a background image. Please select one before continuing. - + Вы не выбрали фоновое изображение. Пожалуйста, выберете прежде чем продолжить. - + Select Image - + Theme Name Missing - + There is no name for this theme. Please enter one. - + Theme Name Invalid - + Invalid theme name. Please enter one. @@ -5092,47 +5042,47 @@ Continue saving? 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 Темы @@ -5140,315 +5090,315 @@ Continue saving? 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 пт - + 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 был запрещен из-за отсутствующего модуля Питона. Если вы хотите испольовать этот модуль, вы должны установить модуль "python-sqlite". - + 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 файл для импорта из него. @@ -5459,278 +5409,278 @@ Continue saving? Добро пожаловать в Мастер импорта Библий - + 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 - + 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 - + Importing Songs @@ -5738,25 +5688,25 @@ Continue saving? 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 @@ -5765,50 +5715,50 @@ Continue saving? 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 - + 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. @@ -5816,52 +5766,52 @@ Continue saving? PresentationPlugin.MediaItem - + Select Presentation(s) - + Automatic - + Present using: - + File Exists - + A presentation with that filename already exists. - + This type of presentation is not supported. - + Presentations (%s) - + Missing Presentation - + The presentation %s is incomplete, please reload. - + The presentation %s no longer exists. @@ -5869,17 +5819,17 @@ Continue saving? PresentationPlugin.PresentationTab - + Available Controllers - + %s (unavailable) - + Allow presentation application to be overridden @@ -5887,24 +5837,24 @@ Continue saving? 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 - + Remotes name plural - + Remote container title @@ -5913,150 +5863,160 @@ Continue saving? RemotePlugin.Mobile - + OpenLP 2.0 Remote - + OpenLP 2.0 Stage View - + 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 &amp; Go to Service + + + Service + Служение + + + + Slides + + RemotePlugin.RemoteTab - + Serve on IP address: - + Port number: - + Server Settings - + Настройки сервера - + Remote URL: - + Stage view URL: - + Display stage time in 12h format - + Android App - + Scan the QR code or click <a href="https://play.google.com/store/apps/details?id=org.openlp.android">download</a> to install the Android app from Google Play. @@ -6064,85 +6024,85 @@ Continue saving? 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 @@ -6150,32 +6110,32 @@ Continue saving? 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. @@ -6183,54 +6143,54 @@ Continue saving? SongUsagePlugin.SongUsageDetailForm - + Song Usage Extraction - + Select Date Range - + to - + Report Location - + Output File Location - + usage_detail_%s_%s.txt - + Report Creation - + Report %s 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. @@ -6238,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) 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 Кодировка символов - + The codepage setting is responsible for the correct character representation. Usually you are fine with the preselected choice. @@ -6353,67 +6313,67 @@ 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. - + Reindexing songs @@ -6421,37 +6381,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? Вы не указали отображаемое имя автора. Использовать комбинацию имени и фамилии? @@ -6459,7 +6419,7 @@ The encoding is responsible for the correct character representation. SongsPlugin.CCLIFileImport - + The file does not have a valid extension. @@ -6467,12 +6427,12 @@ The encoding is responsible for the correct character representation. SongsPlugin.EasyWorshipSongImport - + Administered by %s - + [above are Song Tags with notes imported from EasyWorship] @@ -6482,12 +6442,12 @@ The encoding is responsible for the correct character representation. SongsPlugin.EditBibleForm - + Meta Data - + Custom Book Names @@ -6495,202 +6455,202 @@ 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. Вы должны добавить автора к этой песне. - + Linked Audio - + Add &File(s) - + Add &Media - + Remove &All - + Open File(s) - + <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. @@ -6698,22 +6658,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. @@ -6721,82 +6681,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. @@ -6804,172 +6764,172 @@ 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 v1.x - + Words Of Worship Song Files - + Songs Of Fellowship Song Files Файлы песен Songs Of Fellowship - + SongBeamer Files Файлы SongBeamer - + SongShow Plus Song Files Файлы SongShow Plus - + Foilpresenter Song Files Foilpresenter Song Files - + Copy Копировать - + Save to File - Сохранить в файл + Сохранить в файл - + The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. - + The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. - + OpenLyrics or OpenLP 2.0 Exported Song - + OpenLyrics Files - + CCLI SongSelect Files - + EasySlides XML File - + EasyWorship Song Database - + DreamBeam Song Files - + You need to specify a valid PowerSong 1.0 database folder. - + Вы должны указать действительную папку базы данных PowerSong 1.0. - + 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 - + This importer has been disabled. - + MediaShout Database - + The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. - + SongPro Text Files - + SongPro (Export File) - + In SongPro, export your songs using the File -> Export menu @@ -6977,12 +6937,12 @@ The encoding is responsible for the correct character representation. 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. @@ -7000,7 +6960,7 @@ The encoding is responsible for the correct character representation. Слова - + CCLI License: Лицензия CCLI: @@ -7010,7 +6970,7 @@ The encoding is responsible for the correct character representation. Всю песню - + Are you sure you want to delete the %n selected song(s)? Вы уверены, что хотите удалить %n выбранную песню? @@ -7024,7 +6984,7 @@ The encoding is responsible for the correct character representation. - + copy For song cloning @@ -7032,7 +6992,7 @@ The encoding is responsible for the correct character representation. Search Titles... - + Поиск в заголовках... @@ -7042,23 +7002,23 @@ The encoding is responsible for the correct character representation. Search Lyrics... - + Поиск слов песни... Search Authors... - + Поиск авторов... Search Song Books... - + Поиск в сборниках песен... SongsPlugin.MediaShoutImport - + Unable to open the MediaShout database. @@ -7066,7 +7026,7 @@ The encoding is responsible for the correct character representation. SongsPlugin.OpenLP1SongImport - + Not a valid openlp.org 1.x song database. @@ -7074,7 +7034,7 @@ The encoding is responsible for the correct character representation. SongsPlugin.OpenLPSongImport - + Not a valid OpenLP 2.0 song database. @@ -7082,7 +7042,7 @@ The encoding is responsible for the correct character representation. SongsPlugin.OpenLyricsExport - + Exporting "%s"... Экспортирую "%s"... @@ -7090,32 +7050,32 @@ The encoding is responsible for the correct character representation. SongsPlugin.PowerSongImport - + No songs to import. - + Verses not found. Missing "PART" header. - + No %s files found. - + Invalid %s file. Unexpected byte value. - + Invalid %s file. Missing "TITLE" header. - + Invalid %s file. Missing "COPYRIGHTLINE" header. @@ -7123,22 +7083,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. Вы далжны ввести название сборника @@ -7146,12 +7106,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. @@ -7159,27 +7119,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 - + Unable to open file - + Не удается открыть файл - + File not found @@ -7187,107 +7147,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? - + 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? @@ -7295,27 +7255,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 @@ -7323,17 +7283,17 @@ The encoding is responsible for the correct character representation. SongsPlugin.TopicsForm - + Topic Maintenance - + Topic name: - + Название темы: - + You need to type in a topic name. @@ -7341,37 +7301,37 @@ The encoding is responsible for the correct character representation. SongsPlugin.VerseType - + Verse - + Стих - + Chorus - + Bridge - + Pre-Chorus - + Intro - + Ending - + Other @@ -7379,27 +7339,27 @@ The encoding is responsible for the correct character representation. SongsPlugin.ZionWorxImport - + Error reading CSV file. - + File not valid ZionWorx CSV format. - + Line %d: %s - + Decoding error: %s - + Record %d diff --git a/resources/i18n/sk.ts b/resources/i18n/sk.ts index 10f873d2e..1df6171a3 100644 --- a/resources/i18n/sk.ts +++ b/resources/i18n/sk.ts @@ -3,35 +3,35 @@ AlertsPlugin - + &Alert &Upozornenie - + Show an alert message. Zobraziť upozornenie. - + Alert name singular Upozornenie - + Alerts name plural Upozornenia - + Alerts container title Upozornenia - + <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of nursery alerts on the display screen. <strong>Modul upozornení</strong><br />Modul upozornení umožňuje zobrazovat rôzne hlášky a upozornenia na zobrazovacej obrazovke. @@ -39,68 +39,68 @@ AlertsPlugin.AlertForm - + Alert Message Upozornenie - + Alert &text: &Text upozornenia: - + &New &Nový - + &Save &Uložiť - + Displ&ay &Zobraziť - + Display && Cl&ose Zobraziť a za&vrieť - + New Alert Nové upozornenie - + You haven't specified any text for your alert. Please type in some text before clicking New. Nebyl zadaný žiadny text upozornenia. Pred klepnutím na Nový prosím zadajte nejaký text. - + &Parameter: &Parameter: - + No Parameter Found Parameter sa nepodarilo nájsť - + You have not entered a parameter to be replaced. Do you want to continue anyway? Nebol zadaný žiadny parameter pre nahradenie. Chcete napriek tomu pokračovat? Parameter sa nepodarilo nájsť - + No Placeholder Found Zástupný znak sa nepodarilo nájsť - + The alert text does not contain '<>'. Do you want to continue anyway? Text upozornenia neobsahuje '<>'. Chcete napriek tomu pokračovat? @@ -117,32 +117,32 @@ Do you want to continue anyway? AlertsPlugin.AlertsTab - + Font Písmo - + Font name: Názov písma: - + Font color: Farba písma: - + Background color: Farba pozadia: - + Font size: Veľkosť písma: - + Alert timeout: Čas pre vypršanie upozornenia: @@ -150,510 +150,510 @@ Do you want to continue anyway? BiblesPlugin - + &Bible &Biblia - + Bible name singular Biblia - + Bibles name plural Biblie - + Bibles container title Biblie - + No Book Found Kniha sa nenašla - + No matching book could be found in this Bible. Check that you have spelled the name of the book correctly. V Bibli sa nenašla hľadaná kniha. Uistite sa, že názov knihy bol zadaný správne. - + Import a Bible. Import Biblie. - + Add a new Bible. Pridať novú Bibliu. - + Edit the selected Bible. Upraviť označenú Bibliu. - + Delete the selected Bible. Zmazať označenú Bibliu. - + Preview the selected Bible. Náhľad označenej Biblie. - + Send the selected Bible live. Zobraziť označenú Bibliu naživo. - + Add the selected Bible to the service. Pridať označenú Bibliu do služby. - + <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display Bible verses from different sources during the service. <strong>Modul Biblia</strong><br />Modul Biblia umožňuje počay služby zobrazovať verše z rôznych zdrojov. - + &Upgrade older Bibles &Aktualizovať staršie Biblie - + Upgrade the Bible databases to the latest format. Aktualizovať databázu Biblie na najnovší formát. - + 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. @@ -662,44 +662,44 @@ Do you want to continue anyway? BiblesPlugin.BibleEditForm - + You need to specify a version name for your Bible. Je potrebné uviesť názov verzie Biblie. - + You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. K Biblii je potrebné nastaviť autorské práva, diela, ktoré sú voľné, je potrebné takto označiť. - + Bible Exists Biblia existuje - + This Bible already exists. Please import a different Bible or first delete the existing one. Táto Biblia už existuje. Importujte prosím inú Bibliu, alebo najprv vymažte existujúcu. - + 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. @@ -707,38 +707,38 @@ be followed by one or more non-numeric characters. BiblesPlugin.BibleManager - + Scripture Reference Error Chyba v odkazu Biblie - + Web Bible cannot be used Biblia z www sa nedá použiť - + Text Search is not available with Web Bibles. Hľadanie textu nie je dostupné v Biblii 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. Nebolo zadané slovo pre vyhľadávaniu. Na vyhľadávanie textu obsahujúceho všetky slová je potrebné tieto slová oddělit medzerou. Oddelením slov čiarkou bude sa bude vyhľadávať text obsahujúcí aspoň jedno zo zadaných slov. - + There are no Bibles currently installed. Please use the Import Wizard to install one or more Bibles. Žiadne Biblie nie sú nainštalované. Na pridanie jednej alebo viac Biblii prosím použite Sprievodcu importom. - + No Bibles Available Žiadne Biblie k dispozícii. - + 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 @@ -754,127 +754,127 @@ Book Chapter%(verse)sVerse%(range)sChapter%(verse)sVerse BiblesPlugin.BiblesTab - + Verse Display Zobraziť verš - + Only show new chapter numbers Zobraziť len číslo novej kapitoly - + Bible theme: Motív Biblie: - + No Brackets Žiadne zátvorky - + ( And ) (A) - + { And } { A } - + [ And ] [ A ] - + Note: Changes do not affect verses already in the service. Poznámka: Verše, které sú už v službe, nie sú ovplyvnené zmenami. - + Display second Bible verses Zobraziť druhé verše z Biblie - + 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 Slovak - + Default Bible Language - + Book name language in search field, search results and on display: - + Bible Language - + Application Language @@ -882,42 +882,42 @@ search results and on display: BiblesPlugin.BookNameDialog - + Select Book Name Vybrať názov knihy - + Current name: Súčasný názov: - + Corresponding name: Zodpovedajúci názov: - + Show Books From Zobraziť 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. @@ -925,7 +925,7 @@ search results and on display: BiblesPlugin.BookNameForm - + You need to select a book. Je potrebné vybrať knihu. @@ -933,18 +933,18 @@ search results and on display: BiblesPlugin.CSVBible - + Importing books... %s Import kníh... %s - + Importing verses from %s... Importing verses from <book name>... Import veršov z %s... - + Importing verses... done. Import veršov... dokončené. @@ -952,68 +952,68 @@ search results and on display: BiblesPlugin.EditBibleForm - + Bible Editor - + License Details Podrobnosti licencie - + Version name: Názov verzie: - + Copyright: Autorské práva: - + Permissions: Povolenia: - + Default Bible Language - + Book name language in search field, search results and on display: - + Global Settings - + Bible Language - + Application Language - + English Slovak - + 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. @@ -1021,38 +1021,38 @@ It is not possible to customize the Book Names. BiblesPlugin.HTTPBible - + Registering Bible and loading books... Registrujem Bibliu a sťahujem knihy... - + Registering Language... Registrujem Jazyk... - + Importing %s... Importing <book name>... Importujem %s... - + Download Error Vyskytla sa chyba pri sťahovaní - + 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. Pri sťahovaní výberu veršov sa vyskytol problém. Prosím preverte svoje internetové pripojenie. Pokiaľ sa táto chyba stále objavuje, zvážte prosím nahlásenie chyby. - + Parse Error Chyba pri spracovaní - + There was a problem extracting your verse selection. If this error continues to occur please consider reporting a bug. Pri rozbalovaní výberu veršov sa vyskytol problém. Pokiaľ sa táto chyba stále objavuje, zvážte prosím nahlásenie chyby. @@ -1229,17 +1229,17 @@ demand and thus an internet connection is required. BiblesPlugin.LanguageDialog - + Select Language Vyber jazyk - + OpenLP is unable to determine the language of this translation of the Bible. Please select the language from the list below. OpenLP nie je schopný určiť jazyk tohto prekladu Biblie. Vyberte prosím jazyk zo zoznamu nižšie. - + Language: Jazyk: @@ -1247,7 +1247,7 @@ demand and thus an internet connection is required. BiblesPlugin.LanguageForm - + You need to choose a language. Je potrebné vybrať jazyk. @@ -1255,92 +1255,92 @@ demand and thus an internet connection is required. BiblesPlugin.MediaItem - + Quick Rýchly - + Find: Hľadať: - + Book: Kniha: - + Chapter: Kapitula: - + Verse: Verš: - + From: Od: - + To: Do: - + Text Search Vyhľadávanie textu - + Second: Druhý: - + Scripture Reference Odkaz do Biblie - + Toggle to keep or clear the previous results. Prepnúť ponechanie alebo zmazanie predchádzajúcich výsledkov. - + You cannot combine single and dual Bible verse search results. Do you want to delete your search results and start a new search? Nie je možné kombinovať jednoduché a dvojité výsledky hľadania veršov v Bibli. Prajete si zmazať výsledky hľadania a začať s novým vyhľadávaním? - + Bible not fully loaded. Biblia nie je načítaná celá. - + Information Informácie - + 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á Biblia neobsahuje všetky verše ako sú v hlavnej Biblii. Budú zobrazené len verše nájdené v obidvoch Bibliách. %d veršov nebolo zahrnutých vo výsledkoch. - + Search Scripture Reference... - + Search Text... - + Are you sure you want to completely delete "%s" Bible from OpenLP? You will need to re-import this Bible to use it again. @@ -1350,7 +1350,7 @@ You will need to re-import this Bible to use it again. BiblesPlugin.OpenSongImport - + Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. @@ -1358,7 +1358,7 @@ You will need to re-import this Bible to use it again. BiblesPlugin.Opensong - + Importing %s %s... Importing <book name> <chapter>... Importujem %s %s... @@ -1367,12 +1367,12 @@ You will need to re-import this Bible to use it again. BiblesPlugin.OsisImport - + Detecting encoding (this may take a few minutes)... Zisťujem kódovanie (môže trvat niekoľko minút)... - + Importing %s %s... Importing <book name> <chapter>... Importujem %s %s... @@ -1381,143 +1381,143 @@ You will need to re-import this Bible to use it again. BiblesPlugin.UpgradeWizardForm - + Select a Backup Directory Vybrať priečinok pre zálohu - + Bible Upgrade Wizard Sprievodca aktualizácie Biblie - + 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 sprievodca pomáhá s aktualizáciou existujúcich Biblií z predchádzajúcej verzie OpenLP 2. Pre spustenie aktualizácie kliknite nižšie na tlačítko Ďalej. - + Select Backup Directory Vybrať prečinok pre zálohu - + Please select a backup directory for your Bibles Vyberte prosím priečinok pre zálohu Biblií - + 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>. Predchádzajúce vydania OpenLP 2.0 nie sú schopné aktualizovať Bibliu. Bude vytvorená záloha súčasných Biblií, aby bylo možné v prípadě potreby jednoducho nakopírovať súbory späť do dátoveho pričinku aplikácie OpenLP. Inštrukcie, ako obnoviť súbory, nájdete v <a href="http://wiki.openlp.org/faq">často kladených otázkach</a>. - + Please select a backup location for your Bibles. Vyberte prosím umiestenie pre zálohu Biblie. - + Backup Directory: Priečinok pre zálohu: - + There is no need to backup my Bibles Nie je potrebné zálohovať Bibliu - + Select Bibles Vybrať Bibliu - + Please select the Bibles to upgrade Vyberte prosím Bibliu na aktualizáciu - + Upgrading Aktualizujuem - + Please wait while your Bibles are upgraded. Čakajte prosím, až budú Biblie aktualizované. - + The backup was not successful. To backup your Bibles you need permission to write to the given directory. Záloha nebola úspešná. Pre zálohu Biblií je potrebné oprávnenie k zápisu do zadaného priečinku. - + Upgrading Bible %s of %s: "%s" Failed Aktualizácia Biblie %s z %s: "%s" Zlyhala - + Upgrading Bible %s of %s: "%s" Upgrading ... Aktualizujem Bibliu %s z %s: "%s" Aktualizujem ... - + Download Error Chyba pri sťahovaní - + To upgrade your Web Bibles an Internet connection is required. Pre aktualizáciu Biblií z www je potrebné internetové pripojenie. - + Upgrading Bible %s of %s: "%s" Upgrading %s ... Aktualizujem Bibliu %s z %s: "%s" Aktualizujem %s ... - + Upgrading Bible %s of %s: "%s" Complete Aktualizujem Biblie %s z %s: "%s" Dokončené - + , %s failed , %s zlyhalo - + 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. Aktualizácia Biblií: %s úspešná%s Upozornenie: Verše z www Biblie budú stiahnuté na vyžiadanie a preto je potrebné internetové pripojenie. - + Upgrading Bible(s): %s successful%s Aktualizácia Biblií: %s úspešná%s - + Upgrade failed. Aktualizácia zlyhala. - + You need to specify a backup directory for your Bibles. Je potrebné upresniť priečinok pre zálohu Biblií. - + Starting upgrade... Spúšťam aktualizáciu... - + There are no Bibles that need to be upgraded. Nie sú žiadne , ktoré treba aktualizovať. @@ -1526,65 +1526,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>Vlastný doplnok snímku</strong><br />Vlastný modul snímok poskytuje možnosť nastaviť vlastné textové snímky, ktoré môžu byť zobrazené na obrazovke rovnako ako piesne . Tento modul poskytuje väčšie možnosti s modulmi piesní. - + Custom Slide name singular Vlastný snímok - + Custom Slides name plural Vlastné snímky - + Custom Slides container title Vlastné snímky - + Load a new custom slide. Načítaj nový vlastný snímok, - + Import a custom slide. Vlož vlastný snímok. - + Add a new custom slide. Pridaj nový vlastný snímok. - + Edit the selected custom slide. Uprav vybraný vlastný snímok. - + Delete the selected custom slide. Zmaž vybraný vlastný snímok. - + Preview the selected custom slide. Zobraz vybraný vlastný snímok. - + Send the selected custom slide live. Teraz odošli vybraný vlastný snímok - + Add the selected custom slide to the service. Pridaj vybraný vlastný snímok do služby @@ -1592,12 +1592,12 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I CustomPlugin.CustomTab - + Custom Display Vlastné zobrazenie. - + Display footer Päta zobrazenia. @@ -1605,62 +1605,62 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I CustomPlugin.EditCustomForm - + Edit Custom Slides Uprav vlastné snímky.. - + &Title: &Názov: - + Add a new slide at bottom. Pridaj nový snímok na spodok. - + Edit the selected slide. Upraviť vybraný snímok. - + Edit all the slides at once. Upraviť všetky snímky naraz. - + Split a slide into two by inserting a slide splitter. Vložením oddeľovača sa snímok rozdelí na dva. - + The&me: &Motív: - + &Credits: &Zásluhy: - + You need to type in a title. Je potrebné zadať názov. - + You need to add at least one slide Je nutné pridať aspoň jeden snímok - + Ed&it All Upra&iť všetky - + Insert Slide Vložiť snímok @@ -1668,7 +1668,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I CustomPlugin.EditVerseForm - + Edit Slide @@ -1676,7 +1676,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)? @@ -1688,60 +1688,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>Modul obrázok</strong><br />Modul obrázok sa stará o zobrazovanie obrázkov.<br />Jednou z charakteristických funkcí tohto modulu je schopnosť v správcovi služby zoskúpiť niekoľko obrázkov dohromady. Táto vlastnosť zjednodušuje zobrazenie viacero obrázkov. Tento modul tiež využívá vlastnosti "časová smyčka" aplikace OpenLP a je tiež možné vytvoriť prezentáciu obrázkov, které pobežia samostatne. Taktiež využitím obrázkov z modulu je možné prekryť pozadie súčasného motívu. - + Image name singular Obrázok - + Images name plural Obrázky - + Images container title Obrázky - + Load a new image. Načítať nový obrázok. - + Add a new image. Pridať nový obrázok. - + Edit the selected image. Upraviť vybraný obrázok. - + Delete the selected image. Zmazať vybraný obrázok. - + Preview the selected image. Náhľad vybraného obrázku. - + Send the selected image live. Zobraziť vybraný obrázok naživo. - + Add the selected image to the service. Pridať vybraný obrázok do služby. @@ -1749,7 +1749,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I ImagePlugin.ExceptionDialog - + Select Attachment Vybrať prílohu @@ -1757,44 +1757,44 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I ImagePlugin.MediaItem - + Select Image(s) Vybrať obrázky - + You must select an image to delete. Pre zmazanie musíte najskôr vybrať obrázok. - + You must select an image to replace the background with. Pre nahradenie pozadia musíte najskôr vybrať obrázok. - + Missing Image(s) Chýbajúce obrázky - + The following image(s) no longer exist: %s Tieto obrázky už neexistujú: %s - + The following image(s) no longer exist: %s Do you want to add the other images anyway? Nasledujúci obrázok(y) neexistujú.%s Chcete pridať ďaľšie obrázky? - + There was a problem replacing your background, the image file "%s" no longer exists. Problém s nahradením pozadia. Obrázok "%s" už neexistuje. - + There was no display item to amend. Žiadna položka na zobrazenie nebola zmenená. @@ -1802,17 +1802,17 @@ Chcete pridať ďaľšie obrázky? ImagesPlugin.ImageTab - + Background Color Farba pozadia - + Default Color: Predvolená farba: - + Visible background for images with aspect ratio different to screen. @@ -1820,60 +1820,60 @@ Chcete pridať ďaľšie 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 prehrávať audio a video. - + Media name singular Médium - + Media name plural Média - + Media container title Média - + Load new media. Načítať nové médium. - + Add new media. Pridať nové médium. - + Edit the selected media. Upraviť vybrané médium. - + Delete the selected media. Zmazať vybrané médium. - + Preview the selected media. Náhľad vybraného média. - + Send the selected media live. Zobraziť vybrané médium naživo. - + Add the selected media to the service. Pridať vybrané médium do služby. @@ -1881,57 +1881,57 @@ Chcete pridať ďaľšie obrázky? MediaPlugin.MediaItem - + Select Media Vybrať médium - + You must select a media file to delete. Pre zmazanie musíte najskôr vybrať súbor s médiom. - + You must select a media file to replace the background with. Pre nahradenie pozadia musíte najskôr vybrať súbor s médiom. - + There was a problem replacing your background, the media file "%s" no longer exists. Problém s nahradením pozadia. Súbor s médiom "%s" už neexistuje. - + Missing Media File Chybajúce súbory s médiami - + The file %s no longer exists. Súbor %s už neexistuje. - + Videos (%s);;Audio (%s);;%s (*) Video (%s);;Audio (%s);;%s (*) - + There was no display item to amend. Žiadna položka na zobrazenie nebola zmenená. - + Unsupported File Nepodporovaný súbor - + Automatic Automatický - + Use Player: Použi prehrávač: @@ -1939,22 +1939,22 @@ Chcete pridať ďaľšie obrázky? MediaPlugin.MediaTab - + Available Media Players Dostupné prehrávače médií - + %s (unavailable) %s (nedostupné) - + Player Order Poradie hráčov - + Allow media player to be overridden @@ -1962,17 +1962,17 @@ Chcete pridať ďaľšie obrázky? OpenLP - + Image Files Súbory obrázkov - + Information Informácie - + Bible format has changed. You have to upgrade your existing Bibles. Should OpenLP upgrade now? @@ -1984,32 +1984,54 @@ Má OpenLP upgradovať teraz? OpenLP.AboutForm - + Credits Kredity - + License Licencia - + build %s stavba %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. Tento program je slobodný softvér, môžete ho šíriť a / alebo modifikovať podľa ustanovení GNU General Public License, vydávanej Free Software Foundation, verzia 2 tejto licencie. - + 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. Tento program je rozširovaný v nádeji, že bude užitočný, ale BEZ AKEJKOĽVEK ZÁRUKY; neposkytujú sa ani odvodené záruky PREDAJNOSTI alebo VHODNOSTI PRE URČITÝ ÚČEL. Pozri dole pre ďalšie podrobnosti. - + + Copyright © 2004-2012 %s +Portions copyright © 2004-2012 %s + + + + + 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. + +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 volunteering by using the button below. + + + + + Volunteer + + + + Project Lead %s @@ -2028,12 +2050,20 @@ Packagers Translators Afrikaans (af) %s + Czeck (cs) + %s + Danish (da) + %s German (de) %s + Greek (el) + %s English, United Kingdom (en_GB) %s English, South Africa (en_ZA) %s + Spanish (es) + %s Estonian (et) %s French (fr) @@ -2050,13 +2080,15 @@ Translators %s Russian (ru) %s + Swedish (sv) + %s Documentation %s Built With Python: http://www.python.org/ - Qt4: http://qt.nokia.com/ + Qt4: http://qt.digia.com/ PyQt4: http://www.riverbankcomputing.co.uk/software/pyqt/intro Oxygen Icons: http://oxygen-icons.org/ @@ -2071,267 +2103,185 @@ Final Credit on the cross, setting us free from sin. We bring this software to you for free because He has set us free. - Projekt líder - %s - -Vývojári - %s - -Prispievatelia - %s - -Testeri - %s - -Baliči - %s - -Prekladatelia - Afrikaans (af) - %s - German (de) - %s - English, United Kingdom (en_GB) - %s - English, South Africa (en_ZA) - %s - Estonian (et) - %s - French (fr) - %s - Hungarian (hu) - %s - Japanese (ja) - %s - Norwegian Bokmål (nb) - %s - Dutch (nl) - %s - Portuguese, Brazil (pt_BR) - %s - Russian (ru) - %s - -Dokumentáacia - %s - -Vytvorené v - Python: http://www.python.org/ - Qt4: http://qt.nokia.com/ - PyQt4: http://www.riverbankcomputing.co.uk/software/pyqt/intro - Oxygen Icons: http://oxygen-icons.org/ - -Poďakovanie - "Lebo Boh tak miloval svet, že dal -     svojho jediného syna, aby ten, kto -     verí v neho, nezahynul, ale mal -     posmrtný život." -- Ján 3:16 - - A v neposlednom rade ide poďakovanie -     Bohu, nášmu Otcovi, pre zaslanie svojho Syna na smrť -     na kríži, ktorým nás oslobodzuje od hriechu. My -    vám dávame tento softvér pre vás zdarma, pretože -     On nás oslobodil. - - - - Copyright © 2004-2012 %s -Portions copyright © 2004-2012 %s - - - - - 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. - -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 volunteering by using the button below. - - - - - Volunteer OpenLP.AdvancedTab - + UI Settings Nastavenia používateľského rozhrania - + Number of recent files to display: Počet zobrazených posledných súborov: - + Remember active media manager tab on startup Zapamätanie si karty akívneho manažéra médií pri spustení - + Double-click to send items straight to live Dvakrát klikni pre live zobrazenie položiek - + Expand new service items on creation Zobraz nové pomocné položky na tvorbu - + Enable application exit confirmation Sprístupni potvrdenie ukončenia aplikácie - + Mouse Cursor Kurzor myši - + Hide mouse cursor when over display window Skry kurzor myši počas prechodu cez okno zobrazenia - + Default Image Pôvodný obrázok - + Background color: Farba pozadia: - + Image file: Obrázok: - + Open File Otvor súbor - + Advanced Pokročilé - + Preview items when clicked in Media Manager Obrázky zobrazíš kliknutím na manažér médií - + Click to select a color. Klikni pre vybratie farby. - + Browse for an image file to display. Prehľadávaj obrázky na zobrazenie. - + Revert to the default OpenLP logo. Obnov pôvodné 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. - + 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 @@ -2341,94 +2291,94 @@ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for - + 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. - + 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 Prepísať existujúce údaje - + OpenLP data directory was not found %s @@ -2441,7 +2391,7 @@ Click "Yes" to reset the data directory to the default location. - + Are you sure you want to change the location of the OpenLP data directory to: %s @@ -2450,7 +2400,7 @@ The data directory will be changed when OpenLP is closed. - + WARNING: The location you have selected @@ -2464,39 +2414,39 @@ appears to contain OpenLP data files. Do you wish to replace these files with t OpenLP.ExceptionDialog - + Error Occurred Vyskytla sa 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. Ups! V OpenLP sa vyskytol problém a nemohol sa obnoviť. Text v poli nižšie obsahuje informácie, ktoré by mohli byť užitočné pre OpenLP vývojárov, takže prosím pošlite e-mail na bugs@openlp.org spolu s podrobným popisom toho, čo ste robili, keď sa problém vyskytol. - + Send E-Mail Pošli email. - + Save to File Uložiť do súboru - + Please enter a description of what you were doing to cause this error (Minimum 20 characters) Prosím, popíšte, čo ste robili, keď sa vyskytla chyba (najmenej 20 znakov) - + Attach File Pripoj súbor - + Description characters to enter : %s Popisné znaky na potvrdenie : %s @@ -2504,24 +2454,24 @@ appears to contain OpenLP data files. Do you wish to replace these files with t OpenLP.ExceptionForm - + Platform: %s Platforma: %s - + Save Crash Report Ulož správu o zlyhaní - + Text files (*.txt *.log *.text) Textové súbory (*.txt *.log *.text) - + **OpenLP Bug Report** Version: %s @@ -2536,10 +2486,11 @@ Version: %s --- Library Versions --- %s - + **OpenLP Bug Report** Version: %s --- Details of the Exception. --- %s --- Exception Traceback --- %s --- System information --- %s --- Library Versions --- %s + - + *OpenLP Bug Report* Version: %s @@ -2555,23 +2506,24 @@ Version: %s %s Please add the information that bug reports are favoured written in English. - + *OpenLP Bug Report* Version: %s --- Details of the Exception. --- %s --- Exception Traceback --- %s --- System information --- %s --- Library Versions --- %s + OpenLP.FileRenameForm - + File Rename Premenovanie súboru - + New File Name: Nový názov súboru: - + File Copy Kopírovanie súboru @@ -2579,17 +2531,17 @@ Version: %s OpenLP.FirstTimeLanguageForm - + Select Translation Vyber preklad - + Choose the translation you'd like to use in OpenLP. Vyber preklad, ktorý chceš použiť v OpenLP. - + Translation: Preklad: @@ -2597,199 +2549,199 @@ Version: %s OpenLP.FirstTimeWizard - + Songs Piesne - + First Time Wizard Sprievodca prvým použitím - + Welcome to the First Time Wizard Vitajte v sprievodcovi prvým použitím - + Activate required Plugins Aktivácia požadovaných pluginov - + Select the Plugins you wish to use. Vyberte pluginy, ktoré chcete použiť. - + Bible Biblia - + Images Obrázky - + Presentations Prezentácie - + Media (Audio and Video) Médiá(Zvuk a Video) - + Allow remote access Povolenie vzdialeného prístupu - + Monitor Song Usage Monitorovanie použitia piesní - + Allow Alerts Povolenie upozornení - + Default Settings Pôvodné nastavenia. - + Downloading %s... Sťahovanie %s... - + Download complete. Click the finish button to start OpenLP. Sťahovanie dokončené. Kliknutím na tlačítko finish spustíte OpenLP: - + Enabling selected plugins... Povoľovanie vybratých pluginov... - + No Internet Connection Žiadne internetové pripojenie - + Unable to detect an Internet connection. Nedá sa zistiť internetové pripojenie. - + Sample Songs Ukážkové piesne - + Select and download public domain songs. Vyber a stiahni verejne prístupné piesne. - + Sample Bibles Ukážkové Biblie. - + Select and download free Bibles. - + Select and download free Bibles. - + Sample Themes Ukážkové témy - + Select and download sample themes. Vyber a stiahni ukážkové témy. - + Set up default settings to be used by OpenLP. Nastav pôvodné nastavenia použité v OpenLP - + Default output display: Pôvodné výstupné zobrazenie: - + Select default theme: Vyber základnú tému. - + Starting configuration process... Začínanie konfiguračného procesu... - + This wizard will help you to configure OpenLP for initial use. Click the next button below to start. - + Tento sprievodca pomáhá nastaviť OpenLP pre prvé použitie. Pre štart kliknite nižšie na tlačidlo ďalší. - + Setting Up And Downloading - + Nastavuje sa a sťahuje. - + Please wait while OpenLP is set up and your data is downloaded. - + Čakajte prosím, pokiaľ bude aplikácia OpenLP nastavená a dáta stiahnuté. - + Setting Up - + Nastavuje sa. - + Click the finish button to start OpenLP. - + Kliknutím na tlačidlo koniec sa spustí aplikácia OpenLP. - + Download complete. Click the finish button to return to OpenLP. - + Sťahovanie dokončené. Kliknutím na tlačidlo koniec sa vrátite do aplikácie OpenLP. - + Click the finish button to return to OpenLP. - + Kliknutím na tlačidlo koniec sa vrátite do aplikácie OpenLP. - + Custom Slides - Vlastné snímky + Používateľské snímky - + Finish - + Koniec - + 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. @@ -2799,278 +2751,278 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can OpenLP.FormattingTagDialog - + Configure Formatting Tags - + Nastaviť formátovacie značky - + Edit Selection - + Upraviť výber - + Save - + Uložiť - + Description - + Popis - + Tag - + Značka - + Start HTML - + Začiatok HTML - + End HTML - + Koniec HTML OpenLP.FormattingTagForm - + Update Error - + Chyba aktualizácie - + Tag "n" already defined. - + Značka "n" je už definovaná. - + New Tag - + Nová značka - + <HTML here> - + <HTML tu> - + </and here> - + </and tu> - + Tag %s already defined. - + Značka %s je už definovaná. OpenLP.FormattingTags - + Red - + Červená - + Black - + Čierna - + Blue - + Modrá - + Yellow - + Žltá - + Green - + Zelená - + Pink - + Ružová - + Orange - + Oranžová - + Purple - + Fialová - + White - + Biela - + Superscript - + Horný index - + Subscript - + Dolný index - + Paragraph - + Odstavec - + Bold - + Tučné - + Italics - + Kurzíva - + Underline - + Podčiarknuté - + Break - + Zalomenie OpenLP.GeneralTab - - - General - - + General + Všeobecné + + + Monitors - + Monitory - + Select monitor for output display: - + Vyber monitor pre výstupné zobrazenie - + Display if a single screen - + Zobrazenie pri jednej obrazovke - + Application Startup - + Spustenie aplikácie - + Show blank screen warning - + Zobraziť varovanie pri prázdnej obrazovke - + Automatically open the last service - + Automaticky otvoriť poslednú službu - + Show the splash screen - + Zobraziť úvodnú obrazovku - + Application Settings - + Nastavenie aplikácie - + Prompt to save before starting a new service - + Pred spustením novej služby sa pýtať na uloženie. - + Automatically preview next item in service - - - - - sec - + Automatický náhľad ďalšej položky v službe + sec + sek + + + CCLI Details - + CCLI Detaily - + SongSelect username: - + SongSelect používateľské meno: - + SongSelect password: - - - - - X - + SongSelect heslo: - Y - + X + X - Height - + Y + Y - Width - - - - - Check for updates to OpenLP - - - - - Unblank display when adding new live item - - - - - Timed slide interval: - + Height + Výška - Background Audio - + Width + Šírka - + + Check for updates to OpenLP + Kontrola aktualizácií aplikácie OpenLP + + + + Unblank display when adding new live item + Odkryť zobrazenie pri pridávané novej položky naživo + + + + Timed slide interval: + Časový interval medzi snímkami: + + + + Background Audio + Zvuk v pozadí + + + Start background audio paused - + Spustiť zvuk na pozadí pozastavené @@ -3078,12 +3030,12 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can - + Override display position: - + Repeat track list @@ -3111,459 +3063,459 @@ 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. - + Zmeny nastavenia jazyka sa prejavia po reštartovaní aplikácie OpenLP. OpenLP.MainDisplay - + OpenLP Display - + Zobrazenie OpenLP OpenLP.MainWindow - - - &File - - - &Import - + &File + &Súbor - &Export - + &Import + &Import - - &View - + + &Export + &Export - M&ode - + &View + &Zobraziť - &Tools - + M&ode + &Réžim + &Tools + &Nástroje + + + &Settings - + &Nastavenia - + &Language - - - - - &Help - + &Jazyk + &Help + &Pomocník + + + Media Manager - + Správca médií - + Service Manager - + Správca Služby - + Theme Manager - + Správca motívu - + &New - &Nový + &Nový - + &Open - + &Otvoriť - + Open an existing service. - + Otvoriť existujúcu službu. - + &Save - &Uložiť + &Uložiť - + Save the current service to disk. - + Uložiť súčasnú službu na disk. - + Save &As... - + Uložiť &ako... - + Save Service As - + Uložiť službu ako - + Save the current service under a new name. - + Uložiť súčasnú službu s novým názvom - + E&xit - + &Východ - + Quit OpenLP - + Ukončiť OpenLP - + &Theme - + &Motív - + &Configure OpenLP... - + &Nastaviť OpenLP - + &Media Manager - + &Správca médií - + Toggle Media Manager - + Prepnúť správcu médií - + Toggle the visibility of the media manager. - + Prepnúť viditeľnosť správcu médií. - + &Theme Manager - + &Správca motívu - + Toggle Theme Manager - + Prepnúť správcu motívu - + Toggle the visibility of the theme manager. - + Prepnúť viditeľnosť správcu motívu. - + &Service Manager - + &Správca služby - + Toggle Service Manager - + Prepnúť správcu služby - + Toggle the visibility of the service manager. - + Prepnúť viditeľnosť správcu služby. - + &Preview Panel - + &Panel náhľadu - + Toggle Preview Panel - + Prepnúť panel náhľadu - + Toggle the visibility of the preview panel. - + Prepnúť viditeľnosť panelu náhľadu. - + &Live Panel - + @Panel naživo - + Toggle Live Panel - + Prepnúť panel naživo - + Toggle the visibility of the live panel. - + &Plugin List - + List the Plugins - + &User Guide - + &About - + More information about OpenLP - + &Online Help - + &Web Site - + Use the system language, if available. - + Set the interface language to %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/. - + OpenLP Version Updated - + OpenLP Main Display Blanked - + The Main Display has been blanked out - + Default Theme: %s - + English Please add the name of your language here Slovak - + Configure &Shortcuts... - + Close OpenLP - + Are you sure you want to close 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. - + Clear List Clear List of recent files - + Clear the list of recent files. - + Configure &Formatting Tags... - + Export OpenLP settings to a specified *.config file - + Settings - + Import OpenLP settings from a specified *.config file previously exported on this or another machine - + Import settings? - + Are you sure you want to import settings? Importing settings will make permanent changes to your current OpenLP configuration. @@ -3572,42 +3524,42 @@ Importing incorrect settings may cause erratic behaviour or OpenLP to terminate - + Open File Otvor súbor - + OpenLP Export Settings Files (*.conf) - + Import settings - + OpenLP will now close. Imported settings will be applied the next time you start OpenLP. - + Aplikácia OpenLP sa teraz ukončí. Importované nastavenia sa použijú pri ďalšom spustení. - + Export Settings File - + Súbor exportovaného nastavenia. - + OpenLP Export Settings File (*.conf) - + Súbor exportovaného nastavenia OpenLP (*.conf) - + New Data Directory Error - + The file you selected does appear to be a valid OpenLP settings file. Section [%s] is not valid @@ -3616,12 +3568,12 @@ Processing has terminated and no changed have been made. - + Copying OpenLP data to new data directory location - %s - Please wait for copy to finish - + OpenLP Data directory copy failed %s @@ -3631,108 +3583,108 @@ Processing has terminated and no changed have been made. OpenLP.Manager - + Database Error - + Chyba databázy - + 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 - + Aplikácia OpenLP nemôže načítať databázu. Databáza: %s OpenLP.MediaManagerItem - + No Items Selected - + Nevybraná žiadna položka - + &Add to selected Service Item - + &Pridať k vybranej Položke služby - + You must select one or more items to preview. - + K náhľadu je potrebné vybrať jednu alebo viac položiek. - + You must select one or more items to send live. - + Pre zobrazenie naživo je potrebné vybrať jednu alebo viac položiek. - + You must select one or more items. - + Je potrebné vybrať jednu alebo viac položiek. - + You must select an existing service item to add to. - + K pridaniu je potrebné vybrať existujúcu položku služby. - + Invalid Service Item - + Neplatná Položka služby - + You must select a %s service item. - + Je potrebné vybrať %s položku služby. - + You must select one or more items to add. - + Pre pridanie je potrebné vybrať jednu alebo viac položiek. - + No Search Results - + Žiadne výsledky vyhľadávania. - + Invalid File Type - + Neplatný typ súboru. - + Invalid File %s. Suffix not supported - + Nepltný súbor %s. Prípona nieje podporována. &Clone - + &Klonovať - + Duplicate files were found on import and were ignored. - + Pri importe boli nájdené duplicitné súbory, ktoré boli ignorované. OpenLP.OpenLyricsImportError - + <lyrics> tag is missing. - + <verse> tag is missing. @@ -3740,42 +3692,42 @@ Suffix not supported OpenLP.PluginForm - + Plugin List - + Zoznam modulov. - + Plugin Details - + Podrobnosti k modulu. - + Status: - + Stav: - + Active - + Aktívny - + Inactive - + Neaktívny - + %s (Inactive) - + %s (Active) - + %s (Disabled) @@ -3783,116 +3735,116 @@ Suffix not supported OpenLP.PrintServiceDialog - + Fit Page - + Prispôsobiť stránke - + Fit Width - + Prispôsobiť šírke OpenLP.PrintServiceForm - + Options - + Možnosti - + Copy - + Kopírovať - + Copy as HTML - + Kopírovať ako HTML - + Zoom In - + Zväčšiť - + Zoom Out - + Zmenšiť - + Zoom Original - + Pôvodná veľkosť - + Other Options - + Ostatné možnosti - + Include slide text if available - + Zahrnúť text snímku, ak je k dispozícii - + Include service item notes - + Zahrnúť poznámky položky služby - + Include play length of media items - + Zahrnúť dĺžku prehrávania mediálnych položiek - + Add page break before each text item - + Pridať zalomenie stránky pred každou položkou textu - + Service Sheet - + List služby - + Print - - - - - Title: - + Tlač + Title: + Nadpis: + + + Custom Footer Text: - + Vlastný text zápätia: OpenLP.ScreenList - + Screen - + Obrazovka - + primary - + Primárny OpenLP.ServiceItem - + <strong>Start</strong>: %s - + <strong>Length</strong>: %s @@ -3900,552 +3852,551 @@ Suffix not supported OpenLP.ServiceItemEditForm - + Reorder Service Item - + Zmeniť poradie položky služby OpenLP.ServiceManager - + Move to &top - + Move item to the top of the service. - + Move &up - + Move item up one position in the service. - + Move &down - + Move item down one position in the service. - + Move to &bottom - + Move item to the end of the service. - + &Delete From Service - + Delete the selected item from the service. - + &Add New Item - + &Add to Selected Item - + &Edit Item - + &Reorder Item - + &Notes - + &Change Item Theme - + OpenLP Service Files (*.osz) - + File is not a valid service. The content encoding is not UTF-8. - + File is not a valid service. - + Missing Display Handler - + Your item cannot be displayed as there is no handler to display it - + Your item cannot be displayed as the plugin required to display it is missing or inactive - + &Expand all - + Expand all the service items. - + &Collapse all - + Collapse all the service items. - + Open File Otvor súbor - + 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. - + Načítať existujúcu službu. - + Save this service. - + Uložiť túto službu. - + Select a theme for the service. - + Vybrať motív pre službu. - + This file is either corrupt or it is not an OpenLP 2.0 service file. - - - - - Service File Missing - - - - - Slide theme - + Tento súbor je poškodený alebo to nieje súbor so službou OpenLP 2.0. - Notes - + Slide theme + Motív snímku - + + Notes + Poznámky + + + Edit - + Service copy only - + Error Saving File Chyba pri ukladaní súboru. - + There was an error saving your file. Chyba pri ukladaní súboru. - - File missing from service + + Service File(s) Missing + + + + + The following file(s) in the service are missing: +%s - %s - -Continue saving? +These files will be removed if you continue to save. OpenLP.ServiceNoteForm - + Service Item Notes - + Poznámky položky služby OpenLP.SettingsForm - + Configure OpenLP - + Nastaviť OpenLP OpenLP.ShortcutListDialog - + Action - + Činnosť - + Shortcut - + Skratka - + Duplicate Shortcut - + Duplicitná skratka - + The shortcut "%s" is already assigned to another action, please use a different shortcut. - + Alternate - + Alternatíva - + Select an action and click one of the buttons below to start capturing a new primary or alternate shortcut, respectively. - + Zadanie novej hlavnej alebo alternatívnej skratky sa spustí vybraním činnosti a kliknutím na jedno z tlačidiel nižšie. - + Default - + Predvolený - + Custom - + Používateľský - + Capture shortcut. - + Zachytiť skratku. - + Restore the default shortcut of this action. - + Obnoviť predvolenú skratku činnosti. - + Restore Default Shortcuts - + Obnoviť predvolenú skratku - + Do you want to restore all shortcuts to their defaults? - + Chcete obnoviť všetky skratky na ich predvolené hodnoty? - + Configure Shortcuts - + Nastaviť skratky OpenLP.SlideController - + Hide - + Skryť - + Go To - + Prejsť na - + Blank Screen - + Prázdna obrazovka - + Blank to Theme - + Prázdny motív - + Show Desktop - + Zobraziť plochu - + Previous Service - + Predchádzajúca služba - + Next Service - + Nasledujúca služba - + Escape Item - + Zrušiť položku - + Move to previous. - + Presun na predchádzajúcu - + Move to next. - + Presun na nasledujúcu - + Play Slides - + Prehrať snímky - + Delay between slides in seconds. - + Oneskorenie medzi snímkami v sekundách. - + Move to live. - + Presun naživo. - + Add to Service. - + Pridať k službe. - + Edit and reload song preview. - + Upraviť a znovu načítať náhľad piesne. - + Start playing media. - + Spustiť prehrávanie média. - + Pause audio. - + Pozastaviť zvuk. - + Pause playing media. - + Pozastaviť prehrávanie média. - + Stop playing media. - + Zastaviť prehrávanie média. - + Video position. - + Umiestnenie videa. - + Audio Volume. - + Hlasitosť zvuku. - + Go to "Verse" - + Prejsť na "Sloha" - + Go to "Chorus" - + Prejsť na "Refrén" - + Go to "Bridge" - + Prejsť na "Prechod" - + Go to "Pre-Chorus" - + Prejsť na "Predrefrén" - + Go to "Intro" - + Prejsť na "Úvod" - + Go to "Ending" - + Prejsť na "Zakončenie" - + Go to "Other" - + Prejsť na "Ostatné" - + Previous Slide - + Next Slide - + Pause Audio - + Background Audio - + Zvuk v pozadí - + Go to next audio track. - + Tracks @@ -4453,17 +4404,17 @@ Continue saving? OpenLP.SpellTextEdit - + Spelling Suggestions - + Formatting Tags - + Language: Jazyk: @@ -4471,67 +4422,67 @@ Continue saving? OpenLP.StartTimeForm - + Hours: - + Minutes: - + Seconds: - + Item Start and Finish Time - + Start - + Finish - + Koniec - + 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. @@ -4539,198 +4490,198 @@ Continue saving? 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) - + You must select a theme to edit. - + You are unable to delete the default theme. - + Theme %s is used in the %s plugin. - + You have not selected a theme. - + Save Theme - (%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? - + You must select a theme to delete. - + Delete Confirmation - + Delete %s theme? - + Validation Error - + A theme with this name already exists. - + OpenLP Themes (*.theme *.otz) - + Copy of %s Copy of <theme name> - + Theme Already Exists - + Theme %s already exists. Do you want to replace it? @@ -4738,312 +4689,312 @@ Continue saving? 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 - + Tučné - + Italic - + Footer Area Font Details - + Define the font and display characteristics for the Footer text - + Text Formatting Details - + Allows additional display formatting information to be defined - + Horizontal Align: - + Left - + Right - + Center - + Output Area Locations - + Allows you to change and move the main and footer areas. - + &Main Area - + &Use default location - + X position: - + px - + Y position: - + Width: - + Height: - + Use default location - + Theme name: - + Edit Theme - %s - + This wizard will help you to create and edit your themes. Click the next button below to start the process by setting up your background. - + Transitions: - + &Footer Area - + Starting color: - + Ending color: - + Background color: Farba pozadia: - + Justify - + Layout Preview - + Transparent - + Preview and Save - + Preview the theme and save it. - + (approximately %d lines per slide) - + Background Image Empty - + You have not selected a background image. Please select one before continuing. - + Select Image - + Theme Name Missing - + There is no name for this theme. Please enter one. - + Theme Name Invalid - + Invalid theme name. Please enter one. @@ -5051,47 +5002,47 @@ Continue saving? 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 @@ -5099,315 +5050,315 @@ Continue saving? OpenLP.Ui - + Error - + About - + &Add - + Advanced Pokročilé - + All Files - + Bottom - + Browse... - + Cancel - + CCLI number: - + Create a new service. - + &Delete - + &Edit - + Empty Field - + Export - + pt Abbreviated font pointsize unit - + Image Obrázok - + 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 - + Nevybraná žiadna položka - + openlp.org 1.x - + 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 - + 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"... - + 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. - + Open %s File - + %p% - + Ready. - + Starting import... - + You need to specify at least one %s file to import from. A file type e.g. OpenSong @@ -5418,278 +5369,278 @@ Continue saving? - + 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 - + Predvolený - + 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? - + Settings - + Tools - + Unsupported File Nepodporovaný súbor - + Verse Per Slide - + Verse Per Line - + View - + Title and/or verses not found - + XML syntax error - + 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 Vybrali ste nesprávny priečinok - + Invalid File Selected Singular Vybrali ste nesprávny súbor - + Invalid Files Selected Plural Vybrali ste nesprávne súbory - + No Folder Selected Singular Nevybrali ste žiadny priečinok - + Open %s Folder Otvorte %s Priečinok - + You need to specify one %s file to import from. A file type e.g. OpenSong Určte jeden %s súbor z kade sa bude importovať. - + You need to specify one %s folder to import from. A song format e.g. PowerSong Určte jeden %s priečinok z kade sa bude importovať. - + Importing Songs @@ -5697,25 +5648,25 @@ Continue saving? 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 @@ -5724,50 +5675,50 @@ Continue saving? 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 - + Presentations name plural Prezentácie - + Presentations container title Prezentácie - + Load a new presentation. - + Delete the selected presentation. - + Preview the selected presentation. - + Send the selected presentation live. - + Add the selected presentation to the service. @@ -5775,52 +5726,52 @@ Continue saving? PresentationPlugin.MediaItem - + Select Presentation(s) - + Automatic Automatický - + Present using: - + File Exists - + A presentation with that filename already exists. - + This type of presentation is not supported. - + Presentations (%s) - + Missing Presentation - + The presentation %s is incomplete, please reload. Prezentácia %s nie je kompletná, opäť ju načítajte. - + The presentation %s no longer exists. Prezentácia %s už neexistuje. @@ -5828,17 +5779,17 @@ Continue saving? PresentationPlugin.PresentationTab - + Available Controllers - + %s (unavailable) %s (nedostupné) - + Allow presentation application to be overridden @@ -5846,24 +5797,24 @@ Continue saving? 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 - + Remotes name plural - + Remote container title @@ -5872,150 +5823,160 @@ Continue saving? RemotePlugin.Mobile - + OpenLP 2.0 Remote - + OpenLP 2.0 Stage View - + Service Manager - + Správca Služby - + Slide Controller - + Alerts Upozornenia - + Search - + Refresh - + Blank - + Show - + Prev - + Next - + Text - + Show Alert - + Go Live - + No Results - + Options - + Možnosti - + Add to Service - + Home - + Theme - + Desktop - + Add &amp; Go to Service + + + Service + + + + + Slides + + RemotePlugin.RemoteTab - + Serve on IP address: - + Port number: - + Server Settings - + Remote URL: - + Stage view URL: - + Display stage time in 12h format - + Android App - + Scan the QR code or click <a href="https://play.google.com/store/apps/details?id=org.openlp.android">download</a> to install the Android app from Google Play. @@ -6023,85 +5984,85 @@ Continue saving? 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. - + SongUsage name singular - + SongUsage name plural - + SongUsage container title - + Song Usage - + Song usage tracking is active. - + Song usage tracking is inactive. - + display - + printed @@ -6109,32 +6070,32 @@ Continue saving? 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. @@ -6142,54 +6103,54 @@ Continue saving? SongUsagePlugin.SongUsageDetailForm - + Song Usage Extraction - + Select Date Range - + to - + Report Location - + Output File Location - + usage_detail_%s_%s.txt - + Report Creation - + Report %s 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. @@ -6197,178 +6158,178 @@ 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. - + &Re-index Songs - + Re-index the songs database to improve searching and ordering. - + Reindexing songs... - + Arabic (CP-1256) - + Baltic (CP-1257) - + Central European (CP-1250) - + Cyrillic (CP-1251) - + Greek (CP-1253) - + Hebrew (CP-1255) - + Japanese (CP-932) - + Korean (CP-949) - + Simplified Chinese (CP-936) - + Thai (CP-874) - + Traditional Chinese (CP-950) - + Turkish (CP-1254) - + Vietnam (CP-1258) - + Western European (CP-1252) - + Character Encoding - + 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 - + Songs name plural Piesne - + Songs container title Piesne - + 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. - + Reindexing songs @@ -6376,37 +6337,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? @@ -6414,7 +6375,7 @@ The encoding is responsible for the correct character representation. SongsPlugin.CCLIFileImport - + The file does not have a valid extension. @@ -6422,12 +6383,12 @@ The encoding is responsible for the correct character representation. SongsPlugin.EasyWorshipSongImport - + Administered by %s - + [above are Song Tags with notes imported from EasyWorship] @@ -6437,12 +6398,12 @@ The encoding is responsible for the correct character representation. SongsPlugin.EditBibleForm - + Meta Data - + Custom Book Names @@ -6450,202 +6411,202 @@ The encoding is responsible for the correct character representation. SongsPlugin.EditSongForm - + Song Editor - + &Title: &Názov: - + Alt&ernate title: - + &Lyrics: - + &Verse order: - + Ed&it All Upra&iť všetky - + Title && Lyrics - + &Add to Song - + &Remove - + &Manage Authors, Topics, Song Books - + A&dd to Song - + R&emove - + Book: Kniha: - + 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. - + Add Book - + This song book does not exist, do you want to add it? - + You need to have an author for this song. - + Linked Audio - + Add &File(s) - + Add &Media - + Remove &All - + Open File(s) - + <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. @@ -6653,22 +6614,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. @@ -6676,82 +6637,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. @@ -6759,172 +6720,172 @@ 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.org v1.x Databases - + Words Of Worship Song Files - + Songs Of Fellowship Song Files - + SongBeamer Files - + SongShow Plus Song Files - + Foilpresenter Song Files - + Copy - + Kopírovať - + Save to File Uložiť do súboru - + The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. - + The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. - + OpenLyrics or OpenLP 2.0 Exported Song - + OpenLyrics Files - + CCLI SongSelect Files - + EasySlides XML File - + EasyWorship Song Database - + DreamBeam Song Files Súbory Piesní DreamBeam - + You need to specify a valid PowerSong 1.0 database folder. Musíte upresniť správny priečinok PowerSong 1.0 databázy. - + 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>. Najprv prekonvertuj tvoju ZionWorx databázu na CSV textový súbor, ako je to vysvetlené v <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">Užívateľskom Manuály</a>. - + SundayPlus Song Files - + This importer has been disabled. - + MediaShout Database - + The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. - + SongPro Text Files - + SongPro (Export File) - + In SongPro, export your songs using the File -> Export menu @@ -6932,12 +6893,12 @@ The encoding is responsible for the correct character representation. 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. @@ -6955,7 +6916,7 @@ The encoding is responsible for the correct character representation. - + CCLI License: @@ -6965,7 +6926,7 @@ The encoding is responsible for the correct character representation. - + Are you sure you want to delete the %n selected song(s)? @@ -6979,7 +6940,7 @@ The encoding is responsible for the correct character representation. - + copy For song cloning @@ -7013,7 +6974,7 @@ The encoding is responsible for the correct character representation. SongsPlugin.MediaShoutImport - + Unable to open the MediaShout database. @@ -7021,7 +6982,7 @@ The encoding is responsible for the correct character representation. SongsPlugin.OpenLP1SongImport - + Not a valid openlp.org 1.x song database. @@ -7029,7 +6990,7 @@ The encoding is responsible for the correct character representation. SongsPlugin.OpenLPSongImport - + Not a valid OpenLP 2.0 song database. @@ -7037,7 +6998,7 @@ The encoding is responsible for the correct character representation. SongsPlugin.OpenLyricsExport - + Exporting "%s"... @@ -7045,32 +7006,32 @@ The encoding is responsible for the correct character representation. SongsPlugin.PowerSongImport - + No songs to import. Žiadne piesne nie sú na vloženie. - + Verses not found. Missing "PART" header. Verše neboli nájdené. Chýba "ČASŤ" hlavička. - + No %s files found. - + Invalid %s file. Unexpected byte value. - + Invalid %s file. Missing "TITLE" header. - + Invalid %s file. Missing "COPYRIGHTLINE" header. @@ -7078,22 +7039,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. @@ -7101,12 +7062,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. @@ -7114,27 +7075,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 - + Unable to open file - + File not found @@ -7142,107 +7103,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? - + 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? @@ -7250,27 +7211,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 @@ -7278,17 +7239,17 @@ The encoding is responsible for the correct character representation. SongsPlugin.TopicsForm - + Topic Maintenance - + Topic name: - + You need to type in a topic name. @@ -7296,37 +7257,37 @@ The encoding is responsible for the correct character representation. SongsPlugin.VerseType - + Verse - + Chorus - + Bridge - + Pre-Chorus - + Intro - + Ending - + Other @@ -7334,27 +7295,27 @@ The encoding is responsible for the correct character representation. SongsPlugin.ZionWorxImport - + Error reading CSV file. Chyba pri čítaní CSV súboru. - + File not valid ZionWorx CSV format. Súbor nie je validný ZionWorx CSV formátu. - + Line %d: %s - + Decoding error: %s - + Record %d diff --git a/resources/i18n/sq.ts b/resources/i18n/sq.ts index a791fe0e0..c540cedcf 100644 --- a/resources/i18n/sq.ts +++ b/resources/i18n/sq.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. @@ -39,68 +39,68 @@ 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? @@ -117,32 +117,32 @@ Do you want to continue anyway? AlertsPlugin.AlertsTab - + Font - + Font name: - + Font color: - + Background color: - + Font size: - + Alert timeout: @@ -150,510 +150,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. - + &Upgrade older Bibles - + Upgrade the Bible databases to the latest 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. @@ -662,44 +662,44 @@ 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. - + 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". - + 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. @@ -707,38 +707,38 @@ be followed by one or more non-numeric characters. BiblesPlugin.BibleManager - + Scripture Reference Error - + Web Bible cannot be used - + 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. - + 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 @@ -754,127 +754,127 @@ 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. - + 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 Shqiptar - + Default Bible Language - + Book name language in search field, search results and on display: - + Bible Language - + Application Language @@ -882,42 +882,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. @@ -925,7 +925,7 @@ search results and on display: BiblesPlugin.BookNameForm - + You need to select a book. @@ -933,18 +933,18 @@ search results and on display: BiblesPlugin.CSVBible - + Importing books... %s - + Importing verses from %s... Importing verses from <book name>... - + Importing verses... done. @@ -952,68 +952,68 @@ 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 Shqiptar - + 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. @@ -1021,38 +1021,38 @@ It is not possible to customize the Book Names. BiblesPlugin.HTTPBible - + Registering Bible and loading books... - + Registering Language... - + Importing %s... Importing <book name>... - + Download Error - + There was a problem downloading your verse selection. Please check your Internet connection, and if this error continues to occur please consider reporting a bug. - + Parse Error - + There was a problem extracting your verse selection. If this error continues to occur please consider reporting a bug. @@ -1229,17 +1229,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. - + Language: @@ -1247,7 +1247,7 @@ demand and thus an internet connection is required. BiblesPlugin.LanguageForm - + You need to choose a language. @@ -1255,92 +1255,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. - + Search Scripture Reference... - + Search Text... - + Are you sure you want to completely delete "%s" Bible from OpenLP? You will need to re-import this Bible to use it again. @@ -1350,7 +1350,7 @@ You will need to re-import this Bible to use it again. BiblesPlugin.OpenSongImport - + Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. @@ -1358,7 +1358,7 @@ You will need to re-import this Bible to use it again. BiblesPlugin.Opensong - + Importing %s %s... Importing <book name> <chapter>... @@ -1367,12 +1367,12 @@ You will need to re-import this Bible to use it again. BiblesPlugin.OsisImport - + Detecting encoding (this may take a few minutes)... - + Importing %s %s... Importing <book name> <chapter>... @@ -1381,143 +1381,143 @@ You will need to re-import this Bible to use it again. 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. - + 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>. - + 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 - + Upgrading Bible %s of %s: "%s" Upgrading ... - + Download Error - + To upgrade your Web Bibles an Internet connection is required. - + Upgrading Bible %s of %s: "%s" Upgrading %s ... - + Upgrading Bible %s of %s: "%s" Complete - + , %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 - + Upgrade failed. - + You need to specify a backup directory for your Bibles. - + Starting upgrade... - + There are no Bibles that need to be upgraded. @@ -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. - + 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. @@ -1591,12 +1591,12 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I CustomPlugin.CustomTab - + Custom Display - + Display footer @@ -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 - + &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 @@ -1667,7 +1667,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I CustomPlugin.EditVerseForm - + Edit Slide @@ -1675,7 +1675,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)? @@ -1686,60 +1686,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 - + 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. @@ -1747,7 +1747,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I ImagePlugin.ExceptionDialog - + Select Attachment @@ -1755,43 +1755,43 @@ 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 - + The following image(s) no longer exist: %s Do you want to add the other images anyway? - + There was a problem replacing your background, the image file "%s" no longer exists. - + There was no display item to amend. @@ -1799,17 +1799,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. @@ -1817,60 +1817,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. - - - Media - name singular - - 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. @@ -1878,57 +1878,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. - + Missing Media File - + The file %s no longer exists. - + Videos (%s);;Audio (%s);;%s (*) - + There was no display item to amend. - + Unsupported File - + Automatic - + Use Player: @@ -1936,22 +1936,22 @@ Do you want to add the other images anyway? MediaPlugin.MediaTab - + Available Media Players - + %s (unavailable) - + Player Order - + Allow media player to be overridden @@ -1959,17 +1959,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? @@ -1979,32 +1979,54 @@ Should OpenLP upgrade now? OpenLP.AboutForm - + Credits - + License - + 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 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. - + + Copyright © 2004-2012 %s +Portions copyright © 2004-2012 %s + + + + + 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. + +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 volunteering by using the button below. + + + + + Volunteer + + + + Project Lead %s @@ -2023,12 +2045,20 @@ Packagers Translators Afrikaans (af) %s + Czeck (cs) + %s + Danish (da) + %s German (de) %s + Greek (el) + %s English, United Kingdom (en_GB) %s English, South Africa (en_ZA) %s + Spanish (es) + %s Estonian (et) %s French (fr) @@ -2045,13 +2075,15 @@ Translators %s Russian (ru) %s + Swedish (sv) + %s Documentation %s Built With Python: http://www.python.org/ - Qt4: http://qt.nokia.com/ + Qt4: http://qt.digia.com/ PyQt4: http://www.riverbankcomputing.co.uk/software/pyqt/intro Oxygen Icons: http://oxygen-icons.org/ @@ -2068,205 +2100,183 @@ Final Credit He has set us free. - - - Copyright © 2004-2012 %s -Portions copyright © 2004-2012 %s - - - - - 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. - -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 volunteering by using the button below. - - - - - Volunteer - - 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. - + 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 @@ -2276,94 +2286,94 @@ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for - + 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. - + 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 - + OpenLP data directory was not found %s @@ -2376,7 +2386,7 @@ Click "Yes" to reset the data directory to the default location. - + Are you sure you want to change the location of the OpenLP data directory to: %s @@ -2385,7 +2395,7 @@ The data directory will be changed when OpenLP is closed. - + WARNING: The location you have selected @@ -2399,38 +2409,38 @@ appears to contain OpenLP data files. Do you wish to replace these files with t 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. - + Send E-Mail - + Save to File - + Please enter a description of what you were doing to cause this error (Minimum 20 characters) - + Attach File - + Description characters to enter : %s @@ -2438,23 +2448,23 @@ appears to contain OpenLP data files. Do you wish to replace these files with t OpenLP.ExceptionForm - + Platform: %s - + Save Crash Report - + Text files (*.txt *.log *.text) - + **OpenLP Bug Report** Version: %s @@ -2472,7 +2482,7 @@ Version: %s - + *OpenLP Bug Report* Version: %s @@ -2494,17 +2504,17 @@ Version: %s OpenLP.FileRenameForm - + File Rename - + New File Name: - + File Copy @@ -2512,17 +2522,17 @@ Version: %s OpenLP.FirstTimeLanguageForm - + Select Translation - + Choose the translation you'd like to use in OpenLP. - + Translation: @@ -2530,199 +2540,199 @@ 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... - + Download complete. Click the finish button to start 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. - + 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. - + Setting Up And Downloading - + Please wait while OpenLP is set up and your data is downloaded. - + Setting Up - + Click the finish button to start OpenLP. - + Download complete. Click the finish button to return to OpenLP. - + Click the finish button to return to 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. - + To cancel the First Time Wizard completely (and not start OpenLP), click the Cancel button now. @@ -2732,37 +2742,37 @@ 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 HTML - + End HTML @@ -2770,32 +2780,32 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can OpenLP.FormattingTagForm - + Update Error - + Tag "n" already defined. - + New Tag - + <HTML here> - + </and here> - + Tag %s already defined. @@ -2803,82 +2813,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 @@ -2886,122 +2896,122 @@ 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 - + SongSelect username: - + SongSelect password: - + X - + Y - + Height - + Width - + Check for updates to OpenLP - + Unblank display when adding new live item - + Timed slide interval: - + Background Audio - + Start background audio paused @@ -3011,12 +3021,12 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can - + Override display position: - + Repeat track list @@ -3044,12 +3054,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. @@ -3057,7 +3067,7 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can OpenLP.MainDisplay - + OpenLP Display @@ -3065,438 +3075,438 @@ 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 - + &Theme - + &Configure 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 - + &Online Help - + &Web Site - + Use the system language, if available. - + Set the interface language to %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/. - + OpenLP Version Updated - + OpenLP Main Display Blanked - + The Main Display has been blanked out - + Default Theme: %s - + English Please add the name of your language here Shqiptar - + Configure &Shortcuts... - + Close OpenLP - + Are you sure you want to close 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. - + Clear List Clear List of recent files - + Clear the list of recent files. - + Configure &Formatting Tags... - + Export OpenLP settings to a specified *.config file - + Settings - + Import OpenLP settings from a specified *.config file previously exported on this or another machine - + Import settings? - + Are you sure you want to import settings? Importing settings will make permanent changes to your current OpenLP configuration. @@ -3505,42 +3515,42 @@ Importing incorrect settings may cause erratic behaviour or OpenLP to terminate - + Open File - + OpenLP Export Settings Files (*.conf) - + Import settings - + 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 - + The file you selected does appear to be a valid OpenLP settings file. Section [%s] is not valid @@ -3549,12 +3559,12 @@ Processing has terminated and no changed have been made. - + Copying OpenLP data to new data directory location - %s - Please wait for copy to finish - + OpenLP Data directory copy failed %s @@ -3564,19 +3574,19 @@ Processing has terminated and no changed have been made. 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 - + OpenLP cannot load your database. Database: %s @@ -3586,62 +3596,62 @@ 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. - + You must select one or more items to add. - + No Search Results - + Invalid File Type - + Invalid File %s. Suffix not supported @@ -3652,7 +3662,7 @@ Suffix not supported - + Duplicate files were found on import and were ignored. @@ -3660,12 +3670,12 @@ Suffix not supported OpenLP.OpenLyricsImportError - + <lyrics> tag is missing. - + <verse> tag is missing. @@ -3673,42 +3683,42 @@ Suffix not supported OpenLP.PluginForm - + Plugin List - + Plugin Details - + Status: - + Active - + Inactive - + %s (Inactive) - + %s (Active) - + %s (Disabled) @@ -3716,12 +3726,12 @@ Suffix not supported OpenLP.PrintServiceDialog - + Fit Page - + Fit Width @@ -3729,77 +3739,77 @@ Suffix not supported OpenLP.PrintServiceForm - + Options - + Copy - + Copy as 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: @@ -3807,12 +3817,12 @@ Suffix not supported OpenLP.ScreenList - + Screen - + primary @@ -3820,12 +3830,12 @@ Suffix not supported OpenLP.ServiceItem - + <strong>Start</strong>: %s - + <strong>Length</strong>: %s @@ -3833,7 +3843,7 @@ Suffix not supported OpenLP.ServiceItemEditForm - + Reorder Service Item @@ -3841,295 +3851,294 @@ Suffix not supported OpenLP.ServiceManager - + Move to &top - + Move item to the top of the service. - + Move &up - + Move item up one position in the service. - + Move &down - + Move item down one position in the service. - + Move to &bottom - + Move item to the end of the service. - + &Delete From Service - + Delete the selected item from the service. - + &Add New Item - + &Add to Selected Item - + &Edit Item - + &Reorder Item - + &Notes - + &Change Item Theme - + OpenLP Service Files (*.osz) - + File is not a valid service. The content encoding is not UTF-8. - + File is not a valid service. - + Missing Display Handler - + Your item cannot be displayed as there is no handler to display it - + Your item cannot be displayed as the plugin required to display it is missing or inactive - + &Expand all - + Expand all the service items. - + &Collapse all - + Collapse all the service items. - + Open File - + Moves the selection down the window. - + Move up - + Moves the selection up the window. - + Go Live - + Send the selected item to Live. - + &Start Time - + Show &Preview - + 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. - - Service File Missing - - - - + Slide theme - + Notes - + Edit - + Service copy only - + Error Saving File - + There was an error saving your file. - - File missing from service + + Service File(s) Missing + + + + + The following file(s) in the service are missing: +%s - %s - -Continue saving? +These files will be removed if you continue to save. OpenLP.ServiceNoteForm - + Service Item Notes @@ -4137,7 +4146,7 @@ Continue saving? OpenLP.SettingsForm - + Configure OpenLP @@ -4145,67 +4154,67 @@ Continue saving? OpenLP.ShortcutListDialog - + Action - + Shortcut - + Duplicate Shortcut - + The shortcut "%s" is already assigned to another action, please use a different shortcut. - + 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 @@ -4213,172 +4222,172 @@ Continue saving? 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. - + 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 @@ -4386,17 +4395,17 @@ Continue saving? OpenLP.SpellTextEdit - + Spelling Suggestions - + Formatting Tags - + Language: @@ -4404,67 +4413,67 @@ Continue saving? 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. @@ -4472,198 +4481,198 @@ Continue saving? 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) - + You must select a theme to edit. - + You are unable to delete the default theme. - + Theme %s is used in the %s plugin. - + You have not selected a theme. - + Save Theme - (%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? - + You must select a theme to delete. - + Delete Confirmation - + Delete %s theme? - + Validation Error - + A theme with this name already exists. - + OpenLP Themes (*.theme *.otz) - + Copy of %s Copy of <theme name> - + Theme Already Exists - + Theme %s already exists. Do you want to replace it? @@ -4671,312 +4680,312 @@ Continue saving? OpenLP.ThemeWizard - + Theme Wizard - + Welcome to the Theme Wizard - + Set Up Background - + Set up your theme's background according to the parameters below. - + Background type: - + Solid Color - + Gradient - + Color: - + Gradient: - + Horizontal - + Vertical - + Circular - + Top Left - Bottom Right - + Bottom Left - Top Right - + Main Area Font Details - + Define the font and display characteristics for the Display text - + Font: - + Size: - + Line Spacing: - + &Outline: - + &Shadow: - + Bold - + Italic - + Footer Area Font Details - + Define the font and display characteristics for the Footer text - + Text Formatting Details - + Allows additional display formatting information to be defined - + Horizontal Align: - + Left - + Right - + Center - + Output Area Locations - + Allows you to change and move the main and footer areas. - + &Main Area - + &Use default location - + X position: - + px - + Y position: - + Width: - + Height: - + Use default location - + Theme name: - + Edit Theme - %s - + This wizard will help you to create and edit your themes. Click the next button below to start the process by setting up your background. - + Transitions: - + &Footer Area - + Starting color: - + Ending color: - + Background color: - + Justify - + Layout Preview - + Transparent - + Preview and Save - + Preview the theme and save it. - + (approximately %d lines per slide) - + Background Image Empty - + You have not selected a background image. Please select one before continuing. - + Select Image - + Theme Name Missing - + There is no name for this theme. Please enter one. - + Theme Name Invalid - + Invalid theme name. Please enter one. @@ -4984,47 +4993,47 @@ Continue saving? 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 @@ -5032,315 +5041,315 @@ Continue saving? OpenLP.Ui - + Error - + About - + &Add - + Advanced - + All Files - + Bottom - + Browse... - + Cancel - + CCLI number: - + Create a new service. - + &Delete - + &Edit - + Empty Field - + Export - + pt Abbreviated font pointsize unit - + 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 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 - + 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"... - + 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. - + Open %s File - + %p% - + Ready. - + Starting import... - + You need to specify at least one %s file to import from. A file type e.g. OpenSong @@ -5351,278 +5360,278 @@ Continue saving? - + 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? - + Settings - + Tools - + Unsupported File - + Verse Per Slide - + Verse Per Line - + View - + Title and/or verses not found - + XML syntax error - + 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 - + 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 - + Importing Songs @@ -5630,25 +5639,25 @@ Continue saving? 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 @@ -5657,50 +5666,50 @@ Continue saving? 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 - + 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. @@ -5708,52 +5717,52 @@ Continue saving? PresentationPlugin.MediaItem - + Select Presentation(s) - + Automatic - + Present using: - + File Exists - + A presentation with that filename already exists. - + This type of presentation is not supported. - + Presentations (%s) - + Missing Presentation - + The presentation %s is incomplete, please reload. - + The presentation %s no longer exists. @@ -5761,17 +5770,17 @@ Continue saving? PresentationPlugin.PresentationTab - + Available Controllers - + %s (unavailable) - + Allow presentation application to be overridden @@ -5779,24 +5788,24 @@ Continue saving? 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 - + Remotes name plural - + Remote container title @@ -5805,150 +5814,160 @@ Continue saving? RemotePlugin.Mobile - + OpenLP 2.0 Remote - + OpenLP 2.0 Stage View - + 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 &amp; Go to Service + + + Service + + + + + Slides + + RemotePlugin.RemoteTab - + Serve on IP address: - + Port number: - + Server Settings - + Remote URL: - + Stage view URL: - + Display stage time in 12h format - + Android App - + Scan the QR code or click <a href="https://play.google.com/store/apps/details?id=org.openlp.android">download</a> to install the Android app from Google Play. @@ -5956,85 +5975,85 @@ Continue saving? 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. - + SongUsage name singular - + SongUsage name plural - + SongUsage container title - + Song Usage - + Song usage tracking is active. - + Song usage tracking is inactive. - + display - + printed @@ -6042,32 +6061,32 @@ Continue saving? 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. @@ -6075,54 +6094,54 @@ Continue saving? SongUsagePlugin.SongUsageDetailForm - + Song Usage Extraction - + Select Date Range - + to - + Report Location - + Output File Location - + usage_detail_%s_%s.txt - + Report Creation - + Report %s 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. @@ -6130,178 +6149,178 @@ 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. - + &Re-index Songs - + Re-index the songs database to improve searching and ordering. - + Reindexing songs... - + Arabic (CP-1256) - + Baltic (CP-1257) - + Central European (CP-1250) - + Cyrillic (CP-1251) - + Greek (CP-1253) - + Hebrew (CP-1255) - + Japanese (CP-932) - + Korean (CP-949) - + Simplified Chinese (CP-936) - + Thai (CP-874) - + Traditional Chinese (CP-950) - + Turkish (CP-1254) - + Vietnam (CP-1258) - + Western European (CP-1252) - + Character Encoding - + 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 - + 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. - + Reindexing songs @@ -6309,37 +6328,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? @@ -6347,7 +6366,7 @@ The encoding is responsible for the correct character representation. SongsPlugin.CCLIFileImport - + The file does not have a valid extension. @@ -6355,12 +6374,12 @@ The encoding is responsible for the correct character representation. SongsPlugin.EasyWorshipSongImport - + Administered by %s - + [above are Song Tags with notes imported from EasyWorship] @@ -6370,12 +6389,12 @@ The encoding is responsible for the correct character representation. SongsPlugin.EditBibleForm - + Meta Data - + Custom Book Names @@ -6383,202 +6402,202 @@ 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. - + Add Book - + This song book does not exist, do you want to add it? - + You need to have an author for this song. - + Linked Audio - + Add &File(s) - + Add &Media - + Remove &All - + Open File(s) - + <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. @@ -6586,22 +6605,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. @@ -6609,82 +6628,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. @@ -6692,172 +6711,172 @@ 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.org v1.x Databases - + Words Of Worship Song Files - + Songs Of Fellowship Song Files - + SongBeamer Files - + SongShow Plus Song Files - + Foilpresenter Song Files - + Copy - + Save to File - + The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. - + The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. - + OpenLyrics or OpenLP 2.0 Exported Song - + OpenLyrics Files - + 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 - + This importer has been disabled. - + MediaShout Database - + The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. - + SongPro Text Files - + SongPro (Export File) - + In SongPro, export your songs using the File -> Export menu @@ -6865,12 +6884,12 @@ The encoding is responsible for the correct character representation. 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. @@ -6888,7 +6907,7 @@ The encoding is responsible for the correct character representation. - + CCLI License: @@ -6898,7 +6917,7 @@ The encoding is responsible for the correct character representation. - + Are you sure you want to delete the %n selected song(s)? @@ -6911,7 +6930,7 @@ The encoding is responsible for the correct character representation. - + copy For song cloning @@ -6945,7 +6964,7 @@ The encoding is responsible for the correct character representation. SongsPlugin.MediaShoutImport - + Unable to open the MediaShout database. @@ -6953,7 +6972,7 @@ The encoding is responsible for the correct character representation. SongsPlugin.OpenLP1SongImport - + Not a valid openlp.org 1.x song database. @@ -6961,7 +6980,7 @@ The encoding is responsible for the correct character representation. SongsPlugin.OpenLPSongImport - + Not a valid OpenLP 2.0 song database. @@ -6969,7 +6988,7 @@ The encoding is responsible for the correct character representation. SongsPlugin.OpenLyricsExport - + Exporting "%s"... @@ -6977,32 +6996,32 @@ The encoding is responsible for the correct character representation. SongsPlugin.PowerSongImport - + No songs to import. - + Verses not found. Missing "PART" header. - + No %s files found. - + Invalid %s file. Unexpected byte value. - + Invalid %s file. Missing "TITLE" header. - + Invalid %s file. Missing "COPYRIGHTLINE" header. @@ -7010,22 +7029,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. @@ -7033,12 +7052,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. @@ -7046,27 +7065,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 - + Unable to open file - + File not found @@ -7074,107 +7093,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? - + 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? @@ -7182,27 +7201,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 @@ -7210,17 +7229,17 @@ The encoding is responsible for the correct character representation. SongsPlugin.TopicsForm - + Topic Maintenance - + Topic name: - + You need to type in a topic name. @@ -7228,37 +7247,37 @@ The encoding is responsible for the correct character representation. SongsPlugin.VerseType - + Verse - + Chorus - + Bridge - + Pre-Chorus - + Intro - + Ending - + Other @@ -7266,27 +7285,27 @@ The encoding is responsible for the correct character representation. SongsPlugin.ZionWorxImport - + Error reading CSV file. - + File not valid ZionWorx CSV format. - + Line %d: %s - + Decoding error: %s - + Record %d diff --git a/resources/i18n/sv.ts b/resources/i18n/sv.ts index cf3a3a7e9..1cd278cbe 100644 --- a/resources/i18n/sv.ts +++ b/resources/i18n/sv.ts @@ -3,35 +3,35 @@ AlertsPlugin - + &Alert &Meddelande - + Show an alert message. Visa ett publikt meddelande. - + Alert name singular Meddelande - + Alerts name plural Meddelanden - + Alerts container title Meddelanden - + <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of nursery alerts on the display screen. <strong>Meddelandemodul</strong><br />Meddelandemodulen kontrollerar visningen av publika meddelanden på visningsskärmen. @@ -39,69 +39,69 @@ AlertsPlugin.AlertForm - + Alert Message Meddelande - + Alert &text: Meddelande&text: - + &New &Nytt - + &Save &Spara - + Displ&ay &Visa - + Display && Cl&ose Visa && stän&g - + New Alert Nytt meddelande - + You haven't specified any text for your alert. Please type in some text before clicking New. Du har inte angivit någon text för ditt meddelande. Ange en text innan du klickar på Nytt. - + &Parameter: &Parameter: - + No Parameter Found Parameter saknas - + You have not entered a parameter to be replaced. Do you want to continue anyway? Du har inte angivit någon parameter. Vill du fortsätta ändå? - + No Placeholder Found Platshållare saknas - + The alert text does not contain '<>'. Do you want to continue anyway? Meddelandet innehåller inte '<>'. @@ -119,32 +119,32 @@ Vill du fortsätta ändå? AlertsPlugin.AlertsTab - + Font Teckensnitt - + Font name: Teckensnitt: - + Font color: Teckenfärg: - + Background color: Bakgrundsfärg: - + Font size: Teckenstorlek: - + Alert timeout: Visningstid: @@ -152,510 +152,510 @@ Vill du fortsätta ändå? BiblesPlugin - + &Bible &Bibel - + Bible name singular Bibel - + Bibles name plural Biblar - + Bibles container title Biblar - + No Book Found Bok saknas - + No matching book could be found in this Bible. Check that you have spelled the name of the book correctly. Ingen bok hittades i vald bibel. Kontrollera stavningen av bokens namn. - + Import a Bible. Importera en bibelöversättning. - + Add a new Bible. Lägg till en ny bibel. - + Edit the selected Bible. Redigera vald bibel. - + Delete the selected Bible. Ta bort vald bibel. - + Preview the selected Bible. Förhandsgranska bibeltexten. - + Send the selected Bible live. Visa bibeltexten live. - + Add the selected Bible to the service. Lägg till bibeltexten i körschemat. - + <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display Bible verses from different sources during the service. <strong>Bibelmodul</strong><br />Bibelmodulen gör det möjligt att visa bibelverser från olika översättningar under gudstjänsten. - + &Upgrade older Bibles &Uppgradera äldre biblar - + Upgrade the Bible databases to the latest format. Uppgradera bibeldatabasen till det senaste formatet. - + Genesis Första Moseboken - + Exodus Andra Moseboken - + Leviticus Tredje Moseboken - + Numbers Fjärde Moseboken - + Deuteronomy Femte Moseboken - + Joshua Josua - + Judges Domarboken - + Ruth Rut - + 1 Samuel Första Samuelsboken - + 2 Samuel Andra Samuelsboken - + 1 Kings Första Kungaboken - + 2 Kings Andra Kungaboken - + 1 Chronicles Första Krönikeboken - + 2 Chronicles Andra Krönikeboken - + Ezra Esra - + Nehemiah Nehemja - + Esther Ester - + Job Job - + Psalms Psaltaren - + Proverbs Ordspråksboken - + Ecclesiastes Predikaren - + Song of Solomon Höga Visan - + Isaiah Jesaja - + Jeremiah Jeremia - + Lamentations Klagovisorna - + Ezekiel Hesekiel - + Daniel Daniel - + Hosea Hosea - + Joel Joel - + Amos Amos - + Obadiah Obadja - + Jonah Jona - + Micah Mika - + Nahum Nahum - + Habakkuk Habackuk - + Zephaniah Sefanja - + Haggai Haggaj - + Zechariah Sakarja - + Malachi Malaki - + Matthew Matteusevangeliet - + Mark Markusevangeliet - + Luke Lukasevangeliet - + John Johannesevangeliet - + Acts Apostlagärningarna - + Romans Romarbrevet - + 1 Corinthians Första Korinthierbrevet - + 2 Corinthians Andra Korinthierbrevet - + Galatians Galaterbrevet - + Ephesians Efesierbrevet - + Philippians Filipperbrevet - + Colossians Kolosserbrevet - + 1 Thessalonians Första Thessalonikerbrevet - + 2 Thessalonians Andra Thessalonikerbrevet - + 1 Timothy Första Timotheosbrevet - + 2 Timothy Andra Timotheosbrevet - + Titus Titusbrevet - + Philemon Filemonbrevet - + Hebrews Hebreerbrevet - + James Jakobsbrevet - + 1 Peter Första Petrusbrevet - + 2 Peter Andra Petrusbrevet - + 1 John Första Johannesbrevet - + 2 John Andra Johannesbrevet - + 3 John Tredje Johannesbrevet - + Jude Judasbrevet - + Revelation Uppenbarelseboken - + Judith Judit - + Wisdom Salomos vishet - + Tobit Tobit - + Sirach Jesus Syraks vishet - + Baruch Baruk - + 1 Maccabees Första Mackabeerboken - + 2 Maccabees Andra Mackabeerboken - + 3 Maccabees Tredje Mackabeerboken - + 4 Maccabees Fjärde Mackabeerboken - + Rest of Daniel Tillägg till Daniel - + Rest of Esther Ester enligt den grekiska texten - + Prayer of Manasses Manasses bön - + Letter of Jeremiah Jeremias brev - + Prayer of Azariah Asarjas bön - + Susanna Susanna i badet - + Bel Bel i Babylon - + 1 Esdras Tredje Esra - + 2 Esdras Fjärde Esra - + :|v|V|verse|verses;;-|to;;,|and;;end Double-semicolon delimited separators for parsing references. Consult the developers for further information. :|v|V|vers|verser;;-|till;;,|och;;slut @@ -664,32 +664,32 @@ Vill du fortsätta ändå? BiblesPlugin.BibleEditForm - + You need to specify a version name for your Bible. Du måste ange ett namn på bibelöversättningen. - + You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. Du måste ange copyright för bibeln. Biblar i public domain måste markeras som sådana. - + Bible Exists Bibeln finns redan - + This Bible already exists. Please import a different Bible or first delete the existing one. Bibeln finns redan. Importera en annan bibel eller ta först bort den existerande. - + You need to specify a book name for "%s". Du måste ange ett boknamn för "%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 @@ Siffror kan bara användas i början och måste följas av ett eller flera ickenumeriska tecken. - + Duplicate Book Name Dublettnamn på bok - + The Book Name "%s" has been entered more than once. Boknamnet "%s" har angivits flera gånger. @@ -711,39 +711,39 @@ följas av ett eller flera ickenumeriska tecken. BiblesPlugin.BibleManager - + Scripture Reference Error Felaktig bibelreferens - + Web Bible cannot be used Webb-bibel kan inte användas - + Text Search is not available with Web Bibles. Textsökning är inte tillgänglig för webb-biblar. - + 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 angav inget sökord. Du kan ange flera sökord avskilda med mellanslag för att söka på alla sökord och du kan avskilja sökorden med kommatecken för att söka efter ett av sökorden. - + There are no Bibles currently installed. Please use the Import Wizard to install one or more Bibles. Det finns inga biblar installerade. Använd guiden för bibelimport och installera en eller flera bibelöversättningar. - + No Bibles Available Inga biblar tillgängliga - + 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 @@ Bok Kapitel%(verse)sVers%(range)sKapitel%(verse)sVers BiblesPlugin.BiblesTab - + Verse Display Visning av bibeltext - + Only show new chapter numbers Visa bara nummer för nya kapitel - + Bible theme: Bibeltema: - + No Brackets Inga parenteser - + ( And ) ( och ) - + { And } { och } - + [ And ] [ och ] - + Note: Changes do not affect verses already in the service. Observera: Ändringar kommer inte att påverka verser som redan finns i körschemat. - + Display second Bible verses Visa andra bibelns verser - + Custom Scripture References Anpassade bibelreferenser - + Verse Separator: Versavskiljare: - + Range Separator: Intervallavskiljare: - + List Separator: Listavskiljare: - + End Mark: Slutmärke: - + 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 @@ De måste separeras med ett lodrätt streck "|". Lämna fältet tomt för att använda standardvärdet. - + 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 @@ De måste separeras med ett lodrätt streck "|". Lämna fältet tomt för att använda standardvärdet. - + 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 @@ De måste separeras med ett lodrätt streck "|". Lämna fältet tomt för att använda standardvärdet. - + 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 @@ De måste separeras med ett lodrätt streck "|". Lämna fältet tomt för att använda standardvärdet. - + English Engelska - + Default Bible Language Förvalt bibelspråk - + Book name language in search field, search results and on display: Språk på boknamn i sökfält, sökresultat och vid visning: - + Bible Language Bibelspråk - + Application Language Programmets språk @@ -904,42 +904,42 @@ sökresultat och vid visning: BiblesPlugin.BookNameDialog - + Select Book Name Välj bok - + Current name: Nuvarande namn: - + Corresponding name: Motsvarande namn: - + Show Books From Visa böcker från - + Old Testament Gamla testamentet - + New Testament Nya testamentet - + Apocrypha Apokryferna - + The following book name cannot be matched up internally. Please select the corresponding name from the list. Följande boknamn kan inte kopplas till någon bok. Välj tillhörande namn från listan. @@ -947,7 +947,7 @@ sökresultat och vid visning: BiblesPlugin.BookNameForm - + You need to select a book. Du måste välja en bok. @@ -955,18 +955,18 @@ sökresultat och vid visning: BiblesPlugin.CSVBible - + Importing books... %s Importerar böcker... %s - + Importing verses from %s... Importing verses from <book name>... Importerar verser från %s... - + Importing verses... done. Importerar verser... klart. @@ -974,69 +974,69 @@ sökresultat och vid visning: BiblesPlugin.EditBibleForm - + Bible Editor Bibelredigering - + License Details Licensdetaljer - + Version name: Namn på översättningen: - + Copyright: Copyright: - + Permissions: Tillstånd: - + Default Bible Language Förvalt bibelspråk - + Book name language in search field, search results and on display: Språk på boknamn i sökfält, sökresultat och vid visning: - + Global Settings Globala inställningar - + Bible Language Bibelspråk - + Application Language Programmets språk - + English Engelska - + This is a Web Download Bible. It is not possible to customize the Book Names. Det här är en webb-bibel. Det går inte att anpassa boknamnen. - + 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. För att kunna använda anpassade boknamn måste "Bibelspråk" vara valt under fliken "Metadata" eller, om "Globala inställningar" är valt, på bibelsidan i OpenLP-inställningarna. @@ -1044,38 +1044,38 @@ Det går inte att anpassa boknamnen. BiblesPlugin.HTTPBible - + Registering Bible and loading books... Registrerar bibel och laddar böcker... - + Registering Language... Registrerar språk... - + Importing %s... Importing <book name>... Importerar %s... - + Download Error Fel vid nedladdning - + There was a problem downloading your verse selection. Please check your Internet connection, and if this error continues to occur please consider reporting a bug. Det uppstod problem vid nedladdningen av versurvalet. Kontrollera Internetanslutningen och om problemet återkommer, överväg att rapportera det som en bugg. - + Parse Error Fel vid tolkning - + There was a problem extracting your verse selection. If this error continues to occur please consider reporting a bug. Det uppstod problem vid extraherande av vers-urvalet. Om problemet uppstår igen, överväg att rapportera det som en bugg. @@ -1253,17 +1253,17 @@ vid behov, och därför behövs en Internetanslutning. BiblesPlugin.LanguageDialog - + Select Language Välj språk - + OpenLP is unable to determine the language of this translation of the Bible. Please select the language from the list below. OpenLP kan inte avgöra den här bibelöversättningens språk. Välj språk från listan nedan. - + Language: Språk: @@ -1271,7 +1271,7 @@ vid behov, och därför behövs en Internetanslutning. BiblesPlugin.LanguageForm - + You need to choose a language. Du måste välja ett språk. @@ -1279,92 +1279,92 @@ vid behov, och därför behövs en Internetanslutning. BiblesPlugin.MediaItem - + Quick Enkelt - + Find: Sök efter: - + Book: Bok: - + Chapter: Kapitel: - + Verse: Vers: - + From: Från: - + To: Till: - + Text Search Textsökning - + Second: Alternativ: - + Scripture Reference Bibelreferens - + Toggle to keep or clear the previous results. Växla mellan att behålla eller rensa föregående sökresultat. - + 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 inte kombinera resultat från sökning i en bibel med resultat från sökning i två biblar. Vill du ta bort dina sökresultat och starta en ny sökning? - + Bible not fully loaded. Bibeln är inte helt laddad. - + 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 alternativa bibelöversättningen innehåller inte alla verser som finns i huvudöversättningen. Endast verser som finns i båda översättningar kommer att visas. %d verser har utelämnats. - + Search Scripture Reference... Sök bibelvers... - + Search Text... Sök text... - + Are you sure you want to completely delete "%s" Bible from OpenLP? You will need to re-import this Bible to use it again. @@ -1376,7 +1376,7 @@ För att bibeln ska gå att använda igen måste den importeras på nytt. BiblesPlugin.OpenSongImport - + Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. Ogiltig filtyp på den valda bibeln. OpenSong-biblar kan vara komprimerade. Du måste packa upp dem före import. @@ -1384,7 +1384,7 @@ För att bibeln ska gå att använda igen måste den importeras på nytt. BiblesPlugin.Opensong - + Importing %s %s... Importing <book name> <chapter>... Importerar %s %s... @@ -1393,12 +1393,12 @@ För att bibeln ska gå att använda igen måste den importeras på nytt. BiblesPlugin.OsisImport - + Detecting encoding (this may take a few minutes)... Analyserar kodning (detta kan ta några minuter)... - + Importing %s %s... Importing <book name> <chapter>... Importerar %s %s... @@ -1407,149 +1407,149 @@ För att bibeln ska gå att använda igen måste den importeras på nytt. BiblesPlugin.UpgradeWizardForm - + Select a Backup Directory Välj en backupmapp - + Bible Upgrade Wizard Bibeluppgraderingsguiden - + 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. Den här guiden hjälper dig att uppgradera dina befintliga biblar från en tidigare version av OpenLP 2. Klicka på Nästa för att starta uppgraderingsprocessen. - + Select Backup Directory Välj backupmapp - + Please select a backup directory for your Bibles Välj en mapp för backup av dina biblar - + 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>. - Tidigare utgåvor av OpenLP 2.0 kan inte använda uppgraderade biblar. Nu skapas en backup av dina nuvarande biblar så att du enkelt kan kopiera tillbaks filerna till din OpenLP-datamapp om du skulle behöva återgå till en tidigare utgåva av OpenLP. Instruktioner om hur man återställer finns i vår <a href="http://wiki.openlp.org/faq">FAQ</a>. + Tidigare utgåvor av OpenLP 2.0 kan inte använda uppgraderade biblar. Nu skapas en backup av dina nuvarande biblar så att du enkelt kan kopiera tillbaks filerna till din OpenLP-datakatalog om du skulle behöva återgå till en tidigare utgåva av OpenLP. Instruktioner om hur man återställer finns i vår <a href="http://wiki.openlp.org/faq">FAQ</a>. - + Please select a backup location for your Bibles. Välj en mapp för backup av dina biblar. - + Backup Directory: Backupmapp: - + There is no need to backup my Bibles Det är inte nödvändigt med backup av mina biblar - + Select Bibles Välj biblar - + Please select the Bibles to upgrade Välj biblar att uppgradera - + Upgrading Uppgraderar - + Please wait while your Bibles are upgraded. Vänta medan biblarna uppgraderas. - + The backup was not successful. To backup your Bibles you need permission to write to the given directory. Backuptagningen lyckades inte. För att kunna göra backup av dina biblar krävs skrivrättigheter i den givna mappen. - + Upgrading Bible %s of %s: "%s" Failed Uppgraderar bibel %s av %s: "%s" Misslyckades - + Upgrading Bible %s of %s: "%s" Upgrading ... Uppgraderar bibel %s av %s: "%s" Uppgraderar ... - + Download Error Fel vid nedladdning - + To upgrade your Web Bibles an Internet connection is required. För att uppgradera dina webb-biblar krävs en Internetanslutning. - + Upgrading Bible %s of %s: "%s" Upgrading %s ... Uppgraderar bibel %s av %s: "%s" Uppgraderar %s ... - + Upgrading Bible %s of %s: "%s" Complete Uppgraderar bibel %s av %s: "%s" Färdig - + , %s failed , %s misslyckades - + 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. Uppgradering av biblar: %s lyckades%s Observera att verser från webb-biblar kommer att laddas ner vid behov, och därför behövs en Internetanslutning. - + Upgrading Bible(s): %s successful%s Uppgradering av biblar: %s lyckades%s - + Upgrade failed. Uppgradering misslyckades. - + You need to specify a backup directory for your Bibles. Du måste välja en backupmapp för dina biblar. - + Starting upgrade... Startar uppgradering... - + There are no Bibles that need to be upgraded. Det finns inga biblar som behöver uppgraderas. @@ -1557,65 +1557,65 @@ Observera att verser från webb-biblar kommer att laddas ner vid behov, och där 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 för anpassade sidor</strong><br />Modulen för anpassade sidor ger möjlighet att skapa anpassade sidor med text som kan visas på skärmen på samma sätt som sånger. Modulen ger större frihet jämfört med sångmodulen. - + Custom Slide name singular Anpassad sida - + Custom Slides name plural Anpassad sida - + Custom Slides container title Anpassade sidor - + Load a new custom slide. Ladda en ny uppsättning sidor. - + Import a custom slide. Importera en uppsättning sidor. - + Add a new custom slide. Lägg till en ny uppsättning sidor. - + Edit the selected custom slide. Redigera den valda uppsättningen sidor. - + Delete the selected custom slide. Ta bort den valda uppsättningen sidor. - + Preview the selected custom slide. Förhandsgranska den valda uppsättningen sidor. - + Send the selected custom slide live. Visa den valda uppsättningen sidor live. - + Add the selected custom slide to the service. Lägg till den valda uppsättningen sidor i körschemat. @@ -1623,12 +1623,12 @@ Observera att verser från webb-biblar kommer att laddas ner vid behov, och där CustomPlugin.CustomTab - + Custom Display Anpassad visning - + Display footer Visa sidfot @@ -1636,62 +1636,62 @@ Observera att verser från webb-biblar kommer att laddas ner vid behov, och där CustomPlugin.EditCustomForm - + Edit Custom Slides Redigera anpassade diabilder - + &Title: &Titel: - + Add a new slide at bottom. Lägg till en ny diabild sist. - + Edit the selected slide. Redigera vald diabild. - + Edit all the slides at once. Redigera alla diabilder på en gång. - + Split a slide into two by inserting a slide splitter. Dela diabilden i två genom att lägga till en diabild delare. - + The&me: Te&ma: - + &Credits: &Erkännande: - + You need to type in a title. Du måste ange en titel. - + You need to add at least one slide Du måste lägga till minst en diabild - + Ed&it All Red&igera alla - + Insert Slide Infoga sida @@ -1699,7 +1699,7 @@ Observera att verser från webb-biblar kommer att laddas ner vid behov, och där CustomPlugin.EditVerseForm - + Edit Slide Redigera bild @@ -1707,7 +1707,7 @@ Observera att verser från webb-biblar kommer att laddas ner vid behov, och där CustomPlugin.MediaItem - + Are you sure you want to delete the %n selected custom slide(s)? Är du säker på att du vill ta bort den valda bilden? @@ -1718,60 +1718,60 @@ Observera att verser från webb-biblar kommer att laddas ner vid behov, och där 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>Bildmodul</strong><br />Bildmodulen erbjuder visning av bilder.<br />En av funktionerna i modulen är möjligheten att gruppera bilder i körschemat, vilket gör visning av flera bilder enklare. Modulen kan även använda OpenLP:s funktion för "tidsstyrd bildväxling" för att skapa ett bildspel som rullar automatiskt. Dessutom kan bilder från modulen användas för att ersätta det aktuella temats bakgrund, så att textbaserade sidor som till exempel sånger visas med den valda bilden som bakgrund i stället för temats bakgrund. - + Image name singular Bild - + Images name plural Bilder - + Images container title Bilder - + Load a new image. Ladda en ny bild. - + Add a new image. Lägg till en ny bild. - + Edit the selected image. Redigera den valda bilden. - + Delete the selected image. Ta bort den valda bilden. - + Preview the selected image. Förhandsgranska den valda bilden. - + Send the selected image live. Visa den valda bilden live. - + Add the selected image to the service. Lägg till den valda bilden i körschemat. @@ -1779,7 +1779,7 @@ Observera att verser från webb-biblar kommer att laddas ner vid behov, och där ImagePlugin.ExceptionDialog - + Select Attachment Välj bilaga @@ -1787,44 +1787,44 @@ Observera att verser från webb-biblar kommer att laddas ner vid behov, och där ImagePlugin.MediaItem - + Select Image(s) Välj bild(er) - + You must select an image to delete. Du måste välja en bild som skall tas bort. - + You must select an image to replace the background with. Du måste välja en bild att ersätta bakgrundsbilden med. - + Missing Image(s) Bild(er) saknas - + The following image(s) no longer exist: %s Följande bild(er) finns inte längre: %s - + The following image(s) no longer exist: %s Do you want to add the other images anyway? Följande bild(er) finns inte längre: %s Vill du lägga till dom andra bilderna ändå? - + There was a problem replacing your background, the image file "%s" no longer exists. Det uppstod ett problem med att ersätta din bakgrund, bildfilen "%s" finns inte längre. - + There was no display item to amend. Det fanns ingen visningspost att ändra. @@ -1832,17 +1832,17 @@ Vill du lägga till dom andra bilderna ändå? ImagesPlugin.ImageTab - + Background Color Bakgrundsfärg - + Default Color: Standardfärg: - + Visible background for images with aspect ratio different to screen. Synlig bakgrund för bilder med annat bildformat än skärmen. @@ -1850,60 +1850,60 @@ Vill du lägga till dom andra bilderna ändå? MediaPlugin - + <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. <strong>Mediamodul</strong><br />Mediamodulen gör det möjligt att spela upp ljud och video. - + Media name singular Media - + Media name plural Media - + Media container title Media - + Load new media. Ladda en ny mediafil. - + Add new media. Lägg till media. - + Edit the selected media. Redigera den valda mediaposten. - + Delete the selected media. Ta bort den valda mediaposten. - + Preview the selected media. Förhandsgranska den valda mediaposten. - + Send the selected media live. Visa den valda mediaposten live. - + Add the selected media to the service. Lägg till den valda mediaposten i körschemat. @@ -1911,57 +1911,57 @@ Vill du lägga till dom andra bilderna ändå? MediaPlugin.MediaItem - + Select Media Välj media - + You must select a media file to delete. Du måste välja en mediafil för borttagning. - + You must select a media file to replace the background with. Du måste välja en mediafil att ersätta bakgrunden med. - + There was a problem replacing your background, the media file "%s" no longer exists. Det uppstod problem när bakgrunden skulle ersättas: mediafilen "%s" finns inte längre. - + Missing Media File Mediafil saknas - + The file %s no longer exists. Filen %s finns inte längre. - + Videos (%s);;Audio (%s);;%s (*) Videor (%s);;Ljud (%s);;%s (*) - + There was no display item to amend. Det fanns ingen visningspost att ändra. - + Unsupported File Ej stödd fil - + Automatic Automatiskt - + Use Player: Använd uppspelare: @@ -1969,22 +1969,22 @@ Vill du lägga till dom andra bilderna ändå? MediaPlugin.MediaTab - + Available Media Players Tillgängliga mediaspelare - + %s (unavailable) %s (ej tillgänglig) - + Player Order Spelarordning - + Allow media player to be overridden Tillåt åsidosättning av vald mediaspelare @@ -1992,17 +1992,17 @@ Vill du lägga till dom andra bilderna ändå? OpenLP - + Image Files Bildfiler - + Information Information - + Bible format has changed. You have to upgrade your existing Bibles. Should OpenLP upgrade now? @@ -2014,32 +2014,61 @@ Ska OpenLP uppgradera nu? OpenLP.AboutForm - + Credits Lista över medverkande - + License Licens - + 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. Det här programmet är fri mjukvara; du får sprida den vidare och/eller ändra i den under villkoren i GNU General Public License så som publicerade av Free Software Foundation; version 2 av 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. Det här programmet ges ut i hopp om att det kan vara användbart, men UTAN NÅGON GARANTI; inte ens någon underförstådd garanti vid köp eller lämplighet för ett särskilt ändamål. Se nedan för mer detaljer. - + + Copyright © 2004-2012 %s +Portions copyright © 2004-2012 %s + Copyright © 2004-2012 %s +Del-copyright © 2004-2012 %s + + + + 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. + +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 volunteering by using the button below. + OpenLP <version><revision> - Öppen källkods-program för sångvisning + +OpenLP är fri mjukvara för kyrkpresentation eller sångvisning, gjord för att visa sångtexter, bibeltexter, videor, bilder och även presentationer (om Impress, PowerPoint eller PowerPoint Viewer är installerat) i gudstjänster med hjälp av dator och projektor. + +Läs mer om OpenLP: http://openlp.org/ + +OpenLP utvecklas och underhålls av frivilliga. Om du vill se mer fri kristen mjukvara utvecklad, klicka gärna på knappen nedan för att se hur du kan bidra. + + + + Volunteer + Bidra + + + Project Lead %s @@ -2058,12 +2087,20 @@ Packagers Translators Afrikaans (af) %s + Czeck (cs) + %s + Danish (da) + %s German (de) %s + Greek (el) + %s English, United Kingdom (en_GB) %s English, South Africa (en_ZA) %s + Spanish (es) + %s Estonian (et) %s French (fr) @@ -2080,13 +2117,15 @@ Translators %s Russian (ru) %s + Swedish (sv) + %s Documentation %s Built With Python: http://www.python.org/ - Qt4: http://qt.nokia.com/ + Qt4: http://qt.digia.com/ PyQt4: http://www.riverbankcomputing.co.uk/software/pyqt/intro Oxygen Icons: http://oxygen-icons.org/ @@ -2101,268 +2140,185 @@ Final Credit on the cross, setting us free from sin. We bring this software to you for free because He has set us free. - Projektledning - %s - -Utvecklare - %s - -Med hjälp från - %s - -Testare - %s - -Packetering - %s - -Översättare - Afrikaans (af) - %s - Tyska (de) - %s - Engelska, brittisk (en_GB) - %s - Engelska, sydafrikansk (en_ZA) - %s - Estniska (et) - %s - Franska (fr) - %s - Ungerska (hu) - %s - Japanska (ja) - %s - Norska (bokmål) (nb) - %s - Nederländska (nl) - %s - Portugisiska, brasiliansk (pt_BR) - %s - Ryska (ru) - %s - -Dokumentation - %s - -Byggt med - Python: http://www.python.org/ - Qt4: http://qt.nokia.com/ - PyQt4: http://www.riverbankcomputing.co.uk/software/pyqt/intro - Oxygen Icons: http://oxygen-icons.org/ - -Slutligt tack - "Så älskade Gud världen att han gav den - sin ende son, för att de som tror på honom - inte skall gå under utan ha evigt liv." - -- Joh 3:16 - - Och sist men inte minst, slutligt tack går till - Gud, vår far, för att han sände sin son för - att dö på korset och befria oss från synden. - Vi ger den här mjukvaran till dig fritt, - eftersom han har gjort oss fria. - - - - Copyright © 2004-2012 %s -Portions copyright © 2004-2012 %s - Copyright © 2004-2012 %s -Del-copyright © 2004-2012 %s - - - - 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. - -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 volunteering by using the button below. - - - - - Volunteer OpenLP.AdvancedTab - + UI Settings Inställningar för användargränssnitt - + Number of recent files to display: Antal tidigare körscheman att visa: - + Remember active media manager tab on startup Kom ihåg aktiv mediaflik vid start - + Double-click to send items straight to live Dubbelklicka för att visa poster live - + Expand new service items on creation Expandera nya poster i körschemat vid skapandet - + Enable application exit confirmation Bekräfta för att avsluta programmet - + Mouse Cursor Muspekare - + Hide mouse cursor when over display window Dölj muspekaren över visningsfönstret - + Default Image Standardbild - + Background color: Bakgrundsfärg: - + Image file: Bildfil: - + Open File Öppna fil - + Advanced Avancerat - + Preview items when clicked in Media Manager Förhandsgranska poster vid klick i mediahanteraren - + Click to select a color. Klicka för att välja en färg. - + Browse for an image file to display. Välj en bildfil att visa. - + Revert to the default OpenLP logo. Återställ till OpenLP:s standardlogotyp. - + 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. Körschema %Y-%m-%d %H-%M - + Default Service Name Förvalt namn på körschema - + Enable default service name Aktivera förvalt namn på körschema - + Date and Time: Datum och tid: - + Monday Måndag - + Tuesday Tisdag - + Wednesday Onsdag - + Thurdsday Torsdag - + Friday Fredag - + Saturday Lördag - + Sunday Söndag - + Now Nu - + Time when usual service starts. Tid när schemat vanligen börjar. - + Name: Namn: - + Consult the OpenLP manual for usage. Läs i OpenLP-manualen för information om funktionen. - + Revert to the default service name "%s". Återställ till körschemats standardnamn "%s". - + Example: Exempel: - + X11 X11 @@ -2372,82 +2328,82 @@ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for Kringgå X11:s fönsterhanterare - + Syntax error. Syntaxfel. - + Data Location Datalagring - + Current path: Nuvarande sökväg: - + Custom path: Anpassad sökväg: - + Browse for new data file location. Bläddra efter ny plats för datalagring. - + Set the data location to the default. Återställ plats för datalagring till standardinställningen. - + Cancel Avbryt - + Cancel OpenLP data directory location change. Avbryt ändring av plats för OpenLP:s datalagring. - + Copy data to new location. Kopiera data till ny plats. - + Copy the OpenLP data files to the new location. Kopiera OpenLP:s data till den nya platsen. - + <strong>WARNING:</strong> New data directory location contains OpenLP data files. These files WILL be replaced during a copy. <strong>VARNING:</strong> Den nya datakatalogen innehåller OpenLP-datafiler. Dessa filer kommer att ersättas vid kopieringen. - + Data Directory Error Datakatalogfel - + Select Data Directory Location Välj plats för datakatalog - + Confirm Data Directory Change Bekräfta ändring av datakatalog - + Reset Data Directory Återställ datakatalog - + 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. @@ -2456,12 +2412,12 @@ This location will be used after OpenLP is closed. Den nya platsen kommer att användas efter att OpenLP har avslutats. - + Overwrite Existing Data Skriv över befintlig data - + OpenLP data directory was not found %s @@ -2471,19 +2427,31 @@ This data directory was previously changed from the OpenLP default location. If Click "No" to stop loading OpenLP. allowing you to fix the the problem. Click "Yes" to reset the data directory to the default location. - + OpenLP:s datakatalog hittades inte + +%s + +Datakatalogen har tidigare ändrats från OpenLP:s förvalda plats. Om den nya platsen var på ett portabelt lagringsmedium måste det finnas tillgängligt. + +Klicka "Nej" för att avbryta starten av OpenLP så att du kan lösa problemet. + +Klicka "Ja" för att återställa datakatalogen till förvald plats. - + Are you sure you want to change the location of the OpenLP data directory to: %s The data directory will be changed when OpenLP is closed. - + Är du säker på att du vill ändra plats för OpenLP:s datakatalog till: + +%s + +Datakatalogen kommer att ändras när OpenLP avslutas. - + WARNING: The location you have selected @@ -2491,45 +2459,51 @@ The location you have selected %s appears to contain OpenLP data files. Do you wish to replace these files with the current data files? - + VARNING: + +Platsen du valde + +%s + +verkar innehålla OpenLP-data. Vill du ersätta de filerna med nuvarande data? OpenLP.ExceptionDialog - + Error Occurred Fel uppstod - + 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. Hoppsan! OpenLP stötte på ett problem som inte hanterades. Texten i rutan nedan innehåller information som kan vara användbar för utvecklarna av OpenLP, så e-posta den gärna till bugs@openlp.org, tillsammans med en detaljerad beskrivning av vad du gjorde när problemet uppstod. - + Send E-Mail Skicka e-post - + Save to File Spara till fil - + Please enter a description of what you were doing to cause this error (Minimum 20 characters) Skriv gärna en beskrivning av vad du gjorde för att få det här felet (minst 20 tecken) - + Attach File Lägg till fil - + Description characters to enter : %s Beskrivningstecken att ange: %s @@ -2537,24 +2511,24 @@ appears to contain OpenLP data files. Do you wish to replace these files with t OpenLP.ExceptionForm - + Platform: %s Plattform: %s - + Save Crash Report Spara kraschrapport - + Text files (*.txt *.log *.text) Textfiler (*.txt *.log *.text) - + **OpenLP Bug Report** Version: %s @@ -2585,7 +2559,7 @@ Version: %s - + *OpenLP Bug Report* Version: %s @@ -2620,17 +2594,17 @@ Version: %s OpenLP.FileRenameForm - + File Rename Byt namn på fil - + New File Name: Nytt filnamn: - + File Copy Kopiera fil @@ -2638,17 +2612,17 @@ Version: %s OpenLP.FirstTimeLanguageForm - + Select Translation Välj språk - + Choose the translation you'd like to use in OpenLP. Välj språk som du vill använda i OpenLP. - + Translation: Språk: @@ -2656,192 +2630,192 @@ Version: %s OpenLP.FirstTimeWizard - + Songs Sånger - + First Time Wizard Kom igång-guiden - + Welcome to the First Time Wizard Välkommen till kom igång-guiden - + Activate required Plugins Aktivera önskade moduler - + Select the Plugins you wish to use. Välj de moduler du vill använda. - + Bible Bibel - + Images Bilder - + Presentations Presentationer - + Media (Audio and Video) Media (ljud och video) - + Allow remote access Tillåt fjärråtkomst - + Monitor Song Usage Loggning av sånganvändning - + Allow Alerts Tillåt meddelanden - + Default Settings Standardinställningar - + Downloading %s... Hämtar %s... - + Download complete. Click the finish button to start OpenLP. Nedladdning färdig. Klicka på Slutför för att starta OpenLP. - + Enabling selected plugins... Aktivera valda moduler... - + No Internet Connection Ingen Internetanslutning - + Unable to detect an Internet connection. Lyckades inte ansluta till Internet. - + Sample Songs Exempelsånger - + Select and download public domain songs. Välj och ladda ner sånger som är i public domain. - + Sample Bibles Exempelbiblar - + Select and download free Bibles. Välj och ladda ner fria bibelöversättningar. - + Sample Themes Exempelteman - + Select and download sample themes. Välj och ladda ner exempelteman. - + Set up default settings to be used by OpenLP. Gör standardinställningar för OpenLP. - + Default output display: Standardskärm för visning: - + Select default theme: Välj standardtema: - + Starting configuration process... Startar konfigurationsprocess... - + This wizard will help you to configure OpenLP for initial use. Click the next button below to start. Den här guiden hjälper dig att ställa in OpenLP före första användningen. Klicka på Nästa för att starta. - + Setting Up And Downloading Ställer in och laddar ner - + Please wait while OpenLP is set up and your data is downloaded. Vänta medan OpenLP ställs in och din data laddas ner. - + Setting Up Ställer in - + Click the finish button to start OpenLP. Klicka på Slutför för att starta OpenLP. - + Download complete. Click the finish button to return to OpenLP. Nedladdning färdig. Klicka på Slutför för att återvända till OpenLP. - + Click the finish button to return to OpenLP. Klicka på Slutför för att återvända till OpenLP. - + Custom Slides Anpassade sidor - + Finish Slutför - + 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. @@ -2850,7 +2824,7 @@ To re-run the First Time Wizard and import this sample data at a later time, che För att köra Kom igång-guiden igen och importera exempeldatan senare, kontrollera din Internetanslutning och starta om den här guiden genom att välja "Verktyg/Kör kom igång-guiden" från OpenLP. - + To cancel the First Time Wizard completely (and not start OpenLP), click the Cancel button now. @@ -2862,37 +2836,37 @@ För att avbryta Kom igång-guiden helt (och inte starta OpenLP), klicka på kna OpenLP.FormattingTagDialog - + Configure Formatting Tags Konfigurera format-taggar - + Edit Selection Redigera val - + Save Spara - + Description Beskrivning - + Tag Tagg - + Start HTML Start-HTML - + End HTML Slut-HTML @@ -2900,32 +2874,32 @@ För att avbryta Kom igång-guiden helt (och inte starta OpenLP), klicka på kna OpenLP.FormattingTagForm - + Update Error Fel vid uppdatering - + Tag "n" already defined. Taggen "n" finns redan. - + New Tag Ny tagg - + <HTML here> <HTML här> - + </and here> </och här> - + Tag %s already defined. Taggen %s finns redan. @@ -2933,82 +2907,82 @@ För att avbryta Kom igång-guiden helt (och inte starta OpenLP), klicka på kna OpenLP.FormattingTags - + Red Röd - + Black Svart - + Blue Blå - + Yellow Gul - + Green Grön - + Pink Rosa - + Orange Orange - + Purple Lila - + White Vit - + Superscript Upphöjt - + Subscript Nedsänkt - + Paragraph Stycke - + Bold Fet - + Italics Kursiv - + Underline Understruken - + Break Radbrytning @@ -3016,122 +2990,122 @@ För att avbryta Kom igång-guiden helt (och inte starta OpenLP), klicka på kna OpenLP.GeneralTab - + General Allmänt - + Monitors Skärmar - + Select monitor for output display: Välj skärm för bildvisning: - + Display if a single screen Visa även på enkel skärm - + Application Startup Programstart - + Show blank screen warning Visa varning vid tom skärm - + Automatically open the last service Öppna det senaste körschemat automatiskt - + Show the splash screen Visa startbilden - + Application Settings Programinställningar - + Prompt to save before starting a new service Fråga om att spara innan ett nytt körschema skapas - + Automatically preview next item in service Förhandsgranska nästa post i körschemat automatiskt - + sec sekunder - + CCLI Details CCLI-detaljer - + SongSelect username: SongSelect användarnamn: - + SongSelect password: SongSelect lösenord: - + X X - + Y Y - + Height Höjd - + Width Bredd - + Check for updates to OpenLP Sök efter uppdateringar till OpenLP - + Unblank display when adding new live item Lägg ut bilden direkt när en ny live-bild läggs till - + Timed slide interval: Tidsstyrd bildväxling: - + Background Audio Bakgrundsljud - + Start background audio paused Starta bakgrundsljud pausat @@ -3141,12 +3115,12 @@ För att avbryta Kom igång-guiden helt (och inte starta OpenLP), klicka på kna Bildväxlingsgräns - + Override display position: Manuell skärmposition: - + Repeat track list Repetera spellistan @@ -3174,12 +3148,12 @@ För att avbryta Kom igång-guiden helt (och inte starta OpenLP), klicka på kna OpenLP.LanguageManager - + Language Språk - + Please restart OpenLP to use your new language setting. Vänligen starta om OpenLP för att aktivera dina nya språkinställningar. @@ -3187,7 +3161,7 @@ För att avbryta Kom igång-guiden helt (och inte starta OpenLP), klicka på kna OpenLP.MainDisplay - + OpenLP Display OpenLP-visning @@ -3195,287 +3169,287 @@ För att avbryta Kom igång-guiden helt (och inte starta OpenLP), klicka på kna OpenLP.MainWindow - + &File &Arkiv - + &Import &Importera - + &Export &Exportera - + &View &Visa - + M&ode &Läge - + &Tools &Verktyg - + &Settings &Inställningar - + &Language &Språk - + &Help &Hjälp - + Media Manager Mediahanterare - + Service Manager Körschema - + Theme Manager Temahanterare - + &New &Nytt - + &Open &Öppna - + Open an existing service. Öppna ett befintligt körschema. - + &Save &Spara - + Save the current service to disk. Spara det nuvarande körschemat till disk. - + Save &As... Spara s&om... - + Save Service As Spara körschema som - + Save the current service under a new name. Spara det nuvarande körschemat under ett nytt namn. - + E&xit A&vsluta - + Quit OpenLP Avsluta OpenLP - + &Theme &Tema - + &Configure OpenLP... &Konfigurera OpenLP... - + &Media Manager &Mediahanterare - + Toggle Media Manager Växla mediahanterare - + Toggle the visibility of the media manager. Växla visning av mediahanteraren. - + &Theme Manager &Temahanterare - + Toggle Theme Manager Växla temahanteraren - + Toggle the visibility of the theme manager. Växla visning av temahanteraren. - + &Service Manager &Körschema - + Toggle Service Manager Växla körschema - + Toggle the visibility of the service manager. Växla visning av körschemat. - + &Preview Panel &Förhandsgranskningpanel - + Toggle Preview Panel Växla förhandsgranskning - + Toggle the visibility of the preview panel. Växla visning av förhandsgranskning. - + &Live Panel Li&ve - + Toggle Live Panel Växla live-rutan - + Toggle the visibility of the live panel. Växla visning av live-rutan. - + &Plugin List &Modullista - + List the Plugins Lista modulerna - + &User Guide &Bruksanvisning - + &About &Om - + More information about OpenLP Mer information om OpenLP - + &Online Help &Hjälp online - + &Web Site &Webbplats - + Use the system language, if available. Använd systemspråket om möjligt. - + Set the interface language to %s Sätt användargränssnittets språk till %s - + Add &Tool... Lägg till &verktyg... - + Add an application to the list of tools. Lägg till en applikation i verktygslistan. - + &Default &Standard - + Set the view mode back to the default. Återställ visningslayouten till standardinställningen. - + &Setup &Förberedelse - + Set the view mode to Setup. Ställ in visningslayouten förberedelseläge. - + &Live &Live - + Set the view mode to Live. Ställ in visningslayouten till live-läge. - + 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/. @@ -3484,108 +3458,108 @@ You can download the latest version from http://openlp.org/. Du kan ladda ner den senaste versionen från http://openlp.org/. - + OpenLP Version Updated Ny version av OpenLP - + OpenLP Main Display Blanked OpenLPs huvudbild släckt - + The Main Display has been blanked out Huvudbilden har släckts - + Default Theme: %s Standardtema: %s - + English Please add the name of your language here Svenska - + Configure &Shortcuts... Konfigurera &genvägar... - + Close OpenLP Avsluta OpenLP - + Are you sure you want to close OpenLP? Är du säker på att du vill avsluta OpenLP? - + Open &Data Folder... - Öppna &datamapp... + Öppna &datakatalog... - + Open the folder where songs, bibles and other data resides. Öppna mappen där sånger, biblar och annan data lagras. - + &Autodetect Detektera &automatiskt - + Update Theme Images Uppdatera temabilder - + Update the preview images for all themes. Uppdatera förhandsgranskningsbilder för alla teman. - + Print the current service. Skriv ut den nuvarande körschemat. - + &Recent Files Senaste &körscheman - + L&ock Panels L&ås paneler - + Prevent the panels being moved. Förhindra att panelerna flyttas. - + Re-run First Time Wizard Kör kom igång-guiden - + Re-run the First Time Wizard, importing songs, Bibles and themes. Kör kom igång-guiden och importera sånger, biblar och teman. - + Re-run First Time Wizard? Kör kom igång-guiden? - + 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. @@ -3594,43 +3568,43 @@ Re-running this wizard may make changes to your current OpenLP configuration and Om du kör den här guiden kan din nuvarande konfiguration av OpenLP komma att ändras, sånger eventuellt läggas till din befintliga sånglista, och standardtemat bytas. - + Clear List Clear List of recent files Rensa listan - + Clear the list of recent files. Rensa listan med senaste körscheman. - + Configure &Formatting Tags... Konfigurera &format-taggar... - + Export OpenLP settings to a specified *.config file Exportera OpenLP-inställningar till en given *.config-fil - + Settings Inställningar - + Import OpenLP settings from a specified *.config file previously exported on this or another machine Importera OpenLP-inställningar från en given *.config-fil som tidigare har exporterats på den här datorn eller någon annan - + Import settings? Importera inställningar? - + Are you sure you want to import settings? Importing settings will make permanent changes to your current OpenLP configuration. @@ -3643,71 +3617,77 @@ Om du importerar inställningar görs ändringar i din nuvarande OpenLP-konfigur Att importera inställningar kan leda till oväntade beteenden eller att OpenLP avslutas onormalt. - + Open File Öppna fil - + OpenLP Export Settings Files (*.conf) OpenLP-inställningsfiler (*.conf) - + Import settings Importera inställningar - + OpenLP will now close. Imported settings will be applied the next time you start OpenLP. OpenLP kommer nu att avslutas. Importerade inställningar kommer att tillämpas nästa gång du startar OpenLP. - + Export Settings File Exportera inställningsfil - + OpenLP Export Settings File (*.conf) OpenLP-inställningsfiler (*.conf) - + New Data Directory Error Ny datakatalog-fel - + The file you selected does appear to be a valid OpenLP settings file. Section [%s] is not valid Processing has terminated and no changed have been made. - + Filen du valde verkar vara en giltig OpenLP-konfigurationsfil. + +Delen [%s] är inte giltig + +Processen har avbrutits och inga ändringar gjordes. - + Copying OpenLP data to new data directory location - %s - Please wait for copy to finish - + Kopierar OpenLP-data till ny plats för datakatalogen - %s - Vänta tills kopieringen är avslutad - + OpenLP Data directory copy failed %s - + Kopiering av OpenLP:s datakatalog misslyckades + +%s OpenLP.Manager - + Database Error Databasfel - + 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 @@ -3716,7 +3696,7 @@ Database: %s Databas: %s - + OpenLP cannot load your database. Database: %s @@ -3728,62 +3708,62 @@ Databas: %s OpenLP.MediaManagerItem - + No Items Selected Inga poster valda - + &Add to selected Service Item &Lägg till i vald post i körschemat - + You must select one or more items to preview. Du måste välja en eller flera poster att förhandsgranska. - + You must select one or more items to send live. Du måste välja en eller flera poster att visa live. - + You must select one or more items. Du måste välja en eller flera poster. - + You must select an existing service item to add to. Du måste välja en befintlig post i körschemat att lägga till i. - + Invalid Service Item Ogiltig körschemapost - + You must select a %s service item. Du måste välja en post av typen %s i körschemat. - + You must select one or more items to add. Du måste välja en eller flera poster att lägga till. - + No Search Results Inga sökresultat - + Invalid File Type Ogiltig filtyp - + Invalid File %s. Suffix not supported Ogiltig fil %s. @@ -3795,7 +3775,7 @@ Filändelsen stöds ej &Klona - + Duplicate files were found on import and were ignored. Dubblettfiler hittades vid importen och ignorerades. @@ -3803,12 +3783,12 @@ Filändelsen stöds ej OpenLP.OpenLyricsImportError - + <lyrics> tag is missing. <lyrics>-tagg saknas. - + <verse> tag is missing. <verse>-tagg saknas. @@ -3816,42 +3796,42 @@ Filändelsen stöds ej OpenLP.PluginForm - + Plugin List Modullista - + Plugin Details Moduldetaljer - + Status: Status: - + Active Aktiv - + Inactive Inaktiv - + %s (Inactive) %s (Inaktiv) - + %s (Active) %s (Aktiv) - + %s (Disabled) %s (Ej valbar) @@ -3859,12 +3839,12 @@ Filändelsen stöds ej OpenLP.PrintServiceDialog - + Fit Page Passa sidan - + Fit Width Passa bredden @@ -3872,77 +3852,77 @@ Filändelsen stöds ej OpenLP.PrintServiceForm - + Options Alternativ - + Copy Kopiera - + Copy as HTML Kopiera som HTML - + Zoom In Zooma in - + Zoom Out Zooma ut - + Zoom Original Återställ zoom - + Other Options Övriga alternativ - + Include slide text if available Inkludera sidtext om tillgänglig - + Include service item notes Inkludera anteckningar - + Include play length of media items Inkludera spellängd för mediaposter - + Add page break before each text item Lägg till sidbrytning före varje textpost - + Service Sheet Körschema - + Print Skriv ut - + Title: Titel: - + Custom Footer Text: Anpassad sidfot: @@ -3950,12 +3930,12 @@ Filändelsen stöds ej OpenLP.ScreenList - + Screen Skärm - + primary primär @@ -3963,12 +3943,12 @@ Filändelsen stöds ej OpenLP.ServiceItem - + <strong>Start</strong>: %s <strong>Start</strong>: %s - + <strong>Length</strong>: %s <strong>Längd</strong>: %s @@ -3976,7 +3956,7 @@ Filändelsen stöds ej OpenLP.ServiceItemEditForm - + Reorder Service Item Arrangera om körschemapost @@ -3984,296 +3964,295 @@ Filändelsen stöds ej OpenLP.ServiceManager - + Move to &top Lägg &först - + Move item to the top of the service. Lägg posten först i körschemat. - + Move &up Flytta &upp - + Move item up one position in the service. Flytta upp posten ett steg i körschemat. - + Move &down Flytta &ner - + Move item down one position in the service. Flytta ner posten ett steg i körschemat. - + Move to &bottom Lägg &sist - + Move item to the end of the service. Lägg posten sist i körschemat. - + &Delete From Service &Ta bort från körschemat - + Delete the selected item from the service. Ta bort den valda posten från körschemat. - + &Add New Item &Lägg till ny post - + &Add to Selected Item Lägg till i &vald post - + &Edit Item &Redigera post - + &Reorder Item Arrangera &om post - + &Notes &Anteckningar - + &Change Item Theme &Byt postens tema - + OpenLP Service Files (*.osz) OpenLP körschemafiler (*.osz) - + File is not a valid service. The content encoding is not UTF-8. Filen är inte ett giltigt körschema. Innehållets teckenkodning är inte UTF-8. - + File is not a valid service. Filen är inte ett giltigt körschema. - + Missing Display Handler Visningsmodul saknas - + Your item cannot be displayed as there is no handler to display it Posten kan inte visas eftersom det inte finns någon visningsmodul för att visa den - + Your item cannot be displayed as the plugin required to display it is missing or inactive Posten kan inte visas eftersom modulen som krävs för att visa den saknas eller är inaktiv - + &Expand all &Expandera alla - + Expand all the service items. Expandera alla poster i körschemat. - + &Collapse all &Fäll ihop alla - + Collapse all the service items. Fäll ihop alla poster i körschemat. - + Open File Öppna fil - + Moves the selection down the window. Flyttar urvalet neråt i fönstret. - + Move up Flytta upp - + Moves the selection up the window. Flyttar urvalet uppåt i fönstret. - + Go Live Lägg ut live-bilden - + Send the selected item to Live. Visa den valda posten live. - + &Start Time &Starttid - + Show &Preview &Förhandsgranska - + Modified Service Körschemat ändrat - + The current service has been modified. Would you like to save this service? Det nuvarande körschemat har ändrats. Vill du spara körschemat? - + Custom Service Notes: Egna körschemaanteckningar: - + Notes: Anteckningar: - + Playing time: Speltid: - + Untitled Service Nytt körschema - + File could not be opened because it is corrupt. Filen kunde inte öppnas eftersom den är korrupt. - + Empty File Tom fil - + This service file does not contain any data. Det här körschemat innehåller inte någon data. - + Corrupt File Korrupt fil - + Load an existing service. Ladda ett befintligt körschema. - + Save this service. Spara körschemat. - + Select a theme for the service. Välj ett tema för körschemat. - + This file is either corrupt or it is not an OpenLP 2.0 service file. Filen är antingen korrupt eller inte en OpenLP 2.0 körschemafil. - - Service File Missing - Körschemafil saknas - - - + Slide theme Sidtema - + Notes Anteckningar - + Edit Redigera - + Service copy only Endast kopian i körschemat - + Error Saving File Fel vid filsparande - + There was an error saving your file. Det inträffade ett fel när filen skulle sparas. - - File missing from service + + Service File(s) Missing + + + + + The following file(s) in the service are missing: +%s - %s - -Continue saving? +These files will be removed if you continue to save. OpenLP.ServiceNoteForm - + Service Item Notes Körschemaanteckningar @@ -4281,7 +4260,7 @@ Continue saving? OpenLP.SettingsForm - + Configure OpenLP Konfigurera OpenLP @@ -4289,67 +4268,67 @@ Continue saving? OpenLP.ShortcutListDialog - + Action Åtgärd - + Shortcut Genväg - + Duplicate Shortcut Dubblett - + The shortcut "%s" is already assigned to another action, please use a different shortcut. Genvägen "%s" är redan kopplad till en annan åtgärd; välj en annan genväg. - + Alternate Alternativ - + Select an action and click one of the buttons below to start capturing a new primary or alternate shortcut, respectively. Välj en åtgärd och använd knapparna nedan för att skapa en ny primär eller alternativ genväg. - + Default Standard - + Custom Anpassad - + Capture shortcut. Skapa genväg. - + Restore the default shortcut of this action. Återställ till standardgenvägen för den här åtgärden. - + Restore Default Shortcuts Återställ till standardgenvägar - + Do you want to restore all shortcuts to their defaults? Vill du återställa alla genvägar till standardvärdena? - + Configure Shortcuts Konfigurera genvägar @@ -4357,172 +4336,172 @@ Continue saving? OpenLP.SlideController - + Hide Dölj - + Go To Gå till - + Blank Screen Släck skärm - + Blank to Theme Släck till tema - + Show Desktop Visa skrivbord - + Previous Service Föregående post - + Next Service Nästa post - + Escape Item Avbryt post - + Move to previous. Flytta till föregående. - + Move to next. Flytta till nästa. - + Play Slides Sidvisning - + Delay between slides in seconds. Tid i sekunder mellan sidorna. - + Move to live. Visa live. - + Add to Service. Lägg till i körschema. - + Edit and reload song preview. Redigera och uppdatera förhandsvisning. - + Start playing media. Starta uppspelning. - + Pause audio. Pausa ljud. - + Pause playing media. Pausa spelande media. - + Stop playing media. Stoppa spelande media. - + Video position. Videoposition. - + Audio Volume. Ljudvolym. - + Go to "Verse" Gå till "Vers" - + Go to "Chorus" Gå till "Refräng" - + Go to "Bridge" Gå till "Stick" - + Go to "Pre-Chorus" Gå till "Brygga" - + Go to "Intro" Gå till "Intro" - + Go to "Ending" Gå till "Avslut" - + Go to "Other" Gå till "Övrigt" - + Previous Slide Föregående bild - + Next Slide Nästa bild - + Pause Audio Pausa ljud - + Background Audio Bakgrundsljud - + Go to next audio track. Gå till nästa ljudspår - + Tracks Spår @@ -4530,17 +4509,17 @@ Continue saving? OpenLP.SpellTextEdit - + Spelling Suggestions Stavningsförslag - + Formatting Tags Format-taggar - + Language: Språk: @@ -4548,67 +4527,67 @@ Continue saving? OpenLP.StartTimeForm - + Hours: Timmar: - + Minutes: Minuter: - + Seconds: Sekunder: - + Item Start and Finish Time Start- och sluttid - + Start Start - + Finish Slut - + Length Längd - + Time Validation Error Tidvalideringsfel - + Finish time is set after the end of the media item Sluttiden är satt till efter mediapostens slut - + Start time is after the finish time of the media item Starttiden är efter mediapostens slut - + Theme Layout Temalayout - + The blue box shows the main area. Den blåa rutan visar huvudytan. - + The red box shows the footer. Den röda rutan visar sidfoten. @@ -4616,559 +4595,559 @@ Continue saving? OpenLP.ThemeManager - + Create a new theme. Skapa ett nytt tema. - + Edit Theme Redigera tema - + Edit a theme. Redigera ett tema. - + Delete Theme Ta bort tema - + Delete a theme. Ta bort ett tema. - + Import Theme Importera tema - + Import a theme. Importera tema. - + Export Theme Exportera tema - + Export a theme. Exportera tema. - + &Edit Theme &Redigera tema - + &Delete Theme &Ta bort tema - + Set As &Global Default Ange som &globalt tema - + %s (default) %s (standard) - + You must select a theme to edit. Du måste välja ett tema att redigera. - + You are unable to delete the default theme. Du kan inte ta bort standardtemat. - + Theme %s is used in the %s plugin. Temat %s används i modulen %s. - + You have not selected a theme. Du har inte valt ett tema. - + Save Theme - (%s) Spara tema - (%s) - + Theme Exported Tema exporterat - + Your theme has been successfully exported. Temat exporterades utan problem. - + Theme Export Failed Temaexport misslyckades - + Your theme could not be exported due to an error. Ett fel inträffade när temat skulle exporteras. - + Select Theme Import File Välj temafil - + File is not a valid theme. Filen är inte ett giltigt tema. - + &Copy Theme &Kopiera tema - + &Rename Theme &Byt namn på tema - + &Export Theme &Exportera tema - + You must select a theme to rename. Du måste välja ett tema att byta namn på. - + Rename Confirmation Bekräftelse av namnbyte - + Rename %s theme? Byt namn på temat %s? - + You must select a theme to delete. Du måste välja ett tema att ta bort. - + Delete Confirmation Borttagningsbekräftelse - + Delete %s theme? Ta bort temat %s? - + Validation Error Valideringsfel - + A theme with this name already exists. Ett tema med det här namnet finns redan. - + OpenLP Themes (*.theme *.otz) OpenLP-teman (*.theme *.otz) - + Copy of %s Copy of <theme name> Kopia av %s - + Theme Already Exists Tema finns redan - + Theme %s already exists. Do you want to replace it? - + Temat %s finns redan. Vill du ersätta det? OpenLP.ThemeWizard - + Theme Wizard Temaguiden - + Welcome to the Theme Wizard Välkommen till temaguiden - + Set Up Background Ställ in bakgrund - + Set up your theme's background according to the parameters below. Ställ in temats bakgrund enligt parametrarna nedan. - + Background type: Bakgrundstyp: - + Solid Color Solid färg - + Gradient Gradient - + Color: Färg: - + Gradient: Gradient: - + Horizontal Horisontell - + Vertical Vertikal - + Circular Cirkulär - + Top Left - Bottom Right Uppe vänster - nere höger - + Bottom Left - Top Right Nere vänster - uppe höger - + Main Area Font Details Huvudytans tecken - + Define the font and display characteristics for the Display text Definiera font och egenskaper för visningstexten - + Font: Teckensnitt: - + Size: Storlek: - + Line Spacing: Radavstånd: - + &Outline: &Kant: - + &Shadow: Sk&ugga: - + Bold Fetstil - + Italic Kursiv - + Footer Area Font Details Sidfotens tecken - + Define the font and display characteristics for the Footer text Definiera font och egenskaper för sidfotstexten - + Text Formatting Details Textformatering - + Allows additional display formatting information to be defined Ytterligare inställningsmöjligheter för visningsformatet - + Horizontal Align: Horisontell justering: - + Left Vänster - + Right Höger - + Center Centrera - + Output Area Locations Visningsytornas positioner - + Allows you to change and move the main and footer areas. Låter dig ändra och flytta huvud- och sidfotsytorna. - + &Main Area &Huvudyta - + &Use default location Använd &standardposition - + X position: X-position: - + px px - + Y position: Y-position: - + Width: Bredd: - + Height: Höjd: - + Use default location Använd standardposition - + Theme name: Temanamn: - + Edit Theme - %s Redigera 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. Den här guiden hjälper dig att skapa och redigera dina teman. Klicka på Nästa för att börja processen med att ställa in bakgrund. - + Transitions: Övergångar: - + &Footer Area &Sidfotsyta - + Starting color: Startfärg: - + Ending color: Slutfärg: - + Background color: Bakgrundsfärg: - + Justify Marginaljustera - + Layout Preview Förhandsgranskning av layout - + Transparent Transparent - + Preview and Save Förhandsgranska och spara - + Preview the theme and save it. Förhanskgranska temat och spara det. - + (approximately %d lines per slide) - + (ungefär %d rader per sida) - + Background Image Empty - + Bakgrundsbild tom - + You have not selected a background image. Please select one before continuing. - + Du har inte valt bakgrundsbild. Välj en innan du fortsätter. - + Select Image - + Välj bild - + Theme Name Missing - + Temanamn saknas - + There is no name for this theme. Please enter one. - + Temat saknar namn. Välj ett namn för temat. - + Theme Name Invalid - + Temanamn ogiltigt - + Invalid theme name. Please enter one. - + Ogiltigt namn på temat. Välj ett nytt. OpenLP.ThemesTab - + Global Theme Globalt tema - + Theme Level Temanivå - + S&ong Level &Sångnivå - + 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. Använd temat för varje sång i databasen indviduellt. Om en sång inte har ett associerat tema, använd körschemats tema. Om körschemat inte har ett tema, använd det globala temat. - + &Service Level &Körschemanivå - + 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. Använd temat för körschemat och ignorera sångernas individuella teman. Om körschemat inte har ett tema, använd det globala temat. - + &Global Level &Global nivå - + Use the global theme, overriding any themes associated with either the service or the songs. Använd det globala temat och ignorera teman associerade med körschemat eller sångerna. - + Themes Teman @@ -5176,315 +5155,315 @@ Continue saving? OpenLP.Ui - + Error Fel - + About Om - + &Add &Lägg till - + Advanced Avancerat - + All Files Alla filer - + Bottom Botten - + Browse... Bläddra... - + Cancel Avbryt - + CCLI number: CCLI-nummer: - + Create a new service. Skapa ett nytt körschema. - + &Delete &Ta bort - + &Edit &Redigera - + Empty Field Tomt fält - + Export Exportera - + pt Abbreviated font pointsize unit pt - + Image Bild - + Import Importera - + Live Live - + Live Background Error Live-bakgrundsproblem - + Load Ladda - + Middle Mitten - + New Nytt - + New Service Nytt körschema - + New Theme Nytt tema - + No File Selected Singular Ingen fil vald - + No Files Selected Plural Inga filer valda - + No Item Selected Singular Ingen post vald - + No Items Selected Plural Inga poster valda - + openlp.org 1.x openlp.org 1.x - + OpenLP 2.0 OpenLP 2.0 - + Preview Förhandsgranskning - + Replace Background Ersätt bakgrund - + Reset Background Återställ bakgrund - + s The abbreviated unit for seconds s - + Save && Preview Spara && förhandsgranska - + Search Sök - + You must select an item to delete. Du måste välja en post att ta bort. - + You must select an item to edit. Du måste välja en post att redigera. - + Save Service Spara körschema - + Service Körschema - + Start %s Starta %s - + Theme Singular Tema - + Themes Plural Teman - + Top Toppen - + Version Version - + Delete the selected item. Ta bort den valda posten. - + Move selection up one position. Flytta upp urvalet ett steg. - + Move selection down one position. Flytta ner urvalet ett steg. - + &Vertical Align: &Vertikal justering: - + Finished import. Importen är slutförd. - + Format: Format: - + Importing Importerar - + Importing "%s"... Importerar "%s"... - + Select Import Source Välj importkälla - + Select the import format and the location to import from. Välj importformat och plats att importera från. - + 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-import är inaktiverad på grund av en saknad Python-modul. Om du vill göra den här importen måste du installera modulen "python-sqlite". - + Open %s File Öppna %s-fil - + %p% %p % - + Ready. Klar. - + Starting import... Startar import... - + You need to specify at least one %s file to import from. A file type e.g. OpenSong Du måste ange åtminstone en %s-fil att importera från. @@ -5495,304 +5474,304 @@ Continue saving? Välkommen till bibelimportguiden - + Welcome to the Song Export Wizard Välkommen till sångexportguiden - + Welcome to the Song Import Wizard Välkommen till sångimportguiden - + Author Singular Författare - + Authors Plural Författare - + © Copyright symbol. © - + Song Book Singular Sångbok - + Song Books Plural Sångböcker - + Song Maintenance Sångunderhåll - + Topic Singular Ämne - + Topics Plural Ämnen - + Continuous Kontinuerlig - + Default Standard - + Display style: Visningsstil: - + Duplicate Error Dubblettfel - + File Fil - + Help Hjälp - + h The abbreviated unit for hours h - + Layout style: Layout: - + Live Toolbar Live-verktygsrad - + m The abbreviated unit for minutes min - + OpenLP is already running. Do you wish to continue? OpenLP körs redan. Vill du fortsätta? - + Settings Inställningar - + Tools Verktyg - + Unsupported File Okänd filtyp - + Verse Per Slide En vers per sida - + Verse Per Line En vers per rad - + View Visa - + Title and/or verses not found Titel och/eller verser hittades inte - + XML syntax error XML-syntaxfel - + View Mode Visningsläge - + Open service. Öppna körschema. - + Print Service Skriv ut körschema - + Replace live background. Ersätt live-bakgrund. - + Reset live background. Återställ live-bakgrund. - + Split a slide into two only if it does not fit on the screen as one slide. Dela en sida i två bara om den inte ryms som en sida på skärmen. - + Welcome to the Bible Upgrade Wizard Välkommen till bibeluppgraderingsguiden - + Confirm Delete Bekräfta borttagning - + Play Slides in Loop Kör visning i slinga - + Play Slides to End Kör visning till slutet - + Stop Play Slides in Loop Stoppa slingvisning - + Stop Play Slides to End Stoppa visning till slutet - + Next Track Nästa spår - + Search Themes... Search bar place holder text Sök teman... - + Optional &Split &Brytanvisning - + Invalid Folder Selected Singular Felaktig katalog vald - + Invalid File Selected Singular Felaktig fil vald - + Invalid Files Selected Plural Felaktiga filer valda - + No Folder Selected Singular Ingen katalog vald - + Open %s Folder Öppna %s-katalog - + You need to specify one %s file to import from. A file type e.g. OpenSong Du måste ange en %s-fil att importera från. - + You need to specify one %s folder to import from. A song format e.g. PowerSong Du måste ange en %s-katalog att importera från. - + Importing Songs - + Importerar sånger OpenLP.core.lib - + %1 and %2 Locale list separator: 2 items %1 och %2 - + %1, and %2 Locale list separator: end %1, och %2 - + %1, %2 Locale list separator: middle %1, %2 - + %1, %2 Locale list separator: start %1, %2 @@ -5801,50 +5780,50 @@ Continue saving? 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>Presentationsmodul</strong><br />Presentationsmodulen ger möjlighet att visa presentationer med en mängd olika program. Val av presentationsprogram görs av användaren i en flervalslista. - + Presentation name singular Presentation - + Presentations name plural Presentationer - + Presentations container title Presentationer - + Load a new presentation. Ladda en ny presentation. - + Delete the selected presentation. Ta bort den valda presentationen. - + Preview the selected presentation. Förhandsgranska den valda presentationen. - + Send the selected presentation live. Visa den valda presentationen live. - + Add the selected presentation to the service. Lägg till den valda presentationen i körschemat. @@ -5852,52 +5831,52 @@ Continue saving? PresentationPlugin.MediaItem - + Select Presentation(s) Välj presentation(er) - + Automatic Automatiskt - + Present using: Presentera med: - + File Exists Fil finns redan - + A presentation with that filename already exists. En presentation med det namnet finns redan. - + This type of presentation is not supported. Den här presentationstypen stöds inte. - + Presentations (%s) Presentationer (%s) - + Missing Presentation Presentation saknas - + The presentation %s is incomplete, please reload. Presentationen %s är inte komplett. Försök att ladda om den. - + The presentation %s no longer exists. Presentationen %s finns inte längre. @@ -5905,17 +5884,17 @@ Continue saving? PresentationPlugin.PresentationTab - + Available Controllers Tillgängliga presentationsprogram - + %s (unavailable) %s (inte tillgängligt) - + Allow presentation application to be overridden Tillåt åsidosättning av valt presentationsprogram @@ -5923,24 +5902,24 @@ Continue saving? 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>Fjärrstyrningsmodul</strong><br />Fjärrstyrningsmodulen ger möjlighet att skicka meddelanden till OpenLP på en annan dator via en webbläsare eller via fjärrstyrnings-API:et. - + Remote name singular Fjärrstyrning - + Remotes name plural Fjärrstyrningar - + Remote container title Fjärrstyrning @@ -5949,236 +5928,246 @@ Continue saving? RemotePlugin.Mobile - + OpenLP 2.0 Remote OpenLP 2.0 fjärrstyrning - + OpenLP 2.0 Stage View OpenLP 2.0 scenvisning - + Service Manager Körschema - + Slide Controller Visningskontroll - + Alerts Meddelanden - + Search Sök - + Refresh Uppdatera - + Blank Släck - + Show Visa - + Prev Förra - + Next Nästa - + Text Text - + Show Alert Visa meddelande - + Go Live Lägg ut bilden - + No Results Inga resultat - + Options Alternativ - + Add to Service Lägg till i körschema - + Home Hem - + Theme Tema - + Desktop Skrivbord - + Add &amp; Go to Service Lägg till &amp; gå till körschema + + + Service + Körschema + + + + Slides + Bilder + RemotePlugin.RemoteTab - + Serve on IP address: Kör på IP-adress: - + Port number: Portnummer: - + Server Settings Serverinställningar - + Remote URL: Fjärrstyrningsadress: - + Stage view URL: Scenvisningsadress: - + Display stage time in 12h format Visa scentiden i 12-timmarsformat - + Android App Android-app - + Scan the QR code or click <a href="https://play.google.com/store/apps/details?id=org.openlp.android">download</a> to install the Android app from Google Play. - + Skanna QR-koden eller klicka <a href="https://play.google.com/store/apps/details?id=org.openlp.android">hämta</a> för att installera Android-appen från Google Play. SongUsagePlugin - + &Song Usage Tracking &Sångloggning - + &Delete Tracking Data &Ta bort loggdata - + Delete song usage data up to a specified date. Ta bort sånganvändningsdata fram till ett givet datum. - + &Extract Tracking Data &Extrahera loggdata - + Generate a report on song usage. Generera en rapport över sånganvändning. - + Toggle Tracking Växla loggning - + Toggle the tracking of song usage. Växla sångloggning på/av. - + <strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services. <strong>Sånganvändningsmodul</strong><br />Den här modulen loggar användning av sångerna som visas. - + SongUsage name singular Sånganvändning - + SongUsage name plural Sånganvändning - + SongUsage container title Sånganvändning - + Song Usage Sånganvändning - + Song usage tracking is active. Sångloggning är aktiv. - + Song usage tracking is inactive. Sångloggning är inaktiv. - + display visa - + printed utskriven @@ -6186,32 +6175,32 @@ Continue saving? SongUsagePlugin.SongUsageDeleteForm - + Delete Song Usage Data Ta bort sånganvändningsdata - + Delete Selected Song Usage Events? Ta bort vald sånganvändningsdata? - + Are you sure you want to delete selected Song Usage data? Vill du verkligen ta bort vald sånganvändningsdata? - + Deletion Successful Borttagning lyckades - + All requested data has been deleted successfully. All vald data har tagits bort. - + Select the date up to which the song usage data should be deleted. All data recorded before this date will be permanently deleted. Välj datum fram till vilket sånganvändningsdatan ska tas bort. All data loggad före det datumet kommer att tas bort permanent. @@ -6219,42 +6208,42 @@ Continue saving? SongUsagePlugin.SongUsageDetailForm - + Song Usage Extraction Sånganvändningsutdrag - + Select Date Range Välj datumspann - + to till - + Report Location Målmapp - + Output File Location Lagringssökväg - + usage_detail_%s_%s.txt användning_%s_%s.txt - + Report Creation Rapportskapande - + Report %s has been successfully created. @@ -6263,12 +6252,12 @@ has been successfully created. skapades utan problem. - + Output Path Not Selected Målmapp inte vald - + You have not set a valid output location for your song usage report. Please select an existing path on your computer. Du måste välja en giltig målmapp för sångrapporten. Välj en befintlig sökväg på datorn. @@ -6276,112 +6265,112 @@ skapades utan problem. SongsPlugin - + &Song &Sång - + Import songs using the import wizard. Importera sånger med importguiden. - + <strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs. <strong>Sångmodul</strong><br />Sångmodulen ger möjlighet att visa och hantera sånger. - + &Re-index Songs - &Indexera om sånger + Uppdatera sång&index - + Re-index the songs database to improve searching and ordering. Indexera om sångdatabasen för att förbättra sökning och sortering. - + Reindexing songs... Indexerar om sånger... - + Arabic (CP-1256) Arabiska (CP-1256) - + Baltic (CP-1257) Baltiska (CP-1257) - + Central European (CP-1250) Centraleuropeisk (CP-1250) - + Cyrillic (CP-1251) Kyrilliska (CP-1251) - + Greek (CP-1253) Grekiska (CP-1253) - + Hebrew (CP-1255) Hebreiska (CP-1255) - + Japanese (CP-932) Japanska (CP-932) - + Korean (CP-949) Koreanska (CP-949) - + Simplified Chinese (CP-936) Förenklad kinesiska (CP-936) - + Thai (CP-874) Thai (CP-874) - + Traditional Chinese (CP-950) Traditionell kinesiska (CP-950) - + Turkish (CP-1254) Turkiska (CP-1254) - + Vietnam (CP-1258) Vietnamesiska (CP-1258) - + Western European (CP-1252) Västeuropeisk (CP-1252) - + Character Encoding Teckenkodning - + The codepage setting is responsible for the correct character representation. Usually you are fine with the preselected choice. @@ -6390,105 +6379,105 @@ rätt teckenrepresentation. Vanligtvis fungerar den förvalda inställningen bra. - + Please choose the character encoding. The encoding is responsible for the correct character representation. Välj teckenkodning. Teckenkodningen ansvarar för rätt teckenrepresentation. - + Song name singular Sång - + Songs name plural Sånger - + Songs container title Sånger - + Exports songs using the export wizard. Exportera sånger med exportguiden. - + Add a new song. Lägg till en ny sång. - + Edit the selected song. Redigera den valda sången. - + Delete the selected song. Ta bort den valda sången. - + Preview the selected song. Förhandsgranska den valda sången. - + Send the selected song live. Visa den valda sången live. - + Add the selected song to the service. Lägg till den valda sången i körschemat. - + Reindexing songs - + Indexerar om sånger SongsPlugin.AuthorsForm - + Author Maintenance Författarhantering - + Display name: Visningsnamn: - + First name: Förnamn: - + Last name: Efternamn: - + You need to type in the first name of the author. Du måste ange författarens förnamn. - + You need to type in the last name of the author. Du måste ange författarens efternamn. - + You have not set a display name for the author, combine the first and last names? Du har inte angett ett visningsnamn för författaren; kombinera för- och efternamn? @@ -6496,7 +6485,7 @@ Teckenkodningen ansvarar för rätt teckenrepresentation. SongsPlugin.CCLIFileImport - + The file does not have a valid extension. Filen saknar giltig filändelse. @@ -6504,12 +6493,12 @@ Teckenkodningen ansvarar för rätt teckenrepresentation. SongsPlugin.EasyWorshipSongImport - + Administered by %s Administrerad av %s - + [above are Song Tags with notes imported from EasyWorship] @@ -6521,12 +6510,12 @@ Teckenkodningen ansvarar för rätt teckenrepresentation. SongsPlugin.EditBibleForm - + Meta Data Metadata - + Custom Book Names Anpassade boknamn @@ -6534,202 +6523,202 @@ Teckenkodningen ansvarar för rätt teckenrepresentation. SongsPlugin.EditSongForm - + Song Editor Sångredigering - + &Title: &Titel: - + Alt&ernate title: &Alternativ titel: - + &Lyrics: &Sångtext: - + &Verse order: &Versordning: - + Ed&it All Red&igera alla - + Title && Lyrics Titel && sångtext - + &Add to Song &Lägg till för sång - + &Remove &Ta bort - + &Manage Authors, Topics, Song Books &Hantera författare, ämnen, sångböcker - + A&dd to Song Lä&gg till för sång - + R&emove Ta &bort - + Book: Bok: - + Number: Nummer: - + Authors, Topics && Song Book Författare, ämnen && sångböcker - + New &Theme Nytt &tema - + Copyright Information Copyrightinformation - + Comments Kommentarer - + Theme, Copyright Info && Comments Tema, copyrightinfo && kommentarer - + Add Author Lägg till författare - + This author does not exist, do you want to add them? Författaren finns inte; vill du lägga till den? - + This author is already in the list. Författaren finns redan i listan. - + 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 inte valt en giltig författare. Välj antingen en författare från listan, eller skriv in en ny författare och klicka "Lägg till för sång" för att lägga till den nya författaren. - + Add Topic Lägg till ämne - + This topic does not exist, do you want to add it? Ämnet finns inte; vill du skapa det? - + This topic is already in the list. Ämnet finns redan i listan. - + 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 inte valt ett giltigt ämne. Välj antingen ett ämne från listan, eller skriv in ett nytt ämne och klicka "Lägg till för sång" för att lägga till det nya ämnet. - + You need to type in a song title. Du måste ange en sångtitel. - + You need to type in at least one verse. Du måste ange åtminstone en vers. - + The verse order is invalid. There is no verse corresponding to %s. Valid entries are %s. Versordningen är ogiltig. Det finns ingen vers motsvarande %s. Giltiga värden är %s. - + Add Book Lägg till bok - + This song book does not exist, do you want to add it? Boken finns inte; vill du skapa den? - + You need to have an author for this song. Du måste ange en författare för sången. - + Linked Audio Länkat ljud - + Add &File(s) Lägg till &fil(er) - + Add &Media Lägg till &media - + Remove &All &Ta bort alla - + Open File(s) Öppna fil(er) - + <strong>Warning:</strong> Not all of the verses are in use. <strong>Varning:</strong> Alla verser används inte. - + The verse order is invalid. There are no verses corresponding to %s. Valid entries are %s. Versordningen är ogiltig. Det finns inga verser som hör till %s. Giltiga värden är %s. @@ -6737,22 +6726,22 @@ Teckenkodningen ansvarar för rätt teckenrepresentation. SongsPlugin.EditVerseForm - + Edit Verse Redigera vers - + &Verse type: &Verstyp: - + &Insert &Infoga - + Split a slide into two by inserting a verse splitter. Dela en sida i två genom att infoga en versdelare. @@ -6760,82 +6749,82 @@ Teckenkodningen ansvarar för rätt teckenrepresentation. SongsPlugin.ExportWizardForm - + Song Export Wizard Sångexportguiden - + Select Songs Välj sånger - + Check the songs you want to export. Kryssa för sångerna du vill exportera. - + Uncheck All Kryssa ingen - + Check All Kryssa alla - + Select Directory Välj mapp - + Directory: Mapp: - + Exporting Exporterar - + Please wait while your songs are exported. Vänta medan sångerna exporteras. - + You need to add at least one Song to export. Du måste lägga till minst en sång att exportera. - + No Save Location specified Ingen målmapp angiven - + Starting export... Startar export... - + You need to specify a directory. Du måste ange en mapp. - + Select Destination Folder Välj målmapp - + Select the directory where you want the songs to be saved. Välj mappen där du vill att sångerna sparas. - + This wizard will help to export your songs to the open and free <strong>OpenLyrics</strong> worship song format. Den här guiden hjälper dig att exportera dina sånger till det öppna och fria lovsångsformatet <strong>OpenLyrics</strong>. @@ -6843,172 +6832,172 @@ Teckenkodningen ansvarar för rätt teckenrepresentation. SongsPlugin.ImportWizardForm - + Select Document/Presentation Files Välj dokument/presentation - + Song Import Wizard Sångimportguiden - + 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. Den här guiden hjälper dig att importera sånger från en mängd olika format. Klicka på Nästa för att börja processen med att välja ett format att importera från. - + Generic Document/Presentation Vanligt dokument/presentation - + Add Files... Lägg till filer... - + Remove File(s) Ta bort fil(er) - + Please wait while your songs are imported. Vänta medan sångerna importeras. - + OpenLP 2.0 Databases OpenLP 2.0-databas - + openlp.org v1.x Databases openlp.org v1.x-databas - + Words Of Worship Song Files Words of Worship-sångfiler - + Songs Of Fellowship Song Files Songs of Fellowship-sångfiler - + SongBeamer Files SongBeamer-filer - + SongShow Plus Song Files SongShow Plus-sångfiler - + Foilpresenter Song Files Foilpresenter-sångfiler - + Copy Kopiera - + Save to File Spara till fil - + The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. Import av Songs of Fellowship har inaktiverats eftersom OpenLP inte kan hitta OpenOffice eller LibreOffice. - + The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. Import av vanliga dokument/presentationer har inaktiverats eftersom OpenLP inte hittar OpenOffice eller LibreOffice. - + OpenLyrics or OpenLP 2.0 Exported Song OpenLyrics eller sång exporterad från OpenLP 2.0 - + OpenLyrics Files OpenLyrics-filer - + CCLI SongSelect Files CCLI SongSelect-filer - + EasySlides XML File EasySlides XML-fil - + EasyWorship Song Database EasyWorship sångdatabas - + DreamBeam Song Files DreamBeam sångfiler - + You need to specify a valid PowerSong 1.0 database folder. Du måste ange en giltig PowerSong 1.0-databaskatalog. - + 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>. Konvertera först din ZionWorx-databas till en CSV-textfil, som beskrivs i <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">Användarmanualen</a>. - + SundayPlus Song Files SundayPlus-sångfiler - + This importer has been disabled. Den här importfunktionen har inaktiverats. - + MediaShout Database MediaShout-databas - + The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. Importfunktionen för MediaShout stöds bara på Windows. Den har inaktiverats på grund av en saknad Python-modul. Om du vill använda den här importfunktionen måste du installera modulen "pyodbc". - + SongPro Text Files SongPro-textfiler - + SongPro (Export File) SongPro (exporterad fil) - + In SongPro, export your songs using the File -> Export menu I SongPro exporterar du sånger via menyn Arkiv -> Exportera @@ -7016,12 +7005,12 @@ Teckenkodningen ansvarar för rätt teckenrepresentation. SongsPlugin.MediaFilesForm - + Select Media File(s) Välj mediafil(er) - + Select one or more audio files from the list below, and click OK to import them into this song. Välj en eller flera ljudfiler från listan nedan, och klicka OK för att importera dem till sången. @@ -7039,7 +7028,7 @@ Teckenkodningen ansvarar för rätt teckenrepresentation. Sångtext - + CCLI License: CCLI-licens: @@ -7049,7 +7038,7 @@ Teckenkodningen ansvarar för rätt teckenrepresentation. Allt sånginnehåll - + Are you sure you want to delete the %n selected song(s)? Är du säker på att du vill ta bort den valda sången? @@ -7062,7 +7051,7 @@ Teckenkodningen ansvarar för rätt teckenrepresentation. Underhåll listan över författare, ämnen och böcker. - + copy For song cloning kopia @@ -7096,7 +7085,7 @@ Teckenkodningen ansvarar för rätt teckenrepresentation. SongsPlugin.MediaShoutImport - + Unable to open the MediaShout database. Kan inte öppna MediaShout-databasen. @@ -7104,7 +7093,7 @@ Teckenkodningen ansvarar för rätt teckenrepresentation. SongsPlugin.OpenLP1SongImport - + Not a valid openlp.org 1.x song database. Inte en giltig openlp.org 1.x-sångdatabas. @@ -7112,7 +7101,7 @@ Teckenkodningen ansvarar för rätt teckenrepresentation. SongsPlugin.OpenLPSongImport - + Not a valid OpenLP 2.0 song database. Inte en giltig OpenLP 2.0-sångdatabas. @@ -7120,7 +7109,7 @@ Teckenkodningen ansvarar för rätt teckenrepresentation. SongsPlugin.OpenLyricsExport - + Exporting "%s"... Exporterar "%s"... @@ -7128,55 +7117,55 @@ Teckenkodningen ansvarar för rätt teckenrepresentation. SongsPlugin.PowerSongImport - + No songs to import. Inga sånger att importera. - + Verses not found. Missing "PART" header. Inga verser hittade. "PART"-huvud saknas. - + No %s files found. - + Inga %s-filer hittades. - + Invalid %s file. Unexpected byte value. - + Ogiltig %s-fil. Oväntat byte-värde. - + Invalid %s file. Missing "TITLE" header. - + Ogiltig %s-fil. "TITLE"-huvud saknas. - + Invalid %s file. Missing "COPYRIGHTLINE" header. - + Ogiltig %s-fil. "COPYRIGHTLINE"-huvud saknas. SongsPlugin.SongBookForm - + Song Book Maintenance Sångboksunderhåll - + &Name: &Namn: - + &Publisher: &Utgivare: - + You need to type in a name for the book. Du måste ange ett namn på boken. @@ -7184,12 +7173,12 @@ Teckenkodningen ansvarar för rätt teckenrepresentation. SongsPlugin.SongExportForm - + Your song export failed. Sångexporten misslyckades. - + Finished export. To import these files use the <strong>OpenLyrics</strong> importer. Exporten är slutförd. För att importera filerna, använd importen <strong>OpenLyrics</strong>. @@ -7197,27 +7186,27 @@ Teckenkodningen ansvarar för rätt teckenrepresentation. SongsPlugin.SongImport - + copyright copyright - + The following songs could not be imported: De följande sångerna kunde inte importeras: - + Cannot access OpenOffice or LibreOffice Kan inte hitta OpenOffice eller LibreOffice - + Unable to open file Kan inte öppna fil - + File not found Fil hittas inte @@ -7225,107 +7214,107 @@ Teckenkodningen ansvarar för rätt teckenrepresentation. SongsPlugin.SongMaintenanceForm - + Could not add your author. Kunde inte lägga till författaren. - + This author already exists. Författaren finns redan. - + Could not add your topic. Kunde inte lägga till ämnet. - + This topic already exists. Ämnet finns redan. - + Could not add your book. Kunde inte lägga till boken. - + This book already exists. Boken finns redan. - + Could not save your changes. Kunde inte spara ändringarna. - + Could not save your modified author, because the author already exists. Kunde inte spara den ändrade författaren eftersom den redan finns. - + Could not save your modified topic, because it already exists. Kunde inte spara det ändrade ämnet eftersom det redan finns. - + Delete Author Ta bort författare - + Are you sure you want to delete the selected author? Är du säker på att du vill ta bort den valda författaren? - + This author cannot be deleted, they are currently assigned to at least one song. Författaren kan inte tas bort; den används för närvarande av minst en sång. - + Delete Topic Ta bort ämne - + Are you sure you want to delete the selected topic? Är du säker på att du vill ta bort det valda ämnet? - + This topic cannot be deleted, it is currently assigned to at least one song. Ämnet kan inte tas bort; det används för närvarande av minst en sång. - + Delete Book Ta bort bok - + Are you sure you want to delete the selected book? Är du säker på att du vill ta bort den valda boken? - + This book cannot be deleted, it is currently assigned to at least one song. Boken kan inte tas bort; den används för närvarande av minst en sång. - + The author %s already exists. Would you like to make songs with author %s use the existing author %s? Författaren %s finns redan. Vill du låta sånger med författaren %s använda den befintliga författaren %s? - + The topic %s already exists. Would you like to make songs with topic %s use the existing topic %s? Ämnet %s finns redan. Vill du låta sånger med ämnet %s använda det befintliga ämnet %s? - + The book %s already exists. Would you like to make songs with book %s use the existing book %s? Boken %s finns redan. Vill du låta sånger med boken %s använda den befintliga boken %s? @@ -7333,27 +7322,27 @@ Teckenkodningen ansvarar för rätt teckenrepresentation. SongsPlugin.SongsTab - + Songs Mode Sångläge - + Enable search as you type Sök när du skriver - + Display verses on live tool bar Visa verser i live-verktygsraden - + Update service from song edit Uppdatera körschemat från sångredigeringen - + Import missing songs from service files Importera saknade sånger från körschemafiler @@ -7361,17 +7350,17 @@ Teckenkodningen ansvarar för rätt teckenrepresentation. SongsPlugin.TopicsForm - + Topic Maintenance Ämnesunderhåll - + Topic name: Ämnesnamn: - + You need to type in a topic name. Du måste ange ett ämnesnamn. @@ -7379,37 +7368,37 @@ Teckenkodningen ansvarar för rätt teckenrepresentation. SongsPlugin.VerseType - + Verse Vers - + Chorus Refräng - + Bridge Stick - + Pre-Chorus Brygga - + Intro Intro - + Ending Avslut - + Other Övrigt @@ -7417,29 +7406,29 @@ Teckenkodningen ansvarar för rätt teckenrepresentation. SongsPlugin.ZionWorxImport - + Error reading CSV file. Fel vid läsning från CSV-fil. - + File not valid ZionWorx CSV format. Filen är inte i giltigt ZionWorx CSV-format. - + Line %d: %s - + Rad %d: %s - + Decoding error: %s - + Avkodningsfel: %s - + Record %d - + Post %d diff --git a/resources/i18n/zh_CN.ts b/resources/i18n/zh_CN.ts index c2673d21a..de04c1215 100644 --- a/resources/i18n/zh_CN.ts +++ b/resources/i18n/zh_CN.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. @@ -39,68 +39,68 @@ 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? @@ -117,32 +117,32 @@ Do you want to continue anyway? AlertsPlugin.AlertsTab - + Font - + Font name: - + Font color: - + Background color: - + Font size: - + Alert timeout: @@ -150,510 +150,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. - + &Upgrade older Bibles - + Upgrade the Bible databases to the latest 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. @@ -662,44 +662,44 @@ 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. - + 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". - + 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. @@ -707,38 +707,38 @@ be followed by one or more non-numeric characters. BiblesPlugin.BibleManager - + Scripture Reference Error - + Web Bible cannot be used - + 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. - + 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 @@ -754,127 +754,127 @@ 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. - + 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 中国 - + Default Bible Language - + Book name language in search field, search results and on display: - + Bible Language - + Application Language @@ -882,42 +882,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. @@ -925,7 +925,7 @@ search results and on display: BiblesPlugin.BookNameForm - + You need to select a book. @@ -933,18 +933,18 @@ search results and on display: BiblesPlugin.CSVBible - + Importing books... %s - + Importing verses from %s... Importing verses from <book name>... - + Importing verses... done. @@ -952,68 +952,68 @@ 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. - + 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. @@ -1021,38 +1021,38 @@ It is not possible to customize the Book Names. BiblesPlugin.HTTPBible - + Registering Bible and loading books... - + Registering Language... - + Importing %s... Importing <book name>... - + Download Error - + There was a problem downloading your verse selection. Please check your Internet connection, and if this error continues to occur please consider reporting a bug. - + Parse Error - + There was a problem extracting your verse selection. If this error continues to occur please consider reporting a bug. @@ -1229,17 +1229,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. - + Language: @@ -1247,7 +1247,7 @@ demand and thus an internet connection is required. BiblesPlugin.LanguageForm - + You need to choose a language. @@ -1255,92 +1255,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. - + Search Scripture Reference... - + Search Text... - + Are you sure you want to completely delete "%s" Bible from OpenLP? You will need to re-import this Bible to use it again. @@ -1350,7 +1350,7 @@ You will need to re-import this Bible to use it again. BiblesPlugin.OpenSongImport - + Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. @@ -1358,7 +1358,7 @@ You will need to re-import this Bible to use it again. BiblesPlugin.Opensong - + Importing %s %s... Importing <book name> <chapter>... @@ -1367,12 +1367,12 @@ You will need to re-import this Bible to use it again. BiblesPlugin.OsisImport - + Detecting encoding (this may take a few minutes)... - + Importing %s %s... Importing <book name> <chapter>... @@ -1381,143 +1381,143 @@ You will need to re-import this Bible to use it again. 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. - + 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>. - + 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 - + Upgrading Bible %s of %s: "%s" Upgrading ... - + Download Error - + To upgrade your Web Bibles an Internet connection is required. - + Upgrading Bible %s of %s: "%s" Upgrading %s ... - + Upgrading Bible %s of %s: "%s" Complete - + , %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 - + Upgrade failed. - + You need to specify a backup directory for your Bibles. - + Starting upgrade... - + There are no Bibles that need to be upgraded. @@ -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. - + 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. @@ -1591,12 +1591,12 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I CustomPlugin.CustomTab - + Custom Display - + Display footer @@ -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 - + &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 @@ -1667,7 +1667,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I CustomPlugin.EditVerseForm - + Edit Slide @@ -1675,7 +1675,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)? @@ -1685,60 +1685,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 - + 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. @@ -1746,7 +1746,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I ImagePlugin.ExceptionDialog - + Select Attachment @@ -1754,43 +1754,43 @@ 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 - + The following image(s) no longer exist: %s Do you want to add the other images anyway? - + There was a problem replacing your background, the image file "%s" no longer exists. - + There was no display item to amend. @@ -1798,17 +1798,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. @@ -1816,60 +1816,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. - - - Media - name singular - - 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. @@ -1877,57 +1877,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. - + Missing Media File - + The file %s no longer exists. - + Videos (%s);;Audio (%s);;%s (*) - + There was no display item to amend. - + Unsupported File - + Automatic - + Use Player: @@ -1935,22 +1935,22 @@ Do you want to add the other images anyway? MediaPlugin.MediaTab - + Available Media Players - + %s (unavailable) - + Player Order - + Allow media player to be overridden @@ -1958,17 +1958,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? @@ -1978,32 +1978,54 @@ Should OpenLP upgrade now? OpenLP.AboutForm - + Credits - + License - + 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 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. - + + Copyright © 2004-2012 %s +Portions copyright © 2004-2012 %s + + + + + 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. + +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 volunteering by using the button below. + + + + + Volunteer + + + + Project Lead %s @@ -2022,12 +2044,20 @@ Packagers Translators Afrikaans (af) %s + Czeck (cs) + %s + Danish (da) + %s German (de) %s + Greek (el) + %s English, United Kingdom (en_GB) %s English, South Africa (en_ZA) %s + Spanish (es) + %s Estonian (et) %s French (fr) @@ -2044,13 +2074,15 @@ Translators %s Russian (ru) %s + Swedish (sv) + %s Documentation %s Built With Python: http://www.python.org/ - Qt4: http://qt.nokia.com/ + Qt4: http://qt.digia.com/ PyQt4: http://www.riverbankcomputing.co.uk/software/pyqt/intro Oxygen Icons: http://oxygen-icons.org/ @@ -2067,205 +2099,183 @@ Final Credit He has set us free. - - - Copyright © 2004-2012 %s -Portions copyright © 2004-2012 %s - - - - - 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. - -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 volunteering by using the button below. - - - - - Volunteer - - 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. - + 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 @@ -2275,94 +2285,94 @@ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for - + 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. - + 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 - + OpenLP data directory was not found %s @@ -2375,7 +2385,7 @@ Click "Yes" to reset the data directory to the default location. - + Are you sure you want to change the location of the OpenLP data directory to: %s @@ -2384,7 +2394,7 @@ The data directory will be changed when OpenLP is closed. - + WARNING: The location you have selected @@ -2398,38 +2408,38 @@ appears to contain OpenLP data files. Do you wish to replace these files with t 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. - + Send E-Mail - + Save to File - + Please enter a description of what you were doing to cause this error (Minimum 20 characters) - + Attach File - + Description characters to enter : %s @@ -2437,23 +2447,23 @@ appears to contain OpenLP data files. Do you wish to replace these files with t OpenLP.ExceptionForm - + Platform: %s - + Save Crash Report - + Text files (*.txt *.log *.text) - + **OpenLP Bug Report** Version: %s @@ -2471,7 +2481,7 @@ Version: %s - + *OpenLP Bug Report* Version: %s @@ -2493,17 +2503,17 @@ Version: %s OpenLP.FileRenameForm - + File Rename - + New File Name: - + File Copy @@ -2511,17 +2521,17 @@ Version: %s OpenLP.FirstTimeLanguageForm - + Select Translation - + Choose the translation you'd like to use in OpenLP. - + Translation: @@ -2529,199 +2539,199 @@ 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... - + Download complete. Click the finish button to start 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. - + 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. - + Setting Up And Downloading - + Please wait while OpenLP is set up and your data is downloaded. - + Setting Up - + Click the finish button to start OpenLP. - + Download complete. Click the finish button to return to OpenLP. - + Click the finish button to return to 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. - + To cancel the First Time Wizard completely (and not start OpenLP), click the Cancel button now. @@ -2731,37 +2741,37 @@ 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 HTML - + End HTML @@ -2769,32 +2779,32 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can OpenLP.FormattingTagForm - + Update Error - + Tag "n" already defined. - + New Tag - + <HTML here> - + </and here> - + Tag %s already defined. @@ -2802,82 +2812,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 @@ -2885,122 +2895,122 @@ 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 - + SongSelect username: - + SongSelect password: - + X - + Y - + Height - + Width - + Check for updates to OpenLP - + Unblank display when adding new live item - + Timed slide interval: - + Background Audio - + Start background audio paused @@ -3010,12 +3020,12 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can - + Override display position: - + Repeat track list @@ -3043,12 +3053,12 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can OpenLP.LanguageManager - + Language - + Chinese - + Please restart OpenLP to use your new language setting. @@ -3056,7 +3066,7 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can OpenLP.MainDisplay - + OpenLP Display @@ -3064,438 +3074,438 @@ 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 - + &Theme - + &Configure 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 - + &Online Help - + &Web Site - + Use the system language, if available. - + Set the interface language to %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/. - + OpenLP Version Updated - + OpenLP Main Display Blanked - + The Main Display has been blanked out - + Default Theme: %s - + English Please add the name of your language here 中国 - + Configure &Shortcuts... - + Close OpenLP - + Are you sure you want to close 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. - + Clear List Clear List of recent files - + Clear the list of recent files. - + Configure &Formatting Tags... - + Export OpenLP settings to a specified *.config file - + Settings - + Import OpenLP settings from a specified *.config file previously exported on this or another machine - + Import settings? - + Are you sure you want to import settings? Importing settings will make permanent changes to your current OpenLP configuration. @@ -3504,42 +3514,42 @@ Importing incorrect settings may cause erratic behaviour or OpenLP to terminate - + Open File - + OpenLP Export Settings Files (*.conf) - + Import settings - + 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 - + The file you selected does appear to be a valid OpenLP settings file. Section [%s] is not valid @@ -3548,12 +3558,12 @@ Processing has terminated and no changed have been made. - + Copying OpenLP data to new data directory location - %s - Please wait for copy to finish - + OpenLP Data directory copy failed %s @@ -3563,19 +3573,19 @@ Processing has terminated and no changed have been made. 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 - + OpenLP cannot load your database. Database: %s @@ -3585,62 +3595,62 @@ 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. - + You must select one or more items to add. - + No Search Results - + Invalid File Type - + Invalid File %s. Suffix not supported @@ -3651,7 +3661,7 @@ Suffix not supported - + Duplicate files were found on import and were ignored. @@ -3659,12 +3669,12 @@ Suffix not supported OpenLP.OpenLyricsImportError - + <lyrics> tag is missing. - + <verse> tag is missing. @@ -3672,42 +3682,42 @@ Suffix not supported OpenLP.PluginForm - + Plugin List - + Plugin Details - + Status: - + Active - + Inactive - + %s (Inactive) - + %s (Active) - + %s (Disabled) @@ -3715,12 +3725,12 @@ Suffix not supported OpenLP.PrintServiceDialog - + Fit Page - + Fit Width @@ -3728,77 +3738,77 @@ Suffix not supported OpenLP.PrintServiceForm - + Options - + Copy - + Copy as 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: @@ -3806,12 +3816,12 @@ Suffix not supported OpenLP.ScreenList - + Screen - + primary @@ -3819,12 +3829,12 @@ Suffix not supported OpenLP.ServiceItem - + <strong>Start</strong>: %s - + <strong>Length</strong>: %s @@ -3832,7 +3842,7 @@ Suffix not supported OpenLP.ServiceItemEditForm - + Reorder Service Item @@ -3840,295 +3850,294 @@ Suffix not supported OpenLP.ServiceManager - + Move to &top - + Move item to the top of the service. - + Move &up - + Move item up one position in the service. - + Move &down - + Move item down one position in the service. - + Move to &bottom - + Move item to the end of the service. - + &Delete From Service - + Delete the selected item from the service. - + &Add New Item - + &Add to Selected Item - + &Edit Item - + &Reorder Item - + &Notes - + &Change Item Theme - + OpenLP Service Files (*.osz) - + File is not a valid service. The content encoding is not UTF-8. - + File is not a valid service. - + Missing Display Handler - + Your item cannot be displayed as there is no handler to display it - + Your item cannot be displayed as the plugin required to display it is missing or inactive - + &Expand all - + Expand all the service items. - + &Collapse all - + Collapse all the service items. - + Open File - + Moves the selection down the window. - + Move up - + Moves the selection up the window. - + Go Live - + Send the selected item to Live. - + &Start Time - + Show &Preview - + 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. - - Service File Missing - - - - + Slide theme - + Notes - + Edit - + Service copy only - + Error Saving File - + There was an error saving your file. - - File missing from service + + Service File(s) Missing + + + + + The following file(s) in the service are missing: +%s - %s - -Continue saving? +These files will be removed if you continue to save. OpenLP.ServiceNoteForm - + Service Item Notes @@ -4136,7 +4145,7 @@ Continue saving? OpenLP.SettingsForm - + Configure OpenLP @@ -4144,67 +4153,67 @@ Continue saving? OpenLP.ShortcutListDialog - + Action - + Shortcut - + Duplicate Shortcut - + The shortcut "%s" is already assigned to another action, please use a different shortcut. - + 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 @@ -4212,172 +4221,172 @@ Continue saving? 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. - + 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 @@ -4385,17 +4394,17 @@ Continue saving? OpenLP.SpellTextEdit - + Spelling Suggestions - + Formatting Tags - + Language: @@ -4403,67 +4412,67 @@ Continue saving? 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. @@ -4471,198 +4480,198 @@ Continue saving? 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) - + You must select a theme to edit. - + You are unable to delete the default theme. - + Theme %s is used in the %s plugin. - + You have not selected a theme. - + Save Theme - (%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? - + You must select a theme to delete. - + Delete Confirmation - + Delete %s theme? - + Validation Error - + A theme with this name already exists. - + OpenLP Themes (*.theme *.otz) - + Copy of %s Copy of <theme name> - + Theme Already Exists - + Theme %s already exists. Do you want to replace it? @@ -4670,312 +4679,312 @@ Continue saving? OpenLP.ThemeWizard - + Theme Wizard - + Welcome to the Theme Wizard - + Set Up Background - + Set up your theme's background according to the parameters below. - + Background type: - + Solid Color - + Gradient - + Color: - + Gradient: - + Horizontal - + Vertical - + Circular - + Top Left - Bottom Right - + Bottom Left - Top Right - + Main Area Font Details - + Define the font and display characteristics for the Display text - + Font: - + Size: - + Line Spacing: - + &Outline: - + &Shadow: - + Bold - + Italic - + Footer Area Font Details - + Define the font and display characteristics for the Footer text - + Text Formatting Details - + Allows additional display formatting information to be defined - + Horizontal Align: - + Left - + Right - + Center - + Output Area Locations - + Allows you to change and move the main and footer areas. - + &Main Area - + &Use default location - + X position: - + px - + Y position: - + Width: - + Height: - + Use default location - + Theme name: - + Edit Theme - %s - + This wizard will help you to create and edit your themes. Click the next button below to start the process by setting up your background. - + Transitions: - + &Footer Area - + Starting color: - + Ending color: - + Background color: - + Justify - + Layout Preview - + Transparent - + Preview and Save - + Preview the theme and save it. - + (approximately %d lines per slide) - + Background Image Empty - + You have not selected a background image. Please select one before continuing. - + Select Image - + Theme Name Missing - + There is no name for this theme. Please enter one. - + Theme Name Invalid - + Invalid theme name. Please enter one. @@ -4983,47 +4992,47 @@ Continue saving? 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 @@ -5031,315 +5040,315 @@ Continue saving? OpenLP.Ui - + Error - + About - + &Add - + Advanced - + All Files - + Bottom - + Browse... - + Cancel - + CCLI number: - + Create a new service. - + &Delete - + &Edit - + Empty Field - + Export - + pt Abbreviated font pointsize unit - + 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 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 - + 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"... - + 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. - + Open %s File - + %p% - + Ready. - + Starting import... - + You need to specify at least one %s file to import from. A file type e.g. OpenSong @@ -5350,278 +5359,278 @@ Continue saving? - + 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? - + Settings - + Tools - + Unsupported File - + Verse Per Slide - + Verse Per Line - + View - + Title and/or verses not found - + XML syntax error - + 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 - + 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 - + Importing Songs @@ -5629,25 +5638,25 @@ Continue saving? 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 @@ -5656,50 +5665,50 @@ Continue saving? 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 - + 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. @@ -5707,52 +5716,52 @@ Continue saving? PresentationPlugin.MediaItem - + Select Presentation(s) - + Automatic - + Present using: - + File Exists - + A presentation with that filename already exists. - + This type of presentation is not supported. - + Presentations (%s) - + Missing Presentation - + The presentation %s is incomplete, please reload. - + The presentation %s no longer exists. @@ -5760,17 +5769,17 @@ Continue saving? PresentationPlugin.PresentationTab - + Available Controllers - + %s (unavailable) - + Allow presentation application to be overridden @@ -5778,24 +5787,24 @@ Continue saving? 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 - + Remotes name plural - + Remote container title @@ -5804,150 +5813,160 @@ Continue saving? RemotePlugin.Mobile - + OpenLP 2.0 Remote - + OpenLP 2.0 Stage View - + 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 &amp; Go to Service + + + Service + + + + + Slides + + RemotePlugin.RemoteTab - + Serve on IP address: - + Port number: - + Server Settings - + Remote URL: - + Stage view URL: - + Display stage time in 12h format - + Android App - + Scan the QR code or click <a href="https://play.google.com/store/apps/details?id=org.openlp.android">download</a> to install the Android app from Google Play. @@ -5955,85 +5974,85 @@ Continue saving? 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. - + SongUsage name singular - + SongUsage name plural - + SongUsage container title - + Song Usage - + Song usage tracking is active. - + Song usage tracking is inactive. - + display - + printed @@ -6041,32 +6060,32 @@ Continue saving? 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. @@ -6074,54 +6093,54 @@ Continue saving? SongUsagePlugin.SongUsageDetailForm - + Song Usage Extraction - + Select Date Range - + to - + Report Location - + Output File Location - + usage_detail_%s_%s.txt - + Report Creation - + Report %s 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. @@ -6129,178 +6148,178 @@ 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. - + &Re-index Songs - + Re-index the songs database to improve searching and ordering. - + Reindexing songs... - + Arabic (CP-1256) - + Baltic (CP-1257) - + Central European (CP-1250) - + Cyrillic (CP-1251) - + Greek (CP-1253) - + Hebrew (CP-1255) - + Japanese (CP-932) - + Korean (CP-949) - + Simplified Chinese (CP-936) - + Thai (CP-874) - + Traditional Chinese (CP-950) - + Turkish (CP-1254) - + Vietnam (CP-1258) - + Western European (CP-1252) - + Character Encoding - + 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 - + 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. - + Reindexing songs @@ -6308,37 +6327,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? @@ -6346,7 +6365,7 @@ The encoding is responsible for the correct character representation. SongsPlugin.CCLIFileImport - + The file does not have a valid extension. @@ -6354,12 +6373,12 @@ The encoding is responsible for the correct character representation. SongsPlugin.EasyWorshipSongImport - + Administered by %s - + [above are Song Tags with notes imported from EasyWorship] @@ -6369,12 +6388,12 @@ The encoding is responsible for the correct character representation. SongsPlugin.EditBibleForm - + Meta Data - + Custom Book Names @@ -6382,202 +6401,202 @@ 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. - + Add Book - + This song book does not exist, do you want to add it? - + You need to have an author for this song. - + Linked Audio - + Add &File(s) - + Add &Media - + Remove &All - + Open File(s) - + <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. @@ -6585,22 +6604,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. @@ -6608,82 +6627,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. @@ -6691,172 +6710,172 @@ 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.org v1.x Databases - + Words Of Worship Song Files - + Songs Of Fellowship Song Files - + SongBeamer Files - + SongShow Plus Song Files - + Foilpresenter Song Files - + Copy - + Save to File - + The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. - + The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. - + OpenLyrics or OpenLP 2.0 Exported Song - + OpenLyrics Files - + 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 - + This importer has been disabled. - + MediaShout Database - + The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. - + SongPro Text Files - + SongPro (Export File) - + In SongPro, export your songs using the File -> Export menu @@ -6864,12 +6883,12 @@ The encoding is responsible for the correct character representation. 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. @@ -6887,7 +6906,7 @@ The encoding is responsible for the correct character representation. - + CCLI License: @@ -6897,7 +6916,7 @@ The encoding is responsible for the correct character representation. - + Are you sure you want to delete the %n selected song(s)? @@ -6909,7 +6928,7 @@ The encoding is responsible for the correct character representation. - + copy For song cloning @@ -6943,7 +6962,7 @@ The encoding is responsible for the correct character representation. SongsPlugin.MediaShoutImport - + Unable to open the MediaShout database. @@ -6951,7 +6970,7 @@ The encoding is responsible for the correct character representation. SongsPlugin.OpenLP1SongImport - + Not a valid openlp.org 1.x song database. @@ -6959,7 +6978,7 @@ The encoding is responsible for the correct character representation. SongsPlugin.OpenLPSongImport - + Not a valid OpenLP 2.0 song database. @@ -6967,7 +6986,7 @@ The encoding is responsible for the correct character representation. SongsPlugin.OpenLyricsExport - + Exporting "%s"... @@ -6975,32 +6994,32 @@ The encoding is responsible for the correct character representation. SongsPlugin.PowerSongImport - + No songs to import. - + Verses not found. Missing "PART" header. - + No %s files found. - + Invalid %s file. Unexpected byte value. - + Invalid %s file. Missing "TITLE" header. - + Invalid %s file. Missing "COPYRIGHTLINE" header. @@ -7008,22 +7027,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. @@ -7031,12 +7050,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. @@ -7044,27 +7063,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 - + Unable to open file - + File not found @@ -7072,107 +7091,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? - + 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? @@ -7180,27 +7199,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 @@ -7208,17 +7227,17 @@ The encoding is responsible for the correct character representation. SongsPlugin.TopicsForm - + Topic Maintenance - + Topic name: - + You need to type in a topic name. @@ -7226,37 +7245,37 @@ The encoding is responsible for the correct character representation. SongsPlugin.VerseType - + Verse - + Chorus - + Bridge - + Pre-Chorus - + Intro - + Ending - + Other @@ -7264,27 +7283,27 @@ The encoding is responsible for the correct character representation. SongsPlugin.ZionWorxImport - + Error reading CSV file. - + File not valid ZionWorx CSV format. - + Line %d: %s - + Decoding error: %s - + Record %d diff --git a/resources/i18n/zh_TW.ts b/resources/i18n/zh_TW.ts new file mode 100644 index 000000000..711d838e8 --- /dev/null +++ b/resources/i18n/zh_TW.ts @@ -0,0 +1,7311 @@ + + + + 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. + + + + + 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? + + + + + AlertsPlugin.AlertsManager + + + Alert message created and displayed. + + + + + AlertsPlugin.AlertsTab + + + Font + 字型 + + + + Font name: + 字型名稱: + + + + Font color: + 字型顏色: + + + + Background color: + 背景顏色: + + + + Font size: + 字型大小: + + + + Alert timeout: + 警告逾時: + + + + 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. + 傳送所選擇的聖經到現場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. + + + + + &Upgrade older Bibles + + + + + Upgrade the Bible databases to the latest 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. + + + + + 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. + + + + + 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". + + + + + 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. + + + + + BiblesPlugin.BibleManager + + + Scripture Reference Error + 經節參照錯誤 + + + + Web Bible cannot be used + 無法使用網路聖經 + + + + 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. + + + + + 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 +Book Chapter%(range)sChapter +Book Chapter%(verse)sVerse%(range)sVerse +Book Chapter%(verse)sVerse%(range)sVerse%(list)sVerse%(range)sVerse +Book Chapter%(verse)sVerse%(range)sVerse%(list)sChapter%(verse)sVerse%(range)sVerse +Book Chapter%(verse)sVerse%(range)sChapter%(verse)sVerse + Please pay attention to the appended "s" of the wildcards and refrain from translating the words inside the names in the brackets. + + + + + 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. + + + + + 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 + + + + + Default Bible Language + + + + + Book name language in search field, +search results and on display: + + + + + Bible Language + + + + + Application Language + + + + + 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. + + + + + BiblesPlugin.BookNameForm + + + You need to select a book. + 你需要選擇一卷書 + + + + BiblesPlugin.CSVBible + + + Importing books... %s + 匯入書卷... %s + + + + Importing verses from %s... + Importing verses from <book name>... + 從%s匯入經文 + + + + Importing verses... done. + 匯入經文... 已完成。 + + + + 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. + + + + + 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. + + + + + BiblesPlugin.HTTPBible + + + Registering Bible and loading books... + 正在註冊聖經並載入書卷... + + + + Registering Language... + 正在註冊語言... + + + + Importing %s... + Importing <book name>... + 匯入 %s... + + + + Download Error + 下載錯誤 + + + + There was a problem downloading your verse selection. Please check your Internet connection, and if this error continues to occur please consider reporting a bug. + + + + + Parse Error + 語法錯誤 + + + + There was a problem extracting your verse selection. If this error continues to occur please consider reporting a bug. + + + + + 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 + 網路下載 + + + + Location: + 位置: + + + + Crosswalk + + + + + BibleGateway + + + + + Bible: + 聖經: + + + + Download Options + 下載選項 + + + + Server: + 伺服器: + + + + Username: + 使用者名稱: + + + + Password: + 密碼: + + + + Proxy Server (Optional) + 代理伺服器: + + + + 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 Bible Files + + + + Registering Bible... + 正在註冊聖經... + + + + Registered Bible. Please note, that verses will be downloaded on +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. + + + + + Language: + 語言: + + + + BiblesPlugin.LanguageForm + + + You need to choose a language. + 你需要選擇一個語言 + + + + 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. + + + + + Search Scripture Reference... + + + + + Search Text... + + + + + Are you sure you want to completely delete "%s" Bible from OpenLP? + +You will need to re-import this Bible to use it again. + + + + + BiblesPlugin.OpenSongImport + + + Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. + + + + + BiblesPlugin.Opensong + + + Importing %s %s... + Importing <book name> <chapter>... + 正在匯入 %s %s... + + + + BiblesPlugin.OsisImport + + + Detecting encoding (this may take a few minutes)... + + + + + Importing %s %s... + Importing <book name> <chapter>... + 正在匯入 %s %s... + + + + 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. + + + + + 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>. + + + + + 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 + + + + + Upgrading Bible %s of %s: "%s" +Upgrading ... + + + + + Download Error + 下載錯誤 + + + + To upgrade your Web Bibles an Internet connection is required. + + + + + Upgrading Bible %s of %s: "%s" +Upgrading %s ... + + + + + Upgrading Bible %s of %s: "%s" +Complete + + + + + , %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. + + + + + Upgrading Bible(s): %s successful%s + + + + + Upgrade failed. + 升級失敗。 + + + + You need to specify a backup directory for your Bibles. + + + + + Starting upgrade... + + + + + There are no Bibles that need to be upgraded. + + + + + 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. + + + + + 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. + 傳送選擇的自訂投影片至現場Live + + + + Add the selected custom slide to the service. + 新增所選擇的自訂投影片至聚會 + + + + CustomPlugin.CustomTab + + + Custom Display + + + + + Display footer + + + + + 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 + 插入投影片 + + + + CustomPlugin.EditVerseForm + + + Edit Slide + + + + + CustomPlugin.MediaItem + + + Are you sure you want to delete the %n selected custom slide(s)? + + + + + + + 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 + 圖片 + + + + 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. + 傳送選擇的圖片至現場Live + + + + Add the selected image to the service. + + + + + ImagePlugin.ExceptionDialog + + + Select Attachment + 選擇附件 + + + + 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 + + + + + The following image(s) no longer exist: %s +Do you want to add the other images anyway? + + + + + There was a problem replacing your background, the image file "%s" no longer exists. + + + + + There was no display item to amend. + + + + + ImagesPlugin.ImageTab + + + Background Color + 背景顏色 + + + + Default Color: + 預設顏色: + + + + Visible background for images with aspect ratio different to screen. + + + + + MediaPlugin + + + <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. + + + + + 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. + 傳送選擇的媒體至現場Live + + + + Add the selected media to the service. + + + + + 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. + + + + + Missing Media File + 遺失媒體檔案 + + + + The file %s no longer exists. + 檔案 %s 已不再存在 + + + + Videos (%s);;Audio (%s);;%s (*) + + + + + There was no display item to amend. + + + + + Unsupported File + 檔案不支援 + + + + Automatic + 自動 + + + + Use Player: + + + + + MediaPlugin.MediaTab + + + Available Media Players + + + + + %s (unavailable) + + + + + Player Order + + + + + Allow media player to be overridden + + + + + OpenLP + + + Image Files + + + + + Information + 資訊 + + + + Bible format has changed. +You have to upgrade your existing Bibles. +Should OpenLP upgrade now? + + + + + OpenLP.AboutForm + + + Credits + + + + + License + + + + + 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 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. + + + + + Copyright © 2004-2012 %s +Portions copyright © 2004-2012 %s + + + + + 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. + +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 volunteering by using the button below. + + + + + Volunteer + + + + + Project Lead + %s + +Developers + %s + +Contributors + %s + +Testers + %s + +Packagers + %s + +Translators + Afrikaans (af) + %s + Czeck (cs) + %s + Danish (da) + %s + German (de) + %s + Greek (el) + %s + English, United Kingdom (en_GB) + %s + English, South Africa (en_ZA) + %s + Spanish (es) + %s + Estonian (et) + %s + French (fr) + %s + Hungarian (hu) + %s + Japanese (ja) + %s + Norwegian Bokmål (nb) + %s + Dutch (nl) + %s + Portuguese, Brazil (pt_BR) + %s + Russian (ru) + %s + Swedish (sv) + %s + +Documentation + %s + +Built With + Python: http://www.python.org/ + Qt4: http://qt.digia.com/ + PyQt4: http://www.riverbankcomputing.co.uk/software/pyqt/intro + Oxygen Icons: http://oxygen-icons.org/ + +Final Credit + "For God so loved the world that He gave + His one and only Son, so that whoever + believes in Him will not perish but inherit + eternal life." -- John 3:16 + + And last but not least, final credit goes to + God our Father, for sending His Son to die + on the cross, setting us free from sin. We + bring this software to you for free because + He has set us free. + + + + + 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. + + + + + 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 + + + + + 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 + + + + + OpenLP data directory was not found + +%s + +This data directory was previously changed from the OpenLP default location. If the new location was on removable media, that media needs to be made available. + +Click "No" to stop loading OpenLP. allowing you to fix the the problem. + +Click "Yes" to reset the data directory to the default location. + + + + + Are you sure you want to change the location of the OpenLP data directory to: + +%s + +The data directory will be changed when OpenLP is closed. + + + + + WARNING: + +The location you have selected + +%s + +appears to contain OpenLP data files. Do you wish to replace these files with the current data files? + + + + + 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. + + + + + Send E-Mail + + + + + Save to File + 儲存為檔案 + + + + Please enter a description of what you were doing to cause this error +(Minimum 20 characters) + + + + + Attach File + 附加檔案 + + + + Description characters to enter : %s + + + + + OpenLP.ExceptionForm + + + Platform: %s + + + + + + Save Crash Report + + + + + Text files (*.txt *.log *.text) + + + + + **OpenLP Bug Report** +Version: %s + +--- Details of the Exception. --- + +%s + + --- Exception Traceback --- +%s +--- System information --- +%s +--- Library Versions --- +%s + + + + + + *OpenLP Bug Report* +Version: %s + +--- Details of the Exception. --- + +%s + + --- Exception Traceback --- +%s +--- System information --- +%s +--- Library Versions --- +%s + + Please add the information that bug reports are favoured written in English. + + + + + OpenLP.FileRenameForm + + + File Rename + + + + + New File Name: + + + + + File Copy + + + + + OpenLP.FirstTimeLanguageForm + + + Select Translation + + + + + Choose the translation you'd like to use in OpenLP. + + + + + Translation: + + + + + 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... + + + + + Download complete. Click the finish button to start 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. + + + + + 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. + + + + + Setting Up And Downloading + + + + + Please wait while OpenLP is set up and your data is downloaded. + + + + + Setting Up + 設定 + + + + Click the finish button to start OpenLP. + + + + + Download complete. Click the finish button to return to OpenLP. + + + + + Click the finish button to return to 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. + + + + + + +To cancel the First Time Wizard completely (and not start OpenLP), click the Cancel button now. + + + + + OpenLP.FormattingTagDialog + + + Configure Formatting Tags + + + + + Edit Selection + 編輯選擇 + + + + Save + 儲存 + + + + Description + 說明 + + + + Tag + 標籤 + + + + Start HTML + 開始HTML + + + + End HTML + 結束HTML + + + + OpenLP.FormattingTagForm + + + Update Error + 更新錯誤 + + + + Tag "n" already defined. + + + + + New Tag + 新的標籤 + + + + <HTML here> + + + + + </and here> + + + + + Tag %s already defined. + + + + + OpenLP.FormattingTags + + + Red + 紅色 + + + + Black + 黑色 + + + + Blue + 藍色 + + + + Yellow + 黃色 + + + + Green + 綠色 + + + + Pink + 粉紅色 + + + + Orange + 橙色 + + + + Purple + 紫色 + + + + White + 白色 + + + + Superscript + 上標 + + + + Subscript + 下標 + + + + Paragraph + 段落 + + + + Bold + 粗體 + + + + Italics + 斜體 + + + + Underline + 底線 + + + + Break + + + + + 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 + + + + + SongSelect username: + + + + + SongSelect password: + + + + + X + + + + + Y + + + + + Height + 高度 + + + + Width + 寬度 + + + + Check for updates to 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 + + + + + OpenLP.LanguageManager + + + Language + 語言 + + + + Please restart OpenLP to use your new language setting. + + + + + OpenLP.MainDisplay + + + OpenLP Display + OpenLP 顯示 + + + + 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... + + + + + &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 + + + + + &Online Help + + + + + &Web Site + + + + + Use the system language, if available. + + + + + Set the interface language to %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/. + + + + + OpenLP Version Updated + + + + + OpenLP Main Display Blanked + + + + + The Main Display has been blanked out + + + + + Default Theme: %s + + + + + English + Please add the name of your language here + + + + + Configure &Shortcuts... + + + + + Close OpenLP + 關閉OpenLP + + + + Are you sure you want to close 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. + + + + + Clear List + Clear List of recent files + + + + + Clear the list of recent files. + + + + + Configure &Formatting Tags... + + + + + Export OpenLP settings to a specified *.config file + + + + + Settings + + + + + Import OpenLP settings from a specified *.config file previously exported on this or another machine + + + + + Import settings? + + + + + Are you sure you want to import settings? + +Importing settings will make permanent changes to your current OpenLP configuration. + +Importing incorrect settings may cause erratic behaviour or OpenLP to terminate abnormally. + + + + + Open File + 開啟檔案 + + + + OpenLP Export Settings Files (*.conf) + + + + + Import settings + 匯入設定 + + + + 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 + + + + + The file you selected does appear to be a valid OpenLP settings file. + +Section [%s] is not valid + +Processing has terminated and no changed have been made. + + + + + Copying OpenLP data to new data directory location - %s - Please wait for copy to finish + + + + + OpenLP Data directory copy failed + +%s + + + + + 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 + + + + + OpenLP cannot load your database. + +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. + + + + + You must select one or more items to add. + + + + + No Search Results + + + + + Invalid File Type + + + + + Invalid File %s. +Suffix not supported + + + + + &Clone + + + + + Duplicate files were found on import and were ignored. + + + + + OpenLP.OpenLyricsImportError + + + <lyrics> tag is missing. + + + + + <verse> tag is missing. + + + + + OpenLP.PluginForm + + + Plugin List + + + + + Plugin Details + + + + + Status: + + + + + Active + + + + + Inactive + + + + + %s (Inactive) + + + + + %s (Active) + + + + + %s (Disabled) + + + + + OpenLP.PrintServiceDialog + + + Fit Page + + + + + Fit Width + + + + + OpenLP.PrintServiceForm + + + Options + + + + + Copy + + + + + Copy as 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: + + + + + OpenLP.ScreenList + + + Screen + + + + + primary + + + + + OpenLP.ServiceItem + + + <strong>Start</strong>: %s + + + + + <strong>Length</strong>: %s + + + + + OpenLP.ServiceItemEditForm + + + Reorder Service Item + + + + + OpenLP.ServiceManager + + + Move to &top + + + + + Move item to the top of the service. + + + + + Move &up + + + + + Move item up one position in the service. + + + + + Move &down + + + + + Move item down one position in the service. + + + + + Move to &bottom + + + + + Move item to the end of the service. + + + + + &Delete From Service + + + + + Delete the selected item from the service. + + + + + &Add New Item + + + + + &Add to Selected Item + + + + + &Edit Item + + + + + &Reorder Item + + + + + &Notes + + + + + &Change Item Theme + + + + + OpenLP Service Files (*.osz) + + + + + File is not a valid service. +The content encoding is not UTF-8. + + + + + File is not a valid service. + + + + + Missing Display Handler + + + + + Your item cannot be displayed as there is no handler to display it + + + + + Your item cannot be displayed as the plugin required to display it is missing or inactive + + + + + &Expand all + + + + + Expand all the service items. + + + + + &Collapse all + + + + + Collapse all the service items. + + + + + Open File + 開啟檔案 + + + + Moves the selection down the window. + + + + + Move up + + + + + Moves the selection up the window. + + + + + Go Live + 進現場Live + + + + Send the selected item to Live. + 傳送選擇的項目至現場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. + + + + + Slide theme + + + + + Notes + + + + + Edit + + + + + Service copy only + + + + + Error Saving File + + + + + There was an error saving your file. + + + + + Service File(s) Missing + + + + + The following file(s) in the service are missing: +%s + +These files will be removed if you continue to save. + + + + + OpenLP.ServiceNoteForm + + + Service Item Notes + + + + + OpenLP.SettingsForm + + + Configure OpenLP + + + + + OpenLP.ShortcutListDialog + + + Action + + + + + Shortcut + 捷徑 + + + + Duplicate Shortcut + 複製捷徑 + + + + The shortcut "%s" is already assigned to another action, please use a different shortcut. + + + + + 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 + + + + + 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. + 移動至現場Live。 + + + + Add to Service. + + + + + Edit and reload song preview. + + + + + Start playing media. + + + + + Pause audio. + + + + + Pause playing media. + + + + + Stop playing media. + + + + + Video position. + + + + + 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 + + + + + OpenLP.SpellTextEdit + + + Spelling Suggestions + + + + + Formatting Tags + + + + + Language: + 語言: + + + + 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. + + + + + 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) + + + + + You must select a theme to edit. + + + + + You are unable to delete the default theme. + + + + + Theme %s is used in the %s plugin. + + + + + You have not selected a theme. + + + + + Save Theme - (%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? + + + + + You must select a theme to delete. + + + + + Delete Confirmation + + + + + Delete %s theme? + + + + + Validation Error + 驗證錯誤 + + + + A theme with this name already exists. + + + + + OpenLP Themes (*.theme *.otz) + + + + + Copy of %s + Copy of <theme name> + + + + + Theme Already Exists + + + + + Theme %s already exists. Do you want to replace it? + + + + + OpenLP.ThemeWizard + + + Theme Wizard + + + + + Welcome to the Theme Wizard + + + + + Set Up Background + + + + + Set up your theme's background according to the parameters below. + + + + + Background type: + 背景種類: + + + + Solid Color + + + + + Gradient + 漸層 + + + + Color: + 顏色: + + + + Gradient: + 漸層: + + + + Horizontal + 水平 + + + + Vertical + 垂直 + + + + Circular + + + + + Top Left - Bottom Right + + + + + Bottom Left - Top Right + + + + + Main Area Font Details + + + + + Define the font and display characteristics for the Display text + + + + + Font: + 字型: + + + + Size: + 大小: + + + + Line Spacing: + 行距: + + + + &Outline: + + + + + &Shadow: + + + + + Bold + 粗體 + + + + Italic + 斜體 + + + + Footer Area Font Details + + + + + Define the font and display characteristics for the Footer text + + + + + Text Formatting Details + + + + + Allows additional display formatting information to be defined + + + + + Horizontal Align: + + + + + Left + + + + + Right + + + + + Center + + + + + Output Area Locations + + + + + Allows you to change and move the main and footer areas. + + + + + &Main Area + + + + + &Use default location + + + + + X position: + + + + + px + + + + + Y position: + + + + + Width: + 寬度: + + + + Height: + 高度: + + + + Use default location + + + + + Theme name: + + + + + Edit Theme - %s + + + + + This wizard will help you to create and edit your themes. Click the next button below to start the process by setting up your background. + + + + + Transitions: + + + + + &Footer Area + + + + + Starting color: + + + + + Ending color: + + + + + Background color: + 背景顏色: + + + + Justify + + + + + Layout Preview + + + + + Transparent + + + + + Preview and Save + + + + + Preview the theme and save it. + + + + + (approximately %d lines per slide) + + + + + Background Image Empty + + + + + You have not selected a background image. Please select one before continuing. + + + + + Select Image + + + + + Theme Name Missing + + + + + There is no name for this theme. Please enter one. + + + + + Theme Name Invalid + + + + + Invalid theme name. Please enter one. + + + + + 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 + + + + + OpenLP.Ui + + + Error + + + + + About + + + + + &Add + + + + + Advanced + 進階 + + + + All Files + + + + + Bottom + + + + + Browse... + + + + + Cancel + + + + + CCLI number: + + + + + Create a new service. + + + + + &Delete + + + + + &Edit + + + + + Empty Field + + + + + Export + + + + + pt + Abbreviated font pointsize unit + + + + + Image + 圖片 + + + + Import + + + + + Live + 現場Live + + + + Live Background Error + 現場Live背景錯誤 + + + + 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 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 + + + + + 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"... + + + + + 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. + + + + + Open %s File + + + + + %p% + + + + + Ready. + + + + + Starting 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 + + + + + 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 + 現場Live工具列 + + + + m + The abbreviated unit for minutes + + + + + OpenLP is already running. Do you wish to continue? + + + + + Settings + + + + + Tools + + + + + Unsupported File + 檔案不支援 + + + + Verse Per Slide + + + + + Verse Per Line + + + + + View + + + + + Title and/or verses not found + + + + + XML syntax error + + + + + View Mode + + + + + Open service. + + + + + Print Service + + + + + Replace live background. + 取代現場Live背景。 + + + + Reset live background. + 重設現場Live背景。 + + + + 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 + + + + + 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 + + + + + Importing Songs + + + + + 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 + + + + + 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 + + + + + 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. + + + + + PresentationPlugin.MediaItem + + + Select Presentation(s) + + + + + Automatic + 自動 + + + + Present using: + + + + + File Exists + + + + + A presentation with that filename already exists. + + + + + This type of presentation is not supported. + + + + + Presentations (%s) + + + + + Missing Presentation + + + + + The presentation %s is incomplete, please reload. + + + + + The presentation %s no longer exists. + + + + + PresentationPlugin.PresentationTab + + + Available Controllers + + + + + %s (unavailable) + + + + + Allow presentation application to be overridden + + + + + 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 + + + + + Remotes + name plural + + + + + Remote + container title + + + + + RemotePlugin.Mobile + + + OpenLP 2.0 Remote + + + + + OpenLP 2.0 Stage View + + + + + Service Manager + 聚會管理員 + + + + Slide Controller + + + + + Alerts + 警告 + + + + Search + + + + + Refresh + + + + + Blank + + + + + Show + + + + + Prev + + + + + Next + + + + + Text + + + + + Show Alert + + + + + Go Live + 進現場Go Live + + + + No Results + + + + + Options + + + + + Add to Service + + + + + Home + + + + + Theme + + + + + Desktop + + + + + Add &amp; Go to Service + + + + + Service + + + + + Slides + 投影片 + + + + RemotePlugin.RemoteTab + + + Serve on IP address: + + + + + Port number: + + + + + Server Settings + + + + + Remote URL: + + + + + Stage view URL: + + + + + Display stage time in 12h format + + + + + Android App + + + + + Scan the QR code or click <a href="https://play.google.com/store/apps/details?id=org.openlp.android">download</a> to install the Android app from Google Play. + + + + + 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. + + + + + SongUsage + name singular + + + + + SongUsage + name plural + + + + + SongUsage + container title + + + + + Song Usage + + + + + Song usage tracking is active. + + + + + Song usage tracking is inactive. + + + + + display + + + + + printed + + + + + 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. + + + + + SongUsagePlugin.SongUsageDetailForm + + + Song Usage Extraction + + + + + Select Date Range + + + + + to + + + + + Report Location + + + + + Output File Location + + + + + usage_detail_%s_%s.txt + + + + + Report Creation + + + + + Report +%s +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. + + + + + SongsPlugin + + + &Song + + + + + Import songs using the import wizard. + + + + + <strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs. + + + + + &Re-index Songs + + + + + Re-index the songs database to improve searching and ordering. + + + + + Reindexing songs... + + + + + Arabic (CP-1256) + + + + + Baltic (CP-1257) + + + + + Central European (CP-1250) + + + + + Cyrillic (CP-1251) + + + + + Greek (CP-1253) + + + + + Hebrew (CP-1255) + + + + + Japanese (CP-932) + + + + + Korean (CP-949) + + + + + Simplified Chinese (CP-936) + + + + + Thai (CP-874) + + + + + Traditional Chinese (CP-950) + + + + + Turkish (CP-1254) + + + + + Vietnam (CP-1258) + + + + + Western European (CP-1252) + + + + + Character Encoding + + + + + 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 + + + + + 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. + 傳送選擇的歌曲至現場Live。 + + + + Add the selected song to the service. + + + + + Reindexing songs + + + + + 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? + + + + + SongsPlugin.CCLIFileImport + + + The file does not have a valid extension. + + + + + SongsPlugin.EasyWorshipSongImport + + + Administered by %s + + + + + +[above are Song Tags with notes imported from + EasyWorship] + + + + + SongsPlugin.EditBibleForm + + + Meta Data + + + + + Custom Book Names + + + + + 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. + + + + + Add Book + + + + + This song book does not exist, do you want to add it? + + + + + You need to have an author for this song. + + + + + Linked Audio + + + + + Add &File(s) + + + + + Add &Media + + + + + Remove &All + + + + + Open File(s) + + + + + <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. + + + + + SongsPlugin.EditVerseForm + + + Edit Verse + + + + + &Verse type: + + + + + &Insert + + + + + Split a slide into two by inserting a verse splitter. + + + + + 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. + + + + + 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.org v1.x Databases + + + + + Words Of Worship Song Files + + + + + Songs Of Fellowship Song Files + + + + + SongBeamer Files + + + + + SongShow Plus Song Files + + + + + Foilpresenter Song Files + + + + + Copy + + + + + Save to File + 儲存為檔案 + + + + The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. + + + + + The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. + + + + + OpenLyrics or OpenLP 2.0 Exported Song + + + + + OpenLyrics Files + + + + + 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 + + + + + This importer has been disabled. + + + + + MediaShout Database + + + + + The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. + + + + + SongPro Text Files + + + + + SongPro (Export File) + + + + + In SongPro, export your songs using the File -> Export menu + + + + + 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. + + + + + SongsPlugin.MediaItem + + + Titles + + + + + Lyrics + + + + + CCLI License: + + + + + Entire Song + + + + + Are you sure you want to delete the %n selected song(s)? + + + + + + + Maintain the lists of authors, topics and books. + + + + + copy + For song cloning + + + + + Search Titles... + + + + + Search Entire Song... + + + + + Search Lyrics... + + + + + Search Authors... + + + + + Search Song Books... + + + + + SongsPlugin.MediaShoutImport + + + Unable to open the MediaShout database. + + + + + SongsPlugin.OpenLP1SongImport + + + Not a valid openlp.org 1.x song database. + + + + + SongsPlugin.OpenLPSongImport + + + Not a valid OpenLP 2.0 song database. + + + + + SongsPlugin.OpenLyricsExport + + + Exporting "%s"... + + + + + SongsPlugin.PowerSongImport + + + No songs to import. + + + + + Verses not found. Missing "PART" header. + + + + + No %s files found. + + + + + Invalid %s file. Unexpected byte value. + + + + + Invalid %s file. Missing "TITLE" header. + + + + + Invalid %s file. Missing "COPYRIGHTLINE" header. + + + + + SongsPlugin.SongBookForm + + + Song Book Maintenance + + + + + &Name: + + + + + &Publisher: + + + + + You need to type in a name for the book. + + + + + SongsPlugin.SongExportForm + + + Your song export failed. + + + + + Finished export. To import these files use the <strong>OpenLyrics</strong> importer. + + + + + SongsPlugin.SongImport + + + copyright + + + + + The following songs could not be imported: + + + + + Cannot access OpenOffice or LibreOffice + + + + + Unable to open file + + + + + File not found + + + + + 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? + + + + + 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? + + + + + SongsPlugin.SongsTab + + + Songs Mode + + + + + Enable search as you type + + + + + Display verses on live tool bar + 在現場Live工具列顯示經文 + + + + Update service from song edit + + + + + Import missing songs from service files + + + + + SongsPlugin.TopicsForm + + + Topic Maintenance + + + + + Topic name: + + + + + You need to type in a topic name. + + + + + SongsPlugin.VerseType + + + Verse + + + + + Chorus + + + + + Bridge + + + + + Pre-Chorus + + + + + Intro + + + + + Ending + + + + + Other + + + + + SongsPlugin.ZionWorxImport + + + Error reading CSV file. + + + + + File not valid ZionWorx CSV format. + + + + + Line %d: %s + + + + + Decoding error: %s + + + + + Record %d + + + + diff --git a/resources/pyinstaller/hook-openlp.core.ui.media.py b/resources/pyinstaller/hook-openlp.core.ui.media.py index e2a4ca214..522c3349c 100644 --- a/resources/pyinstaller/hook-openlp.core.ui.media.py +++ b/resources/pyinstaller/hook-openlp.core.ui.media.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/resources/pyinstaller/hook-openlp.plugins.presentations.presentationplugin.py b/resources/pyinstaller/hook-openlp.plugins.presentations.presentationplugin.py index 6c0402a1a..801999c68 100644 --- a/resources/pyinstaller/hook-openlp.plugins.presentations.presentationplugin.py +++ b/resources/pyinstaller/hook-openlp.plugins.presentations.presentationplugin.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/resources/pyinstaller/hook-openlp.py b/resources/pyinstaller/hook-openlp.py index 4ce256bd9..eebfbfb1a 100644 --- a/resources/pyinstaller/hook-openlp.py +++ b/resources/pyinstaller/hook-openlp.py @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/scripts/check_dependencies.py b/scripts/check_dependencies.py index 280e25598..79739f50f 100755 --- a/scripts/check_dependencies.py +++ b/scripts/check_dependencies.py @@ -8,7 +8,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/scripts/generate_resources.sh b/scripts/generate_resources.sh index ac0540fbe..b6630f997 100755 --- a/scripts/generate_resources.sh +++ b/scripts/generate_resources.sh @@ -7,7 +7,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/scripts/openlp-remoteclient.py b/scripts/openlp-remoteclient.py index d9acc8080..db1532800 100644 --- a/scripts/openlp-remoteclient.py +++ b/scripts/openlp-remoteclient.py @@ -8,7 +8,7 @@ # 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # # 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, # diff --git a/scripts/resources.patch b/scripts/resources.patch index 10895b64b..98897bef5 100644 --- a/scripts/resources.patch +++ b/scripts/resources.patch @@ -15,7 +15,7 @@ +# 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, Eric Ludin, Edwin Lunando, Brian T. Meyer, # ++# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# 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, #