diff --git a/README.txt b/README.txt index 0b26d74fc..b937e1d5f 100644 --- a/README.txt +++ b/README.txt @@ -8,12 +8,7 @@ page on the web site:: http://openlp.org/en/download.html If you're looking for how to contribute to OpenLP, then please look at the -contribution page on the web site:: - - http://openlp.org/en/documentation/introduction/contributing.html - -If you've looked at that page, and are wanting to help develop, test or -translate OpenLP, have a look at the OpenLP wiki:: +OpenLP wiki:: http://wiki.openlp.org/ diff --git a/copyright.txt b/copyright.txt index 0ef481f2b..b91a65e5a 100644 --- a/copyright.txt +++ b/copyright.txt @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp.pyw b/openlp.pyw index 5ecfbe5f5..91659e46e 100755 --- a/openlp.pyw +++ b/openlp.pyw @@ -9,7 +9,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/__init__.py b/openlp/__init__.py index ac3dac24c..d3b22d90c 100644 --- a/openlp/__init__.py +++ b/openlp/__init__.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/core/__init__.py b/openlp/core/__init__.py index 1cef928bc..8585888b7 100644 --- a/openlp/core/__init__.py +++ b/openlp/core/__init__.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/core/lib/__init__.py b/openlp/core/lib/__init__.py index 27a34d54d..e65271e03 100644 --- a/openlp/core/lib/__init__.py +++ b/openlp/core/lib/__init__.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # @@ -83,6 +84,9 @@ base_html_expands.append({u'desc': u'Italics', u'start tag': u'{it}', base_html_expands.append({u'desc': u'Underline', u'start tag': u'{u}', u'start html': u'', u'end tag': u'{/u}', u'end html': u'', u'protected': True}) +base_html_expands.append({u'desc': u'Break', u'start tag': u'{br}', + u'start html': u'
', u'end tag': u'', u'end html': u'', + u'protected': True}) def translate(context, text, comment=None, encoding=QtCore.QCoreApplication.CodecForTr, n=-1, @@ -244,6 +248,7 @@ def clean_tags(text): Remove Tags from text for display """ text = text.replace(u'
', u'\n') + text = text.replace(u'{br}', u'\n') text = text.replace(u' ', u' ') for tag in DisplayTags.get_html_tags(): text = text.replace(tag[u'start tag'], u'') diff --git a/openlp/core/lib/db.py b/openlp/core/lib/db.py index a160fec43..f698a3bd5 100644 --- a/openlp/core/lib/db.py +++ b/openlp/core/lib/db.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/core/lib/displaytags.py b/openlp/core/lib/displaytags.py index b584af023..38112f661 100644 --- a/openlp/core/lib/displaytags.py +++ b/openlp/core/lib/displaytags.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/core/lib/dockwidget.py b/openlp/core/lib/dockwidget.py index ace364ed0..d285296d5 100644 --- a/openlp/core/lib/dockwidget.py +++ b/openlp/core/lib/dockwidget.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/core/lib/eventreceiver.py b/openlp/core/lib/eventreceiver.py index f193ccd16..39a85db00 100644 --- a/openlp/core/lib/eventreceiver.py +++ b/openlp/core/lib/eventreceiver.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/core/lib/htmlbuilder.py b/openlp/core/lib/htmlbuilder.py index e2d6b8520..2b25e1d2b 100644 --- a/openlp/core/lib/htmlbuilder.py +++ b/openlp/core/lib/htmlbuilder.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/core/lib/imagemanager.py b/openlp/core/lib/imagemanager.py index f06dc2767..f72781e4b 100644 --- a/openlp/core/lib/imagemanager.py +++ b/openlp/core/lib/imagemanager.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/core/lib/listwidgetwithdnd.py b/openlp/core/lib/listwidgetwithdnd.py index 2419d1a35..3e590fbdf 100644 --- a/openlp/core/lib/listwidgetwithdnd.py +++ b/openlp/core/lib/listwidgetwithdnd.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/core/lib/mediamanageritem.py b/openlp/core/lib/mediamanageritem.py index b8cb23999..00ec3a88a 100644 --- a/openlp/core/lib/mediamanageritem.py +++ b/openlp/core/lib/mediamanageritem.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # @@ -118,7 +119,7 @@ class MediaManagerItem(QtGui.QWidget): QtCore.QObject.connect(Receiver.get_receiver(), QtCore.SIGNAL(u'%s_set_autoselect_item' % self.parent.name.lower()), self.setAutoSelectItem) - + def requiredIcons(self): """ This method is called to define the icons for the plugin. diff --git a/openlp/core/lib/plugin.py b/openlp/core/lib/plugin.py index d0d83cd0c..ab3a38ea0 100644 --- a/openlp/core/lib/plugin.py +++ b/openlp/core/lib/plugin.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/core/lib/pluginmanager.py b/openlp/core/lib/pluginmanager.py index 682352aa5..5714ce58f 100644 --- a/openlp/core/lib/pluginmanager.py +++ b/openlp/core/lib/pluginmanager.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/core/lib/renderer.py b/openlp/core/lib/renderer.py index cb65dc057..0955cf2ff 100644 --- a/openlp/core/lib/renderer.py +++ b/openlp/core/lib/renderer.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/core/lib/searchedit.py b/openlp/core/lib/searchedit.py index fc007227e..6adf2d791 100644 --- a/openlp/core/lib/searchedit.py +++ b/openlp/core/lib/searchedit.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # @@ -116,7 +117,7 @@ class SearchEdit(QtGui.QLineEdit): Set a new current search type. ``identifier`` - The search type identifier (int). + The search type identifier (int). """ menu = self.menuButton.menu() for action in menu.actions(): diff --git a/openlp/core/lib/serviceitem.py b/openlp/core/lib/serviceitem.py index 95702f229..6e3d0aa97 100644 --- a/openlp/core/lib/serviceitem.py +++ b/openlp/core/lib/serviceitem.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # @@ -28,6 +29,7 @@ The :mod:`serviceitem` provides the service item functionality including the type and capability of an item. """ +import cgi import datetime import logging import os @@ -174,17 +176,18 @@ class ServiceItem(object): formatted = self.renderer \ .format_slide(slide[u'raw_slide'], line_break, self) for page in formatted: + page = page.replace(u'
', u'{br}') self._display_frames.append({ u'title': clean_tags(page), u'text': clean_tags(page.rstrip()), - u'html': expand_tags(page.rstrip()), + u'html': expand_tags(cgi.escape(page.rstrip())), u'verseTag': slide[u'verseTag'] }) elif self.service_item_type == ServiceItemType.Image or \ self.service_item_type == ServiceItemType.Command: pass else: - log.error(u'Invalid value renderer :%s' % self.service_item_type) + log.error(u'Invalid value renderer: %s' % self.service_item_type) self.title = clean_tags(self.title) # The footer should never be None, but to be compatible with a few # nightly builds between 1.9.4 and 1.9.5, we have to correct this to diff --git a/openlp/core/lib/settingsmanager.py b/openlp/core/lib/settingsmanager.py index 472c66e23..4c2abbe34 100644 --- a/openlp/core/lib/settingsmanager.py +++ b/openlp/core/lib/settingsmanager.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/core/lib/settingstab.py b/openlp/core/lib/settingstab.py index 53fd37ed9..433ec2b38 100644 --- a/openlp/core/lib/settingstab.py +++ b/openlp/core/lib/settingstab.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/core/lib/spelltextedit.py b/openlp/core/lib/spelltextedit.py index a99539775..c6ec3ea1d 100644 --- a/openlp/core/lib/spelltextedit.py +++ b/openlp/core/lib/spelltextedit.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/core/lib/theme.py b/openlp/core/lib/theme.py index 25f0094a3..6b92c95a7 100644 --- a/openlp/core/lib/theme.py +++ b/openlp/core/lib/theme.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/core/lib/toolbar.py b/openlp/core/lib/toolbar.py index d2b37df51..bcc67edc4 100644 --- a/openlp/core/lib/toolbar.py +++ b/openlp/core/lib/toolbar.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/core/lib/ui.py b/openlp/core/lib/ui.py index 311c579ca..866472095 100644 --- a/openlp/core/lib/ui.py +++ b/openlp/core/lib/ui.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/core/theme/__init__.py b/openlp/core/theme/__init__.py index bd5ba899d..4189a5ef4 100644 --- a/openlp/core/theme/__init__.py +++ b/openlp/core/theme/__init__.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/core/theme/theme.py b/openlp/core/theme/theme.py index 78e9cb7e7..4bccadc59 100644 --- a/openlp/core/theme/theme.py +++ b/openlp/core/theme/theme.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/core/ui/__init__.py b/openlp/core/ui/__init__.py index fced32a0d..28038a60b 100644 --- a/openlp/core/ui/__init__.py +++ b/openlp/core/ui/__init__.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/core/ui/aboutdialog.py b/openlp/core/ui/aboutdialog.py index d4ea463ea..47f14682e 100644 --- a/openlp/core/ui/aboutdialog.py +++ b/openlp/core/ui/aboutdialog.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # @@ -95,7 +96,7 @@ class Ui_AboutDialog(object): 'OpenLP is free church presentation software, or lyrics ' 'projection software, used to display slides of songs, Bible ' 'verses, videos, images, and even presentations (if ' - 'OpenOffice.org, PowerPoint or PowerPoint Viewer is installed) ' + 'Impress, PowerPoint or PowerPoint Viewer is installed) ' 'for church worship using a computer and a data projector.\n' '\n' 'Find out more about OpenLP: http://openlp.org/\n' @@ -137,7 +138,8 @@ class Ui_AboutDialog(object): u'ja': [u'Kunio "Kunio" Nakamaru'], u'nb': [u'Atle "pendlaren" Weibell', u'Frode "frodus" Woldsund'], u'nl': [u'Arjen "typovar" van Voorst'], - u'pt_BR': [u'Rafael "rafaellerm" Lerm', u'Gustavo Bim'], + u'pt_BR': [u'Rafael "rafaellerm" Lerm', u'Gustavo Bim', + u'Simon "samscudder" Scudder'], u'ru': [u'Sergey "ratz" Ratz'] } documentors = [u'Wesley "wrst" Stout', @@ -221,13 +223,14 @@ class Ui_AboutDialog(object): self.aboutNotebook.setTabText( self.aboutNotebook.indexOf(self.creditsTab), translate('OpenLP.AboutForm', 'Credits')) - copyright = translate('OpenLP.AboutForm', - 'Copyright \xa9 2004-2011 Raoul Snyman\n' - 'Portions copyright \xa9 2004-2011 ' - 'Tim Bentley, Jonathan Corwin, Michael Gorven, Scott Guerrieri,\n' - 'Meinert Jordan, Andreas Preikschat, Christian Richter, Philip\n' - 'Ridout, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Carsten\n' - 'Tinggaard, Frode Woldsund') + copyright = unicode(translate('OpenLP.AboutForm', + 'Copyright \xa9 2004-2011 %s\n' + 'Portions copyright \xa9 2004-2011 %s')) % (u'Raoul Snyman', + u'Tim Bentley, Jonathan Corwin, Michael Gorven, Scott Guerrieri, ' + u'Matthias Hub, Meinert Jordan, Armin K\xf6hler, Andreas ' + u'Preikschat, Mattias P\xf5ldaru, Christian Richter, Philip ' + u'Ridout, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon ' + u'Tibble, Frode Woldsund') licence = translate('OpenLP.AboutForm', 'This program is free software; you can redistribute it and/or ' 'modify it under the terms of the GNU General Public License as ' @@ -615,4 +618,4 @@ class Ui_AboutDialog(object): self.aboutNotebook.indexOf(self.licenseTab), translate('OpenLP.AboutForm', 'License')) self.contributeButton.setText(translate('OpenLP.AboutForm', - 'Contribute')) \ No newline at end of file + 'Contribute')) diff --git a/openlp/core/ui/aboutform.py b/openlp/core/ui/aboutform.py index 4112cfd8f..60cec2a57 100644 --- a/openlp/core/ui/aboutform.py +++ b/openlp/core/ui/aboutform.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/core/ui/advancedtab.py b/openlp/core/ui/advancedtab.py index b6dd1cb27..b1e8444d4 100644 --- a/openlp/core/ui/advancedtab.py +++ b/openlp/core/ui/advancedtab.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/core/ui/displaytagdialog.py b/openlp/core/ui/displaytagdialog.py index 9bf6cb4d1..89094ee66 100644 --- a/openlp/core/ui/displaytagdialog.py +++ b/openlp/core/ui/displaytagdialog.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/core/ui/displaytagform.py b/openlp/core/ui/displaytagform.py index c439fc116..213f6e2e5 100644 --- a/openlp/core/ui/displaytagform.py +++ b/openlp/core/ui/displaytagform.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/core/ui/exceptiondialog.py b/openlp/core/ui/exceptiondialog.py index 4aa01f776..05e78d5dc 100644 --- a/openlp/core/ui/exceptiondialog.py +++ b/openlp/core/ui/exceptiondialog.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/core/ui/exceptionform.py b/openlp/core/ui/exceptionform.py index 279122937..ab61ef24d 100644 --- a/openlp/core/ui/exceptionform.py +++ b/openlp/core/ui/exceptionform.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/core/ui/filerenamedialog.py b/openlp/core/ui/filerenamedialog.py index ec0f0e2dd..2234938fb 100644 --- a/openlp/core/ui/filerenamedialog.py +++ b/openlp/core/ui/filerenamedialog.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/core/ui/filerenameform.py b/openlp/core/ui/filerenameform.py index 049b68336..bfff2e985 100644 --- a/openlp/core/ui/filerenameform.py +++ b/openlp/core/ui/filerenameform.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/core/ui/firsttimeform.py b/openlp/core/ui/firsttimeform.py index dade26cf9..e378fb63a 100644 --- a/openlp/core/ui/firsttimeform.py +++ b/openlp/core/ui/firsttimeform.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/core/ui/firsttimelanguagedialog.py b/openlp/core/ui/firsttimelanguagedialog.py index bdc03048a..1807595c5 100644 --- a/openlp/core/ui/firsttimelanguagedialog.py +++ b/openlp/core/ui/firsttimelanguagedialog.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/core/ui/firsttimelanguageform.py b/openlp/core/ui/firsttimelanguageform.py index f6ffafb8f..da4ee4019 100644 --- a/openlp/core/ui/firsttimelanguageform.py +++ b/openlp/core/ui/firsttimelanguageform.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/core/ui/firsttimewizard.py b/openlp/core/ui/firsttimewizard.py index 4c7ae6880..f23a8fdde 100644 --- a/openlp/core/ui/firsttimewizard.py +++ b/openlp/core/ui/firsttimewizard.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # @@ -201,8 +202,7 @@ class Ui_FirstTimeWizard(object): 'Welcome to the First Time Wizard')) self.informationLabel.setText(translate('OpenLP.FirstTimeWizard', 'This wizard will help you to configure OpenLP for initial use.' - ' Click the next button below to start the process of selection ' - 'your initial options. ')) + ' Click the next button below to start.')) self.pluginPage.setTitle(translate('OpenLP.FirstTimeWizard', 'Activate required Plugins')) self.pluginPage.setSubTitle(translate('OpenLP.FirstTimeWizard', diff --git a/openlp/core/ui/generaltab.py b/openlp/core/ui/generaltab.py index 75cb8fa98..14ce7115f 100644 --- a/openlp/core/ui/generaltab.py +++ b/openlp/core/ui/generaltab.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/core/ui/maindisplay.py b/openlp/core/ui/maindisplay.py index 8af061f2b..8695aa0e2 100644 --- a/openlp/core/ui/maindisplay.py +++ b/openlp/core/ui/maindisplay.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/core/ui/mainwindow.py b/openlp/core/ui/mainwindow.py index bf6b7fa98..b54f7b206 100644 --- a/openlp/core/ui/mainwindow.py +++ b/openlp/core/ui/mainwindow.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # @@ -72,14 +73,14 @@ class Ui_MainWindow(object): mainWindow.setWindowIcon(build_icon(u':/icon/openlp-logo-64x64.png')) mainWindow.setDockNestingEnabled(True) # Set up the main container, which contains all the other form widgets. - self.MainContent = QtGui.QWidget(mainWindow) - self.MainContent.setObjectName(u'MainContent') - self.mainContentLayout = QtGui.QHBoxLayout(self.MainContent) + self.mainContent = QtGui.QWidget(mainWindow) + self.mainContent.setObjectName(u'mainContent') + self.mainContentLayout = QtGui.QHBoxLayout(self.mainContent) self.mainContentLayout.setSpacing(0) self.mainContentLayout.setMargin(0) self.mainContentLayout.setObjectName(u'mainContentLayout') - mainWindow.setCentralWidget(self.MainContent) - self.controlSplitter = QtGui.QSplitter(self.MainContent) + mainWindow.setCentralWidget(self.mainContent) + self.controlSplitter = QtGui.QSplitter(self.mainContent) self.controlSplitter.setOrientation(QtCore.Qt.Horizontal) self.controlSplitter.setObjectName(u'controlSplitter') self.mainContentLayout.addWidget(self.controlSplitter) @@ -93,31 +94,31 @@ class Ui_MainWindow(object): QtCore.QVariant(True)).toBool() self.liveController.panel.setVisible(liveVisible) # Create menu - self.MenuBar = QtGui.QMenuBar(mainWindow) - self.MenuBar.setObjectName(u'MenuBar') - self.FileMenu = QtGui.QMenu(self.MenuBar) - self.FileMenu.setObjectName(u'FileMenu') - self.FileImportMenu = QtGui.QMenu(self.FileMenu) - self.FileImportMenu.setObjectName(u'FileImportMenu') - self.FileExportMenu = QtGui.QMenu(self.FileMenu) - self.FileExportMenu.setObjectName(u'FileExportMenu') + self.menuBar = QtGui.QMenuBar(mainWindow) + self.menuBar.setObjectName(u'menuBar') + self.fileMenu = QtGui.QMenu(self.menuBar) + self.fileMenu.setObjectName(u'fileMenu') + self.fileImportMenu = QtGui.QMenu(self.fileMenu) + self.fileImportMenu.setObjectName(u'fileImportMenu') + self.fileExportMenu = QtGui.QMenu(self.fileMenu) + self.fileExportMenu.setObjectName(u'fileExportMenu') # View Menu - self.viewMenu = QtGui.QMenu(self.MenuBar) + self.viewMenu = QtGui.QMenu(self.menuBar) self.viewMenu.setObjectName(u'viewMenu') - self.ViewModeMenu = QtGui.QMenu(self.viewMenu) - self.ViewModeMenu.setObjectName(u'ViewModeMenu') + self.viewModeMenu = QtGui.QMenu(self.viewMenu) + self.viewModeMenu.setObjectName(u'viewModeMenu') # Tools Menu - self.ToolsMenu = QtGui.QMenu(self.MenuBar) - self.ToolsMenu.setObjectName(u'ToolsMenu') + self.toolsMenu = QtGui.QMenu(self.menuBar) + self.toolsMenu.setObjectName(u'toolsMenu') # Settings Menu - self.SettingsMenu = QtGui.QMenu(self.MenuBar) - self.SettingsMenu.setObjectName(u'SettingsMenu') - self.SettingsLanguageMenu = QtGui.QMenu(self.SettingsMenu) - self.SettingsLanguageMenu.setObjectName(u'SettingsLanguageMenu') + self.settingsMenu = QtGui.QMenu(self.menuBar) + self.settingsMenu.setObjectName(u'settingsMenu') + self.settingsLanguageMenu = QtGui.QMenu(self.settingsMenu) + self.settingsLanguageMenu.setObjectName(u'settingsLanguageMenu') # Help Menu - self.HelpMenu = QtGui.QMenu(self.MenuBar) - self.HelpMenu.setObjectName(u'HelpMenu') - mainWindow.setMenuBar(self.MenuBar) + self.helpMenu = QtGui.QMenu(self.menuBar) + self.helpMenu.setObjectName(u'helpMenu') + mainWindow.setMenuBar(self.menuBar) self.statusBar = QtGui.QStatusBar(mainWindow) self.statusBar.setObjectName(u'statusBar') mainWindow.setStatusBar(self.statusBar) @@ -134,17 +135,17 @@ class Ui_MainWindow(object): u'mediaManagerDock', u':/system/system_mediamanager.png') self.mediaManagerDock.setStyleSheet(MEDIA_MANAGER_STYLE) # Create the media toolbox - self.MediaToolBox = QtGui.QToolBox(self.mediaManagerDock) - self.MediaToolBox.setObjectName(u'MediaToolBox') - self.mediaManagerDock.setWidget(self.MediaToolBox) + self.mediaToolBox = QtGui.QToolBox(self.mediaManagerDock) + self.mediaToolBox.setObjectName(u'mediaToolBox') + self.mediaManagerDock.setWidget(self.mediaToolBox) mainWindow.addDockWidget(QtCore.Qt.LeftDockWidgetArea, self.mediaManagerDock) # Create the service manager self.serviceManagerDock = OpenLPDockWidget(mainWindow, u'serviceManagerDock', u':/system/system_servicemanager.png') - self.ServiceManagerContents = ServiceManager(mainWindow, + self.serviceManagerContents = ServiceManager(mainWindow, self.serviceManagerDock) - self.serviceManagerDock.setWidget(self.ServiceManagerContents) + self.serviceManagerDock.setWidget(self.serviceManagerContents) mainWindow.addDockWidget(QtCore.Qt.RightDockWidgetArea, self.serviceManagerDock) # Create the theme manager @@ -159,75 +160,75 @@ class Ui_MainWindow(object): # Create the menu items action_list = ActionList.get_instance() action_list.add_category(UiStrings().File, CategoryOrder.standardMenu) - self.FileNewItem = shortcut_action(mainWindow, u'FileNewItem', + self.fileNewItem = shortcut_action(mainWindow, u'fileNewItem', [QtGui.QKeySequence(u'Ctrl+N')], - self.ServiceManagerContents.onNewServiceClicked, + self.serviceManagerContents.onNewServiceClicked, u':/general/general_new.png', category=UiStrings().File) - self.FileOpenItem = shortcut_action(mainWindow, u'FileOpenItem', + self.fileOpenItem = shortcut_action(mainWindow, u'fileOpenItem', [QtGui.QKeySequence(u'Ctrl+O')], - self.ServiceManagerContents.onLoadServiceClicked, + self.serviceManagerContents.onLoadServiceClicked, u':/general/general_open.png', category=UiStrings().File) - self.FileSaveItem = shortcut_action(mainWindow, u'FileSaveItem', + self.fileSaveItem = shortcut_action(mainWindow, u'fileSaveItem', [QtGui.QKeySequence(u'Ctrl+S')], - self.ServiceManagerContents.saveFile, + self.serviceManagerContents.saveFile, u':/general/general_save.png', category=UiStrings().File) - self.FileSaveAsItem = shortcut_action(mainWindow, u'FileSaveAsItem', + self.fileSaveAsItem = shortcut_action(mainWindow, u'fileSaveAsItem', [QtGui.QKeySequence(u'Ctrl+Shift+S')], - self.ServiceManagerContents.saveFileAs, category=UiStrings().File) + self.serviceManagerContents.saveFileAs, category=UiStrings().File) self.printServiceOrderItem = shortcut_action(mainWindow, u'printServiceItem', [QtGui.QKeySequence(u'Ctrl+P')], - self.ServiceManagerContents.printServiceOrder, + self.serviceManagerContents.printServiceOrder, category=UiStrings().File) - self.FileExitItem = shortcut_action(mainWindow, u'FileExitItem', + self.fileExitItem = shortcut_action(mainWindow, u'FileExitItem', [QtGui.QKeySequence(u'Alt+F4')], mainWindow.close, u':/system/system_exit.png', category=UiStrings().File) action_list.add_category(UiStrings().Import, CategoryOrder.standardMenu) - self.ImportThemeItem = base_action( - mainWindow, u'ImportThemeItem', UiStrings().Import) - self.ImportLanguageItem = base_action( - mainWindow, u'ImportLanguageItem')#, UiStrings().Import) + self.importThemeItem = base_action( + mainWindow, u'importThemeItem', UiStrings().Import) + self.importLanguageItem = base_action( + mainWindow, u'importLanguageItem')#, UiStrings().Import) action_list.add_category(UiStrings().Export, CategoryOrder.standardMenu) - self.ExportThemeItem = base_action( - mainWindow, u'ExportThemeItem', UiStrings().Export) - self.ExportLanguageItem = base_action( - mainWindow, u'ExportLanguageItem')#, UiStrings().Export) + self.exportThemeItem = base_action( + mainWindow, u'exportThemeItem', UiStrings().Export) + self.exportLanguageItem = base_action( + mainWindow, u'exportLanguageItem')#, UiStrings().Export) action_list.add_category(UiStrings().View, CategoryOrder.standardMenu) - self.ViewMediaManagerItem = shortcut_action(mainWindow, - u'ViewMediaManagerItem', [QtGui.QKeySequence(u'F8')], + self.viewMediaManagerItem = shortcut_action(mainWindow, + u'viewMediaManagerItem', [QtGui.QKeySequence(u'F8')], self.toggleMediaManager, u':/system/system_mediamanager.png', self.mediaManagerDock.isVisible(), UiStrings().View) - self.ViewThemeManagerItem = shortcut_action(mainWindow, - u'ViewThemeManagerItem', [QtGui.QKeySequence(u'F10')], + self.viewThemeManagerItem = shortcut_action(mainWindow, + u'viewThemeManagerItem', [QtGui.QKeySequence(u'F10')], self.toggleThemeManager, u':/system/system_thememanager.png', self.themeManagerDock.isVisible(), UiStrings().View) - self.ViewServiceManagerItem = shortcut_action(mainWindow, - u'ViewServiceManagerItem', [QtGui.QKeySequence(u'F9')], + self.viewServiceManagerItem = shortcut_action(mainWindow, + u'viewServiceManagerItem', [QtGui.QKeySequence(u'F9')], self.toggleServiceManager, u':/system/system_servicemanager.png', self.serviceManagerDock.isVisible(), UiStrings().View) - self.ViewPreviewPanel = shortcut_action(mainWindow, - u'ViewPreviewPanel', [QtGui.QKeySequence(u'F11')], + self.viewPreviewPanel = shortcut_action(mainWindow, + u'viewPreviewPanel', [QtGui.QKeySequence(u'F11')], self.setPreviewPanelVisibility, checked=previewVisible, category=UiStrings().View) - self.ViewLivePanel = shortcut_action(mainWindow, u'ViewLivePanel', + self.viewLivePanel = shortcut_action(mainWindow, u'viewLivePanel', [QtGui.QKeySequence(u'F12')], self.setLivePanelVisibility, checked=liveVisible, category=UiStrings().View) action_list.add_category(UiStrings().ViewMode, CategoryOrder.standardMenu) - self.ModeDefaultItem = checkable_action( - mainWindow, u'ModeDefaultItem', category=UiStrings().ViewMode) - self.ModeSetupItem = checkable_action( - mainWindow, u'ModeLiveItem', category=UiStrings().ViewMode) - self.ModeLiveItem = checkable_action( - mainWindow, u'ModeLiveItem', True, UiStrings().ViewMode) - self.ModeGroup = QtGui.QActionGroup(mainWindow) - self.ModeGroup.addAction(self.ModeDefaultItem) - self.ModeGroup.addAction(self.ModeSetupItem) - self.ModeGroup.addAction(self.ModeLiveItem) - self.ModeDefaultItem.setChecked(True) + self.modeDefaultItem = checkable_action( + mainWindow, u'modeDefaultItem', category=UiStrings().ViewMode) + self.modeSetupItem = checkable_action( + mainWindow, u'modeLiveItem', category=UiStrings().ViewMode) + self.modeLiveItem = checkable_action( + mainWindow, u'modeLiveItem', True, UiStrings().ViewMode) + self.modeGroup = QtGui.QActionGroup(mainWindow) + self.modeGroup.addAction(self.modeDefaultItem) + self.modeGroup.addAction(self.modeSetupItem) + self.modeGroup.addAction(self.modeLiveItem) + self.modeDefaultItem.setChecked(True) action_list.add_category(UiStrings().Tools, CategoryOrder.standardMenu) - self.ToolsAddToolItem = icon_action(mainWindow, u'ToolsAddToolItem', + self.toolsAddToolItem = icon_action(mainWindow, u'toolsAddToolItem', u':/tools/tools_add.png', category=UiStrings().Tools) - self.ToolsOpenDataFolder = icon_action(mainWindow, - u'ToolsOpenDataFolder', u':/general/general_open.png', + self.toolsOpenDataFolder = icon_action(mainWindow, + u'toolsOpenDataFolder', u':/general/general_open.png', category=UiStrings().Tools) self.updateThemeImages = base_action(mainWindow, u'updateThemeImages', category=UiStrings().Tools) @@ -237,82 +238,84 @@ class Ui_MainWindow(object): self.onPluginItemClicked, u':/system/settings_plugin_list.png', category=UiStrings().Settings) # i18n Language Items - self.AutoLanguageItem = checkable_action(mainWindow, - u'AutoLanguageItem', LanguageManager.auto_language) - self.LanguageGroup = QtGui.QActionGroup(mainWindow) - self.LanguageGroup.setExclusive(True) - self.LanguageGroup.setObjectName(u'LanguageGroup') - add_actions(self.LanguageGroup, [self.AutoLanguageItem]) + self.autoLanguageItem = checkable_action(mainWindow, + u'autoLanguageItem', LanguageManager.auto_language) + self.languageGroup = QtGui.QActionGroup(mainWindow) + self.languageGroup.setExclusive(True) + self.languageGroup.setObjectName(u'languageGroup') + add_actions(self.languageGroup, [self.autoLanguageItem]) qmList = LanguageManager.get_qm_list() savedLanguage = LanguageManager.get_language() for key in sorted(qmList.keys()): languageItem = checkable_action( mainWindow, key, qmList[key] == savedLanguage) - add_actions(self.LanguageGroup, [languageItem]) - self.SettingsShortcutsItem = icon_action(mainWindow, - u'SettingsShortcutsItem', + add_actions(self.languageGroup, [languageItem]) + self.settingsShortcutsItem = icon_action(mainWindow, + u'settingsShortcutsItem', u':/system/system_configure_shortcuts.png', category=UiStrings().Settings) - self.DisplayTagItem = icon_action(mainWindow, - u'DisplayTagItem', u':/system/tag_editor.png', + self.displayTagItem = icon_action(mainWindow, + u'displayTagItem', u':/system/tag_editor.png', category=UiStrings().Settings) - self.SettingsConfigureItem = icon_action(mainWindow, - u'SettingsConfigureItem', u':/system/system_settings.png', + self.settingsConfigureItem = icon_action(mainWindow, + u'settingsConfigureItem', u':/system/system_settings.png', category=UiStrings().Settings) action_list.add_category(UiStrings().Help, CategoryOrder.standardMenu) - self.HelpDocumentationItem = icon_action(mainWindow, - u'HelpDocumentationItem', u':/system/system_help_contents.png', + self.helpDocumentationItem = icon_action(mainWindow, + u'helpDocumentationItem', u':/system/system_help_contents.png', category=None)#UiStrings().Help) - self.HelpDocumentationItem.setEnabled(False) - self.HelpAboutItem = shortcut_action(mainWindow, u'HelpAboutItem', + self.helpDocumentationItem.setEnabled(False) + self.helpAboutItem = shortcut_action(mainWindow, u'helpAboutItem', [QtGui.QKeySequence(u'Ctrl+F1')], self.onHelpAboutItemClicked, u':/system/system_about.png', category=UiStrings().Help) - self.HelpOnlineHelpItem = base_action( - mainWindow, u'HelpOnlineHelpItem', category=UiStrings().Help) + self.helpOnlineHelpItem = shortcut_action( + mainWindow, u'helpOnlineHelpItem', [QtGui.QKeySequence(u'F1')], + self.onHelpOnlineHelpClicked, u':/system/system_online_help.png', + category=UiStrings().Help) self.helpWebSiteItem = base_action( mainWindow, u'helpWebSiteItem', category=UiStrings().Help) - add_actions(self.FileImportMenu, - (self.ImportThemeItem, self.ImportLanguageItem)) - add_actions(self.FileExportMenu, - (self.ExportThemeItem, self.ExportLanguageItem)) - self.FileMenuActions = (self.FileNewItem, self.FileOpenItem, - self.FileSaveItem, self.FileSaveAsItem, None, - self.printServiceOrderItem, None, self.FileImportMenu.menuAction(), - self.FileExportMenu.menuAction(), self.FileExitItem) - add_actions(self.ViewModeMenu, (self.ModeDefaultItem, - self.ModeSetupItem, self.ModeLiveItem)) - add_actions(self.viewMenu, (self.ViewModeMenu.menuAction(), - None, self.ViewMediaManagerItem, self.ViewServiceManagerItem, - self.ViewThemeManagerItem, None, self.ViewPreviewPanel, - self.ViewLivePanel)) + add_actions(self.fileImportMenu, + (self.importThemeItem, self.importLanguageItem)) + add_actions(self.fileExportMenu, + (self.exportThemeItem, self.exportLanguageItem)) + self.fileMenuActions = (self.fileNewItem, self.fileOpenItem, + self.fileSaveItem, self.fileSaveAsItem, None, + self.printServiceOrderItem, None, self.fileImportMenu.menuAction(), + self.fileExportMenu.menuAction(), self.fileExitItem) + add_actions(self.viewModeMenu, (self.modeDefaultItem, + self.modeSetupItem, self.modeLiveItem)) + add_actions(self.viewMenu, (self.viewModeMenu.menuAction(), + None, self.viewMediaManagerItem, self.viewServiceManagerItem, + self.viewThemeManagerItem, None, self.viewPreviewPanel, + self.viewLivePanel)) # i18n add Language Actions - add_actions(self.SettingsLanguageMenu, (self.AutoLanguageItem, None)) - add_actions(self.SettingsLanguageMenu, self.LanguageGroup.actions()) - add_actions(self.SettingsMenu, (self.settingsPluginListItem, - self.SettingsLanguageMenu.menuAction(), None, - self.DisplayTagItem, self.SettingsShortcutsItem, - self.SettingsConfigureItem)) - add_actions(self.ToolsMenu, (self.ToolsAddToolItem, None)) - add_actions(self.ToolsMenu, (self.ToolsOpenDataFolder, None)) - add_actions(self.ToolsMenu, [self.updateThemeImages]) - add_actions(self.HelpMenu, (self.HelpDocumentationItem, - self.HelpOnlineHelpItem, None, self.helpWebSiteItem, - self.HelpAboutItem)) - add_actions(self.MenuBar, (self.FileMenu.menuAction(), - self.viewMenu.menuAction(), self.ToolsMenu.menuAction(), - self.SettingsMenu.menuAction(), self.HelpMenu.menuAction())) + add_actions(self.settingsLanguageMenu, (self.autoLanguageItem, None)) + add_actions(self.settingsLanguageMenu, self.languageGroup.actions()) + add_actions(self.settingsMenu, (self.settingsPluginListItem, + self.settingsLanguageMenu.menuAction(), None, + self.displayTagItem, self.settingsShortcutsItem, + self.settingsConfigureItem)) + add_actions(self.toolsMenu, (self.toolsAddToolItem, None)) + add_actions(self.toolsMenu, (self.toolsOpenDataFolder, None)) + add_actions(self.toolsMenu, [self.updateThemeImages]) + add_actions(self.helpMenu, (self.helpDocumentationItem, + self.helpOnlineHelpItem, None, self.helpWebSiteItem, + self.helpAboutItem)) + add_actions(self.menuBar, (self.fileMenu.menuAction(), + self.viewMenu.menuAction(), self.toolsMenu.menuAction(), + self.settingsMenu.menuAction(), self.helpMenu.menuAction())) # Initialise the translation self.retranslateUi(mainWindow) - self.MediaToolBox.setCurrentIndex(0) + self.mediaToolBox.setCurrentIndex(0) # Connect up some signals and slots - QtCore.QObject.connect(self.FileMenu, + QtCore.QObject.connect(self.fileMenu, QtCore.SIGNAL(u'aboutToShow()'), self.updateFileMenu) QtCore.QMetaObject.connectSlotsByName(mainWindow) # Hide the entry, as it does not have any functionality yet. - self.ToolsAddToolItem.setVisible(False) - self.ImportLanguageItem.setVisible(False) - self.ExportLanguageItem.setVisible(False) - self.HelpDocumentationItem.setVisible(False) + self.toolsAddToolItem.setVisible(False) + self.importLanguageItem.setVisible(False) + self.exportLanguageItem.setVisible(False) + self.helpDocumentationItem.setVisible(False) def retranslateUi(self, mainWindow): """ @@ -320,136 +323,133 @@ class Ui_MainWindow(object): """ mainWindow.mainTitle = UiStrings().OLPV2 mainWindow.setWindowTitle(mainWindow.mainTitle) - self.FileMenu.setTitle(translate('OpenLP.MainWindow', '&File')) - self.FileImportMenu.setTitle(translate('OpenLP.MainWindow', '&Import')) - self.FileExportMenu.setTitle(translate('OpenLP.MainWindow', '&Export')) + self.fileMenu.setTitle(translate('OpenLP.MainWindow', '&File')) + self.fileImportMenu.setTitle(translate('OpenLP.MainWindow', '&Import')) + self.fileExportMenu.setTitle(translate('OpenLP.MainWindow', '&Export')) self.viewMenu.setTitle(translate('OpenLP.MainWindow', '&View')) - self.ViewModeMenu.setTitle(translate('OpenLP.MainWindow', 'M&ode')) - self.ToolsMenu.setTitle(translate('OpenLP.MainWindow', '&Tools')) - self.SettingsMenu.setTitle(translate('OpenLP.MainWindow', '&Settings')) - self.SettingsLanguageMenu.setTitle(translate('OpenLP.MainWindow', + self.viewModeMenu.setTitle(translate('OpenLP.MainWindow', 'M&ode')) + self.toolsMenu.setTitle(translate('OpenLP.MainWindow', '&Tools')) + self.settingsMenu.setTitle(translate('OpenLP.MainWindow', '&Settings')) + self.settingsLanguageMenu.setTitle(translate('OpenLP.MainWindow', '&Language')) - self.HelpMenu.setTitle(translate('OpenLP.MainWindow', '&Help')) + self.helpMenu.setTitle(translate('OpenLP.MainWindow', '&Help')) self.mediaManagerDock.setWindowTitle( translate('OpenLP.MainWindow', 'Media Manager')) self.serviceManagerDock.setWindowTitle( translate('OpenLP.MainWindow', 'Service Manager')) self.themeManagerDock.setWindowTitle( translate('OpenLP.MainWindow', 'Theme Manager')) - self.FileNewItem.setText(translate('OpenLP.MainWindow', '&New')) - self.FileNewItem.setToolTip(UiStrings().NewService) - self.FileNewItem.setStatusTip(UiStrings().CreateService) - self.FileOpenItem.setText(translate('OpenLP.MainWindow', '&Open')) - self.FileOpenItem.setToolTip(UiStrings().OpenService) - self.FileOpenItem.setStatusTip( + self.fileNewItem.setText(translate('OpenLP.MainWindow', '&New')) + self.fileNewItem.setToolTip(UiStrings().NewService) + self.fileNewItem.setStatusTip(UiStrings().CreateService) + self.fileOpenItem.setText(translate('OpenLP.MainWindow', '&Open')) + self.fileOpenItem.setToolTip(UiStrings().OpenService) + self.fileOpenItem.setStatusTip( translate('OpenLP.MainWindow', 'Open an existing service.')) - self.FileSaveItem.setText(translate('OpenLP.MainWindow', '&Save')) - self.FileSaveItem.setToolTip(UiStrings().SaveService) - self.FileSaveItem.setStatusTip( + self.fileSaveItem.setText(translate('OpenLP.MainWindow', '&Save')) + self.fileSaveItem.setToolTip(UiStrings().SaveService) + self.fileSaveItem.setStatusTip( translate('OpenLP.MainWindow', 'Save the current service to disk.')) - self.FileSaveAsItem.setText( + self.fileSaveAsItem.setText( translate('OpenLP.MainWindow', 'Save &As...')) - self.FileSaveAsItem.setToolTip( + self.fileSaveAsItem.setToolTip( translate('OpenLP.MainWindow', 'Save Service As')) - self.FileSaveAsItem.setStatusTip(translate('OpenLP.MainWindow', + self.fileSaveAsItem.setStatusTip(translate('OpenLP.MainWindow', 'Save the current service under a new name.')) self.printServiceOrderItem.setText(UiStrings().PrintServiceOrder) self.printServiceOrderItem.setStatusTip(translate('OpenLP.MainWindow', 'Print the current Service Order.')) - self.FileExitItem.setText( + self.fileExitItem.setText( translate('OpenLP.MainWindow', 'E&xit')) - self.FileExitItem.setStatusTip( + self.fileExitItem.setStatusTip( translate('OpenLP.MainWindow', 'Quit OpenLP')) - self.ImportThemeItem.setText( + self.importThemeItem.setText( translate('OpenLP.MainWindow', '&Theme')) - self.ImportLanguageItem.setText( + self.importLanguageItem.setText( translate('OpenLP.MainWindow', '&Language')) - self.ExportThemeItem.setText( + self.exportThemeItem.setText( translate('OpenLP.MainWindow', '&Theme')) - self.ExportLanguageItem.setText( + self.exportLanguageItem.setText( translate('OpenLP.MainWindow', '&Language')) - self.SettingsShortcutsItem.setText( + self.settingsShortcutsItem.setText( translate('OpenLP.MainWindow', 'Configure &Shortcuts...')) - self.DisplayTagItem.setText( + self.displayTagItem.setText( translate('OpenLP.MainWindow', '&Configure Display Tags')) - self.SettingsConfigureItem.setText( + self.settingsConfigureItem.setText( translate('OpenLP.MainWindow', '&Configure OpenLP...')) - self.ViewMediaManagerItem.setText( + self.viewMediaManagerItem.setText( translate('OpenLP.MainWindow', '&Media Manager')) - self.ViewMediaManagerItem.setToolTip( + self.viewMediaManagerItem.setToolTip( translate('OpenLP.MainWindow', 'Toggle Media Manager')) - self.ViewMediaManagerItem.setStatusTip(translate('OpenLP.MainWindow', + self.viewMediaManagerItem.setStatusTip(translate('OpenLP.MainWindow', 'Toggle the visibility of the media manager.')) - self.ViewThemeManagerItem.setText( + self.viewThemeManagerItem.setText( translate('OpenLP.MainWindow', '&Theme Manager')) - self.ViewThemeManagerItem.setToolTip( + self.viewThemeManagerItem.setToolTip( translate('OpenLP.MainWindow', 'Toggle Theme Manager')) - self.ViewThemeManagerItem.setStatusTip(translate('OpenLP.MainWindow', + self.viewThemeManagerItem.setStatusTip(translate('OpenLP.MainWindow', 'Toggle the visibility of the theme manager.')) - self.ViewServiceManagerItem.setText( + self.viewServiceManagerItem.setText( translate('OpenLP.MainWindow', '&Service Manager')) - self.ViewServiceManagerItem.setToolTip( + self.viewServiceManagerItem.setToolTip( translate('OpenLP.MainWindow', 'Toggle Service Manager')) - self.ViewServiceManagerItem.setStatusTip(translate('OpenLP.MainWindow', + self.viewServiceManagerItem.setStatusTip(translate('OpenLP.MainWindow', 'Toggle the visibility of the service manager.')) - self.ViewPreviewPanel.setText( + self.viewPreviewPanel.setText( translate('OpenLP.MainWindow', '&Preview Panel')) - self.ViewPreviewPanel.setToolTip( + self.viewPreviewPanel.setToolTip( translate('OpenLP.MainWindow', 'Toggle Preview Panel')) - self.ViewPreviewPanel.setStatusTip(translate('OpenLP.MainWindow', + self.viewPreviewPanel.setStatusTip(translate('OpenLP.MainWindow', 'Toggle the visibility of the preview panel.')) - self.ViewLivePanel.setText( + self.viewLivePanel.setText( translate('OpenLP.MainWindow', '&Live Panel')) - self.ViewLivePanel.setToolTip( + self.viewLivePanel.setToolTip( translate('OpenLP.MainWindow', 'Toggle Live Panel')) - self.ViewLivePanel.setStatusTip(translate('OpenLP.MainWindow', + self.viewLivePanel.setStatusTip(translate('OpenLP.MainWindow', 'Toggle the visibility of the live panel.')) self.settingsPluginListItem.setText(translate('OpenLP.MainWindow', '&Plugin List')) self.settingsPluginListItem.setStatusTip( translate('OpenLP.MainWindow', 'List the Plugins')) - self.HelpDocumentationItem.setText( + self.helpDocumentationItem.setText( translate('OpenLP.MainWindow', '&User Guide')) - self.HelpAboutItem.setText(translate('OpenLP.MainWindow', '&About')) - self.HelpAboutItem.setStatusTip( + self.helpAboutItem.setText(translate('OpenLP.MainWindow', '&About')) + self.helpAboutItem.setStatusTip( translate('OpenLP.MainWindow', 'More information about OpenLP')) - self.HelpOnlineHelpItem.setText( + self.helpOnlineHelpItem.setText( translate('OpenLP.MainWindow', '&Online Help')) - # Uncomment after 1.9.5 beta string freeze - #self.HelpOnlineHelpItem.setShortcut( - # translate('OpenLP.MainWindow', 'F1')) self.helpWebSiteItem.setText( translate('OpenLP.MainWindow', '&Web Site')) - for item in self.LanguageGroup.actions(): + for item in self.languageGroup.actions(): item.setText(item.objectName()) item.setStatusTip(unicode(translate('OpenLP.MainWindow', 'Set the interface language to %s')) % item.objectName()) - self.AutoLanguageItem.setText( + self.autoLanguageItem.setText( translate('OpenLP.MainWindow', '&Autodetect')) - self.AutoLanguageItem.setStatusTip(translate('OpenLP.MainWindow', + self.autoLanguageItem.setStatusTip(translate('OpenLP.MainWindow', 'Use the system language, if available.')) - self.ToolsAddToolItem.setText( + self.toolsAddToolItem.setText( translate('OpenLP.MainWindow', 'Add &Tool...')) - self.ToolsAddToolItem.setStatusTip(translate('OpenLP.MainWindow', + self.toolsAddToolItem.setStatusTip(translate('OpenLP.MainWindow', 'Add an application to the list of tools.')) - self.ToolsOpenDataFolder.setText( + self.toolsOpenDataFolder.setText( translate('OpenLP.MainWindow', 'Open &Data Folder...')) - self.ToolsOpenDataFolder.setStatusTip(translate('OpenLP.MainWindow', + self.toolsOpenDataFolder.setStatusTip(translate('OpenLP.MainWindow', 'Open the folder where songs, bibles and other data resides.')) self.updateThemeImages.setText( translate('OpenLP.MainWindow', 'Update Theme Images')) self.updateThemeImages.setStatusTip( translate('OpenLP.MainWindow', 'Update the preview images for all ' 'themes.')) - self.ModeDefaultItem.setText( + self.modeDefaultItem.setText( translate('OpenLP.MainWindow', '&Default')) - self.ModeDefaultItem.setStatusTip(translate('OpenLP.MainWindow', + self.modeDefaultItem.setStatusTip(translate('OpenLP.MainWindow', 'Set the view mode back to the default.')) - self.ModeSetupItem.setText(translate('OpenLP.MainWindow', '&Setup')) - self.ModeSetupItem.setStatusTip( + self.modeSetupItem.setText(translate('OpenLP.MainWindow', '&Setup')) + self.modeSetupItem.setStatusTip( translate('OpenLP.MainWindow', 'Set the view mode to Setup.')) - self.ModeLiveItem.setText(translate('OpenLP.MainWindow', '&Live')) - self.ModeLiveItem.setStatusTip( + self.modeLiveItem.setText(translate('OpenLP.MainWindow', '&Live')) + self.modeLiveItem.setStatusTip( translate('OpenLP.MainWindow', 'Set the view mode to Live.')) @@ -492,42 +492,40 @@ class MainWindow(QtGui.QMainWindow, Ui_MainWindow): self.updateFileMenu() self.pluginForm = PluginForm(self) # Set up signals and slots - QtCore.QObject.connect(self.ImportThemeItem, + QtCore.QObject.connect(self.importThemeItem, QtCore.SIGNAL(u'triggered()'), self.themeManagerContents.onImportTheme) - QtCore.QObject.connect(self.ExportThemeItem, + QtCore.QObject.connect(self.exportThemeItem, QtCore.SIGNAL(u'triggered()'), self.themeManagerContents.onExportTheme) QtCore.QObject.connect(self.mediaManagerDock, QtCore.SIGNAL(u'visibilityChanged(bool)'), - self.ViewMediaManagerItem.setChecked) + self.viewMediaManagerItem.setChecked) QtCore.QObject.connect(self.serviceManagerDock, QtCore.SIGNAL(u'visibilityChanged(bool)'), - self.ViewServiceManagerItem.setChecked) + self.viewServiceManagerItem.setChecked) QtCore.QObject.connect(self.themeManagerDock, QtCore.SIGNAL(u'visibilityChanged(bool)'), - self.ViewThemeManagerItem.setChecked) + self.viewThemeManagerItem.setChecked) QtCore.QObject.connect(self.helpWebSiteItem, QtCore.SIGNAL(u'triggered()'), self.onHelpWebSiteClicked) - QtCore.QObject.connect(self.HelpOnlineHelpItem, - QtCore.SIGNAL(u'triggered()'), self.onHelpOnLineHelpClicked) - QtCore.QObject.connect(self.ToolsOpenDataFolder, + QtCore.QObject.connect(self.toolsOpenDataFolder, QtCore.SIGNAL(u'triggered()'), self.onToolsOpenDataFolderClicked) QtCore.QObject.connect(self.updateThemeImages, QtCore.SIGNAL(u'triggered()'), self.onUpdateThemeImages) - QtCore.QObject.connect(self.DisplayTagItem, + QtCore.QObject.connect(self.displayTagItem, QtCore.SIGNAL(u'triggered()'), self.onDisplayTagItemClicked) - QtCore.QObject.connect(self.SettingsConfigureItem, + QtCore.QObject.connect(self.settingsConfigureItem, QtCore.SIGNAL(u'triggered()'), self.onSettingsConfigureItemClicked) - QtCore.QObject.connect(self.SettingsShortcutsItem, + QtCore.QObject.connect(self.settingsShortcutsItem, QtCore.SIGNAL(u'triggered()'), self.onSettingsShortcutsItemClicked) # i18n set signals for languages - self.LanguageGroup.triggered.connect(LanguageManager.set_language) - QtCore.QObject.connect(self.ModeDefaultItem, + self.languageGroup.triggered.connect(LanguageManager.set_language) + QtCore.QObject.connect(self.modeDefaultItem, QtCore.SIGNAL(u'triggered()'), self.onModeDefaultItemClicked) - QtCore.QObject.connect(self.ModeSetupItem, + QtCore.QObject.connect(self.modeSetupItem, QtCore.SIGNAL(u'triggered()'), self.onModeSetupItemClicked) - QtCore.QObject.connect(self.ModeLiveItem, + QtCore.QObject.connect(self.modeLiveItem, QtCore.SIGNAL(u'triggered()'), self.onModeLiveItemClicked) QtCore.QObject.connect(Receiver.get_receiver(), QtCore.SIGNAL(u'theme_update_global'), self.defaultThemeChanged) @@ -553,13 +551,13 @@ class MainWindow(QtGui.QMainWindow, Ui_MainWindow): # ThemeManager needs to call Renderer self.renderer = Renderer(self.image_manager, self.themeManagerContents) # Define the media Dock Manager - self.mediaDockManager = MediaDockManager(self.MediaToolBox) + self.mediaDockManager = MediaDockManager(self.mediaToolBox) log.info(u'Load Plugins') # make the controllers available to the plugins self.pluginHelpers[u'preview'] = self.previewController self.pluginHelpers[u'live'] = self.liveController self.pluginHelpers[u'renderer'] = self.renderer - self.pluginHelpers[u'service'] = self.ServiceManagerContents + self.pluginHelpers[u'service'] = self.serviceManagerContents self.pluginHelpers[u'settings form'] = self.settingsForm self.pluginHelpers[u'toolbox'] = self.mediaDockManager self.pluginHelpers[u'pluginmanager'] = self.pluginManager @@ -575,11 +573,11 @@ class MainWindow(QtGui.QMainWindow, Ui_MainWindow): self.pluginManager.hook_media_manager(self.mediaDockManager) # Call the hook method to pull in import menus. log.info(u'hook menus') - self.pluginManager.hook_import_menu(self.FileImportMenu) + self.pluginManager.hook_import_menu(self.fileImportMenu) # Call the hook method to pull in export menus. - self.pluginManager.hook_export_menu(self.FileExportMenu) + self.pluginManager.hook_export_menu(self.fileExportMenu) # Call the hook method to pull in tools menus. - self.pluginManager.hook_tools_menu(self.ToolsMenu) + self.pluginManager.hook_tools_menu(self.toolsMenu) # Call the initialise method to setup plugins. log.info(u'initialise plugins') self.pluginManager.initialise_plugins() @@ -592,7 +590,7 @@ class MainWindow(QtGui.QMainWindow, Ui_MainWindow): savedPlugin = QtCore.QSettings().value( u'advanced/current media plugin', QtCore.QVariant()).toInt()[0] if savedPlugin != -1: - self.MediaToolBox.setCurrentIndex(savedPlugin) + self.mediaToolBox.setCurrentIndex(savedPlugin) self.settingsForm.postSetUp() # Once all components are initialised load the Themes log.info(u'Load Themes') @@ -600,9 +598,9 @@ class MainWindow(QtGui.QMainWindow, Ui_MainWindow): Receiver.send_message(u'cursor_normal') def setAutoLanguage(self, value): - self.LanguageGroup.setDisabled(value) + self.languageGroup.setDisabled(value) LanguageManager.auto_language = value - LanguageManager.set_language(self.LanguageGroup.checkedAction()) + LanguageManager.set_language(self.languageGroup.checkedAction()) def versionNotice(self, version): """ @@ -629,21 +627,21 @@ class MainWindow(QtGui.QMainWindow, Ui_MainWindow): args = [] for a in self.arguments: args.extend([a]) - self.ServiceManagerContents.loadFile(unicode(args[0])) + self.serviceManagerContents.loadFile(unicode(args[0])) elif QtCore.QSettings().value( self.generalSettingsSection + u'/auto open', QtCore.QVariant(False)).toBool(): - self.ServiceManagerContents.loadLastFile() + self.serviceManagerContents.loadLastFile() view_mode = QtCore.QSettings().value(u'%s/view mode' % \ self.generalSettingsSection, u'default') if view_mode == u'default': - self.ModeDefaultItem.setChecked(True) + self.modeDefaultItem.setChecked(True) elif view_mode == u'setup': self.setViewMode(True, True, False, True, False) - self.ModeSetupItem.setChecked(True) + self.modeSetupItem.setChecked(True) elif view_mode == u'live': self.setViewMode(False, True, False, False, True) - self.ModeLiveItem.setChecked(True) + self.modeLiveItem.setChecked(True) def firstTime(self): # Import themes if first time @@ -696,7 +694,7 @@ class MainWindow(QtGui.QMainWindow, Ui_MainWindow): import webbrowser webbrowser.open_new(u'http://openlp.org/') - def onHelpOnLineHelpClicked(self): + def onHelpOnlineHelpClicked(self): """ Load the online OpenLP manual """ @@ -807,10 +805,10 @@ class MainWindow(QtGui.QMainWindow, Ui_MainWindow): """ Hook to close the main window and display windows on exit """ - if self.ServiceManagerContents.isModified(): - ret = self.ServiceManagerContents.saveModifiedService() + if self.serviceManagerContents.isModified(): + ret = self.serviceManagerContents.saveModifiedService() if ret == QtGui.QMessageBox.Save: - if self.ServiceManagerContents.saveFile(): + if self.serviceManagerContents.saveFile(): self.cleanUp() event.accept() else: @@ -845,11 +843,11 @@ class MainWindow(QtGui.QMainWindow, Ui_MainWindow): Runs all the cleanup code before OpenLP shuts down """ # Clean temporary files used by services - self.ServiceManagerContents.cleanUp() + self.serviceManagerContents.cleanUp() if QtCore.QSettings().value(u'advanced/save current plugin', QtCore.QVariant(False)).toBool(): QtCore.QSettings().setValue(u'advanced/current media plugin', - QtCore.QVariant(self.MediaToolBox.currentIndex())) + QtCore.QVariant(self.mediaToolBox.currentIndex())) # Call the cleanup method to shutdown plugins. log.info(u'cleanup plugins') self.pluginManager.finalise_plugins() @@ -927,7 +925,7 @@ class MainWindow(QtGui.QMainWindow, Ui_MainWindow): self.previewController.panel.setVisible(visible) QtCore.QSettings().setValue(u'user interface/preview panel', QtCore.QVariant(visible)) - self.ViewPreviewPanel.setChecked(visible) + self.viewPreviewPanel.setChecked(visible) def setLivePanelVisibility(self, visible): """ @@ -942,7 +940,7 @@ class MainWindow(QtGui.QMainWindow, Ui_MainWindow): self.liveController.panel.setVisible(visible) QtCore.QSettings().setValue(u'user interface/live panel', QtCore.QVariant(visible)) - self.ViewLivePanel.setChecked(visible) + self.viewLivePanel.setChecked(visible) def loadSettings(self): """ @@ -987,13 +985,13 @@ class MainWindow(QtGui.QMainWindow, Ui_MainWindow): """ recentFileCount = QtCore.QSettings().value( u'advanced/recent file count', QtCore.QVariant(4)).toInt()[0] - self.FileMenu.clear() - add_actions(self.FileMenu, self.FileMenuActions[:-1]) + self.fileMenu.clear() + add_actions(self.fileMenu, self.fileMenuActions[:-1]) existingRecentFiles = [recentFile for recentFile in self.recentFiles if QtCore.QFile.exists(recentFile)] recentFilesToDisplay = existingRecentFiles[0:recentFileCount] if recentFilesToDisplay: - self.FileMenu.addSeparator() + self.fileMenu.addSeparator() for fileId, filename in enumerate(recentFilesToDisplay): log.debug('Recent file name: %s', filename) action = base_action(self, u'') @@ -1001,10 +999,10 @@ class MainWindow(QtGui.QMainWindow, Ui_MainWindow): (fileId + 1, QtCore.QFileInfo(filename).fileName())) action.setData(QtCore.QVariant(filename)) self.connect(action, QtCore.SIGNAL(u'triggered()'), - self.ServiceManagerContents.onRecentServiceClicked) - self.FileMenu.addAction(action) - self.FileMenu.addSeparator() - self.FileMenu.addAction(self.FileMenuActions[-1]) + self.serviceManagerContents.onRecentServiceClicked) + self.fileMenu.addAction(action) + self.fileMenu.addSeparator() + self.fileMenu.addAction(self.fileMenuActions[-1]) def addRecentFile(self, filename): """ diff --git a/openlp/core/ui/mediadockmanager.py b/openlp/core/ui/mediadockmanager.py index ca4f4d442..24bea4d63 100644 --- a/openlp/core/ui/mediadockmanager.py +++ b/openlp/core/ui/mediadockmanager.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/core/ui/plugindialog.py b/openlp/core/ui/plugindialog.py index 84fb845c6..80ecc733e 100644 --- a/openlp/core/ui/plugindialog.py +++ b/openlp/core/ui/plugindialog.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # @@ -85,4 +86,4 @@ class Ui_PluginViewDialog(object): self.statusComboBox.setItemText(0, translate('OpenLP.PluginForm', 'Active')) self.statusComboBox.setItemText(1, - translate('OpenLP.PluginForm', 'Inactive')) \ No newline at end of file + translate('OpenLP.PluginForm', 'Inactive')) diff --git a/openlp/core/ui/pluginform.py b/openlp/core/ui/pluginform.py index bfac5f3e0..a23072901 100644 --- a/openlp/core/ui/pluginform.py +++ b/openlp/core/ui/pluginform.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/core/ui/printservicedialog.py b/openlp/core/ui/printservicedialog.py index f9d1163d0..b9f9a5022 100644 --- a/openlp/core/ui/printservicedialog.py +++ b/openlp/core/ui/printservicedialog.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/core/ui/printserviceform.py b/openlp/core/ui/printserviceform.py index bb87cf32f..56d2f2c7e 100644 --- a/openlp/core/ui/printserviceform.py +++ b/openlp/core/ui/printserviceform.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/core/ui/screen.py b/openlp/core/ui/screen.py index 2186a221e..14dca8703 100644 --- a/openlp/core/ui/screen.py +++ b/openlp/core/ui/screen.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/core/ui/serviceitemeditdialog.py b/openlp/core/ui/serviceitemeditdialog.py index 4e966a38b..a72396c6c 100644 --- a/openlp/core/ui/serviceitemeditdialog.py +++ b/openlp/core/ui/serviceitemeditdialog.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/core/ui/serviceitemeditform.py b/openlp/core/ui/serviceitemeditform.py index 400566099..622e0ed57 100644 --- a/openlp/core/ui/serviceitemeditform.py +++ b/openlp/core/ui/serviceitemeditform.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/core/ui/servicemanager.py b/openlp/core/ui/servicemanager.py index 94cf621ab..0176b5280 100644 --- a/openlp/core/ui/servicemanager.py +++ b/openlp/core/ui/servicemanager.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # @@ -1108,6 +1109,7 @@ class ServiceManager(QtGui.QWidget): """ Send the current item to the Preview slide controller """ + Receiver.send_message(u'cursor_busy') item, child = self.findServiceItem() if self.serviceItems[item][u'service_item'].is_valid: self.mainwindow.previewController.addServiceManagerItem( @@ -1117,6 +1119,7 @@ class ServiceManager(QtGui.QWidget): translate('OpenLP.ServiceManager', 'Missing Display Handler'), translate('OpenLP.ServiceManager', 'Your item cannot be ' 'displayed as there is no handler to display it')) + Receiver.send_message(u'cursor_normal') def getServiceItem(self): """ @@ -1149,6 +1152,7 @@ class ServiceManager(QtGui.QWidget): return if row != -1: child = row + Receiver.send_message(u'cursor_busy') if self.serviceItems[item][u'service_item'].is_valid: self.mainwindow.liveController.addServiceManagerItem( self.serviceItems[item][u'service_item'], child) @@ -1168,6 +1172,7 @@ class ServiceManager(QtGui.QWidget): translate('OpenLP.ServiceManager', 'Your item cannot be ' 'displayed as the plugin required to display it is missing ' 'or inactive')) + Receiver.send_message(u'cursor_normal') def remoteEdit(self): """ diff --git a/openlp/core/ui/servicenoteform.py b/openlp/core/ui/servicenoteform.py index ef1c627d4..a0e153bc5 100644 --- a/openlp/core/ui/servicenoteform.py +++ b/openlp/core/ui/servicenoteform.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/core/ui/settingsdialog.py b/openlp/core/ui/settingsdialog.py index 50bcca4e2..17bb4dea9 100644 --- a/openlp/core/ui/settingsdialog.py +++ b/openlp/core/ui/settingsdialog.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/core/ui/settingsform.py b/openlp/core/ui/settingsform.py index 265a03f48..61ba46f7d 100644 --- a/openlp/core/ui/settingsform.py +++ b/openlp/core/ui/settingsform.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/core/ui/shortcutlistdialog.py b/openlp/core/ui/shortcutlistdialog.py index e22bf1241..1c0d72bf1 100644 --- a/openlp/core/ui/shortcutlistdialog.py +++ b/openlp/core/ui/shortcutlistdialog.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # @@ -54,7 +55,7 @@ class Ui_ShortcutListDialog(object): self.shortcutListLayout.setObjectName(u'shortcutListLayout') self.descriptionLabel = QtGui.QLabel(shortcutListDialog) self.descriptionLabel.setObjectName(u'descriptionLabel') - self.descriptionLabel.setWordWrap(True) + self.descriptionLabel.setWordWrap(True) self.shortcutListLayout.addWidget(self.descriptionLabel) self.treeWidget = QtGui.QTreeWidget(shortcutListDialog) self.treeWidget.setObjectName(u'treeWidget') diff --git a/openlp/core/ui/shortcutlistform.py b/openlp/core/ui/shortcutlistform.py index 8e38ebff5..49aa663a3 100644 --- a/openlp/core/ui/shortcutlistform.py +++ b/openlp/core/ui/shortcutlistform.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # @@ -199,7 +200,7 @@ class ShortcutListForm(QtGui.QDialog, Ui_ShortcutListDialog): if not self.primaryPushButton.text(): # When we do not have a primary shortcut, the just entered alternate # shortcut will automatically become the primary shortcut. That is - # why we have to adjust the primary button's text. + # why we have to adjust the primary button's text. self.primaryPushButton.setText(self.alternatePushButton.text()) self.alternatePushButton.setText(u'') self.refreshShortcutList() diff --git a/openlp/core/ui/slidecontroller.py b/openlp/core/ui/slidecontroller.py index a88215428..50b24113f 100644 --- a/openlp/core/ui/slidecontroller.py +++ b/openlp/core/ui/slidecontroller.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # @@ -184,6 +185,7 @@ class SlideController(QtGui.QWidget): u'Start Loop', u':/media/media_time.png', translate('OpenLP.SlideController', 'Start continuous loop'), self.onStartLoop) + startLoop.setObjectName(u'startLoop') action_list = ActionList.get_instance() action_list.add_action(startLoop, UiStrings().LiveToolbar) stopLoop = self.toolbar.addToolbarButton( @@ -191,6 +193,7 @@ class SlideController(QtGui.QWidget): u'Stop Loop', u':/media/media_stop.png', translate('OpenLP.SlideController', 'Stop continuous loop'), self.onStopLoop) + stopLoop.setObjectName(u'stopLoop') action_list.add_action(stopLoop, UiStrings().LiveToolbar) self.toogleLoop = shortcut_action(self, u'toogleLoop', [QtGui.QKeySequence(u'L')], self.onToggleLoop, @@ -1053,7 +1056,7 @@ class SlideController(QtGui.QWidget): """ From the preview display request the Item to be added to service """ - self.parent.ServiceManagerContents.addServiceItem(self.serviceItem) + self.parent.serviceManagerContents.addServiceItem(self.serviceItem) def onGoLiveClick(self): """ diff --git a/openlp/core/ui/splashscreen.py b/openlp/core/ui/splashscreen.py index 2bb516d00..4875ceb2f 100644 --- a/openlp/core/ui/splashscreen.py +++ b/openlp/core/ui/splashscreen.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/core/ui/starttimedialog.py b/openlp/core/ui/starttimedialog.py index 2d1711231..315a79e1a 100644 --- a/openlp/core/ui/starttimedialog.py +++ b/openlp/core/ui/starttimedialog.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # @@ -118,4 +119,4 @@ class Ui_StartTimeDialog(object): self.secondLabel.setText(translate('OpenLP.StartTimeForm', 'Seconds:')) self.startLabel.setText(translate('OpenLP.StartTimeForm', 'Start')) self.finishLabel.setText(translate('OpenLP.StartTimeForm', 'Finish')) - self.lengthLabel.setText(translate('OpenLP.StartTimeForm', 'Length')) \ No newline at end of file + self.lengthLabel.setText(translate('OpenLP.StartTimeForm', 'Length')) diff --git a/openlp/core/ui/starttimeform.py b/openlp/core/ui/starttimeform.py index 956b01a9d..1deac3c60 100644 --- a/openlp/core/ui/starttimeform.py +++ b/openlp/core/ui/starttimeform.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/core/ui/themeform.py b/openlp/core/ui/themeform.py index 019ab5bfe..21afd6f96 100644 --- a/openlp/core/ui/themeform.py +++ b/openlp/core/ui/themeform.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/core/ui/thememanager.py b/openlp/core/ui/thememanager.py index 190939ab9..c98383c9e 100644 --- a/openlp/core/ui/thememanager.py +++ b/openlp/core/ui/thememanager.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # @@ -56,7 +57,7 @@ class ThemeManager(QtGui.QWidget): self.themeForm = ThemeForm(self) self.fileRenameForm = FileRenameForm(self) self.serviceComboBox = \ - self.mainwindow.ServiceManagerContents.themeComboBox + self.mainwindow.serviceManagerContents.themeComboBox # start with the layout self.layout = QtGui.QVBoxLayout(self) self.layout.setSpacing(0) diff --git a/openlp/core/ui/themestab.py b/openlp/core/ui/themestab.py index 20f24d9fe..5da2d4466 100644 --- a/openlp/core/ui/themestab.py +++ b/openlp/core/ui/themestab.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/core/ui/themewizard.py b/openlp/core/ui/themewizard.py index 759b36101..1de6a54f4 100644 --- a/openlp/core/ui/themewizard.py +++ b/openlp/core/ui/themewizard.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # @@ -537,4 +538,4 @@ class Ui_ThemeWizard(object): labelWidth = max(self.backgroundLabel.minimumSizeHint().width(), self.horizontalLabel.minimumSizeHint().width()) self.spacer.changeSize(labelWidth, 0, - QtGui.QSizePolicy.Fixed, QtGui.QSizePolicy.Fixed) \ No newline at end of file + QtGui.QSizePolicy.Fixed, QtGui.QSizePolicy.Fixed) diff --git a/openlp/core/ui/wizard.py b/openlp/core/ui/wizard.py index 9d1147638..b76a9ab50 100644 --- a/openlp/core/ui/wizard.py +++ b/openlp/core/ui/wizard.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/core/utils/__init__.py b/openlp/core/utils/__init__.py index c5c08fad4..64fa6641b 100644 --- a/openlp/core/utils/__init__.py +++ b/openlp/core/utils/__init__.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/core/utils/actions.py b/openlp/core/utils/actions.py index 0c4eee655..0a04889d6 100644 --- a/openlp/core/utils/actions.py +++ b/openlp/core/utils/actions.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # @@ -202,7 +203,8 @@ class ActionList(object): Add an action to the list of actions. ``action`` - The action to add (QAction). + The action to add (QAction). **Note**, the action must not have an + empty ``objectName``. ``category`` The category this action belongs to. The category can be a QString diff --git a/openlp/core/utils/languagemanager.py b/openlp/core/utils/languagemanager.py index e62e6279d..740e11896 100644 --- a/openlp/core/utils/languagemanager.py +++ b/openlp/core/utils/languagemanager.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # @@ -122,7 +123,7 @@ class LanguageManager(object): language = u'en' if action: action_name = unicode(action.objectName()) - if action_name == u'AutoLanguageItem': + if action_name == u'autoLanguageItem': LanguageManager.auto_language = True else: LanguageManager.auto_language = False diff --git a/openlp/plugins/__init__.py b/openlp/plugins/__init__.py index 7a160a316..9600fd5eb 100644 --- a/openlp/plugins/__init__.py +++ b/openlp/plugins/__init__.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/alerts/__init__.py b/openlp/plugins/alerts/__init__.py index 3a0892d49..062ed82ab 100644 --- a/openlp/plugins/alerts/__init__.py +++ b/openlp/plugins/alerts/__init__.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/alerts/alertsplugin.py b/openlp/plugins/alerts/alertsplugin.py index 979ebb01d..8032ee1e0 100644 --- a/openlp/plugins/alerts/alertsplugin.py +++ b/openlp/plugins/alerts/alertsplugin.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # @@ -67,7 +68,7 @@ class AlertsPlugin(Plugin): self.toolsAlertItem.setStatusTip( translate('AlertsPlugin', 'Show an alert message.')) self.toolsAlertItem.setShortcut(u'F7') - self.serviceManager.mainwindow.ToolsMenu.addAction(self.toolsAlertItem) + self.serviceManager.mainwindow.toolsMenu.addAction(self.toolsAlertItem) QtCore.QObject.connect(self.toolsAlertItem, QtCore.SIGNAL(u'triggered()'), self.onAlertsTrigger) self.toolsAlertItem.setVisible(False) diff --git a/openlp/plugins/alerts/forms/__init__.py b/openlp/plugins/alerts/forms/__init__.py index bb4a9940f..38eadd753 100644 --- a/openlp/plugins/alerts/forms/__init__.py +++ b/openlp/plugins/alerts/forms/__init__.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/alerts/forms/alertdialog.py b/openlp/plugins/alerts/forms/alertdialog.py index da788f2bd..02db7b2d4 100644 --- a/openlp/plugins/alerts/forms/alertdialog.py +++ b/openlp/plugins/alerts/forms/alertdialog.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/alerts/forms/alertform.py b/openlp/plugins/alerts/forms/alertform.py index 6f6311392..58eb2dc52 100644 --- a/openlp/plugins/alerts/forms/alertform.py +++ b/openlp/plugins/alerts/forms/alertform.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/alerts/lib/__init__.py b/openlp/plugins/alerts/lib/__init__.py index 39cbbfe59..34f806799 100644 --- a/openlp/plugins/alerts/lib/__init__.py +++ b/openlp/plugins/alerts/lib/__init__.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/alerts/lib/alertsmanager.py b/openlp/plugins/alerts/lib/alertsmanager.py index d12fb41ec..76582a722 100644 --- a/openlp/plugins/alerts/lib/alertsmanager.py +++ b/openlp/plugins/alerts/lib/alertsmanager.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/alerts/lib/alertstab.py b/openlp/plugins/alerts/lib/alertstab.py index 8c8778f9f..4616ccaa7 100644 --- a/openlp/plugins/alerts/lib/alertstab.py +++ b/openlp/plugins/alerts/lib/alertstab.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/alerts/lib/db.py b/openlp/plugins/alerts/lib/db.py index 72c671620..dea3f5521 100644 --- a/openlp/plugins/alerts/lib/db.py +++ b/openlp/plugins/alerts/lib/db.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/bibles/__init__.py b/openlp/plugins/bibles/__init__.py index 5a2035e13..2e567ddd1 100644 --- a/openlp/plugins/bibles/__init__.py +++ b/openlp/plugins/bibles/__init__.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/bibles/bibleplugin.py b/openlp/plugins/bibles/bibleplugin.py index de7ce144e..ce73b834a 100644 --- a/openlp/plugins/bibles/bibleplugin.py +++ b/openlp/plugins/bibles/bibleplugin.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # @@ -93,7 +94,7 @@ class BiblePlugin(Plugin): def about(self): about_text = translate('BiblesPlugin', 'Bible Plugin' - '
The Bible plugin provides the ability to display bible ' + '
The Bible plugin provides the ability to display Bible ' 'verses from different sources during the service.') return about_text diff --git a/openlp/plugins/bibles/forms/__init__.py b/openlp/plugins/bibles/forms/__init__.py index e6897e53f..a09e59203 100644 --- a/openlp/plugins/bibles/forms/__init__.py +++ b/openlp/plugins/bibles/forms/__init__.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/bibles/forms/bibleimportform.py b/openlp/plugins/bibles/forms/bibleimportform.py index 439724b66..28e4fee0d 100644 --- a/openlp/plugins/bibles/forms/bibleimportform.py +++ b/openlp/plugins/bibles/forms/bibleimportform.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # @@ -694,7 +695,7 @@ class BibleImportForm(OpenLPWizard): if bible_type == BibleFormat.WebDownload: self.progressLabel.setText(translate( 'BiblesPlugin.ImportWizardForm', - 'Starting Registering bible...')) + 'Registering Bible...')) else: self.progressLabel.setText(WizardStrings.StartingImport) Receiver.send_message(u'openlp_process_events') @@ -757,7 +758,7 @@ class BibleImportForm(OpenLPWizard): if bible_type == BibleFormat.WebDownload: self.progressLabel.setText( translate('BiblesPlugin.ImportWizardForm', 'Registered ' - 'bible. Please note, that verses will be downloaded on\n' + 'Bible. Please note, that verses will be downloaded on\n' 'demand and thus an internet connection is required.')) else: self.progressLabel.setText(WizardStrings.FinishedImport) @@ -765,4 +766,5 @@ class BibleImportForm(OpenLPWizard): self.progressLabel.setText(translate( 'BiblesPlugin.ImportWizardForm', 'Your Bible import failed.')) del self.manager.db_cache[importer.name] - delete_database(self.plugin.settingsSection, importer.file) \ No newline at end of file + delete_database(self.plugin.settingsSection, importer.file) + diff --git a/openlp/plugins/bibles/lib/__init__.py b/openlp/plugins/bibles/lib/__init__.py index e219fbc00..27a269748 100644 --- a/openlp/plugins/bibles/lib/__init__.py +++ b/openlp/plugins/bibles/lib/__init__.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/bibles/lib/biblestab.py b/openlp/plugins/bibles/lib/biblestab.py index 33c2c1f9f..2db53a096 100644 --- a/openlp/plugins/bibles/lib/biblestab.py +++ b/openlp/plugins/bibles/lib/biblestab.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # @@ -207,4 +208,4 @@ class BiblesTab(SettingsTab): self.bibleThemeComboBox.addItem(u'') for theme in theme_list: self.bibleThemeComboBox.addItem(theme) - find_and_set_in_combo_box(self.bibleThemeComboBox, self.bible_theme) \ No newline at end of file + find_and_set_in_combo_box(self.bibleThemeComboBox, self.bible_theme) diff --git a/openlp/plugins/bibles/lib/csvbible.py b/openlp/plugins/bibles/lib/csvbible.py index 9ff7394d1..4c1eef86e 100644 --- a/openlp/plugins/bibles/lib/csvbible.py +++ b/openlp/plugins/bibles/lib/csvbible.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/bibles/lib/db.py b/openlp/plugins/bibles/lib/db.py index 55b00a56b..d15647d7c 100644 --- a/openlp/plugins/bibles/lib/db.py +++ b/openlp/plugins/bibles/lib/db.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/bibles/lib/http.py b/openlp/plugins/bibles/lib/http.py index d86b650d5..857f9dac8 100644 --- a/openlp/plugins/bibles/lib/http.py +++ b/openlp/plugins/bibles/lib/http.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/bibles/lib/manager.py b/openlp/plugins/bibles/lib/manager.py index df31b2d0e..d2f04622a 100644 --- a/openlp/plugins/bibles/lib/manager.py +++ b/openlp/plugins/bibles/lib/manager.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/bibles/lib/mediaitem.py b/openlp/plugins/bibles/lib/mediaitem.py index 9a9e3f9ec..3d45a9c5f 100644 --- a/openlp/plugins/bibles/lib/mediaitem.py +++ b/openlp/plugins/bibles/lib/mediaitem.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/bibles/lib/openlp1.py b/openlp/plugins/bibles/lib/openlp1.py index e43417c02..5f31a3e77 100644 --- a/openlp/plugins/bibles/lib/openlp1.py +++ b/openlp/plugins/bibles/lib/openlp1.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/bibles/lib/opensong.py b/openlp/plugins/bibles/lib/opensong.py index 585ecf9c7..a6fd5bf34 100644 --- a/openlp/plugins/bibles/lib/opensong.py +++ b/openlp/plugins/bibles/lib/opensong.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/bibles/lib/osis.py b/openlp/plugins/bibles/lib/osis.py index a080524eb..542b39629 100644 --- a/openlp/plugins/bibles/lib/osis.py +++ b/openlp/plugins/bibles/lib/osis.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/bibles/lib/versereferencelist.py b/openlp/plugins/bibles/lib/versereferencelist.py index bab6d7e11..791761293 100644 --- a/openlp/plugins/bibles/lib/versereferencelist.py +++ b/openlp/plugins/bibles/lib/versereferencelist.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/custom/__init__.py b/openlp/plugins/custom/__init__.py index 5171155d2..c9b908f3c 100644 --- a/openlp/plugins/custom/__init__.py +++ b/openlp/plugins/custom/__init__.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/custom/customplugin.py b/openlp/plugins/custom/customplugin.py index 8b8a7e6ae..b3d785d67 100644 --- a/openlp/plugins/custom/customplugin.py +++ b/openlp/plugins/custom/customplugin.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/custom/forms/__init__.py b/openlp/plugins/custom/forms/__init__.py index fb3cf975b..755cb7a8d 100644 --- a/openlp/plugins/custom/forms/__init__.py +++ b/openlp/plugins/custom/forms/__init__.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/custom/forms/editcustomdialog.py b/openlp/plugins/custom/forms/editcustomdialog.py index 7a6c1f07b..dc2fb2a67 100644 --- a/openlp/plugins/custom/forms/editcustomdialog.py +++ b/openlp/plugins/custom/forms/editcustomdialog.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # @@ -124,4 +125,4 @@ class Ui_CustomEditDialog(object): translate('CustomPlugin.EditCustomForm', 'The&me:')) self.creditLabel.setText( translate('CustomPlugin.EditCustomForm', '&Credits:')) - self.previewButton.setText(UiStrings().SaveAndPreview) \ No newline at end of file + self.previewButton.setText(UiStrings().SaveAndPreview) diff --git a/openlp/plugins/custom/forms/editcustomform.py b/openlp/plugins/custom/forms/editcustomform.py index 1d0e0427d..64147e874 100644 --- a/openlp/plugins/custom/forms/editcustomform.py +++ b/openlp/plugins/custom/forms/editcustomform.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # @@ -266,4 +267,4 @@ class EditCustomForm(QtGui.QDialog, Ui_CustomEditDialog): message=translate('CustomPlugin.EditCustomForm', 'You need to add at least one slide')) return False - return True \ No newline at end of file + return True diff --git a/openlp/plugins/custom/forms/editcustomslidedialog.py b/openlp/plugins/custom/forms/editcustomslidedialog.py index 7874ed4e2..b3c7ca671 100644 --- a/openlp/plugins/custom/forms/editcustomslidedialog.py +++ b/openlp/plugins/custom/forms/editcustomslidedialog.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/custom/forms/editcustomslideform.py b/openlp/plugins/custom/forms/editcustomslideform.py index cabd33a4e..c681e9a2a 100644 --- a/openlp/plugins/custom/forms/editcustomslideform.py +++ b/openlp/plugins/custom/forms/editcustomslideform.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/custom/lib/__init__.py b/openlp/plugins/custom/lib/__init__.py index 25abdd38b..5d2415f00 100644 --- a/openlp/plugins/custom/lib/__init__.py +++ b/openlp/plugins/custom/lib/__init__.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/custom/lib/customtab.py b/openlp/plugins/custom/lib/customtab.py index 9de294418..805b98392 100644 --- a/openlp/plugins/custom/lib/customtab.py +++ b/openlp/plugins/custom/lib/customtab.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/custom/lib/customxmlhandler.py b/openlp/plugins/custom/lib/customxmlhandler.py index 2babe3d12..ce8fc0459 100644 --- a/openlp/plugins/custom/lib/customxmlhandler.py +++ b/openlp/plugins/custom/lib/customxmlhandler.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/custom/lib/db.py b/openlp/plugins/custom/lib/db.py index 35c24413a..1d7af5907 100644 --- a/openlp/plugins/custom/lib/db.py +++ b/openlp/plugins/custom/lib/db.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/custom/lib/mediaitem.py b/openlp/plugins/custom/lib/mediaitem.py index 85e6e51f2..64ddf2374 100644 --- a/openlp/plugins/custom/lib/mediaitem.py +++ b/openlp/plugins/custom/lib/mediaitem.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/images/__init__.py b/openlp/plugins/images/__init__.py index a375f863f..5280fc896 100644 --- a/openlp/plugins/images/__init__.py +++ b/openlp/plugins/images/__init__.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/images/imageplugin.py b/openlp/plugins/images/imageplugin.py index 8d98e809b..fb3c8ad83 100644 --- a/openlp/plugins/images/imageplugin.py +++ b/openlp/plugins/images/imageplugin.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/images/lib/__init__.py b/openlp/plugins/images/lib/__init__.py index 6a9e364f9..977177488 100644 --- a/openlp/plugins/images/lib/__init__.py +++ b/openlp/plugins/images/lib/__init__.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/images/lib/mediaitem.py b/openlp/plugins/images/lib/mediaitem.py index 1377feef8..ae4817489 100644 --- a/openlp/plugins/images/lib/mediaitem.py +++ b/openlp/plugins/images/lib/mediaitem.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # @@ -26,6 +27,7 @@ import logging import os +import locale from PyQt4 import QtCore, QtGui @@ -111,6 +113,10 @@ class ImageMediaItem(MediaManagerItem): def loadList(self, list, initialLoad=False): if not initialLoad: self.parent.formparent.displayProgressBar(len(list)) + # Sort the themes by its filename considering language specific + # characters. lower() is needed for windows! + list.sort(cmp=locale.strcoll, + key=lambda filename: os.path.split(unicode(filename))[1].lower()) for imageFile in list: if not initialLoad: self.parent.formparent.incrementProgressBar() diff --git a/openlp/plugins/media/__init__.py b/openlp/plugins/media/__init__.py index 9271a0936..e7849df3b 100644 --- a/openlp/plugins/media/__init__.py +++ b/openlp/plugins/media/__init__.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/media/lib/__init__.py b/openlp/plugins/media/lib/__init__.py index 7f63c8108..60f96216e 100644 --- a/openlp/plugins/media/lib/__init__.py +++ b/openlp/plugins/media/lib/__init__.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/media/lib/mediaitem.py b/openlp/plugins/media/lib/mediaitem.py index 9f1d72f73..04c487015 100644 --- a/openlp/plugins/media/lib/mediaitem.py +++ b/openlp/plugins/media/lib/mediaitem.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # @@ -27,6 +28,7 @@ from datetime import datetime import logging import os +import locale from PyQt4 import QtCore, QtGui @@ -201,6 +203,10 @@ class MediaMediaItem(MediaManagerItem): self.settingsSection, self.getFileList()) def loadList(self, list): + # Sort the themes by its filename considering language specific + # characters. lower() is needed for windows! + list.sort(cmp=locale.strcoll, + key=lambda filename: os.path.split(unicode(filename))[1].lower()) for file in list: filename = os.path.split(unicode(file))[1] item_name = QtGui.QListWidgetItem(filename) diff --git a/openlp/plugins/media/lib/mediatab.py b/openlp/plugins/media/lib/mediatab.py index f54aa02fa..12035517c 100644 --- a/openlp/plugins/media/lib/mediatab.py +++ b/openlp/plugins/media/lib/mediatab.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/media/mediaplugin.py b/openlp/plugins/media/mediaplugin.py index 82d87455a..dd18c5c09 100644 --- a/openlp/plugins/media/mediaplugin.py +++ b/openlp/plugins/media/mediaplugin.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/presentations/__init__.py b/openlp/plugins/presentations/__init__.py index bf077953a..d7f2c17e6 100644 --- a/openlp/plugins/presentations/__init__.py +++ b/openlp/plugins/presentations/__init__.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/presentations/lib/__init__.py b/openlp/plugins/presentations/lib/__init__.py index b41c2f2f6..00be24a19 100644 --- a/openlp/plugins/presentations/lib/__init__.py +++ b/openlp/plugins/presentations/lib/__init__.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/presentations/lib/impresscontroller.py b/openlp/plugins/presentations/lib/impresscontroller.py index d192f3438..ebcb26429 100644 --- a/openlp/plugins/presentations/lib/impresscontroller.py +++ b/openlp/plugins/presentations/lib/impresscontroller.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/presentations/lib/mediaitem.py b/openlp/plugins/presentations/lib/mediaitem.py index 5cc6f1fe1..90fca3997 100644 --- a/openlp/plugins/presentations/lib/mediaitem.py +++ b/openlp/plugins/presentations/lib/mediaitem.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # @@ -26,6 +27,7 @@ import logging import os +import locale from PyQt4 import QtCore, QtGui @@ -160,6 +162,10 @@ class PresentationMediaItem(MediaManagerItem): Receiver.send_message(u'cursor_busy') if not initialLoad: self.parent.formparent.displayProgressBar(len(files)) + # Sort the themes by its filename considering language specific + # characters. lower() is needed for windows! + files.sort(cmp=locale.strcoll, + key=lambda filename: os.path.split(unicode(filename))[1].lower()) for file in files: if not initialLoad: self.parent.formparent.incrementProgressBar() diff --git a/openlp/plugins/presentations/lib/messagelistener.py b/openlp/plugins/presentations/lib/messagelistener.py index 94cd2bfa4..66fc318bc 100644 --- a/openlp/plugins/presentations/lib/messagelistener.py +++ b/openlp/plugins/presentations/lib/messagelistener.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/presentations/lib/powerpointcontroller.py b/openlp/plugins/presentations/lib/powerpointcontroller.py index 12e0d2746..2fc734a4f 100644 --- a/openlp/plugins/presentations/lib/powerpointcontroller.py +++ b/openlp/plugins/presentations/lib/powerpointcontroller.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/presentations/lib/pptviewcontroller.py b/openlp/plugins/presentations/lib/pptviewcontroller.py index 354c33361..91bc0df34 100644 --- a/openlp/plugins/presentations/lib/pptviewcontroller.py +++ b/openlp/plugins/presentations/lib/pptviewcontroller.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # @@ -244,4 +245,4 @@ class PptviewDocument(PresentationDocument): """ Triggers the previous slide on the running presentation """ - self.controller.process.PrevStep(self.pptid) \ No newline at end of file + self.controller.process.PrevStep(self.pptid) diff --git a/openlp/plugins/presentations/lib/pptviewlib/ppttest.py b/openlp/plugins/presentations/lib/pptviewlib/ppttest.py index 337bdb09f..abf5a7640 100644 --- a/openlp/plugins/presentations/lib/pptviewlib/ppttest.py +++ b/openlp/plugins/presentations/lib/pptviewlib/ppttest.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/presentations/lib/presentationcontroller.py b/openlp/plugins/presentations/lib/presentationcontroller.py index 8d48d98a3..dc70f8781 100644 --- a/openlp/plugins/presentations/lib/presentationcontroller.py +++ b/openlp/plugins/presentations/lib/presentationcontroller.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/presentations/lib/presentationtab.py b/openlp/plugins/presentations/lib/presentationtab.py index bba2b469e..b50804c85 100644 --- a/openlp/plugins/presentations/lib/presentationtab.py +++ b/openlp/plugins/presentations/lib/presentationtab.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # @@ -131,4 +132,4 @@ class PresentationTab(SettingsTab): QtCore.QVariant(self.OverrideAppCheckBox.checkState())) changed = True if changed: - Receiver.send_message(u'mediaitem_presentation_rebuild') \ No newline at end of file + Receiver.send_message(u'mediaitem_presentation_rebuild') diff --git a/openlp/plugins/presentations/presentationplugin.py b/openlp/plugins/presentations/presentationplugin.py index ec3aff440..e1a3dc3c1 100644 --- a/openlp/plugins/presentations/presentationplugin.py +++ b/openlp/plugins/presentations/presentationplugin.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/remotes/__init__.py b/openlp/plugins/remotes/__init__.py index 6dc3d5cce..43d174a3a 100644 --- a/openlp/plugins/remotes/__init__.py +++ b/openlp/plugins/remotes/__init__.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/remotes/html/index.html b/openlp/plugins/remotes/html/index.html index fd7fb3715..6390b9446 100644 --- a/openlp/plugins/remotes/html/index.html +++ b/openlp/plugins/remotes/html/index.html @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # @@ -102,7 +103,7 @@
- +
diff --git a/openlp/plugins/remotes/html/openlp.css b/openlp/plugins/remotes/html/openlp.css index 225079510..af52d69c3 100644 --- a/openlp/plugins/remotes/html/openlp.css +++ b/openlp/plugins/remotes/html/openlp.css @@ -5,7 +5,8 @@ * Portions copyright (c) 2008-2010 Tim Bentley, Jonathan Corwin, Michael * * Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, * * Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, * - * Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund * + * Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode * + * Woldsund * * ------------------------------------------------------------------------- * * This program is free software; you can redistribute it and/or modify it * * under the terms of the GNU General Public License as published by the * diff --git a/openlp/plugins/remotes/html/openlp.js b/openlp/plugins/remotes/html/openlp.js index 09312876c..3f7c331b9 100644 --- a/openlp/plugins/remotes/html/openlp.js +++ b/openlp/plugins/remotes/html/openlp.js @@ -5,7 +5,8 @@ * Portions copyright (c) 2008-2010 Tim Bentley, Jonathan Corwin, Michael * * Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, * * Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, * - * Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund * + * Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode * + * Woldsund * * ------------------------------------------------------------------------- * * This program is free software; you can redistribute it and/or modify it * * under the terms of the GNU General Public License as published by the * @@ -216,7 +217,7 @@ window.OpenLP = { if (data.results.items.length == 0) { var li = $("
  • ").text('No results'); ul.append(li); - } + } else { $.each(data.results.items, function (idx, value) { var item = $("
  • ").text(value[1]); diff --git a/openlp/plugins/remotes/html/stage.css b/openlp/plugins/remotes/html/stage.css index 73551b92e..f5a8453f4 100644 --- a/openlp/plugins/remotes/html/stage.css +++ b/openlp/plugins/remotes/html/stage.css @@ -5,7 +5,8 @@ * Portions copyright (c) 2008-2010 Tim Bentley, Jonathan Corwin, Michael * * Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Khler, * * Andreas Preikschat, Mattias Pldaru, Christian Richter, Philip Ridout, * - * Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund * + * Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode * + * Woldsund * * ------------------------------------------------------------------------- * * This program is free software; you can redistribute it and/or modify it * * under the terms of the GNU General Public License as published by the * @@ -20,7 +21,7 @@ * with this program; if not, write to the Free Software Foundation, Inc., * * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * *****************************************************************************/ - + body { background-color: black; font-family: sans-serif; diff --git a/openlp/plugins/remotes/html/stage.html b/openlp/plugins/remotes/html/stage.html index 9c74cc371..b67f0ccd6 100644 --- a/openlp/plugins/remotes/html/stage.html +++ b/openlp/plugins/remotes/html/stage.html @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Khler, # # Andreas Preikschat, Mattias Pldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/remotes/html/stage.js b/openlp/plugins/remotes/html/stage.js index 8ca041366..344957271 100644 --- a/openlp/plugins/remotes/html/stage.js +++ b/openlp/plugins/remotes/html/stage.js @@ -5,7 +5,8 @@ * Portions copyright (c) 2008-2010 Tim Bentley, Jonathan Corwin, Michael * * Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Khler, * * Andreas Preikschat, Mattias Pldaru, Christian Richter, Philip Ridout, * - * Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund * + * Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode * + * Woldsund * * ------------------------------------------------------------------------- * * This program is free software; you can redistribute it and/or modify it * * under the terms of the GNU General Public License as published by the * @@ -29,7 +30,7 @@ window.OpenLP = { $("#notes").html(""); for (idx in data.results.items) { idx = parseInt(idx, 10); - if ((data.results.items[idx]["selected"]) && + if ((data.results.items[idx]["selected"]) && (data.results.items.length > idx + 1)) { $("#notes").html(data.results.items[idx]["notes"]); OpenLP.nextSong = data.results.items[idx + 1]["title"]; @@ -59,14 +60,14 @@ window.OpenLP = { // If the tag has changed, add new one to the list lastChange = idx; tags = tags + 1; - div.append(" "); + div.append(" "); $("#verseorder span").last().attr("id", "tag" + tags).text(tag); } else { if ((slide["text"] == data.results.slides[lastChange]["text"]) && (data.results.slides.length > idx + (idx - lastChange))) { // If the tag hasn't changed, check to see if the same verse - // has been repeated consecutively. Note the verse may have been + // has been repeated consecutively. Note the verse may have been // split over several slides, so search through. If so, repeat the tag. var match = true; for (var idx2 = 0; idx2 < idx - lastChange; idx2++) { @@ -78,13 +79,13 @@ window.OpenLP = { if (match) { lastChange = idx; tags = tags + 1; - div.append(" "); + div.append(" "); $("#verseorder span").last().attr("id", "tag" + tags).text(tag); } } } OpenLP.currentTags[idx] = tags; - if (slide["selected"]) + if (slide["selected"]) OpenLP.currentSlide = idx; }) OpenLP.loadService(); @@ -122,9 +123,9 @@ window.OpenLP = { }, updateClock: function() { var div = $("#clock"); - var t = new Date(); + var t = new Date(); var h = t.getHours(); - if (h > 12) + if (h > 12) h = h - 12; var m = t.getMinutes(); if (m < 10) @@ -139,7 +140,7 @@ window.OpenLP = { if (OpenLP.currentItem != data.results.item) { OpenLP.currentItem = data.results.item; OpenLP.loadSlides(); - } + } else if (OpenLP.currentSlide != data.results.slide) { OpenLP.currentSlide = parseInt(data.results.slide, 10); OpenLP.updateSlide(); diff --git a/openlp/plugins/remotes/lib/__init__.py b/openlp/plugins/remotes/lib/__init__.py index c1a170c1b..d1aa8c40f 100644 --- a/openlp/plugins/remotes/lib/__init__.py +++ b/openlp/plugins/remotes/lib/__init__.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/remotes/lib/httpserver.py b/openlp/plugins/remotes/lib/httpserver.py index 3436a153c..1ec957405 100644 --- a/openlp/plugins/remotes/lib/httpserver.py +++ b/openlp/plugins/remotes/lib/httpserver.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/remotes/lib/remotetab.py b/openlp/plugins/remotes/lib/remotetab.py index 07f24dbee..05b6a2743 100644 --- a/openlp/plugins/remotes/lib/remotetab.py +++ b/openlp/plugins/remotes/lib/remotetab.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/remotes/remoteplugin.py b/openlp/plugins/remotes/remoteplugin.py index d3b50e36b..3c1841e41 100644 --- a/openlp/plugins/remotes/remoteplugin.py +++ b/openlp/plugins/remotes/remoteplugin.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/songs/__init__.py b/openlp/plugins/songs/__init__.py index 131d1d337..a770f2d22 100644 --- a/openlp/plugins/songs/__init__.py +++ b/openlp/plugins/songs/__init__.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/songs/forms/__init__.py b/openlp/plugins/songs/forms/__init__.py index 599735247..b9d6180b5 100644 --- a/openlp/plugins/songs/forms/__init__.py +++ b/openlp/plugins/songs/forms/__init__.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/songs/forms/authorsdialog.py b/openlp/plugins/songs/forms/authorsdialog.py index c558c1439..7c83a3f74 100644 --- a/openlp/plugins/songs/forms/authorsdialog.py +++ b/openlp/plugins/songs/forms/authorsdialog.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/songs/forms/authorsform.py b/openlp/plugins/songs/forms/authorsform.py index ea92077ff..0df0b8fd4 100644 --- a/openlp/plugins/songs/forms/authorsform.py +++ b/openlp/plugins/songs/forms/authorsform.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/songs/forms/editsongdialog.py b/openlp/plugins/songs/forms/editsongdialog.py index 749d5184d..2f02a7333 100644 --- a/openlp/plugins/songs/forms/editsongdialog.py +++ b/openlp/plugins/songs/forms/editsongdialog.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # @@ -313,4 +314,4 @@ def editSongDialogComboBox(parent, name): comboBox.setEditable(True) comboBox.setInsertPolicy(QtGui.QComboBox.NoInsert) comboBox.setObjectName(name) - return comboBox \ No newline at end of file + return comboBox diff --git a/openlp/plugins/songs/forms/editsongform.py b/openlp/plugins/songs/forms/editsongform.py index 6155145f8..8411aa488 100644 --- a/openlp/plugins/songs/forms/editsongform.py +++ b/openlp/plugins/songs/forms/editsongform.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/songs/forms/editversedialog.py b/openlp/plugins/songs/forms/editversedialog.py index f6b900d8c..be51b1f97 100644 --- a/openlp/plugins/songs/forms/editversedialog.py +++ b/openlp/plugins/songs/forms/editversedialog.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/songs/forms/editverseform.py b/openlp/plugins/songs/forms/editverseform.py index a6e1b3534..300c87c32 100644 --- a/openlp/plugins/songs/forms/editverseform.py +++ b/openlp/plugins/songs/forms/editverseform.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/songs/forms/songbookdialog.py b/openlp/plugins/songs/forms/songbookdialog.py index 0bee88908..81d389545 100644 --- a/openlp/plugins/songs/forms/songbookdialog.py +++ b/openlp/plugins/songs/forms/songbookdialog.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/songs/forms/songbookform.py b/openlp/plugins/songs/forms/songbookform.py index aac3f65ca..fdac26e9b 100644 --- a/openlp/plugins/songs/forms/songbookform.py +++ b/openlp/plugins/songs/forms/songbookform.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/songs/forms/songexportform.py b/openlp/plugins/songs/forms/songexportform.py index dbd0eb9af..5446a314b 100644 --- a/openlp/plugins/songs/forms/songexportform.py +++ b/openlp/plugins/songs/forms/songexportform.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # @@ -184,7 +185,7 @@ class SongExportForm(OpenLPWizard): translate('SongsPlugin.ExportWizardForm', 'Select Directory')) self.exportSongPage.setSubTitle( translate('SongsPlugin.ExportWizardForm', - 'Select the directory you want the songs to be saved.')) + 'Select the directory where you want the songs to be saved.')) self.directoryLabel.setText( translate('SongsPlugin.ExportWizardForm', 'Directory:')) self.progressPage.setTitle( diff --git a/openlp/plugins/songs/forms/songimportform.py b/openlp/plugins/songs/forms/songimportform.py index 8c5dbeb8a..61e9fc7c8 100644 --- a/openlp/plugins/songs/forms/songimportform.py +++ b/openlp/plugins/songs/forms/songimportform.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/songs/forms/songmaintenancedialog.py b/openlp/plugins/songs/forms/songmaintenancedialog.py index 3d65783ac..3c5bc4c43 100644 --- a/openlp/plugins/songs/forms/songmaintenancedialog.py +++ b/openlp/plugins/songs/forms/songmaintenancedialog.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # @@ -162,4 +163,4 @@ class Ui_SongMaintenanceDialog(object): self.fontMetrics().width(SongStrings.Topics), self.fontMetrics().width(SongStrings.SongBooks)) self.typeListWidget.setFixedWidth(typeListWidth + - self.typeListWidget.iconSize().width() + 32) \ No newline at end of file + self.typeListWidget.iconSize().width() + 32) diff --git a/openlp/plugins/songs/forms/songmaintenanceform.py b/openlp/plugins/songs/forms/songmaintenanceform.py index c1437ce0e..8ead775ed 100644 --- a/openlp/plugins/songs/forms/songmaintenanceform.py +++ b/openlp/plugins/songs/forms/songmaintenanceform.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/songs/forms/topicsdialog.py b/openlp/plugins/songs/forms/topicsdialog.py index 67ae06e9a..f40ddf972 100644 --- a/openlp/plugins/songs/forms/topicsdialog.py +++ b/openlp/plugins/songs/forms/topicsdialog.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/songs/forms/topicsform.py b/openlp/plugins/songs/forms/topicsform.py index 3263be1d6..d6e17a32e 100644 --- a/openlp/plugins/songs/forms/topicsform.py +++ b/openlp/plugins/songs/forms/topicsform.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/songs/lib/__init__.py b/openlp/plugins/songs/lib/__init__.py index d3ad959bd..e81ca26df 100644 --- a/openlp/plugins/songs/lib/__init__.py +++ b/openlp/plugins/songs/lib/__init__.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/songs/lib/cclifileimport.py b/openlp/plugins/songs/lib/cclifileimport.py index d304b0241..fe63b3cc6 100644 --- a/openlp/plugins/songs/lib/cclifileimport.py +++ b/openlp/plugins/songs/lib/cclifileimport.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/songs/lib/db.py b/openlp/plugins/songs/lib/db.py index fd6d94d14..404ad2c42 100644 --- a/openlp/plugins/songs/lib/db.py +++ b/openlp/plugins/songs/lib/db.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/songs/lib/easislidesimport.py b/openlp/plugins/songs/lib/easislidesimport.py index 0c710377a..7a370534d 100644 --- a/openlp/plugins/songs/lib/easislidesimport.py +++ b/openlp/plugins/songs/lib/easislidesimport.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/songs/lib/ewimport.py b/openlp/plugins/songs/lib/ewimport.py index 784558c5b..4a3eb9b9d 100644 --- a/openlp/plugins/songs/lib/ewimport.py +++ b/openlp/plugins/songs/lib/ewimport.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/songs/lib/foilpresenterimport.py b/openlp/plugins/songs/lib/foilpresenterimport.py index 8cd328808..017c0f6c5 100644 --- a/openlp/plugins/songs/lib/foilpresenterimport.py +++ b/openlp/plugins/songs/lib/foilpresenterimport.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # @@ -414,7 +415,7 @@ class FoilPresenter(object): temp_sortnr_liste = [] versenumber = { VerseType.Tags[VerseType.Verse]: 1, - VerseType.Tags[VerseType.Chorus]: 1, + VerseType.Tags[VerseType.Chorus]: 1, VerseType.Tags[VerseType.Bridge]: 1, VerseType.Tags[VerseType.Ending]: 1, VerseType.Tags[VerseType.Other]: 1, diff --git a/openlp/plugins/songs/lib/importer.py b/openlp/plugins/songs/lib/importer.py index bad31c0ea..8336d1c69 100644 --- a/openlp/plugins/songs/lib/importer.py +++ b/openlp/plugins/songs/lib/importer.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/songs/lib/mediaitem.py b/openlp/plugins/songs/lib/mediaitem.py index 23632ca58..7ea1658fc 100644 --- a/openlp/plugins/songs/lib/mediaitem.py +++ b/openlp/plugins/songs/lib/mediaitem.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/songs/lib/olp1import.py b/openlp/plugins/songs/lib/olp1import.py index 7ba933a8f..bdd967fd9 100644 --- a/openlp/plugins/songs/lib/olp1import.py +++ b/openlp/plugins/songs/lib/olp1import.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/songs/lib/olpimport.py b/openlp/plugins/songs/lib/olpimport.py index a201c1783..4ef24bcff 100644 --- a/openlp/plugins/songs/lib/olpimport.py +++ b/openlp/plugins/songs/lib/olpimport.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/songs/lib/oooimport.py b/openlp/plugins/songs/lib/oooimport.py index d43541bc7..7ce1d3d76 100644 --- a/openlp/plugins/songs/lib/oooimport.py +++ b/openlp/plugins/songs/lib/oooimport.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/songs/lib/openlyricsexport.py b/openlp/plugins/songs/lib/openlyricsexport.py index 59b720d3e..bb22bc2f0 100644 --- a/openlp/plugins/songs/lib/openlyricsexport.py +++ b/openlp/plugins/songs/lib/openlyricsexport.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/songs/lib/openlyricsimport.py b/openlp/plugins/songs/lib/openlyricsimport.py index 4c0e5189a..ab477a19a 100644 --- a/openlp/plugins/songs/lib/openlyricsimport.py +++ b/openlp/plugins/songs/lib/openlyricsimport.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/songs/lib/opensongimport.py b/openlp/plugins/songs/lib/opensongimport.py index 365f20268..26596fc44 100644 --- a/openlp/plugins/songs/lib/opensongimport.py +++ b/openlp/plugins/songs/lib/opensongimport.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/songs/lib/sofimport.py b/openlp/plugins/songs/lib/sofimport.py index 7f9fa16bc..011a67a9b 100644 --- a/openlp/plugins/songs/lib/sofimport.py +++ b/openlp/plugins/songs/lib/sofimport.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/songs/lib/songbeamerimport.py b/openlp/plugins/songs/lib/songbeamerimport.py index 861ec2e99..0603230ba 100644 --- a/openlp/plugins/songs/lib/songbeamerimport.py +++ b/openlp/plugins/songs/lib/songbeamerimport.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # @@ -68,6 +69,30 @@ class SongBeamerImport(SongImport): Song Beamer file format is text based in the beginning are one or more control tags written """ + HTML_TAG_PAIRS = [ + (re.compile(u''), u'{st}'), + (re.compile(u''), u'{/st}'), + (re.compile(u''), u'{it}'), + (re.compile(u''), u'{/it}'), + (re.compile(u''), u'{u}'), + (re.compile(u''), u'{/u}'), + (re.compile(u'

    '), u'{p}'), + (re.compile(u'

    '), u'{/p}'), + (re.compile(u''), u'{su}'), + (re.compile(u''), u'{/su}'), + (re.compile(u''), u'{sb}'), + (re.compile(u''), u'{/sb}'), + (re.compile(u''), u'{br}'), + (re.compile(u'<[/]?wordwrap>'), u''), + (re.compile(u'<[/]?strike>'), u''), + (re.compile(u'<[/]?h.*?>'), u''), + (re.compile(u'<[/]?s.*?>'), u''), + (re.compile(u'<[/]?linespacing.*?>'), u''), + (re.compile(u'<[/]?c.*?>'), u''), + (re.compile(u''), u''), + (re.compile(u''), u'') + ] + def __init__(self, manager, **kwargs): """ Initialise the Song Beamer importer. @@ -133,32 +158,8 @@ class SongBeamerImport(SongImport): This can be called to replace SongBeamer's specific (html) tags with OpenLP's specific (html) tags. """ - tag_pairs = [ - (u'', u'{st}'), - (u'', u'{/st}'), - (u'', u'{it}'), - (u'', u'{/it}'), - (u'', u'{u}'), - (u'', u'{/u}'), - (u'

    ', u'{p}'), - (u'

    ', u'{/p}'), - (u'', u'{su}'), - (u'', u'{/su}'), - (u'', u'{sb}'), - (u'', u'{/sb}'), - (u'<[/]?br.*?>', u'{st}'), - (u'<[/]?wordwrap>', u''), - (u'<[/]?strike>', u''), - (u'<[/]?h.*?>', u''), - (u'<[/]?s.*?>', u''), - (u'<[/]?linespacing.*?>', u''), - (u'<[/]?c.*?>', u''), - (u'', u''), - (u'', u'') - ] - for pair in tag_pairs: - self.current_verse = re.compile(pair[0]).sub(pair[1], - self.current_verse) + for pair in SongBeamerImport.HTML_TAG_PAIRS: + self.current_verse = pair[0].sub(pair[1], self.current_verse) def parse_tags(self, line): """ diff --git a/openlp/plugins/songs/lib/songimport.py b/openlp/plugins/songs/lib/songimport.py index 78275d210..e6e916e4c 100644 --- a/openlp/plugins/songs/lib/songimport.py +++ b/openlp/plugins/songs/lib/songimport.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/songs/lib/songshowplusimport.py b/openlp/plugins/songs/lib/songshowplusimport.py index ac06d7840..f5af753e8 100644 --- a/openlp/plugins/songs/lib/songshowplusimport.py +++ b/openlp/plugins/songs/lib/songshowplusimport.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/songs/lib/songstab.py b/openlp/plugins/songs/lib/songstab.py index e39c22be7..16c2510b4 100644 --- a/openlp/plugins/songs/lib/songstab.py +++ b/openlp/plugins/songs/lib/songstab.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/songs/lib/test/test_import_file.py b/openlp/plugins/songs/lib/test/test_import_file.py index 6be485210..6ff46e52e 100644 --- a/openlp/plugins/songs/lib/test/test_import_file.py +++ b/openlp/plugins/songs/lib/test/test_import_file.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/songs/lib/test/test_importing_lots.py b/openlp/plugins/songs/lib/test/test_importing_lots.py index 5cd8b3362..1f2b3d0d6 100644 --- a/openlp/plugins/songs/lib/test/test_importing_lots.py +++ b/openlp/plugins/songs/lib/test/test_importing_lots.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/songs/lib/test/test_opensongimport.py b/openlp/plugins/songs/lib/test/test_opensongimport.py index e29b9733c..bead3097b 100644 --- a/openlp/plugins/songs/lib/test/test_opensongimport.py +++ b/openlp/plugins/songs/lib/test/test_opensongimport.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/songs/lib/ui.py b/openlp/plugins/songs/lib/ui.py index 4ed81e5d8..581cbd4a9 100644 --- a/openlp/plugins/songs/lib/ui.py +++ b/openlp/plugins/songs/lib/ui.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/songs/lib/wowimport.py b/openlp/plugins/songs/lib/wowimport.py index 56f461f8b..a12725629 100644 --- a/openlp/plugins/songs/lib/wowimport.py +++ b/openlp/plugins/songs/lib/wowimport.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/songs/lib/xml.py b/openlp/plugins/songs/lib/xml.py index 46a3c9d78..fd7fd5000 100644 --- a/openlp/plugins/songs/lib/xml.py +++ b/openlp/plugins/songs/lib/xml.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/songs/songsplugin.py b/openlp/plugins/songs/songsplugin.py index 0091406d1..aaa710ae7 100644 --- a/openlp/plugins/songs/songsplugin.py +++ b/openlp/plugins/songs/songsplugin.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/songusage/__init__.py b/openlp/plugins/songusage/__init__.py index 15832d17c..1328e0309 100644 --- a/openlp/plugins/songusage/__init__.py +++ b/openlp/plugins/songusage/__init__.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/songusage/forms/__init__.py b/openlp/plugins/songusage/forms/__init__.py index 103ce032f..28d9c2ed8 100644 --- a/openlp/plugins/songusage/forms/__init__.py +++ b/openlp/plugins/songusage/forms/__init__.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/songusage/forms/songusagedeletedialog.py b/openlp/plugins/songusage/forms/songusagedeletedialog.py index 95e877ca3..154d18441 100644 --- a/openlp/plugins/songusage/forms/songusagedeletedialog.py +++ b/openlp/plugins/songusage/forms/songusagedeletedialog.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/songusage/forms/songusagedeleteform.py b/openlp/plugins/songusage/forms/songusagedeleteform.py index 1c7294729..b34110a59 100644 --- a/openlp/plugins/songusage/forms/songusagedeleteform.py +++ b/openlp/plugins/songusage/forms/songusagedeleteform.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/songusage/forms/songusagedetaildialog.py b/openlp/plugins/songusage/forms/songusagedetaildialog.py index 371c3d6f4..a71bd5f0c 100644 --- a/openlp/plugins/songusage/forms/songusagedetaildialog.py +++ b/openlp/plugins/songusage/forms/songusagedetaildialog.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/songusage/forms/songusagedetailform.py b/openlp/plugins/songusage/forms/songusagedetailform.py index 11816d85c..8930563fc 100644 --- a/openlp/plugins/songusage/forms/songusagedetailform.py +++ b/openlp/plugins/songusage/forms/songusagedetailform.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/songusage/lib/__init__.py b/openlp/plugins/songusage/lib/__init__.py index 6cb536530..46dbefa8c 100644 --- a/openlp/plugins/songusage/lib/__init__.py +++ b/openlp/plugins/songusage/lib/__init__.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/songusage/lib/db.py b/openlp/plugins/songusage/lib/db.py index a3a2c4fc4..6f13988e3 100644 --- a/openlp/plugins/songusage/lib/db.py +++ b/openlp/plugins/songusage/lib/db.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/songusage/songusageplugin.py b/openlp/plugins/songusage/songusageplugin.py index 5f21451b6..3671cfcff 100644 --- a/openlp/plugins/songusage/songusageplugin.py +++ b/openlp/plugins/songusage/songusageplugin.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/resources/i18n/af.ts b/resources/i18n/af.ts index 6d9b64f30..104828f95 100644 --- a/resources/i18n/af.ts +++ b/resources/i18n/af.ts @@ -184,22 +184,22 @@ Gaan steeds voort? BiblePlugin.HTTPBible - + Download Error Aflaai Fout - + Parse Error Ontleed 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. - + 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. @@ -207,12 +207,12 @@ Gaan steeds voort? BiblePlugin.MediaItem - + Bible not fully loaded. Die Bybel is nie ten volle gelaai nie. - + 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 kombineer word nie. Wis die resultate uit en begin 'n nuwe soektog? @@ -224,46 +224,6 @@ Gaan steeds voort? &Bible &Bybel - - - <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display bible verses from different sources during the service. - <strong>Bybel Mini-program</strong><br/>Die Bybel mini-program verskaf die taak om Bybel verse vanaf verskillende bronne tydens die diens te vertoon. - - - - 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 - Sien voorskou van 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 - Bible @@ -283,47 +243,87 @@ Gaan steeds voort? 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. + + + + + 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. + + 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. - + Your scripture reference is either not supported by OpenLP or is invalid. Please make sure your reference conforms to one of the following patterns: Book Chapter @@ -342,7 +342,7 @@ Boek Hoofstuk:Vers-Vers, Hoofstuk:Vers-Vers Boek Hoofstuk:Vers-Hoofstuk:Vers - + No Bibles Available Geeb Bybels Beskikbaar nie @@ -519,18 +519,6 @@ Veranderinge affekteer nie verse wat reeds in die diens is nie. This Bible already exists. Please import a different Bible or first delete the existing one. Hierdie Bybel bestaan reeds. Voer asseblief 'n ander Bybel in of wis eers die bestaande een uit. - - - Starting Registering bible... - Begin Bybel registrasie... - - - - Registered bible. Please note, that verses will be downloaded on -demand and thus an internet connection is required. - Geregistreerde bybel. Neem kennis daarvan dat verse op aanvraag -afgelaai word en dus word 'n Internet konneksie benodig. - Permissions: @@ -576,74 +564,75 @@ afgelaai word en dus word 'n Internet konneksie benodig. openlp.org 1.x Bible Files openlp.org 1.x Bybel Lêers + + + Registering Bible... + + + + + Registered Bible. Please note, that verses will be downloaded on +demand and thus an internet connection is required. + + BiblesPlugin.MediaItem - + Quick Vinnig - + Find: Vind: - - Results: - Resultate: - - - + Book: Boek: - + Chapter: Hoofstuk: - + Verse: Vers: - + From: Vanaf: - + To: Tot: - + Text Search Teks Soektog - - Clear - Maak Skoon - - - - Keep - Behou - - - + Second: Tweede: - + Scripture Reference Skrif Verwysing + + + Toggle to keep or clear the previous results. + + BiblesPlugin.Opensong @@ -717,12 +706,12 @@ afgelaai word en dus word 'n Internet konneksie benodig. Redigeer al die skyfies tegelyk. - + Split Slide Verdeel Skyfie - + Split a slide into two by inserting a slide splitter. Verdeel 'n skyfie deur 'n skyfie-verdeler te gebruik. @@ -737,12 +726,12 @@ afgelaai word en dus word 'n Internet konneksie benodig. &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 @@ -751,49 +740,19 @@ afgelaai word en dus word 'n Internet konneksie benodig. Ed&it All Red&igeer Alles + + + Split a slide into two only if it does not fit on the screen as one slide. + + + + + Insert Slide + + CustomsPlugin - - - Import a Custom - Voer 'n Persoonlike nutsprogram in - - - - Load a new Custom - Laai 'n nuwe Aanpassing - - - - Add a new Custom - Voeg 'n nuwe Aanpassing by - - - - Edit the selected Custom - Redigeer die geselekteerde Aanpassing - - - - Delete the selected Custom - Wis die geselekteerde Aanpassing uit - - - - Preview the selected Custom - Sien voorskou van die geselekteerde Aanpassing - - - - Send the selected Custom live - Stuur die geselekteerde Aanpassing regstreeks - - - - Add the selected Custom to the service - Voeg die geselekteerde Aanpassing by die diens - Custom @@ -812,11 +771,51 @@ afgelaai word en dus word 'n Internet konneksie benodig. container title Aanpasing + + + Load a new Custom. + + + + + Import a Custom. + + + + + Add a new Custom. + + + + + Edit the selected Custom. + + + + + Delete the selected Custom. + + + + + Preview the selected Custom. + + + + + Send the selected Custom live. + + + + + Add the selected Custom to the service. + + GeneralTab - + General Algemeen @@ -828,41 +827,6 @@ afgelaai word en dus word 'n Internet konneksie benodig. <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. - - - 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 - Sien voorskou van 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 - Image @@ -881,11 +845,46 @@ afgelaai word en dus word 'n Internet konneksie benodig. container title Beelde + + + 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 Selekteer Aanhangsel @@ -893,39 +892,39 @@ afgelaai word en dus word 'n Internet konneksie benodig. 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. @@ -937,41 +936,6 @@ Voeg steeds die ander beelde by? <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. - - - Load a new Media - Laai nuwe Media - - - - Add a new Media - Voeg nuwe Media by - - - - Edit the selected Media - Redigeer die geselekteerde Media - - - - Delete the selected Media - Wis die geselekteerde Media uit - - - - Preview the selected Media - Sien voorskou van 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 - Media @@ -990,41 +954,76 @@ Voeg steeds die ander beelde by? container title Media + + + Load a new Media. + + + + + Add a 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 Selekteer Media - + You must select a media file to delete. 'n Media lêer om uit te wis moet geselekteer word. - + Missing Media File Vermisde Media Lêer - + The file %s no longer exists. Die lêer %s bestaan nie meer nie. - + 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. - + Videos (%s);;Audio (%s);;%s (*) Videos (%s);;Audio (%s);;%s (*) @@ -1053,34 +1052,17 @@ Voeg steeds die ander beelde by? OpenLP.AboutForm - - OpenLP <version><revision> - Open Source Lyrics Projection - -OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if OpenOffice.org, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. - -Find out more about OpenLP: http://openlp.org/ - -OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider contributing by using the button below. - OpenLP <version><revision> - Open Source Lyrics Projection - -OpenLP is gratis kerk aanbieding sagteware of lirieke projeksie sagteware wat gebruik word vir die vertoning van liedere, Bybel verse, video's, beelde tot ook aanbiedings (as OpenOffice.org, PowerPoint of PowerPoint Viewer geïnstalleer is) vir kerklike aanbidding deur middel van 'n rekenaar en 'n data projektor. - -Vind meer uit oor OpenLP: http://openlp.org/ - -OpenLP is geskryf en word onderhou deur vrywilligers. As u graag wil sien dat meer Christelike sagteware geskryf word, oorweeg dit asseblief om by te dra deur die knoppie hieronder te gebruik. - - - + Credits Krediete - + License Lisensie - + Contribute Dra By @@ -1090,17 +1072,17 @@ OpenLP is geskryf en word onderhou deur vrywilligers. As u graag wil sien dat me bou %s - + This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. Hierdie program is gratis sagteware; dit kan verspei en/of verander word onder die terme van die GNU Algemene Publieke Lisensie soos deur die Gratis Sagteware Vondasie gepubliseer is; weergawe 2 van die Lisensie. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See below for more details. Hierdie program word versprei in die hoop dat dit nuttig sal wees, maar SONDER ENIGE WAARBORG; sonder die geïmpliseerde waarborg van VERHANDELBAARHEID of GESKIKTHEID VIR 'N SPESIFIEKE DOEL. Sien hieronder vir meer inligting. - + Project Lead %s @@ -1226,17 +1208,21 @@ Finale Krediet Hy ons vry gemaak het. - - Copyright © 2004-2011 Raoul Snyman -Portions copyright © 2004-2011 Tim Bentley, Jonathan Corwin, Michael Gorven, Scott Guerrieri, -Meinert Jordan, Andreas Preikschat, Christian Richter, Philip -Ridout, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Carsten -Tinggaard, Frode Woldsund - Kopiereg © 2004-2011 Raoul Snyman -Gedeeltelike kopiereg © 2004-2011 Tim Bentley, Jonathan Corwin, Michael Gorven, Scott Guerrieri, -Meinert Jordan, Andreas Preikschat, Christian Richter, Philip -Ridout, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Carsten -Tinggaard, Frode Woldsund + + 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 contributing by using the button below. + + + + + Copyright © 2004-2011 %s +Portions copyright © 2004-2011 %s + @@ -1330,70 +1316,70 @@ Tinggaard, Frode Woldsund OpenLP.DisplayTagDialog - + Edit Selection Redigeer Seleksie - - Update - Opdatteer - - - + Description Beskrywing - + Tag Etiket - + Start tag Begin etiket - + End tag Eind-etiket - + Default Verstek - + Tag Id Haak Id - + Start HTML Begin HTML - + End HTML Eindig HTML + + + Save + + OpenLP.DisplayTagTab - + Update Error Opdateer Fout - + Tag "n" already defined. Etiket "n" alreeds gedefinieër. - + Tag %s already defined. Etiket %s alreeds gedefinieër. @@ -1433,7 +1419,7 @@ Tinggaard, Frode Woldsund Heg 'n Lêer aan - + Description characters to enter : %s Beskrywende karakters om in te voer: %s @@ -1489,7 +1475,7 @@ Version: %s - + *OpenLP Bug Report* Version: %s @@ -1585,77 +1571,72 @@ Version: %s Welkom by die Eerste-keer Gids - - This wizard will help you to configure OpenLP for initial use. Click the next button below to start the process of selection your initial options. - 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. - - - + Activate required Plugins Aktiveer nodige Miniprogramme - + Select the Plugins you wish to use. Kies die Miniprogramme wat gebruik moet word. - + Songs Liedere - + Custom Text Verpersoonlike Teks - + 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 - + No Internet Connection Geen Internet Verbinding - + Unable to detect an Internet connection. Nie in staat om 'n Internet verbinding op te spoor nie. - + 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. To re-run the First Time Wizard and import this sample data at a later stage, press the cancel button now, check your Internet connection, and restart OpenLP. @@ -1667,190 +1648,195 @@ Om die Eerste-gebruik Gids later te gebruik om hierde data in te trek, druk die Om die Eerste-keer gids heeltemal te kanselleer, druk die vollledig-knoppie hieronder. - + 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. - + Default Settings Verstek Instellings - + Set up default settings to be used by OpenLP. Stel verstek instellings wat deur OpenLP gebruik moet word. - + Setting Up And Importing Opstel en Invoer - + Please wait while OpenLP is set up and your data is imported. Wag asseblief terwyl OpenLP opgestel word en die data ingevoer 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. + + 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 - + Slide loop delay: Skyfie herhaal vertraging: - + sec sek - + CCLI Details CCLI Inligting - + SongSelect username: SongSelect gebruikersnaam: - + SongSelect password: SongSelect wagwoord: - + Display Position Vertoon Posisie - + X X - + Y Y - + Height Hoogte - + Width Wydte - + Override display position Oorskryf vertoon posisie - + Check for updates to OpenLP Kyk vir opdaterings van OpenLP - + Unblank display when adding new live item @@ -1871,7 +1857,7 @@ Om die Eerste-keer gids heeltemal te kanselleer, druk die vollledig-knoppie hier OpenLP.MainDisplay - + OpenLP Display OpenLP Vertooning @@ -1879,282 +1865,282 @@ Om die Eerste-keer gids heeltemal te kanselleer, druk die vollledig-knoppie hier 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. @@ -2173,17 +2159,17 @@ Die nuutste weergawe kan afgelaai word vanaf http://openlp.org/. 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 @@ -2194,45 +2180,60 @@ Die nuutste weergawe kan afgelaai word vanaf http://openlp.org/. Afrikaans - + Configure &Shortcuts... Konfigureer Kortpaaie - + Close OpenLP Mook OpenLP toe - + Are you sure you want to close OpenLP? Maak OpenLP sekerlik toe? - + Print the current Service Order. Druk die huidige Diens Bestelling. - + 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. - + &Configure Display Tags Konfigureer Vertoon Haakies - + &Autodetect Spoor outom&aties op + + + Update Theme Images + + + + + Update the preview images for all themes. + + + + + F1 + + OpenLP.MediaManagerItem @@ -2242,46 +2243,56 @@ Die nuutste weergawe kan afgelaai word vanaf http://openlp.org/. 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. - + Duplicate file name %s. Filename already exists in list + + + You must select one or more items to add. + + + + + No Search Results + + OpenLP.PluginForm @@ -2403,19 +2414,19 @@ Filename already exists in list - Add page break before each text item. + Add page break before each text item OpenLP.ScreenList - + Screen Skerm - + primary primêr @@ -2431,224 +2442,209 @@ Filename already exists in list OpenLP.ServiceManager - - Load an existing service - Laai 'n bestaande diens - - - - Save this service - Stoor hierdie diens - - - - Select a theme for the service - Selekteer 'n tema vir die diens - - - + Move to &top Skuif boon&toe - + Move item to the top of the service. Skuif item tot heel bo in die diens. - + Move &up Sk&uif op - + Move item up one position in the service. Skuif item een posisie boontoe in die diens. - + Move &down Skuif &af - + Move item down one position in the service. Skuif item een posisie af in die diens. - + Move to &bottom Skuif &tot heel onder - + Move item to the end of the service. Skuif item tot aan die einde van die diens. - + &Delete From Service Wis uit vanaf die &Diens - + Delete the selected item from the service. Wis geselekteerde item van die diens af. - + &Add New Item &Voeg Nuwe Item By - + &Add to Selected Item &Voeg by Geselekteerde Item - + &Edit Item R&edigeer Item - + &Reorder Item Ve&rander Item orde - + &Notes &Notas - + &Change Item Theme &Verander Item Tema - + File is not a valid service. The content encoding is not UTF-8. Lêer is nie 'n geldige diens nie. Die inhoud enkodering is nie UTF-8 nie. - + File is not a valid service. Lêer is nie 'n geldige diens nie. - + Missing Display Handler Vermisde Vertoon Hanteerder - + Your item cannot be displayed as there is no handler to display it Die item kan nie vertoon word nie omdat daar nie 'n hanteerder is om dit te vertoon nie - + Your item cannot be displayed as the plugin required to display it is missing or inactive Die item kan nie vertoon word nie omdat die mini-program wat dit moet vertoon vermis of onaktief is - + &Expand all Br&ei alles uit - + Expand all the service items. Brei al die diens items uit. - + &Collapse all Stort alles ineen - + Collapse all the service items. Stort al die diens items ineen - + Open File Maak Lêer oop - + OpenLP Service Files (*.osz) OpenLP Diens Lêers (*.osz) - + Moves the selection down the window. Skuif die geselekteerde afwaarts in die venster. - + Move up Skuif op - + Moves the selection up the window. Skuif die geselekteerde opwaarts in die venster. - + Go Live Gaan Regstreeks - + Send the selected item to Live. Stuur die geselekteerde item Regstreeks - + Modified Service Redigeer Diens - + &Start Time Begin Tyd - + Show &Preview Wys Voorskou - + Show &Live Vertoon Regstreeks - + The current service has been modified. Would you like to save this service? Die huidige diens was verander. Stoor hierdie diens? - + File could not be opened because it is corrupt. - + Empty File - + This service file does not contain any data. - + Corrupt File @@ -2668,15 +2664,30 @@ Die inhoud enkodering is nie UTF-8 nie. - + Untitled Service - + This file is either corrupt or not an OpenLP 2.0 service file. + + + Load an existing service. + + + + + Save this service. + + + + + Select a theme for the service. + + OpenLP.ServiceNoteForm @@ -2765,100 +2776,105 @@ Die inhoud enkodering is nie UTF-8 nie. OpenLP.SlideController - + Move to previous Beweeg na vorige - + Move to next Beweeg na volgende - + Hide Verskuil - + Move to live Verskuif na regstreekse skerm - + Start continuous loop Begin aaneenlopende lus - + Stop continuous loop Stop deurlopende lus - + Delay between slides in seconds Vertraging tussen skyfies in sekondes - + Start playing media Begin media speel - + Go To Gaan Na - + Edit and reload song preview Redigeer en laai weer 'n lied voorskou - + Blank Screen Blanko Skerm - + Blank to Theme Blanko na Tema - + Show Desktop Wys Werkskerm - + Previous Slide Vorige Skyfie - + Next Slide Volgende Skyfie - + Previous Service Vorige Diens - + Next Service Volgende Diens - + Escape Item Ontsnap Item - + Start/Stop continuous loop + + + Add to Service + + OpenLP.SpellTextEdit @@ -3027,69 +3043,69 @@ Die inhoud enkodering is nie UTF-8 nie. 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. - + 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. The content encoding is not UTF-8. Lêer is nie 'n geldige tema nie. Die inhoud enkodering is nie UTF-8 nie. - + File is not a valid theme. Lêer is nie 'n geldige tema nie. - + Theme %s is used in the %s plugin. Tema %s is in gebruik deur die %s mini-program. @@ -3109,47 +3125,47 @@ Die inhoud enkodering is nie UTF-8 nie. 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) @@ -3573,7 +3589,7 @@ Die inhoud enkodering is nie UTF-8 nie. Begin %s - + &Vertical Align: &Vertikale Sporing: @@ -3781,7 +3797,7 @@ Die inhoud enkodering is nie UTF-8 nie. Gereed. - + Starting import... Invoer begin... @@ -3930,11 +3946,6 @@ Die inhoud enkodering is nie UTF-8 nie. View - - - View Model - - Duplicate Error @@ -3955,11 +3966,16 @@ Die inhoud enkodering is nie UTF-8 nie. XML syntax error + + + View Mode + + OpenLP.displayTagDialog - + Configure Display Tags Konfigureer Vertoon Hakkies @@ -3971,31 +3987,6 @@ Die inhoud enkodering is nie UTF-8 nie. <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. - - - Load a new Presentation - Laai 'n nuwe Aanbiedieng - - - - Delete the selected Presentation - Wis die geselekteerde Aanbieding uit - - - - Preview the selected Presentation - Sien voorskou van die geselekteerde Aanbieding - - - - Send the selected Presentation live - Stuur die geselekteerde Aanbieding regstreeks - - - - Add the selected Presentation to the service - Voeg die geselekteerde Aanbieding by die diens - Presentation @@ -4014,56 +4005,81 @@ Die inhoud enkodering is nie UTF-8 nie. container title Aanbiedinge + + + 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) Selekteer Aanbieding(e) - + Automatic Outomaties - + Present using: Bied aan met: - + File Exists Lêer Bestaan Reeds - + A presentation with that filename already exists. 'n Aanbieding met daardie lêernaam bestaan reeds. - + This type of presentation is not supported. Hierdie tipe aanbieding word nie ondersteun nie. - + Presentations (%s) Aanbiedinge (%s) - + Missing Presentation Vermisde Aanbieding - + The Presentation %s no longer exists. Die Aanbieding %s bestaan nie meer nie. - + The Presentation %s is incomplete, please reload. Die Aanbieding %s is onvolledig, herlaai asseblief. @@ -4115,20 +4131,30 @@ Die inhoud enkodering is nie UTF-8 nie. RemotePlugin.RemoteTab - + Serve on IP address: Bedien op hierdie IP adres: - + Port number: Poort nommer: - + Server Settings Bediener Verstellings + + + Remote URL: + + + + + Stage view URL: + + SongUsagePlugin @@ -4313,36 +4339,6 @@ was suksesvol geskep. Reindexing songs... Besig om liedere indek te herskep... - - - 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 - Song @@ -4458,6 +4454,36 @@ Die enkodering is verantwoordelik vir die korrekte karrakter voorstelling.Exports songs using the export wizard. Voer liedere uit deur gebruik te maak van die uitvoer gids. + + + 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. + + SongsPlugin.AuthorsForm @@ -4691,7 +4717,7 @@ Die enkodering is verantwoordelik vir die korrekte karrakter voorstelling.Daar word 'n outeur benodig vir hierdie lied. - + You need to type some text in to the verse. Daar word teks benodig vir die vers. @@ -4699,20 +4725,35 @@ Die enkodering is verantwoordelik vir die korrekte karrakter voorstelling. SongsPlugin.EditVerseForm - + Edit Verse Redigeer Vers - + &Verse type: &Vers tipe: - + &Insert Sit Tussen-&in + + + &Split + + + + + Split a slide into two only if it does not fit on the screen as one slide. + + + + + Split a slide into two by inserting a verse splitter. + + SongsPlugin.ExportWizardForm @@ -4746,11 +4787,6 @@ Die enkodering is verantwoordelik vir die korrekte karrakter voorstelling.Select Directory Kies Lêer-gids - - - Select the directory you want the songs to be saved. - Kies die gids waar die liedere gestoor moet word. - Directory: @@ -4796,6 +4832,11 @@ Die enkodering is verantwoordelik vir die korrekte karrakter voorstelling.Select Destination Folder Kies Bestemming Lêer gids + + + Select the directory where you want the songs to be saved. + + SongsPlugin.ImportWizardForm @@ -4908,43 +4949,43 @@ Die enkodering is verantwoordelik vir die korrekte karrakter voorstelling. SongsPlugin.MediaItem - - Maintain the lists of authors, topics and books - Handhaaf die lys van skrywers, onderwerpe en boeke - - - + Titles Titels - + Lyrics Lirieke - + Delete Song(s)? Wis Lied(ere) uit? - + CCLI License: CCLI Lisensie: - + Entire Song Volledige Lied - + Are you sure you want to delete the %n selected song(s)? Wis regtig die %n geselekteerde lied(ere)? + + + Maintain the lists of authors, topics and books. + + SongsPlugin.OpenLP1SongImport diff --git a/resources/i18n/cs.ts b/resources/i18n/cs.ts index 18d93bf52..72ea7a41b 100644 --- a/resources/i18n/cs.ts +++ b/resources/i18n/cs.ts @@ -184,22 +184,22 @@ Chcete přesto pokračovat? BiblePlugin.HTTPBible - + 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. @@ -207,12 +207,12 @@ Chcete přesto pokračovat? BiblePlugin.MediaItem - + Bible not fully loaded. Bible není celá načtena. - + 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? @@ -224,46 +224,6 @@ Chcete přesto pokračovat? &Bible &Bible - - - <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 dovoluje během služby zobrazovat biblické verše z různých zdrojů. - - - - Import a Bible - Import Bible - - - - Add a new Bible - Přidat 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 - Vybraná Bibli naživo - - - - Add the selected Bible to the service - Přidat vybranou Bibli k službě - Bible @@ -283,47 +243,87 @@ Chcete přesto pokračovat? 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. + + + + + 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. + + 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. - + Your scripture reference is either not supported by OpenLP or is invalid. Please make sure your reference conforms to one of the following patterns: Book Chapter @@ -342,7 +342,7 @@ Kniha Kapitola:Verš-Verš,Kapitola:Verš-Verš Kniha Kapitola:Verš-Kapitola:Verš - + No Bibles Available Žádné Bible k dispozici @@ -524,17 +524,6 @@ Verše, které jsou už ve službě, nejsou změnami ovlivněny. CSV File Zahajuji registraci Bible... - - - Starting Registering bible... - Zahajuji registraci Bible... - - - - Registered bible. Please note, that verses will be downloaded on -demand and thus an internet connection is required. - Bible zaregistrována. Vezm?te prosím na v?domí, že verše budou stahovány jak bude pot?eba, což vyžaduje p?ipojení k Internetu. - Bibleserver @@ -575,74 +564,75 @@ demand and thus an internet connection is required. openlp.org 1.x Bible Files Soubory s Biblemi z openlp.org 1.x + + + Registering Bible... + + + + + Registered Bible. Please note, that verses will be downloaded on +demand and thus an internet connection is required. + + BiblesPlugin.MediaItem - + Quick Rychlý - + Find: Hledat: - - Results: - Výsledky: - - - + Book: Kniha: - + Chapter: Kapitola: - + Verse: Verš: - + From: Od: - + To: Do: - + Text Search Hledání textu - - Clear - Vyprázdnit - - - - Keep - Ponechat - - - + Second: Druhý: - + Scripture Reference Odkaz do Bible + + + Toggle to keep or clear the previous results. + + BiblesPlugin.Opensong @@ -716,12 +706,12 @@ demand and thus an internet connection is required. Upravit všechny snímky najednou. - + Split Slide Rozdělit snímek - + Split a slide into two by inserting a slide splitter. Vložením oddělovače se snímek rozdělí na dva. @@ -736,12 +726,12 @@ demand and thus an internet connection is required. &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 @@ -750,49 +740,19 @@ demand and thus an internet connection is required. Ed&it All Upra&it vše + + + Split a slide into two only if it does not fit on the screen as one slide. + + + + + Insert Slide + + CustomsPlugin - - - Import a Custom - Import uživatelského - - - - Load a new Custom - Na?íst nový uživatelský - - - - Add a new Custom - P?idat nový uživatelský - - - - Edit the selected Custom - Upravit vybraný uživatelský - - - - Delete the selected Custom - Smazat vybraný uživatelský - - - - Preview the selected Custom - Náhled vybraného uživatelského - - - - Send the selected Custom live - Vybraný uživatelský snímek naživo - - - - Add the selected Custom to the service - P?idat vybraný uživatelský ke služb? - Custom @@ -811,11 +771,51 @@ demand and thus an internet connection is required. container title Uživatelský + + + Load a new Custom. + + + + + Import a Custom. + + + + + Add a new Custom. + + + + + Edit the selected Custom. + + + + + Delete the selected Custom. + + + + + Preview the selected Custom. + + + + + Send the selected Custom live. + + + + + Add the selected Custom to the service. + + GeneralTab - + General Obecné @@ -827,41 +827,6 @@ demand and thus an internet connection is required. <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. - - - 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 - Vybraný obrázek naživo - - - - Add the selected Image to the service - Přidat vybraný obrázek ke službě - Image @@ -880,11 +845,46 @@ demand and thus an internet connection is required. container title Obrázky + + + 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 Vybrat přílohu @@ -892,39 +892,39 @@ demand and thus an internet connection is required. 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. @@ -936,41 +936,6 @@ Chcete přidat ostatní obrázky? <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. - - - Load a new Media - Načíst nové médium - - - - Add a 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 - Vybrané médium naživo - - - - Add the selected Media to the service - Přidat vybrané médium ke službě - Media @@ -989,41 +954,76 @@ Chcete přidat ostatní obrázky? container title Média + + + Load a new Media. + + + + + Add a 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 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 (*) @@ -1052,34 +1052,17 @@ Chcete přidat ostatní obrázky? OpenLP.AboutForm - - OpenLP <version><revision> - Open Source Lyrics Projection - -OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if OpenOffice.org, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. - -Find out more about OpenLP: http://openlp.org/ - -OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider contributing by using the button below. - OpenLP <version><revision> - Open source prezentace textů písní - -OpenLP je zdarma dostupná prezentační aplikace pro prezentování textů písní. Aplikace se používá pro zobrazení snímků písní, veršů z Bible, videí, obrázků a dokonce i prezentací (Pokud jsou nainstalovány OpenOffice.org, PowerPoint nebo PowerPoint Viewer) přes počítač a data projektor při křesťanském uctívání. - -Více informací o OpenLP na: http://openlp.org/ - -Aplikace OpenLP napsána a udržována dobrovolníky. Pokud byste rádi viděli více křesťansky zaměřených aplikací, zvažte prosím, jestli nepřispět použitím tlačítka níže. - - - + Credits Zásluhy - + License Licence - + Contribute Přispět @@ -1089,17 +1072,17 @@ Aplikace OpenLP napsána a udržována dobrovolníky. Pokud byste rádi viděli sestavení %s - + This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. Tato aplikace je svobodný software. Lze ji libovolně šířit a upravovat v souladu s GNU General Public licencí, vydané Free Software Foundation; a to v souladu s verzí 2 této licence. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See below for more details. Tato aplikace je ší?ena v nad?ji, že bude užite?ná, avšak BEZ JAKÉKOLI ZÁRUKY; neposkytují se ani odvozené záruky PRODEJNOSTI anebo VHODNOSTI PRO UR?ITÝ Ú?EL. Další podrobnosti viz níže. - + Project Lead %s @@ -1224,17 +1207,21 @@ Finální zásluhy On nás učinil svobodnými. - - Copyright © 2004-2011 Raoul Snyman -Portions copyright © 2004-2011 Tim Bentley, Jonathan Corwin, Michael Gorven, Scott Guerrieri, -Meinert Jordan, Andreas Preikschat, Christian Richter, Philip -Ridout, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Carsten -Tinggaard, Frode Woldsund - Copyright © 2004-2011 Raoul Snyman -Částečný copyright © 2004-2011 Tim Bentley, Jonathan Corwin, Michael Gorven, Scott Guerrieri, -Meinert Jordan, Andreas Preikschat, Christian Richter, Philip -Ridout, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Carsten -Tinggaard, Frode Woldsund + + 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 contributing by using the button below. + + + + + Copyright © 2004-2011 %s +Portions copyright © 2004-2011 %s + @@ -1328,70 +1315,70 @@ Tinggaard, Frode Woldsund OpenLP.DisplayTagDialog - + Edit Selection Upravit výběr - - Update - Aktualizovat - - - + Description Popis - + Tag Značka - + Start tag Začátek značky - + End tag Konec značky - + Default Výchozí - + Tag Id Id značky - + Start HTML Začátek HTML - + End HTML Konec HTML + + + Save + + OpenLP.DisplayTagTab - + Update Error Aktualizovat chybu - + Tag "n" already defined. Značka "n" je už definovaná. - + Tag %s already defined. Značka %s je už definovaná. @@ -1431,7 +1418,7 @@ Tinggaard, Frode Woldsund Přiložit soubor - + Description characters to enter : %s Znaky popisu pro vložení : %s @@ -1487,7 +1474,7 @@ Version: %s - + *OpenLP Bug Report* Version: %s @@ -1558,7 +1545,7 @@ Version: %s OpenLP.FirstTimeWizard - + Songs Písně @@ -1573,57 +1560,57 @@ Version: %s 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. - + Custom Text Vlastní text - + 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í @@ -1643,22 +1630,17 @@ Version: %s Zapínám vybrané moduly... - - This wizard will help you to configure OpenLP for initial use. Click the next button below to start the process of selection your initial options. - Tento průvodce vám pomůže s počátečním nastavením aplikace OpenLP. Klepnutím níže na tlačítko další zahájíte výběr počátečních nastavení. - - - + No Internet Connection Žádné připojení k Internetu - + Unable to detect an Internet connection. Nezdařila se detekce internetového připojení. - + 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. To re-run the First Time Wizard and import this sample data at a later stage, press the cancel button now, check your Internet connection, and restart OpenLP. @@ -1671,185 +1653,190 @@ Pro pozdější opětovné spuštění Průvodce prvním spuštění a importu u Pro úplné zrušení Průvodce prvním spuštění klepněte nyní na tlačítko Dokončit. - + 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. - + Setting Up And Importing Nastavuji a importuji - + Please wait while OpenLP is set up and your data is imported. Čekejte prosím, než aplikace OpenLP nastaví a importuje vaše data. - + 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. + + 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ě - + Slide loop delay: Zpoždění smyčky snímku: - + sec sek - + CCLI Details CCLI podrobnosti - + SongSelect username: SongSelect uživatelské jméno: - + SongSelect password: SongSelect heslo: - + Display Position Umístění zobrazení - + X X - + Y Y - + Height Výška - + Width Šířka - + Override display position Překrýt umístění zobrazení - + 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 @@ -1870,7 +1857,7 @@ Pro úplné zrušení Průvodce prvním spuštění klepněte nyní na tlačítk OpenLP.MainDisplay - + OpenLP Display Zobrazení OpenLP @@ -1878,282 +1865,282 @@ Pro úplné zrušení Průvodce prvním spuštění klepněte nyní na tlačítk 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. @@ -2172,17 +2159,17 @@ Nejnovější verzi lze stáhnout z http://openlp.org/. 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 @@ -2193,45 +2180,60 @@ Nejnovější verzi lze stáhnout z http://openlp.org/. Angličtina - + Configure &Shortcuts... Nastavit &Zkratky - + Close OpenLP Zavřít OpenLP - + Are you sure you want to close OpenLP? Chcete opravdu zavřít aplikaci OpenLP? - + Print the current Service Order. Tisk současného Pořadí Služby. - + &Configure Display Tags &Nastavit značky zobrazení - + 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 + + + + + Update the preview images for all themes. + + + + + F1 + + OpenLP.MediaManagerItem @@ -2241,46 +2243,56 @@ Nejnovější verzi lze stáhnout z http://openlp.org/. 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. - + Duplicate file name %s. Filename already exists in list + + + You must select one or more items to add. + + + + + No Search Results + + OpenLP.PluginForm @@ -2402,19 +2414,19 @@ Filename already exists in list - Add page break before each text item. - Přidat zalomení stránky před každou textovou položkou. + Add page break before each text item + OpenLP.ScreenList - + Screen Obrazovka - + primary Primární @@ -2430,224 +2442,209 @@ Filename already exists in list OpenLP.ServiceManager - - 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 služby - - - + Move to &top Přesun &nahoru - + Move item to the top of the service. Přesun položky ve službě úplně nahoru. - + Move &up Přesun &výše - + Move item up one position in the service. Přesun položky ve službě o jednu pozici výše. - + Move &down P?esun &níže - + Move item down one position in the service. P?esun položky ve služb? o jednu pozici níže. - + Move to &bottom Přesun &dolu - + Move item to the end of the service. Přesun položky ve službě úplně dolů. - + &Delete From Service &Smazat ze služby - + Delete the selected item from the service. Smazat vybranou položku ze služby. - + &Add New Item &Přidat novou položku - + &Add to Selected Item &Přidat k vybrané položce - + &Edit Item &Upravit položku - + &Reorder Item &Změnit pořadí položky - + &Notes &Poznámky - + &Change Item Theme &Změnit motiv položky - + OpenLP Service Files (*.osz) Soubory služby OpenLP (*.osz) - + File is not a valid service. The content encoding is not UTF-8. Soubor není platná služba. Obsah souboru není v kódování UTF-8. - + File is not a valid service. Soubor není platná služba. - + Missing Display Handler Chybějící obsluha zobrazení - + Your item cannot be displayed as there is no handler to display it Položku není možno zobrazit, protože chybí obsluha pro její zobrazení - + Your item cannot be displayed as the plugin required to display it is missing or inactive Položku není možno zobrazit, protože modul potřebný pro zobrazení položky chybí nebo je neaktivní - + &Expand all &Rozvinou vše - + Expand all the service items. Rozvinout všechny položky služby. - + &Collapse all &Svinout vše - + Collapse all the service items. Svinout všechny položky služby. - + Open File Otevřít soubor - + Moves the selection down the window. Přesune výběr v rámci okna dolu. - + Move up Přesun nahoru - + Moves the selection up the window. Přesune výběr v rámci okna nahoru. - + Go Live Zobrazit naživo - + Send the selected item to Live. Zobrazí vybranou položku naživo. - + &Start Time &Spustit čas - + Show &Preview Zobrazit &náhled - + Show &Live Zobrazit n&aživo - + Modified Service Změněná služba - + The current service has been modified. Would you like to save this service? Současná služba byla změněna. Přejete si službu uložit? - + File could not be opened because it is corrupt. Soubor se nepodařilo otevřít, protože je poškozený. - + Empty File Prázdný soubor - + This service file does not contain any data. Tento soubor služby neobsahuje žádná data. - + Corrupt File Poškozený soubor @@ -2667,15 +2664,30 @@ Obsah souboru není v kódování UTF-8. - + Untitled Service - + This file is either corrupt or not an OpenLP 2.0 service file. + + + Load an existing service. + + + + + Save this service. + + + + + Select a theme for the service. + + OpenLP.ServiceNoteForm @@ -2764,100 +2776,105 @@ Obsah souboru není v kódování UTF-8. OpenLP.SlideController - + Move to previous Přesun na předchozí - + Move to next Přesun na následující - + Hide Skrýt - + Move to live Přesun naživo - + Edit and reload song preview Upravit a znovu načíst náhled písně - + Start continuous loop Spustit souvislou smyčku - + Stop continuous loop Zastavit souvislou smyčku - + Delay between slides in seconds Zpoždění mezi snímky v sekundách - + Start playing media Spustit přehrávání média - + Go To Přejít na - + Blank Screen Prázdná obrazovka - + Blank to Theme Prázdný motiv - + Show Desktop Zobrazit plochu - + Previous Slide Předchozí snímek - + Next Slide Následující snímek - + Previous Service Předchozí služba - + Next Service Následující služba - + Escape Item Zrušit položku - + Start/Stop continuous loop + + + Add to Service + + OpenLP.SpellTextEdit @@ -3026,69 +3043,69 @@ Obsah souboru není v kódování UTF-8. 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. The content encoding is not UTF-8. Soubor není platný motiv. Obsah souboru není v kódování UTF-8. - + File is not a valid theme. Soubor není platný motiv. @@ -3108,47 +3125,47 @@ Obsah souboru není v kódování UTF-8. &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) @@ -3725,7 +3742,7 @@ Obsah souboru není v kódování UTF-8. Přesun výběru o jednu pozici níže. - + &Vertical Align: &Svislé zarovnání: @@ -3780,7 +3797,7 @@ Obsah souboru není v kódování UTF-8. Připraven. - + Starting import... Spouštím import... @@ -3929,11 +3946,6 @@ Obsah souboru není v kódování UTF-8. View Zobrazit - - - View Model - Model zobrazení - Duplicate Error @@ -3954,11 +3966,16 @@ Obsah souboru není v kódování UTF-8. XML syntax error + + + View Mode + + OpenLP.displayTagDialog - + Configure Display Tags Nastavit značky zobrazení @@ -3970,31 +3987,6 @@ Obsah souboru není v kódování UTF-8. <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. <strong>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. - - - 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 - Vybranou prezentaci naživo - - - - Add the selected Presentation to the service - Přidat vybranou prezentaci ke službě - Presentation @@ -4013,56 +4005,81 @@ Obsah souboru není v kódování UTF-8. container title Prezentace + + + 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) Vybrat prezentace - + Automatic Automaticky - + Present using: Nyní používající: - + File Exists Soubor existuje - + A presentation with that filename already exists. Prezentace s tímto názvem souboru už existuje. - + This type of presentation is not supported. Tento typ prezentace není podporován. - + Presentations (%s) Prezentace (%s) - + Missing Presentation Chybějící prezentace - + The Presentation %s no longer exists. Prezentace %s už neexistuje. - + The Presentation %s is incomplete, please reload. Prezentace %s není kompletní, prosím načtěte ji znovu. @@ -4114,20 +4131,30 @@ Obsah souboru není v kódování UTF-8. RemotePlugin.RemoteTab - + Serve on IP address: Poslouchat na IP adresse: - + Port number: Číslo portu: - + Server Settings Nastavení serveru + + + Remote URL: + + + + + Stage view URL: + + SongUsagePlugin @@ -4312,36 +4339,6 @@ bylo úspěšně vytvořeno. Reindexing songs... Přeindexovávám písně... - - - 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 - Poslat vybraná píseň naživo - - - - Add the selected Song to the service - Přidat vybranou píseň ke službě - Arabic (CP-1256) @@ -4456,6 +4453,36 @@ Kódování zodpovídá za správnou reprezentaci znaků. Exports songs using the export wizard. Exportuje písně průvodcem exportu. + + + 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. + + SongsPlugin.AuthorsForm @@ -4689,7 +4716,7 @@ Kódování zodpovídá za správnou reprezentaci znaků. Pro tuto píseň je potřeba zadat autora. - + You need to type some text in to the verse. Ke sloce je potřeba zadat nějaký text. @@ -4697,20 +4724,35 @@ Kódování zodpovídá za správnou reprezentaci znaků. SongsPlugin.EditVerseForm - + Edit Verse Upravit sloku - + &Verse type: &Typ sloky: - + &Insert &Vložit + + + &Split + + + + + Split a slide into two only if it does not fit on the screen as one slide. + + + + + Split a slide into two by inserting a verse splitter. + + SongsPlugin.ExportWizardForm @@ -4749,11 +4791,6 @@ Kódování zodpovídá za správnou reprezentaci znaků. Select Directory Vybrat adresář - - - Select the directory you want the songs to be saved. - Vyberte adresář, kam chcete uložit písně. - Directory: @@ -4794,6 +4831,11 @@ Kódování zodpovídá za správnou reprezentaci znaků. Select Destination Folder Vybrat cílovou složku + + + Select the directory where you want the songs to be saved. + + SongsPlugin.ImportWizardForm @@ -4906,37 +4948,32 @@ Kódování zodpovídá za správnou reprezentaci znaků. SongsPlugin.MediaItem - - Maintain the lists of authors, topics and books - Udržovat seznam autorů, témat a zpěvníků - - - + Titles Názvy - + Lyrics Text písně - + Delete Song(s)? Smazat písně? - + CCLI License: CCLI Licence: - + Entire Song Celá píseň - + Are you sure you want to delete the %n selected song(s)? Jste si jisti, že chcete smazat %n vybraných písní? @@ -4944,6 +4981,11 @@ Kódování zodpovídá za správnou reprezentaci znaků. + + + Maintain the lists of authors, topics and books. + + SongsPlugin.OpenLP1SongImport diff --git a/resources/i18n/de.ts b/resources/i18n/de.ts index 951efab03..d09c464b4 100644 --- a/resources/i18n/de.ts +++ b/resources/i18n/de.ts @@ -178,28 +178,28 @@ Möchten Sie trotzdem fortfahren? Importing verses... done. - Importiere Verse... Fertig + Importiere Verse... Fertig. BiblePlugin.HTTPBible - + Download Error Download Fehler - + Parse Error Formatfehler - + There was a problem downloading your verse selection. Please check your Internet connection, and if this error continues to occur please consider reporting a bug. Beim Herunterladen des Bibeltextes ist ein Fehler aufgetreten. Bitte überprüfen Sie Ihre Internetverbindung. Sollte dieser Fehler dennoch auftreten, so wenden Sie sich bitte an den OpenLP Support. - + There was a problem extracting your verse selection. If this error continues to occur please consider reporting a bug. Beim Auslesen des Bibeltextes ist ein Fehler aufgetreten. Sollte dieser Fehler wiederholt auftreten, so wenden Sie sich bitte an den OpenLP Support. @@ -207,12 +207,12 @@ Möchten Sie trotzdem fortfahren? BiblePlugin.MediaItem - + Bible not fully loaded. Bibel wurde nicht vollständig geladen - + 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? @@ -224,16 +224,6 @@ Möchten Sie trotzdem fortfahren? &Bible &Bibel - - - <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. - - - - Import a Bible - Neue Bibel importieren - Bible @@ -253,77 +243,87 @@ Möchten Sie trotzdem fortfahren? 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 + Add a new Bible. + Füge eine neue Bibel hinzu. - Edit the selected Bible - Bearbeite die ausgewählte Bibel + Edit the selected Bible. + Bearbeite die ausgewählte Bibel. - Delete the selected Bible - Lösche 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 + Preview the selected Bible. + Zeige die ausgewählte Bibelverse in der Vorschau. - Add the selected Bible to the service - Füge die ausgewählten Bibelverse zum Ablauf hinzu + Send the selected Bible live. + Zeige die ausgewählte Bibelverse Live. + + + + 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. + 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. - + Your scripture reference is either not supported by OpenLP or is invalid. Please make sure your reference conforms to one of the following patterns: Book Chapter @@ -342,7 +342,7 @@ Buch Kapitel:Verse-Verse,Kapitel:Verse-Verse Buch Kapitel:Verse-Kapitel:Verse - + No Bibles Available Keine Bibeln verfügbar @@ -519,19 +519,6 @@ Changes do not affect verses already in the service. 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. - - - Starting Registering bible... - Starte Erfassung der Bibel... - - - - Registered bible. Please note, that verses will be downloaded on -demand and thus an internet connection is required. - Erfassung abgeschlossen. -Bitte beachten Sie, dass Bibeltexte bei Bedarf heruntergeladen werden. -Daher ist eine Verbindung zum Internet erforderlich. - Permissions: @@ -577,74 +564,75 @@ Daher ist eine Verbindung zum Internet erforderlich. openlp.org 1.x Bible Files openlp.org 1.x Bibel-Dateien + + + Registering Bible... + + + + + Registered Bible. Please note, that verses will be downloaded on +demand and thus an internet connection is required. + + BiblesPlugin.MediaItem - + Quick Schnellsuche - + Find: Suchen: - - Results: - Ergebnisse: - - - + Book: Buch: - + Chapter: Kapitel: - + Verse: Vers: - + From: Von: - + To: Bis: - + Text Search Textsuche - - Clear - ersetzen - - - - Keep - ergänzen - - - + Second: Vergleichstext: - + Scripture Reference Bibelstelle + + + Toggle to keep or clear the previous results. + Vorheriges Suchergebnis behalten oder verwerfen. + BiblesPlugin.Opensong @@ -703,7 +691,7 @@ Daher ist eine Verbindung zum Internet erforderlich. &Titel: - + Split Slide Folie teilen @@ -720,30 +708,30 @@ Daher ist eine Verbindung zum Internet erforderlich. Add a new slide at bottom. - Neue Folie am Ende einfügen + Füge eine neue Folie am Ende ein. Edit the selected slide. - Ausgewählte Folie bearbeiten + Bearbeite ausgewählte Folie. Edit all the slides at once. - Alle Folien bearbeiten + Bearbeite alle Folien. - + Split a slide into two by inserting a slide splitter. - Einen Folienumbruch einfügen + Füge einen Folienumbruch ein. - + 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. @@ -752,14 +740,19 @@ Daher ist eine Verbindung zum Internet erforderlich. Ed&it All &Alle bearbeiten + + + Split a slide into two only if it does not fit on the screen as one slide. + Teile ein Folie, wenn sie als Ganzes nicht auf den Bildschirm passt. + + + + Insert Slide + Folie einfügen + CustomsPlugin - - - Import a Custom - Sonderfolien importieren - Custom @@ -780,44 +773,49 @@ Daher ist eine Verbindung zum Internet erforderlich. - Load a new Custom - Eine neue Sonderfolie laden + Load a new Custom. + Eine neue Sonderfolie laden. + + + + Import a Custom. + Importieren eine Sonderfolie. - Add a new Custom - Erstelle eine neue Sonderfolie + Add a new Custom. + Erstelle eine neue Sonderfolie. - Edit the selected Custom - Bearbeite die ausgewählte Sonderfolie + Edit the selected Custom. + Bearbeite die ausgewählte Sonderfolie. - Delete the selected Custom - Lösche die ausgewählte Sonderfolie + Delete the selected Custom. + Lösche die ausgewählte Sonderfolie. - - Preview the selected Custom - Zeige die ausgewählte Sonderfolie in der Vorschau + + Preview the selected Custom. + Zeige die ausgewählte Sonderfolie in der Vorschau. - - Send the selected Custom live - Zeige die ausgewählte Sonderfolie Live + + Send the selected Custom live. + Zeige die ausgewählte Sonderfolie Live. - - Add the selected Custom to the service - Füge die ausgewählte Sonderfolie zum Ablauf hinzu + + Add the selected Custom to the service. + Füge die ausgewählte Sonderfolie zum Ablauf hinzu. GeneralTab - + General Allgemein @@ -849,44 +847,44 @@ Daher ist eine Verbindung zum Internet erforderlich. - Load a new Image - Lade ein neues Bild + Load a new Image. + Lade ein neues Bild. - Add a new Image - Füge eine neues Bild hinzu + Add a new Image. + Füge eine neues Bild hinzu. - Edit the selected Image - Bearbeite das ausgewählte Bild + Edit the selected Image. + Bearbeite das ausgewählte Bild. - Delete the selected Image - Lösche da 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 + Preview the selected Image. + Zeige das ausgewählte Bild in der Vorschau. - Send the selected Image live - Zeige die ausgewählte Bild Live + 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 + Add the selected Image to the service. + Füge das ausgewählte Bild zum Ablauf hinzu. ImagePlugin.ExceptionDialog - + Select Attachment Anhang auswählen @@ -894,39 +892,39 @@ Daher ist eine Verbindung zum Internet erforderlich. 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. @@ -958,74 +956,74 @@ Wollen Sie die anderen Bilder trotzdem hinzufügen? - Load a new Media - Lade eine neue Audio-/Videodatei + Load a new Media. + Lade eine neue Audio-/Videodatei. - Add a new Media - Füge eine neue Audio-/Videodatei hinzu + Add a new Media. + Füge eine neue Audio-/Videodatei hinzu. - Edit the selected Media - Bearbeite die ausgewählte Audio-/Videodatei + Edit the selected Media. + Bearbeite die ausgewählte Audio-/Videodatei. - Delete the selected Media - Lösche 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 + 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 + 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 + Add the selected Media to the service. + Füge die ausgewählte Audio-/Videodatei zum Ablauf hinzu. 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. - + Missing Media File Fehlende Audio-/Videodatei - + The file %s no longer exists. Die Audio-/Videodatei »%s« existiert nicht mehr. - + 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. - + Videos (%s);;Audio (%s);;%s (*) Video (%s);;Audio (%s);;%s (*) @@ -1054,34 +1052,17 @@ Wollen Sie die anderen Bilder trotzdem hinzufügen? OpenLP.AboutForm - - OpenLP <version><revision> - Open Source Lyrics Projection - -OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if OpenOffice.org, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. - -Find out more about OpenLP: http://openlp.org/ - -OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider contributing by using the button below. - OpenLP <version><revision>-Open Source Lyrics Projection - -OpenLP ist eine freie Kirchen- oder Liedtext-Präsentationssoftware, mit der Liedtexte, Bibeltexte, Videos, Bilder sowie auch PowerPoint bzw. Impress Präsentationen (falls diese Programme installiert sind) von einem Computer aus auf einem Beamer angezeigt werden können. - -Erkunden Sie OpenLP: http://openlp.org/ - -OpenLP wird von freiwilligen Helfern programmiert und gewartet. Wenn Sie sich mehr freie christliche Programme wünschen, ermutigen wir Sie, sich doch sich zu beteiligen und den Knopf weiter unten nutzen. - - - + Credits Danksagungen - + License Lizenz - + Contribute Mitmachen @@ -1091,17 +1072,17 @@ OpenLP wird von freiwilligen Helfern programmiert und gewartet. Wenn Sie sich me build %s - + This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See below for more details. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See below for more details. - + Project Lead %s @@ -1229,17 +1210,21 @@ Danke Halleluja! - - Copyright © 2004-2011 Raoul Snyman -Portions copyright © 2004-2011 Tim Bentley, Jonathan Corwin, Michael Gorven, Scott Guerrieri, -Meinert Jordan, Andreas Preikschat, Christian Richter, Philip -Ridout, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Carsten -Tinggaard, Frode Woldsund - Copyright © 2004-2011 Raoul Snyman -Anteiliges Copyright © 2004-2011 Tim Bentley, Jonathan Corwin, Michael Gorven, Scott Guerrieri, -Meinert Jordan, Andreas Preikschat, Christian Richter, Philip -Ridout, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Carsten -Tinggaard, Frode Woldsund + + 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 contributing by using the button below. + + + + + Copyright © 2004-2011 %s +Portions copyright © 2004-2011 %s + @@ -1252,12 +1237,12 @@ Tinggaard, Frode Woldsund Number of recent files to display: - Anzahl der zuletzt geöffneter Abläufe: + Anzahl zuletzt geöffneter Abläufe: Remember active media manager tab on startup - Aktiven Reiter der Medienverwaltung speichern + Erinnere aktiven Reiter der Medienverwaltung @@ -1282,7 +1267,7 @@ Tinggaard, Frode Woldsund Hide mouse cursor when over display window - Verstecke den Mauszeiger auf dem Hauptbildschirm + Verstecke den Mauszeiger auf dem Bildschrim @@ -1318,86 +1303,86 @@ 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. OpenLP.DisplayTagDialog - + Edit Selection Auswahl bearbeiten - - Update - Aktualisieren - - - + Description Beschreibung - + Tag Tag - + Start tag Anfangs Tag - + End tag End Tag - + Default Standard - + Tag Id Tag Nr. - + Start HTML Anfangs HTML - + End HTML End HTML + + + Save + Speichern + OpenLP.DisplayTagTab - + Update Error Aktualisierungsfehler - + Tag "n" already defined. Tag »n« bereits definiert. - + Tag %s already defined. Tag »%s« bereits definiert. @@ -1438,7 +1423,7 @@ dieser Fehler auftrat. Bitte verwenden Sie (wenn möglich) Englisch.Datei einhängen - + Description characters to enter : %s Mindestens noch %s Zeichen eingeben @@ -1494,7 +1479,7 @@ Version: %s - + *OpenLP Bug Report* Version: %s @@ -1572,7 +1557,7 @@ Version: %s Download complete. Click the finish button to start OpenLP. - Download vollständig. Klicken Sie »Fertig« um OpenLP zu starten. + Download vollständig. Klicken Sie »Abschließen« um OpenLP zu starten. @@ -1590,77 +1575,72 @@ Version: %s Herzlich willkommen zum Einrichtungsassistent - - This wizard will help you to configure OpenLP for initial use. Click the next button below to start the process of selection your initial options. - Dieser Assistent wird Ihnen helfen OpenLP für die erste Benutzung zu konfigurieren. Klicken sie »Weiter« um den Assistenten zu starten. - - - + Activate required Plugins Erweiterungen aktivieren - + Select the Plugins you wish to use. Wählen Sie die Erweiterungen aus, die Sie nutzen wollen. - + Songs Lieder - + Custom Text Sonderfolien - + Bible Bibel - + Images Bilder - + Presentations Präsentationen - + Media (Audio and Video) Medien (Audio und Video) - + Allow remote access Erlaube Fernsteuerung - + Monitor Song Usage Lieder Benutzung Protokollierung - + Allow Alerts Erlaube Hinweise - + No Internet Connection Keine Internetverbindung - + Unable to detect an Internet connection. Es könnte keine Internetverbindung aufgebaut werden. - + 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. To re-run the First Time Wizard and import this sample data at a later stage, press the cancel button now, check your Internet connection, and restart OpenLP. @@ -1670,193 +1650,198 @@ To cancel the First Time Wizard completely, press the finish button now. +Um den Einrichtungsassistent nicht auszuführen, drücken Sie »Abschließen«. - + 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. - + Default Settings Standardeinstellungen - + Set up default settings to be used by OpenLP. Grundeinstellungen konfigurieren... - + Setting Up And Importing Konfiguriere und importiere - + Please wait while OpenLP is set up and your data is imported. Bitte warten Sie, während OpenLP eingerichtet wird. - + 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. + + 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 - + Slide loop delay: Schleifenverzögerung: - + sec sek - + CCLI Details CCLI-Details - + SongSelect username: SongSelect-Benutzername: - + SongSelect password: SongSelect-Passwort: - + Display Position Anzeigeposition - + X X - + Y Y - + Height Höhe - + Width Breite - + Override display position Anzeigeposition überschreiben - + Check for updates to OpenLP Prüfe nach Aktualisierungen - + Unblank display when adding new live item Neues Element hellt Anzeige automatisch auf @@ -1877,7 +1862,7 @@ Um den Einrichtungsassistent nicht auszuführen, drücken Sie »Fertig«. OpenLP.MainDisplay - + OpenLP Display OpenLP-Anzeige @@ -1885,282 +1870,282 @@ Um den Einrichtungsassistent nicht auszuführen, drücken Sie »Fertig«. 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. @@ -2170,17 +2155,17 @@ Um den Einrichtungsassistent nicht auszuführen, drücken Sie »Fertig«.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 @@ -2200,45 +2185,60 @@ Sie können die letzte Version auf http://openlp.org abrufen. Deutsch - + Configure &Shortcuts... &Tastenkürzel einrichten... - + Close OpenLP OpenLP beenden - + Are you sure you want to close OpenLP? Sind Sie sicher, dass OpenLP beendet werden soll? - + Print the current Service Order. Drucke den aktuellen Ablauf. - + 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. - + &Configure Display Tags &Formatvorlagen - + &Autodetect &Automatisch + + + Update Theme Images + Aktualisiere Design Bilder + + + + Update the preview images for all themes. + Aktualisiert die Vorschaubilder aller Designs. + + + + F1 + + OpenLP.MediaManagerItem @@ -2248,44 +2248,55 @@ Sie können die letzte Version auf http://openlp.org abrufen. 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. - + Duplicate file name %s. Filename already exists in list + Doppelter Dateiname %s. +Dateiname existiert bereits in der Liste. + + + + No Search Results + Kein Suchergebnis + + + + You must select one or more items to add. @@ -2409,19 +2420,19 @@ Filename already exists in list - Add page break before each text item. + Add page break before each text item Einen Seitenumbruch nach jedem Text-Element einfügen OpenLP.ScreenList - + Screen Bildschirm - + primary Primär @@ -2437,252 +2448,252 @@ Filename already exists in list OpenLP.ServiceManager - - 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 - - - + Move to &top Zum &Anfang schieben - + Move item to the top of the service. Das ausgewählte Element an den Anfang des Ablaufs verschieben. - + Move &up Nach &oben schieben - + Move item up one position in the service. Das ausgewählte Element um eine Position im Ablauf nach oben verschieben. - + Move &down Nach &unten schieben - + Move item down one position in the service. Das ausgewählte Element um eine Position im Ablauf nach unten verschieben. - + Move to &bottom Zum &Ende schieben - + Move item to the end of the service. Das ausgewählte Element an das Ende des Ablaufs verschieben. - + &Delete From Service Vom Ablauf &löschen - + Delete the selected item from the service. Das ausgewählte Element aus dem Ablaufs entfernen. - + &Add New Item &Neues Element hinzufügen - + &Add to Selected Item &Zum gewählten Element hinzufügen - + &Edit Item Element &bearbeiten - + &Reorder Item &Aufnahmeelement - + &Notes &Notizen - + &Change Item Theme &Design des Elements ändern - + File is not a valid service. The content encoding is not UTF-8. Die gewählte Datei ist keine gültige OpenLP Ablaufdatei. Der Inhalt ist nicht in UTF-8 kodiert. - + File is not a valid service. Die Datei ist keine gültige OpenLP Ablaufdatei. - + Missing Display Handler Fehlende Anzeigesteuerung - + Your item cannot be displayed as there is no handler to display it Dieses Element kann nicht angezeigt werden, da es keine Steuerung dafür gibt. - + Your item cannot be displayed as the plugin required to display it is missing or inactive Dieses Element kann nicht angezeigt werden, da die zugehörige Erweiterung fehlt oder inaktiv ist. - + &Expand all Alle au&sklappen - + Expand all the service items. Alle Ablaufelemente ausklappen. - + &Collapse all Alle ei&nklappen - + Collapse all the service items. Alle Ablaufelemente einklappen. - + Open File Ablauf öffnen - + OpenLP Service Files (*.osz) OpenLP Ablaufdateien (*.osz) - + Moves the selection up the window. Ausgewähltes nach oben schieben - + Move up Nach oben - + Go Live Live - + Send the selected item to Live. Zeige das ausgewählte Element Live. - + Moves the selection down the window. Ausgewähltes nach unten schieben - + Modified Service Modifizierter Ablauf - + The current service has been modified. Would you like to save this service? Der momentane Ablauf wurde modifiziert. Möchten Sie ihn speichern? - + &Start Time &Startzeit - + Show &Preview &Vorschau - + Show &Live &Live - + File could not be opened because it is corrupt. Datei konnte nicht geöffnet werden, da sie fehlerhaft ist. - + Empty File Leere Datei - + This service file does not contain any data. Diese Datei enthält keine Daten. - + Corrupt File Dehlerhaft Datei - + Untitled Service Unbenannt - + This file is either corrupt or not an OpenLP 2.0 service file. Entweder ist die Datei fehlerhaft oder sie ist keine OpenLP 2.0 Ablauf-Datei. Custom Service Notes: - Notizen zum Ablauf: + Notizen zum Ablauf: Notes: - Notizen: + Notizen: Playing time: Spiellänge: + + + Load an existing service. + Einen bestehenden Ablauf öffnen. + + + + Save this service. + Den aktuellen Ablauf speichern. + + + + Select a theme for the service. + Design für den Ablauf auswählen. + OpenLP.ServiceNoteForm @@ -2771,100 +2782,105 @@ Der Inhalt ist nicht in UTF-8 kodiert. OpenLP.SlideController - + Move to previous Vorherige Folie anzeigen - + Move to next Nächste Folie anzeigen - + Hide Verbergen - + Move to live Zur Live Ansicht verschieben - + Start continuous loop Endlosschleife starten - + Stop continuous loop Endlosschleife stoppen - + Delay between slides in seconds Pause zwischen den Folien in Sekunden - + Start playing media Abspielen - + Go To Gehe zu - + Edit and reload song preview Bearbeiten und Vorschau aktualisieren - + Blank Screen Anzeige abdunkeln - + Blank to Theme Design leeren - + Show Desktop Desktop anzeigen - + Previous Slide Vorherige Folie - + Next Slide Nächste Folie - + Previous Service Vorheriges Element - + Next Service Nächstes Element - + Escape Item Folie schließen - + Start/Stop continuous loop Starte/Stoppe Endlosschleife + + + Add to Service + Füge zum Ablauf hinzu. + OpenLP.SpellTextEdit @@ -2904,7 +2920,7 @@ Der Inhalt ist nicht in UTF-8 kodiert. Item Start and Finish Time - + Element Start- und Endzeit @@ -2914,7 +2930,7 @@ Der Inhalt ist nicht in UTF-8 kodiert. Finish - + Ende @@ -2924,7 +2940,7 @@ Der Inhalt ist nicht in UTF-8 kodiert. Time Validation Error - + Ungültige Zeitangaben @@ -3008,69 +3024,69 @@ Der Inhalt ist nicht in UTF-8 kodiert. 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. - + 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. The content encoding is not UTF-8. Die Datei ist keine gültige OpenLP Designdatei. Sie ist nicht in UTF-8 kodiert. - + File is not a valid theme. Diese Datei ist keine gültige OpenLP Designdatei. - + Theme %s is used in the %s plugin. Das Design »%s« wird in der »%s« Erweiterung benutzt. @@ -3090,42 +3106,42 @@ Sie ist nicht in UTF-8 kodiert. 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. @@ -3155,7 +3171,7 @@ Sie ist nicht in UTF-8 kodiert. Exportiere Design - + OpenLP Themes (*.theme *.otz) OpenLP Designs (*.theme *.otz) @@ -3549,7 +3565,7 @@ Sie ist nicht in UTF-8 kodiert. Ablauf - + &Vertical Align: &Vertikale Ausrichtung: @@ -3571,7 +3587,7 @@ Sie ist nicht in UTF-8 kodiert. Create a new service. - Erstelle neuen Ablauf + Erstelle neuen Ablauf. @@ -3787,7 +3803,7 @@ Sie ist nicht in UTF-8 kodiert. Fertig. - + Starting import... Beginne Import... @@ -3936,11 +3952,6 @@ Sie ist nicht in UTF-8 kodiert. View Ansicht - - - View Model - Ansichtsmodus - Duplicate Error @@ -3961,11 +3972,16 @@ Sie ist nicht in UTF-8 kodiert. XML syntax error XML Syntax Fehler + + + View Mode + Ansichtsmodus + OpenLP.displayTagDialog - + Configure Display Tags Konfiguriere Formatvorlagen @@ -3997,79 +4013,79 @@ Sie ist nicht in UTF-8 kodiert. - Load a new Presentation - Lade eine neue Präsentation + Load a new Presentation. + Lade eine neue Präsentation. - - Delete the selected Presentation - Lösche die ausgewählte 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 + + 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 + + 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 + + Add the selected Presentation to the service. + Füge die ausgewählte Präsentation zum Ablauf hinzu. PresentationPlugin.MediaItem - + Select Presentation(s) Präsentationen auswählen - + Automatic automatisch - + Present using: Anzeigen mit: - + A presentation with that filename already exists. Eine Präsentation mit diesem Dateinamen existiert bereits. - + File Exists Datei existiert - + This type of presentation is not supported. Präsentationsdateien dieses Dateiformats werden nicht unterstützt. - + Presentations (%s) Präsentationen (%s) - + Missing Presentation Fehlende Präsentation - + The Presentation %s no longer exists. Die Präsentation »%s« existiert nicht mehr. - + The Presentation %s is incomplete, please reload. Die Präsentation »%s« ist nicht vollständig, bitte neu laden. @@ -4121,20 +4137,30 @@ Sie ist nicht in UTF-8 kodiert. RemotePlugin.RemoteTab - + Serve on IP address: Verfügbar über IP-Adresse: - + Port number: Port-Nummer: - + Server Settings Server-Einstellungen + + + Remote URL: + Fernsteuerung: + + + + Stage view URL: + Bühnenmonitor: + SongUsagePlugin @@ -4436,33 +4462,33 @@ Einstellung korrekt. - Add a new Song - Erstelle eine neues Lied + Add a new Song. + Erstelle eine neues Lied. - Edit the selected Song - Bearbeite das ausgewählte Lied + Edit the selected Song. + Bearbeite das ausgewählte Lied. - Delete the selected Song - Lösche 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 + Preview the selected Song. + Zeige das ausgewählte Lied in der Vorschau. - Send the selected Song live - Zeige das ausgewählte Lied Live + 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 + Add the selected Song to the service. + Füge das ausgewählte Lied zum Ablauf hinzu. @@ -4697,7 +4723,7 @@ Einstellung korrekt. Das Lied benötigt mindestens einen Autor. - + You need to type some text in to the verse. Das Lied benötigt mindestens einen Vers. @@ -4705,20 +4731,35 @@ Einstellung korrekt. SongsPlugin.EditVerseForm - + Edit Verse Vers bearbeiten - + &Verse type: &Verstyp: - + &Insert &Einfügen + + + &Split + + + + + Split a slide into two only if it does not fit on the screen as one slide. + Teile ein Folie, wenn sie als Ganzes nicht auf den Bildschirm passt. + + + + Split a slide into two by inserting a verse splitter. + + SongsPlugin.ExportWizardForm @@ -4752,11 +4793,6 @@ Einstellung korrekt. Select Directory Zielverzeichnis auswählen - - - Select the directory you want the songs to be saved. - Geben Sie das Zielverzeichnis an. - Directory: @@ -4802,6 +4838,11 @@ Einstellung korrekt. Select Destination Folder Zielverzeichnis wählen + + + Select the directory where you want the songs to be saved. + + SongsPlugin.ImportWizardForm @@ -4914,43 +4955,43 @@ Einstellung korrekt. SongsPlugin.MediaItem - - Maintain the lists of authors, topics and books - Autoren, Themen und Bücher verwalten - - - + Titles Titel - + Lyrics Liedtext - + Delete Song(s)? Lied(er) löschen? - + CCLI License: CCLI-Lizenz: - + Entire Song Ganzes Lied - + Are you sure you want to delete the %n selected song(s)? Sind Sie sicher, dass die %n Lieder gelöscht werden sollen? + + + Maintain the lists of authors, topics and books. + Autoren, Themen und Bücher verwalten. + SongsPlugin.OpenLP1SongImport diff --git a/resources/i18n/en.ts b/resources/i18n/en.ts index 114d673b9..0f1acb294 100644 --- a/resources/i18n/en.ts +++ b/resources/i18n/en.ts @@ -182,22 +182,22 @@ Do you want to continue anyway? BiblePlugin.HTTPBible - + 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. @@ -205,12 +205,12 @@ Do you want to continue anyway? BiblePlugin.MediaItem - + Bible not fully loaded. - + You cannot combine single and dual Bible verse search results. Do you want to delete your search results and start a new search? @@ -222,46 +222,6 @@ Do you want to continue anyway? &Bible - - - <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display bible verses from different sources during the service. - - - - - 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 - - Bible @@ -281,46 +241,86 @@ Do you want to continue anyway? - + 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. + + 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. - + Your scripture reference is either not supported by OpenLP or is invalid. Please make sure your reference conforms to one of the following patterns: Book Chapter @@ -332,7 +332,7 @@ Book Chapter:Verse-Chapter:Verse - + No Bibles Available @@ -513,17 +513,6 @@ Changes do not affect verses already in the service. CSV File - - - Starting Registering bible... - - - - - Registered bible. Please note, that verses will be downloaded on -demand and thus an internet connection is required. - - Bibleserver @@ -564,74 +553,75 @@ demand and thus an internet connection is required. 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.MediaItem - + Quick - + Find: - - Results: - - - - + Book: - + Chapter: - + Verse: - + From: - + To: - + Text Search - - Clear - - - - - Keep - - - - + Second: - + Scripture Reference + + + Toggle to keep or clear the previous results. + + BiblesPlugin.Opensong @@ -705,12 +695,12 @@ demand and thus an internet connection is required. - + Split Slide - + Split a slide into two by inserting a slide splitter. @@ -725,12 +715,12 @@ demand and thus an internet connection is required. - + You need to type in a title. - + You need to add at least one slide @@ -739,49 +729,19 @@ demand and thus an internet connection is required. Ed&it All + + + Split a slide into two only if it does not fit on the screen as one slide. + + + + + Insert Slide + + CustomsPlugin - - - Import a Custom - - - - - Load a new Custom - - - - - Add a new Custom - - - - - Edit the selected Custom - - - - - Delete the selected Custom - - - - - Preview the selected Custom - - - - - Send the selected Custom live - - - - - Add the selected Custom to the service - - Custom @@ -800,11 +760,51 @@ demand and thus an internet connection is required. container title + + + Load a new Custom. + + + + + Import a Custom. + + + + + Add a new Custom. + + + + + Edit the selected Custom. + + + + + Delete the selected Custom. + + + + + Preview the selected Custom. + + + + + Send the selected Custom live. + + + + + Add the selected Custom to the service. + + GeneralTab - + General @@ -816,41 +816,6 @@ demand and thus an internet connection is required. <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. - - - 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 - - Image @@ -869,11 +834,46 @@ demand and thus an internet connection is required. 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 @@ -881,38 +881,38 @@ demand and thus an internet connection is required. 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. @@ -924,41 +924,6 @@ Do you want to add the other images anyway? <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. - - - Load a new Media - - - - - Add a 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 - - Media @@ -977,41 +942,76 @@ Do you want to add the other images anyway? container title + + + Load a new Media. + + + + + Add a 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 (*) @@ -1040,28 +1040,17 @@ Do you want to add the other images anyway? OpenLP.AboutForm - - OpenLP <version><revision> - Open Source Lyrics Projection - -OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if OpenOffice.org, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. - -Find out more about OpenLP: http://openlp.org/ - -OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider contributing by using the button below. - - - - + Credits - + License - + Contribute @@ -1071,17 +1060,17 @@ OpenLP is written and maintained by volunteers. If you would like to see more fr - + 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. - + Project Lead %s @@ -1146,12 +1135,20 @@ Final Credit - - Copyright © 2004-2011 Raoul Snyman -Portions copyright © 2004-2011 Tim Bentley, Jonathan Corwin, Michael Gorven, Scott Guerrieri, -Meinert Jordan, Andreas Preikschat, Christian Richter, Philip -Ridout, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Carsten -Tinggaard, Frode Woldsund + + 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 contributing by using the button below. + + + + + Copyright © 2004-2011 %s +Portions copyright © 2004-2011 %s @@ -1246,70 +1243,70 @@ Tinggaard, Frode Woldsund OpenLP.DisplayTagDialog - + Edit Selection - - Update - - - - + Description - + Tag - + Start tag - + End tag - + Default - + Tag Id - + Start HTML - + End HTML + + + Save + + OpenLP.DisplayTagTab - + Update Error - + Tag "n" already defined. - + Tag %s already defined. @@ -1348,7 +1345,7 @@ Tinggaard, Frode Woldsund - + Description characters to enter : %s @@ -1390,7 +1387,7 @@ Version: %s - + *OpenLP Bug Report* Version: %s @@ -1448,7 +1445,7 @@ Version: %s OpenLP.FirstTimeWizard - + Songs @@ -1463,57 +1460,57 @@ Version: %s - + Activate required Plugins - + Select the Plugins you wish to use. - + Custom Text - + Bible - + Images - + Presentations - + Media (Audio and Video) - + Allow remote access - + Monitor Song Usage - + Allow Alerts - + Default Settings @@ -1533,22 +1530,17 @@ Version: %s - - This wizard will help you to configure OpenLP for initial use. Click the next button below to start the process of selection your initial options. - - - - + No Internet Connection - + Unable to detect an Internet connection. - + 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. To re-run the First Time Wizard and import this sample data at a later stage, press the cancel button now, check your Internet connection, and restart OpenLP. @@ -1557,185 +1549,190 @@ To cancel the First Time Wizard completely, press the finish button now. - + 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. - + Setting Up And Importing - + Please wait while OpenLP is set up and your data is imported. - + 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.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 - + Slide loop delay: - + sec - + CCLI Details - + SongSelect username: - + SongSelect password: - + Display Position - + X - + Y - + Height - + Width - + Override display position - + Check for updates to OpenLP - + Unblank display when adding new live item @@ -1756,7 +1753,7 @@ To cancel the First Time Wizard completely, press the finish button now. OpenLP.MainDisplay - + OpenLP Display @@ -1764,282 +1761,282 @@ To cancel the First Time Wizard completely, press the finish button now. 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. @@ -2056,17 +2053,17 @@ You can download the latest version from http://openlp.org/. - + OpenLP Main Display Blanked - + The Main Display has been blanked out - + Default Theme: %s @@ -2077,45 +2074,60 @@ You can download the latest version from http://openlp.org/. - + Configure &Shortcuts... - + Close OpenLP - + Are you sure you want to close OpenLP? - + Print the current Service Order. - + &Configure Display Tags - + Open &Data Folder... - + Open the folder where songs, bibles and other data resides. - + &Autodetect + + + Update Theme Images + + + + + Update the preview images for all themes. + + + + + F1 + + OpenLP.MediaManagerItem @@ -2125,46 +2137,56 @@ You can download the latest version from http://openlp.org/. - + &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. - + Duplicate file name %s. Filename already exists in list + + + You must select one or more items to add. + + + + + No Search Results + + OpenLP.PluginForm @@ -2286,19 +2308,19 @@ Filename already exists in list - Add page break before each text item. + Add page break before each text item OpenLP.ScreenList - + Screen - + primary @@ -2314,203 +2336,188 @@ Filename already exists in list OpenLP.ServiceManager - - Load an existing service - - - - - Save this service - - - - - Select a theme for the service - - - - + Move to &top - + Move item to the top of the service. - + Move &up - + Move item up one position in the service. - + Move &down - + Move item down one position in the service. - + Move to &bottom - + Move item to the end of the service. - + &Delete From Service - + Delete the selected item from the service. - + &Add New Item - + &Add to Selected Item - + &Edit Item - + &Reorder Item - + &Notes - + &Change Item Theme - + OpenLP Service Files (*.osz) - + File is not a valid service. The content encoding is not UTF-8. - + File is not a valid service. - + Missing Display Handler - + Your item cannot be displayed as there is no handler to display it - + Your item cannot be displayed as the plugin required to display it is missing or inactive - + &Expand all - + Expand all the service items. - + &Collapse all - + Collapse all the service items. - + Open File - + Moves the selection down the window. - + Move up - + Moves the selection up the window. - + Go Live - + Send the selected item to Live. - + &Start Time - + Show &Preview - + Show &Live - + Modified Service - + The current service has been modified. Would you like to save this service? @@ -2530,35 +2537,50 @@ The content encoding is not UTF-8. - + Untitled Service - + File could not be opened because it is corrupt. - + Empty File - + This service file does not contain any data. - + Corrupt File - + This file is either corrupt or not an OpenLP 2.0 service file. + + + Load an existing service. + + + + + Save this service. + + + + + Select a theme for the service. + + OpenLP.ServiceNoteForm @@ -2647,100 +2669,105 @@ The content encoding is not UTF-8. OpenLP.SlideController - + Move to previous - + Move to next - + Hide - + Move to live - + Edit and reload song preview - + Start continuous loop - + Stop continuous loop - + Delay between slides in seconds - + Start playing media - + Go To - + Blank Screen - + Blank to Theme - + Show Desktop - + Previous Slide - + Next Slide - + Previous Service - + Next Service - + Escape Item - + Start/Stop continuous loop + + + Add to Service + + OpenLP.SpellTextEdit @@ -2909,68 +2936,68 @@ The content encoding is not UTF-8. - + %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. The content encoding is not UTF-8. - + File is not a valid theme. @@ -2990,47 +3017,47 @@ The content encoding is not UTF-8. - + 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) @@ -3607,7 +3634,7 @@ The content encoding is not UTF-8. - + &Vertical Align: @@ -3662,7 +3689,7 @@ The content encoding is not UTF-8. - + Starting import... @@ -3821,11 +3848,6 @@ The content encoding is not UTF-8. View - - - View Model - - Title and/or verses not found @@ -3836,11 +3858,16 @@ The content encoding is not UTF-8. XML syntax error + + + View Mode + + OpenLP.displayTagDialog - + Configure Display Tags @@ -3852,31 +3879,6 @@ The content encoding is not UTF-8. <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. - - - Load a new Presentation - - - - - Delete the selected Presentation - - - - - Preview the selected Presentation - - - - - Send the selected Presentation live - - - - - Add the selected Presentation to the service - - Presentation @@ -3895,56 +3897,81 @@ The content encoding is not UTF-8. 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 no longer exists. - + The Presentation %s is incomplete, please reload. @@ -3996,20 +4023,30 @@ The content encoding is not UTF-8. RemotePlugin.RemoteTab - + Serve on IP address: - + Port number: - + Server Settings + + + Remote URL: + + + + + Stage view URL: + + SongUsagePlugin @@ -4192,36 +4229,6 @@ has been successfully created. Reindexing songs... - - - 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 - - Arabic (CP-1256) @@ -4333,6 +4340,36 @@ The encoding is responsible for the correct character representation. 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. + + SongsPlugin.AuthorsForm @@ -4566,7 +4603,7 @@ The encoding is responsible for the correct character representation. - + You need to type some text in to the verse. @@ -4574,20 +4611,35 @@ The encoding is responsible for the correct character representation. SongsPlugin.EditVerseForm - + Edit Verse - + &Verse type: - + &Insert + + + &Split + + + + + Split a slide into two only if it does not fit on the screen as one slide. + + + + + Split a slide into two by inserting a verse splitter. + + SongsPlugin.ExportWizardForm @@ -4626,11 +4678,6 @@ The encoding is responsible for the correct character representation. Select Directory - - - Select the directory you want the songs to be saved. - - Directory: @@ -4671,6 +4718,11 @@ The encoding is responsible for the correct character representation. Select Destination Folder + + + Select the directory where you want the songs to be saved. + + SongsPlugin.ImportWizardForm @@ -4783,42 +4835,42 @@ The encoding is responsible for the correct character representation. SongsPlugin.MediaItem - - Maintain the lists of authors, topics and books - - - - + Titles - + Lyrics - + Delete Song(s)? - + CCLI License: - + Entire Song - + Are you sure you want to delete the %n selected song(s)? + + + Maintain the lists of authors, topics and books. + + SongsPlugin.OpenLP1SongImport diff --git a/resources/i18n/en_GB.ts b/resources/i18n/en_GB.ts index 2ca4543cb..a343f7357 100644 --- a/resources/i18n/en_GB.ts +++ b/resources/i18n/en_GB.ts @@ -184,22 +184,22 @@ Do you want to continue anyway? BiblePlugin.HTTPBible - + Download Error Download Error - + Parse Error Parse 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. - + 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. @@ -207,12 +207,12 @@ Do you want to continue anyway? BiblePlugin.MediaItem - + Bible not fully loaded. Bible not fully loaded. - + 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? @@ -224,46 +224,6 @@ Do you want to continue anyway? &Bible &Bible - - - <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display bible verses from different sources during the service. - <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display bible verses from different sources during the service. - - - - 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 - Bible @@ -283,47 +243,87 @@ Do you want to continue anyway? 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. + + + + + 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. + + 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. - + Your scripture reference is either not supported by OpenLP or is invalid. Please make sure your reference conforms to one of the following patterns: Book Chapter @@ -342,7 +342,7 @@ Book Chapter:Verse-Verse,Chapter:Verse-Verse Book Chapter:Verse-Chapter:Verse - + No Bibles Available No Bibles Available @@ -519,18 +519,6 @@ Changes do not affect verses already in the service. This Bible already exists. Please import a different Bible or first delete the existing one. This Bible already exists. Please import a different Bible or first delete the existing one. - - - Starting Registering bible... - Starting Registering Bible... - - - - Registered bible. Please note, that verses will be downloaded on -demand and thus an internet connection is required. - Registered Bible. Please note, that verses will be downloaded on -demand and thus an internet connection is required. - Permissions: @@ -576,74 +564,75 @@ demand and thus an internet connection is required. 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.MediaItem - + Quick Quick - + Find: Find: - - Results: - Results: - - - + Book: Book: - + Chapter: Chapter: - + Verse: Verse: - + From: From: - + To: To: - + Text Search Text Search - - Clear - Clear - - - - Keep - Keep - - - + Second: Second: - + Scripture Reference Scripture Reference + + + Toggle to keep or clear the previous results. + + BiblesPlugin.Opensong @@ -717,12 +706,12 @@ demand and thus an internet connection is required. Edit all the slides at once. - + Split Slide Split Slide - + Split a slide into two by inserting a slide splitter. Split a slide into two by inserting a slide splitter. @@ -737,12 +726,12 @@ demand and thus an internet connection is required. &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 @@ -751,49 +740,19 @@ demand and thus an internet connection is required. Ed&it All Ed&it All + + + Split a slide into two only if it does not fit on the screen as one slide. + + + + + Insert Slide + + CustomsPlugin - - - Import a Custom - Import a Custom - - - - Load a new Custom - Load a new Custom - - - - Add a new Custom - Add a new Custom - - - - Edit the selected Custom - Edit the selected Custom - - - - Delete the selected Custom - Delete the selected Custom - - - - Preview the selected Custom - Preview the selected Custom - - - - Send the selected Custom live - Send the selected Custom live - - - - Add the selected Custom to the service - Add the selected Custom to the service - Custom @@ -812,11 +771,51 @@ demand and thus an internet connection is required. container title Custom + + + Load a new Custom. + + + + + Import a Custom. + + + + + Add a new Custom. + + + + + Edit the selected Custom. + + + + + Delete the selected Custom. + + + + + Preview the selected Custom. + + + + + Send the selected Custom live. + + + + + Add the selected Custom to the service. + + GeneralTab - + General General @@ -828,41 +827,6 @@ demand and thus an internet connection is required. <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. - - - 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 - Image @@ -881,11 +845,46 @@ demand and thus an internet connection is required. container title Images + + + 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 Select Attachment @@ -893,39 +892,39 @@ demand and thus an internet connection is required. 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. @@ -937,41 +936,6 @@ Do you want to add the other images anyway? <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. - - - Load a new Media - Load a new Media - - - - Add a new Media - Add a 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 - Media @@ -990,41 +954,76 @@ Do you want to add the other images anyway? container title Media + + + Load a new Media. + + + + + Add a 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 Select Media - + You must select a media file to delete. You must select a media file to delete. - + Missing Media File Missing Media File - + The file %s no longer exists. The file %s no longer exists. - + 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. - + Videos (%s);;Audio (%s);;%s (*) Videos (%s);;Audio (%s);;%s (*) @@ -1053,34 +1052,17 @@ Do you want to add the other images anyway? OpenLP.AboutForm - - OpenLP <version><revision> - Open Source Lyrics Projection - -OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if OpenOffice.org, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. - -Find out more about OpenLP: http://openlp.org/ - -OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider contributing by using the button below. - OpenLP <version><revision> - Open Source Lyrics Projection - -OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if OpenOffice.org, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. - -Find out more about OpenLP: http://openlp.org/ - -OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider contributing by using the button below. - - - + Credits Credits - + License Licence - + Contribute Contribute @@ -1090,17 +1072,17 @@ OpenLP is written and maintained by volunteers. If you would like to see more fr 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. - + Project Lead %s @@ -1225,17 +1207,21 @@ Final Credit He has set us free. - - Copyright © 2004-2011 Raoul Snyman -Portions copyright © 2004-2011 Tim Bentley, Jonathan Corwin, Michael Gorven, Scott Guerrieri, -Meinert Jordan, Andreas Preikschat, Christian Richter, Philip -Ridout, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Carsten -Tinggaard, Frode Woldsund - Copyright © 2004-2011 Raoul Snyman -Portions copyright © 2004-2011 Tim Bentley, Jonathan Corwin, Michael Gorven, Scott Guerrieri, -Meinert Jordan, Andreas Preikschat, Christian Richter, Philip -Ridout, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Carsten -Tinggaard, Frode Woldsund + + 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 contributing by using the button below. + + + + + Copyright © 2004-2011 %s +Portions copyright © 2004-2011 %s + @@ -1329,70 +1315,70 @@ Tinggaard, Frode Woldsund OpenLP.DisplayTagDialog - + Edit Selection Edit Selection - - Update - Update - - - + Description Description - + Tag Tag - + Start tag Start tag - + End tag End tag - + Default Default - + Tag Id Tag Id - + Start HTML Start HTML - + End HTML End HTML + + + Save + + OpenLP.DisplayTagTab - + Update Error Update Error - + Tag "n" already defined. Tag "n" already defined. - + Tag %s already defined. Tag %s already defined. @@ -1432,7 +1418,7 @@ Tinggaard, Frode Woldsund Attach File - + Description characters to enter : %s Description characters to enter : %s @@ -1488,7 +1474,7 @@ Version: %s - + *OpenLP Bug Report* Version: %s @@ -1584,77 +1570,72 @@ Version: %s Welcome to the First Time Wizard - - This wizard will help you to configure OpenLP for initial use. Click the next button below to start the process of selection your initial options. - This wizard will help you to configure OpenLP for initial use. Click the next button below to start the process of selecting your initial options. - - - + Activate required Plugins Activate required Plugins - + Select the Plugins you wish to use. Select the Plugins you wish to use. - + Songs Songs - + Custom Text Custom Text - + 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 - + No Internet Connection No Internet Connection - + Unable to detect an Internet connection. Unable to detect an Internet connection. - + 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. To re-run the First Time Wizard and import this sample data at a later stage, press the cancel button now, check your Internet connection, and restart OpenLP. @@ -1667,190 +1648,195 @@ To re-run the First Time Wizard and import this sample data at a later stage, pr To cancel the First Time Wizard completely, press the finish button now. - + 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. - + Default Settings Default Settings - + Set up default settings to be used by OpenLP. Set up default settings to be used by OpenLP. - + Setting Up And Importing Setting Up And Importing - + Please wait while OpenLP is set up and your data is imported. Please wait while OpenLP is set up and your data is imported. - + 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. + + 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 - + Slide loop delay: Slide loop delay: - + sec sec - + CCLI Details CCLI Details - + SongSelect username: SongSelect username: - + SongSelect password: SongSelect password: - + Display Position Display Position - + X X - + Y Y - + Height Height - + Width Width - + Override display position Override display position - + Check for updates to OpenLP Check for updates to OpenLP - + Unblank display when adding new live item @@ -1871,7 +1857,7 @@ To cancel the First Time Wizard completely, press the finish button now. OpenLP.MainDisplay - + OpenLP Display OpenLP Display @@ -1879,282 +1865,282 @@ To cancel the First Time Wizard completely, press the finish button now. 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. @@ -2172,17 +2158,17 @@ You can download the latest version from http://openlp.org/. 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 @@ -2193,45 +2179,60 @@ You can download the latest version from http://openlp.org/. 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? - + Print the current Service Order. Print the current Service Order. - + 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. - + &Configure Display Tags &Configure Display Tags - + &Autodetect &Autodetect + + + Update Theme Images + + + + + Update the preview images for all themes. + + + + + F1 + + OpenLP.MediaManagerItem @@ -2241,46 +2242,56 @@ You can download the latest version from http://openlp.org/. 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. - + Duplicate file name %s. Filename already exists in list + + + You must select one or more items to add. + + + + + No Search Results + + OpenLP.PluginForm @@ -2402,19 +2413,19 @@ Filename already exists in list - Add page break before each text item. + Add page break before each text item OpenLP.ScreenList - + Screen Screen - + primary primary @@ -2430,224 +2441,209 @@ Filename already exists in list OpenLP.ServiceManager - - 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 - - - + Move to &top Move to &top - + Move item to the top of the service. Move item to the top of the service. - + Move &up Move &up - + Move item up one position in the service. Move item up one position in the service. - + Move &down Move &down - + Move item down one position in the service. Move item down one position in the service. - + Move to &bottom Move to &bottom - + Move item to the end of the service. Move item to the end of the service. - + &Delete From Service &Delete From Service - + Delete the selected item from the service. Delete the selected item from the service. - + &Add New Item &Add New Item - + &Add to Selected Item &Add to Selected Item - + &Edit Item &Edit Item - + &Reorder Item &Reorder Item - + &Notes &Notes - + &Change Item Theme &Change Item Theme - + File is not a valid service. The content encoding is not UTF-8. File is not a valid service. The content encoding is not UTF-8. - + File is not a valid service. File is not a valid service. - + Missing Display Handler Missing Display Handler - + Your item cannot be displayed as there is no handler to display it Your item cannot be displayed as there is no handler to display it - + Your item cannot be displayed as the plugin required to display it is missing or inactive Your item cannot be displayed as the plugin required to display it is missing or inactive - + &Expand all &Expand all - + Expand all the service items. Expand all the service items. - + &Collapse all &Collapse all - + Collapse all the service items. Collapse all the service items. - + Open File Open File - + OpenLP Service Files (*.osz) OpenLP Service Files (*.osz) - + Moves the selection down the window. Moves the selection down the window. - + Move up Move up - + Moves the selection up the window. Moves the selection up the window. - + Go Live Go Live - + Send the selected item to Live. Send the selected item to Live. - + Modified Service Modified Service - + &Start Time &Start Time - + Show &Preview Show &Preview - + Show &Live Show &Live - + The current service has been modified. Would you like to save this service? The current service has been modified. Would you like to save this service? - + File could not be opened because it is corrupt. - + Empty File - + This service file does not contain any data. - + Corrupt File @@ -2667,15 +2663,30 @@ The content encoding is not UTF-8. - + Untitled Service - + This file is either corrupt or not an OpenLP 2.0 service file. + + + Load an existing service. + + + + + Save this service. + + + + + Select a theme for the service. + + OpenLP.ServiceNoteForm @@ -2764,100 +2775,105 @@ The content encoding is not UTF-8. OpenLP.SlideController - + Move to previous Move to previous - + Move to next Move to next - + Hide Hide - + Move to live Move to live - + Start continuous loop Start continuous loop - + Stop continuous loop Stop continuous loop - + Delay between slides in seconds Delay between slides in seconds - + Start playing media Start playing media - + Go To Go To - + Edit and reload song preview Edit and reload song preview - + Blank Screen Blank Screen - + Blank to Theme Blank to Theme - + Show Desktop Show Desktop - + Previous Slide Previous Slide - + Next Slide Next Slide - + Previous Service Previous Service - + Next Service Next Service - + Escape Item Escape Item - + Start/Stop continuous loop + + + Add to Service + + OpenLP.SpellTextEdit @@ -3026,69 +3042,69 @@ The content encoding is not UTF-8. 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. - + 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. The content encoding is not UTF-8. File is not a valid theme. The content encoding is not UTF-8. - + File is not a valid theme. File is not a valid theme. - + Theme %s is used in the %s plugin. Theme %s is used in the %s plugin. @@ -3108,47 +3124,47 @@ The content encoding is not UTF-8. &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) @@ -3572,7 +3588,7 @@ The content encoding is not UTF-8. Start %s - + &Vertical Align: &Vertical Align: @@ -3780,7 +3796,7 @@ The content encoding is not UTF-8. Ready. - + Starting import... Starting import... @@ -3929,11 +3945,6 @@ The content encoding is not UTF-8. View - - - View Model - - Duplicate Error @@ -3954,11 +3965,16 @@ The content encoding is not UTF-8. XML syntax error + + + View Mode + + OpenLP.displayTagDialog - + Configure Display Tags Configure Display Tags @@ -3970,31 +3986,6 @@ The content encoding is not UTF-8. <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. - - - 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 - Presentation @@ -4013,56 +4004,81 @@ The content encoding is not UTF-8. container title Presentations + + + 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) Select Presentation(s) - + Automatic Automatic - + Present using: Present using: - + File Exists File Exists - + A presentation with that filename already exists. A presentation with that filename already exists. - + This type of presentation is not supported. This type of presentation is not supported. - + Presentations (%s) Presentations (%s) - + Missing Presentation Missing Presentation - + The Presentation %s no longer exists. The Presentation %s no longer exists. - + The Presentation %s is incomplete, please reload. The Presentation %s is incomplete, please reload. @@ -4114,20 +4130,30 @@ The content encoding is not UTF-8. RemotePlugin.RemoteTab - + Serve on IP address: Serve on IP address: - + Port number: Port number: - + Server Settings Server Settings + + + Remote URL: + + + + + Stage view URL: + + SongUsagePlugin @@ -4312,36 +4338,6 @@ has been successfully created. Reindexing songs... Reindexing songs... - - - 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 - Song @@ -4456,6 +4452,36 @@ The encoding is responsible for the correct character representation.Exports songs using the export wizard. 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. + + SongsPlugin.AuthorsForm @@ -4689,7 +4715,7 @@ The encoding is responsible for the correct character representation.You need to have an author for this song. - + You need to type some text in to the verse. You need to type some text in to the verse. @@ -4697,20 +4723,35 @@ The encoding is responsible for the correct character representation. SongsPlugin.EditVerseForm - + Edit Verse Edit Verse - + &Verse type: &Verse type: - + &Insert &Insert + + + &Split + + + + + Split a slide into two only if it does not fit on the screen as one slide. + + + + + Split a slide into two by inserting a verse splitter. + + SongsPlugin.ExportWizardForm @@ -4744,11 +4785,6 @@ The encoding is responsible for the correct character representation.Select Directory Select Directory - - - Select the directory you want the songs to be saved. - Select the directory where you want the songs to be saved. - Directory: @@ -4794,6 +4830,11 @@ The encoding is responsible for the correct character representation.Select Destination Folder Select Destination Folder + + + Select the directory where you want the songs to be saved. + + SongsPlugin.ImportWizardForm @@ -4906,43 +4947,43 @@ The encoding is responsible for the correct character representation. SongsPlugin.MediaItem - - Maintain the lists of authors, topics and books - Maintain the lists of authors, topics and books - - - + Titles Titles - + Lyrics Lyrics - + Delete Song(s)? Delete Song(s)? - + CCLI License: CCLI License: - + Entire Song Entire Song - + Are you sure you want to delete the %n selected song(s)? Are you sure you want to delete the %n selected song? Are you sure you want to delete the %n selected songs? + + + Maintain the lists of authors, topics and books. + + SongsPlugin.OpenLP1SongImport diff --git a/resources/i18n/en_ZA.ts b/resources/i18n/en_ZA.ts index ea32e1c35..4e33efcd9 100644 --- a/resources/i18n/en_ZA.ts +++ b/resources/i18n/en_ZA.ts @@ -184,22 +184,22 @@ Do you want to continue anyway? BiblePlugin.HTTPBible - + Download Error Download Error - + Parse Error Parse 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. - + 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. @@ -207,12 +207,12 @@ Do you want to continue anyway? BiblePlugin.MediaItem - + Bible not fully loaded. Bible not fully loaded. - + 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? @@ -224,46 +224,6 @@ Do you want to continue anyway? &Bible &Bible - - - <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display bible verses from different sources during the service. - <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display bible verses from different sources during the service. - - - - 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 - Bible @@ -283,47 +243,87 @@ Do you want to continue anyway? 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. + + 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. - + Your scripture reference is either not supported by OpenLP or is invalid. Please make sure your reference conforms to one of the following patterns: Book Chapter @@ -342,7 +342,7 @@ Book Chapter:Verse-Verse,Chapter:Verse-Verse Book Chapter:Verse-Chapter:Verse - + No Bibles Available No Bibles Available @@ -519,19 +519,6 @@ Changes do not affect verses already in the service. This Bible already exists. Please import a different Bible or first delete the existing one. This Bible already exists. Please import a different Bible or first delete the existing one. - - - Starting Registering bible... - Starting Registering bible... - - - - Registered bible. Please note, that verses will be downloaded on -demand and thus an internet connection is required. - Registered bible. Please note, that verses will be downloaded on - -demand and thus an internet connection is required. - Permissions: @@ -577,74 +564,75 @@ demand and thus an internet connection is required. 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.MediaItem - + Quick Quick - + Find: Find: - - Results: - Results: - - - + Book: Book: - + Chapter: Chapter: - + Verse: Verse: - + From: From: - + To: To: - + Text Search Text Search - - Clear - Clear - - - - Keep - Keep - - - + Second: Second: - + Scripture Reference Scripture Reference + + + Toggle to keep or clear the previous results. + Toggle to keep or clear the previous results. + BiblesPlugin.Opensong @@ -718,12 +706,12 @@ demand and thus an internet connection is required. Edit all the slides at once. - + Split Slide Split Slide - + Split a slide into two by inserting a slide splitter. Split a slide into two by inserting a slide splitter. @@ -738,12 +726,12 @@ demand and thus an internet connection is required. &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 @@ -752,49 +740,19 @@ demand and thus an internet connection is required. Ed&it All Ed&it All + + + 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. + + + + Insert Slide + Insert Slide + CustomsPlugin - - - Import a Custom - Import a Custom - - - - Load a new Custom - Load a new Custom - - - - Add a new Custom - Add a new Custom - - - - Edit the selected Custom - Edit the selected Custom - - - - Delete the selected Custom - Delete the selected Custom - - - - Preview the selected Custom - Preview the selected Custom - - - - Send the selected Custom live - Send the selected Custom live - - - - Add the selected Custom to the service - Add the selected Custom to the service - Custom @@ -813,11 +771,51 @@ demand and thus an internet connection is required. container title Custom + + + Load a new Custom. + Load a new Custom. + + + + Import a Custom. + Import a Custom. + + + + Add a new Custom. + Add a new Custom. + + + + Edit the selected Custom. + Edit the selected Custom. + + + + Delete the selected Custom. + Delete the selected Custom. + + + + Preview the selected Custom. + Preview the selected Custom. + + + + Send the selected Custom live. + Send the selected Custom live. + + + + Add the selected Custom to the service. + Add the selected Custom to the service. + GeneralTab - + General General @@ -829,41 +827,6 @@ demand and thus an internet connection is required. <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. - - - 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 - Image @@ -882,11 +845,46 @@ demand and thus an internet connection is required. 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. + + + + + Preview the selected Image. + + + + + Send the selected Image live. + + + + + Add the selected Image to the service. + + ImagePlugin.ExceptionDialog - + Select Attachment Select Attachment @@ -894,39 +892,39 @@ demand and thus an internet connection is required. 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. @@ -938,41 +936,6 @@ Do you want to add the other images anyway? <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. - - - Load a new Media - Load a new Media - - - - Add a new Media - Add a 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 - Media @@ -991,41 +954,76 @@ Do you want to add the other images anyway? container title Media + + + Load a new Media. + + + + + Add a 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 Select Media - + You must select a media file to delete. You must select a media file to delete. - + Missing Media File Missing Media File - + The file %s no longer exists. The file %s no longer exists. - + 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. - + Videos (%s);;Audio (%s);;%s (*) Videos (%s);;Audio (%s);;%s (*) @@ -1054,34 +1052,17 @@ Do you want to add the other images anyway? OpenLP.AboutForm - - OpenLP <version><revision> - Open Source Lyrics Projection - -OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if OpenOffice.org, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. - -Find out more about OpenLP: http://openlp.org/ - -OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider contributing by using the button below. - OpenLP <version><revision> - Open Source Lyrics Projection - -OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if OpenOffice.org, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. - -Find out more about OpenLP: http://openlp.org/ - -OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider contributing by using the button below. - - - + Credits Credits - + License License - + Contribute Contribute @@ -1091,17 +1072,17 @@ OpenLP is written and maintained by volunteers. If you would like to see more fr build %s - + This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See below for more details. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See below for more details. - + Project Lead %s @@ -1226,17 +1207,21 @@ Final Credit He has set us free. - - Copyright © 2004-2011 Raoul Snyman -Portions copyright © 2004-2011 Tim Bentley, Jonathan Corwin, Michael Gorven, Scott Guerrieri, -Meinert Jordan, Andreas Preikschat, Christian Richter, Philip -Ridout, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Carsten -Tinggaard, Frode Woldsund - Copyright © 2004-2011 Raoul Snyman -Portions copyright © 2004-2011 Tim Bentley, Jonathan Corwin, Michael Gorven, Scott Guerrieri, -Meinert Jordan, Andreas Preikschat, Christian Richter, Philip -Ridout, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Carsten -Tinggaard, Frode Woldsund + + 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 contributing by using the button below. + + + + + Copyright © 2004-2011 %s +Portions copyright © 2004-2011 %s + @@ -1330,70 +1315,70 @@ Tinggaard, Frode Woldsund OpenLP.DisplayTagDialog - + Edit Selection Edit Selection - - Update - Update - - - + Description Description - + Tag Tag - + Start tag Start tag - + End tag End tag - + Default Default - + Tag Id Tag Id - + Start HTML Start HTML - + End HTML End HTML + + + Save + + OpenLP.DisplayTagTab - + Update Error Update Error - + Tag "n" already defined. Tag "n" already defined. - + Tag %s already defined. Tag %s already defined. @@ -1433,7 +1418,7 @@ Tinggaard, Frode Woldsund Attach File - + Description characters to enter : %s Description characters to enter : %s @@ -1489,7 +1474,7 @@ Version: %s - + *OpenLP Bug Report* Version: %s @@ -1585,77 +1570,72 @@ Version: %s Welcome to the First Time Wizard - - This wizard will help you to configure OpenLP for initial use. Click the next button below to start the process of selection your initial options. - This wizard will help you to configure OpenLP for initial use. Click the next button below to start the process of selection your initial options. - - - + Activate required Plugins Activate required Plugins - + Select the Plugins you wish to use. Select the Plugins you wish to use. - + Songs Songs - + Custom Text Custom Text - + 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 - + No Internet Connection No Internet Connection - + Unable to detect an Internet connection. Unable to detect an Internet connection. - + 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. To re-run the First Time Wizard and import this sample data at a later stage, press the cancel button now, check your Internet connection, and restart OpenLP. @@ -1668,190 +1648,195 @@ To re-run the First Time Wizard and import this sample data at a later stage, pr To cancel the First Time Wizard completely, press the finish button now. - + 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. - + Default Settings Default Settings - + Set up default settings to be used by OpenLP. Set up default settings to be used by OpenLP. - + Setting Up And Importing Setting Up And Importing - + Please wait while OpenLP is set up and your data is imported. Please wait while OpenLP is set up and your data is imported. - + 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. + + 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 - + CCLI Details CCLI Details - + SongSelect username: SongSelect username: - + SongSelect password: SongSelect password: - + Display Position Display Position - + X X - + Y Y - + Height Height - + Width Width - + Override display position Override display position - + Prompt to save before starting a new service Prompt to save before starting a new service - + Automatically preview next item in service Automatically preview next item in service - + Slide loop delay: Slide loop delay: - + sec sec - + Check for updates to OpenLP Check for updates to OpenLP - + Unblank display when adding new live item @@ -1872,7 +1857,7 @@ To cancel the First Time Wizard completely, press the finish button now. OpenLP.MainDisplay - + OpenLP Display OpenLP Display @@ -1880,282 +1865,282 @@ To cancel the First Time Wizard completely, press the finish button now. 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. @@ -2165,17 +2150,17 @@ To cancel the First Time Wizard completely, press the finish button now.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 @@ -2195,45 +2180,60 @@ You can download the latest version from http://openlp.org/. 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? - + Print the current Service Order. Print the current Service Order. - + 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. - + &Configure Display Tags &Configure Display Tags - + &Autodetect &Autodetect + + + Update Theme Images + + + + + Update the preview images for all themes. + + + + + F1 + + OpenLP.MediaManagerItem @@ -2243,46 +2243,56 @@ You can download the latest version from http://openlp.org/. 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. - + Duplicate file name %s. Filename already exists in list + + + You must select one or more items to add. + + + + + No Search Results + + OpenLP.PluginForm @@ -2404,19 +2414,19 @@ Filename already exists in list - Add page break before each text item. + Add page break before each text item OpenLP.ScreenList - + Screen Screen - + primary primary @@ -2432,224 +2442,209 @@ Filename already exists in list OpenLP.ServiceManager - - 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 - - - + Move to &top Move to &top - + Move item to the top of the service. Move item to the top of the service. - + Move &up Move &up - + Move item up one position in the service. Move item up one position in the service. - + Move &down Move &down - + Move item down one position in the service. Move item down one position in the service. - + Move to &bottom Move to &bottom - + Move item to the end of the service. Move item to the end of the service. - + &Delete From Service &Delete From Service - + Delete the selected item from the service. Delete the selected item from the service. - + &Add New Item &Add New Item - + &Add to Selected Item &Add to Selected Item - + &Edit Item &Edit Item - + &Reorder Item &Reorder Item - + &Notes &Notes - + &Change Item Theme &Change Item Theme - + File is not a valid service. The content encoding is not UTF-8. File is not a valid service. The content encoding is not UTF-8. - + File is not a valid service. File is not a valid service. - + Missing Display Handler Missing Display Handler - + Your item cannot be displayed as there is no handler to display it Your item cannot be displayed as there is no handler to display it - + Your item cannot be displayed as the plugin required to display it is missing or inactive Your item cannot be displayed as the plugin required to display it is missing or inactive - + &Expand all &Expand all - + Expand all the service items. Expand all the service items. - + &Collapse all &Collapse all - + Collapse all the service items. Collapse all the service items. - + Open File Open File - + OpenLP Service Files (*.osz) OpenLP Service Files (*.osz) - + Moves the selection down the window. Moves the selection down the window. - + Move up Move up - + Moves the selection up the window. Moves the selection up the window. - + Go Live Go Live - + Send the selected item to Live. Send the selected item to Live. - + Modified Service Modified Service - + &Start Time &Start Time - + Show &Preview Show &Preview - + Show &Live Show &Live - + The current service has been modified. Would you like to save this service? The current service has been modified. Would you like to save this service? - + File could not be opened because it is corrupt. - + Empty File - + This service file does not contain any data. - + Corrupt File @@ -2669,15 +2664,30 @@ The content encoding is not UTF-8. - + Untitled Service - + This file is either corrupt or not an OpenLP 2.0 service file. + + + Load an existing service. + + + + + Save this service. + + + + + Select a theme for the service. + + OpenLP.ServiceNoteForm @@ -2766,100 +2776,105 @@ The content encoding is not UTF-8. OpenLP.SlideController - + Move to previous Move to previous - + Move to next Move to next - + Hide Hide - + Move to live Move to live - + Start continuous loop Start continuous loop - + Stop continuous loop Stop continuous loop - + Delay between slides in seconds Delay between slides in seconds - + Start playing media Start playing media - + Go To Go To - + Edit and reload song preview Edit and reload song preview - + Blank Screen Blank Screen - + Blank to Theme Blank to Theme - + Show Desktop Show Desktop - + Previous Slide Previous Slide - + Next Slide Next Slide - + Previous Service Previous Service - + Next Service Next Service - + Escape Item Escape Item - + Start/Stop continuous loop + + + Add to Service + + OpenLP.SpellTextEdit @@ -3028,69 +3043,69 @@ The content encoding is not UTF-8. 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. - + 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. The content encoding is not UTF-8. File is not a valid theme. The content encoding is not UTF-8. - + File is not a valid theme. File is not a valid theme. - + Theme %s is used in the %s plugin. Theme %s is used in the %s plugin. @@ -3110,47 +3125,47 @@ The content encoding is not UTF-8. &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) @@ -3574,7 +3589,7 @@ The content encoding is not UTF-8. Start %s - + &Vertical Align: &Vertical Align: @@ -3782,7 +3797,7 @@ The content encoding is not UTF-8. Ready. - + Starting import... Starting import... @@ -3931,11 +3946,6 @@ The content encoding is not UTF-8. View - - - View Model - - Duplicate Error @@ -3956,11 +3966,16 @@ The content encoding is not UTF-8. XML syntax error + + + View Mode + + OpenLP.displayTagDialog - + Configure Display Tags Configure Display Tags @@ -3972,31 +3987,6 @@ The content encoding is not UTF-8. <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. - - - 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 - Presentation @@ -4015,56 +4005,81 @@ The content encoding is not UTF-8. container title Presentations + + + 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) Select Presentation(s) - + Automatic Automatic - + Present using: Present using: - + File Exists File Exists - + A presentation with that filename already exists. A presentation with that filename already exists. - + This type of presentation is not supported. This type of presentation is not supported. - + Presentations (%s) Presentations (%s) - + Missing Presentation Missing Presentation - + The Presentation %s no longer exists. The Presentation %s no longer exists. - + The Presentation %s is incomplete, please reload. The Presentation %s is incomplete, please reload. @@ -4116,20 +4131,30 @@ The content encoding is not UTF-8. RemotePlugin.RemoteTab - + Serve on IP address: Serve on IP address: - + Port number: Port number: - + Server Settings Server Settings + + + Remote URL: + + + + + Stage view URL: + + SongUsagePlugin @@ -4314,36 +4339,6 @@ has been successfully created. Reindexing songs... Reindexing songs... - - - 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 - Song @@ -4458,6 +4453,36 @@ The encoding is responsible for the correct character representation.Exports songs using the export wizard. 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. + + SongsPlugin.AuthorsForm @@ -4691,7 +4716,7 @@ The encoding is responsible for the correct character representation.You need to have an author for this song. - + You need to type some text in to the verse. You need to type some text in to the verse. @@ -4699,20 +4724,35 @@ The encoding is responsible for the correct character representation. SongsPlugin.EditVerseForm - + Edit Verse Edit Verse - + &Verse type: &Verse type: - + &Insert &Insert + + + &Split + + + + + 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. + + + + Split a slide into two by inserting a verse splitter. + + SongsPlugin.ExportWizardForm @@ -4746,11 +4786,6 @@ The encoding is responsible for the correct character representation.Select Directory Select Directory - - - Select the directory you want the songs to be saved. - Select the directory you want the songs to be saved. - Directory: @@ -4796,6 +4831,11 @@ The encoding is responsible for the correct character representation.Select Destination Folder Select Destination Folder + + + Select the directory where you want the songs to be saved. + + SongsPlugin.ImportWizardForm @@ -4908,43 +4948,43 @@ The encoding is responsible for the correct character representation. SongsPlugin.MediaItem - - Maintain the lists of authors, topics and books - Maintain the lists of authors, topics and books - - - + Titles Titles - + Lyrics Lyrics - + Delete Song(s)? Delete Song(s)? - + CCLI License: CCLI License: - + Entire Song Entire Song - + Are you sure you want to delete the %n selected song(s)? Are you sure you want to delete the %n selected song(s)? Are you sure you want to delete the %n selected song(s)? + + + Maintain the lists of authors, topics and books. + + SongsPlugin.OpenLP1SongImport diff --git a/resources/i18n/es.ts b/resources/i18n/es.ts index 21bc210fd..3487af80c 100644 --- a/resources/i18n/es.ts +++ b/resources/i18n/es.ts @@ -12,18 +12,19 @@ Do you want to continue anyway? No Parameter Found - + Parámetro no encontrado No Placeholder Found - + Marcador No Encontrado The alert text does not contain '<>'. Do you want to continue anyway? - + El texto de alerta no contiene '<>'. +¿Desea continuar de todos modos? @@ -31,35 +32,35 @@ Do you want to continue anyway? &Alert - &Alerta + &Alerta Show an alert message. - Mostrar mensaje de alerta + Mostrar mensaje de alerta. <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of nursery alerts on the display screen - <strong>Alerts Plugin</strong><br />El plugin de alertas controla la visualización de mensajes de guardería + <strong>Complemento de Alertas</strong><br />El complemento de alertas controla la visualización de mensajes de guardería Alert name singular - Alerta + Alerta Alerts name plural - Alertas + Alertas Alerts container title - Alertas + Alertas @@ -67,22 +68,22 @@ Do you want to continue anyway? Alert Message - Mensaje de Alerta + Mensaje de Alerta Alert &text: - &Texto de Alerta: + &Texto de alerta: &New - &Nuevo + &Nuevo &Save - &Guardar + &Guardar @@ -107,7 +108,7 @@ Do you want to continue anyway? &Parameter: - + &Parámetro: @@ -123,7 +124,7 @@ Do you want to continue anyway? Font - Tipo de Letra + Fuente @@ -138,7 +139,7 @@ Do you want to continue anyway? Background color: - Color de Fondo: + Color de fondo: @@ -148,7 +149,7 @@ Do you want to continue anyway? Alert timeout: - Espera: + Tiempo de espera: @@ -156,64 +157,64 @@ Do you want to continue anyway? Importing testaments... %s - + Importando testamentos... %s Importing testaments... done. - + Importando testamentos... listo. 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. BiblePlugin.HTTPBible - + Download Error - + Error de Descarga - + Parse Error - + Error de Análisis - + 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. - + 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. BiblePlugin.MediaItem - + Bible not fully loaded. - + Carga incompleta. - + 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 de versículos. ¿Desea borrar los resultados y abrir una busqueda nueva? @@ -221,107 +222,108 @@ Do you want to continue anyway? &Bible - &Biblia - - - - <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 />El plugin de Biblia proporciona la capacidad de mostrar versículos de la Biblia de fuentes diferentes durante el servicio.. - - - - 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 - + &Biblia Bible name singular - Biblia + Biblia Bibles name plural - Biblias + Biblias Bibles container title - Biblias + Biblias - + No Book Found - No se encontró el libro + No se encontró el libro - + No matching book could be found in this Bible. Check that you have spelled the name of the book correctly. + No se hayó el nombre en esta Biblia. Revise que el nombre del libro esté deletreado 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. + Visualizar 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. 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. - + 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. - + Your scripture reference is either not supported by OpenLP or is invalid. Please make sure your reference conforms to one of the following patterns: Book Chapter @@ -330,12 +332,19 @@ Book Chapter:Verse-Verse Book Chapter:Verse-Verse,Verse-Verse Book Chapter:Verse-Verse,Chapter:Verse-Verse Book Chapter:Verse-Chapter:Verse - + OpenLP no soporta su referencia bíblica o esta no es válida. Por favor asegurese que tenga una estructura similar a alguno de los siguientes patrones: + +Libro Capítulo +Libro Capítulo-Capítulo +Libro Capítulo:Versículo-Versículo +Libro Capítulo:Versículo-Versículo,Versículo-Versículo +Libro Capítulo:Versículo-Versículo,Capítulo:Versículo-Versículo +Libro Capítulo:Versículo-Capítulo:Versículo - + No Bibles Available - + Biblias no Disponibles @@ -343,48 +352,49 @@ Book Chapter:Verse-Chapter:Verse Verse Display - Visualización de versículos + Visualización de versículos Only show new chapter numbers - Solo mostrar los números de capítulos nuevos + Solo 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 ítems en el servcio. Display second Bible verses - + Mostrar versículos secundarios @@ -392,245 +402,235 @@ Changes do not affect verses already in the service. Bible Import Wizard - Asistente de Importación de Biblias + Asistente para Biblias 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. - Este asistente le ayudará a importar Biblias en una variedad de formatos. Haga clic en el botón siguiente para empezar el proceso seleccionando un formato a importar. + Este asistente le ayudará a importar Biblias en una variedad de formatos. Haga clic en el botón siguiente para empezar el proceso seleccionando un formato a importar. Web Download - Descarga Web + Descarga Web Location: - Ubicación: + Ubicación: Crosswalk - Crosswalk + Crosswalk BibleGateway - BibleGateway + BibleGateway Bible: - Biblia: + Biblia: Download Options - Opciones de Descarga + Opciones de Descarga Server: - Servidor: + Servidor: Username: - Usuario: + Usuario: Password: - Contraseña: + Contraseña: Proxy Server (Optional) - Servidor Proxy (Opcional) + Servidor Proxy (Opcional) License Details - Detalles de Licencia + Detalles de Licencia Set up the Bible's license details. - Establezca los detalles de licencia de la Biblia. + Establezca los detalles de licencia de la Biblia. Version name: - + Nombre de la versión: Copyright: - Derechos de autor: + Derechos de autor: Please wait while your Bible is imported. - Por favor, espere mientras que la Biblia es importada. + Por favor, espere mientras que la Biblia es importada. You need to specify a file with books of the Bible to use in the import. - + Debe especificar un archivo que contenga los libros de la Biblia para importar. You need to specify a file of Bible verses to import. - + Debe especificar un archivo que contenga los versículos de la Biblia para importar. You need to specify a version name for your Bible. - + Debe ingresar un nombre para la versión de esta Biblia. Bible Exists - Ya existe la Biblia + Ya existe la Biblia Your Bible import failed. - La importación de su Biblia falló. + La importación de su Biblia falló. You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. - + Debe establecer los derechos de autor de su Biblia. Si es de Dominio Público debe indicarlo. This Bible already exists. Please import a different Bible or first delete the existing one. - - - - - Starting Registering bible... - - - - - Registered bible. Please note, that verses will be downloaded on -demand and thus an internet connection is required. - + Ya existe esta Biblia. Por favor importe una diferente o borre la anterior antes de continuar. Permissions: - + Permisos: CSV File - + Archivo CSV Bibleserver - + Servidor Bible file: - + Archivo de biblia: Testaments file: - + Archivo de testamentos: Books file: - + Archivo de libros: Verses file: - + Archivo de versículos: You have not specified a testaments file. Do you want to proceed with the import? - + No ha especificado un archivo con los testamentos. ¿Desea proceder con la importación? openlp.org 1.x Bible Files + Archivos de Biblia openlp.org 1.x + + + + Registering Bible... + + + + + Registered Bible. Please note, that verses will be downloaded on +demand and thus an internet connection is required. BiblesPlugin.MediaItem - + Quick - Rápida + Rápida - + Find: - Encontrar: + Encontrar: - - Results: - Resultados: - - - + Book: - Libro: + Libro: - + Chapter: - Capítulo: + Capítulo: - + Verse: - Versículo: + Versículo: - + From: - Desde: + Desde: - + To: - Hasta: + Hasta: - + Text Search - Búsqueda de texto + Buscar texto - - Clear - Limpiar - - - - Keep - Conservar - - - + Second: - + Secundaria: - + Scripture Reference + Referencia Bíblica + + + + Toggle to keep or clear the previous results. @@ -640,7 +640,7 @@ demand and thus an internet connection is required. Importing %s %s... Importing <book name> <chapter>... - + Importando %s %s... @@ -648,13 +648,13 @@ demand and thus an internet connection is required. 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... @@ -662,7 +662,7 @@ demand and thus an internet connection is required. <strong>Custom Plugin</strong><br />The custom plugin provides the ability to set up custom text slides that can be displayed on the screen the same way songs are. This plugin provides greater freedom over the songs plugin. - + <strong>Diapositivas</strong><br />Este complemento le permite mostar diapositivas de texto, de igual manera que se muestran las canciones. Este complemento ofrece una mayor libertad que el complemento de canciones. @@ -670,12 +670,12 @@ demand and thus an internet connection is required. Custom Display - Presentación Personalizada + Pantalla Personal Display footer - + Mostrar pie de página @@ -683,131 +683,141 @@ demand and thus an internet connection is required. Edit Custom Slides - Editar Diapositivas Personalizadas + 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 Slide - + Dividir la Diapositiva - + Split a slide into two by inserting a slide splitter. - + Dividir la diapositiva insertando un separador. The&me: - + Te&ma: &Credits: - + &Creditos: - + 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 + + + + Split a slide into two only if it does not fit on the screen as one slide. + + + + + Insert Slide CustomsPlugin - - - Import a Custom - - - - - Load a new Custom - - - - - Add a new Custom - - - - - Edit the selected Custom - - - - - Delete the selected Custom - - - - - Preview the selected Custom - - - - - Send the selected Custom live - - - - - Add the selected Custom to the service - - Custom name singular - + Diapositiva Customs name plural - + Diapositivas Custom container title - + Diapositivas + + + + Load a new Custom. + Cargar nueva Diapositiva. + + + + Import a Custom. + Importar nueva Diapositiva. + + + + Add a new Custom. + Agregar nueva Diapositiva. + + + + Edit the selected Custom. + Editar Diapositiva seleccionada. + + + + Delete the selected Custom. + Eliminar Diapositiva seleccionada. + + + + Preview the selected Custom. + Visualizar Diapositiva seleccionada. + + + + Send the selected Custom live. + Proyectar Diapositiva seleccionada. + + + + Add the selected Custom to the service. + Agregar Diapositiva al servicio. GeneralTab - + General - + General @@ -815,107 +825,108 @@ demand and thus an internet connection is required. <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. - - - - - 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 - + <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. Image name singular - Imagen + 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 Imágen seleccionada. + + + + Delete the selected Image. + Eliminar la Imagen seleccionada. + + + + Preview the selected Image. + Visualizar la Imagen seleccionada. + + + + Send the selected Image live. + Proyectar la Imagen seleccionada. + + + + Add the selected Image to the service. + Agregar esta Imagen al servicio. ImagePlugin.ExceptionDialog - + Select Attachment - + Seleccionar Anexo 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 - + The following image(s) no longer exist: %s - + La siguiente imagen(es) ya no esta 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 +¿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. @@ -923,98 +934,98 @@ Do you want to add the other images anyway? <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. - - - - - Load a new Media - - - - - Add a 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 - + <strong>Complemento de Medios</strong><br />El complemento de medios permite reproducir audio y video. Media name singular - Medios + Medio Media name plural - Medios + Medios Media container title - Medios + Medios + + + + Load a new Media. + Cargar un Medio nuevo. + + + + Add a 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. + Visualizar el Medio seleccionado. + + + + Send the selected Media live. + Proyectar el Medio seleccionado. + + + + Add the selected Media to the service. + Agregar este Medio al servicio. MediaPlugin.MediaItem - - - Select Media - Seleccionar Medios - - - - You must select a media file to delete. - - - - - Missing Media File - - - - - The file %s no longer exists. - - - - - 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. - - + Select Media + Seleccionar Medios + + + + You must select a media file to delete. + Debe seleccionar un medio para eliminar. + + + + Missing Media File + Archivo de Medios faltante + + + + The file %s no longer exists. + El archivo %s ya no esta disponible. + + + + 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. + + + Videos (%s);;Audio (%s);;%s (*) - + Videos (%s);;Audio (%s);;%s (*) @@ -1022,12 +1033,12 @@ Do you want to add the other images anyway? Media Display - + Pantalla de Medios Use Phonon for video playback - + Use Phonon para reproducir video @@ -1035,54 +1046,43 @@ Do you want to add the other images anyway? Image Files - + Archivos de Imagen OpenLP.AboutForm - - OpenLP <version><revision> - Open Source Lyrics Projection - -OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if OpenOffice.org, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. - -Find out more about OpenLP: http://openlp.org/ - -OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider contributing by using the button below. - - - - + Credits - Créditos - - - - License - Licencia + Créditos + License + Licencia + + + Contribute - Contribuir + Contribuir 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 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. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See below for more details. - + Project Lead %s @@ -1144,15 +1144,83 @@ 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 + + Y por último pero no menos importante, + el crédito final va a Dios nuestro Padre, + por enviar a su Hijo a morir en la cruz, + liberándonos del pecado. Traemos este software + de forma gratuita, porque Él nos ha liberado. + + + + 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 contributing by using the button below. - - Copyright © 2004-2011 Raoul Snyman -Portions copyright © 2004-2011 Tim Bentley, Jonathan Corwin, Michael Gorven, Scott Guerrieri, -Meinert Jordan, Andreas Preikschat, Christian Richter, Philip -Ridout, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Carsten -Tinggaard, Frode Woldsund + + Copyright © 2004-2011 %s +Portions copyright © 2004-2011 %s @@ -1161,158 +1229,158 @@ Tinggaard, Frode Woldsund UI Settings - + 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 Expand new service items on creation - + Expandir nuevos ítems del servicio al crearlos Enable application exit confirmation - + Preguntar antes de cerrar la aplicación Mouse Cursor - + Cursor del Ratón Hide mouse cursor when over display window - + Ocultar el cursor en la pantalla principal Default Image - + Imagen por defecto Background color: - Color de Fondo: + Color de fondo: Image file: - + Archivo: Open File - + Abrir Archivo Preview items when clicked in Media Manager - + Vista previa al hacer click en el Adminstrador de Medios Advanced - + Avanzado 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 por defecto de OpenLP. OpenLP.DisplayTagDialog - + Edit Selection - + Editar Selección - - Update - - - - + Description - - - - - Tag - - - - - Start tag - + Descripción - End tag - + Tag + Marca + + + + Start tag + Marca inicial + End tag + Marca final + + + Default - + Por defecto - + Tag Id - + Id - + Start HTML - + Inicio HTML - + End HTML + Final HTML + + + + Save OpenLP.DisplayTagTab - + Update Error - + Error de Actualización - + Tag "n" already defined. - + Etiqueta "n" ya definida. - + Tag %s already defined. - + Etiqueta %s ya definida. @@ -1320,38 +1388,39 @@ Tinggaard, Frode Woldsund 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. - + ¡Uy! 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, así que 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. Error Occurred - + Se presento un Error Send E-Mail - + Enviar E-Mail Save to File - + Guardar a 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 +(Mínimo 20 caracteres) Attach File - + Archivo Adjunto - + Description characters to enter : %s - + Caracteres faltantes: %s @@ -1360,17 +1429,18 @@ Tinggaard, Frode Woldsund Platform: %s - + Plataforma: %s + Save Crash Report - + Guardar Reporte de Errores Text files (*.txt *.log *.text) - + Archivos de texto (*.txt *.log *.text) @@ -1388,10 +1458,23 @@ 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 @@ -1407,7 +1490,21 @@ Version: %s %s Please add the information that bug reports are favoured written in English. - + *Reporte de Errores OpenLP* +(Nota: Reporte de preferencia en Inglés) +Version: %s + +--- Detalles de la Excepción. --- + +%s + + --- Ratreo de Excepción --- +%s +--- Información del sistema --- +%s +--- Versión de Librerias --- +%s + @@ -1415,17 +1512,17 @@ Version: %s File Rename - + Cambiar Nombre New File Name: - + Nombre Nuevo: File Copy - + Copiar Archivo @@ -1433,17 +1530,17 @@ Version: %s Select Translation - + Seleccionar Idioma Choose the translation you'd like to use in OpenLP. - + Elija la traducción que desea utilizar en OpenLP. Translation: - + Traducción: @@ -1451,294 +1548,298 @@ Version: %s Downloading %s... - + Descargando %s... Download complete. Click the finish button to start OpenLP. - + Descarga completa. Presione finalizar para iniciar OpenLP. Enabling selected plugins... - + Habilitando complementos seleccionados... First Time Wizard - + Asistente Inicial Welcome to the First Time Wizard - + Bienvenido al Asistente Inicial - - This wizard will help you to configure OpenLP for initial use. Click the next button below to start the process of selection your initial options. - - - - + Activate required Plugins - + Activar complementos necesarios - + Select the Plugins you wish to use. - + Seleccione los complementos que desea usar. + + + + Songs + Canciones - Songs - + Custom Text + Texto Personalizado - - Custom Text - + + Bible + Biblia - Bible - - - - Images - + Imágenes - + Presentations - + Presentaciones - + Media (Audio and Video) - + Medios (Audio y Video) - + Allow remote access - + Permitir acceso remoto - + Monitor Song Usage - + Monitorear el uso de Canciones - + Allow Alerts - + Permitir Alertas - + No Internet Connection - + Sin Conexión a Internet - + Unable to detect an Internet connection. - + No se detectó una conexión a Internet. - + 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. To re-run the First Time Wizard and import this sample data at a later stage, press the cancel button now, check your Internet connection, and restart OpenLP. To cancel the First Time Wizard completely, press the finish button now. - + No se encontró una conexión a Internet. El Asistente Inicial necesita una conexión a Internet para poder descargar canciones de muestra, Biblias y temas. + +Para volver a ejecutar el AsistenteInicial e importar estos datos de muestra posteriormente, presione el botón de cancelar ahora, compruebe su conexión a Internet y reinicie OpenLP. + +Para cancelar el Asistente Inicial por completo, pulse el botón Finalizar ahora. - + Sample Songs - + Canciones de Muestra - + Select and download public domain songs. - + Seleccionar y descargar canciones de dominio público. - + Sample Bibles - + Biblias de Muestra - + Select and download free Bibles. - + Seleccionar y descargar Biblias gratuitas. - + Sample Themes - + Temas de Muestra - + Select and download sample themes. - + Seleccionar y descargar temas de muestra. - + Default Settings - + Configuración por defecto - + Set up default settings to be used by OpenLP. - + Utilizar la configuración por defecto. - + Setting Up And Importing - + Preferencias e Inportación - + Please wait while OpenLP is set up and your data is imported. - + Por favor espere mientras OpenLP se configura e importa los datos. - + Default output display: - + Pantalla predeterminada: - + Select default theme: - + Seleccione el 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. OpenLP.GeneralTab - + General - General + General - + Monitors - Monitores + Monitores - + Select monitor for output display: - Seleccionar monitor para visualizar la salida: + Seleccionar monitor para proyectar: - + Display if a single screen - + Mostar si solo hay una pantalla - + Application Startup - Inicio de la Aplicación + Inicio de la Aplicación - + Show blank screen warning - Mostrar advertencia de pantalla en blanco + Mostrar advertencia de pantalla en blanco - + Automatically open the last service - Abrir automáticamente el último servicio + 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 automatica del siguiente ítem de servicio + + + + Slide loop delay: + Tiempo entre diapositivas: + + + + sec + seg - Show the splash screen - Mostrar pantalla de bienvenida - - - - Application Settings - Configuración del Programa - - - - Prompt to save before starting a new service - - - - - Automatically preview next item in service - - - - - Slide loop delay: - - - - - sec - - - - CCLI Details - Detalles de CCLI + Detalles de CCLI - + SongSelect username: - + Usuario SongSelect: - + SongSelect password: - - - - - Display Position - - - - - X - - - - - Y - - - - - Height - - - - - Width - - - - - Override display position - - - - - Check for updates to OpenLP - + Contraseña SongSelect: + Display Position + Posición de Pantalla + + + + X + X + + + + Y + Y + + + + Height + Altura + + + + Width + Ancho + + + + Override display position + Ignorar posición de pantalla + + + + Check for updates to OpenLP + Buscar actualizaciones para OpenLP + + + Unblank display when adding new live item - + Mostar proyección al agregar un ítem nuevo @@ -1746,375 +1847,392 @@ To cancel the First Time Wizard completely, press the finish button now. Language - + Idioma Please restart OpenLP to use your new language setting. - + Por favor reinicie OpenLP para usar su nuevo idioma. OpenLP.MainDisplay - + OpenLP Display - + Pantalla de OpenLP OpenLP.MainWindow - + &File - &Archivo + &Archivo - + &Import - &Importar + &Importar + + + + &Export + &Exportar + + + + &View + &Ver + + + + M&ode + M&odo + + + + &Tools + &Herramientas + + + + &Settings + &Preferencias + + + + &Language + &Idioma - &Export - &Exportar + &Help + &Ayuda - &View - &Ver - - - - M&ode - M&odo + Media Manager + Gestor de Medios - &Tools - &Herramientas + Service Manager + Gestor de Servicio - - &Settings - &Preferencias - - - - &Language - &Idioma + + Theme Manager + Gestor de Temas - &Help - &Ayuda - - - - Media Manager - Gestor de Medios + &New + &Nuevo - Service Manager - Gestor de Servicio + &Open + &Abrir - Theme Manager - Gestor de Temas + Open an existing service. + Abrir un servicio existente. - &New - &Nuevo - - - - &Open - &Abrir - - - - Open an existing service. - - - - &Save - &Guardar + &Guardar - + Save the current service to disk. - + Guardar el servicio actual en el disco. - + Save &As... - Guardar &Como... + Guardar &Como... + + + + Save Service As + Guardar Servicio Como + + + + Save the current service under a new name. + Guardar el servicio actual con un nombre nuevo. - Save Service As - Guardar Servicio Como + E&xit + &Salir - Save the current service under a new name. - - - - - E&xit - &Salir - - - Quit OpenLP - Salir de OpenLP + Salir de OpenLP - + &Theme - &Tema + &Tema - + &Configure OpenLP... - + &Configurar OpenLP... - + &Media Manager - Gestor de &Medios + Gestor de &Medios - + Toggle Media Manager - Alternar Gestor de Medios + Alternar Gestor de Medios - + Toggle the visibility of the media manager. - + Alernar la visibilidad del gestor de medios. - + &Theme Manager - Gestor de &Temas + Gestor de &Temas - + Toggle Theme Manager - Alternar Gestor de Temas + Alternar Gestor de Temas - + Toggle the visibility of the theme manager. - + Alernar la visibilidad del gestor de temas. - + &Service Manager - Gestor de &Servicio + Gestor de &Servicio - + Toggle Service Manager - Alternar Gestor de Servicio + Alternar Gestor de Servicio - + Toggle the visibility of the service manager. - + Alernar la visibilidad del gestor de servicio. - + &Preview Panel - &Panel de Vista Previa + &Panel de Vista Previa - + Toggle Preview Panel - Alternar Panel de Vista Previa + 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 - &Plugin List - Lista de &Plugins + More information about OpenLP + Más información acerca de OpenLP - List the Plugins - Lista de Plugins - - - - &User Guide - Guía de &Usuario + &Online Help + &Ayuda En Línea - &About - &Acerca De - - - - More information about OpenLP - Más información acerca de OpenLP - - - - &Online Help - &Ayuda En Línea + &Web Site + Sitio &Web - &Web Site - Sitio &Web + Use the system language, if available. + Usar el idioma del sistema, si esta disponible. - - Use the system language, if available. - + + Set the interface language to %s + Fijar el idioma de la interface en %s + + + + Add &Tool... + Agregar &Herramienta... - Set the interface language to %s - - - - - Add &Tool... - - - - Add an application to the list of tools. - + Agregar una aplicación a la lista de herramientas. - + &Default - + Por &defecto + + + + Set the view mode back to the default. + Modo de vizualización por defecto. + + + + &Setup + &Administración - Set the view mode back to the default. - + Set the view mode to Setup. + Modo de Administración. - &Setup - + &Live + En &vivo - Set the view mode to Setup. - - - - - &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/. - + Esta disponible para descarga la versión %s de OpenLP (actualmente esta ejecutando la versión %s). + +Puede descargar la última versión desde http://openlp.org/. OpenLP Version Updated - Versión de OpenLP Actualizada + Versión de OpenLP Actualizada - + OpenLP Main Display Blanked - Pantalla Principal de OpenLP en Blanco + Pantalla Principal de OpenLP en Blanco - + The Main Display has been blanked out - La Pantalla Principal esta en negro + La Pantalla Principal se ha puesto en blanco - + Default Theme: %s - + Tema por defecto: %s English Please add the name of your language here - Español + Español - + Configure &Shortcuts... - + Configurar &Atajos... - + Close OpenLP - + Cerrar OpenLP - + Are you sure you want to close OpenLP? - + ¿Desea realmente salir de OpenLP? - + Print the current Service Order. - - - - - Open &Data Folder... - - - - - Open the folder where songs, bibles and other data resides. - - - - - &Configure Display Tags - + Imprimir Orden del Servicio actual. + 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. + + + + &Configure Display Tags + &Configurar Etiquetas de Visualización + + + &Autodetect + &Autodetectar + + + + Update Theme Images + + + + + Update the preview images for all themes. + + + + + F1 @@ -2123,47 +2241,58 @@ You can download the latest version from http://openlp.org/. No Items Selected - + Nada Seleccionado - + &Add to selected Service Item - + &Agregar al ítem del Servico - + You must select one or more items to preview. - + Debe seleccionar uno o más ítems para visualizar. - + You must select one or more items to send live. - + Debe seleccionar uno o más ítems para proyectar. - + You must select one or more items. - + Debe seleccionar uno o más ítems. - + You must select an existing service item to add to. - + Debe seleccionar un servicio existente al cual añadir. - + Invalid Service Item - + Ítem de Servicio no válido - + You must select a %s service item. - + Debe seleccionar un(a) %s del servicio. - + Duplicate file name %s. Filename already exists in list + Nombre %s duplicado. +Este ya existe en la lista + + + + You must select one or more items to add. + + + + + No Search Results @@ -2172,42 +2301,42 @@ Filename already exists in list Plugin List - Lista de Plugins + Lista de Complementos Plugin Details - Detalles de Plugin + Detalles del Complemento Status: - Estado: + Estado: Active - Activo + Activo Inactive - Inactivo + Inactivo %s (Inactive) - + %s (Inactivo) %s (Active) - + %s (Activo) %s (Disabled) - + %s (Desabilitado) @@ -2215,12 +2344,12 @@ Filename already exists in list Fit Page - + Ajustar a Página Fit Width - + Ajustar a Ancho @@ -2228,80 +2357,80 @@ Filename already exists in list Options - + Opciones Close - + Cerrar 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 diap. si está disponible Include service item notes - + Incluir las notas de servicio Include play length of media items - + Incluir la duración de los medios Service Order Sheet - + Hoja de Orden de Servicio - Add page break before each text item. - + Add page break before each text item + Agregar salto de página antes de cada ítem OpenLP.ScreenList - + Screen - + Pantalla - + primary - + principal @@ -2309,256 +2438,257 @@ Filename already exists in list Reorder Service Item - + Reorganizar ítem de Servicio OpenLP.ServiceManager - - 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 - - - + Move to &top - + Mover al &inicio - + Move item to the top of the service. - + Mover el ítem al inicio del servicio. - + Move &up - + S&ubir - + Move item up one position in the service. - + Mover el ítem una posición hacia arriba. - + Move &down - + Ba&jar - + Move item down one position in the service. - + Mover el ítem una posición hacia abajo. - + Move to &bottom - + Mover al &final - + Move item to the end of the service. - + Mover el ítem al final del servicio. + + + + &Delete From Service + &Eliminar Del Servicio + + + + Delete the selected item from the service. + Eliminar el ítem seleccionado del servicio. + + + + &Add New Item + &Agregar un ítem nuevo + + + + &Add to Selected Item + &Agregar al ítem Seleccionado + + + + &Edit Item + &Editar ítem + + + + &Reorder Item + &Reorganizar ítem + + + + &Notes + &Notas + + + + &Change Item Theme + &Cambiar Tema de ítem + + + + File is not a valid service. +The content encoding is not UTF-8. + Este no es un servicio válido. +La codificación del contenido no es UTF-8. + + + + File is not a valid service. + El archivo no es un servicio válido. + + + + Missing Display Handler + Controlador de Pantalla Faltante + + + + Your item cannot be displayed as there is no handler to display it + No se puede mostrar el ítem porque no hay un controlador de pantalla disponible + + + + Your item cannot be displayed as the plugin required to display it is missing or inactive + El ítem no se puede mostar porque falta el complemento requerido o esta desabilitado + + + + &Expand all + &Expandir todo + + + + Expand all the service items. + Expandir todos los ítems del servicio. + + + + &Collapse all + &Colapsar todo + + + + Collapse all the service items. + Colapsar todos los ítems del servicio. + + + + Open File + Abrir Archivo + + + + OpenLP Service Files (*.osz) + Archivo de Servicio OpenLP (*.osz) + + + + Moves the selection down the window. + Mover selección hacia abajo. + + + + Move up + Subir + + + + Moves the selection up the window. + Mover selección hacia arriba. + + + + Go Live + Proyectar + + + + Send the selected item to Live. + Proyectar el ítem seleccionado. + + + + Modified Service + Servicio Modificado - &Delete From Service - + &Start Time + &Tiempo de Inicio - - Delete the selected item from the service. - - - - - &Add New Item - - - - - &Add to Selected Item - - - - - &Edit Item - &Editar Ítem - - - - &Reorder Item - - - - - &Notes - &Notas + + Show &Preview + Mostrar &Vista previa - &Change Item Theme - &Cambiar Tema de Ítem - - - - File is not a valid service. -The content encoding is not UTF-8. - - - - - File is not a valid service. - - - - - Missing Display Handler - - - - - Your item cannot be displayed as there is no handler to display it - - - - - Your item cannot be displayed as the plugin required to display it is missing or inactive - - - - - &Expand all - - - - - Expand all the service items. - - - - - &Collapse all - - - - - Collapse all the service items. - - - - - Open File - - - - - OpenLP Service Files (*.osz) - - - - - Moves the selection down the window. - - - - - Move up - - - - - Moves the selection up the window. - - - - - Go Live - - - - - Send the selected item to Live. - - - - - Modified Service - - - - - &Start Time - - - - - Show &Preview - - - - Show &Live - + Mostrar &Proyección - + The current service has been modified. Would you like to save this service? - + El servicio actual a sido modificado. ¿Desea guardar este servicio? - + File could not be opened because it is corrupt. - + No se pudo abrir el archivo porque está corrompido. - + Empty File - + Archivo Vacio - + This service file does not contain any data. - + El archivo de servicio no contiene ningún dato. - + Corrupt File - + Archivo Corrompido Custom Service Notes: - + Notas Personales del Servicio: Notes: - + Notas: Playing time: - + Tiempo de reproducción: - + Untitled Service - + Servicio Sin nombre - + This file is either corrupt or not an OpenLP 2.0 service file. - + El archivo está corrompido o no es una archivo de OpenLP 2.0. + + + + 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. @@ -2566,7 +2696,7 @@ The content encoding is not UTF-8. Service Item Notes - Notas de Elemento de Servicio + Notas de Elemento de Servicio @@ -2574,7 +2704,7 @@ The content encoding is not UTF-8. Configure OpenLP - + Configurar OpenLP @@ -2582,164 +2712,169 @@ The content encoding is not UTF-8. Customize Shortcuts - + Cambiar Atajos 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 siguientes botones para capturar un nuevo atajo primario y secundario, respectivamente. Default - + Por defecto Custom - + Personalizado Capture shortcut. - + Capturar atajo. Restore the default shortcut of this action. - + Restuarar el atajo por defecto para esta acción. Restore Default Shortcuts - + Restaurar los Atajos Por defecto Do you want to restore all shortcuts to their defaults? - + ¿Quiere restaurar todos los atajos a su valor original? OpenLP.SlideController - + Move to previous - Regresar al anterior + Ir al anterior - + Move to next - Ir al siguiente + Ir al siguiente - + Hide - + Ocultar - + Move to live - Proyectar en vivo + Proyectar en vivo - + Start continuous loop - Iniciar bucle continuo + Iniciar bucle - + Stop continuous loop - Detener el bucle + Detener bucle - + Delay between slides in seconds - Espera entre diapositivas en segundos + Espera entre diapositivas en segundos - + Start playing media - Iniciar la reproducción de medios + Iniciar la reproducción de medios - + Go To - + Ir A - + Edit and reload song preview - + Editar y actualizar la vista previa - + Blank Screen - + Pantalla en Blanco - + Blank to Theme - + Proyectar el Tema - + Show Desktop - + Mostrar Escritorio - + Previous Slide - + Diapositiva Anterior - + Next Slide - + Diapositiva Siguiente - + Previous Service - + Servicio Anterior - + Next Service - + Servicio Siguiente - + Escape Item - + Salir de ítem - + Start/Stop continuous loop + Iniciar/Detener bucle + + + + Add to Service @@ -2748,17 +2883,17 @@ The content encoding is not UTF-8. Spelling Suggestions - + Sugerencias Ortográficas Formatting Tags - + Etiquetas de Formato Language: - + Idioma: @@ -2766,52 +2901,52 @@ The content encoding is not UTF-8. 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 End time is set after the end of the media item - + El tiempo final se establece despues del final del medio Start time is after the End Time of the media item - + El tiempo de inicio se establece despues del Tiempo Final del medio @@ -2819,32 +2954,32 @@ The content encoding is not UTF-8. Select Image - + Seleccionar Imagen Theme Name Missing - + Falta Nombre de Tema There is no name for this theme. Please enter one. - + No existe nombre para este tema. Ingrese uno. Theme Name Invalid - + Nombre de Tema no válido Invalid theme name. Please enter one. - + Nombre de tema no válido. Ingrese uno. (%d lines per slide) - + (%d líneas por diap.) @@ -2852,188 +2987,189 @@ The content encoding is not UTF-8. Create a new theme. - + Crear un tema nuevo. Edit Theme - Editar Tema + Editar Tema Edit a theme. - + Editar un tema. Delete Theme - Eliminar Tema + Eliminar Tema Delete a theme. - + Eliminar un tema. Import Theme - Importar Tema + Importar Tema Import a theme. - + Importa un tema. Export Theme - Exportar Tema + 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 (por defecto) - + 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. - + You have not selected a theme. - + No ha seleccionado un tema. - + Save Theme - (%s) - Guardar Tema - (%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 + Seleccione el Archivo de Tema a Importar - + File is not a valid theme. The content encoding is not UTF-8. - + Este no es un tema válido. +La codificación del contenido no es UTF-8. - + File is not a valid theme. - + El archivo no es un tema válido. - + Theme %s is used in the %s plugin. - + El tema %s se usa en el complemento %s. &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) @@ -3041,242 +3177,242 @@ The content encoding is not UTF-8. 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 + Color Sólido Gradient - Gradiente + Gradiente Color: - + Color: Gradient: - + Gradiente: Horizontal - Horizontal + Horizontal Vertical - Vertical + Vertical Circular - 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: + Fuente: Size: - Tamaño: + Tamaño: Line Spacing: - + Epaciado de Líneas: &Outline: - + &Contorno: &Shadow: - + &Sombra: Bold - Negrita + 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 + Izquierda Right - Derecha + Derecha Center - Centro + Centro Output Area Locations - + Ubicación del Área de Proyección Allows you to change and move the main and footer areas. - + Le permite mover y cambiar la ubicación del área principal y de pié de página. &Main Area - + Área &Principal &Use default location - + &Usar ubicación por defecto X position: - + Posición x: px - px + px Y position: - + Posición y: Width: - Ancho: + Ancho: Height: - Altura: + Altura: Use default location - + Usar ubicación por defecto Save and Preview - + Guardar && Previsualizar View the theme and save it replacing the current one or change the name to create a new theme - + Ver el tema y guardarlo reemplazando el actual o cambiando el nombre para crear un tema nuevo Theme name: - + Nombre: This wizard will help you to create and edit your themes. Click the next button below to start the process by setting up your background. - + Este asistente le ayudará a crear y editar temas. Presione Siguiente para iniciar el proceso al establecer el fondo. Transitions: - + Transiciones: &Footer Area - + &Pie de Página Edit Theme - %s - + Editar Tema - %s @@ -3284,42 +3420,42 @@ The content encoding is not UTF-8. 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. - Utilice el tema de cada 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. + 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 el tema de las canciones individuales. Si el servicio no tiene un tema, utilizar el tema global. + 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. - Utilice el tema global, ignorado los temas asociados con el servicio o con las canciones. + Utilizar el tema global, ignorado los temas asociados con el servicio o con las canciones. @@ -3327,523 +3463,523 @@ The content encoding is not UTF-8. Error - Error + Error &Delete - &Eliminar + &Eliminar Delete the selected item. - + Eliminar el ítem 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. &Add - + &Agregar Advanced - Avanzado + Avanzado All Files - + Todos los Archivos Create a new service. - + Crear un servicio nuevo. &Edit - &Editar + &Editar Import - + Importar Length %s - + Duración %s Live - + En vivo Load - + Cargar New - + Nuevo New Service - Servicio Nuevo + Servicio Nuevo OpenLP 2.0 - OpenLP 2.0 + OpenLP 2.0 Open Service - Abrir Servicio + Abrir Servicio Preview - Vista Previa + Vista previa Replace Background - + Reemplazar Fondo Replace Live Background - + Reemplazar el Fondo Proyectado Reset Background - + Restablecer Fondo Reset Live Background - + Restablecer el Fondo Proyectado Save Service - Guardar Servicio + Guardar Servicio Service - + Servicio Start %s - + Inicio %s - + &Vertical Align: - + Alinea. &Vertical: Top - Superior + Superior Middle - Medio + Medio Bottom - Inferior + Inferior About - Acerca De + Acerca de Browse... - + Explorar... Cancel - + Cancelar CCLI number: - + Número CCLI: Empty Field - + Campo Vacío Export - + Exportar pt Abbreviated font pointsize unit - pt + pto Image - Imagen + Imagen Live Background Error - + Error del Fondo en proyección Live Panel - + Panel de Proyección 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 Preview Panel - + Panel de Vista Previa Print Service Order - + Imprimir Orden del Servicio s The abbreviated unit for seconds - + s Save && Preview - Guardar && Vista Previa + Guardar && Previsualizar Search - Buscar + Buscar You must select an item to delete. - + Debe seleccionar un ítem para eliminar. You must select an item to edit. - + Debe seleccionar un ítem para editar. Theme Singular - Tema + Tema Themes Plural - + Temas Version - + Versión Finished import. - Importación finalizada. + Importación finalizada. Format: - Formato: + Formato: Importing - Importando + Importando Importing "%s"... - + Importando "%s"... Select Import Source - Seleccione Origen de Importación + 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... + 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. Welcome to the Bible Import Wizard - Bienvenido al Asistente de Importación de Biblias + 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 + Autores © Copyright symbol. - + © Song Book Singular - Himnario + Himnario Song Books Plural - + Himnarios Song Maintenance - + Administración de Canciones Topic Singular - Categoría + Categoría Topics Plural - Categoría + Categorías Continuous - + Continuo Default - + Por defecto Display style: - + Estilo de presentació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 Verse Per Slide - + Verso por Diapositiva Verse Per Line - + Verso Por Línea View - - - - - View Model - + Vista Duplicate Error - + Error de Duplicación Unsupported File - + Archivo no Soportado Title and/or verses not found - + Título y/o verso no encontrado XML syntax error + Error XML de sintaxis + + + + View Mode OpenLP.displayTagDialog - + Configure Display Tags - + Configurar Etiquetas de Visualización @@ -3851,103 +3987,103 @@ The content encoding is not UTF-8. <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. - - - - - Load a new Presentation - - - - - Delete the selected Presentation - - - - - Preview the selected Presentation - - - - - Send the selected Presentation live - - - - - Add the selected Presentation to the service - + <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 + Presentación Presentations name plural - Presentaciones + Presentaciones Presentations container title - Presentaciones + Presentaciones + + + + Load a new Presentation. + Cargar una Presentación nueva. + + + + Delete the selected Presentation. + Eliminar la Presentación seleccionada. + + + + Preview the selected Presentation. + Visualizar 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. PresentationPlugin.MediaItem - + Select Presentation(s) - Seleccionar Presentación(es) + Seleccionar Presentación(es) - + Automatic - + Automático - + Present using: - Mostrar usando: + Mostrar usando: - + File Exists - + Ya existe el Archivo - + A presentation with that filename already exists. - Ya existe una presentación con ese nombre. + Ya existe una presentación con este nombre. - + This type of presentation is not supported. - + No existe soporte para este tipo de presentación. - + Presentations (%s) - + Presentaciones (%s) - + Missing Presentation - + Presentación faltante - + The Presentation %s no longer exists. - + La Presentación %s ya no esta disponible. - + The Presentation %s is incomplete, please reload. - + La Presentación %s esta incompleta, por favor recargela. @@ -3955,17 +4091,17 @@ The content encoding is not UTF-8. Available Controllers - Controladores Disponibles + Controladores Disponibles Allow presentation application to be overriden - + Permitir tomar control sobre el programa de presentación %s (unavailable) - + %s (no disponible) @@ -3973,42 +4109,52 @@ The content encoding is not UTF-8. <strong>Remote Plugin</strong><br />The remote plugin provides the ability to send messages to a running version of OpenLP on a different computer via a web browser or through the remote API. - + <strong>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 - Remotas + Remotos Remote container title - + Acceso remoto RemotePlugin.RemoteTab - + Serve on IP address: - + Dirección IP a Servir: - + Port number: + Puerto número: + + + + Server Settings + Config. de Servidor + + + + Remote URL: - - Server Settings + + Stage view URL: @@ -4017,65 +4163,65 @@ The content encoding is not UTF-8. &Song Usage Tracking - + &Historial de Uso &Delete Tracking Data - + &Eliminar datos de Historial Delete song usage data up to a specified date. - + Borrar el historial de datos hasta la fecha especificada. &Extract Tracking Data - + &Extraer datos de Historial Generate a report on song usage. - + Generar un reporte del uso de las canciones. Toggle Tracking - + Alternar Historial Toggle the tracking of song usage. - + Alternar seguimiento 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 @@ -4083,27 +4229,27 @@ The content encoding is not UTF-8. 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 realmente 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. @@ -4111,54 +4257,56 @@ The content encoding is not UTF-8. Song Usage Extraction - + Extracción del Historial Select Date Range - + Seleccionar Rango de Fechas to - hasta + hasta Report Location - Ubicación de Reporte + Ubicación de Reporte Output File Location - Archivo de Salida + Archivo de Salida usage_detail_%s_%s.txt - + historial_%s_%s.txt Report Creation - + Crear Reporte Report %s has been successfully created. - + Reporte +%s +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. @@ -4166,173 +4314,176 @@ has been successfully created. &Song - &Canción + &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... - - - - - 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 - + Reindexando canciones... Song name singular - Canción + Canción Songs name plural - Canciones + Canciones Songs container title - Canciones + 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. - + La configuración de códigos de página es responsable +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. 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. + Visualizar 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. @@ -4340,37 +4491,37 @@ The encoding is responsible for the correct character representation. Author Maintenance - Mantenimiento de Autores + Administración de Autores Display name: - Mostrar: + Mostrar: First name: - Nombre: + Nombre: Last name: - Apellido: + Apellido: You need to type in the first name of the author. - Tiene que escribir el nombre del autor. + Debe escribir el nombre del autor. You need to type in the last name of the author. - Debe ingresar el apellido del autor. + 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? @@ -4378,7 +4529,7 @@ The encoding is responsible for the correct character representation. The file does not have a valid extension. - + El archivo no tiene una extensión válida. @@ -4386,7 +4537,7 @@ The encoding is responsible for the correct character representation. Administered by %s - + Administrado por %s @@ -4394,199 +4545,214 @@ The encoding is responsible for the correct character representation. Song Editor - Editor de Canción + 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 + Título && Letra &Add to Song - &Agregar a Canción + &Agregar a Canción &Remove - &Quitar + &Quitar &Manage Authors, Topics, Song Books - + Ad&ministrar Autores, Categorías, Himnarios A&dd to Song - A&gregar a Canción + A&gregar a Canción R&emove - &Quitar + &Quitar Book: - Libro: + 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 + Información de Derechos de Autor Comments - Comentarios + Comentarios Theme, Copyright Info && Comments - Tema, Derechos de Autor && Comentarios + 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 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. Warning - + Advertencia The verse order is invalid. There is no verse corresponding to %s. Valid entries are %s. - + El orden de los versos no es válido. Ningún verso corresponde a %s. Las entradas válidas so %s. You have not used %s anywhere in the verse order. Are you sure you want to save the song like this? - + No ha utilizado %s en el orden de los versos. ¿Desea guardar la canción de esta manera? 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. - + You need to type some text in to the verse. - + Debe ingresar algún texto en el verso. SongsPlugin.EditVerseForm - + Edit Verse - Editar Verso + Editar Verso - + &Verse type: + Tipo de &verso: + + + + &Insert + &Insertar + + + + &Split - - &Insert + + Split a slide into two only if it does not fit on the screen as one slide. + + + + + Split a slide into two by inserting a verse splitter. @@ -4595,81 +4761,81 @@ The encoding is responsible for the correct character representation. Song Export Wizard - + Asistente para Exportar Canciones This wizard will help to export your songs to the open and free OpenLyrics worship song format. - + Este asistente le ayudará a exportar canciones al formato OpenLyrics que es gratuito y de código abierto. Select Songs - + Seleccione Canciones Uncheck All - + Desmarcar Todo Check All - + Marcar Todo Select Directory - - - - - Select the directory you want the songs to be saved. - + 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... Check the songs you want to export. - + Revise las canciones a exportar. 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. @@ -4678,156 +4844,156 @@ The encoding is responsible for the correct character representation. 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 Filename: - + Nombre: Add Files... - + Agregar Archivos... Remove File(s) - + Eliminar Archivo(s) The Songs of Fellowship importer has been disabled because OpenLP cannot find OpenOffice.org on your computer. - + Las canciones de Fellowship se han deshabilitado porque OpenOffice.org no se encuentra en este equipo. The generic document/presentation importer has been disabled because OpenLP cannot find OpenOffice.org on your computer. - + El importador Documento/Presentación se ha desabilitado porque OpenOffice.org no se encuentra en este equipo. Please wait while your songs are imported. - + Por favor espere mientras se exportan las canciones. The OpenLyrics importer has not yet been developed, but as you can see, we are still intending to do so. Hopefully it will be in the next release. - + El importador OpenLyrics no esta desarrollado, pero puede notar que tenemos la intención de hacerlo. Esperamos incluirlo en la siguiente versión. OpenLP 2.0 Databases - + Base de Datos OpenLP 2.0 openlp.org v1.x Databases - + Base de datos openlp v1.x Words Of Worship Song Files - + Archivo Words Of Worship Songs Of Fellowship Song Files - + Archivo Songs Of Fellowship SongBeamer Files - + Archivo SongBeamer SongShow Plus Song Files - + Archivo SongShow Plus You need to specify at least one document or presentation file to import from. - + Debe especificar al menos un documento o presentación para importar. Foilpresenter Song Files - + Archivo Foilpresenter Copy - + Copiar Save to File - + Guardar a Archivo SongsPlugin.MediaItem - - Maintain the lists of authors, topics and books - Administrar la lista de autores, categorías y libros - - - + Titles - Títulos + Títulos - + Lyrics - Letra + Letra - + Delete Song(s)? - + ¿Eliminar Canción(es)? - + CCLI License: - + Licensia CCLI: - + Entire Song - + Canción Completa - + Are you sure you want to delete the %n selected song(s)? - - - + + ¿Desea realmente borrar %n canción(es) seleccionada(s)? + ¿Desea realmente borrar %n canciones seleccionadas? + + + Maintain the lists of authors, topics and books. + Administrar la lista de autores, categorías y libros. + SongsPlugin.OpenLP1SongImport Not a valid openlp.org 1.x song database. - + Base de datos openlp.org 1.x no válida. @@ -4835,7 +5001,7 @@ The encoding is responsible for the correct character representation. Not a valid OpenLP 2.0 song database. - + Base de datos OpenLP 2.0 no válida. @@ -4843,7 +5009,7 @@ The encoding is responsible for the correct character representation. Exporting "%s"... - + Exportando "%s"... @@ -4851,22 +5017,22 @@ The encoding is responsible for the correct character representation. 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. @@ -4874,12 +5040,12 @@ The encoding is responsible for the correct character representation. Finished export. - + Exportación finalizada. Your song export failed. - + La importación falló. @@ -4887,12 +5053,12 @@ The encoding is responsible for the correct character representation. copyright - + derechos de autor The following songs could not be imported: - + Las siguientes canciones no se importaron: @@ -4900,7 +5066,7 @@ The encoding is responsible for the correct character representation. Your song import failed. - + La importación falló. @@ -4908,107 +5074,107 @@ The encoding is responsible for the correct character representation. 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 topic, because it already exists. - + No se pudo guardar la categoría, porque esta ya existe. Delete Author - Borrar Autor + Borrar Autor Are you sure you want to delete the selected author? - ¿Está seguro que desea eliminar el autor seleccionado? + ¿Está seguro que 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 + Borrar Categoría Are you sure you want to delete the selected topic? - ¿Está seguro que desea eliminar la categoría seleccionada? + ¿Está seguro que 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 + Eliminar Libro Are you sure you want to delete the selected book? - ¿Está seguro de que quiere eliminar el libro seleccionado? + ¿Está seguro de que quiere 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. Could not save your modified author, because the author already exists. - + No se pudo guardar el autor, porque este ya existe. 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? @@ -5016,27 +5182,27 @@ The encoding is responsible for the correct character representation. Songs Mode - Modo de canciones + 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 Add missing songs when opening service - + Agregar canciones faltantes al abrir el servicio @@ -5044,17 +5210,17 @@ The encoding is responsible for the correct character representation. Topic Maintenance - Mantenimiento de Categorías + Administración de Categorías Topic name: - Categoría: + Categoría: You need to type in a topic name. - + Debe escribir un nombre para la categoría. @@ -5062,37 +5228,37 @@ The encoding is responsible for the correct character representation. Verse - Verso + Verso Chorus - Coro + Coro Bridge - Puente + Puente Pre-Chorus - Pre-Coro + Pre-Coro Intro - Intro + Intro Ending - Final + Final Other - Otro + Otro @@ -5100,7 +5266,7 @@ The encoding is responsible for the correct character representation. Themes - + Temas diff --git a/resources/i18n/et.ts b/resources/i18n/et.ts index 606156531..b9d21b950 100644 --- a/resources/i18n/et.ts +++ b/resources/i18n/et.ts @@ -1,5 +1,5 @@ - + AlertPlugin.AlertForm @@ -184,22 +184,22 @@ Kas tahad sellest hoolimata jätkata? BiblePlugin.HTTPBible - + Download Error Tõrge allalaadimisel - + Parse Error Parsimise viga - + 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. - + 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. @@ -207,12 +207,12 @@ Kas tahad sellest hoolimata jätkata? BiblePlugin.MediaItem - + Bible not fully loaded. Piibel ei ole täielikult laaditud. - + 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? @@ -224,46 +224,6 @@ Kas tahad sellest hoolimata jätkata? &Bible &Piibel - - - <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 plugina abil saab teenistuse ajal kuvada erinevate tõlgete piiblisalme. - - - - 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 teenistusse - Bible @@ -283,47 +243,87 @@ Kas tahad sellest hoolimata jätkata? 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. + + 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. - + Your scripture reference is either not supported by OpenLP or is invalid. Please make sure your reference conforms to one of the following patterns: Book Chapter @@ -342,7 +342,7 @@ Raamat peatükk:salm-salm,peatükk:salm-salm Raamat peatükk:salm-peatükk:salm - + No Bibles Available Ühtegi Piiblit pole saadaval @@ -519,18 +519,6 @@ Muudatused ei rakendu juba teenistusesse lisatud salmidele. Your Bible import failed. Piibli importimine nurjus. - - - Starting Registering bible... - Piibli registreerimise alustamine... - - - - Registered bible. Please note, that verses will be downloaded on -demand and thus an internet connection is required. - Piibel on registreeritud. Pane tähele, et salmid laaditakse alla -vajadusel, seetõttu on vajalik internetiühendus. - Permissions: @@ -576,74 +564,75 @@ vajadusel, seetõttu on vajalik internetiühendus. openlp.org 1.x Bible Files openlp.org 1.x piiblifailid + + + Registering Bible... + + + + + Registered Bible. Please note, that verses will be downloaded on +demand and thus an internet connection is required. + + BiblesPlugin.MediaItem - + Quick Kiirotsing - + Find: Otsing: - - Results: - Tulemused: - - - + Book: Raamat: - + Chapter: Peatükk: - + Verse: Salm: - + From: Algus: - + To: Kuni: - + Text Search Tekstiotsing - - Clear - Puhasta - - - - Keep - Säilita - - - + Second: Teine: - + Scripture Reference Salmiviide + + + Toggle to keep or clear the previous results. + + BiblesPlugin.Opensong @@ -717,12 +706,12 @@ vajadusel, seetõttu on vajalik internetiühendus. Kõigi slaidide muutmine ühekorraga. - + Split Slide Slaidi tükeldamine - + Split a slide into two by inserting a slide splitter. Tükelda slaid kaheks, sisestades slaidide eraldaja. @@ -737,12 +726,12 @@ vajadusel, seetõttu on vajalik internetiühendus. &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 @@ -751,49 +740,19 @@ vajadusel, seetõttu on vajalik internetiühendus. Ed&it All Muuda &kõiki + + + Split a slide into two only if it does not fit on the screen as one slide. + + + + + Insert Slide + + CustomsPlugin - - - Import a Custom - Impordi kohandatud - - - - Load a new Custom - Laadi uus kohandatud - - - - Add a new Custom - Lisa uus kohandatud - - - - Edit the selected Custom - Muuda valitud kohandatut - - - - Delete the selected Custom - Kustuta valitud kohandatud - - - - Preview the selected Custom - Valitud kohandatu eelvaade - - - - Send the selected Custom live - Valitud kohandatu saatmine ekraanile - - - - Add the selected Custom to the service - Valitud kohandatud slaidi lisamine teenistusse - Custom @@ -812,11 +771,51 @@ vajadusel, seetõttu on vajalik internetiühendus. container title Kohandatud + + + Load a new Custom. + Uue kohandatud slaidi laadimine. + + + + Import a Custom. + Kohandatud slaidi importimine. + + + + Add a new Custom. + Uue kohandatud slaidi lisamine. + + + + Edit the selected Custom. + Valitud kohandatud slaidi muutmine. + + + + Delete the selected Custom. + Valitud kohandatud slaidi kustutamine. + + + + Preview the selected Custom. + Valitud kohandatud slaidi eelvaade. + + + + Send the selected Custom live. + Valitud kohandatud slaidi saatmine ekraanile. + + + + Add the selected Custom to the service. + Valitud kohandatud slaidi lisamine teenistusele. + GeneralTab - + General Üldine @@ -828,41 +827,6 @@ vajadusel, seetõttu on vajalik internetiühendus. <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 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. - - - 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 eelvaatlemine - - - - Send the selected Image live - Valitud pildi saatmine ekraanile - - - - Add the selected Image to the service - Valitud pildi lisamine teenistusele - Image @@ -881,11 +845,46 @@ vajadusel, seetõttu on vajalik internetiühendus. 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 eelvaade. + + + + Send the selected Image live. + Valitud pildi saatmine ekraanile. + + + + Add the selected Image to the service. + Valitud pildi lisamine teenistusele. + ImagePlugin.ExceptionDialog - + Select Attachment Manuse valimine @@ -893,38 +892,38 @@ vajadusel, seetõttu on vajalik internetiühendus. ImagePlugin.MediaItem - + Select Image(s) Pildi (piltide) valimine - + You must select an image to delete. Pead 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: %sKas 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. @@ -936,41 +935,6 @@ Do you want to add the other images anyway? <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. <strong>Meediaplugin</strong><br />Meedia plugin võimaldab audio- ja videofailide taasesitamist. - - - Load a new Media - Uue meedia laadimine - - - - Add a 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 teenistusse - Media @@ -989,41 +953,76 @@ Do you want to add the other images anyway? container title Meedia + + + Load a new Media. + Uue meedia laadimine. + + + + Add a 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 eelvaade. + + + + Send the selected Media live. + Valitud meedia saatmine ekraanile. + + + + Add the selected Media to the service. + Valitud meedia lisamine teenistusele. + MediaPlugin.MediaItem - + Select Media Meedia valimine - + You must select a media file to delete. Pead valima meedia, mida kustutada. - + Missing Media File Puuduv meediafail - + The file %s no longer exists. Faili %s ei ole enam olemas. - + 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. - + Videos (%s);;Audio (%s);;%s (*) Videod (%s);;Audio (%s);;%s (*) @@ -1052,17 +1051,17 @@ Do you want to add the other images anyway? OpenLP.AboutForm - + Credits Autorid - + License Litsents - + Contribute Aita kaasa @@ -1072,34 +1071,17 @@ Do you want to add the other images anyway? kompileering %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 OpenOffice.org, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. - -Find out more about OpenLP: http://openlp.org/ - -OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider contributing by using the button below. - OpenLP <version><revision> - avatud lähtekoodiga laulusõnade kuvaja - -OpenLP on vaba esitlustarkvara kirikusse, võib öelda ka laulusõnade projitseerimise tarkvara, mis sobib laulusõnade, piiblisalmide, videote, piltide ja isegi esitluste (kui OpenOffice.org, PowerPoint või PowerPoint Viewer on paigaldatud) kuvamiseks dataprojektori kaudu kirikus. - -OpenLP kohta võid lähemalt uurida aadressil: http://openlp.org/ - -OpenLP on kirjutatud vabatahtlike poolt. Kui sulle meeldiks näha rohkem kristlikku tarkvara, siis võid annetada, selleks klõpsa alumisele nupule. - - - + 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. - + Project Lead %s @@ -1223,17 +1205,21 @@ vabastada pattudest. Me jagame seda tarkvara tasuta, sest Tema on meid vabastanud. - - Copyright © 2004-2011 Raoul Snyman -Portions copyright © 2004-2011 Tim Bentley, Jonathan Corwin, Michael Gorven, Scott Guerrieri, -Meinert Jordan, Andreas Preikschat, Christian Richter, Philip -Ridout, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Carsten -Tinggaard, Frode Woldsund - Autoriõigused © 2004-2011 Raoul Snyman -Osalised autoriõigused © 2004-2011 Tim Bentley, Jonathan Corwin, -Michael Gorven, Scott Guerrieri, Meinert Jordan, Andreas Preikschat, -Christian Richter, Philip Ridout, Maikel Stuivenberg, Martin Thompson, -Jon Tibble, Carsten Tinggaard, Frode Woldsund + + 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 contributing by using the button below. + + + + + Copyright © 2004-2011 %s +Portions copyright © 2004-2011 %s + @@ -1301,7 +1287,7 @@ Jon Tibble, Carsten Tinggaard, Frode Woldsund Preview items when clicked in Media Manager - + Elemendi eelvaate kuvamine, kui sellele klõpsatakse meediahalduris @@ -1311,86 +1297,86 @@ Jon Tibble, Carsten Tinggaard, Frode Woldsund Click to select a color. - + Klõpsa värvi valimiseks. Browse for an image file to display. - + Vali pilt, mida kuvada. Revert to the default OpenLP logo. - + Vaikimisi OpenLP logo kasutamine. OpenLP.DisplayTagDialog - + Edit Selection Valiku muutmine - - Update - Uuenda - - - + Description Kirjeldus - + Tag Silt - + Start tag Alustamise silt - + End tag Lõpu silt - + Default Vaikimisi - + Tag Id Märgise ID - + Start HTML HTML alguses - + End HTML HTML lõpus + + + Save + + OpenLP.DisplayTagTab - + Update Error Tõrge uuendamisel - + Tag "n" already defined. Silt "n" on juba defineeritud. - + Tag %s already defined. Silt %s on juba defineeritud. @@ -1430,7 +1416,7 @@ Jon Tibble, Carsten Tinggaard, Frode Woldsund Pane fail kaasa - + Description characters to enter : %s Puuduvad tähed kirjelduses: %s @@ -1486,7 +1472,7 @@ Version: %s - + *OpenLP Bug Report* Version: %s @@ -1582,77 +1568,72 @@ Version: %s Tere tulemast esmakäivituse nõustajasse - - This wizard will help you to configure OpenLP for initial use. Click the next button below to start the process of selection your initial options. - Nõustaja aitab teha esmase seadistuse OpenLP kasutamiseks. Klõpsa all asuval edasi nupul, et alustada lähtevalikute tegemist. - - - + Activate required Plugins Vajalike pluginate sisselülitamine - + Select the Plugins you wish to use. Vali pluginad, mida tahad kasutada. - + Songs Laulud - + Custom Text Kohandatud tekst - + 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 - + No Internet Connection Internetiühendust pole - + Unable to detect an Internet connection. Internetiühendust ei leitud. - + 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. To re-run the First Time Wizard and import this sample data at a later stage, press the cancel button now, check your Internet connection, and restart OpenLP. @@ -1665,192 +1646,197 @@ Esmakäivituse nõustaja taaskäivitamiseks hiljem, klõpsa praegu loobu nupule, Esmakäivituse nõustajast loobumiseks klõpsa lõpetamise nupule. - + 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. - + Default Settings Vaikimisi sätted - + Set up default settings to be used by OpenLP. OpenLP jaoks vaikimisi sätete määramine. - + Setting Up And Importing Seadistamine ja importimine - + Please wait while OpenLP is set up and your data is imported. Palun oota, kuni OpenLP on seadistatud ning sinu andmed on imporditud. - + 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. + + OpenLP.GeneralTab - + General Üldine - + Monitors Monitorid - + Select monitor for output display: Vali väljundkuva ekraan: - + Display if a single screen Kuvatakse, 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 Enne uue teenistuse alustamist küsitakse, kas salvestada avatud teenistus - + Automatically preview next item in service Järgmise teenistuse elemendi automaatne eelvaade - + Slide loop delay: Slaidi pikkus korduses: - + sec sek - + CCLI Details CCLI andmed - + SongSelect username: SongSelecti kasutajanimi: - + SongSelect password: SongSelecti parool: - + Display Position Kuva asukoht - + X X - + Y Y - + Height Kõrgus - + Width Laius - + Override display position Kuva asukoht määratakse jõuga - + Check for updates to OpenLP OpenLP uuenduste kontrollimine - + Unblank display when adding new live item - + Uue elemendi saatmisel ekraanile võetakse ekraani tühjendamine maha @@ -1869,7 +1855,7 @@ Esmakäivituse nõustajast loobumiseks klõpsa lõpetamise nupule. OpenLP.MainDisplay - + OpenLP Display OpenLP kuva @@ -1877,282 +1863,282 @@ Esmakäivituse nõustajast loobumiseks klõpsa lõpetamise nupule. 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 Kujunduse 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. @@ -2162,17 +2148,17 @@ Esmakäivituse nõustajast loobumiseks klõpsa lõpetamise nupule. 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 @@ -2192,45 +2178,60 @@ Sa võid viimase versiooni alla laadida aadressilt http://openlp.org/.Eesti - + Configure &Shortcuts... &Kiirklahvide seadistamine... - + Close OpenLP OpenLP sulgemine - + Are you sure you want to close OpenLP? Kas oled kindel, et tahad OpenLP sulgeda? - + Print the current Service Order. Praeguse teenistuse järjekorra printimine. - + &Configure Display Tags &Kuvasiltide seadistamine - + 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 + + + + + Update the preview images for all themes. + + + + + F1 + + OpenLP.MediaManagerItem @@ -2240,44 +2241,55 @@ Sa võid viimase versiooni alla laadida aadressilt http://openlp.org/.Ü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. - + Duplicate file name %s. Filename already exists in list + Korduv failinimi %s. +Failinimi on loendis juba olemas + + + + You must select one or more items to add. + + + + + No Search Results @@ -2401,19 +2413,19 @@ Filename already exists in list - Add page break before each text item. - + Add page break before each text item + Iga tekstikirje algab uuelt lehelt OpenLP.ScreenList - + Screen Ekraan - + primary peamine @@ -2429,251 +2441,251 @@ Filename already exists in list OpenLP.ServiceManager - - Load an existing service - Olemasoleva teenistuse laadimine - - - - Save this service - Selle teenistuse salvestamine - - - - Select a theme for the service - Vali teenistuse jaoks kujundus - - - + Move to &top Tõsta ü&lemiseks - + Move item to the top of the service. Teenistuse algusesse tõstmine. - + Move &up Liiguta &üles - + Move item up one position in the service. Elemendi liigutamine teenistuses ühe koha võrra ettepoole. - + Move &down Liiguta &alla - + Move item down one position in the service. Elemendi liigutamine teenistuses ühe koha võrra tahapoole. - + Move to &bottom Tõsta &alumiseks - + Move item to the end of the service. Teenistuse lõppu tõstmine. - + &Delete From Service &Kustuta teenistusest - + Delete the selected item from the service. Valitud elemendi kustutamine teenistusest. - + &Add New Item &Lisa uus element - + &Add to Selected Item &Lisa valitud elemendile - + &Edit Item &Muuda kirjet - + &Reorder Item &Muuda elemendi kohta järjekorras - + &Notes &Märkmed - + &Change Item Theme &Muuda elemendi kujundust - + File is not a valid service. The content encoding is not UTF-8. Fail ei ole sobiv teenistus. Sisu ei ole UTF-8 kodeeringus. - + File is not a valid service. Fail pole sobiv teenistus. - + Missing Display Handler Puudub kuvakäsitleja - + Your item cannot be displayed as there is no handler to display it Seda elementi pole võimalik näidata ekraanil, kuna puudub seda käsitsev programm - + Your item cannot be displayed as the plugin required to display it is missing or inactive Seda elementi pole võimalik näidata ekraanil, kuna puudub seda käsitsev programm - + &Expand all &Laienda kõik - + Expand all the service items. Kõigi teenistuse kirjete laiendamine. - + &Collapse all &Ahenda kõik - + Collapse all the service items. Kõigi teenistuse kirjete ahendamine. - + Open File Faili avamine - + OpenLP Service Files (*.osz) OpenLP teenistuse failid (*.osz) - + Moves the selection down the window. Valiku tõstmine aknas allapoole. - + Move up Liiguta üles - + Moves the selection up the window. Valiku tõstmine aknas ülespoole. - + Go Live Ekraanile - + Send the selected item to Live. Valitud kirje saatmine ekraanile. - + Modified Service Teenistust on muudetud - + &Start Time &Alguse aeg - + Show &Preview Näita &eelvaadet - + Show &Live Näita &ekraanil - + The current service has been modified. Would you like to save this service? Praegust teensitust on muudetud. Kas tahad selle teenistuse salvestada? - + File could not be opened because it is corrupt. - + Faili pole võimalik avada, kuna see on rikutud. - + Empty File - + Tühi fail - + This service file does not contain any data. - + Selles teenistuse failis pole andmeid. - + Corrupt File - + Rikutud fail Custom Service Notes: - + Kohandatud teenistuse märkmed: Notes: - + Märkmed: Playing time: - + Kestus: - + Untitled Service - + Pealkirjata teenistus - + This file is either corrupt or not an OpenLP 2.0 service file. - + See fail on rikutud või pole see OpenLP 2.0 teenistuse fail. + + + + Load an existing service. + Olemasoleva teenistuse laadimine. + + + + Save this service. + Selle teenistuse salvestamine. + + + + Select a theme for the service. + Teenistuse jaoks kujunduse valimine. @@ -2727,7 +2739,7 @@ Sisu ei ole UTF-8 kodeeringus. 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. @@ -2742,119 +2754,124 @@ Sisu ei ole UTF-8 kodeeringus. 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? OpenLP.SlideController - + Move to previous Eelmisele liikumine - + Move to next Järgmisele liikumine - + Hide Peida - + Move to live Tõsta ekraanile - + Edit and reload song preview Muuda ja kuva laulu eelvaade uuesti - + Start continuous loop Katkematu korduse alustamine - + Stop continuous loop Katkematu korduse lõpetamine - + Delay between slides in seconds Viivitus slaidide vahel sekundites - + Start playing media Meediaesituse alustamine - + Go To Liigu kohta - + Blank Screen Ekraani tühjendamine - + Blank to Theme Kujunduse tausta näitamine - + Show Desktop Töölaua näitamine - + Previous Slide Eelmine slaid - + Next Slide Järgmine slaid - + Previous Service Eelmine teenistus - + Next Service Järgmine teenistus - + Escape Item Kuva sulgemine - + Start/Stop continuous loop + Lõputu korduse alustamine/lõpetamine + + + + Add to Service @@ -2873,7 +2890,7 @@ Sisu ei ole UTF-8 kodeeringus. Language: - + Keel: @@ -2896,37 +2913,37 @@ Sisu ei ole UTF-8 kodeeringus. Item Start and Finish Time - + Elemendi algus ja lõpp Start - + Algus Finish - + Lõpp Length - + Pikkus Time Validation Error - + Valesti sisestatud aeg End time is set after the end of the media item - + Lõpu aeg on pärast meedia lõppu Start time is after the End Time of the media item - + Alguse aeg on pärast meedia lõppu @@ -3025,69 +3042,69 @@ Sisu ei ole UTF-8 kodeeringus. 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 kujunduse 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. The content encoding is not UTF-8. See fail ei ole korrektne kujundus. Sisu kodeering ei ole UTF-8. - + File is not a valid theme. See fail ei ole sobilik kujundus. @@ -3107,47 +3124,47 @@ Sisu kodeering ei ole UTF-8. &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) @@ -3724,7 +3741,7 @@ Sisu kodeering ei ole UTF-8. Versioon - + &Vertical Align: &Vertikaaljoondus: @@ -3779,7 +3796,7 @@ Sisu kodeering ei ole UTF-8. Valmis. - + Starting import... Importimise alustamine... @@ -3869,12 +3886,12 @@ Sisu kodeering ei ole UTF-8. File - + Fail Help - + Abi @@ -3890,7 +3907,7 @@ Sisu kodeering ei ole UTF-8. Live Toolbar - + Ekraani tööriistariba @@ -3901,17 +3918,17 @@ Sisu kodeering ei ole UTF-8. OpenLP is already running. Do you wish to continue? - + OpenLP juba töötab. Kas tahad jätkata? Settings - + Sätted Tools - + Tööriistad @@ -3926,17 +3943,12 @@ Sisu kodeering ei ole UTF-8. View - - - - - View Model - + Vaade Duplicate Error - + Korduse viga @@ -3946,18 +3958,23 @@ Sisu kodeering ei ole UTF-8. Title and/or verses not found - + Pealkirja ja/või salme ei leitud XML syntax error + XML süntaksi viga + + + + View Mode OpenLP.displayTagDialog - + Configure Display Tags Kuvasiltide seadistamine @@ -3969,31 +3986,6 @@ Sisu kodeering ei ole UTF-8. <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. <strong>Esitluse plugin</strong><br />Esitluse plugin võimaldab näidata esitlusi erinevate programmidega. Saadaolevate esitlusprogrammide valik on saadaval valikukastis. - - - Load a new Presentation - Uue esitluse laadimine - - - - Delete the selected Presentation - Valitud esitluse kustutamine - - - - Preview the selected Presentation - Valitud esitluse eelvaatlus - - - - Send the selected Presentation live - Valitud esitluse saatmine ekraanile - - - - Add the selected Presentation to the service - Valitud esitluse lisamine teenistusse - Presentation @@ -4012,56 +4004,81 @@ Sisu kodeering ei ole UTF-8. 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. + PresentationPlugin.MediaItem - + Select Presentation(s) Esitlus(t)e valimine - + Automatic Automaatne - + Present using: Esitluseks kasutatakse: - + File Exists Fail on olemas - + A presentation with that filename already exists. Sellise nimega esitluse fail on juba olemas. - + This type of presentation is not supported. Seda liiki esitlus ei ole toetatud. - + Presentations (%s) Esitlused (%s) - + Missing Presentation Puuduv esitlus - + The Presentation %s no longer exists. Esitlust %s enam ei ole. - + The Presentation %s is incomplete, please reload. Esitlus %s ei ole täielik, palun laadi see uuesti. @@ -4113,20 +4130,30 @@ Sisu kodeering ei ole UTF-8. RemotePlugin.RemoteTab - + Serve on IP address: Saadaval IP-aadressilt: - + Port number: Pordi number: - + Server Settings Serveri sätted + + + Remote URL: + + + + + Stage view URL: + + SongUsagePlugin @@ -4191,7 +4218,7 @@ Sisu kodeering ei ole UTF-8. Song Usage - + Laulude kasutus @@ -4311,36 +4338,6 @@ on edukalt loodud. Reindexing songs... Laulude kordusindekseerimine... - - - 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 eelvaatlus - - - - Send the selected Song live - Valitud laulu saatmine ekraanile - - - - Add the selected Song to the service - Valitud laulu lisamine teenistusele - Song @@ -4454,6 +4451,36 @@ Kodeering on vajalik märkide õige esitamise jaoks. 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. + SongsPlugin.AuthorsForm @@ -4498,7 +4525,7 @@ Kodeering on vajalik märkide õige esitamise jaoks. The file does not have a valid extension. - + Sellel failil pole sobiv laiend. @@ -4687,7 +4714,7 @@ Kodeering on vajalik märkide õige esitamise jaoks. Pead lisama sellele laulule autori. - + You need to type some text in to the verse. Salm peab sisaldama teksti. @@ -4695,20 +4722,35 @@ Kodeering on vajalik märkide õige esitamise jaoks. SongsPlugin.EditVerseForm - + Edit Verse Salmi muutmine - + &Verse type: &Salmi liik: - + &Insert &Sisesta + + + &Split + + + + + Split a slide into two only if it does not fit on the screen as one slide. + + + + + Split a slide into two by inserting a verse splitter. + + SongsPlugin.ExportWizardForm @@ -4747,11 +4789,6 @@ Kodeering on vajalik märkide õige esitamise jaoks. Select Directory Kataloogi valimine - - - Select the directory you want the songs to be saved. - Vali kataloog, kuhu tahad laulud salvestada. - Directory: @@ -4792,6 +4829,11 @@ Kodeering on vajalik märkide õige esitamise jaoks. Select Destination Folder Sihtkausta valimine + + + Select the directory where you want the songs to be saved. + + SongsPlugin.ImportWizardForm @@ -4904,49 +4946,50 @@ Kodeering on vajalik märkide õige esitamise jaoks. SongsPlugin.MediaItem - - Maintain the lists of authors, topics and books - Autorite, teemade ja raamatute loendi haldamine - - - + Titles Pealkirjad - + Lyrics Laulusõnad - + Delete Song(s)? Kas kustutada laul(ud)? - + CCLI License: CCLI litsents: - + Entire Song Kogu laulust - + Are you sure you want to delete the %n selected song(s)? - - + + Kas sa oled kindel, et soovid kustutada %n valitud laulu? + Kas sa oled kindel, et soovid kustutada %n valitud laulu? + + + Maintain the lists of authors, topics and books. + Autorite, teemade ja laulikute loendi haldamine. + SongsPlugin.OpenLP1SongImport Not a valid openlp.org 1.x song database. - + See pole openlp.org 1.x laulude andmebaas. @@ -4954,7 +4997,7 @@ Kodeering on vajalik märkide õige esitamise jaoks. Not a valid OpenLP 2.0 song database. - + See pole OpenLP 2.0 laulude andmebaas. @@ -5011,7 +5054,7 @@ Kodeering on vajalik märkide õige esitamise jaoks. The following songs could not be imported: - + Järgnevaid laule polnud võimalik importida: diff --git a/resources/i18n/fr.ts b/resources/i18n/fr.ts index e2303e92e..e607c9543 100644 --- a/resources/i18n/fr.ts +++ b/resources/i18n/fr.ts @@ -182,22 +182,22 @@ Do you want to continue anyway? BiblePlugin.HTTPBible - + Download Error Erreur de téléchargement - + There was a problem downloading your verse selection. Please check your Internet connection, and if this error continues to occur please consider reporting a bug. Il y a un problème de téléchargement de votre sélection de verset. Pouvez-vous contrôler votre connexion Internet, et si cette erreur persiste pensez a rapporter un dysfonctionnement. - + Parse Error Erreur syntaxique - + There was a problem extracting your verse selection. If this error continues to occur please consider reporting a bug. Il y a un problème pour extraire votre sélection de verset. Si cette erreur persiste pensez a rapporter un dysfonctionnement. @@ -205,12 +205,12 @@ Do you want to continue anyway? BiblePlugin.MediaItem - + Bible not fully loaded. - + You cannot combine single and dual Bible verse search results. Do you want to delete your search results and start a new search? @@ -222,11 +222,6 @@ Do you want to continue anyway? &Bible &Bible - - - <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 fournis la possibilité d'afficher des versets bibliques de plusieurs sources pendant le service. - Bible @@ -246,82 +241,87 @@ Do you want to continue anyway? Bibles - - Import a Bible - Importer une Bible - - - - Add a new Bible - Ajouter 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 en live - - - - Add the selected Bible to the service - Ajoute la Bible sélectionnée au service - - - + No Book Found Pas de livre trouvé - + No matching book could be found in this Bible. Check that you have spelled the name of the book correctly. Pas de livre correspondant n'a été trouvé dans cette Bible. Contrôlez que vous avez correctement écris le mon du livre. + + + 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. + + BiblesPlugin.BibleManager - + 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. Pouvez-vous utiliser l'assistant d'importation pour installer une ou plusieurs Bibles. - + 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 pour 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 introduit de mot clé de recherche. Vous pouvez séparer différents mot clé par une espace pour rechercher tous les mot clé et les séparer par des virgules pour en rechercher uniquement un. - + Your scripture reference is either not supported by OpenLP or is invalid. Please make sure your reference conforms to one of the following patterns: Book Chapter @@ -333,7 +333,7 @@ Book Chapter:Verse-Chapter:Verse - + No Bibles Available @@ -520,18 +520,6 @@ Les changement ne s'applique aux versets déjà un service. CSV File Fichier CSV - - - Starting Registering bible... - Commence l'enregistrement de la Bible... - - - - Registered bible. Please note, that verses will be downloaded on -demand and thus an internet connection is required. - Bible enregistrée. Veuillez noter que les verset vont être téléchargement -a la demande, une connexion Interner fiable est donc nécessaire. - Your Bible import failed. @@ -567,74 +555,75 @@ a la demande, une connexion Interner fiable est donc nécessaire. 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.MediaItem - + Quick Rapide - + Second: Deuxième : - + Find: Recherche : - - Results: - Résultat : - - - + Book: Livre : - + Chapter: Chapitre : - + Verse: Verset : - + From: De : - + To: A : - + Text Search Recherche de texte - - Clear - Efface - - - - Keep - Laisse - - - + Scripture Reference + + + Toggle to keep or clear the previous results. + + BiblesPlugin.Opensong @@ -723,25 +712,35 @@ a la demande, une connexion Interner fiable est donc nécessaire. &Crédits : - + You need to type in a title. Vous devez introduire un titre. - + You need to add at least one slide Vous devez ajouter au moins une diapositive - + Split Slide Sépare la diapositive - + Split a slide into two by inserting a slide splitter. Sépare la diapositive en deux par l'inversion d'un séparateur de diapositive. + + + Split a slide into two only if it does not fit on the screen as one slide. + + + + + Insert Slide + + CustomsPlugin @@ -764,50 +763,50 @@ a la demande, une connexion Interner fiable est donc nécessaire. - - Import a Custom - Import un élément custom + + Load a new Custom. + - - Load a new Custom + + Import a Custom. - Add a new Custom - Ajoute un nouveau custom + Add a new Custom. + - Edit the selected Custom - Édite le custom sélectionner + Edit the selected Custom. + - Delete the selected Custom - Efface le custom sélectionné + Delete the selected Custom. + - - Preview the selected Custom - Prévisualise le custom sélectionné + + Preview the selected Custom. + - - Send the selected Custom live - Envoie le custom sélectionner en live + + Send the selected Custom live. + - - Add the selected Custom to the service - Ajoute le custom sélectionner au service + + Add the selected Custom to the service. + GeneralTab - + General Général @@ -839,44 +838,44 @@ a la demande, une connexion Interner fiable est donc nécessaire. - Load a new Image - Charge une nouvelle image + Load a new Image. + - Add a new Image - Ajoute une nouvelle image + Add a new Image. + - Edit the selected Image - Édite l'image sélectionnée + Edit the selected Image. + - Delete the selected Image - Efface l'image sélectionnée + Delete the selected Image. + - Preview the selected Image - Prévisualise l'image sélectionnée + Preview the selected Image. + - Send the selected Image live - Envoie l'image sélectionnée en direct + Send the selected Image live. + - Add the selected Image to the service - Ajoute l'image sélectionnée au service + Add the selected Image to the service. + ImagePlugin.ExceptionDialog - + Select Attachment @@ -884,39 +883,39 @@ a la demande, une connexion Interner fiable est donc nécessaire. ImagePlugin.MediaItem - + Select Image(s) Image(s) séléctionnée - + You must select an image to delete. Vous devez sélectionner une image a effacer. - + 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 de toute façon d'autres images ? - + You must select an image to replace the background with. Vous devez sélectionner une image pour remplacer le fond. - + There was a problem replacing your background, the image file "%s" no longer exists. Il y a un problème pour remplacer votre fond, le fichier d'image "%s" n'existe plus. @@ -948,74 +947,74 @@ Voulez-vous ajouter de toute façon d'autres images ? - Load a new Media - Charge un nouveau média + Load a new Media. + - Add a new Media - Ajoute un nouveau média + Add a new Media. + - Edit the selected Media - Édite le média sélectionné + Edit the selected Media. + - Delete the selected Media - Efface le média sélectionné + Delete the selected Media. + - Preview the selected Media - Prévisualise le média sélectionné + Preview the selected Media. + - Send the selected Media live - Envoie le média en direct + Send the selected Media live. + - Add the selected Media to the service - Ajouter le média sélectionné au service + Add the selected Media to the service. + MediaPlugin.MediaItem - + Select Media Média sélectionné - + You must select a media file to replace the background with. Vous devez sélectionné un fichier média le fond. - + There was a problem replacing your background, the media file "%s" no longer exists. Il y a un problème pour remplacer le fond du direct, le fichier du média "%s" n'existe plus. - + Missing Media File Fichier du média manquant - + The file %s no longer exists. Le fichier %s n'existe plus. - + You must select a media file to delete. Vous devez sélectionné un fichier média à effacer. - + Videos (%s);;Audio (%s);;%s (*) @@ -1044,28 +1043,17 @@ Voulez-vous ajouter de toute façon d'autres images ? OpenLP.AboutForm - - OpenLP <version><revision> - Open Source Lyrics Projection - -OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if OpenOffice.org, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. - -Find out more about OpenLP: http://openlp.org/ - -OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider contributing by using the button below. - - - - + Credits Crédits - + License Licence - + Contribute Contribuer @@ -1075,17 +1063,17 @@ OpenLP is written and maintained by volunteers. If you would like to see more fr - + 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. - + Project Lead %s @@ -1150,12 +1138,20 @@ Final Credit - - Copyright © 2004-2011 Raoul Snyman -Portions copyright © 2004-2011 Tim Bentley, Jonathan Corwin, Michael Gorven, Scott Guerrieri, -Meinert Jordan, Andreas Preikschat, Christian Richter, Philip -Ridout, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Carsten -Tinggaard, Frode Woldsund + + 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 contributing by using the button below. + + + + + Copyright © 2004-2011 %s +Portions copyright © 2004-2011 %s @@ -1250,70 +1246,70 @@ Tinggaard, Frode Woldsund OpenLP.DisplayTagDialog - + Edit Selection Édite la sélection - - Update - Mettre à jours - - - + Description Description - + Tag Onglet - + Start tag Tag de démarrage - + End tag Tag de fin - + Default Défaut - + Tag Id - + Start HTML - + End HTML + + + Save + + OpenLP.DisplayTagTab - + Update Error Erreur de mise a jours - + Tag "n" already defined. - + Tag %s already defined. @@ -1352,7 +1348,7 @@ Tinggaard, Frode Woldsund - + Description characters to enter : %s @@ -1395,7 +1391,7 @@ Version: %s - + *OpenLP Bug Report* Version: %s @@ -1478,77 +1474,72 @@ Version: %s - - This wizard will help you to configure OpenLP for initial use. Click the next button below to start the process of selection your initial options. - - - - + Activate required Plugins - + Select the Plugins you wish to use. - + Songs - + Custom Text - + Bible Bible - + Images Images - + Presentations Présentations - + Media (Audio and Video) - + Allow remote access - + Monitor Song Usage - + Allow Alerts - + No Internet Connection - + Unable to detect an Internet connection. - + 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. To re-run the First Time Wizard and import this sample data at a later stage, press the cancel button now, check your Internet connection, and restart OpenLP. @@ -1557,190 +1548,195 @@ To cancel the First Time Wizard completely, press the finish button now. - + Sample Songs - + Select and download public domain songs. - + Sample Bibles - + Select and download free Bibles. - + Sample Themes - + Select and download sample themes. - + Default Settings - + Set up default settings to be used by OpenLP. - + Setting Up And Importing - + Please wait while OpenLP is set up and your data is imported. - + 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.GeneralTab - + General Général - + Monitors Monitors - + Select monitor for output display: Select le moniteur pour la sortie d'affichage : - + 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 écran noir d'avertissement - + Automatically open the last service Ouvre automatiquement le dernier service - + Show the splash screen Affiche l'écran de démarrage - + Check for updates to OpenLP Regarde s'il y a des mise à jours d'OpenLP - + Application Settings Préférence d'application - + Prompt to save before starting a new service Demande a sauver avant de commencer un nouveau service - + Automatically preview next item in service Prévisualise automatiquement le prochain élément de service - + Slide loop delay: Délais de boucle des diapositive : - + sec sec - + CCLI Details CCLI détails - + SongSelect username: Nom d'utilisateur SongSelect : - + SongSelect password: Mot de passe SongSelect : - + Display Position Position d'affichage - + X X - + Y Y - + Height Hauteur - + Width Largeur - + Override display position Surcharge la position d'affichage - + Unblank display when adding new live item @@ -1761,7 +1757,7 @@ To cancel the First Time Wizard completely, press the finish button now. OpenLP.MainDisplay - + OpenLP Display Affichage OpenLP @@ -1769,287 +1765,287 @@ To cancel the First Time Wizard completely, press the finish button now. OpenLP.MainWindow - + &File &Fichier - + &Import &Import - + &Export &Export - + &View &View - + M&ode M&ode - + &Tools &Outils - + &Settings &Options - + &Language &Langue - + &Help &Aide - + Media Manager Gestionnaire de médias - + Service Manager Gestionnaire de services - + Theme Manager Gestionnaire de thèmes - + &New &Nouveau - + &Open &Open - + 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 &Shortcuts... Personnalise les &raccourcis... - + &Configure OpenLP... &Personnalise OpenLP... - + &Media Manager Gestionnaire de &médias - + Toggle Media Manager - + Toggle the visibility of the media manager. - + &Theme Manager Gestionnaire de &thèmes - + Toggle Theme Manager - + Toggle the visibility of the theme manager. - + &Service Manager Gestionnaire de &services - + Toggle Service Manager - + Toggle the visibility of the service manager. - + &Preview Panel Panneau de &prévisualisation - + Toggle Preview Panel - + Toggle the visibility of the preview panel. - + &Live Panel Panneau du &direct - + Toggle Live Panel - + Toggle the visibility of the live panel. - + &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 a 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 - + Set the view mode to Setup. - + &Live &Direct - + Set the view mode to Live. @@ -2068,27 +2064,27 @@ Vous pouvez télécharger la dernière version depuis http://openlp.org/.Version d'OpenLP mis a jours - + OpenLP Main Display Blanked OpenLP affichage principale noirci - + The Main Display has been blanked out L'affichage principale a été noirci - + Close OpenLP Ferme OpenLP - + Are you sure you want to close OpenLP? Êtes vous sur de vouloir fermer OpenLP ? - + Default Theme: %s Thème par défaut : %s @@ -2099,30 +2095,45 @@ Vous pouvez télécharger la dernière version depuis http://openlp.org/.Anglais - + Print the current Service Order. - + Open &Data Folder... - + Open the folder where songs, bibles and other data resides. - + &Configure Display Tags - + &Autodetect + + + Update Theme Images + + + + + Update the preview images for all themes. + + + + + F1 + + OpenLP.MediaManagerItem @@ -2132,46 +2143,56 @@ Vous pouvez télécharger la dernière version depuis http://openlp.org/.Pas d'éléments sélectionné - + &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 a prévisualiser. - + You must select one or more items to send live. Vous devez sélectionner un ou plusieurs éléments pour les envoyer en direct. - + You must select one or more items. Vous devez sélectionner un ou plusieurs éléments. - + You must select an existing service item to add to. Vous devez sélectionner un élément existant du service pour l'ajouter. - + Invalid Service Item Élément du service invalide - + You must select a %s service item. Vous devez sélectionner un %s élément du service. - + Duplicate file name %s. Filename already exists in list + + + You must select one or more items to add. + + + + + No Search Results + + OpenLP.PluginForm @@ -2293,19 +2314,19 @@ Filename already exists in list - Add page break before each text item. + Add page break before each text item OpenLP.ScreenList - + Screen Écran - + primary primaire @@ -2321,224 +2342,209 @@ Filename already exists in list OpenLP.ServiceManager - - Load an existing service - Cherche un service existant - - - - Save this service - Enregistre ce service - - - - Select a theme for the service - Selecte un thème pour le service - - - + Move to &top Place en &premier - + Move item to the top of the service. Place l'élément au début du service. - + Move &up Déplace en &haut - + Move item up one position in the service. Déplace l'élément d'une position en haut. - + Move &down Déplace en %bas - + Move item down one position in the service. Déplace l'élément d'une position en bas. - + Move to &bottom Place en &dernier - + Move item to the end of the service. Place l'élément a la fin du service. - + Moves the selection up the window. - + Move up Déplace en haut - + &Delete From Service &Efface du service - + Delete the selected item from the service. Efface l'élément sélectionner du service. - + &Expand all &Développer tous - + Expand all the service items. Développe tous les éléments du service. - + &Collapse all &Réduire tous - + Collapse all the service items. Réduit tous les élément du service. - + Go Live Lance le direct - + Send the selected item to Live. Envoie l'élément sélectionné en direct. - + &Add New Item &Ajoute un nouvel élément - + &Add to Selected Item &Ajoute a l'élément sélectionné - + &Edit Item &Édite l'élément - + &Reorder Item &Réordonne l'élément - + &Notes &Remarques - + &Change Item Theme &Change le thème de l'élément - + Open File Ouvre un fichier - + OpenLP Service Files (*.osz) Fichier service OpenLP (*.osz) - + File is not a valid service. The content encoding is not UTF-8. Le fichier n'est un service valide. Le contenu n'est pas de l'UTF-8. - + File is not a valid service. Le fichier n'est pas un service valide. - + Missing Display Handler Délégué d'affichage manquent - + Your item cannot be displayed as there is no handler to display it Votre élément ne peut pas être affiché il n'y a pas de délégué pour l'afficher - + Your item cannot be displayed as the plugin required to display it is missing or inactive Votre élément ne peut pas être affiché le module nécessaire pour l'afficher est manquant ou inactif - + Moves the selection down the window. - + Modified Service - + &Start Time - + Show &Preview - + Show &Live - + The current service has been modified. Would you like to save this service? - + File could not be opened because it is corrupt. - + Empty File - + This service file does not contain any data. - + Corrupt File @@ -2558,15 +2564,30 @@ Le contenu n'est pas de l'UTF-8. - + Untitled Service - + This file is either corrupt or not an OpenLP 2.0 service file. + + + Load an existing service. + + + + + Save this service. + + + + + Select a theme for the service. + + OpenLP.ServiceNoteForm @@ -2655,100 +2676,105 @@ Le contenu n'est pas de l'UTF-8. OpenLP.SlideController - + Previous Slide Diapositive précédente - + Move to previous Aller au précédent - + Next Slide Aller au suivant - + Move to next Aller au suivant - + Hide Cache - + Blank Screen Écran noir - + Blank to Theme Thème vide - + Show Desktop Affiche le bureau - + Start continuous loop Démarre une boucle continue - + Stop continuous loop Arrête la boucle continue - + Delay between slides in seconds Délais entre les diapositives en secondes - + Move to live Déplace en direct - + Edit and reload song preview Édite et recharge le chant prévisualisé - + Start playing media Démarre la lecture de média - + Go To Aller à - + Previous Service Service précédent - + Next Service Service suivant - + Escape Item - + Start/Stop continuous loop + + + Add to Service + + OpenLP.SpellTextEdit @@ -2932,114 +2958,114 @@ Le contenu n'est pas de l'UTF-8. &Exporte le thème - + %s (default) %s (défaut) - + You must select a theme to rename. Vous devez sélectionner a thème à renommer. - + Rename Confirmation Confirme le renommage - + Rename %s theme? Renomme le thème %s ? - + You must select a theme to edit. Vous devez sélectionner un thème a éditer. - + You must select a theme to delete. Vous devez sélectionner un thème à effacer. - + Delete Confirmation Confirmation d'effacement - + Delete %s theme? Efface le thème %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é exporter 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 exporter a cause d'une erreur. - + Select Theme Import File Select le fichier thème à importer - + File is not a valid theme. The content encoding is not UTF-8. Le fichier n'est pas un thème. Le contenu n'est pas de l'UTF-8. - + Validation Error Erreur de validation - + File is not a valid theme. Le fichier n'est pas un thème valide. - + A theme with this name already exists. Le thème avec ce nom existe déjà. - + You are unable to delete the default theme. Vous ne pouvez pas supprimer le thème par défaut. - + Theme %s is used in the %s plugin. Thème %s est utiliser par le module %s. - + OpenLP Themes (*.theme *.otz) @@ -3463,7 +3489,7 @@ Le contenu n'est pas de l'UTF-8. - + &Vertical Align: @@ -3671,7 +3697,7 @@ Le contenu n'est pas de l'UTF-8. Prêt. - + Starting import... Commence l'import... @@ -3820,11 +3846,6 @@ Le contenu n'est pas de l'UTF-8. View - - - View Model - - Duplicate Error @@ -3845,11 +3866,16 @@ Le contenu n'est pas de l'UTF-8. XML syntax error + + + View Mode + + OpenLP.displayTagDialog - + Configure Display Tags @@ -3881,79 +3907,79 @@ Le contenu n'est pas de l'UTF-8. - 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. PresentationPlugin.MediaItem - + Select Presentation(s) - + Automatic - + Present using: - + Presentations (%s) - + File Exists - + A presentation with that filename already exists. - + This type of presentation is not supported. - + Missing Presentation - + The Presentation %s is incomplete, please reload. - + The Presentation %s no longer exists. @@ -4005,20 +4031,30 @@ Le contenu n'est pas de l'UTF-8. RemotePlugin.RemoteTab - + Server Settings - + Serve on IP address: - + Port number: + + + Remote URL: + + + + + Stage view URL: + + SongUsagePlugin @@ -4307,39 +4343,39 @@ The encoding is responsible for the correct character representation. container title + + + 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 - - - - - Exports songs using the export wizard. + Add the selected Song to the service. @@ -4575,7 +4611,7 @@ The encoding is responsible for the correct character representation. - + You need to type some text in to the verse. @@ -4583,20 +4619,35 @@ The encoding is responsible for the correct character representation. SongsPlugin.EditVerseForm - + Edit Verse - + &Verse type: - + &Insert + + + &Split + + + + + Split a slide into two only if it does not fit on the screen as one slide. + + + + + Split a slide into two by inserting a verse splitter. + + SongsPlugin.ExportWizardForm @@ -4630,11 +4681,6 @@ The encoding is responsible for the correct character representation. Select Directory - - - Select the directory you want the songs to be saved. - - Directory: @@ -4680,6 +4726,11 @@ The encoding is responsible for the correct character representation. Select Destination Folder + + + Select the directory where you want the songs to be saved. + + SongsPlugin.ImportWizardForm @@ -4792,32 +4843,27 @@ The encoding is responsible for the correct character representation. SongsPlugin.MediaItem - - Maintain the lists of authors, topics and books - - - - + Entire Song - + Titles - + Lyrics - + Delete Song(s)? - + Are you sure you want to delete the %n selected song(s)? @@ -4825,10 +4871,15 @@ The encoding is responsible for the correct character representation. - + CCLI License: + + + Maintain the lists of authors, topics and books. + + SongsPlugin.OpenLP1SongImport diff --git a/resources/i18n/hu.ts b/resources/i18n/hu.ts index e4402e592..5e1622758 100644 --- a/resources/i18n/hu.ts +++ b/resources/i18n/hu.ts @@ -183,22 +183,22 @@ Folytatható? BiblePlugin.HTTPBible - + 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. @@ -206,12 +206,12 @@ Folytatható? BiblePlugin.MediaItem - + Bible not fully loaded. A Biblia nem töltődött be teljesen. - + 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? @@ -223,46 +223,6 @@ Folytatható? &Bible &Biblia - - - <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. - - - - 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 - Bible @@ -282,25 +242,65 @@ Folytatható? 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. + + BiblesPlugin.BibleManager - + Scripture Reference Error Igehely hivatkozási hiba - + Your scripture reference is either not supported by OpenLP or is invalid. Please make sure your reference conforms to one of the following patterns: Book Chapter @@ -319,29 +319,29 @@ Könyv fejezet:Vers-Vers,Fejezet:Vers-Vers Könyv fejezet:Vers-Fejezet:Vers - + 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. - + No Bibles Available Nincsenek elérhető Bibliák - + 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. @@ -406,7 +406,7 @@ A módosítások nem érintik a már a szolgálati sorrendben lévő verseket. 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. - A tündérrel különféle formátumú Bibliákat lehet importálni. Az alább található Tovább gombra való kattintással indítható a folyamat első lépése a formátum kiválasztásával. + A tündérrel különféle formátumú Bibliákat lehet importálni. Az alább található Következő gombra való kattintással indítható a folyamat első lépése a formátum kiválasztásával. @@ -518,17 +518,6 @@ A módosítások nem érintik a már a szolgálati sorrendben lévő verseket.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. - - - Starting Registering bible... - A Biblia regisztrálása elkezdődött… - - - - Registered bible. Please note, that verses will be downloaded on -demand and thus an internet connection is required. - Biblia regisztrálva. Megjegyzés: a versek csak kérésre lesznek letöltve és ekkor internet kapcsolat szükségeltetik. - Permissions: @@ -574,74 +563,75 @@ demand and thus an internet connection is required. openlp.org 1.x Bible Files openlp.org 1.x Biblia fájlok + + + Registering Bible... + + + + + Registered Bible. Please note, that verses will be downloaded on +demand and thus an internet connection is required. + + BiblesPlugin.MediaItem - + Quick Gyors - + Find: Keresés: - - Results: - Eredmények: - - - + Book: Könyv: - + Chapter: Fejezet: - + Verse: Vers: - + From: Innentől: - + To: Idáig: - + Text Search Szöveg keresése - - Clear - Törlés - - - - Keep - Megtartása - - - + Second: Második: - + Scripture Reference Igehely hivatkozás + + + Toggle to keep or clear the previous results. + + BiblesPlugin.Opensong @@ -671,7 +661,7 @@ demand and thus an internet connection is required. <strong>Custom Plugin</strong><br />The custom plugin provides the ability to set up custom text slides that can be displayed on the screen the same way songs are. This plugin provides greater freedom over the songs plugin. - <strong>Speciális bővítmény</strong><br />Az speciális bővítmény dalokhoz hasonló egyéni diák vetítését teszi lehetővé. Ugyanakkor több szabadságot enged meg, mint a dalok bővítmény. + <strong>Speciális bővítmény</strong><br />A speciális 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. @@ -692,7 +682,7 @@ demand and thus an internet connection is required. Edit Custom Slides - Speciális diák szerkesztése + Speciális diasor szerkesztése @@ -715,12 +705,12 @@ demand and thus an internet connection is required. Minden kijelölt dia szerkesztése egyszerre. - + Split Slide Szétválasztás - + Split a slide into two by inserting a slide splitter. Dia ketté vágása egy diaelválasztó beszúrásával. @@ -735,12 +725,12 @@ demand and thus an internet connection is required. &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 @@ -749,49 +739,19 @@ demand and thus an internet connection is required. Ed&it All &Összes szerkesztése + + + Split a slide into two only if it does not fit on the screen as one slide. + + + + + Insert Slide + + CustomsPlugin - - - Import a Custom - Speciális importálása - - - - Load a new Custom - Új speciális betöltése - - - - Add a new Custom - Új speciális hozzáadása - - - - Edit the selected Custom - A kijelölt speciális szerkesztése - - - - Delete the selected Custom - A kijelölt speciális törlése - - - - Preview the selected Custom - A kijelölt speciális előnézete - - - - Send the selected Custom live - A kijelölt speciális élő adásba küldése - - - - Add the selected Custom to the service - A kijelölt speciális hozzáadása a szolgálati sorrendhez - Custom @@ -810,13 +770,53 @@ demand and thus an internet connection is required. container title Speciális + + + Load a new Custom. + Új speciális betöltése. + + + + Import a Custom. + Speciális importálása. + + + + Add a new Custom. + Új speciális hozzáadása. + + + + Edit the selected Custom. + A kijelölt speciális szerkesztése. + + + + Delete the selected Custom. + A kijelölt speciális törlése. + + + + Preview the selected Custom. + A kijelölt speciális előnézete. + + + + Send the selected Custom live. + A kijelölt speciális élő adásba küldése. + + + + Add the selected Custom to the service. + A kijelölt speciális hozzáadása a szolgálati sorrendhez. + GeneralTab - + General - Általános + Általános @@ -824,42 +824,7 @@ demand and thus an internet connection is required. <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 diákat 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. - - - - 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 + <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. @@ -879,11 +844,46 @@ demand and thus an internet connection is required. 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. + ImagePlugin.ExceptionDialog - + Select Attachment Melléklet kijelölése @@ -891,39 +891,39 @@ demand and thus an internet connection is required. ImagePlugin.MediaItem - + Select Image(s) Kép(ek) kijelölése - + You must select an image to delete. Ki kell választani egy képet a törléshez. - + You must select an image to replace the background with. Ki kell választani egy képet a háttér cseréjéhez. - + Missing Image(s) - + The following image(s) no longer exist: %s A következő kép(ek) nem létezik: %s - + The following image(s) no longer exist: %s Do you want to add the other images anyway? A következő kép(ek) nem létezik: %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. @@ -935,41 +935,6 @@ Szeretnél más képeket megadni? <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é. - - - Load a new Media - Új médiafájl betöltése - - - - Add a 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 - Media @@ -988,41 +953,76 @@ Szeretnél más képeket megadni? container title Média + + + Load a new Media. + Új médiafájl betöltése. + + + + Add a 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. + 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. - + Videos (%s);;Audio (%s);;%s (*) Videók (%s);;Hang (%s);;%s (*) - + 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. @@ -1051,34 +1051,17 @@ Szeretnél más képeket megadni? OpenLP.AboutForm - - OpenLP <version><revision> - Open Source Lyrics Projection - -OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if OpenOffice.org, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. - -Find out more about OpenLP: http://openlp.org/ - -OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider contributing by using the button below. - 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 OpenOffice.org, 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, fontold meg a projektben való részvételt az alábbi gombbal. - - - + Credits Közreműködők - + License Licenc - + Contribute Részvétel @@ -1088,7 +1071,7 @@ Az OpenLP-t önkéntesek készítették és tartják karban. Ha szeretnél több - + Project Lead %s @@ -1204,38 +1187,40 @@ 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." ‒ János 3,16 + ö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 ingyen készítettük neked, mert Ő - tett minket szabaddá. + ezt a programot szabadnak és ingyenesnek készítettük, + mert Ő tett minket szabaddá. - - Copyright © 2004-2011 Raoul Snyman -Portions copyright © 2004-2011 Tim Bentley, Jonathan Corwin, Michael Gorven, Scott Guerrieri, -Meinert Jordan, Andreas Preikschat, Christian Richter, Philip -Ridout, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Carsten -Tinggaard, Frode Woldsund - Szerzői jog © 2004-2011 Raoul Snyman -Részleges szerzői jogok © 2004-2011 Tim Bentley, Jonathan Corwin, Michael Gorven, Scott Guerrieri, -Meinert Jordan, Andreas Preikschat, Christian Richter, Philip -Ridout, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Carsten -Tinggaard, Frode Woldsund - - - + This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. - 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. - + 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. További részletekért lásd a alább. - + 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. További részletekért lásd a alább. + + + + 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 contributing by using the button below. + + + + + Copyright © 2004-2011 %s +Portions copyright © 2004-2011 %s + @@ -1303,96 +1288,96 @@ Tinggaard, Frode Woldsund Preview items when clicked in Media Manager - + Elem előnézete a médiakezelőben való kattintáskor Advanced - Haladó + Haladó 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. OpenLP.DisplayTagDialog - + Edit Selection Kijelölés szerkesztése - - Update - Frissítés - - - + Description Leírás - + Tag Címke - + Start tag - Kezdő címke + Nyitó címke - + End tag Záró címke - + Default Alapértelmezett - + Tag Id - Címke ID + ID - + Start HTML - Kezdő HTML + Nyitó HTML - + End HTML Befejező HTML + + + Save + + OpenLP.DisplayTagTab - + Update Error Frissítési hiba - + Tag "n" already defined. Az „n” címke már létezik. - + Tag %s already defined. A címke már létezik: %s. @@ -1402,7 +1387,7 @@ Tinggaard, Frode Woldsund 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 alábbi dobozban található szöveg olyan információkat tartalmaz, amelyek hasznosak lehetnek az OpenLP fejlesztői számára, tehát kérjük, küld el bugs@openlp.org email címre egy részletes leírás mellett, amely tartalmazza, hogy éppen merre és mit tettél, amikor a hiba történt. + 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. @@ -1423,16 +1408,15 @@ Tinggaard, Frode Woldsund Please enter a description of what you were doing to cause this error (Minimum 20 characters) - Írd le mit tettél, ami a hibát okozta -(minimum 20 karakter) + Írd le mit tettél, ami a hibához vezetett (minimum 20 karakter) Attach File - Csatolt fájl + Fájl csatolása - + Description characters to enter : %s Leírás: %s @@ -1474,7 +1458,7 @@ Version: %s - + *OpenLP Bug Report* Version: %s @@ -1544,7 +1528,7 @@ Version: %s Enabling selected plugins... - Kijelölt beépülők engedélyezése… + Kijelölt bővítmények engedélyezése… @@ -1557,77 +1541,72 @@ Version: %s Üdvözlet az első indítás tündérben - - This wizard will help you to configure OpenLP for initial use. Click the next button below to start the process of selection your initial options. - A tündérrel előkészítheti az OpenLP első használatát. Az alább található Tovább gombra való kattintással indítható a folyamat első lépése. - - - + Activate required Plugins - Szükséges beépülők aktiválása + Igényelt bővítmények aktiválása - + Select the Plugins you wish to use. - Jelöld ki az alkalmazni kívánt beépülőket. + Jelöld ki az alkalmazni kívánt bővítményeket. - + Songs Dalok - + Custom Text - Egyedi szöveg + Speciális - + Bible Biblia - + Images Képek - + Presentations Bemutatók - + Media (Audio and Video) Média (hang és videó) - + Allow remote access - Távvezérlés engedélyezése + Távvezérlő - + Monitor Song Usage - Dalstatisztika monitorozása + Dalstatisztika - + Allow Alerts - Értesítések engedélyezése + Értesítések - + No Internet Connection Nincs internet kapcsolat - + Unable to detect an Internet connection. Nem sikerült internet kapcsolatot észlelni. - + 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. To re-run the First Time Wizard and import this sample data at a later stage, press the cancel button now, check your Internet connection, and restart OpenLP. @@ -1640,192 +1619,197 @@ Az Első indulás tündér újbóli indításához most a Mégse gobra kattints Az Első indulás tündér további megkerüléséhez, nyomd meg a Befejezés gombot. - + 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. - + Default Settings Alapértelmezett beállítások - + Set up default settings to be used by OpenLP. Az OpenLP alapértelmezett beállításai. - + Setting Up And Importing Beállítás és importálás - + Please wait while OpenLP is set up and your data is imported. - Várj, amíg az OpenLP beállítások érvényre jutnak és míg at adatok importálódnak. + Várj, amíg az OpenLP beállítások érvényre jutnak és míg az adatok importálódnak. - + 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. + + OpenLP.GeneralTab - + General Általános - + Monitors Monitorok - + Select monitor for output display: Jelöld ki a vetítési képernyőt: - + 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 üres 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 - + Slide loop delay: - Időzített diák késleltetése: + Időzített dia késleltetése: - + sec mp - + CCLI Details CCLI részletek - + SongSelect username: SongSelect felhasználói név: - + SongSelect password: SongSelect jelszó: - + Display Position Megjelenítés pozíciója - + X - + Y - + Height Magasság - + Width Szélesség - + Override display position Megjelenítési pozíció felülírása - + Check for updates to OpenLP Frissítés keresése az OpenLP-hez - + Unblank display when adding new live item - + Visszakapcsolás üres képernyőről, amikor egy új elem kerül élő adásba @@ -1844,7 +1828,7 @@ Az Első indulás tündér további megkerüléséhez, nyomd meg a Befejezés go OpenLP.MainDisplay - + OpenLP Display OpenLP megjelenítés @@ -1852,282 +1836,282 @@ Az Első indulás tündér további megkerüléséhez, nyomd meg a Befejezés go 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. @@ -2146,22 +2130,22 @@ A legfrissebb verzió a http://openlp.org/ oldalról szerezhető be.OpenLP verziófrissítés - + OpenLP Main Display Blanked Sötét OpenLP fő képernyő - + The Main Display has been blanked out A fő képernyő el lett sötétítve - + Default Theme: %s Alapértelmezett téma: %s - + Configure &Shortcuts... &Gyorsbillentyűk beállítása… @@ -2172,40 +2156,55 @@ A legfrissebb verzió a http://openlp.org/ oldalról szerezhető be.Magyar - + Print the current Service Order. Az aktuális sorrend nyomtatása. - + &Configure Display Tags - Megjelenítési &címkek beállítása + Megjelenítési &címkék beállítása - + &Autodetect &Automatikus felismerés - + 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. - + Close OpenLP OpenLP bezárása - + Are you sure you want to close OpenLP? Biztosan bezárható az OpenLP? + + + Update Theme Images + + + + + Update the preview images for all themes. + + + + + F1 + + OpenLP.MediaManagerItem @@ -2215,44 +2214,55 @@ A legfrissebb verzió a http://openlp.org/ oldalról szerezhető be.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. - + Duplicate file name %s. Filename already exists in list + Duplikátum fájlnév: %s. +A fájlnév már benn van a listában + + + + You must select one or more items to add. + + + + + No Search Results @@ -2376,19 +2386,19 @@ Filename already exists in list - Add page break before each text item. - + Add page break before each text item + Oldaltörés hozzádása minden szöveges elem elé OpenLP.ScreenList - + Screen Képernyő - + primary elsődleges @@ -2404,251 +2414,251 @@ Filename already exists in list OpenLP.ServiceManager - - Load an existing service - Egy meglévő szolgálati sorrend betöltése - - - - Save this service - Aktuális szolgálati sorrend mentése - - - - Select a theme for the service - Jelöljön ki egy témát a sorrendhez - - - + Move to &top Mozgatás &felülre - + Move item to the top of the service. Elem mozgatása a sorrend elejére. - + Move &up Mozgatás f&eljebb - + Move item up one position in the service. Elem mozgatása a sorrendben eggyel feljebb. - + Move &down Mozgatás &lejjebb - + Move item down one position in the service. Elem mozgatása a sorrendben eggyel lejjebb. - + Move to &bottom Mozgatás &alulra - + Move item to the end of the service. Elem mozgatása a sorrend végére. - + &Delete From Service &Törlés a sorrendből - + Delete the selected item from the service. Kijelölt elem törlése a sorrendből. - + &Add New Item Új elem &hozzáadása - + &Add to Selected Item &Hozzáadás a kijelölt elemhez - + &Edit Item &Elem szerkesztése - + &Reorder Item Elem újra&rendezése - + &Notes &Jegyzetek - + &Change Item Theme Elem témájának &módosítása - + OpenLP Service Files (*.osz) OpenLP sorrend fájlok (*.osz) - + File is not a valid service. The content encoding is not UTF-8. A fájl nem érvényes sorrend. A tartalom kódolása nem UTF-8. - + File is not a valid service. A fájl nem érvényes sorrend. - + Missing Display Handler Hiányzó képernyő kezelő - + Your item cannot be displayed as there is no handler to display it Az elemet nem lehet megjeleníteni, mert nincs kezelő, amely megjelenítené - + Your item cannot be displayed as the plugin required to display it is missing or inactive Az elemet nem lehet megjeleníteni, mert a bővítmény, amely kezelné, hiányzik vagy inaktív - + &Expand all Mind &kibontása - + Expand all the service items. Minden sorrend elem kibontása. - + &Collapse all Mind össze&csukása - + Collapse all the service items. Minden sorrend elem összecsukása. - + Moves the selection down the window. A kiválasztás lejjebb mozgatja az ablakot. - + Move up Mozgatás feljebb - + Moves the selection up the window. A kiválasztás feljebb mozgatja az ablakot. - + Go Live Élő adásba - + Send the selected item to Live. A kiválasztott elem élő adásba küldése. - + &Start Time &Kezdő időpont - + Show &Preview &Előnézet megjelenítése - + Show &Live Élő &adás megjelenítése - + Open File Fájl megnyitása - + Modified Service Módosított sorrend - + The current service has been modified. Would you like to save this service? Az aktuális sorrend módosult. Szeretnéd elmenteni? - + File could not be opened because it is corrupt. - + A fájl nem nyitható meg, mivel sérült. - + Empty File - + Üres fájl - + This service file does not contain any data. - + A szolgálati sorrend fájl nem tartalmaz semmilyen adatot. - + Corrupt File - + Sérült fájl Custom Service Notes: - + Egyedi szolgálati elem jegyzetek: Notes: - + Jegyzetek: Playing time: - + Lejátszási idő: - + Untitled Service - + Névnélküli szolgálat - + This file is either corrupt or 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. + + + + 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. @@ -2702,134 +2712,139 @@ A tartalom kódolása nem UTF-8. Select an action and click one of the buttons below to start capturing a new primary or alternate shortcut, respectively. - + Válassz egy parancsot és kattints egyenként az egyik alább található gombra az elsődleges vagy alternatív gyorbillenytű elfogásához. Default - Alapértelmezett + Alapértelmezett Custom - Speciális + Egyéni Capture shortcut. - + Gyorbillentyű 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 gyorsbillenytű visszaállítandó az alapértelmezettjére? OpenLP.SlideController - + Move to previous Mozgatás az előzőre - + Move to next Mozgatás a következőre - + Hide Elrejtés - + Move to live Élő adásba küldés - + Start continuous loop Folyamatos vetítés indítása - + Stop continuous loop Folyamatos vetítés leállítása - + Delay between slides in seconds Diák közötti késleltetés másodpercben - + Start playing media Médialejátszás indítása - + Go To Ugrás - + Edit and reload song preview Szerkesztés és az dal előnézetének újraolvasása - + Blank Screen Üres képernyő - + Blank to Theme Üres téma - + Show Desktop Asztal megjelenítése - + Previous Slide Előző dia - + Next Slide Következő dia - + Previous Service Előző sorrend - + Next Service Következő sorrend - + Escape Item Kilépés az elemből - + Start/Stop continuous loop + Folyamatos vetítés indítása/leállítása + + + + Add to Service @@ -2848,7 +2863,7 @@ A tartalom kódolása nem UTF-8. Language: - + Nyelv: @@ -2871,37 +2886,37 @@ A tartalom kódolása nem UTF-8. 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 End time is set after the end of the media item - + A médiaelem befejező időpontja később van, mint a befejezése Start time is after the End Time of the media item - + A médiaelem kezdő időpontja később van, mint a befejezése @@ -3000,79 +3015,79 @@ A tartalom kódolása nem UTF-8. 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 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 - + You are unable to delete the default theme. Az alapértelmezett témát nem lehet törölni. - + 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. The content encoding is not UTF-8. Nem érvényes témafájl. A tartalom kódolása nem UTF-8. - + File is not a valid theme. Nem érvényes témafájl. - + Theme %s is used in the %s plugin. A(z) %s témát a(z) %s bővítmény használja. @@ -3092,37 +3107,37 @@ A tartalom kódolása nem UTF-8. Téma e&xportálása - + Delete %s theme? Törölhető ez a téma: %s? - + 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? - + OpenLP Themes (*.theme *.otz) OpenLP témák (*.theme *.otz) - + Validation Error Érvényességi hiba - + A theme with this name already exists. Ilyen fájlnéven már létezik egy téma. @@ -3207,7 +3222,7 @@ A tartalom kódolása nem UTF-8. Define the font and display characteristics for the Display text - A fő szöveg betűkészlete és a megjelenési tulajdonságai + A fő szöveg betűkészlete és megjelenési tulajdonságai @@ -3252,7 +3267,7 @@ A tartalom kódolása nem UTF-8. Define the font and display characteristics for the Footer text - A lábléc szöveg betűkészlete és a megjelenési tulajdonságai + A lábléc szöveg betűkészlete és megjelenési tulajdonságai @@ -3342,7 +3357,7 @@ A tartalom kódolása nem UTF-8. View the theme and save it replacing the current one or change the name to create a new theme - A téma előnézete és mentése. Felülírható már egy meglévő vagy egy új név megadásával új téma hozható létre + A téma előnézete és mentése: egy már meglévő téma felülírható vagy egy új név megadásával új téma hozható létre @@ -3357,7 +3372,7 @@ A tartalom kódolása nem UTF-8. 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érrel témákat lehet létrehozni és módosítani. Az alább található Tovább gombra való kattintással indítható a folyamat első lépése a háttér beállításával. + A tündérrel témákat lehet létrehozni és módosítani. Az alább található Következő gombra való kattintással indítható a folyamat első lépése a háttér beállításával. @@ -3699,7 +3714,7 @@ A tartalom kódolása nem UTF-8. Kiválasztás eggyel lejjebb helyezése. - + &Vertical Align: &Függőleges igazítás: @@ -3754,7 +3769,7 @@ A tartalom kódolása nem UTF-8. Kész. - + Starting import... Importálás indítása… @@ -3829,110 +3844,110 @@ A tartalom kódolása nem UTF-8. Continuous - Folytonos + Folytonos Default - Alapértelmezett + Alapértelmezett Display style: - Megjelenítési stílus: + Megjelenítési stílus: File - + Fájl Help - + Súgó h The abbreviated unit for hours - ó + ó Layout style: - Elrendezési stílus: + Elrendezési stílus: Live Toolbar - + Élő eszköztár m The abbreviated unit for minutes - p + 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 Verse Per Slide - Egy vers diánként + Egy vers diánként Verse Per Line - Egy vers soronként + Egy vers soronként View - - - - - View Model - + Nézet Duplicate Error - + Duplikátum hiba Unsupported File - Nem támogatott fájl + Nem támogatott fájl Title and/or verses not found - + A cím és/vagy a versszak nem található XML syntax error + XML szintaktikai hiba + + + + View Mode OpenLP.displayTagDialog - + Configure Display Tags Megjelenítési címkék beállítása @@ -3944,31 +3959,6 @@ A tartalom kódolása nem UTF-8. <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. <strong>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. - - - 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 - Presentation @@ -3987,56 +3977,81 @@ A tartalom kódolása nem UTF-8. 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. + PresentationPlugin.MediaItem - + Select Presentation(s) Bemutató(k) kijelölése - + Automatic Automatikus - + Present using: Bemutató ezzel: - + File Exists A fájl létezik - + A presentation with that filename already exists. Ilyen fájlnéven már létezik egy bemutató. - + This type of presentation is not supported. Ez a bemutató típus nem támogatott. - + Presentations (%s) Bemutatók (%s) - + Missing Presentation Hiányzó bemutató - + The Presentation %s is incomplete, please reload. A(z) %s bemutató hiányos, újra kell tölteni. - + The Presentation %s no longer exists. A(z) %s bemutató már nem létezik. @@ -4088,20 +4103,30 @@ A tartalom kódolása nem UTF-8. RemotePlugin.RemoteTab - + Serve on IP address: Szolgáltatás IP címe: - + Port number: Port száma: - + Server Settings Szerver beállítások + + + Remote URL: + + + + + Stage view URL: + + SongUsagePlugin @@ -4166,7 +4191,7 @@ A tartalom kódolása nem UTF-8. Song Usage - + Dalstatisztika @@ -4267,7 +4292,7 @@ has been successfully created. <strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs. - <strong>Dalok bővítmény</strong><br />A dalok bővítmény dalok megjelenítését és kezelését teszi lehetővé. + <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é. @@ -4284,36 +4309,6 @@ has been successfully created. Reindexing songs... Dalok indexelése folyamatban… - - - 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 - Arabic (CP-1256) @@ -4428,6 +4423,36 @@ A kódlap felelős a karakterek helyes megjelenítéséért. container title Dalok + + + 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. + SongsPlugin.AuthorsForm @@ -4472,7 +4497,7 @@ A kódlap felelős a karakterek helyes megjelenítéséért. The file does not have a valid extension. - + A fájlnév nem tartalmaz valós kiterjesztést. @@ -4480,7 +4505,7 @@ A kódlap felelős a karakterek helyes megjelenítéséért. Administered by %s - Adminisztrálta: %s + Adminisztrálta: %s @@ -4598,7 +4623,7 @@ A kódlap felelős a karakterek helyes megjelenítéséért. 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 az „Szerző hozzáadása a dalhoz” gombon a szerző megjelöléséhez. + 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. @@ -4618,7 +4643,7 @@ A kódlap felelős a karakterek helyes megjelenítéséért. 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 Témakör hozzáadása a dalhoz gombon a témakör megjelöléséhez. + 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 gombraa témakör megjelöléséhez. @@ -4661,7 +4686,7 @@ A kódlap felelős a karakterek helyes megjelenítéséért. Egy szerzőt meg kell adnod ehhez a dalhoz. - + You need to type some text in to the verse. Meg kell adnod a versszak szövegét. @@ -4669,20 +4694,35 @@ A kódlap felelős a karakterek helyes megjelenítéséért. SongsPlugin.EditVerseForm - + Edit Verse Versszak szerkesztése - + &Verse type: Versszak &típusa: - + &Insert &Beszúrás + + + &Split + + + + + Split a slide into two only if it does not fit on the screen as one slide. + + + + + Split a slide into two by inserting a verse splitter. + + SongsPlugin.ExportWizardForm @@ -4721,11 +4761,6 @@ A kódlap felelős a karakterek helyes megjelenítéséért. Select Directory Mappa kijelölése - - - Select the directory you want the songs to be saved. - Jelöld ki a mappát, ahová a dalok mentésre kerülnek. - Directory: @@ -4766,6 +4801,11 @@ A kódlap felelős a karakterek helyes megjelenítéséért. Select Destination Folder Célmappa kijelölése + + + Select the directory where you want the songs to be saved. + + SongsPlugin.ImportWizardForm @@ -4782,7 +4822,7 @@ A kódlap felelős a karakterek helyes megjelenítéséért. This wizard will help you to import songs from a variety of formats. Click the next button below to start the process by selecting a format to import from. - A tündérrel különféle formátumú dalokat lehet importálni. Az alább található Tovább gombra való kattintással indítható a folyamat első lépése a formátum kiválasztásával. + A tündérrel különféle formátumú dalokat lehet importálni. Az alább található Következő gombra való kattintással indítható a folyamat első lépése a formátum kiválasztásával. @@ -4867,60 +4907,60 @@ A kódlap felelős a karakterek helyes megjelenítéséért. Copy - Másolás + Másolás Save to File - Mentés fájlba + Mentés fájlba SongsPlugin.MediaItem - - Maintain the lists of authors, topics and books - Szerzők, témakörök, könyvek listájának kezelése - - - + Titles Címek - + Lyrics Dalszöveg - + Delete Song(s)? Törölhető(ek) a dal(ok)? - + CCLI License: CCLI licenc: - + Entire Song Teljes dal - + Are you sure you want to delete the %n selected song(s)? Törölhetők a kijelölt dalok: %n? + + + Maintain the lists of authors, topics and books. + Szerzők, témakörök, könyvek listájának kezelése. + SongsPlugin.OpenLP1SongImport Not a valid openlp.org 1.x song database. - + Ez nem egy openlp.org 1.x daladatbázis. @@ -4928,7 +4968,7 @@ A kódlap felelős a karakterek helyes megjelenítéséért. Not a valid OpenLP 2.0 song database. - + Ez nem egy OpenLP 2.0 daladatbázis. @@ -4985,7 +5025,7 @@ A kódlap felelős a karakterek helyes megjelenítéséért. The following songs could not be imported: - + A következő dalok nem importálhatók: @@ -5193,7 +5233,7 @@ A kódlap felelős a karakterek helyes megjelenítéséért. Themes - Témák + Témák diff --git a/resources/i18n/id.ts b/resources/i18n/id.ts index 9844c233d..c7f338304 100644 --- a/resources/i18n/id.ts +++ b/resources/i18n/id.ts @@ -42,7 +42,7 @@ Tetap lanjutkan? <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 pesan pada layar. + <strong>Plugin Peringatan</strong><br />Plugin peringatan mengendalikan tampilan pesan pada layar @@ -184,22 +184,22 @@ Tetap lanjutkan? BiblePlugin.HTTPBible - + Download Error Unduhan Gagal - + There was a problem downloading your verse selection. Please check your Internet connection, and if this error continues to occur please consider reporting a bug. Ada masalah dalam mengunduh ayat yang terpilih. Mohon periksa sambungan internet Anda dan jika masalah berlanjut, pertimbangkan untuk melaporkan hal ini sebagai kutu. - + Parse Error - Galat saat parsing. + Galat saat parsing - + There was a problem extracting your verse selection. If this error continues to occur please consider reporting a bug. Ada masalah dalam mengekstrak ayat yang terpilih. Jika masalah berlanjut, pertimbangkan untuk melaporkan hal ini sebagai kutu. @@ -207,12 +207,12 @@ Tetap lanjutkan? BiblePlugin.MediaItem - + Bible not fully loaded. Alkitab belum termuat seluruhnya. - + 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? @@ -224,46 +224,6 @@ Tetap lanjutkan? &Bible &Alkitab - - - <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 memungkinkan program untuk menampilkan ayat-ayat dari berbagai sumber selama kebaktian. - - - - Import a Bible - Impor Alkitab - - - - Add a new Bible - Tambahkan Alkitab - - - - 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 - Tampilkan Alkitab terpilih - - - - Add the selected Bible to the service - Tambahkan Alkitab terpilih untuk kebaktian - Bible @@ -283,47 +243,87 @@ Tetap lanjutkan? 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. + + + + <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display Bible verses from different sources during the service. + + BiblesPlugin.BibleManager - + Scripture Reference Error Referensi Kitab Suci Galat - + 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. + 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 Import Wizard untuk memasang sebuah atau beberapa Alkitab. + TIdak ada Alkitab terpasang. Harap gunakan Wisaya Impor untuk memasang sebuah atau beberapa Alkitab. - + Your scripture reference is either not supported by OpenLP or is invalid. Please make sure your reference conforms to one of the following patterns: Book Chapter @@ -342,7 +342,7 @@ Kitab Pasal:Ayat-Ayat,Pasal:Ayat-Ayat Kitab Pasal:Ayat-Pasal:Ayat - + No Bibles Available Alkitab tidak tersedia @@ -357,7 +357,7 @@ Kitab Pasal:Ayat-Pasal:Ayat Only show new chapter numbers - Hanya tampilkan nomor pasal baru + Hanya tampilkan nomor pasal baru @@ -402,12 +402,12 @@ Perubahan tidak akan mempengaruhi ayat yang kini tampil. Bible Import Wizard - Import Wizard Alkitab + Wisaya Impor Alkitab 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. - Wizard 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 lanjut di bawah untuk memulai proses dengan memilih format untuk diimpor. @@ -507,7 +507,7 @@ Perubahan tidak akan mempengaruhi ayat yang kini tampil. Bible Exists - Alkitab terpasang. + Alkitab Sudah Ada @@ -524,18 +524,6 @@ Perubahan tidak akan mempengaruhi ayat yang kini tampil. CSV File Berkas CSV - - - Starting Registering bible... - Mulai meregistrasi Alkitab... - - - - Registered bible. Please note, that verses will be downloaded on -demand and thus an internet connection is required. - Alkitab terdaftar. Mohon perhatikan bahwa ayat-ayat akan diunduh -sesuai permintaan dan membutuhkan sambungan internet. - Bibleserver @@ -574,76 +562,77 @@ sesuai permintaan dan membutuhkan sambungan internet. openlp.org 1.x Bible Files - Ayat Alkitab openlp.org 1.x. + Ayat Alkitab openlp.org 1.x + + + + Registering Bible... + + + + + Registered Bible. Please note, that verses will be downloaded on +demand and thus an internet connection is required. + BiblesPlugin.MediaItem - + Quick Cepat - + Find: Temukan: - - Results: - Hasil: - - - + Book: Kitab: - + Chapter: Pasal: - + Verse: Ayat: - + From: Dari: - + To: Kepada: - + Text Search Pencarian Teks - - Clear - Bersihkan - - - - Keep - Simpan - - - + Second: Kedua: - + Scripture Reference Referensi Alkitab + + + Toggle to keep or clear the previous results. + + BiblesPlugin.Opensong @@ -717,12 +706,12 @@ sesuai permintaan dan membutuhkan sambungan internet. Sunting seluruh slide bersamaan. - + Split Slide Pecah Slide - + Split a slide into two by inserting a slide splitter. Pecah slide menjadi dua menggunakan pemecah slide. @@ -737,63 +726,33 @@ sesuai permintaan dan membutuhkan sambungan internet. &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 slide. + Anda harus menambah paling sedikit satu salindia Ed&it All Sun&ting Semua + + + Split a slide into two only if it does not fit on the screen as one slide. + + + + + Insert Slide + + CustomsPlugin - - - Import a Custom - Impor sebuah Suaian - - - - Load a new Custom - Muat sebuah Suaian - - - - Add a new Custom - Tambah sebuah Suaian - - - - Edit the selected Custom - Sunting Suaian terpilih - - - - Delete the selected Custom - Hapus Suaian terpilih - - - - Preview the selected Custom - Pratinjau Suaian terpilih - - - - Send the selected Custom live - Kirim Suaian terpilih ke layar - - - - Add the selected Custom to the service - Tambah Suaian terpilih ke daftar layanan - Custom @@ -812,11 +771,51 @@ sesuai permintaan dan membutuhkan sambungan internet. container title Suaian + + + Load a new Custom. + Muat Suaian baru. + + + + Import a Custom. + Impor sebuah Suaian. + + + + Add a new Custom. + Tambahkan sebuah Suaian. + + + + Edit the selected Custom. + Sunting Suaian terpilih. + + + + Delete the selected Custom. + Hapus Suaian terpilih. + + + + Preview the selected Custom. + Pratinjau Suaian terpilih. + + + + Send the selected Custom live. + Tayangkan Suaian terpilih. + + + + Add the selected Custom to the service. + Tambahkan Suaian ke dalam layanan + GeneralTab - + General Umum @@ -828,41 +827,6 @@ sesuai permintaan dan membutuhkan sambungan internet. <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. - - - Load a new Image - Muat gambar baru - - - - Add a new Image - Tambah gambar baru - - - - Edit the selected Image - Ubah gambar terpilih - - - - Delete the selected Image - Hapus gambar terpilih - - - - Preview the selected Image - Pratinjau gambar terpilih - - - - Send the selected Image live - Tayangkan gambar terpilih - - - - Add the selected Image to the service - Tambahkan gambar terpilih ke service - Image @@ -881,11 +845,46 @@ sesuai permintaan dan membutuhkan sambungan internet. container title Gambar + + + Load a new Image. + Muat Gambar baru + + + + Add a new Image. + Tambahkan Gambar baru + + + + Edit the selected Image. + Sunting Gambar terpilih. + + + + Delete the selected Image. + Hapus Gambar terpilih. + + + + Preview the selected Image. + Pratinjau Gambar terpilih. + + + + Send the selected Image live. + Tayangkan Gambar terpilih. + + + + Add the selected Image to the service. + Tambahkan Gambar terpilih ke layanan. + ImagePlugin.ExceptionDialog - + Select Attachment Pilih Lampiran @@ -893,39 +892,39 @@ sesuai permintaan dan membutuhkan sambungan internet. ImagePlugin.MediaItem - + Select Image(s) Pilih 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 - + The following image(s) no longer exist: %s 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? - + 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. @@ -937,41 +936,6 @@ Ingin tetap menambah gambar lain? <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. - - - Load a new Media - Muat Media baru. - - - - Add a new Media - Tambahkan Media baru - - - - Edit the selected Media - Sunting Media terpilih - - - - Delete the selected Media - Hapus Media terpilih - - - - Preview the selected Media - Pratayang Media terpilih - - - - Send the selected Media live - Tayangkan Media terpilih - - - - Add the selected Media to the service - Tambahkan Media terpilih ke service - Media @@ -990,41 +954,76 @@ Ingin tetap menambah gambar lain? container title Media + + + Load a new Media. + Muat Media baru. + + + + Add a new Media. + Tambahkan 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. + 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. + Ada masalah dalam mengganti latar, berkas media "%s" tidak ada lagi. - + Missing Media File Berkas Media hilang - + The file %s no longer exists. Berkas %s tidak ada lagi. - + Videos (%s);;Audio (%s);;%s (*) Videos (%s);;Audio (%s);;%s (*) @@ -1053,34 +1052,17 @@ Ingin tetap menambah gambar lain? OpenLP.AboutForm - - OpenLP <version><revision> - Open Source Lyrics Projection - -OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if OpenOffice.org, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. - -Find out more about OpenLP: http://openlp.org/ - -OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider contributing by using the button below. - OpenLP <version><revision> - Open Source Lyrics Projection - -OpenLP adalah perangkat lunak gratis untuk presentasi gereja, untuk menayangkan slide lagu, ayat Alkitab, video, gambar, dan bahkan presentasi (jika OpenOffice.org atau PowerPoint terpasang) untuk gereja menggunakan komputer dan proyektor. - -Pelajari tentang OpenLP: http://openlp.org/ - -OpenLP ditulis dan dirawat oleh para sukarelawan. Untuk melihat lebih banyak software Kristen ditulis, pertimbangkan untuk berkontribusi melalui tombol di bawah. - - - + Credits Kredit - + License Lisensi - + Contribute Berkontribusi @@ -1090,17 +1072,17 @@ OpenLP ditulis dan dirawat oleh para sukarelawan. Untuk melihat lebih banyak sof 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. - + 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. - + Project Lead %s @@ -1223,20 +1205,24 @@ 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. + Dia telah membebaskan kita. - - Copyright © 2004-2011 Raoul Snyman -Portions copyright © 2004-2011 Tim Bentley, Jonathan Corwin, Michael Gorven, Scott Guerrieri, -Meinert Jordan, Andreas Preikschat, Christian Richter, Philip -Ridout, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Carsten -Tinggaard, Frode Woldsund - Copyright © 2004-2011 Raoul Snyman -Portions copyright © 2004-2011 Tim Bentley, Jonathan Corwin, Michael Gorven, Scott Guerrieri, -Meinert Jordan, Andreas Preikschat, Christian Richter, Philip -Ridout, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Carsten -Tinggaard, Frode Woldsund + + 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 contributing by using the button below. + + + + + Copyright © 2004-2011 %s +Portions copyright © 2004-2011 %s + @@ -1259,7 +1245,7 @@ Tinggaard, Frode Woldsund Double-click to send items straight to live - Klik-ganda untuk menayangkan langsung barang terpilih. + Klik-ganda untuk menayangkan butir terpilih @@ -1314,86 +1300,86 @@ Tinggaard, Frode Woldsund Click to select a color. - + Klik untuk memilih warna. Browse for an image file to display. - + Ramban sebuah gambar untuk ditayangkan. Revert to the default OpenLP logo. - + Balikkan ke logo OpenLP bawaan. OpenLP.DisplayTagDialog - + Edit Selection Sunting pilihan - - Update - Perbarui - - - + Description Deskripsi - + Tag Label - + Start tag Label awal - + End tag Label akhir - + Default Bawaan - + Tag Id ID Label - + Start HTML HTML Awal - + End HTML Akhir HTML + + + Save + + OpenLP.DisplayTagTab - + Update Error Galat dalam Memperbarui - + Tag "n" already defined. Label "n" sudah terdefinisi. - + Tag %s already defined. Label %s telah terdefinisi. @@ -1433,7 +1419,7 @@ Tinggaard, Frode Woldsund Lampirkan Berkas - + Description characters to enter : %s Karakter deskripsi untuk dimasukkan: %s @@ -1489,7 +1475,7 @@ Version: %s - + *OpenLP Bug Report* Version: %s @@ -1518,7 +1504,7 @@ Version: %s %s --- Library Versions --- %s - +Mohon gunakan bahasa Inggris untuk laporan kutu. @@ -1577,85 +1563,80 @@ Version: %s First Time Wizard - Wisaya Pertama Kali + Wisaya Kali Pertama Welcome to the First Time Wizard - Selamat datang di Wisaya Pertama Kali + Selamat datang di Wisaya Kali Pertama - - This wizard will help you to configure OpenLP for initial use. Click the next button below to start the process of selection your initial options. - Wisaya ini akan membantu mengonfigurasi OpenLP untuk penggunaan pertama. Klik lanjut untuk memulai proses menyetel pilihan awal. - - - + Activate required Plugins Mengaktivasi Plugin yang dibutuhkan - + Select the Plugins you wish to use. Pilih Plugin yang ingin digunakan. - + Songs Lagu - + Custom Text Teks - + Bible Alkitab - + Images Gambar - + Presentations Presentasi - + Media (Audio and Video) Media (Audio dan Video) - + Allow remote access Izinkan akses jauh - + Monitor Song Usage Catat Penggunaan Lagu - + Allow Alerts Izinkan Peringatan - + No Internet Connection Tidak Terhubung ke Internet - + Unable to detect an Internet connection. Tidak dapat mendeteksi koneksi Internet. - + 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. To re-run the First Time Wizard and import this sample data at a later stage, press the cancel button now, check your Internet connection, and restart OpenLP. @@ -1668,192 +1649,197 @@ Untuk menjalankan lagi Wisaya Kali Pertama dan mengimpor contoh data, tekan bata Untuk membatalkan Wisaya Kali Pertama, tekan tombol selesai. - + 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 - + Default Settings Pengaturan Bawaan - + Set up default settings to be used by OpenLP. Atur pengaturan bawaan pada OpenLP. - + Setting Up And Importing Pengaturan Awal dan Pengimporan - + Please wait while OpenLP is set up and your data is imported. Mohon tunggu selama OpenLP diatur dan data diimpor. - + 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. + + 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 - + 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 - + Automatically preview next item in service Pratinjau item selanjutnya pada sevice - + Slide loop delay: Waktu tunda perulangan slide: - + sec sec - + CCLI Details Detail CCLI - + SongSelect username: Nama pengguna SongSelect: - + SongSelect password: Sandi-lewat SongSelect: - + Display Position Posisi Tampilan - + X X - + Y Y - + Height Tinggi - + Width Lebar - + Override display position Timpa posisi tampilan - + Check for updates to OpenLP Cek pembaruan untuk OpenLP - + Unblank display when adding new live item - Jangan kosongkan layar saat menambah item baru + Jangan kosongkan layar saat menambah butir tayang baru @@ -1872,7 +1858,7 @@ Untuk membatalkan Wisaya Kali Pertama, tekan tombol selesai. OpenLP.MainDisplay - + OpenLP Display Tampilan OpenLP @@ -1880,284 +1866,284 @@ Untuk membatalkan Wisaya Kali Pertama, tekan tombol selesai. OpenLP.MainWindow - + &File &File - + &Import &Impor - + &Export &Ekspor - + &View &Lihat - + M&ode M&ode - + &Tools Ala&t - + &Settings &Pengaturan - + &Language &Bahasa - + &Help Bantua&n - + Media Manager Manajer Media - + Service Manager Manajer Layanan - + Theme Manager Manajer Tema - + &New &Baru - + &Open &Buka - + Open an existing service. Buka layanan yang ada. - + &Save &Simpan - + Save the current service to disk. Menyimpan layanan aktif ke dalam diska. - + 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. - + E&xit Kelua&r - + Quit OpenLP Keluar dari OpenLP - + &Theme &Tema - + &Configure OpenLP... &Konfigurasi OpenLP... - + &Media Manager - Manajer %Media + Manajer &Media - + Toggle Media Manager Ganti Manajer Media - + Toggle the visibility of the media manager. 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. - + &Service Manager Manajer &Layanan - + Toggle Service Manager Ganti Manajer Layanan - + Toggle the visibility of the service manager. Mengganti kenampakan 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 - Panel &Tayang + Pane&l Tayang - + Toggle Live Panel Ganti Panel Tayang - + Toggle the visibility of the live panel. Mengganti kenampakan panel tayang. - + &Plugin List Daftar &Plugin - + List the Plugins Melihat daftar Plugin - + &User Guide T&untunan 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. - + Set the interface language to %s Ubah bahasa antarmuka menjadi %s - + Add &Tool... Tambahkan Ala&t... - + Add an application to the list of tools. Tambahkan aplikasi ke daftar alat. - + &Default &Bawaan - + Set the view mode back to the default. Ubah mode tampilan ke bawaan. - + &Setup &Persiapan - + Set the view mode to Setup. Pasang mode tampilan ke Persiapan. - + &Live &Tayang - + Set the view mode to Live. - Pasang mode tampilan ke Tayang + Pasang mode tampilan ke Tayang. @@ -2174,17 +2160,17 @@ Versi terbaru dapat diunduh dari http://openlp.org/. 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 @@ -2195,45 +2181,60 @@ Versi terbaru dapat diunduh dari http://openlp.org/. Inggris - + Configure &Shortcuts... Atur &Pintasan - + Close OpenLP Tutup OpenLP - + Are you sure you want to close OpenLP? Yakin ingin menutup OpenLP? - + Print the current Service Order. Cetak Daftar Layanan aktif - + 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. - + &Configure Display Tags &Konfigurasi Label Tampilan - + &Autodetect &Autodeteksi + + + Update Theme Images + + + + + Update the preview images for all themes. + + + + + F1 + + OpenLP.MediaManagerItem @@ -2243,44 +2244,55 @@ Versi terbaru dapat diunduh dari http://openlp.org/. Tidak Ada Barang yang Terpilih - + &Add to selected Service Item - T%ambahkan Butir Layanan + T&ambahkan ke dalam Butir Layanan - + You must select one or more items to preview. Anda harus memilih satu atau beberapa butir untuk dipratilik. - + You must select one or more items to send live. Anda harus memilih satu atau beberapa butir untuk ditayangkan. - + You must select one or more items. Anda harus memilih satu atau beberapa butir. - + You must select an existing service item to add to. Anda harus memilih butir layanan yang ada untuk ditambahkan. - + Invalid Service Item Butir Layanan Tidak Sahih - + You must select a %s service item. Anda harus memilih sebuah butir layanan %s. - + Duplicate file name %s. Filename already exists in list + Nama berkas %s ganda. +Nama berkas sudah ada di daftar. + + + + You must select one or more items to add. + + + + + No Search Results @@ -2324,7 +2336,7 @@ Filename already exists in list %s (Disabled) - + %s (Dihentikan) @@ -2404,19 +2416,19 @@ Filename already exists in list - Add page break before each text item. - Tambahkan batas halaman sebelum tiap butir teks. + Add page break before each text item + Tambahkan pemisan sebelum tiap butir teks OpenLP.ScreenList - + Screen Layar - + primary Utama @@ -2432,224 +2444,209 @@ Filename already exists in list OpenLP.ServiceManager - - Load an existing service - Muat layanan tersimpan - - - - Save this service - Simpan layanan ini - - - - Select a theme for the service - Pilih tema untuk layanan - - - + Move to &top Pindahkan ke punc&ak - + Move item to the top of the service. Pindahkan butir ke puncak daftar layanan. - + Move &up Pindahkan ke a&tas - + Move item up one position in the service. Naikkan butir satu posisi pada daftar layanan. - + Move &down Pindahkan ke &bawah - + Move item down one position in the service. Turunkan butir satu posisi pada daftar layanan. - + Move to &bottom Pindahkan ke &kaki - + Move item to the end of the service. Pindahkan butir ke kaki daftar layanan. - + &Delete From Service Hapus &dari Layanan - + Delete the selected item from the service. Hapus butir terpilih dari layanan, - + &Add New Item T&ambahkan Butir Baru - + &Add to Selected Item T&ambahkan ke Butir Terpilih - + &Edit Item &Sunting Butir - + &Reorder Item Atu&r Ulang Butir - + &Notes Catata&n - + &Change Item Theme &Ubah Tema - + OpenLP Service Files (*.osz) Berkas Layanan OpenLP (*.osz) - + File is not a valid service. The content encoding is not UTF-8. Berkas bukan berupa layanan. Isi berkas tidak berupa UTF-8. - + File is not a valid service. - + Berkas bukan layanan sahih. - + Missing Display Handler - + Penangan Tayang hilang - + Your item cannot be displayed as there is no handler to display it - + Butir tidak dapat ditayangkan karena tidak ada penangan untuk menayangkannya. - + Your item cannot be displayed as the plugin required to display it is missing or inactive - + &Expand all - + Expand all the service items. - + &Collapse all - + Collapse all the service items. - + Open File Buka Berkas - + Moves the selection down the window. - + Move up - + Moves the selection up the window. - + Go Live - + Tayangkan - + Send the selected item to Live. - + Tayangkan butir terpilih. - + &Start Time - + Show &Preview - + Show &Live - + Tampi&lkan Tayang - + Modified Service - + The current service has been modified. Would you like to save this service? - + File could not be opened because it is corrupt. - + Empty File - + This service file does not contain any data. - + Corrupt File @@ -2669,15 +2666,30 @@ Isi berkas tidak berupa UTF-8. - + Untitled Service - + This file is either corrupt or not an OpenLP 2.0 service file. + + + Load an existing service. + + + + + Save this service. + + + + + Select a theme for the service. + + OpenLP.ServiceNoteForm @@ -2766,100 +2778,105 @@ Isi berkas tidak berupa UTF-8. OpenLP.SlideController - + Move to previous - + Move to next - + Hide - + Move to live - + Pindahkan ke tayang - + Edit and reload song preview - + Start continuous loop - + Stop continuous loop - + Delay between slides in seconds - + Start playing media - + Go To - + Blank Screen - + Blank to Theme - + Show Desktop - + Previous Slide - + Next Slide - + Previous Service - + Next Service - + Escape Item - + Start/Stop continuous loop + + + Add to Service + + OpenLP.SpellTextEdit @@ -3028,68 +3045,68 @@ Isi berkas tidak berupa UTF-8. - + %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. The content encoding is not UTF-8. - + File is not a valid theme. @@ -3109,47 +3126,47 @@ The content encoding is not UTF-8. - + 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) @@ -3490,7 +3507,7 @@ The content encoding is not UTF-8. Live - + Tayang @@ -3573,7 +3590,7 @@ The content encoding is not UTF-8. - + &Vertical Align: @@ -3781,7 +3798,7 @@ The content encoding is not UTF-8. - + Starting import... @@ -3930,11 +3947,6 @@ The content encoding is not UTF-8. View - - - View Model - - Duplicate Error @@ -3955,11 +3967,16 @@ The content encoding is not UTF-8. XML syntax error + + + View Mode + + OpenLP.displayTagDialog - + Configure Display Tags @@ -3971,31 +3988,6 @@ The content encoding is not UTF-8. <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. - - - Load a new Presentation - - - - - Delete the selected Presentation - - - - - Preview the selected Presentation - - - - - Send the selected Presentation live - - - - - Add the selected Presentation to the service - - Presentation @@ -4014,56 +4006,81 @@ The content encoding is not UTF-8. container title Presentasi + + + 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 no longer exists. - + The Presentation %s is incomplete, please reload. @@ -4115,20 +4132,30 @@ The content encoding is not UTF-8. RemotePlugin.RemoteTab - + Serve on IP address: - + Port number: - + Server Settings + + + Remote URL: + + + + + Stage view URL: + + SongUsagePlugin @@ -4311,36 +4338,6 @@ has been successfully created. Reindexing songs... - - - 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 - - Arabic (CP-1256) @@ -4452,6 +4449,36 @@ The encoding is responsible for the correct character representation. 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. + + SongsPlugin.AuthorsForm @@ -4685,7 +4712,7 @@ The encoding is responsible for the correct character representation. - + You need to type some text in to the verse. @@ -4693,20 +4720,35 @@ The encoding is responsible for the correct character representation. SongsPlugin.EditVerseForm - + Edit Verse - + &Verse type: - + &Insert + + + &Split + + + + + Split a slide into two only if it does not fit on the screen as one slide. + + + + + Split a slide into two by inserting a verse splitter. + + SongsPlugin.ExportWizardForm @@ -4740,11 +4782,6 @@ The encoding is responsible for the correct character representation. Select Directory - - - Select the directory you want the songs to be saved. - - Directory: @@ -4790,6 +4827,11 @@ The encoding is responsible for the correct character representation. Select Destination Folder + + + Select the directory where you want the songs to be saved. + + SongsPlugin.ImportWizardForm @@ -4902,42 +4944,42 @@ The encoding is responsible for the correct character representation. SongsPlugin.MediaItem - - Maintain the lists of authors, topics and books - - - - + Titles - + Lyrics - + Delete Song(s)? - + CCLI License: - + Entire Song - + Are you sure you want to delete the %n selected song(s)? + + + Maintain the lists of authors, topics and books. + + SongsPlugin.OpenLP1SongImport diff --git a/resources/i18n/ja.ts b/resources/i18n/ja.ts index cc435852d..898af216c 100644 --- a/resources/i18n/ja.ts +++ b/resources/i18n/ja.ts @@ -184,22 +184,22 @@ Do you want to continue anyway? BiblePlugin.HTTPBible - + Download Error ダウンロードエラー - + Parse Error HTML構文エラー - + 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 extracting your verse selection. If this error continues to occur please consider reporting a bug. 選択された聖書の展開に失敗しました。エラーが再び起こったときは、バグ報告を検討してください。 @@ -207,12 +207,12 @@ Do you want to continue anyway? BiblePlugin.MediaItem - + Bible not fully loaded. 聖書が完全に読み込まれていません。 - + You cannot combine single and dual Bible verse search results. Do you want to delete your search results and start a new search? 一つの聖書と複数の聖書の検索結果をくっつける事はできません。検索結果を削除して、再検索しますか? @@ -224,46 +224,6 @@ Do you want to continue anyway? &Bible 聖書(&B) - - - <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display bible verses from different sources during the service. - <strong>聖書プラグイン</strong><br />聖書プラグインは、礼拝プログラムで様々な訳の御言葉を表示する機能を提供します。 - - - - 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 - 選択した聖書を礼拝プログラムに追加 - Bible @@ -283,47 +243,87 @@ Do you want to continue anyway? 聖書 - + 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. + + 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. 利用可能な聖書がありません。インポートガイドを利用して、一つ以上の聖書をインストールしてください。 - + Your scripture reference is either not supported by OpenLP or is invalid. Please make sure your reference conforms to one of the following patterns: Book Chapter @@ -342,7 +342,7 @@ Book Chapter:Verse-Chapter:Verse 書 章:節-章:節 - + No Bibles Available 利用可能な聖書翻訳がありません @@ -518,17 +518,6 @@ Changes do not affect verses already in the service. Your Bible import failed. 聖書データの取り込みに失敗しました。 - - - Starting Registering bible... - 聖書を登録しています... - - - - Registered bible. Please note, that verses will be downloaded on -demand and thus an internet connection is required. - 聖書が登録されました。節ごとに必要に応じてダウンロードされますので、インターネットへの接続が要求される事を留意しておいてください。 - Permissions: @@ -574,74 +563,75 @@ demand and thus an internet connection is required. openlp.org 1.x Bible Files openlp.org 1x 聖書ファイル + + + Registering Bible... + + + + + Registered Bible. Please note, that verses will be downloaded on +demand and thus an internet connection is required. + + BiblesPlugin.MediaItem - + Quick 高速 - + Find: 検索: - - Results: - 結果: - - - + Book: 書名: - + Chapter: 章: - + Verse: 節: - + From: 開始: - + To: 終了: - + Text Search キーワード検索 - - Clear - 消去 - - - - Keep - 追加 - - - + Second: 第二訳: - + Scripture Reference 参照聖句 + + + Toggle to keep or clear the previous results. + + BiblesPlugin.Opensong @@ -715,12 +705,12 @@ demand and thus an internet connection is required. すべてのスライドを一括編集。 - + Split Slide スライドを分割 - + Split a slide into two by inserting a slide splitter. スライド分割機能を用い、スライドを分割してください。 @@ -730,12 +720,12 @@ demand and thus an internet connection is required. 外観テーマ(&m): - + You need to type in a title. タイトルの入力が必要です。 - + You need to add at least one slide 最低一枚のスライドが必要です @@ -749,49 +739,19 @@ demand and thus an internet connection is required. &Credits: クレジット(&C): + + + Split a slide into two only if it does not fit on the screen as one slide. + + + + + Insert Slide + + CustomsPlugin - - - Import a Custom - カスタムをインポート - - - - Load a new Custom - 新しいカスタムを読み込む - - - - Add a new Custom - 新しいカスタムを追加 - - - - Edit the selected Custom - 選択したカスタムを編集 - - - - Delete the selected Custom - 選択したカスタムを削除 - - - - Preview the selected Custom - 選択したカスタムをプレビュー - - - - Send the selected Custom live - 選択したカスタムをライブへ送る - - - - Add the selected Custom to the service - 選択したカスタムを礼拝プログラムに追加 - Custom @@ -810,13 +770,53 @@ demand and thus an internet connection is required. container title カスタム + + + Load a new Custom. + 新しいカスタムを読み込みます。 + + + + Import a Custom. + カスタムをインポートします。 + + + + Add a new Custom. + 新しいカスタムを追加します。 + + + + Edit the selected Custom. + 選択したカスタムを編集します。 + + + + Delete the selected Custom. + 選択したカスタムを削除します。 + + + + Preview the selected Custom. + 選択したカスタムをプレビューします。 + + + + Send the selected Custom live. + 選択したカスタムをライブへ送ります。 + + + + Add the selected Custom to the service. + 選択したカスタムを礼拝プログラムに追加します。 + GeneralTab - + General - 一般 + 一般 @@ -826,41 +826,6 @@ demand and thus an internet connection is required. <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 />礼拝プログラムで複数の画像をグループ化したり、複数の画像を簡単に表示することができます。タイムアウトループの機能を使用してスライドショーを自動的に表示することもできます。さらに、賛美などのテキストベースの項目の背景を、外観テーマで指定されたものからこのプラグインの画像に変更することもできます。 - - - 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 - 選択した画像を礼拝プログラムに追加 - Image @@ -879,11 +844,46 @@ demand and thus an internet connection is required. 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 添付を選択 @@ -891,39 +891,39 @@ demand and thus an internet connection is required. 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? 以下の画像は既に存在しません:%s それでも他の画像を追加しますか? - + There was a problem replacing your background, the image file "%s" no longer exists. 背景画像を置換する際に問題が発生しました。画像ファイル"%s"が存在しません。 @@ -935,41 +935,6 @@ Do you want to add the other images anyway? <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. <strong>メディアプラグイン</strong><br />メディアプラグインは、音声や動画を再生する機能を提供します。 - - - Load a new Media - 新しいメディアを読み込み - - - - Add a 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 - 選択したメディアを礼拝プログラムに追加 - Media @@ -988,41 +953,76 @@ Do you want to add the other images anyway? container title メディア + + + Load a new Media. + 新しいメディアを読み込みます。 + + + + Add a 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. 削除するメディアファイルを選択してください。 - + Missing Media File メディアファイルが見つかりません - + The file %s no longer exists. ファイル %s が見つかりません。 - + 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"は既に存在しません。 - + Videos (%s);;Audio (%s);;%s (*) ビデオ (%s);;オーディオ (%s);;%s (*) @@ -1051,34 +1051,17 @@ Do you want to add the other images anyway? OpenLP.AboutForm - - OpenLP <version><revision> - Open Source Lyrics Projection - -OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if OpenOffice.org, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. - -Find out more about OpenLP: http://openlp.org/ - -OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider contributing by using the button below. - OpenLPは、教会専用のフリー(無償及び利用に関して)のプレゼンテーション及び賛美詞投射ソフトウェアです。 - -パソコンとプロジェクターを用いて、聖書箇所、画像また他プレゼンテーションデータ(OpenOffice.orgやPowerPoint/Viewerが必要)をスライド表示する事ができます。 - -http://openlp.org/にて詳しくご紹介しております。 - -OpenLPは、ボランティアの手により開発保守されています。もっと多くのクリスチャンの手によるフリーのソフトウェア開発に興味がある方は、以下のボタンからどうぞ。 - - - + Credits 著作情報 - + License ライセンス - + Contribute 貢献する @@ -1088,17 +1071,17 @@ OpenLPは、ボランティアの手により開発保守されています。 ビルド %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. このプログラムは、皆様のお役に立てると期待し、配布しています。しかし、完全に無保障である事を覚えて下さい。商品としての暗黙の保障としての商品適格性や特定の使用適合性もありません。詳しくは、以下の文をお読みください。 - + Project Lead %s @@ -1225,17 +1208,21 @@ Final Credit します。それは神が私たちをフリー(自由)にして下さった故です。 - - Copyright © 2004-2011 Raoul Snyman -Portions copyright © 2004-2011 Tim Bentley, Jonathan Corwin, Michael Gorven, Scott Guerrieri, -Meinert Jordan, Andreas Preikschat, Christian Richter, Philip -Ridout, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Carsten -Tinggaard, Frode Woldsund - Copyright © 2004-2011 Raoul Snyman -Portions copyright © 2004-2011 Tim Bentley, Jonathan Corwin, Michael Gorven, Scott Guerrieri, -Meinert Jordan, Andreas Preikschat, Christian Richter, Philip -Ridout, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Carsten -Tinggaard, Frode Woldsund + + 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 contributing by using the button below. + + + + + Copyright © 2004-2011 %s +Portions copyright © 2004-2011 %s + @@ -1303,96 +1290,96 @@ Tinggaard, Frode Woldsund Preview items when clicked in Media Manager - + メディアマネジャーでクリック時に項目をプレビューする Advanced - 詳細設定 + 詳細設定 Click to select a color. - + クリックして色を選択する。 Browse for an image file to display. - + 表示する画像ファイルを参照する。 Revert to the default OpenLP logo. - + 規定のOpenLPロゴに戻す。 OpenLP.DisplayTagDialog - + Edit Selection 選択項目を編集 - - Update - 更新 - - - + Description 説明 - + Tag タグ - + Start tag 開始タグ - + End tag 終了タグ - + Default 初期設定 - + Tag Id タグID - + Start HTML 開始HTML - + End HTML 終了HTML + + + Save + + OpenLP.DisplayTagTab - + Update Error 更新エラー - + Tag "n" already defined. タグ「n」は既に定義されています。 - + Tag %s already defined. タグ「%s」は既に定義されています。 @@ -1432,7 +1419,7 @@ Tinggaard, Frode Woldsund ファイルを添付 - + Description characters to enter : %s 説明 : %s @@ -1488,7 +1475,7 @@ Version: %s %s - + *OpenLP Bug Report* Version: %s @@ -1584,77 +1571,72 @@ Version: %s 初回起動ガイドへようこそ - - This wizard will help you to configure OpenLP for initial use. Click the next button below to start the process of selection your initial options. - このガイドは、初回起動時に、OpenLPを設定するお手伝いをします。次へボタンを押下し、OpenLPを設定していきましょう。 - - - + Activate required Plugins 必要なプラグインを有効化する - + Select the Plugins you wish to use. ご利用になるプラグインを選択してください。 - + Songs 賛美 - + Custom Text カスタムテキスト - + Bible 聖書 - + Images 画像 - + Presentations プレゼンテーション - + Media (Audio and Video) メディア(音声と動画) - + Allow remote access リモートアクセスを許可 - + Monitor Song Usage 賛美利用記録 - + Allow Alerts 警告を許可 - + No Internet Connection インターネット接続が見つかりません - + Unable to detect an Internet connection. インターネット接続が検知されませんでした。 - + 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. To re-run the First Time Wizard and import this sample data at a later stage, press the cancel button now, check your Internet connection, and restart OpenLP. @@ -1667,192 +1649,197 @@ To cancel the First Time Wizard completely, press the finish button now. - + Sample Songs サンプル賛美 - + Select and download public domain songs. 以下のキリスト教化において合法的に利用が可能な賛美を選択して下さい。 - + Sample Bibles サンプル聖書 - + Select and download free Bibles. 以下のフリー聖書を選択する事でダウンロードできます。 - + Sample Themes サンプル外観テーマ - + Select and download sample themes. サンプル外観テーマを選択して、ダウンロードして下さい。 - + Default Settings 既定設定 - + Set up default settings to be used by OpenLP. 既定設定がOpenLPに使われるようにセットアップします。 - + Setting Up And Importing セットアップとインポート中 - + Please wait while OpenLP is set up and your data is imported. 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.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 自動的に次の項目をプレビューする - + Slide loop delay: スライド繰返の遅延: - + sec - + CCLI Details CCLI詳細 - + SongSelect username: SongSelect ユーザー名: - + SongSelect password: SongSelect パスワード: - + Display Position 表示位置 - + X - + Y - + Height - + Width - + Override display position 表示位置を変更する - + Check for updates to OpenLP OpenLPのバージョン更新の確認 - + Unblank display when adding new live item - + ライブ項目の追加時にブランクを解除 @@ -1871,7 +1858,7 @@ To cancel the First Time Wizard completely, press the finish button now. OpenLP.MainDisplay - + OpenLP Display OpenLP ディスプレイ @@ -1879,282 +1866,282 @@ To cancel the First Time Wizard completely, press the finish button now. 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 Open LPを終了 - + &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. 表示モードをライブにします。 @@ -2173,17 +2160,17 @@ http://openlp.org/から最新版がダウンロード可能です。OpenLPのバージョンアップ完了 - + OpenLP Main Display Blanked OpenLPのプライマリディスプレイがブランクです - + The Main Display has been blanked out OpenLPのプライマリディスプレイがブランクになりました - + Default Theme: %s 既定外観テーマ @@ -2194,45 +2181,60 @@ http://openlp.org/から最新版がダウンロード可能です。日本語 - + Configure &Shortcuts... ショートカットの設定(&S)... - + Close OpenLP OpenLPの終了 - + Are you sure you want to close OpenLP? 本当にOpenLPを終了してもよろしいですか? - + Print the current Service Order. 現在の礼拝プログラム順序を印刷します。 - + &Configure Display Tags 表示タグを設定(&C) - + 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. + + + + + F1 + + OpenLP.MediaManagerItem @@ -2242,44 +2244,55 @@ http://openlp.org/から最新版がダウンロード可能です。項目の選択がありません - + &Add to selected Service Item 選択された礼拝項目を追加(&A - + You must select one or more items to preview. プレビューを見るには、一つ以上の項目を選択してください。 - + You must select one or more items to send live. ライブビューを見るには、一つ以上の項目を選択してください。 - + You must select one or more items. 一つ以上の項目を選択してください。 - + You must select an existing service item to add to. 追加するには、既存の礼拝項目を選択してください。 - + Invalid Service Item 無効な礼拝項目 - + You must select a %s service item. %sの項目を選択してください。 - + Duplicate file name %s. Filename already exists in list + 重複するファイル名 %s +このファイル名は既にリストに存在します + + + + You must select one or more items to add. + + + + + No Search Results @@ -2403,19 +2416,19 @@ Filename already exists in list - Add page break before each text item. - + Add page break before each text item + テキスト項目毎に改ページ OpenLP.ScreenList - + Screen スクリーン - + primary プライマリ @@ -2431,251 +2444,251 @@ Filename already exists in list OpenLP.ServiceManager - - Load an existing service - 既存の礼拝プログラムを読み込む - - - - Save this service - 礼拝プログラムを保存 - - - - Select a theme for the service - 礼拝プログラムの外観テーマを選択 - - - + Move to &top 一番上に移動(&t) - + Move item to the top of the service. 選択した項目を最も上に移動する。 - + Move &up 一つ上に移動(&u) - + Move item up one position in the service. 選択した項目を1つ上に移動する。 - + Move &down 一つ下に移動(&d) - + Move item down one position in the service. 選択した項目を1つ下に移動する。 - + Move to &bottom 一番下に移動(&b) - + Move item to the end of the service. 選択した項目を最も下に移動する。 - + &Delete From Service 削除(&D) - + Delete the selected item from the service. 選択した項目を礼拝プログラムから削除する。 - + &Add New Item 新しい項目を追加(&A) - + &Add to Selected Item 選択された項目を追加(&A) - + &Edit Item 項目の編集(&E) - + &Reorder Item 項目を並べ替え(&R) - + &Notes メモ(&N) - + &Change Item Theme 項目の外観テーマを変更(&C) - + File is not a valid service. The content encoding is not UTF-8. 礼拝プログラムファイルが有効でありません。 エンコードがUTF-8でありません。 - + File is not a valid service. 礼拝プログラムファイルが有効でありません。 - + Missing Display Handler ディスプレイハンドラが見つかりません - + Your item cannot be displayed as there is no handler to display it ディスプレイハンドラが見つからないため項目を表示する事ができません - + Your item cannot be displayed as the plugin required to display it is missing or inactive 必要なプラグインが見つからないか無効なため、項目を表示する事ができません - + &Expand all すべて展開(&E) - + Expand all the service items. 全ての項目を展開する。 - + &Collapse all すべて折り畳む(&C) - + Collapse all the service items. 全ての項目を折り畳みます。 - + Open File ファイルを開く - + OpenLP Service Files (*.osz) OpenLP 礼拝プログラムファイル (*.osz) - + Moves the selection down the window. 選択をウィンドウの下に移動する。 - + Move up 上に移動 - + Moves the selection up the window. 選択をウィンドウの上に移動する。 - + Go Live ライブへGO - + Send the selected item to Live. 選択された項目をライブ表示する。 - + Modified Service 礼拝プログラムの編集 - + &Start Time 開始時間(&S) - + Show &Preview プレビュー表示(&P) - + Show &Live ライブ表示(&L) - + The current service has been modified. Would you like to save this service? 現在の礼拝プログラムは、編集されています。保存しますか? - + File could not be opened because it is corrupt. - + ファイルが破損しているため開けません。 - + Empty File - + 空のファイル - + This service file does not contain any data. - + この礼拝プログラムファイルは空です。 - + Corrupt File - + 破損したファイル Custom Service Notes: - + カスタム礼拝項目メモ: Notes: - + メモ: Playing time: - + 再生時間: - + Untitled Service - + 無題 - + This file is either corrupt or not an OpenLP 2.0 service file. - + このファイルは破損しているかOpenLP 2.0の礼拝プログラムファイルではありません。 + + + + Load an existing service. + 既存の礼拝プログラムを読み込みます。 + + + + Save this service. + 礼拝プログラムを保存します。 + + + + Select a theme for the service. + 礼拝プログラムの外観テーマを選択します。 @@ -2729,134 +2742,139 @@ The content encoding is not UTF-8. 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? - + 全てのショートカットを初期設定に戻しますか? OpenLP.SlideController - + Move to previous 前へ移動 - + Move to next 次へ移動 - + Hide 隠す - + Move to live ライブへ移動 - + Edit and reload song preview 編集し再読み込み - + Start continuous loop 繰り返し再生を開始 - + Stop continuous loop 繰り返し再生を停止 - + Delay between slides in seconds 次のスライドまでの遅延 - + Start playing media メディア再生を開始 - + Go To - + Blank Screen スクリーンをブランク - + Blank to Theme 外観テーマをブランク - + Show Desktop デスクトップを表示 - + Previous Slide 前スライド - + Next Slide 次スライド - + Previous Service 前の礼拝プログラム - + Next Service 次の礼拝プログラム - + Escape Item 項目をエスケープ - + Start/Stop continuous loop + 繰り返し再生を開始/停止 + + + + Add to Service @@ -2875,7 +2893,7 @@ The content encoding is not UTF-8. Language: - + 言語: @@ -2898,37 +2916,37 @@ The content encoding is not UTF-8. Item Start and Finish Time - + 項目の開始終了時間 Start - + 開始 Finish - + 終了 Length - + 長さ Time Validation Error - + 時間検証エラー End time is set after the end of the media item - + 終了時間がメディア項目の終了時間より後に設定されています Start time is after the End Time of the media item - + 開始時間がメディア項目の終了時間より後に設定されています @@ -3027,68 +3045,68 @@ The content encoding is not UTF-8. 全体の既定として設定(&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. The content encoding is not UTF-8. ファイルは無効な外観テーマです。文字コードがUTF-8ではありません。 - + File is not a valid theme. 無効な外観テーマファイルです。 @@ -3108,47 +3126,47 @@ The content encoding is not UTF-8. 外観テーマのエキスポート(&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) @@ -3725,7 +3743,7 @@ The content encoding is not UTF-8. バージョン - + &Vertical Align: 垂直整列(&V): @@ -3780,7 +3798,7 @@ The content encoding is not UTF-8. 準備完了。 - + Starting import... インポートを開始しています.... @@ -3855,110 +3873,110 @@ The content encoding is not UTF-8. Continuous - 連続 + 連続 Default - 初期設定 + 初期設定 Display style: - 表示スタイル: + 表示スタイル: 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 - + ツール Verse Per Slide - スライドに1節 + スライドに1節 Verse Per Line - 1行に1節 + 1行に1節 View - - - - - View Model - + 表示 Duplicate Error - + 重複エラー Unsupported File - サポートされていないファイル + サポートされていないファイル Title and/or verses not found - + タイトル/歌詞が見つかりません XML syntax error + XML構文エラー + + + + View Mode OpenLP.displayTagDialog - + Configure Display Tags 表示タグを設定 @@ -3970,31 +3988,6 @@ The content encoding is not UTF-8. <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. <strong>プレゼンテーションプラグイン</strong><br />プレゼンテーションプラグインは、外部のプログラムを使用してプレゼンテーションを表示する機能を提供します。使用可能なプログラムは、ドロップダウンボックスから選択できます。 - - - Load a new Presentation - 新しいプレゼンテーションを読み込み - - - - Delete the selected Presentation - 選択したプレゼンテーションを削除 - - - - Preview the selected Presentation - 選択したプレゼンテーションをプレビュー - - - - Send the selected Presentation live - 選択したプレゼンテーションをライブへ送る - - - - Add the selected Presentation to the service - 選択したプレゼンテーションを礼拝プログラムに追加 - Presentation @@ -4013,56 +4006,81 @@ The content encoding is not UTF-8. 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) プレゼンテーション (%s) - + Missing Presentation 不明なプレゼンテーション - + The Presentation %s no longer exists. プレゼンテーション%sが見つかりません。 - + The Presentation %s is incomplete, please reload. プレゼンテーション%sは不完全です。再度読み込んでください。 @@ -4114,20 +4132,30 @@ The content encoding is not UTF-8. RemotePlugin.RemoteTab - + Serve on IP address: 待ち受けるIPアドレス: - + Port number: ポート番号: - + Server Settings サーバ設定 + + + Remote URL: + + + + + Stage view URL: + + SongUsagePlugin @@ -4192,7 +4220,7 @@ The content encoding is not UTF-8. Song Usage - + 利用記録 @@ -4312,36 +4340,6 @@ has been successfully created. Reindexing songs... 賛美のインデックスを再作成中... - - - 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 - 選択した賛美を礼拝プログラムに追加 - Song @@ -4453,6 +4451,36 @@ The encoding is responsible for the correct character representation. 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. + 選択した賛美を礼拝プログラムに追加します。 + SongsPlugin.AuthorsForm @@ -4497,7 +4525,7 @@ The encoding is responsible for the correct character representation. The file does not have a valid extension. - + ファイルの拡張子が無効です。 @@ -4505,7 +4533,7 @@ The encoding is responsible for the correct character representation. Administered by %s - %s によって管理されています + %s によって管理されています @@ -4686,7 +4714,7 @@ The encoding is responsible for the correct character representation. アーティストを入力する必要があります。 - + You need to type some text in to the verse. バースにテキストを入力する必要があります。 @@ -4694,20 +4722,35 @@ The encoding is responsible for the correct character representation. SongsPlugin.EditVerseForm - + Edit Verse バース編集 - + &Verse type: バースのタイプ(&): - + &Insert 挿入(&I) + + + &Split + + + + + Split a slide into two only if it does not fit on the screen as one slide. + + + + + Split a slide into two by inserting a verse splitter. + + SongsPlugin.ExportWizardForm @@ -4746,11 +4789,6 @@ The encoding is responsible for the correct character representation. Select Directory フォルダを選択して下さい - - - Select the directory you want the songs to be saved. - 賛美を保存するフォルダを選択して下さい。 - Directory: @@ -4791,6 +4829,11 @@ The encoding is responsible for the correct character representation. Select Destination Folder 出力先フォルダを選択して下さい + + + Select the directory where you want the songs to be saved. + + SongsPlugin.ImportWizardForm @@ -4862,7 +4905,7 @@ The encoding is responsible for the correct character representation. Words Of Worship Song Files - + Words Of Worship Song ファイル @@ -4892,60 +4935,60 @@ The encoding is responsible for the correct character representation. Copy - コピー + コピー Save to File - ファイルに保存 + ファイルに保存 SongsPlugin.MediaItem - - Maintain the lists of authors, topics and books - アーティスト、トピックとアルバムの一覧を保守 - - - + Titles タイトル - + Lyrics 賛美詞 - + Delete Song(s)? これらの賛美を削除しますか? - + CCLI License: CCLI ライセンス: - + Entire Song 賛美全体 - + Are you sure you want to delete the %n selected song(s)? 選択された%n件の賛美を削除します。宜しいですか? + + + Maintain the lists of authors, topics and books. + アーティスト、トピックとアルバムの一覧を保守します。 + SongsPlugin.OpenLP1SongImport Not a valid openlp.org 1.x song database. - + 有効なopenlp.org v1.xデータベースではありません。 @@ -4953,7 +4996,7 @@ The encoding is responsible for the correct character representation. Not a valid OpenLP 2.0 song database. - + 有効なOpenLP 2.0データベースではありません。 @@ -5010,7 +5053,7 @@ The encoding is responsible for the correct character representation. The following songs could not be imported: - + 以下の賛美はインポートできませんでした: @@ -5218,7 +5261,7 @@ The encoding is responsible for the correct character representation. Themes - 外観テーマ + 外観テーマ diff --git a/resources/i18n/ko.ts b/resources/i18n/ko.ts index 26629c9ac..a13a45988 100644 --- a/resources/i18n/ko.ts +++ b/resources/i18n/ko.ts @@ -182,22 +182,22 @@ Do you want to continue anyway? BiblePlugin.HTTPBible - + Download Error - + Parse 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 extracting your verse selection. If this error continues to occur please consider reporting a bug. @@ -205,12 +205,12 @@ Do you want to continue anyway? BiblePlugin.MediaItem - + Bible not fully loaded. - + You cannot combine single and dual Bible verse search results. Do you want to delete your search results and start a new search? @@ -222,46 +222,6 @@ Do you want to continue anyway? &Bible 성경(&B) - - - <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display bible verses from different sources during the service. - <strong>성경 플러그인</strong><br />성경 플러그인은 서비스 중에 성경 구절을 출력할 수 있는 기능을 제공합니다. - - - - 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 - - Bible @@ -281,46 +241,86 @@ Do you want to continue anyway? 성경 - + 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. + + 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. - + Your scripture reference is either not supported by OpenLP or is invalid. Please make sure your reference conforms to one of the following patterns: Book Chapter @@ -332,7 +332,7 @@ Book Chapter:Verse-Chapter:Verse - + No Bibles Available @@ -509,17 +509,6 @@ Changes do not affect verses already in the service. This Bible already exists. Please import a different Bible or first delete the existing one. - - - Starting Registering bible... - - - - - Registered bible. Please note, that verses will be downloaded on -demand and thus an internet connection is required. - - Permissions: @@ -565,74 +554,75 @@ demand and thus an internet connection is required. 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.MediaItem - + Quick ?? - + Find: - - Results: - - - - + Book: - + Chapter: - + Verse: - + From: - + To: - + Text Search - - Clear - - - - - Keep - - - - + Second: - + Scripture Reference + + + Toggle to keep or clear the previous results. + + BiblesPlugin.Opensong @@ -706,12 +696,12 @@ demand and thus an internet connection is required. - + Split Slide - + Split a slide into two by inserting a slide splitter. @@ -726,12 +716,12 @@ demand and thus an internet connection is required. - + You need to type in a title. - + You need to add at least one slide @@ -740,49 +730,19 @@ demand and thus an internet connection is required. Ed&it All + + + Split a slide into two only if it does not fit on the screen as one slide. + + + + + Insert Slide + + CustomsPlugin - - - Import a Custom - - - - - Load a new Custom - - - - - Add a new Custom - - - - - Edit the selected Custom - - - - - Delete the selected Custom - - - - - Preview the selected Custom - - - - - Send the selected Custom live - - - - - Add the selected Custom to the service - - Custom @@ -801,11 +761,51 @@ demand and thus an internet connection is required. container title + + + Load a new Custom. + + + + + Import a Custom. + + + + + Add a new Custom. + + + + + Edit the selected Custom. + + + + + Delete the selected Custom. + + + + + Preview the selected Custom. + + + + + Send the selected Custom live. + + + + + Add the selected Custom to the service. + + GeneralTab - + General @@ -817,41 +817,6 @@ demand and thus an internet connection is required. <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. - - - 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 - - Image @@ -870,11 +835,46 @@ demand and thus an internet connection is required. 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 @@ -882,38 +882,38 @@ demand and thus an internet connection is required. 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. @@ -925,41 +925,6 @@ Do you want to add the other images anyway? <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. - - - Load a new Media - - - - - Add a 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 - - Media @@ -978,41 +943,76 @@ Do you want to add the other images anyway? container title + + + Load a new Media. + + + + + Add a 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. - + Missing Media File - + The file %s no longer exists. - + 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. - + Videos (%s);;Audio (%s);;%s (*) @@ -1041,28 +1041,17 @@ Do you want to add the other images anyway? OpenLP.AboutForm - - OpenLP <version><revision> - Open Source Lyrics Projection - -OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if OpenOffice.org, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. - -Find out more about OpenLP: http://openlp.org/ - -OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider contributing by using the button below. - - - - + Credits - + License - + Contribute @@ -1072,17 +1061,17 @@ OpenLP is written and maintained by volunteers. If you would like to see more fr - + 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. - + Project Lead %s @@ -1147,12 +1136,20 @@ Final Credit - - Copyright © 2004-2011 Raoul Snyman -Portions copyright © 2004-2011 Tim Bentley, Jonathan Corwin, Michael Gorven, Scott Guerrieri, -Meinert Jordan, Andreas Preikschat, Christian Richter, Philip -Ridout, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Carsten -Tinggaard, Frode Woldsund + + 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 contributing by using the button below. + + + + + Copyright © 2004-2011 %s +Portions copyright © 2004-2011 %s @@ -1247,70 +1244,70 @@ Tinggaard, Frode Woldsund OpenLP.DisplayTagDialog - + Edit Selection - - Update - - - - + Description - + Tag - + Start tag - + End tag - + Default - + Tag Id - + Start HTML - + End HTML + + + Save + + OpenLP.DisplayTagTab - + Update Error - + Tag "n" already defined. - + Tag %s already defined. @@ -1349,7 +1346,7 @@ Tinggaard, Frode Woldsund - + Description characters to enter : %s @@ -1391,7 +1388,7 @@ Version: %s - + *OpenLP Bug Report* Version: %s @@ -1474,77 +1471,72 @@ Version: %s - - This wizard will help you to configure OpenLP for initial use. Click the next button below to start the process of selection your initial options. - - - - + Activate required Plugins - + Select the Plugins you wish to use. - + Songs - + Custom Text - + Bible - + Images - + Presentations - + Media (Audio and Video) - + Allow remote access - + Monitor Song Usage - + Allow Alerts - + No Internet Connection - + Unable to detect an Internet connection. - + 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. To re-run the First Time Wizard and import this sample data at a later stage, press the cancel button now, check your Internet connection, and restart OpenLP. @@ -1553,190 +1545,195 @@ To cancel the First Time Wizard completely, press the finish button now. - + Sample Songs - + Select and download public domain songs. - + Sample Bibles - + Select and download free Bibles. - + Sample Themes - + Select and download sample themes. - + Default Settings - + Set up default settings to be used by OpenLP. - + Setting Up And Importing - + Please wait while OpenLP is set up and your data is imported. - + 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.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 - + Slide loop delay: - + sec - + CCLI Details - + SongSelect username: - + SongSelect password: - + Display Position - + X - + Y - + Height - + Width - + Override display position - + Check for updates to OpenLP - + Unblank display when adding new live item @@ -1757,7 +1754,7 @@ To cancel the First Time Wizard completely, press the finish button now. OpenLP.MainDisplay - + OpenLP Display @@ -1765,282 +1762,282 @@ To cancel the First Time Wizard completely, press the finish button now. 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. @@ -2057,17 +2054,17 @@ You can download the latest version from http://openlp.org/. - + OpenLP Main Display Blanked - + The Main Display has been blanked out - + Default Theme: %s @@ -2078,45 +2075,60 @@ You can download the latest version from http://openlp.org/. - + Configure &Shortcuts... - + Close OpenLP - + Are you sure you want to close OpenLP? - + Print the current Service Order. - + Open &Data Folder... - + Open the folder where songs, bibles and other data resides. - + &Configure Display Tags - + &Autodetect + + + Update Theme Images + + + + + Update the preview images for all themes. + + + + + F1 + + OpenLP.MediaManagerItem @@ -2126,46 +2138,56 @@ You can download the latest version from http://openlp.org/. - + &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. - + Duplicate file name %s. Filename already exists in list + + + You must select one or more items to add. + + + + + No Search Results + + OpenLP.PluginForm @@ -2287,19 +2309,19 @@ Filename already exists in list - Add page break before each text item. + Add page break before each text item OpenLP.ScreenList - + Screen - + primary @@ -2315,223 +2337,208 @@ Filename already exists in list OpenLP.ServiceManager - - Load an existing service - - - - - Save this service - - - - - Select a theme for the service - - - - + Move to &top - + Move item to the top of the service. - + Move &up - + Move item up one position in the service. - + Move &down - + Move item down one position in the service. - + Move to &bottom - + Move item to the end of the service. - + &Delete From Service - + Delete the selected item from the service. - + &Add New Item - + &Add to Selected Item - + &Edit Item - + &Reorder Item - + &Notes - + &Change Item Theme - + File is not a valid service. The content encoding is not UTF-8. - + File is not a valid service. - + Missing Display Handler - + Your item cannot be displayed as there is no handler to display it - + Your item cannot be displayed as the plugin required to display it is missing or inactive - + &Expand all - + Expand all the service items. - + &Collapse all - + Collapse all the service items. - + Open File - + OpenLP Service Files (*.osz) - + Moves the selection down the window. - + Move up - + Moves the selection up the window. - + Go Live - + Send the selected item to Live. - + Modified Service - + &Start Time - + Show &Preview - + Show &Live - + The current service has been modified. Would you like to save this service? - + File could not be opened because it is corrupt. - + Empty File - + This service file does not contain any data. - + Corrupt File @@ -2551,15 +2558,30 @@ The content encoding is not UTF-8. - + Untitled Service - + This file is either corrupt or not an OpenLP 2.0 service file. + + + Load an existing service. + + + + + Save this service. + + + + + Select a theme for the service. + + OpenLP.ServiceNoteForm @@ -2648,100 +2670,105 @@ The content encoding is not UTF-8. OpenLP.SlideController - + Move to previous - + Move to next - + Hide - + Move to live - + Start continuous loop - + Stop continuous loop - + Delay between slides in seconds - + Start playing media - + Go To - + Edit and reload song preview - + Blank Screen - + Blank to Theme - + Show Desktop - + Previous Slide - + Next Slide - + Previous Service - + Next Service - + Escape Item - + Start/Stop continuous loop + + + Add to Service + + OpenLP.SpellTextEdit @@ -2910,68 +2937,68 @@ The content encoding is not UTF-8. - + %s (default) - + You must select a theme to edit. - + You are unable to delete the default theme. - + 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. The content encoding is not UTF-8. - + File is not a valid theme. - + Theme %s is used in the %s plugin. @@ -2991,47 +3018,47 @@ The content encoding is not UTF-8. - + 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) @@ -3455,7 +3482,7 @@ The content encoding is not UTF-8. - + &Vertical Align: @@ -3663,7 +3690,7 @@ The content encoding is not UTF-8. - + Starting import... @@ -3812,11 +3839,6 @@ The content encoding is not UTF-8. View - - - View Model - - Duplicate Error @@ -3837,11 +3859,16 @@ The content encoding is not UTF-8. XML syntax error + + + View Mode + + OpenLP.displayTagDialog - + Configure Display Tags @@ -3853,31 +3880,6 @@ The content encoding is not UTF-8. <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. - - - Load a new Presentation - - - - - Delete the selected Presentation - - - - - Preview the selected Presentation - - - - - Send the selected Presentation live - - - - - Add the selected Presentation to the service - - Presentation @@ -3896,56 +3898,81 @@ The content encoding is not UTF-8. 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 no longer exists. - + The Presentation %s is incomplete, please reload. @@ -3997,20 +4024,30 @@ The content encoding is not UTF-8. RemotePlugin.RemoteTab - + Serve on IP address: - + Port number: - + Server Settings + + + Remote URL: + + + + + Stage view URL: + + SongUsagePlugin @@ -4193,36 +4230,6 @@ has been successfully created. Reindexing songs... - - - 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 - - Song @@ -4334,6 +4341,36 @@ The encoding is responsible for the correct character representation. 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. + + SongsPlugin.AuthorsForm @@ -4567,7 +4604,7 @@ The encoding is responsible for the correct character representation. - + You need to type some text in to the verse. @@ -4575,20 +4612,35 @@ The encoding is responsible for the correct character representation. SongsPlugin.EditVerseForm - + Edit Verse - + &Verse type: - + &Insert + + + &Split + + + + + Split a slide into two only if it does not fit on the screen as one slide. + + + + + Split a slide into two by inserting a verse splitter. + + SongsPlugin.ExportWizardForm @@ -4622,11 +4674,6 @@ The encoding is responsible for the correct character representation. Select Directory - - - Select the directory you want the songs to be saved. - - Directory: @@ -4672,6 +4719,11 @@ The encoding is responsible for the correct character representation. Select Destination Folder + + + Select the directory where you want the songs to be saved. + + SongsPlugin.ImportWizardForm @@ -4784,42 +4836,42 @@ The encoding is responsible for the correct character representation. SongsPlugin.MediaItem - - Maintain the lists of authors, topics and books - - - - + Titles - + Lyrics - + Delete Song(s)? - + CCLI License: - + Entire Song - + Are you sure you want to delete the %n selected song(s)? + + + Maintain the lists of authors, topics and books. + + SongsPlugin.OpenLP1SongImport diff --git a/resources/i18n/nb.ts b/resources/i18n/nb.ts index 1df6b7fc3..e7304b0e4 100644 --- a/resources/i18n/nb.ts +++ b/resources/i18n/nb.ts @@ -184,22 +184,22 @@ Vil du fortsette likevel? BiblePlugin.HTTPBible - + Download Error Nedlastningsfeil - + Parse Error Analysefeil - + 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. - + 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. @@ -207,12 +207,12 @@ Vil du fortsette likevel? BiblePlugin.MediaItem - + Bible not fully loaded. Bibelen er ikke ferdiglastet. - + 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 bibelverssøkeresultat. Vil du fjerne søkeresultatene og starte et nytt søk? @@ -224,46 +224,6 @@ Vil du fortsette likevel? &Bible &Bibel - - - <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display bible verses from different sources during the service. - <strong>Bibeltillegg</strong><br />Bibeltillegget gir mulighet til å vise bibelvers fra ulike kilder under gudstjenesten. - - - - Import a Bible - Importer en bibel - - - - Add a new Bible - Legg til ny bibel - - - - Edit the selected Bible - Rediger valgte bibel - - - - Delete the selected Bible - Slett valgte bibel - - - - Preview the selected Bible - Forhåndsvis valgte bibel - - - - Send the selected Bible live - Send valgt bibel live - - - - Add the selected Bible to the service - Legg til valgte bibel til møtet - Bible @@ -283,47 +243,87 @@ Vil du fortsette likevel? 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. + + + + + 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. + + 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. - + Your scripture reference is either not supported by OpenLP or is invalid. Please make sure your reference conforms to one of the following patterns: Book Chapter @@ -342,7 +342,7 @@ Bok Kapittel:Vers-Vers,Kapittel:Vers-Vers Bok Kapittel:Vers-Kapittel:Vers - + No Bibles Available Ingen bibler tilgjengelig @@ -519,18 +519,6 @@ Endringer påvirker ikke vers som alt er lagt til møtet. 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. - - - Starting Registering bible... - Starter registrering av bibel... - - - - Registered bible. Please note, that verses will be downloaded on -demand and thus an internet connection is required. - Bibel registrert. Vennligst merk at versene vil bli nedlastet ved -behov og derfor er en internettilkobling påkrevd. - Permissions: @@ -576,74 +564,75 @@ behov og derfor er en internettilkobling påkrevd. openlp.org 1.x Bible Files OpenLP 1.x Bibelfiler + + + Registering Bible... + + + + + Registered Bible. Please note, that verses will be downloaded on +demand and thus an internet connection is required. + + BiblesPlugin.MediaItem - + Quick Hurtig - + Find: Finn: - - Results: - Resultat: - - - + Book: Bok: - + Chapter: Kapittel: - + Verse: Vers: - + From: Fra: - + To: Til: - + Text Search Tekstsøk - - Clear - Blank - - - - Keep - Behold - - - + Second: Alternativ: - + Scripture Reference Bibelreferanse + + + Toggle to keep or clear the previous results. + + BiblesPlugin.Opensong @@ -717,12 +706,12 @@ behov og derfor er en internettilkobling påkrevd. Rediger alle lysbilder på en gang. - + Split Slide Del opp lysbilde - + Split a slide into two by inserting a slide splitter. Del lysbilde i to ved å sette inn en lysbildedeler. @@ -737,12 +726,12 @@ behov og derfor er en internettilkobling påkrevd. &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 @@ -751,49 +740,19 @@ behov og derfor er en internettilkobling påkrevd. Ed&it All Rediger alle + + + Split a slide into two only if it does not fit on the screen as one slide. + + + + + Insert Slide + + CustomsPlugin - - - Import a Custom - Importer et egendefinert lysbilde - - - - Load a new Custom - Last et nytt egendefinert lysbilde - - - - Add a new Custom - Legg til et nytt egendefinert lysbilde - - - - Edit the selected Custom - Rediger det valgte egendefinerte lysbildet - - - - Delete the selected Custom - Slett det valgte egendefinerte lysbildet - - - - Preview the selected Custom - Forhåndsvis det valgte egendefinerte lysbildet - - - - Send the selected Custom live - Send det valgte egendefinerte lysbildet live - - - - Add the selected Custom to the service - Legg til det valgte egendefinerte lysbildet til møtet - Custom @@ -812,11 +771,51 @@ behov og derfor er en internettilkobling påkrevd. container title Egendefinert lysbilde + + + Load a new Custom. + + + + + Import a Custom. + + + + + Add a new Custom. + + + + + Edit the selected Custom. + + + + + Delete the selected Custom. + + + + + Preview the selected Custom. + + + + + Send the selected Custom live. + + + + + Add the selected Custom to the service. + + GeneralTab - + General Generell @@ -828,41 +827,6 @@ behov og derfor er en internettilkobling påkrevd. <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. - - - Load a new Image - Last et nytt bilde - - - - Add a new Image - Legg til nytt bilde - - - - Edit the selected Image - Rediger valgte bildet - - - - Delete the selected Image - Slett valgte bilde - - - - Preview the selected Image - Forhåndsvis valgte bilde - - - - Send the selected Image live - Send valgte bilde live - - - - Add the selected Image to the service - Legg til valgte bilde til møtet - Image @@ -881,11 +845,46 @@ behov og derfor er en internettilkobling påkrevd. container title Bilder + + + 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 Velg vedlegg @@ -893,39 +892,39 @@ behov og derfor er en internettilkobling påkrevd. 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. @@ -937,41 +936,6 @@ Vil du likevel legge til de andre bildene? <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. - - - Load a new Media - Last ny fil - - - - Add a new Media - Legg til ny fil - - - - Edit the selected Media - Rediger valgte fil - - - - Delete the selected Media - Slett valgte fil - - - - Preview the selected Media - Forhåndsvis valgte fil - - - - Send the selected Media live - Send valgte fil live - - - - Add the selected Media to the service - Legg valgte fil til møtet - Media @@ -990,41 +954,76 @@ Vil du likevel legge til de andre bildene? container title Media + + + Load a new Media. + + + + + Add a 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 Velg fil - + You must select a media file to delete. Du må velge en fil å slette - + Missing Media File Fil mangler - + The file %s no longer exists. Filen %s finnes ikke lenger - + 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. - + Videos (%s);;Audio (%s);;%s (*) Videoer (%s);;Lyd (%s);;%s (*) @@ -1053,28 +1052,17 @@ Vil du likevel legge til de andre bildene? OpenLP.AboutForm - - OpenLP <version><revision> - Open Source Lyrics Projection - -OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if OpenOffice.org, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. - -Find out more about OpenLP: http://openlp.org/ - -OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider contributing by using the button below. - - - - + Credits Credits - + License Lisens - + Contribute Bidra @@ -1084,17 +1072,17 @@ OpenLP is written and maintained by volunteers. If you would like to see more fr 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. - + Project Lead %s @@ -1219,17 +1207,21 @@ dette programmet fritt for omkostninger, fordi han har satt oss fri. - - Copyright © 2004-2011 Raoul Snyman -Portions copyright © 2004-2011 Tim Bentley, Jonathan Corwin, Michael Gorven, Scott Guerrieri, -Meinert Jordan, Andreas Preikschat, Christian Richter, Philip -Ridout, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Carsten -Tinggaard, Frode Woldsund - Copyright © 2004-2011 Raoul Snyman -Portions copyright © 2004-2011 Tim Bentley, Jonathan Corwin, Michael Gorven, Scott Guerrieri, -Meinert Jordan, Andreas Preikschat, Christian Richter, Philip -Ridout, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Carsten -Tinggaard, Frode Woldsund + + 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 contributing by using the button below. + + + + + Copyright © 2004-2011 %s +Portions copyright © 2004-2011 %s + @@ -1323,70 +1315,70 @@ Tinggaard, Frode Woldsund OpenLP.DisplayTagDialog - + Edit Selection - - Update - - - - + Description - + Tag - + Start tag - + End tag - + Default - + Tag Id - + Start HTML - + End HTML + + + Save + + OpenLP.DisplayTagTab - + Update Error - + Tag "n" already defined. - + Tag %s already defined. @@ -1425,7 +1417,7 @@ Tinggaard, Frode Woldsund - + Description characters to enter : %s @@ -1467,7 +1459,7 @@ Version: %s - + *OpenLP Bug Report* Version: %s @@ -1550,77 +1542,72 @@ Version: %s - - This wizard will help you to configure OpenLP for initial use. Click the next button below to start the process of selection your initial options. - - - - + Activate required Plugins - + Select the Plugins you wish to use. - + Songs - + Custom Text - + Bible - + Images Bilder - + Presentations - + Media (Audio and Video) - + Allow remote access - + Monitor Song Usage - + Allow Alerts - + No Internet Connection - + Unable to detect an Internet connection. - + 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. To re-run the First Time Wizard and import this sample data at a later stage, press the cancel button now, check your Internet connection, and restart OpenLP. @@ -1629,190 +1616,195 @@ To cancel the First Time Wizard completely, press the finish button now. - + Sample Songs - + Select and download public domain songs. - + Sample Bibles - + Select and download free Bibles. - + Sample Themes - + Select and download sample themes. - + Default Settings - + Set up default settings to be used by OpenLP. - + Setting Up And Importing - + Please wait while OpenLP is set up and your data is imported. - + 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.GeneralTab - + General Generell - + Monitors - + Select monitor for output display: Velg hvilken skjerm som skal brukes til fremvisning: - + Display if a single screen - + Application Startup Programoppstart - + Show blank screen warning - + Automatically open the last service Åpne forrige møteplan automatisk - + Show the splash screen - + Application Settings Programinnstillinger - + Prompt to save before starting a new service - + Automatically preview next item in service - + Slide loop delay: - + sec - + CCLI Details CCLI-detaljer - + SongSelect username: - + SongSelect password: - + Display Position - + X - + Y - + Height - + Width - + Override display position - + Check for updates to OpenLP - + Unblank display when adding new live item @@ -1833,7 +1825,7 @@ To cancel the First Time Wizard completely, press the finish button now. OpenLP.MainDisplay - + OpenLP Display @@ -1841,282 +1833,282 @@ To cancel the First Time Wizard completely, press the finish button now. OpenLP.MainWindow - + &File &Fil - + &Import &Importer - + &Export &Eksporter - + &View &Vis - + M&ode - + &Tools - + &Settings &Innstillinger - + &Language &Språk - + &Help &Hjelp - + Media Manager Innholdselementer - + Service Manager - + Theme Manager - + &New &Ny - + &Open &Åpne - + Open an existing service. - + &Save &Lagre - + Save the current service to disk. - + Save &As... - + Save Service As - + Save the current service under a new name. - + E&xit &Avslutt - + Quit OpenLP Avslutt OpenLP - + &Theme &Tema - + &Configure OpenLP... - + &Media Manager - + Toggle Media Manager - + Toggle the visibility of the media manager. - + &Theme Manager - + Toggle Theme Manager Åpne tema-behandler - + Toggle the visibility of the theme manager. - + &Service Manager - + Toggle Service Manager Vis møteplanlegger - + Toggle the visibility of the service manager. - + &Preview Panel &Forhåndsvisningspanel - + Toggle Preview Panel Vis forhåndsvisningspanel - + Toggle the visibility of the preview panel. - + &Live Panel - + Toggle Live Panel - + Toggle the visibility of the live panel. - + &Plugin List &Tillegsliste - + List the Plugins Hent liste over tillegg - + &User Guide &Brukerveiledning - + &About &Om - + More information about OpenLP - + &Online Help - + &Web Site &Internett side - + Use the system language, if available. - + Set the interface language to %s - + Add &Tool... Legg til & Verktøy... - + 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 &Direkte - + Set the view mode to Live. @@ -2133,17 +2125,17 @@ You can download the latest version from http://openlp.org/. OpenLP versjonen har blitt oppdatert - + OpenLP Main Display Blanked - + The Main Display has been blanked out - + Default Theme: %s @@ -2154,45 +2146,60 @@ You can download the latest version from http://openlp.org/. Norsk - + Configure &Shortcuts... - + Close OpenLP - + Are you sure you want to close OpenLP? - + Print the current Service Order. - + Open &Data Folder... - + Open the folder where songs, bibles and other data resides. - + &Configure Display Tags - + &Autodetect + + + Update Theme Images + + + + + Update the preview images for all themes. + + + + + F1 + + OpenLP.MediaManagerItem @@ -2202,46 +2209,56 @@ You can download the latest version from http://openlp.org/. - + &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. - + Duplicate file name %s. Filename already exists in list + + + You must select one or more items to add. + + + + + No Search Results + + OpenLP.PluginForm @@ -2363,19 +2380,19 @@ Filename already exists in list - Add page break before each text item. + Add page break before each text item OpenLP.ScreenList - + Screen - + primary @@ -2391,223 +2408,208 @@ Filename already exists in list OpenLP.ServiceManager - - Load an existing service - - - - - Save this service - Lagre møteplan - - - - Select a theme for the service - - - - + Move to &top Flytt til &toppen - + Move item to the top of the service. - + Move &up - + Move item up one position in the service. - + Move &down - + Move item down one position in the service. - + Move to &bottom - + Move item to the end of the service. - + &Delete From Service - + Delete the selected item from the service. - + &Add New Item - + &Add to Selected Item - + &Edit Item - + &Reorder Item - + &Notes &Notis - + &Change Item Theme &Bytt objekttema - + File is not a valid service. The content encoding is not UTF-8. - + File is not a valid service. - + Missing Display Handler - + Your item cannot be displayed as there is no handler to display it - + Your item cannot be displayed as the plugin required to display it is missing or inactive - + &Expand all - + Expand all the service items. - + &Collapse all - + Collapse all the service items. - + Open File - + OpenLP Service Files (*.osz) - + Moves the selection down the window. - + Move up - + Moves the selection up the window. - + Go Live - + Send the selected item to Live. - + Modified Service - + &Start Time - + Show &Preview - + Show &Live - + The current service has been modified. Would you like to save this service? - + File could not be opened because it is corrupt. - + Empty File - + This service file does not contain any data. - + Corrupt File @@ -2627,15 +2629,30 @@ The content encoding is not UTF-8. - + Untitled Service - + This file is either corrupt or not an OpenLP 2.0 service file. + + + Load an existing service. + + + + + Save this service. + + + + + Select a theme for the service. + + OpenLP.ServiceNoteForm @@ -2724,100 +2741,105 @@ The content encoding is not UTF-8. OpenLP.SlideController - + Move to previous Flytt til forrige - + Move to next - + Hide - + Move to live - + Start continuous loop Start kontinuerlig løkke - + Stop continuous loop - + Delay between slides in seconds Forsinkelse mellom lysbilder i sekund - + Start playing media Start avspilling av media - + Go To - + Edit and reload song preview - + Blank Screen - + Blank to Theme - + Show Desktop - + Previous Slide - + Next Slide - + Previous Service - + Next Service - + Escape Item - + Start/Stop continuous loop + + + Add to Service + + OpenLP.SpellTextEdit @@ -2986,68 +3008,68 @@ The content encoding is not UTF-8. - + %s (default) - + You must select a theme to edit. - + You are unable to delete the default theme. Du kan ikke slette det globale temaet. - + 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. The content encoding is not UTF-8. - + File is not a valid theme. Filen er ikke et gyldig tema. - + Theme %s is used in the %s plugin. @@ -3067,47 +3089,47 @@ The content encoding is not UTF-8. - + 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) @@ -3531,7 +3553,7 @@ The content encoding is not UTF-8. - + &Vertical Align: @@ -3739,7 +3761,7 @@ The content encoding is not UTF-8. Klar. - + Starting import... Starter å importere... @@ -3888,11 +3910,6 @@ The content encoding is not UTF-8. View - - - View Model - - Duplicate Error @@ -3913,11 +3930,16 @@ The content encoding is not UTF-8. XML syntax error + + + View Mode + + OpenLP.displayTagDialog - + Configure Display Tags @@ -3929,31 +3951,6 @@ The content encoding is not UTF-8. <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. - - - Load a new Presentation - - - - - Delete the selected Presentation - - - - - Preview the selected Presentation - - - - - Send the selected Presentation live - - - - - Add the selected Presentation to the service - - Presentation @@ -3972,56 +3969,81 @@ The content encoding is not UTF-8. 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) Velg presentasjon(er) - + Automatic Automatisk - + Present using: Presenter ved hjelp av: - + File Exists - + A presentation with that filename already exists. - + This type of presentation is not supported. - + Presentations (%s) - + Missing Presentation - + The Presentation %s no longer exists. - + The Presentation %s is incomplete, please reload. @@ -4073,20 +4095,30 @@ The content encoding is not UTF-8. RemotePlugin.RemoteTab - + Serve on IP address: - + Port number: - + Server Settings + + + Remote URL: + + + + + Stage view URL: + + SongUsagePlugin @@ -4269,36 +4301,6 @@ has been successfully created. Reindexing songs... - - - 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 - - Song @@ -4410,6 +4412,36 @@ The encoding is responsible for the correct character representation. 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. + + SongsPlugin.AuthorsForm @@ -4643,7 +4675,7 @@ The encoding is responsible for the correct character representation. - + You need to type some text in to the verse. @@ -4651,20 +4683,35 @@ The encoding is responsible for the correct character representation. SongsPlugin.EditVerseForm - + Edit Verse Rediger Vers - + &Verse type: - + &Insert + + + &Split + + + + + Split a slide into two only if it does not fit on the screen as one slide. + + + + + Split a slide into two by inserting a verse splitter. + + SongsPlugin.ExportWizardForm @@ -4698,11 +4745,6 @@ The encoding is responsible for the correct character representation. Select Directory - - - Select the directory you want the songs to be saved. - - Directory: @@ -4748,6 +4790,11 @@ The encoding is responsible for the correct character representation. Select Destination Folder + + + Select the directory where you want the songs to be saved. + + SongsPlugin.ImportWizardForm @@ -4860,43 +4907,43 @@ The encoding is responsible for the correct character representation. SongsPlugin.MediaItem - - Maintain the lists of authors, topics and books - Rediger liste over forfattere, emner og bøker - - - + Titles Titler - + Lyrics - + Delete Song(s)? - + CCLI License: - + Entire Song - + Are you sure you want to delete the %n selected song(s)? + + + Maintain the lists of authors, topics and books. + + SongsPlugin.OpenLP1SongImport diff --git a/resources/i18n/nl.ts b/resources/i18n/nl.ts index 45baae593..da4be0f7f 100644 --- a/resources/i18n/nl.ts +++ b/resources/i18n/nl.ts @@ -42,7 +42,7 @@ Toch doorgaan? <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of nursery alerts on the display screen - <strong>Waarschuwing Plugin</strong><br />Deze plugin regelt de weergave van waarschuwingen op het scherm. + <strong>Waarschuwing Plugin</strong><br />Deze plugin regelt de weergave van waarschuwingen op het scherm @@ -184,22 +184,22 @@ Toch doorgaan? BiblePlugin.HTTPBible - + Download Error Download fout - + Parse Error Verwerkingsfout - + 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. - + 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. @@ -207,12 +207,12 @@ Toch doorgaan? BiblePlugin.MediaItem - + Bible not fully loaded. Bijbel niet geheel geladen. - + 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? @@ -224,46 +224,6 @@ Toch doorgaan? &Bible &Bijbel - - - <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 maakt het mogelijk bijbelteksten uit verschillende vertalingen tijdens de dienst te gebruiken. - - - - 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 - Bible @@ -283,47 +243,87 @@ Toch doorgaan? Bijbelteksten - + 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. + + 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. - + Your scripture reference is either not supported by OpenLP or is invalid. Please make sure your reference conforms to one of the following patterns: Book Chapter @@ -342,7 +342,7 @@ Boek Hoofdstuk:Vers-Vers,Hoofdstuk:Vers-Vers Boek Hoofdstuk:Vers-Hoofdstuk:Vers - + No Bibles Available Geen bijbels beschikbaar @@ -519,18 +519,6 @@ Deze wijzigingen hebben geen betrekking op bijbelverzen die al in de liturgie zi This Bible already exists. Please import a different Bible or first delete the existing one. Deze bijbel bestaat reeds. Geef een andere naam of verwijder eerst het bestaande exemplaar. - - - Starting Registering bible... - Start registreren Bijbel... - - - - Registered bible. Please note, that verses will be downloaded on -demand and thus an internet connection is required. - Registratie afgerond. -N.B. bijbelteksten worden gedownload indien nodig internetverbinding is dus noodzakelijk. - Permissions: @@ -576,74 +564,75 @@ N.B. bijbelteksten worden gedownload indien nodig internetverbinding is dus nood openlp.org 1.x Bible Files openlp.org 1.x bijbel bestanden + + + Registering Bible... + + + + + Registered Bible. Please note, that verses will be downloaded on +demand and thus an internet connection is required. + + BiblesPlugin.MediaItem - + Quick Snelzoeken - + Find: Vind: - - Results: - Resulaten: - - - + Book: Boek: - + Chapter: Hoofdstuk: - + Verse: Vers: - + From: Van: - + To: Tot: - + Text Search Zoek op tekst - - Clear - Wissen - - - - Keep - Bewaren - - - + Second: Tweede: - + Scripture Reference Schriftverwijzing + + + Toggle to keep or clear the previous results. + + BiblesPlugin.Opensong @@ -702,7 +691,7 @@ N.B. bijbelteksten worden gedownload indien nodig internetverbinding is dus nood &Titel: - + Split Slide Dia splitsen @@ -732,17 +721,17 @@ N.B. bijbelteksten worden gedownload indien nodig internetverbinding is dus nood 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. - + You need to type in a title. Geef een titel op. - + You need to add at least one slide Minstens een dia invoegen @@ -751,49 +740,19 @@ N.B. bijbelteksten worden gedownload indien nodig internetverbinding is dus nood Ed&it All &Alles bewerken + + + Split a slide into two only if it does not fit on the screen as one slide. + + + + + Insert Slide + + CustomsPlugin - - - Import a Custom - Aangepaste dia importeren - - - - Load a new Custom - Aangepaste dia laden - - - - Add a new Custom - Aangepaste dia toevoegn - - - - Edit the selected Custom - Geselecteerde dia bewerken - - - - Delete the selected Custom - Geselecteerde aangepaste dia verwijderen - - - - Preview the selected Custom - Bekijk voorbeeld aangepaste dia - - - - Send the selected Custom live - Bekijk aangepaste dia live - - - - Add the selected Custom to the service - Aangepaste dia aan liturgie toevoegen - Custom @@ -812,13 +771,53 @@ N.B. bijbelteksten worden gedownload indien nodig internetverbinding is dus nood container title Aangepaste dia + + + Load a new Custom. + Aangepaste dia laden. + + + + Import a Custom. + Aangepaste dia importeren. + + + + Add a new Custom. + Aangepaste dia toevoegen. + + + + Edit the selected Custom. + Geselecteerde dia bewerken. + + + + Delete the selected Custom. + Geselecteerde aangepaste dia verwijderen. + + + + Preview the selected Custom. + Bekijk voorbeeld aangepaste dia. + + + + Send the selected Custom live. + Bekijk aangepaste dia live. + + + + Add the selected Custom to the service. + Aangepaste dia aan liturgie toevoegen. + GeneralTab - + General - Algemeen + Algemeen @@ -828,41 +827,6 @@ N.B. bijbelteksten worden gedownload indien nodig internetverbinding is dus nood <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. - - - Load a new Image - Afbeelding laden - - - - Add a new Image - Afbeelding toevoegen - - - - Edit the selected Image - Afbeelding bewerken - - - - Delete the selected Image - Geselecteerde afbeeldingen wissen - - - - Preview the selected Image - Geselecteerde afbeeldingen voorbeeld bekijken - - - - Send the selected Image live - Geselecteerde afbeeldingen Live tonen - - - - Add the selected Image to the service - Geselecteerde afbeeldingen aan liturgie toevoegen - Image @@ -881,11 +845,46 @@ N.B. bijbelteksten worden gedownload indien nodig internetverbinding is dus nood 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 afbeeldingen wissen. + + + + Preview the selected Image. + Geselecteerde afbeeldingen voorbeeld bekijken. + + + + Send the selected Image live. + Geselecteerde afbeeldingen Live tonen. + + + + Add the selected Image to the service. + Geselecteerde afbeeldingen aan liturgie toevoegen. + ImagePlugin.ExceptionDialog - + Select Attachment Selecteer bijlage @@ -893,39 +892,39 @@ N.B. bijbelteksten worden gedownload indien nodig internetverbinding is dus nood 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. @@ -937,41 +936,6 @@ De andere afbeeldingen alsnog toevoegen? <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. - - - Load a new Media - Laad nieuw media bestand - - - - Add a 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 - Media @@ -990,41 +954,76 @@ De andere afbeeldingen alsnog toevoegen? container title Media + + + Load a new Media. + Laad nieuw media bestand. + + + + Add a 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. + MediaPlugin.MediaItem - + Select Media Secteer media bestand - + You must select a media file to delete. Selecteer een media bestand om te verwijderen. - + Missing Media File Ontbrekend media bestand - + The file %s no longer exists. Media bestand %s bestaat niet meer. - + 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. - + Videos (%s);;Audio (%s);;%s (*) Video’s (%s);;Audio (%s);;%s (*) @@ -1053,34 +1052,17 @@ De andere afbeeldingen alsnog toevoegen? OpenLP.AboutForm - - OpenLP <version><revision> - Open Source Lyrics Projection - -OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if OpenOffice.org, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. - -Find out more about OpenLP: http://openlp.org/ - -OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider contributing by using the button below. - OpenLP <version><revision> - Open Source Lyrics Projection - -OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if OpenOffice.org, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. - -Find out more about OpenLP: http://openlp.org/ - -OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider contributing by using the button below. - - - + Credits Credits - + License Licentie - + Contribute Bijdragen @@ -1090,17 +1072,17 @@ OpenLP is written and maintained by volunteers. If you would like to see more fr build %s - + This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See below for more details. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See below for more details. - + Project Lead %s @@ -1227,17 +1209,21 @@ Final Credit Deze tekst is niet vertaald. - - Copyright © 2004-2011 Raoul Snyman -Portions copyright © 2004-2011 Tim Bentley, Jonathan Corwin, Michael Gorven, Scott Guerrieri, -Meinert Jordan, Andreas Preikschat, Christian Richter, Philip -Ridout, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Carsten -Tinggaard, Frode Woldsund - Copyright © 2004-2011 Raoul Snyman -Portions copyright © 2004-2011 Tim Bentley, Jonathan Corwin, Michael Gorven, Scott Guerrieri, -Meinert Jordan, Andreas Preikschat, Christian Richter, Philip -Ridout, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Carsten -Tinggaard, Frode Woldsund + + 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 contributing by using the button below. + + + + + Copyright © 2004-2011 %s +Portions copyright © 2004-2011 %s + @@ -1305,96 +1291,96 @@ Tinggaard, Frode Woldsund Preview items when clicked in Media Manager - + Voorbeeld direct laten zien bij aanklikken in Media beheer Advanced - Geavanceerd + Geavanceerd 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. OpenLP.DisplayTagDialog - + Edit Selection Bewerk selectie - - Update - Update - - - + Description Omschrijving - + Tag Tag - + Start tag Start tag - + End tag Eind tag - + Default Standaard - + Tag Id Tag Id - + Start HTML Start HTML - + End HTML Eind HTML + + + Save + + OpenLP.DisplayTagTab - + Update Error Update Fout - + Tag "n" already defined. Tag "n" bestaat al. - + Tag %s already defined. Tag %s bestaat al. @@ -1420,7 +1406,7 @@ Stuur een e-mail naar: bugs@openlp.org met een gedetailleerde beschrijving van h Save to File - Opslaan als… + Opslaan als bestand @@ -1435,7 +1421,7 @@ Stuur een e-mail naar: bugs@openlp.org met een gedetailleerde beschrijving van h Voeg bestand toe - + Description characters to enter : %s Toelichting aanvullen met nog %s tekens @@ -1491,7 +1477,7 @@ Version: %s - + *OpenLP Bug Report* Version: %s @@ -1587,77 +1573,72 @@ Schrijf in het Engels, omdat de meeste programmeurs geen Nederlands spreken. Welkom bij de Eerste keer Assistent - - This wizard will help you to configure OpenLP for initial use. Click the next button below to start the process of selection your initial options. - Deze assistent helpt je om OpenLP voor de eerste keer in te stellen. Klik op volgende om dit proces te beginnen. - - - + Activate required Plugins Activeer noodzakelijke plugins - + Select the Plugins you wish to use. Selecteer de plugins die je gaat gebruiken. - + Songs Liederen - + Custom Text Aangepaste tekst - + 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 - + No Internet Connection Geen internetverbinding - + Unable to detect an Internet connection. OpenLP kan geen internetverbinding vinden. - + 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. To re-run the First Time Wizard and import this sample data at a later stage, press the cancel button now, check your Internet connection, and restart OpenLP. @@ -1670,192 +1651,197 @@ Om deze assistent de volgende keer te starten, klikt u nu annuleren, controleer Om deze assistent over te slaan, klik op klaar. - + 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. - + Default Settings Standaard instellingen - + Set up default settings to be used by OpenLP. Stel standaardinstellingen in voor OpenLP. - + Setting Up And Importing Instellen en importeren - + Please wait while OpenLP is set up and your data is imported. Even geduld terwijl OpenLP de gegevens importeert. - + 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. + + 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 - + Slide loop delay: Vertraging bij doorlopende diavoorstelling: - + sec sec - + CCLI Details CCLI-details - + SongSelect username: SongSelect gebruikersnaam: - + SongSelect password: SongSelect wachtwoord: - + Display Position Weergave positie - + X X - + Y Y - + Height Hoogte - + Width Breedte - + Override display position Overschrijf scherm positie - + 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 @@ -1874,7 +1860,7 @@ Om deze assistent over te slaan, klik op klaar. OpenLP.MainDisplay - + OpenLP Display OpenLP Weergave @@ -1882,282 +1868,282 @@ Om deze assistent over te slaan, klik op klaar. 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. @@ -2167,17 +2153,17 @@ Om deze assistent over te slaan, klik op klaar. 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 @@ -2197,45 +2183,60 @@ U kunt de laatste versie op http://openlp.org/ downloaden. Nederlands - + Configure &Shortcuts... &Sneltoetsen instellen... - + Close OpenLP OpenLP afsluiten - + Are you sure you want to close OpenLP? OpenLP afsluiten? - + Print the current Service Order. Druk de huidige liturgie af. - + 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. - + &Configure Display Tags &Configureer Weergave Tags - + &Autodetect &Autodetecteer + + + Update Theme Images + + + + + Update the preview images for all themes. + + + + + F1 + + OpenLP.MediaManagerItem @@ -2245,44 +2246,55 @@ U kunt de laatste versie op http://openlp.org/ downloaden. 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. - + Duplicate file name %s. Filename already exists in list + Dubbele bestandsnaam %s. +Deze bestandsnaam staat als in de lijst + + + + You must select one or more items to add. + + + + + No Search Results @@ -2406,19 +2418,19 @@ Filename already exists in list - Add page break before each text item. - + Add page break before each text item + Voeg een pagina-einde toe voor elke tekst item OpenLP.ScreenList - + Screen Beeldscherm - + primary primair scherm @@ -2434,251 +2446,251 @@ Filename already exists in list OpenLP.ServiceManager - - 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 - - - + Move to &top Bovenaan plaa&tsen - + Move item to the top of the service. Plaats dit onderdeel bovenaan. - + Move &up Naar b&oven - + Move item up one position in the service. Verplaats een plek naar boven. - + Move &down Naar bene&den - + Move item down one position in the service. Verplaats een plek naar beneden. - + Move to &bottom Onderaan &plaatsen - + Move item to the end of the service. Plaats dit onderdeel onderaan. - + &Delete From Service Verwij&deren uit de liturgie - + Delete the selected item from the service. Verwijder dit onderdeel uit de liturgie. - + &Add New Item &Voeg toe - + &Add to Selected Item &Voeg selectie toe - + &Edit Item B&ewerk onderdeel - + &Reorder Item He&rschik onderdeel - + &Notes Aa&ntekeningen - + &Change Item Theme &Wijzig onderdeel thema - + File is not a valid service. The content encoding is not UTF-8. Geen geldig liturgie bestand. Tekst codering is geen UTF-8. - + File is not a valid service. Geen geldig liturgie bestand. - + Missing Display Handler Ontbrekende weergave regelaar - + Your item cannot be displayed as there is no handler to display it Dit onderdeel kan niet weergegeven worden, omdat er een regelaar ontbreekt - + Your item cannot be displayed as the plugin required to display it is missing or inactive Dit onderdeel kan niet weergegeven worden omdat de benodigde plugin ontbreekt of inactief is - + &Expand all Alles &uitklappen - + Expand all the service items. Alle liturgie onderdelen uitklappen. - + &Collapse all Alles &inklappen - + Collapse all the service items. Alle liturgie onderdelen inklappen. - + Open File Open bestand - + OpenLP Service Files (*.osz) OpenLP liturgie bestanden (*.osz) - + Moves the selection up the window. Verplaatst de selectie naar boven. - + Move up Naar boven - + Go Live Ga Live - + Send the selected item to Live. Toon selectie Live. - + Moves the selection down the window. Verplaatst de selectie naar beneden. - + Modified Service Gewijzigde liturgie - + &Start Time &Start Tijd - + Show &Preview Toon &Voorbeeld - + Show &Live Toon &Live - + The current service has been modified. Would you like to save this service? De huidige liturgie is gewijzigd. Veranderingen opslaan? - + File could not be opened because it is corrupt. - + Bestand kan niet worden geopend omdat het beschadigd is. - + Empty File - + Leeg bestand - + This service file does not contain any data. - + Deze liturgie bevat nog geen gegevens. - + Corrupt File - + Corrupt bestand Custom Service Notes: - + Aangepaste liturgie kanttekeningen: Notes: - + Aantekeningen: Playing time: - + Speeltijd: - + Untitled Service - + Liturgie zonder naam - + This file is either corrupt or not an OpenLP 2.0 service file. - + Dit bestand is beschadigd of geen OpenLP 2.0 liturgie 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. @@ -2732,134 +2744,139 @@ Tekst codering is geen UTF-8. 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 + 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? OpenLP.SlideController - + Move to previous Naar vorige - + Move to next Naar volgende - + Hide Verbergen - + Move to live Naar Live - + Start continuous loop Start doorlopende diashow - + Stop continuous loop Stop doorlopende diashow - + Delay between slides in seconds Vertraging tussen dia's in seconden - + Start playing media Start afspelen media - + Go To Ga naar - + Edit and reload song preview Bewerk en lied voorbeeld opnieuw weergeven - + Blank Screen Zwart scherm - + Blank to Theme Zwart naar thema - + Show Desktop Toon bureaublad - + Previous Slide Vorige dia - + Next Slide Volgende dia - + Previous Service Vorige liturgie - + Next Service Volgende liturgie - + Escape Item Onderdeel annuleren - + Start/Stop continuous loop + Start/Stop doorlopende diashow + + + + Add to Service @@ -2878,7 +2895,7 @@ Tekst codering is geen UTF-8. Language: - + Taal: @@ -2901,37 +2918,37 @@ Tekst codering is geen UTF-8. Item Start and Finish Time - + Item start en eind tijd Start - + Start Finish - + Eind Length - + Lengte Time Validation Error - + Tijd validatie fout End 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 End Time of the media item - + Start tijd is ingesteld tot na het eind van het media item @@ -3030,69 +3047,69 @@ Tekst codering is geen UTF-8. 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. - + 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. The content encoding is not UTF-8. Geen geldig thema bestand. Tekst codering is geen UTF-8. - + File is not a valid theme. Geen geldig thema bestand. - + Theme %s is used in the %s plugin. Thema %s wordt gebruikt in de %s plugin. @@ -3112,47 +3129,47 @@ Tekst codering is geen UTF-8. &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) @@ -3576,7 +3593,7 @@ Tekst codering is geen UTF-8. Start %s - + &Vertical Align: &Verticaal uitlijnen: @@ -3784,7 +3801,7 @@ Tekst codering is geen UTF-8. Klaar. - + Starting import... Start importeren... @@ -3859,110 +3876,110 @@ Tekst codering is geen UTF-8. Continuous - Doorlopend + Doorlopend Default - Standaard + Standaard Display style: - Weergave stijl: + Weergave stijl: File - + Bestand Help - + Help h The abbreviated unit for hours - h + h Layout style: - Paginaformaat: + Paginaformaat: Live Toolbar - + Live Werkbalk m The abbreviated unit for minutes - m + 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 Verse Per Slide - Bijbelvers per dia + Bijbelvers per dia Verse Per Line - Bijbelvers per regel + Bijbelvers per regel View - - - - - View Model - + Weergave Duplicate Error - + Dupliceer fout Unsupported File - Niet ondersteund bestandsformaat + Niet ondersteund bestandsformaat Title and/or verses not found - + Titel en/of verzen niet gevonden XML syntax error + XML syntax fout + + + + View Mode OpenLP.displayTagDialog - + Configure Display Tags Configureer Weergave Tags @@ -3974,31 +3991,6 @@ Tekst codering is geen UTF-8. <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. <strong>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. - - - 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 - Presentation @@ -4017,56 +4009,81 @@ Tekst codering is geen UTF-8. 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. + PresentationPlugin.MediaItem - + Select Presentation(s) Selecteer presentatie(s) - + Automatic automatisch - + Present using: Presenteren met: - + A presentation with that filename already exists. Er bestaat al een presentatie met die naam. - + File Exists Bestand bestaat - + This type of presentation is not supported. Dit soort presentatie wordt niet ondersteund. - + Presentations (%s) Presentaties (%s) - + Missing Presentation Ontbrekende presentatie - + The Presentation %s no longer exists. De presentatie %s bestaat niet meer. - + The Presentation %s is incomplete, please reload. De presentatie %s is niet compleet, herladen aub. @@ -4118,20 +4135,30 @@ Tekst codering is geen UTF-8. RemotePlugin.RemoteTab - + Serve on IP address: Beschikbaar via IP-adres: - + Port number: Poort nummer: - + Server Settings Server instellingen + + + Remote URL: + + + + + Stage view URL: + + SongUsagePlugin @@ -4196,7 +4223,7 @@ Tekst codering is geen UTF-8. Song Usage - + Liedgebruik @@ -4316,36 +4343,6 @@ is gemaakt. Reindexing songs... Liederen her-indexeren... - - - 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 - Song @@ -4460,6 +4457,36 @@ Meestal voldoet de suggestie van OpenLP. 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. + SongsPlugin.AuthorsForm @@ -4504,7 +4531,7 @@ Meestal voldoet de suggestie van OpenLP. The file does not have a valid extension. - + Dit bestand heeft geen geldige extensie. @@ -4512,7 +4539,7 @@ Meestal voldoet de suggestie van OpenLP. Administered by %s - Beheerd door %s + Beheerd door %s @@ -4693,7 +4720,7 @@ Meestal voldoet de suggestie van OpenLP. Iemand heeft dit lied geschreven. - + You need to type some text in to the verse. Er moet toch een tekst zijn om te zingen. @@ -4701,20 +4728,35 @@ Meestal voldoet de suggestie van OpenLP. SongsPlugin.EditVerseForm - + Edit Verse Couplet bewerken - + &Verse type: Co&uplet type: - + &Insert &Invoegen + + + &Split + + + + + Split a slide into two only if it does not fit on the screen as one slide. + + + + + Split a slide into two by inserting a verse splitter. + + SongsPlugin.ExportWizardForm @@ -4748,11 +4790,6 @@ Meestal voldoet de suggestie van OpenLP. Select Directory Selecteer map - - - Select the directory you want the songs to be saved. - Selecteer de map waar de liederen moet worden bewaard. - Directory: @@ -4798,6 +4835,11 @@ Meestal voldoet de suggestie van OpenLP. Select Destination Folder Selecteer een doelmap + + + Select the directory where you want the songs to be saved. + + SongsPlugin.ImportWizardForm @@ -4899,61 +4941,61 @@ Meestal voldoet de suggestie van OpenLP. Copy - Kopieer + Kopieer Save to File - Opslaan als… + Opslaan als bestand SongsPlugin.MediaItem - - Maintain the lists of authors, topics and books - Beheer de lijst met auteurs, onderwerpen en liedboeken - - - + Titles Titels - + Lyrics Liedtekst - + Delete Song(s)? Wis lied(eren)? - + CCLI License: CCLI Licentie: - + Entire Song Gehele lied - + Are you sure you want to delete the %n selected song(s)? - Weet u zeker dat u deze %n lied(eren) wilt verwijderen? - + Weet u zeker dat u dit %n lied wilt verwijderen? + Weet u zeker dat u deze %n liederen wilt verwijderen? + + + Maintain the lists of authors, topics and books. + Beheer de lijst met auteurs, onderwerpen en liedboeken. + SongsPlugin.OpenLP1SongImport Not a valid openlp.org 1.x song database. - + Geen geldige openlp.org v1.x lied database. @@ -4961,7 +5003,7 @@ Meestal voldoet de suggestie van OpenLP. Not a valid OpenLP 2.0 song database. - + Geen geldige OpenLP 2.0 lied database. @@ -5018,7 +5060,7 @@ Meestal voldoet de suggestie van OpenLP. The following songs could not be imported: - + De volgende liederen konden niet worden geïmporteerd: @@ -5226,7 +5268,7 @@ Meestal voldoet de suggestie van OpenLP. Themes - Thema's + Thema’s diff --git a/resources/i18n/pt_BR.ts b/resources/i18n/pt_BR.ts index 4c49de540..58bacbc8f 100644 --- a/resources/i18n/pt_BR.ts +++ b/resources/i18n/pt_BR.ts @@ -184,22 +184,22 @@ Você gostaria de continuar de qualquer maneira? BiblePlugin.HTTPBible - + Download Error Erro no Download - + Parse Error - Erro na Leitura + Erro de interpretação - + 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. - + There was a problem extracting your verse selection. If this error continues to occur please consider reporting a bug. Houve um problema extraindo os versículos selecionados. Se este erro continuar ocorrendo, por favor considere relatar um bug. @@ -207,14 +207,14 @@ Você gostaria de continuar de qualquer maneira? BiblePlugin.MediaItem - + Bible not fully loaded. - A Bíblia não foi carregada. + Bíblia não carregada completamente. - + 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 um versículo simples e um duplo nos resultados das buscas. Você deseja deletar os resultados da sua pesquisa e comecar uma nova? + Você não pode combinar um versículo simples e um duplo nos resultados das buscas. Você deseja deletar os resultados da sua busca e comecar uma nova? @@ -224,46 +224,6 @@ Você gostaria de continuar de qualquer maneira? &Bible &Bíblia - - - <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display bible verses from different sources during the service. - <strong>Plugin da Bíblia</strong><br />Este plugin permite exibir versículos bíblicos de diferentes fontes durante o culto. - - - - Import a Bible - Importar Bíblia - - - - Add a new Bible - Adicionar nova Bíblia - - - - 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 - Adicione a Bíblia selecionada à Lista de Exibição - Bible @@ -283,47 +243,87 @@ Você gostaria de continuar de qualquer maneira? 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. + Apagar 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 à ordem de culto, + + + + <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display Bible verses from different sources during the service. + + 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. Nenhuma Bíblia instalada atualmente. Por favor, utilize o Assistente de Importação para instalar uma ou mais Bíblias. - + Your scripture reference is either not supported by OpenLP or is invalid. Please make sure your reference conforms to one of the following patterns: Book Chapter @@ -342,7 +342,7 @@ Capítulo do Livro:Versículo-Versículo,Capítulo:Versículo-Versículo Capítulo do Livro:Versículo-Capítulo:Versículo - + No Bibles Available Nenhum Bíblia Disponível @@ -389,7 +389,7 @@ Capítulo do Livro:Versículo-Capítulo:Versículo Note: Changes do not affect verses already in the service. Nota: -Mudanças não afetam os versículos que já estão na lista de exibição. +Mudanças não afetam os versículos que já estão na ordem de culto. @@ -407,7 +407,7 @@ Mudanças não afetam os versículos que já estão na lista de exibição. 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. - Este assistente irá ajudá-lo a importar Bíblias de uma variedade de formatos. Clique no botão próximo abaixo para começar o processo selecionando o formato a ser importado. + Este assistente irá ajudá-lo a importar Bíblias de uma variedade de formatos. Clique no botão avançar abaixo para começar o processo selecionando o formato a ser importado. @@ -519,18 +519,6 @@ Mudanças não afetam os versículos que já estão na lista de exibição.This Bible already exists. Please import a different Bible or first delete the existing one. Esta Bíblia já existe. Importe uma Bíblia diferente ou apague a existente primeiro. - - - Starting Registering bible... - Registrando Bíblia... - - - - Registered bible. Please note, that verses will be downloaded on -demand and thus an internet connection is required. - Bíblia registrada. Note que os versos serão baixados de acordo -com o uso, portanto uma conexão com a internet é necessária. - Permissions: @@ -554,17 +542,17 @@ com o uso, portanto uma conexão com a internet é necessária. Testaments file: - Arquivo de Testamentos + Arquivo de Testamentos: Books file: - Arquivo de Livros + Arquivo de Livros: Verses file: - Arquivo de Versículos + Arquivo de Versículos: @@ -574,76 +562,77 @@ com o uso, portanto uma conexão com a internet é necessária. openlp.org 1.x Bible Files - Arquivos do openlp.org 1.x + Arquivos de Bíblia do openlp.org 1.x + + + + Registering Bible... + + + + + Registered Bible. Please note, that verses will be downloaded on +demand and thus an internet connection is required. + BiblesPlugin.MediaItem - + Quick Rápido - + Find: Buscar: - - Results: - Resultados: - - - + Book: Livro: - + Chapter: Capítulo: - + Verse: Versículo: - + From: De: - + To: - Para: + Até: - + Text Search Busca por Texto - - Clear - Limpar - - - - Keep - Manter - - - + Second: Segundo: - + Scripture Reference Referência da Escritura + + + Toggle to keep or clear the previous results. + Alternar entre manter ou limpar resultados anteriores. + BiblesPlugin.Opensong @@ -673,7 +662,7 @@ com o uso, portanto uma conexão com a internet é necessária. <strong>Custom Plugin</strong><br />The custom plugin provides the ability to set up custom text slides that can be displayed on the screen the same way songs are. This plugin provides greater freedom over the songs plugin. - <strong>Plugin Personalizado</strong><br />O plugin personalizado permite criar slides de texto que são apresentados da mesma maneira que as músicas. Este plugin permite mais liberdade do que o plugin de músicas. + <strong>Plugin de Personalizado</strong><br />O plugin de personalizado permite criar slides de texto que são apresentados da mesma maneira que as músicas. Este plugin permite mais liberdade do que o plugin de músicas. @@ -681,7 +670,7 @@ com o uso, portanto uma conexão com a internet é necessária. Custom Display - Exibição Personalizada + Exibir Personalizado @@ -717,19 +706,19 @@ com o uso, portanto uma conexão com a internet é necessária. Editar todos os slides de uma vez. - + Split Slide Dividir Slide - + Split a slide into two by inserting a slide splitter. Dividir um slide em dois, inserindo um divisor de slides. The&me: - The&ma: + Te&ma: @@ -737,12 +726,12 @@ com o uso, portanto uma conexão com a internet é necessária. &Créditos: - + You need to type in a title. Você precisa digitar um título. - + You need to add at least one slide Você precisa adicionar pelo menos um slide @@ -751,49 +740,19 @@ com o uso, portanto uma conexão com a internet é necessária. Ed&it All &Editar Todos + + + Split a slide into two only if it does not fit on the screen as one slide. + Dividir o slide em dois somente se não couber na tela como um único slide. + + + + Insert Slide + Inserir Slide + CustomsPlugin - - - Import a Custom - Importar um Slide Personalizado - - - - Load a new Custom - Abrir um novo Slide Personalizado - - - - Add a new Custom - Adicionar um novo Slide Personalizado - - - - Edit the selected Custom - Editar o Slide selecionado - - - - Delete the selected Custom - Apagar o Slide selecionado - - - - Preview the selected Custom - Pré-visualizar o Slide selecionado - - - - Send the selected Custom live - Projetar o Slide selecionado - - - - Add the selected Custom to the service - Adicionar o Slide selecionado à Lista de Exibição - Custom @@ -804,21 +763,61 @@ com o uso, portanto uma conexão com a internet é necessária. Customs name plural - Customizados + Personalizados Custom container title - Customizado + Personalizado + + + + Load a new Custom. + Carregar um Personalizado novo. + + + + Import a Custom. + Importar um Personalizado. + + + + Add a new Custom. + Adicionar um Personalizado novo. + + + + Edit the selected Custom. + Editar o Personalizado selecionado. + + + + Delete the selected Custom. + Apagar o Personalizado selecionado. + + + + Preview the selected Custom. + Pré-visualizar o Personalizado selecionado. + + + + Send the selected Custom live. + Projetar o Personalizado selecionado. + + + + Add the selected Custom to the service. + Adicionar o Personalizado à ordem de culto, GeneralTab - + General - Geral + Geral @@ -826,42 +825,7 @@ com o uso, portanto uma conexão com a internet é necessária. <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 fornece a exibição de imagens.<br />Uma das funcionalidades importantes deste plugin é a habilidade de agrupar várias imagens na Lista de Exibição, facilitando a exibição de várias imagens. Este plugin também pode usar a funcionalidade de "loop temporizado" 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. - - - - Load a new Image - Carregar um 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 - Visualizar a Imagem selecionada - - - - Send the selected Image live - Projetar a Imagem selecionada - - - - Add the selected Image to the service - Adicionar Imagem selecionada à Lista de Exibição + <strong>Plugin de Imagens</strong><br />O plugin de imagens fornece a exibição de imagens.<br />Uma das funcionalidades importantes deste plugin é a habilidade de agrupar várias imagens na Ordem de 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. @@ -881,11 +845,46 @@ com o uso, portanto uma conexão com a internet é necessária. container title Imagens + + + Load a new Image. + Carregar uma Imagem nova. + + + + Add a new Image. + Adicionar uma Imagem nova. + + + + Edit the selected Image. + Editar a Imagem selecionada. + + + + Delete the selected Image. + Apagar a Imagem selecionada. + + + + Preview the selected Image. + Pré-visualizar a Imagem selecionada. + + + + Send the selected Image live. + Projetar a Imagem selecionada. + + + + Add the selected Image to the service. + Adicionar a Imagem selecionada à ordem de culto. + ImagePlugin.ExceptionDialog - + Select Attachment Selecionar Anexo @@ -893,41 +892,41 @@ com o uso, portanto uma conexão com a internet é necessária. ImagePlugin.MediaItem - + Select Image(s) Selecionar Imagem(s) - + You must select an image to delete. Você precisa selecionar uma imagem para apagar. - + 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) - + The following image(s) no longer exist: %s - As seguintes imagens não existem: %s + A(s) seguinte(s) imagem(s) não existe(m) mais: %s - + The following image(s) no longer exist: %s Do you want to add the other images anyway? - As seguintes imagens não existem: %s -Deseja continuar adicionando as outras imagens? + A(s) seguinte(s) imagem(s) não existe(m) mais: %s +Mesmo assim, deseja continuar adicionando as outras imagens? - + There was a problem replacing your background, the image file "%s" no longer exists. - Ocorreu um erro ao substituir o plano de fundo da Projeção. O arquivo de imagem "%s" não existe. + Ocorreu um erro ao substituir o plano de fundo, o arquivo de imagem "%s" não existe. @@ -937,41 +936,6 @@ Deseja continuar adicionando as outras imagens? <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 faz a reprodução de áudio e vídeo. - - - Load a new Media - Carregar nova Mídia - - - - Add a new Media - Adicionar nova Mídia - - - - Edit the selected Media - Editar 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 - Projetar a Mídia selecionada - - - - Add the selected Media to the service - Adicionar a Mídia selecionada à Lista de Exibição - Media @@ -990,41 +954,76 @@ Deseja continuar adicionando as outras imagens? container title Mídia + + + Load a new Media. + Carregar uma Mídia nova. + + + + Add a new Media. + Adicionar uma Mídia nova. + + + + Edit the selected Media. + Editar a Mídia selecionada. + + + + Delete the selected Media. + Apagar a Mídia selecionada. + + + + Preview the selected Media. + Pré-visualizar a Mídia selecionada. + + + + Send the selected Media live. + Projetar a Mídia selecionada. + + + + Add the selected Media to the service. + Adicionar a Mídia selecionada à ordem de culto. + 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. - + Missing Media File Arquivo de Mídia não encontrado - + The file %s no longer exists. O arquivo %s não existe. - + 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. - + Videos (%s);;Audio (%s);;%s (*) Vídeos (%s);;Áudio (%s);;%s (*) @@ -1053,34 +1052,17 @@ Deseja continuar adicionando as outras imagens? OpenLP.AboutForm - - OpenLP <version><revision> - Open Source Lyrics Projection - -OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if OpenOffice.org, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. - -Find out more about OpenLP: http://openlp.org/ - -OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider contributing by using the button below. - OpenLP<version><revision> - Projeção de Letras Open Source - -O OpenLP é um software livre de apresentação em igrejas, ou de projeção de letras, usado para exibir slides de músicas, versículos da Bíblia, vídeos, imagens e até apresentações (se OpenOffice.org, PowerPoint ou Powerpoint Viewer estiver instalado) 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 contribuir para mais softwares livres Cristãos serem produzidos, considere contribuir usando o botão abaixo. - - - + Credits Créditos - + License Licença - + Contribute Contribuir @@ -1090,17 +1072,17 @@ O OpenLP é escrito e mantido por voluntários. Se você gostaria de contribuir 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 (FSF); na versão 2 da Licença. + 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. - + Project Lead %s @@ -1225,17 +1207,21 @@ Créditos Finais pela Graça ele nos libertou. - - Copyright © 2004-2011 Raoul Snyman -Portions copyright © 2004-2011 Tim Bentley, Jonathan Corwin, Michael Gorven, Scott Guerrieri, -Meinert Jordan, Andreas Preikschat, Christian Richter, Philip -Ridout, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Carsten -Tinggaard, Frode Woldsund - Direitos Autorais © 2004-2011 Raoul Snyman -Porções de Direitos Autorais © 2004-2011 Tim Bentley, Jonathan Corwin, Michael Gorven, Scott Guerrieri, -Meinert Jordan, Andreas Preikschat, Christian Richter, Philip -Ridout, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Carsten -Tinggaard, Frode Woldsund + + 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 contributing by using the button below. + + + + + Copyright © 2004-2011 %s +Portions copyright © 2004-2011 %s + @@ -1263,7 +1249,7 @@ Tinggaard, Frode Woldsund Expand new service items on creation - Expandir novos itens da lista de exibição + Expandir novos itens do culto ao serem criados @@ -1278,7 +1264,7 @@ Tinggaard, Frode Woldsund Hide mouse cursor when over display window - Ocultar o cursor do mouse quando estiver sobre a tela de exibição + Ocultar o cursor do mouse quando estiver sobre a tela de projeção @@ -1303,96 +1289,96 @@ Tinggaard, Frode Woldsund Preview items when clicked in Media Manager - + Pré-visualizar itens quando clicados no Gerenciador de Mídia Advanced - Avançado + Avançado 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. OpenLP.DisplayTagDialog - + Edit Selection Editar Seleção - - Update - Atualizar - - - + Description Descrição - + Tag Etiqueta - + Start tag Etiqueta Inicial - + End tag Etiqueta Final - + Default Padrão - + Tag Id Id da Etiqueta - + Start HTML Início do HTML - + End HTML Fim do HTML + + + Save + Salvar + OpenLP.DisplayTagTab - + Update Error Erro no Update - + Tag "n" already defined. Etiqueta "n" já está definida. - + Tag %s already defined. Etiqueta %s já está definida. @@ -1402,7 +1388,7 @@ Tinggaard, Frode Woldsund 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. 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. + 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. @@ -1432,9 +1418,9 @@ Tinggaard, Frode Woldsund Anexar Arquivo - + Description characters to enter : %s - Caracteres que podem ser escritos na descrição: %s + Caracteres que podem ser digitadas na descrição: %s @@ -1488,7 +1474,7 @@ Versão %s - + *OpenLP Bug Report* Version: %s @@ -1544,17 +1530,17 @@ Agradecemos se for possível escrever seu relatório em inglês. Select Translation - Selecione Tradução + Selecione Idioma Choose the translation you'd like to use in OpenLP. - Escolha uma tradução que você gostaria de utilizar no OpenLP. + Escolha o idioma que você gostaria de utilizar no OpenLP. Translation: - Tradução: + Idioma: @@ -1585,275 +1571,275 @@ Agradecemos se for possível escrever seu relatório em inglês. Bem vindo ao Assistente de Primeira Utilização - - This wizard will help you to configure OpenLP for initial use. Click the next button below to start the process of selection your initial options. - O assistente irá ajudá-lo na configuração do OpenLP para o primeiro uso. Clique no botão "Próximo" abaixo para iniciar a seleção das opções iniciais. - - - + Activate required Plugins - Ativar os Plugins Requeridos + Ativar os Plugins necessários - + Select the Plugins you wish to use. - Selecione os Plugins aos quais você deseja utilizar. + Selecione os Plugins que você deseja utilizar. + + + + Songs + Músicas - Songs - Músicas + Custom Text + Texto Personalizado - - Custom Text - Texto Customizado + + Bible + Bíblia - Bible - Bíblia - - - Images - Imagens + Imagens - + Presentations - Apresentações + Apresentações - + Media (Audio and Video) Mídia (Áudio e Vídeo) - + Allow remote access Permitir acesso remoto - + Monitor Song Usage - Monitor de Utilização das Músicas + Monitorar Utilização das Músicas - + Allow Alerts Permitir Alertas - + 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. - + 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. To re-run the First Time Wizard and import this sample data at a later stage, press the cancel button now, check your Internet connection, and restart OpenLP. To cancel the First Time Wizard completely, press the finish button now. - Nenhuma conexão com a internet foi encontrada. O Assistente de Primeiro Uso necessita uma conexão para baixar músicas, Bíblias e temas de exemplo. + Nenhuma conexão com a internet foi encontrada. O Assistente de Primeiro Uso necessita de uma conexão com a internet para baixar exemplos de músicas, Bíblias e temas. -Para executar o assistente novamente mais tarde e importar os dados de exemplo, clique no botão cancelar, verifique a sua conexão e inicie o OpenLP novamente. +Para executar o assistente novamente mais tarde e importar os dados de exemplo, clique no botão cancelar, verifique a sua conexão com a internet e reinicie o OpenLP. Para cancelar o assistente completamente, clique no botão finalizar. - + 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. - + Default Settings - Configurações Padrão + Configurações Padrões - + Set up default settings to be used by OpenLP. - Configure as configurações padrão que serão utilizadas pelo OpenLP. + Ajuste as configurações padrões que serão utilizadas pelo OpenLP. - + Setting Up And Importing Configurando e Importando - + Please wait while OpenLP is set up and your data is imported. Por Favor aguarde enquanto o OpenLP é configurado e os seus dados importados. - + Default output display: - Painel de Projeção Padrão: + Saída de projeção Padrão: - + Select default theme: - Selecione um tema padrão: + 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. + + OpenLP.GeneralTab - + General Geral - + Monitors Monitores - + Select monitor for output display: Selecione um monitor para exibição: - + Display if a single screen Exibir em caso de tela única - + Application Startup - Inicialização da Aplicação + Inicialização do Aplicativo - + Show blank screen warning Exibir alerta de tela em branco - + Automatically open the last service - Abrir a última Lista de Exibição automaticamente + Abrir a última ordem de culto automaticamente - + Show the splash screen Exibir a tela inicial - + Application Settings - Configurações da Aplicação + Configurações do Aplicativo - + Prompt to save before starting a new service - Perguntar sobre salvamento antes de iniciar uma nova lista + Perguntar sobre salvamento antes de iniciar uma nova ordem de culto - + Automatically preview next item in service - Pré-visualizar automaticamente o próximo item na Lista de Exibição + Pré-visualizar automaticamente o próximo item na ordem de culto - + Slide loop delay: - Atraso no loop de slide: + Espera de repetição de slides: - + sec seg - + CCLI Details Detalhes de CCLI - + SongSelect username: Usuário SongSelect: - + SongSelect password: Senha do SongSelect: - + Display Position Posição do Display - + X X - + Y Y - + Height Altura - + Width Largura - + Override display position Modificar posição do display - + Check for updates to OpenLP - Procurar por updates do OpenLP + Procurar por atualizações do OpenLP - + Unblank display when adding new live item - + Ativar projeção ao adicionar um item novo @@ -1872,290 +1858,290 @@ Para cancelar o assistente completamente, clique no botão finalizar. OpenLP.MainDisplay - + OpenLP Display - Exibição do OpenLP + Saída do OpenLP OpenLP.MainWindow - + &File &Arquivo - + &Import &Importar - + &Export &Exportar - + &View &Visualizar - + M&ode M&odo - + &Tools &Ferramentas - + &Settings &Configurações - + &Language &Idioma - + &Help &Ajuda - + Media Manager Gerenciador de Mídia - + Service Manager - Lista de Exibição + Gerenciador de Ordem de Culto - + Theme Manager Gerenciador de Temas - + &New &Novo - + &Open &Abrir - + Open an existing service. - Abrir uma Lista de Exibição existente. + Abrir uma ordem de culto existente. - + &Save &Salvar - + Save the current service to disk. - Salvar a Lista de Exibição no disco. + Salvar a ordem de culto atual no disco. - + Save &As... Salvar &Como... - + Save Service As - Salvar Lista de Exibição Como + Salvar Ordem de Culto Como - + Save the current service under a new name. - Salvar a Lista de Exibição atual com um novo nome. + Salvar a ordem de 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 Temas - + Toggle Theme Manager Alternar para Gerenciamento de Temas - + Toggle the visibility of the theme manager. - Alternar a visibilidade do Gerenciador de Temas. + Alternar a visibilidade do gerenciador de temas. - + &Service Manager - &Lista de Exibição + Gerenciador de &Ordem de Culto - + Toggle Service Manager - Alternar a Lista de Exibição + Alternar o Gerenciador de Ordem de Culto - + Toggle the visibility of the service manager. - Alternar visibilidade da Lista de Exibição. + Alternar visibilidade do gerenciador de ordem de culto. - + &Preview Panel &Painel de Pré-Visualização - + Toggle Preview Panel - Alternar para Painel de Pré-Visualização + Alternar o Painel de Pré-Visualização - + Toggle the visibility of the preview panel. - Alternar a visibilidade da coluna de pré-visualização. + Alternar a visibilidade do painel de pré-visualização. - + &Live Panel - &Coluna da Projeção + &Painel da Projeção - + Toggle Live Panel - Alternar Coluna da Projeção + Alternar Painel da Projeção - + Toggle the visibility of the live panel. - Alternar a visibilidade da coluna de projeção. + 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 uma aplicação à lista de ferramentas. + Adicionar um aplicação à lista de ferramentas. - + &Default &Padrão - + Set the view mode back to the default. - Reverter o modo de visualização de volta ao padrão. + Reverter o modo de visualização ao padrão. - + &Setup &Configurar - + Set the view mode to Setup. Configurar o modo de visualização para Setup. - + &Live &Ao Vivo - + Set the view mode to Live. Configurar o modo de visualização como Projeção. @@ -2166,7 +2152,7 @@ Para cancelar o assistente completamente, clique no botão finalizar. A versão %s do OpenLP está disponível para download (você está atualmente usando a versão %s). -Voce pode baixar a versão mais nova em http://openlp.org/. +Voce pode baixar a última versão em http://openlp.org/. @@ -2174,17 +2160,17 @@ Voce pode baixar a versão mais nova em http://openlp.org/. Versão do OpenLP Atualizada - + OpenLP Main Display Blanked - Tela Principal do OpenLP em Branco + Tela Principal do OpenLP desativada - + The Main Display has been blanked out - A Tela Principal foi apagada + A Tela Principal foi desativada - + Default Theme: %s Tema padrão: %s @@ -2192,48 +2178,63 @@ Voce pode baixar a versão mais nova em http://openlp.org/. English Please add the name of your language here - Português (Brasil) + Inglês - + Configure &Shortcuts... Configurar &Atalhos... - + Close OpenLP Fechar o OpenLP - + Are you sure you want to close OpenLP? - Você tem certeza de que quer fechar o OpenLP? + Você tem certeza de que deseja fechar o OpenLP? - + Print the current Service Order. - Imprimir a Lista de Exibição atual. + Imprimir a Ordem de Culto atual. - + &Configure Display Tags &Configurar Etiquetas de Exibição - + 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. + 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. + + + + F1 + + OpenLP.MediaManagerItem @@ -2243,45 +2244,56 @@ Voce pode baixar a versão mais nova em http://openlp.org/. Nenhum Item Selecionado - + &Add to selected Service Item - &Adicionar à Lista de Exibição selecionada + &Adicionar ao Item de Ordem de Culto selecionado - + You must select one or more items to preview. - Você precisa selecionar um ou mais itens para pré-visualizar. + Você deve selecionar um ou mais itens para pré-visualizar. - + You must select one or more items to send live. - Você precisa selecionar um ou mais itens para projetar. + Você deve selecionar um ou mais itens para projetar. - + You must select one or more items. - Você precisa selecionar um ou mais itens. + Você deve selecionar um ou mais itens. - + You must select an existing service item to add to. - Você precisa selecionar um item da lista ao qual adicionar. + Você deve selecionar um item de ordem de culto existente ao qual adicionar. - + Invalid Service Item - Item da Lista de Exibição inválido + Item de Ordem de Culto inválido - + You must select a %s service item. - Você precisa selecionar um item %s da Lista de Exibição. + Você deve selecionar um item de ordem de culto %s. - + Duplicate file name %s. Filename already exists in list - + Nome de arquivo duplicado%s. +O nome do arquivo já existe na lista + + + + 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 @@ -2332,12 +2344,12 @@ Filename already exists in list Fit Page - Ajustar na Página + Ajustar à Página Fit Width - Ajustar Largura + Ajustar à Largura @@ -2390,7 +2402,7 @@ Filename already exists in list Include service item notes - Incluir notas da lista de exibição + Incluir notas do item de culto @@ -2404,19 +2416,19 @@ Filename already exists in list - Add page break before each text item. - + Add page break before each text item + Adicionar uma quebra de página antes de cada item de texto OpenLP.ScreenList - + Screen Tela - + primary primário @@ -2426,257 +2438,257 @@ Filename already exists in list Reorder Service Item - Reordenar Item da Lista de Exibição + Reordenar Item de Culto OpenLP.ServiceManager - - Load an existing service - Carregar uma Lista de Exibição existente - - - - Save this service - Salvar esta Lista de Exibição - - - - Select a theme for the service - Selecione um tema para a Lista de Exibição - - - + Move to &top Mover para o &topo - + Move item to the top of the service. - Mover item para o topo da Lista de Exibição. + Mover item para o topo da ordem de culto. - + Move &up Mover para &cima - + Move item up one position in the service. - Mover item uma posição acima na Lista de Exibição. + Mover item uma posição para cima na ordem de culto. - + Move &down Mover para &baixo - + Move item down one position in the service. - Mover item uma posição abaixo na Lista de Exibição. + Mover item uma posição para baixo na ordem de culto. - + Move to &bottom Mover para o &final - + Move item to the end of the service. - Mover item para o final da Lista de Exibição. + Mover item para o final da ordem de culto. - + &Delete From Service - &Excluir da Lista de Exibição + &Excluir da Ordem de Culto - + Delete the selected item from the service. - Excluir o item selecionado da Lista de Exibição. + Excluir o item selecionado da ordem de 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 - &Notas + &Anotações - + &Change Item Theme &Alterar Tema do Item - + File is not a valid service. The content encoding is not UTF-8. - O arquivo não é uma lista válida. + O arquivo não é uma ordem de culto válida. A codificação do conteúdo não é UTF-8. - + File is not a valid service. - Arquivo não é uma Lista de Exibição válida. + Arquivo não é uma ordem de culto válida. - + Missing Display Handler - Faltando o Handler de Exibição + 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 handler para exibí-lo + 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á faltando ou está inativo + 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 da lista. + Expandir todos os itens da ordem de culto. - + &Collapse all &Recolher todos - + Collapse all the service items. - Ocultar todos os subitens da lista. + Recolher todos os itens da ordem de culto. - + Open File Abrir Arquivo - + OpenLP Service Files (*.osz) - Listas de Exibição do OpenLP (*.osz) + Arquivos de Ordem de Culto do OpenLP (*.osz) - + Moves the selection down the window. - Move a seleção para baixo dentro da janela. + 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. + Move a seleção para cima dentro da janela. - + Go Live Projetar - + Send the selected item to Live. Enviar o item selecionado para a Projeção. - + Modified Service - Lista de Exibição Modificada + Ordem de Culto Modificado - + &Start Time &Horário Inicial - + Show &Preview - Exibir &Visualização + Exibir &Pré-visualização - + Show &Live Exibir &Projeção - + The current service has been modified. Would you like to save this service? - A lista de exibição atual foi modificada. Você gostaria de salvá-la? + A ordem de culto atual foi modificada. Você gostaria de salvá esta ordem de culto? - + File could not be opened because it is corrupt. - + Arquivo não pôde ser aberto porque está corrompido. - + Empty File - + Arquivo vazio - + This service file does not contain any data. - + O arquivo de ordem de culto não contém dados. - + Corrupt File - + Arquivo corrompido Custom Service Notes: - + Anotações de Culto Personalizados: Notes: - + Anotações: Playing time: - + Duração: - + Untitled Service - + Ordem de Culto Sem Nome - + This file is either corrupt or not an OpenLP 2.0 service file. - + O arquivo está corrompido ou não é uma arquivo de culto OpenLP 2.0 + + + + Load an existing service. + Carregar uma ordem de culto existente. + + + + Save this service. + Salvar esta ordem de culto. + + + + Select a theme for the service. + Selecionar um tema para a ordem de culto. @@ -2715,7 +2727,7 @@ A codificação do conteúdo não é UTF-8. Duplicate Shortcut - Atalho Duplicado + Atalho Repetido @@ -2725,140 +2737,145 @@ A codificação do conteúdo não é UTF-8. Alternate - Alternar + 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 + Padrão Custom - Customizado + 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? OpenLP.SlideController - + Move to previous Mover para o anterior - + Move to next - Mover para o próximo + Mover para o seguinte - + Hide Ocultar - + Move to live Mover para projeção - + Start continuous loop Iniciar repetição contínua - + Stop continuous loop Parar repetição contínua - + Delay between slides in seconds Intervalo entre slides em segundos - + Start playing media Iniciar a reprodução de mídia - + Go To Ir Para - + Edit and reload song preview Editar e recarregar pré-visualização da música - + Blank Screen Apagar Tela - + Blank to Theme - Apagar e deixar Fundo + Apagar e deixar o Tema - + Show Desktop Mostrar a Área de Trabalho - + Previous Slide Slide Anterior - + Next Slide - Próximo Slide + Slide Seguinte - + Previous Service Lista Anterior - + Next Service Próxima Lista - + Escape Item Escapar Item - + Start/Stop continuous loop - + Iniciar/Interromper repetição contínua + + + + Add to Service + Adicionar à Ordem de Culto @@ -2866,7 +2883,7 @@ A codificação do conteúdo não é UTF-8. Spelling Suggestions - Sugestões de Ortografia + Sugestões Ortográficas @@ -2876,7 +2893,7 @@ A codificação do conteúdo não é UTF-8. Language: - + Idioma: @@ -2899,37 +2916,37 @@ A codificação do conteúdo não é UTF-8. 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 End time is set after the end of the media item - + O tempo final está ajustado para após o fim da mídia Start time is after the End Time of the media item - + O Tempo Inicial está após o Tempo Final da Mídia @@ -2947,7 +2964,7 @@ A codificação do conteúdo não é UTF-8. There is no name for this theme. Please enter one. - Não há nome neste tema. Por favor forneça um. + Não há nome para este tema. Por favor forneça um. @@ -3028,69 +3045,69 @@ A codificação do conteúdo não é UTF-8. 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. - + 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. The content encoding is not UTF-8. O arquivo não é um tema válido. A codificação do conteúdo não é UTF-8. - + File is not a valid theme. O arquivo não é um tema válido. - + Theme %s is used in the %s plugin. O tema %s é usado no plugin %s. @@ -3110,47 +3127,47 @@ A codificação do conteúdo não é UTF-8. &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 apagar. + 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) @@ -3235,7 +3252,7 @@ A codificação do conteúdo não é UTF-8. Define the font and display characteristics for the Display text - Definir a fonte de características de exibição para o texto Exibido + Definir a fonte e características de exibição para o texto Exibido @@ -3250,7 +3267,7 @@ A codificação do conteúdo não é UTF-8. Line Spacing: - Espaçamento das linhas: + Espaçamento entre linhas: @@ -3275,22 +3292,22 @@ A codificação do conteúdo não é UTF-8. Footer Area Font Details - Detalhes da Área de Rodapé + Detalhes de Fonte da Área de Rodapé Define the font and display characteristics for the Footer text - Defina as características do texto do Rodapé + Defina a fone e as características de exibição do texto de Rodapé Text Formatting Details - Detalhes da Formatação da Fonte + Detalhes da Formatação de Texto Allows additional display formatting information to be defined - Permite que formatações adicionais sejam feitas + Permite que informações adicionais de formatações de exibição sejam definidas @@ -3315,12 +3332,12 @@ A codificação do conteúdo não é UTF-8. Output Area Locations - Localização da Área de Saída + Posições das Áreas de Saída Allows you to change and move the main and footer areas. - Permite mudar e modificar as áreas principal e de rodapé. + Permite modificar e mover as áreas principal e de rodapé. @@ -3330,7 +3347,7 @@ A codificação do conteúdo não é UTF-8. &Use default location - &Usar local padrão + &Usar posição padrão @@ -3360,7 +3377,7 @@ A codificação do conteúdo não é UTF-8. Use default location - Usar local padrão + Usar posição padrão @@ -3370,7 +3387,7 @@ A codificação do conteúdo não é UTF-8. View the theme and save it replacing the current one or change the name to create a new theme - Visualizar o tema e salvá-lo, substituindo o atual ou mudar o nome, criando um novo tema + Visualizar o tema e salvá-lo, substituindo o atual ou mudar o nome para criar um novo tema @@ -3380,7 +3397,7 @@ A codificação do conteúdo não é UTF-8. 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 editar seus temas. Clique no botão Próximo para começar, configurando o plano de fundo. + 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. @@ -3408,7 +3425,7 @@ A codificação do conteúdo não é UTF-8. Theme Level - Nível dos Temas + Nível do Tema @@ -3418,17 +3435,17 @@ A codificação do conteúdo não é UTF-8. 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 com ela, então use o tema da lista de exibição. Se a lista não tiver um tema, então use o tema global. + 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 da ordem de culto. Se a ordem de culto não tiver um tema, então usar o tema global. &Service Level - Nível da &Lista de Exibição + Nível de &Ordem 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 da lista de exibição, sobrescrevendo qualquer um dos temas individuais das músicas. Se a lista de exibição não tiver um tema, então use o tema global. + Usar o tema da ordem de culto, ignorando qualquer temas das músicas individuais. Se a ordem de culto não tiver um tema, então usar o tema global. @@ -3438,7 +3455,7 @@ A codificação do conteúdo não é UTF-8. Use the global theme, overriding any themes associated with either the service or the songs. - Usar o tema global, sobrescrevendo qualquer tema associado às lista de exibição ou músicas. + Usar o tema global, ignorando qualquer tema associado à ordem de culto ou às músicas. @@ -3456,7 +3473,7 @@ A codificação do conteúdo não é UTF-8. Delete the selected item. - Apagar o item selecionado. + Excluir o item selecionado. @@ -3511,7 +3528,7 @@ A codificação do conteúdo não é UTF-8. Create a new service. - Criar uma nova Lista de Exibição. + Criar uma nova ordem de culto. @@ -3582,7 +3599,7 @@ A codificação do conteúdo não é UTF-8. New Service - Nova Lista de Exibição + Nova Ordem de Culto @@ -3626,7 +3643,7 @@ A codificação do conteúdo não é UTF-8. Open Service - Abrir Lista de Exibição + Abrir Ordem de Culto @@ -3651,7 +3668,7 @@ A codificação do conteúdo não é UTF-8. Replace Live Background - Trocar Plano de Fundo da Projeção + Substituir Plano de Fundo da Projeção @@ -3692,12 +3709,12 @@ A codificação do conteúdo não é UTF-8. Save Service - Salvar Lista de Exibição + Salvar Ordem de Culto Service - Lista de Exibição + Ordem de Culto @@ -3727,7 +3744,7 @@ A codificação do conteúdo não é UTF-8. Versão - + &Vertical Align: Alinhamento &Vertical: @@ -3764,7 +3781,7 @@ A codificação do conteúdo não é UTF-8. 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ê precisa instalar o módulo "python-sqlite". + 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". @@ -3782,7 +3799,7 @@ A codificação do conteúdo não é UTF-8. Pronto. - + Starting import... Iniciando importação... @@ -3829,7 +3846,7 @@ A codificação do conteúdo não é UTF-8. Song Book Singular - Livro de Músicas + Hinário @@ -3857,110 +3874,110 @@ A codificação do conteúdo não é UTF-8. Continuous - Contínuo + Contínuo Default - Padrão + Padrão Display style: - Estilo de Exibição: + Estilo de Exibição: File - + Arquivo Help - + Ajuda h The abbreviated unit for hours - h + h Layout style: - Estilo do Layout: + Estilo do Layout: Live Toolbar - + Barra de Ferramentas de Projeção m The abbreviated unit for minutes - m + m OpenLP is already running. Do you wish to continue? - + OpenLP já está sendo executado. Deseja continuar? Settings - + Configurações Tools - + Ferramentas Verse Per Slide - Versículos por Slide + Versículos por Slide Verse Per Line - Versículos por Linha + Versículos por Linha View - - - - - View Model - + Visualizar Duplicate Error - + Erro de duplicidade Unsupported File - Arquivo Não Suportado + Arquivo Não Suportado 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 OpenLP.displayTagDialog - + Configure Display Tags Configurar Etiquetas de Exibição @@ -3972,31 +3989,6 @@ A codificação do conteúdo não é UTF-8. <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. <strong>Plugin de Apresentação</strong><br />O plugin de apresentação provê a habilidade de exibir apresentações utilizando um diferente número de programas. Os programas disponíveis são exibidos em uma caixa de seleção. - - - 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 - Projetar a Apresentação selecionada - - - - Add the selected Presentation to the service - Adicionar a Apresentação selecionada à Lista de Exibição - Presentation @@ -4015,56 +4007,81 @@ A codificação do conteúdo não é UTF-8. container title Apresentações + + + Load a new Presentation. + Carregar uma Apresentação nova. + + + + Delete the selected Presentation. + Apagar a Apresentação selecionada. + + + + Preview the selected Presentation. + Pré-visualizar a Apresentação selecionada. + + + + Send the selected Presentation live. + Projetar a Apresentação selecionada. + + + + Add the selected Presentation to the service. + Adicionar a Apresentação selecionada à ordem de culto + PresentationPlugin.MediaItem - + Select Presentation(s) Selecionar Apresentação(ões) - + Automatic Automático - + Present using: Apresentar usando: - + File Exists O Arquivo já Existe - + A presentation with that filename already exists. Já existe uma apresentação com este nome. - + This type of presentation is not supported. Este tipo de apresentação não é suportado. - + Presentations (%s) Apresentações (%s) - + Missing Presentation Apresentação Não Encontrada - + The Presentation %s no longer exists. A Apresentação %s não existe mais. - + The Presentation %s is incomplete, please reload. A Apresentação %s está incompleta, por favor recarregue-a. @@ -4079,7 +4096,7 @@ A codificação do conteúdo não é UTF-8. Allow presentation application to be overriden - Permitir que a aplicação de apresentações seja substituída + Permitir que o aplicativo de apresentações seja substituída @@ -4092,7 +4109,7 @@ A codificação do conteúdo não é UTF-8. <strong>Remote Plugin</strong><br />The remote plugin provides the ability to send messages to a running version of OpenLP on a different computer via a web browser or through the remote API. - <strong>Plugin Remoto</strong><br />O plugin remoto provê a abilidade de 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. + <strong>Plugin Remoto</strong><br />O plugin remoto provê a habilidade de 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. @@ -4116,20 +4133,30 @@ A codificação do conteúdo não é UTF-8. RemotePlugin.RemoteTab - + Serve on IP address: Endereço IP do servidor: - + Port number: Número de porta: - + Server Settings Configurações do Servidor + + + Remote URL: + URL Remoto: + + + + Stage view URL: + URL de Visualização de Palco: + SongUsagePlugin @@ -4189,12 +4216,12 @@ A codificação do conteúdo não é UTF-8. SongUsage container title - Registro das Músicas + Uso das Músicas Song Usage - + Uso das Músicas @@ -4207,12 +4234,12 @@ A codificação do conteúdo não é UTF-8. Delete Selected Song Usage Events? - Deseja Excluir os Eventos de Registro das Músicas? + Deseja Excluir os Eventos de Uso das Músicas? Are you sure you want to delete selected Song Usage data? - Você tem certeza que deseja excluir o registro selecionado? + Você tem certeza de que deseja excluir os dados selecionados de Uso das Músicas? @@ -4240,7 +4267,7 @@ A codificação do conteúdo não é UTF-8. to - para + até @@ -4279,7 +4306,7 @@ foi criado com sucesso. 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 válida para o relatório de uso de músicas. Por favor selecione um caminho existente no seu computador. + 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. @@ -4314,36 +4341,6 @@ foi criado com sucesso. Reindexing songs... Reindexando músicas... - - - Add a new Song - Adicionar uma nova Música - - - - Edit the selected Song - Editar a Música selecioanda - - - - Delete the selected Song - Apagar a Música selecionada - - - - Preview the selected Song - Pré-visualizar a Música selecionada - - - - Send the selected Song live - Projetar a Música selecionada - - - - Add the selected Song to the service - Adicionar a Música selecionada à Lista de Exibição - Song @@ -4442,9 +4439,9 @@ foi criado com sucesso. The codepage setting is responsible for the correct character representation. Usually you are fine with the preselected choice. - O Código de páginas é responsável + A configuraçao de página de código é responsável pela correta representação dos caracteres. -Normalmente a opção pré-selecionada é segura. +Normalmente pode usar a opção pré-selecionada. @@ -4456,7 +4453,37 @@ A codificação é responsável pela correta representação dos caracteres. Exports songs using the export wizard. - Exportar músicas utilizando o assistente. + Exporta músicas utilizando o assistente de exportação. + + + + Add a new Song. + Adicionar uma Música nova. + + + + Edit the selected Song. + Editar a Música selecionada. + + + + Delete the selected Song. + Apagar a Música selecionada. + + + + Preview the selected Song. + Pré-visualizar a Música selecionada. + + + + Send the selected Song live. + Projetar a Música selecionada. + + + + Add the selected Song to the service. + Adicionar a Música selecionada à ordem de culto. @@ -4469,12 +4496,12 @@ A codificação é responsável pela correta representação dos caracteres. Display name: - Nome da Tela: + Nome da Exibição: First name: - Primeiro Nome: + Primeiro nome: @@ -4494,7 +4521,7 @@ A codificação é responsável pela correta representação dos caracteres. 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? + Você não definiu um nome de exibição para o autor, combinar o nome e o sobrenome? @@ -4502,7 +4529,7 @@ A codificação é responsável pela correta representação dos caracteres. The file does not have a valid extension. - + O arquivo não possui uma extensão válida. @@ -4510,7 +4537,7 @@ A codificação é responsável pela correta representação dos caracteres. Administered by %s - Administrado por %s + Administrado por %s @@ -4533,7 +4560,7 @@ A codificação é responsável pela correta representação dos caracteres. &Lyrics: - &Letras: + &Letra: @@ -4548,7 +4575,7 @@ A codificação é responsável pela correta representação dos caracteres. Title && Lyrics - Título && Letras + Título && Letra @@ -4578,7 +4605,7 @@ A codificação é responsável pela correta representação dos caracteres. Book: - Livro: + Hinário: @@ -4638,17 +4665,17 @@ A codificação é responsável pela correta representação dos caracteres. This topic does not exist, do you want to add it? - Este tópico não existe, deseja adicioná-lo? + Este assunto não existe, deseja adicioná-lo? This topic is already in the list. - Este tópico já está na lista. + 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. - Não há nenhum tópico válido selecionado. Selecione um tópico da lista ou digite um novo tópico e clique em "Adicionar Tópico à Música" para adicionar o novo tópico. + 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. @@ -4678,7 +4705,7 @@ A codificação é responsável pela correta representação dos caracteres. Add Book - Adicionar Livro + Adicionar Hinário @@ -4691,7 +4718,7 @@ A codificação é responsável pela correta representação dos caracteres.Você precisa de um autor para esta música. - + You need to type some text in to the verse. Você precisa digitar algum texto na estrofe. @@ -4699,20 +4726,35 @@ A codificação é responsável pela correta representação dos caracteres. SongsPlugin.EditVerseForm - + Edit Verse Editar Estrofe - + &Verse type: Tipo de &Estrofe: - + &Insert &Inserir + + + &Split + &Dividir + + + + 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 como um único slide. + + + + Split a slide into two by inserting a verse splitter. + Dividir um slide em dois, inserindo um divisor de estrófes. + SongsPlugin.ExportWizardForm @@ -4724,7 +4766,7 @@ A codificação é responsável pela correta representação dos caracteres. This wizard will help to export your songs to the open and free OpenLyrics worship song format. - Este assistente irá ajudá-lo a exportar as suas músicas para o formato aberto e gratuito OpenLyrics. + Este assistente irá ajudá-lo a exportar as suas músicas para o formato de músicas de louvor aberto e gratuito OpenLyrics. @@ -4751,11 +4793,6 @@ A codificação é responsável pela correta representação dos caracteres.Select Directory Selecionar Diretório - - - Select the directory you want the songs to be saved. - Selecionar o diretório que você deseja salvar as músicas. - Directory: @@ -4779,7 +4816,7 @@ A codificação é responsável pela correta representação dos caracteres. No Save Location specified - Nenhum local para Salvar foi especificado + Nenhum Localização para Salvar foi especificado @@ -4794,7 +4831,12 @@ A codificação é responsável pela correta representação dos caracteres. Select Destination Folder - Selecione uma Pasta de Destino + Selecione a Pasta de Destino + + + + Select the directory where you want the songs to be saved. + @@ -4802,7 +4844,7 @@ A codificação é responsável pela correta representação dos caracteres. Select Document/Presentation Files - Selecione Documentos/Apresentações + Selecione Arquivos de Documentos/Apresentações @@ -4812,7 +4854,7 @@ A codificação é responsável pela correta representação dos caracteres. 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 botão Próximo para iniciar o processo, escolhendo um desses formatos. + 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. @@ -4837,7 +4879,7 @@ A codificação é responsável pela correta representação dos caracteres. The Songs of Fellowship importer has been disabled because OpenLP cannot find OpenOffice.org on your computer. - O importador do Songs of Fellowship foi desabilitado porque o OpenOffice.org não foi encontrado. + O importador do Songs of Fellowship foi desabilitado porque o OpenOffice.org não foi encontrado no seu computador. @@ -4897,61 +4939,61 @@ A codificação é responsável pela correta representação dos caracteres. Copy - Copiar + Copiar Save to File - Salvar para um Arquivo + Salvar em Arquivo SongsPlugin.MediaItem - - Maintain the lists of authors, topics and books - Gerenciar a lista de autores, tópicos e livros - - - + Titles Títulos - + Lyrics Letra - + Delete Song(s)? Apagar Música(s)? - + CCLI License: Licença CCLI: - + Entire Song Música Inteira - + Are you sure you want to delete the %n selected song(s)? - Tem certeza de que quer apagar as %n música(s) selecionadas? - + Tem certeza de que quer apagar a(s) %n música(s) selecionada(s)? + Tem certeza de que quer apagar as %n músicas selecionadas? + + + Maintain the lists of authors, topics and books. + Garencia a lista de autores, tópicos e hinários. + 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 @@ -4959,7 +5001,7 @@ A codificação é responsável pela correta representação dos caracteres. Not a valid OpenLP 2.0 song database. - + Não é uma base de dados de músicas válida do OpenLP 2.0 @@ -4998,12 +5040,12 @@ A codificação é responsável pela correta representação dos caracteres. Finished export. - Exportação Finalizada. + Exportação finalizada. Your song export failed. - A sua exportação falhou. + A sua exportação de músicas falhou. @@ -5016,7 +5058,7 @@ A codificação é responsável pela correta representação dos caracteres. The following songs could not be imported: - + As seguintes músicas não puderam ser importadas: @@ -5032,7 +5074,7 @@ A codificação é responsável pela correta representação dos caracteres. Could not add your author. - Não foi possível adicionar o autor. + Não foi possível adicionar seu autor. @@ -5042,17 +5084,17 @@ A codificação é responsável pela correta representação dos caracteres. Could not add your topic. - Não foi possível adicionar o tópico. + Não foi possível adicionar seu assunto. This topic already exists. - Este tópico já existe. + Este assunto já existe. Could not add your book. - Não foi possível adicionar o livro. + Não foi possível adicionar seu livro. @@ -5062,7 +5104,7 @@ A codificação é responsável pela correta representação dos caracteres. Could not save your changes. - Não foi possível salvar as alterações. + Não foi possível salvar suas alterações. @@ -5082,7 +5124,7 @@ A codificação é responsável pela correta representação dos caracteres. 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 ao menos uma música. + Este autor não pode ser apagado, pois está associado a pelo menos uma música. @@ -5097,7 +5139,7 @@ A codificação é responsável pela correta representação dos caracteres. 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 ao menos uma música. + Este assunto não pode ser apagado, pois está associado a pelo menos uma música. @@ -5117,7 +5159,7 @@ A codificação é responsável pela correta representação dos caracteres. Could not save your modified author, because the author already exists. - Não foi possível salvar alteração no autor, porque o autor já existe. + Não foi possível salvar sue autor modificado, pois o autor já existe. @@ -5127,7 +5169,7 @@ A codificação é responsável pela correta representação dos caracteres. The topic %s already exists. Would you like to make songs with topic %s use the existing topic %s? - O tópico %s já existe. Deseja que as músicas com o tópico %s usem o tópico %s existente? + O assunto %s já existe. Deseja que as músicas com o assunto %s usem o assunto %s existente? @@ -5145,22 +5187,22 @@ A codificação é responsável pela correta representação dos caracteres. Enable search as you type - Habilitar preenchimento automático + Habilitar busca ao digitar Display verses on live tool bar - Exibir versículos na barra de projeção + Exibir versículos na barra de ferramentas de projeção Update service from song edit - Atualizar Lista de Exibição após editar música + Atualizar ordem de culto após editar música Add missing songs when opening service - Adicionar músicas não existantes ao abrir lista + Adicionar músicas ausentes ao abrir ordem de culto @@ -5224,7 +5266,7 @@ A codificação é responsável pela correta representação dos caracteres. Themes - Temas + Temas diff --git a/resources/i18n/ru.ts b/resources/i18n/ru.ts index 301d7f7f1..ac6d6b541 100644 --- a/resources/i18n/ru.ts +++ b/resources/i18n/ru.ts @@ -184,22 +184,22 @@ Do you want to continue anyway? BiblePlugin.HTTPBible - + 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. Возникла проблема при распковкие раздела стихов. Если это ошибка будет повторяться, пожалуйста сообщите о ней. @@ -207,12 +207,12 @@ Do you want to continue anyway? BiblePlugin.MediaItem - + Bible not fully loaded. Библия загружена не полностью. - + You cannot combine single and dual Bible verse search results. Do you want to delete your search results and start a new search? Вы не можете комбинировать результат поиска для одной и двух Библий. Желаете удалить результаты поиска и начать новый поиск? @@ -224,11 +224,6 @@ Do you want to continue anyway? &Bible &Библия - - - <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display bible verses from different sources during the service. - <strong>Плагин Библия</strong><br />Плагин "Библия" обеспечивает возможность показаза мест писания во время служения. - Bible @@ -248,82 +243,87 @@ Do you want to continue anyway? Священное Писание - - 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 - Добавить выбранную Библию к служению - - - + 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. + + BiblesPlugin.BibleManager - + There are no Bibles currently installed. Please use the Import Wizard to install one or more Bibles. В настоящее время ни одна Библия не установлена. Пожалуйста, воспользуйтесь Мастером Импорта чтобы установить одну или более Библий. - + 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. Вы не указали ключевое слово для поиска. Вы можете разделить разичные ключевые слова пробелами чтобы осуществить поиск по фразе, а также можете использовать запятые, чтобы искать по каждому из указанных ключевых слов. - + Your scripture reference is either not supported by OpenLP or is invalid. Please make sure your reference conforms to one of the following patterns: Book Chapter @@ -342,7 +342,7 @@ Book Chapter:Verse-Chapter:Verse Книга Глава:Стих-Глава:Стих - + No Bibles Available Библии отсутствуют @@ -533,17 +533,6 @@ Changes do not affect verses already in the service. CSV File - - - Starting Registering bible... - - - - - Registered bible. Please note, that verses will be downloaded on -demand and thus an internet connection is required. - - Your Bible import failed. @@ -574,74 +563,75 @@ demand and thus an internet connection is required. 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.MediaItem - + Quick - + Second: - + Find: - - Results: - - - - + Book: Сборник: - + Chapter: - + Verse: - + From: - + To: - + Text Search - - Clear - - - - - Keep - - - - + Scripture Reference + + + Toggle to keep or clear the previous results. + + BiblesPlugin.Opensong @@ -730,25 +720,35 @@ demand and thus an internet connection is required. - + You need to type in a title. - + You need to add at least one slide - + Split Slide - + Split a slide into two by inserting a slide splitter. + + + Split a slide into two only if it does not fit on the screen as one slide. + + + + + Insert Slide + + CustomsPlugin @@ -771,50 +771,50 @@ demand and thus an internet connection is required. - - Import a Custom + + Load a new Custom. - - Load a new Custom + + Import a Custom. - Add a new Custom + Add a new Custom. - Edit the selected Custom + Edit the selected Custom. - Delete the selected Custom + Delete the selected Custom. - - Preview the selected Custom + + Preview the selected Custom. - - Send the selected Custom live + + Send the selected Custom live. - - Add the selected Custom to the service + + Add the selected Custom to the service. GeneralTab - + General @@ -846,44 +846,44 @@ demand and thus an internet connection is required. - 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. + ImagePlugin.ExceptionDialog - + Select Attachment Выбрать Вложение @@ -891,39 +891,39 @@ demand and thus an internet connection is required. ImagePlugin.MediaItem - + Select Image(s) Выбрать Изображение(я) - + You must select an image to delete. Вы должны выбрать изображение для удаления. - + 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 Добавить остальные изображения? - + You must select an image to replace the background with. Вы должны выбрать изображения, которым следует заменить фон. - + There was a problem replacing your background, the image file "%s" no longer exists. Возникла проблема при замене Фона проектора, файл "%s" больше не существует. @@ -955,74 +955,74 @@ Do you want to add the other images anyway? - Load a new Media - Открыть новый медиафайл + Load a new Media. + - Add a new Media - Добавить новый медиафайл + Add a 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. + MediaPlugin.MediaItem - + Select Media Выбрать медиафайл - + 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 не существует. - + You must select a media file to delete. Вы должны выбрать медиафайл для удаления. - + Videos (%s);;Audio (%s);;%s (*) Videos (%s);;Audio (%s);;%s (*) @@ -1051,28 +1051,17 @@ Do you want to add the other images anyway? OpenLP.AboutForm - - OpenLP <version><revision> - Open Source Lyrics Projection - -OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if OpenOffice.org, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. - -Find out more about OpenLP: http://openlp.org/ - -OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider contributing by using the button below. - - - - + Credits - + License Лицензия - + Contribute @@ -1082,17 +1071,17 @@ OpenLP is written and maintained by volunteers. If you would like to see more fr Билд %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. - + Project Lead %s @@ -1157,12 +1146,20 @@ Final Credit - - Copyright © 2004-2011 Raoul Snyman -Portions copyright © 2004-2011 Tim Bentley, Jonathan Corwin, Michael Gorven, Scott Guerrieri, -Meinert Jordan, Andreas Preikschat, Christian Richter, Philip -Ridout, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Carsten -Tinggaard, Frode Woldsund + + 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 contributing by using the button below. + + + + + Copyright © 2004-2011 %s +Portions copyright © 2004-2011 %s @@ -1257,70 +1254,70 @@ Tinggaard, Frode Woldsund OpenLP.DisplayTagDialog - + Edit Selection - - Update - - - - + Description - + Tag - + Start tag - + End tag - + Default - + Tag Id - + Start HTML - + End HTML + + + Save + + OpenLP.DisplayTagTab - + Update Error - + Tag "n" already defined. - + Tag %s already defined. @@ -1359,7 +1356,7 @@ Tinggaard, Frode Woldsund - + Description characters to enter : %s @@ -1415,7 +1412,7 @@ Version: %s - + *OpenLP Bug Report* Version: %s @@ -1511,77 +1508,72 @@ Version: %s - - This wizard will help you to configure OpenLP for initial use. Click the next button below to start the process of selection your initial options. - - - - + Activate required Plugins - + Select the Plugins you wish to use. - + Songs Псалмы - + Custom Text - + Bible Библия - + Images Изображения - + Presentations - + Media (Audio and Video) - + Allow remote access - + Monitor Song Usage - + Allow Alerts - + No Internet Connection - + Unable to detect an Internet connection. - + 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. To re-run the First Time Wizard and import this sample data at a later stage, press the cancel button now, check your Internet connection, and restart OpenLP. @@ -1590,190 +1582,195 @@ To cancel the First Time Wizard completely, press the finish button now. - + Sample Songs - + Select and download public domain songs. - + Sample Bibles - + Select and download free Bibles. - + Sample Themes - + Select and download sample themes. - + Default Settings - + Set up default settings to be used by OpenLP. - + Setting Up And Importing - + Please wait while OpenLP is set up and your data is imported. - + 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.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 - + Check for updates to OpenLP - + Application Settings - + Prompt to save before starting a new service - + Automatically preview next item in service - + Slide loop delay: - + sec - + CCLI Details - + SongSelect username: - + SongSelect password: - + Display Position - + X - + Y - + Height - + Width - + Override display position - + Unblank display when adding new live item @@ -1794,7 +1791,7 @@ To cancel the First Time Wizard completely, press the finish button now. OpenLP.MainDisplay - + OpenLP Display Дисплей OpenLP @@ -1802,292 +1799,292 @@ To cancel the First Time Wizard completely, press the finish button now. 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. Сохранить текущее служение под новым именем. - + Print the current Service Order. Распечатать текущий Порядок Служения - + E&xit Вы&ход - + Quit OpenLP Завершить работу OpenLP - + &Theme Т&ема - + Configure &Shortcuts... Настройки и б&ыстрые клавиши... - + &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. @@ -2104,27 +2101,27 @@ You can download the latest version from http://openlp.org/. - + OpenLP Main Display Blanked - + The Main Display has been blanked out - + Close OpenLP - + Are you sure you want to close OpenLP? - + Default Theme: %s @@ -2135,25 +2132,40 @@ You can download the latest version from http://openlp.org/. Английский - + &Configure Display Tags - + Open &Data Folder... - + Open the folder where songs, bibles and other data resides. - + &Autodetect + + + Update Theme Images + + + + + Update the preview images for all themes. + + + + + F1 + + OpenLP.MediaManagerItem @@ -2163,46 +2175,56 @@ You can download the latest version from http://openlp.org/. Объекты не выбраны - + &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. - + Duplicate file name %s. Filename already exists in list + + + You must select one or more items to add. + + + + + No Search Results + + OpenLP.PluginForm @@ -2324,19 +2346,19 @@ Filename already exists in list - Add page break before each text item. + Add page break before each text item OpenLP.ScreenList - + Screen - + primary @@ -2352,223 +2374,208 @@ Filename already exists in list OpenLP.ServiceManager - - Load an existing service - - - - - Save this service - - - - - Select a theme for the service - - - - + Move to &top - + Move item to the top of the service. - + Move &up - + Move item up one position in the service. - + Move &down - + Move item down one position in the service. - + Move to &bottom - + Move item to the end of the service. - + Moves the selection down the window. - + Move up - + Moves the selection up the window. - + &Delete From Service - + Delete the selected item from the service. - + &Expand all - + Expand all the service items. - + &Collapse all - + Collapse all the service items. - + Go Live - + Send the selected item to Live. - + &Add New Item - + &Add to Selected Item - + &Edit Item - + &Reorder Item - + &Notes - + &Change Item Theme - + Open File - + OpenLP Service Files (*.osz) - + Modified Service - + 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 - + &Start Time - + Show &Preview - + Show &Live - + The current service has been modified. Would you like to save this service? - + File could not be opened because it is corrupt. - + Empty File - + This service file does not contain any data. - + Corrupt File @@ -2588,15 +2595,30 @@ The content encoding is not UTF-8. - + Untitled Service - + This file is either corrupt or not an OpenLP 2.0 service file. + + + Load an existing service. + + + + + Save this service. + + + + + Select a theme for the service. + + OpenLP.ServiceNoteForm @@ -2685,100 +2707,105 @@ The content encoding is not UTF-8. OpenLP.SlideController - + Previous Slide - + Move to previous - + Next Slide - + Move to next - + Hide - + Blank Screen - + Blank to Theme - + Show Desktop - + Start continuous loop - + Stop continuous loop - + Delay between slides in seconds - + Move to live - + Edit and reload song preview - + Start playing media - + Go To - + Previous Service - + Next Service - + Escape Item - + Start/Stop continuous loop + + + Add to Service + + OpenLP.SpellTextEdit @@ -2962,113 +2989,113 @@ The content encoding is not UTF-8. - + %s (default) - + You must select a theme to rename. - + Rename Confirmation - + Rename %s theme? - + You must select a theme to edit. - + You must select a theme to delete. - + Delete Confirmation - + Delete %s theme? - + 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. The content encoding is not UTF-8. - + Validation Error - + File is not a valid theme. - + A theme with this name already exists. - + You are unable to delete the default theme. - + Theme %s is used in the %s plugin. - + OpenLP Themes (*.theme *.otz) @@ -3645,7 +3672,7 @@ The content encoding is not UTF-8. Версия - + &Vertical Align: &Вертикальная привязка: @@ -3700,7 +3727,7 @@ The content encoding is not UTF-8. Готов. - + Starting import... Начинаю импорт... @@ -3849,11 +3876,6 @@ The content encoding is not UTF-8. View - - - View Model - - Duplicate Error @@ -3874,11 +3896,16 @@ The content encoding is not UTF-8. XML syntax error + + + View Mode + + OpenLP.displayTagDialog - + Configure Display Tags @@ -3910,79 +3937,79 @@ The content encoding is not UTF-8. - 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. PresentationPlugin.MediaItem - + Select Presentation(s) - + Automatic - + Present using: - + Presentations (%s) - + File Exists - + A presentation with that filename already exists. - + This type of presentation is not supported. - + Missing Presentation - + The Presentation %s is incomplete, please reload. - + The Presentation %s no longer exists. @@ -4034,20 +4061,30 @@ The content encoding is not UTF-8. RemotePlugin.RemoteTab - + Server Settings - + Serve on IP address: - + Port number: + + + Remote URL: + + + + + Stage view URL: + + SongUsagePlugin @@ -4340,41 +4377,41 @@ The encoding is responsible for the correct character representation. container title Псалмы - - - 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 - Добавить выбранный Псалом к служению - 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. + + SongsPlugin.AuthorsForm @@ -4608,7 +4645,7 @@ The encoding is responsible for the correct character representation. Этот сборник песен не существует. Хотите добавить его? - + You need to type some text in to the verse. Вы должны указать какой-то текст в этом куплете. @@ -4616,20 +4653,35 @@ The encoding is responsible for the correct character representation. SongsPlugin.EditVerseForm - + Edit Verse Изменить стих - + &Verse type: &Тип стиха: - + &Insert &Вставить + + + &Split + + + + + Split a slide into two only if it does not fit on the screen as one slide. + + + + + Split a slide into two by inserting a verse splitter. + + SongsPlugin.ExportWizardForm @@ -4668,11 +4720,6 @@ The encoding is responsible for the correct character representation. Select Directory Выбрать словарь - - - Select the directory you want the songs to be saved. - Выберите папку, в которую вы хотите сохранить песни. - Directory: @@ -4713,6 +4760,11 @@ The encoding is responsible for the correct character representation. Select Destination Folder Выберите целевую папку + + + Select the directory where you want the songs to be saved. + + SongsPlugin.ImportWizardForm @@ -4825,32 +4877,27 @@ The encoding is responsible for the correct character representation. SongsPlugin.MediaItem - - Maintain the lists of authors, topics and books - Обслуживание списка авторов, тем и песенников - - - + Entire Song Всю песню - + Titles Название - + Lyrics Слова - + Delete Song(s)? Удалить песню(и)? - + Are you sure you want to delete the %n selected song(s)? Вы уверены, что хотите удалить %n выбранную песню? @@ -4859,10 +4906,15 @@ The encoding is responsible for the correct character representation. - + CCLI License: Лицензия CCLI: + + + Maintain the lists of authors, topics and books. + + SongsPlugin.OpenLP1SongImport diff --git a/resources/i18n/sv.ts b/resources/i18n/sv.ts index 92b31d26f..defc37983 100644 --- a/resources/i18n/sv.ts +++ b/resources/i18n/sv.ts @@ -72,7 +72,7 @@ Do you want to continue anyway? Alert &text: - Larm&text: + Larm & text: @@ -166,7 +166,7 @@ Do you want to continue anyway? Importing books... %s - + Importerar böcker... %s @@ -183,35 +183,35 @@ Do you want to continue anyway? BiblePlugin.HTTPBible - + Download Error Fel vid nerladdning - + Parse Error Fel vid analys - + 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 var problem med nerladdningen av versurvalet. Kontrollera internetuppkopplingen och om problemet återkommer fundera på att rapportera det som en bugg. - + There was a problem extracting your verse selection. If this error continues to occur please consider reporting a bug. - + Det var ett problem att extrahera ditt vers-val. Om problemet uppstår igen, överväg att rapportera en bugg. BiblePlugin.MediaItem - + Bible not fully loaded. - + You cannot combine single and dual Bible verse search results. Do you want to delete your search results and start a new search? @@ -223,46 +223,6 @@ Do you want to continue anyway? &Bible &Bibel - - - <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display bible verses from different sources during the service. - <strong>Bibelplugin</strong><br />Bibelpluginen tillhandahåller möjligheten att visa bibelverser från olika källor under gudstjänsten. - - - - Import a Bible - Importera en bibel - - - - Add a new Bible - Lägg till en bibel - - - - Edit the selected Bible - Redigera vald bibel - - - - Delete the selected Bible - Ta bort vald bibel - - - - Preview the selected Bible - Förhandsgranska vald bibeln - - - - Send the selected Bible live - - - - - Add the selected Bible to the service - Lägg till vald bibel till gudstjänstordningen - Bible @@ -282,47 +242,87 @@ Do you want to continue anyway? Biblar - + No Book Found Ingen bok hittades - + 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 på bokens namn. + + + 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. + + BiblesPlugin.BibleManager - + Scripture Reference Error Felaktigt bibelställe - + Web Bible cannot be used Bibel på webben kan inte användas - + Text Search is not available with Web Bibles. Textsökning är inte tillgänglig för bibel på webben. - + 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 ingen bibel installerad. Använd guiden för bibelimport och installera en eller flera biblar. - + Your scripture reference is either not supported by OpenLP or is invalid. Please make sure your reference conforms to one of the following patterns: Book Chapter @@ -334,7 +334,7 @@ Book Chapter:Verse-Chapter:Verse - + No Bibles Available @@ -509,18 +509,7 @@ Changes do not affect verses already in the service. This Bible already exists. Please import a different Bible or first delete the existing one. - - - - - Starting Registering bible... - - - - - Registered bible. Please note, that verses will be downloaded on -demand and thus an internet connection is required. - + Denna Bibeln finns redan. Importera en annan Bibel eller radera den nuvarande. @@ -567,74 +556,75 @@ demand and thus an internet connection is required. 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.MediaItem - + Quick Snabb - + Find: Hitta: - - Results: - Resultat: - - - + Book: Bok: - + Chapter: Kapitel: - + Verse: Vers: - + From: Från: - + To: Till: - + Text Search Textsökning - - Clear - Rensa vid ny sökning - - - - Keep - Behåll vid ny sökning - - - + Second: - + Scripture Reference + + + Toggle to keep or clear the previous results. + + BiblesPlugin.Opensong @@ -708,12 +698,12 @@ demand and thus an internet connection is required. Redigera alla diabilder på en gång. - + Split Slide Dela diabilden - + Split a slide into two by inserting a slide splitter. Dela diabilden i två genom att lägga till en diabild delare. @@ -728,12 +718,12 @@ demand and thus an internet connection is required. - + 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 @@ -742,49 +732,19 @@ demand and thus an internet connection is required. Ed&it All Red&igera alla + + + Split a slide into two only if it does not fit on the screen as one slide. + + + + + Insert Slide + + CustomsPlugin - - - Import a Custom - - - - - Load a new Custom - - - - - Add a new Custom - - - - - Edit the selected Custom - - - - - Delete the selected Custom - - - - - Preview the selected Custom - - - - - Send the selected Custom live - - - - - Add the selected Custom to the service - - Custom @@ -803,11 +763,51 @@ demand and thus an internet connection is required. container title Anpassad + + + Load a new Custom. + + + + + Import a Custom. + + + + + Add a new Custom. + + + + + Edit the selected Custom. + + + + + Delete the selected Custom. + + + + + Preview the selected Custom. + + + + + Send the selected Custom live. + + + + + Add the selected Custom to the service. + + GeneralTab - + General @@ -819,41 +819,6 @@ demand and thus an internet connection is required. <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. - - - Load a new Image - Ladda en ny bild - - - - Add a new Image - Lägg till en ny bild - - - - Edit the selected Image - Redigera vald bild - - - - Delete the selected Image - Ta bort vald bild - - - - Preview the selected Image - Förhandsgranska vald bild - - - - Send the selected Image live - - - - - Add the selected Image to the service - - Image @@ -872,11 +837,46 @@ demand and thus an internet connection is required. 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. + Radera den valda bilden. + + + + Preview the selected Image. + Förhandsgranska den valda bilden. + + + + Send the selected Image live. + + + + + Add the selected Image to the service. + + ImagePlugin.ExceptionDialog - + Select Attachment @@ -884,41 +884,41 @@ demand and thus an internet connection is required. 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. @@ -928,41 +928,6 @@ Vill du lägga till dom andra bilderna ändå? <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. - - - Load a new Media - - - - - Add a 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 - - Media @@ -981,41 +946,76 @@ Vill du lägga till dom andra bilderna ändå? container title Media + + + Load a new Media. + + + + + Add a 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 Välj media - + You must select a media file to delete. Du måste välja en mediafil för borttagning. - + Missing Media File - + The file %s no longer exists. - + Filen %s finns inte längre. - + 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. - + Videos (%s);;Audio (%s);;%s (*) @@ -1044,28 +1044,17 @@ Vill du lägga till dom andra bilderna ändå? OpenLP.AboutForm - - OpenLP <version><revision> - Open Source Lyrics Projection - -OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if OpenOffice.org, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. - -Find out more about OpenLP: http://openlp.org/ - -OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider contributing by using the button below. - - - - + Credits Lista över medverkande - + License Licens - + Contribute Bidra @@ -1075,17 +1064,17 @@ OpenLP is written and maintained by volunteers. If you would like to see more fr - + 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. - + Project Lead %s @@ -1150,12 +1139,20 @@ Final Credit - - Copyright © 2004-2011 Raoul Snyman -Portions copyright © 2004-2011 Tim Bentley, Jonathan Corwin, Michael Gorven, Scott Guerrieri, -Meinert Jordan, Andreas Preikschat, Christian Richter, Philip -Ridout, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Carsten -Tinggaard, Frode Woldsund + + 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 contributing by using the button below. + + + + + Copyright © 2004-2011 %s +Portions copyright © 2004-2011 %s @@ -1250,70 +1247,70 @@ Tinggaard, Frode Woldsund OpenLP.DisplayTagDialog - + Edit Selection - - Update - - - - + Description - + Tag - + Start tag - + End tag - + Default - + Tag Id - + Start HTML - + End HTML + + + Save + + OpenLP.DisplayTagTab - + Update Error - + Tag "n" already defined. - + Tag %s already defined. @@ -1352,7 +1349,7 @@ Tinggaard, Frode Woldsund - + Description characters to enter : %s @@ -1394,7 +1391,7 @@ Version: %s - + *OpenLP Bug Report* Version: %s @@ -1477,77 +1474,72 @@ Version: %s - - This wizard will help you to configure OpenLP for initial use. Click the next button below to start the process of selection your initial options. - - - - + Activate required Plugins - + Select the Plugins you wish to use. - + Songs - + Custom Text - + Bible Bibel - + Images Bilder - + Presentations - + Media (Audio and Video) - + Allow remote access - + Monitor Song Usage - + Allow Alerts - + No Internet Connection - + Unable to detect an Internet connection. - + 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. To re-run the First Time Wizard and import this sample data at a later stage, press the cancel button now, check your Internet connection, and restart OpenLP. @@ -1556,190 +1548,195 @@ To cancel the First Time Wizard completely, press the finish button now. - + Sample Songs - + Select and download public domain songs. - + Sample Bibles - + Select and download free Bibles. - + Sample Themes - + Select and download sample themes. - + Default Settings - + Set up default settings to be used by OpenLP. - + Setting Up And Importing - + Please wait while OpenLP is set up and your data is imported. - + 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.GeneralTab - + General Allmänt - + Monitors Skärmar - + Select monitor for output display: Välj skärm för utsignal: - + 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 automatiskt den senaste planeringen - + Show the splash screen Visa startbilden - + Application Settings Programinställningar - + Prompt to save before starting a new service - + Automatically preview next item in service Automatiskt förhandsgranska nästa post i planeringen - + Slide loop delay: - + sec sekunder - + CCLI Details CCLI-detaljer - + SongSelect username: SongSelect användarnamn: - + SongSelect password: SongSelect lösenord: - + Display Position - + X X - + Y Y - + Height Höjd - + Width Bredd - + Override display position - + Check for updates to OpenLP - + Unblank display when adding new live item @@ -1760,7 +1757,7 @@ To cancel the First Time Wizard completely, press the finish button now. OpenLP.MainDisplay - + OpenLP Display @@ -1768,282 +1765,282 @@ To cancel the First Time Wizard completely, press the finish button now. OpenLP.MainWindow - + &File &Fil - + &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 Planeringshanterare - + Theme Manager Temahanterare - + &New &Ny - + &Open &Öppna - + Open an existing service. Öppna en befintlig planering. - + &Save &Spara - + Save the current service to disk. Spara den aktuella planeringen till disk. - + Save &As... S&para som... - + Save Service As Spara planering som - + Save the current service under a new name. Spara den aktuella planeringen under ett nytt namn. - + E&xit &Avsluta - + 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 synligheten för mediahanteraren. - + &Theme Manager &Temahanterare - + Toggle Theme Manager Växla temahanteraren - + Toggle the visibility of the theme manager. Växla synligheten för temahanteraren. - + &Service Manager &Planeringshanterare - + Toggle Service Manager Växla planeringshanterare - + Toggle the visibility of the service manager. Växla synligheten för planeringshanteraren. - + &Preview Panel &Förhandsgranskningpanel - + Toggle Preview Panel Växla förhandsgranskningspanel - + Toggle the visibility of the preview panel. Växla synligheten för förhandsgranskningspanelen. - + &Live Panel - + Toggle Live Panel - + Toggle the visibility of the live panel. - + &Plugin List &Pluginlista - + List the Plugins Lista pluginen - + &User Guide &Användarguide - + &About &Om - + More information about OpenLP Mer information om OpenLP - + &Online Help &Hjälp online - + &Web Site &Webbsida - + 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. - + &Setup - + Set the view mode to Setup. - + &Live &Live - + Set the view mode to Live. @@ -2060,17 +2057,17 @@ You can download the latest version from http://openlp.org/. OpenLP-versionen uppdaterad - + OpenLP Main Display Blanked OpenLPs huvuddisplay rensad - + The Main Display has been blanked out Huvuddisplayen har rensats - + Default Theme: %s Standardtema: %s @@ -2081,45 +2078,60 @@ You can download the latest version from http://openlp.org/. Svenska - + Configure &Shortcuts... - + Close OpenLP - + Are you sure you want to close OpenLP? - + Print the current Service Order. - + Open &Data Folder... - + Open the folder where songs, bibles and other data resides. - + &Configure Display Tags - + &Autodetect + + + Update Theme Images + + + + + Update the preview images for all themes. + + + + + F1 + + OpenLP.MediaManagerItem @@ -2129,46 +2141,56 @@ You can download the latest version from http://openlp.org/. Inget objekt valt - + &Add to selected Service Item &Lägg till vald planeringsobjekt - + You must select one or more items to preview. Du måste välja ett eller flera objekt att förhandsgranska. - + You must select one or more items to send live. - + You must select one or more items. Du måste välja ett eller flera objekt. - + You must select an existing service item to add to. Du måste välja en befintligt planeringsobjekt att lägga till till. - + Invalid Service Item Felaktigt planeringsobjekt - + You must select a %s service item. Du måste välja ett %s planeringsobjekt. - + Duplicate file name %s. Filename already exists in list + + + You must select one or more items to add. + + + + + No Search Results + + OpenLP.PluginForm @@ -2290,19 +2312,19 @@ Filename already exists in list - Add page break before each text item. + Add page break before each text item OpenLP.ScreenList - + Screen - + primary @@ -2318,223 +2340,208 @@ Filename already exists in list OpenLP.ServiceManager - - Load an existing service - Ladda en planering - - - - Save this service - Spara denna planering - - - - Select a theme for the service - Välj ett tema för planeringen - - - + Move to &top Flytta högst &upp - + Move item to the top of the service. - + Move &up Flytta &upp - + Move item up one position in the service. - + Move &down Flytta &ner - + Move item down one position in the service. - + Move to &bottom Flytta längst &ner - + Move item to the end of the service. - + &Delete From Service &Ta bort från planeringen - + Delete the selected item from the service. - + &Add New Item - + &Add to Selected Item - + &Edit Item &Redigera objekt - + &Reorder Item - + &Notes &Anteckningar - + &Change Item Theme &Byt objektets tema - + File is not a valid service. The content encoding is not UTF-8. - + File is not a valid service. - + Missing Display Handler - + Your item cannot be displayed as there is no handler to display it - + Your item cannot be displayed as the plugin required to display it is missing or inactive - + &Expand all - + Expand all the service items. - + &Collapse all - + Collapse all the service items. - + Open File - + OpenLP Service Files (*.osz) - + Moves the selection down the window. - + Move up - + Moves the selection up the window. - + Go Live - + Send the selected item to Live. - + Modified Service - + &Start Time - + Show &Preview - + Show &Live - + The current service has been modified. Would you like to save this service? - + File could not be opened because it is corrupt. - + Empty File - + This service file does not contain any data. - + Corrupt File @@ -2554,15 +2561,30 @@ The content encoding is not UTF-8. - + Untitled Service - + This file is either corrupt or not an OpenLP 2.0 service file. + + + Load an existing service. + + + + + Save this service. + + + + + Select a theme for the service. + + OpenLP.ServiceNoteForm @@ -2651,100 +2673,105 @@ The content encoding is not UTF-8. OpenLP.SlideController - + Move to previous Flytta till föregående - + Move to next Flytta till nästa - + Hide - + Move to live Flytta till live - + Start continuous loop Börja oändlig loop - + Stop continuous loop Stoppa upprepad loop - + Delay between slides in seconds Fördröjning mellan bilder, i sekunder - + Start playing media Börja spela media - + Go To - + Edit and reload song preview - + Blank Screen - + Blank to Theme - + Show Desktop - + Previous Slide - + Next Slide - + Previous Service - + Next Service - + Escape Item - + Start/Stop continuous loop + + + Add to Service + + OpenLP.SpellTextEdit @@ -2913,68 +2940,68 @@ The content encoding is not UTF-8. - + %s (default) - + You must select a theme to edit. - + You are unable to delete the default theme. Du kan inte ta bort standardtemat. - + You have not selected a theme. Du har inte valt ett tema. - + Save Theme - (%s) Spara tema - (%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 Välj tema importfil - + File is not a valid theme. The content encoding is not UTF-8. - + File is not a valid theme. Filen är inte ett giltigt tema. - + Theme %s is used in the %s plugin. @@ -2994,47 +3021,47 @@ The content encoding is not UTF-8. - + 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) @@ -3458,7 +3485,7 @@ The content encoding is not UTF-8. - + &Vertical Align: @@ -3666,7 +3693,7 @@ The content encoding is not UTF-8. - + Starting import... @@ -3815,11 +3842,6 @@ The content encoding is not UTF-8. View - - - View Model - - Duplicate Error @@ -3840,11 +3862,16 @@ The content encoding is not UTF-8. XML syntax error + + + View Mode + + OpenLP.displayTagDialog - + Configure Display Tags @@ -3856,31 +3883,6 @@ The content encoding is not UTF-8. <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. - - - Load a new Presentation - - - - - Delete the selected Presentation - - - - - Preview the selected Presentation - - - - - Send the selected Presentation live - - - - - Add the selected Presentation to the service - - Presentation @@ -3899,56 +3901,81 @@ The content encoding is not UTF-8. container title Presentationer + + + 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) Välj presentation(er) - + Automatic Automatisk - + Present using: Presentera genom: - + File Exists - + A presentation with that filename already exists. En presentation med det namnet finns redan. - + This type of presentation is not supported. - + Presentations (%s) - + Missing Presentation - + The Presentation %s no longer exists. - + The Presentation %s is incomplete, please reload. @@ -4000,20 +4027,30 @@ The content encoding is not UTF-8. RemotePlugin.RemoteTab - + Serve on IP address: - + Port number: - + Server Settings + + + Remote URL: + + + + + Stage view URL: + + SongUsagePlugin @@ -4196,36 +4233,6 @@ has been successfully created. Reindexing songs... - - - 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 - - Song @@ -4337,6 +4344,36 @@ The encoding is responsible for the correct character representation. 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. + + SongsPlugin.AuthorsForm @@ -4570,7 +4607,7 @@ The encoding is responsible for the correct character representation. - + You need to type some text in to the verse. @@ -4578,20 +4615,35 @@ The encoding is responsible for the correct character representation. SongsPlugin.EditVerseForm - + Edit Verse Redigera vers - + &Verse type: - + &Insert + + + &Split + + + + + Split a slide into two only if it does not fit on the screen as one slide. + + + + + Split a slide into two by inserting a verse splitter. + + SongsPlugin.ExportWizardForm @@ -4625,11 +4677,6 @@ The encoding is responsible for the correct character representation. Select Directory - - - Select the directory you want the songs to be saved. - - Directory: @@ -4675,6 +4722,11 @@ The encoding is responsible for the correct character representation. Select Destination Folder + + + Select the directory where you want the songs to be saved. + + SongsPlugin.ImportWizardForm @@ -4787,43 +4839,43 @@ The encoding is responsible for the correct character representation. SongsPlugin.MediaItem - - Maintain the lists of authors, topics and books - Hantera listorna över författare, ämnen och böcker - - - + Titles Titlar - + Lyrics Sångtexter - + Delete Song(s)? - + CCLI License: - + Entire Song - + Are you sure you want to delete the %n selected song(s)? + + + Maintain the lists of authors, topics and books. + + SongsPlugin.OpenLP1SongImport diff --git a/resources/i18n/zh_CN.ts b/resources/i18n/zh_CN.ts index edb536d28..33308e563 100644 --- a/resources/i18n/zh_CN.ts +++ b/resources/i18n/zh_CN.ts @@ -182,22 +182,22 @@ Do you want to continue anyway? BiblePlugin.HTTPBible - + 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. @@ -205,12 +205,12 @@ Do you want to continue anyway? BiblePlugin.MediaItem - + Bible not fully loaded. - + You cannot combine single and dual Bible verse search results. Do you want to delete your search results and start a new search? @@ -222,46 +222,6 @@ Do you want to continue anyway? &Bible - - - <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display bible verses from different sources during the service. - - - - - 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 - - Bible @@ -281,46 +241,86 @@ Do you want to continue anyway? - + 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. + + 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. - + Your scripture reference is either not supported by OpenLP or is invalid. Please make sure your reference conforms to one of the following patterns: Book Chapter @@ -332,7 +332,7 @@ Book Chapter:Verse-Chapter:Verse - + No Bibles Available @@ -513,17 +513,6 @@ Changes do not affect verses already in the service. CSV File - - - Starting Registering bible... - - - - - Registered bible. Please note, that verses will be downloaded on -demand and thus an internet connection is required. - - Bibleserver @@ -564,74 +553,75 @@ demand and thus an internet connection is required. 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.MediaItem - + Quick - + Find: - - Results: - - - - + Book: - + Chapter: - + Verse: - + From: - + To: - + Text Search - - Clear - - - - - Keep - - - - + Second: - + Scripture Reference + + + Toggle to keep or clear the previous results. + + BiblesPlugin.Opensong @@ -705,12 +695,12 @@ demand and thus an internet connection is required. - + Split Slide - + Split a slide into two by inserting a slide splitter. @@ -725,12 +715,12 @@ demand and thus an internet connection is required. - + You need to type in a title. - + You need to add at least one slide @@ -739,49 +729,19 @@ demand and thus an internet connection is required. Ed&it All + + + Split a slide into two only if it does not fit on the screen as one slide. + + + + + Insert Slide + + CustomsPlugin - - - Import a Custom - - - - - Load a new Custom - - - - - Add a new Custom - - - - - Edit the selected Custom - - - - - Delete the selected Custom - - - - - Preview the selected Custom - - - - - Send the selected Custom live - - - - - Add the selected Custom to the service - - Custom @@ -800,11 +760,51 @@ demand and thus an internet connection is required. container title + + + Load a new Custom. + + + + + Import a Custom. + + + + + Add a new Custom. + + + + + Edit the selected Custom. + + + + + Delete the selected Custom. + + + + + Preview the selected Custom. + + + + + Send the selected Custom live. + + + + + Add the selected Custom to the service. + + GeneralTab - + General @@ -816,41 +816,6 @@ demand and thus an internet connection is required. <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. - - - 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 - - Image @@ -869,11 +834,46 @@ demand and thus an internet connection is required. 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 @@ -881,38 +881,38 @@ demand and thus an internet connection is required. 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. @@ -924,41 +924,6 @@ Do you want to add the other images anyway? <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. - - - Load a new Media - - - - - Add a 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 - - Media @@ -977,41 +942,76 @@ Do you want to add the other images anyway? container title + + + Load a new Media. + + + + + Add a 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 (*) @@ -1040,28 +1040,17 @@ Do you want to add the other images anyway? OpenLP.AboutForm - - OpenLP <version><revision> - Open Source Lyrics Projection - -OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if OpenOffice.org, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. - -Find out more about OpenLP: http://openlp.org/ - -OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider contributing by using the button below. - - - - + Credits - + License - + Contribute @@ -1071,17 +1060,17 @@ OpenLP is written and maintained by volunteers. If you would like to see more fr - + 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. - + Project Lead %s @@ -1146,12 +1135,20 @@ Final Credit - - Copyright © 2004-2011 Raoul Snyman -Portions copyright © 2004-2011 Tim Bentley, Jonathan Corwin, Michael Gorven, Scott Guerrieri, -Meinert Jordan, Andreas Preikschat, Christian Richter, Philip -Ridout, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Carsten -Tinggaard, Frode Woldsund + + 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 contributing by using the button below. + + + + + Copyright © 2004-2011 %s +Portions copyright © 2004-2011 %s @@ -1246,70 +1243,70 @@ Tinggaard, Frode Woldsund OpenLP.DisplayTagDialog - + Edit Selection - - Update - - - - + Description - + Tag - + Start tag - + End tag - + Default - + Tag Id - + Start HTML - + End HTML + + + Save + + OpenLP.DisplayTagTab - + Update Error - + Tag "n" already defined. - + Tag %s already defined. @@ -1348,7 +1345,7 @@ Tinggaard, Frode Woldsund - + Description characters to enter : %s @@ -1390,7 +1387,7 @@ Version: %s - + *OpenLP Bug Report* Version: %s @@ -1473,77 +1470,72 @@ Version: %s - - This wizard will help you to configure OpenLP for initial use. Click the next button below to start the process of selection your initial options. - - - - + Activate required Plugins - + Select the Plugins you wish to use. - + Songs - + Custom Text - + Bible - + Images - + Presentations - + Media (Audio and Video) - + Allow remote access - + Monitor Song Usage - + Allow Alerts - + No Internet Connection - + Unable to detect an Internet connection. - + 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. To re-run the First Time Wizard and import this sample data at a later stage, press the cancel button now, check your Internet connection, and restart OpenLP. @@ -1552,190 +1544,195 @@ To cancel the First Time Wizard completely, press the finish button now. - + Sample Songs - + Select and download public domain songs. - + Sample Bibles - + Select and download free Bibles. - + Sample Themes - + Select and download sample themes. - + Default Settings - + Set up default settings to be used by OpenLP. - + Setting Up And Importing - + Please wait while OpenLP is set up and your data is imported. - + 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.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 - + Slide loop delay: - + sec - + CCLI Details - + SongSelect username: - + SongSelect password: - + Display Position - + X - + Y - + Height - + Width - + Override display position - + Check for updates to OpenLP - + Unblank display when adding new live item @@ -1756,7 +1753,7 @@ To cancel the First Time Wizard completely, press the finish button now. OpenLP.MainDisplay - + OpenLP Display @@ -1764,282 +1761,282 @@ To cancel the First Time Wizard completely, press the finish button now. 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. @@ -2056,17 +2053,17 @@ You can download the latest version from http://openlp.org/. - + OpenLP Main Display Blanked - + The Main Display has been blanked out - + Default Theme: %s @@ -2077,45 +2074,60 @@ You can download the latest version from http://openlp.org/. - + Configure &Shortcuts... - + Close OpenLP - + Are you sure you want to close OpenLP? - + Print the current Service Order. - + &Configure Display Tags - + Open &Data Folder... - + Open the folder where songs, bibles and other data resides. - + &Autodetect + + + Update Theme Images + + + + + Update the preview images for all themes. + + + + + F1 + + OpenLP.MediaManagerItem @@ -2125,46 +2137,56 @@ You can download the latest version from http://openlp.org/. - + &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. - + Duplicate file name %s. Filename already exists in list + + + You must select one or more items to add. + + + + + No Search Results + + OpenLP.PluginForm @@ -2286,19 +2308,19 @@ Filename already exists in list - Add page break before each text item. + Add page break before each text item OpenLP.ScreenList - + Screen - + primary @@ -2314,223 +2336,208 @@ Filename already exists in list OpenLP.ServiceManager - - Load an existing service - - - - - Save this service - - - - - Select a theme for the service - - - - + Move to &top - + Move item to the top of the service. - + Move &up - + Move item up one position in the service. - + Move &down - + Move item down one position in the service. - + Move to &bottom - + Move item to the end of the service. - + &Delete From Service - + Delete the selected item from the service. - + &Add New Item - + &Add to Selected Item - + &Edit Item - + &Reorder Item - + &Notes - + &Change Item Theme - + OpenLP Service Files (*.osz) - + File is not a valid service. The content encoding is not UTF-8. - + File is not a valid service. - + Missing Display Handler - + Your item cannot be displayed as there is no handler to display it - + Your item cannot be displayed as the plugin required to display it is missing or inactive - + &Expand all - + Expand all the service items. - + &Collapse all - + Collapse all the service items. - + Open File - + Moves the selection down the window. - + Move up - + Moves the selection up the window. - + Go Live - + Send the selected item to Live. - + &Start Time - + Show &Preview - + Show &Live - + Modified Service - + The current service has been modified. Would you like to save this service? - + File could not be opened because it is corrupt. - + Empty File - + This service file does not contain any data. - + Corrupt File @@ -2550,15 +2557,30 @@ The content encoding is not UTF-8. - + Untitled Service - + This file is either corrupt or not an OpenLP 2.0 service file. + + + Load an existing service. + + + + + Save this service. + + + + + Select a theme for the service. + + OpenLP.ServiceNoteForm @@ -2647,100 +2669,105 @@ The content encoding is not UTF-8. OpenLP.SlideController - + Move to previous - + Move to next - + Hide - + Move to live - + Edit and reload song preview - + Start continuous loop - + Stop continuous loop - + Delay between slides in seconds - + Start playing media - + Go To - + Blank Screen - + Blank to Theme - + Show Desktop - + Previous Slide - + Next Slide - + Previous Service - + Next Service - + Escape Item - + Start/Stop continuous loop + + + Add to Service + + OpenLP.SpellTextEdit @@ -2909,68 +2936,68 @@ The content encoding is not UTF-8. - + %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. The content encoding is not UTF-8. - + File is not a valid theme. @@ -2990,47 +3017,47 @@ The content encoding is not UTF-8. - + 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) @@ -3607,7 +3634,7 @@ The content encoding is not UTF-8. - + &Vertical Align: @@ -3662,7 +3689,7 @@ The content encoding is not UTF-8. - + Starting import... @@ -3811,11 +3838,6 @@ The content encoding is not UTF-8. View - - - View Model - - Duplicate Error @@ -3836,11 +3858,16 @@ The content encoding is not UTF-8. XML syntax error + + + View Mode + + OpenLP.displayTagDialog - + Configure Display Tags @@ -3852,31 +3879,6 @@ The content encoding is not UTF-8. <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. - - - Load a new Presentation - - - - - Delete the selected Presentation - - - - - Preview the selected Presentation - - - - - Send the selected Presentation live - - - - - Add the selected Presentation to the service - - Presentation @@ -3895,56 +3897,81 @@ The content encoding is not UTF-8. 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 no longer exists. - + The Presentation %s is incomplete, please reload. @@ -3996,20 +4023,30 @@ The content encoding is not UTF-8. RemotePlugin.RemoteTab - + Serve on IP address: - + Port number: - + Server Settings + + + Remote URL: + + + + + Stage view URL: + + SongUsagePlugin @@ -4192,36 +4229,6 @@ has been successfully created. Reindexing songs... - - - 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 - - Arabic (CP-1256) @@ -4333,6 +4340,36 @@ The encoding is responsible for the correct character representation. 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. + + SongsPlugin.AuthorsForm @@ -4566,7 +4603,7 @@ The encoding is responsible for the correct character representation. - + You need to type some text in to the verse. @@ -4574,20 +4611,35 @@ The encoding is responsible for the correct character representation. SongsPlugin.EditVerseForm - + Edit Verse - + &Verse type: - + &Insert + + + &Split + + + + + Split a slide into two only if it does not fit on the screen as one slide. + + + + + Split a slide into two by inserting a verse splitter. + + SongsPlugin.ExportWizardForm @@ -4626,11 +4678,6 @@ The encoding is responsible for the correct character representation. Select Directory - - - Select the directory you want the songs to be saved. - - Directory: @@ -4671,6 +4718,11 @@ The encoding is responsible for the correct character representation. Select Destination Folder + + + Select the directory where you want the songs to be saved. + + SongsPlugin.ImportWizardForm @@ -4783,42 +4835,42 @@ The encoding is responsible for the correct character representation. SongsPlugin.MediaItem - - Maintain the lists of authors, topics and books - - - - + Titles - + Lyrics - + Delete Song(s)? - + CCLI License: - + Entire Song - + Are you sure you want to delete the %n selected song(s)? + + + Maintain the lists of authors, topics and books. + + SongsPlugin.OpenLP1SongImport diff --git a/resources/images/openlp-2.qrc b/resources/images/openlp-2.qrc index a32d15940..ba865c8f2 100644 --- a/resources/images/openlp-2.qrc +++ b/resources/images/openlp-2.qrc @@ -113,6 +113,7 @@ clear_shortcut.png system_about.png system_help_contents.png + system_online_help.png system_mediamanager.png system_contribute.png system_servicemanager.png diff --git a/resources/images/system_online_help.png b/resources/images/system_online_help.png new file mode 100644 index 000000000..670c0716f Binary files /dev/null and b/resources/images/system_online_help.png differ diff --git a/resources/osx/expander.py b/resources/osx/expander.py index 4319f9178..b4911ff75 100755 --- a/resources/osx/expander.py +++ b/resources/osx/expander.py @@ -9,7 +9,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/resources/osx/get_version.py b/resources/osx/get_version.py index 30ebd7886..7be4678b8 100644 --- a/resources/osx/get_version.py +++ b/resources/osx/get_version.py @@ -1,9 +1,34 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- +# vim: autoindent shiftwidth=4 expandtab textwidth=80 tabstop=4 softtabstop=4 + +############################################################################### +# OpenLP - Open Source Lyrics Projection # +# --------------------------------------------------------------------------- # +# Copyright (c) 2008-2011 Raoul Snyman # +# Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # +# Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # +# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # +# --------------------------------------------------------------------------- # +# This program is free software; you can redistribute it and/or modify it # +# under the terms of the GNU General Public License as published by the Free # +# Software Foundation; version 2 of the License. # +# # +# This program is distributed in the hope that it will be useful, but WITHOUT # +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or # +# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for # +# more details. # +# # +# You should have received a copy of the GNU General Public License along # +# with this program; if not, write to the Free Software Foundation, Inc., 59 # +# Temple Place, Suite 330, Boston, MA 02111-1307 USA # +############################################################################### import sys import os from bzrlib.branch import Branch - + def get_version(path): b = Branch.open_containing(path)[0] b.lock_read() @@ -23,13 +48,13 @@ def get_version(path): finally: b.unlock() return result - + def get_path(): if len(sys.argv) > 1: return os.path.abspath(sys.argv[1]) else: return os.path.abspath('.') - + if __name__ == u'__main__': path = get_path() print get_version(path) diff --git a/resources/pyinstaller/hook-openlp.plugins.presentations.presentationplugin.py b/resources/pyinstaller/hook-openlp.plugins.presentations.presentationplugin.py index bf2f0ad07..2dfcb2fa9 100644 --- a/resources/pyinstaller/hook-openlp.plugins.presentations.presentationplugin.py +++ b/resources/pyinstaller/hook-openlp.plugins.presentations.presentationplugin.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/resources/pyinstaller/hook-openlp.py b/resources/pyinstaller/hook-openlp.py index e282f2cf0..f3414cd60 100644 --- a/resources/pyinstaller/hook-openlp.py +++ b/resources/pyinstaller/hook-openlp.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/scripts/generate_resources.sh b/scripts/generate_resources.sh index b363e58b6..cf6f8f2f8 100755 --- a/scripts/generate_resources.sh +++ b/scripts/generate_resources.sh @@ -6,9 +6,10 @@ # --------------------------------------------------------------------------- # # Copyright (c) 2008-2011 Raoul Snyman # # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # -# Gorven, Scott Guerrieri, Meinert Jordan, Armin Köhler, Andreas Preikschat, # -# Christian Richter, Philip Ridout, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Carsten Tinggaard, Frode Woldsund # +# Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # +# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/scripts/openlp-remoteclient.py b/scripts/openlp-remoteclient.py index f50a34380..57928919b 100644 --- a/scripts/openlp-remoteclient.py +++ b/scripts/openlp-remoteclient.py @@ -9,7 +9,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/scripts/resources.patch b/scripts/resources.patch index 8a1b6fefd..3697a705a 100644 --- a/scripts/resources.patch +++ b/scripts/resources.patch @@ -1,6 +1,6 @@ --- openlp/core/resources.py.old Mon Jun 21 23:16:19 2010 +++ openlp/core/resources.py Mon Jun 21 23:27:48 2010 -@@ -1,10 +1,32 @@ +@@ -1,10 +1,33 @@ # -*- coding: utf-8 -*- +# vim: autoindent shiftwidth=4 expandtab textwidth=80 tabstop=4 softtabstop=4 @@ -16,7 +16,8 @@ +# Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # +# Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # +# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -+# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # ++# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # ++# Woldsund # +# --------------------------------------------------------------------------- # +# This program is free software; you can redistribute it and/or modify it # +# under the terms of the GNU General Public License as published by the Free # diff --git a/scripts/translation_utils.py b/scripts/translation_utils.py index a12ee39d7..db1788aba 100755 --- a/scripts/translation_utils.py +++ b/scripts/translation_utils.py @@ -9,7 +9,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # @@ -289,16 +290,6 @@ def generate_binaries(): else: os.chdir(os.path.abspath(u'..')) run(u'lrelease openlp.pro') - os.chdir(os.path.abspath(u'scripts')) - src_path = os.path.join(os.path.abspath(u'..'), u'resources', u'i18n') - dest_path = os.path.join(os.path.abspath(u'..'), u'openlp', u'i18n') - if not os.path.exists(dest_path): - os.makedirs(dest_path) - src_list = os.listdir(src_path) - for file in src_list: - if re.search('.qm$', file): - copy(os.path.join(src_path, u'%s' % file), - os.path.join(dest_path, u'%s' % file)) print_quiet(u' Done.') diff --git a/scripts/windows-builder.py b/scripts/windows-builder.py index 750f14916..e99de670b 100644 --- a/scripts/windows-builder.py +++ b/scripts/windows-builder.py @@ -8,7 +8,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/setup.py b/setup.py index dfe907efd..6a64685be 100755 --- a/setup.py +++ b/setup.py @@ -9,7 +9,8 @@ # Portions copyright (c) 2008-2011 Tim Bentley, Jonathan Corwin, Michael # # Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, Armin Köhler, # # Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # +# Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode # +# Woldsund # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free #