diff --git a/openlp/core/lib/serviceitem.py b/openlp/core/lib/serviceitem.py
index 9f2d0ff37..2dd87f6f5 100644
--- a/openlp/core/lib/serviceitem.py
+++ b/openlp/core/lib/serviceitem.py
@@ -88,8 +88,8 @@ class ServiceItem(object):
self.audit = u''
self.items = []
self.iconic_representation = None
- self.raw_footer = None
- self.foot_text = None
+ self.raw_footer = []
+ self.foot_text = u''
self.theme = None
self.service_item_type = None
self._raw_frames = []
@@ -183,9 +183,8 @@ class ServiceItem(object):
else:
log.error(u'Invalid value renderer :%s' % self.service_item_type)
self.title = clean_tags(self.title)
- self.foot_text = None
- if self.raw_footer:
- self.foot_text = u'
'.join(self.raw_footer)
+ self.foot_text = \
+ u'
'.join([footer for footer in self.raw_footer if footer])
def add_from_image(self, path, title):
"""
diff --git a/openlp/core/ui/mainwindow.py b/openlp/core/ui/mainwindow.py
index d7d6a89f9..bd5e45193 100644
--- a/openlp/core/ui/mainwindow.py
+++ b/openlp/core/ui/mainwindow.py
@@ -206,7 +206,7 @@ class Ui_MainWindow(object):
mainWindow.actionList.add_action(self.ModeDefaultItem, u'View Mode')
self.ModeSetupItem = checkable_action(mainWindow, u'ModeLiveItem')
mainWindow.actionList.add_action(self.ModeSetupItem, u'View Mode')
- self.ModeLiveItem = checkable_action(mainWindow, u'ModeLiveItem')
+ self.ModeLiveItem = checkable_action(mainWindow, u'ModeLiveItem', True)
mainWindow.actionList.add_action(self.ModeLiveItem, u'View Mode')
self.ModeGroup = QtGui.QActionGroup(mainWindow)
self.ModeGroup.addAction(self.ModeDefaultItem)
@@ -215,6 +215,8 @@ class Ui_MainWindow(object):
self.ModeDefaultItem.setChecked(True)
self.ToolsAddToolItem = icon_action(mainWindow, u'ToolsAddToolItem',
u':/tools/tools_add.png')
+ # Hide the entry, as it does not have any functionality yet.
+ self.ToolsAddToolItem.setVisible(False)
mainWindow.actionList.add_action(self.ToolsAddToolItem, u'Tools')
self.ToolsOpenDataFolder = icon_action(mainWindow,
u'ToolsOpenDataFolder', u':/general/general_open.png')
@@ -225,19 +227,17 @@ class Ui_MainWindow(object):
u'Settings')
# i18n Language Items
self.AutoLanguageItem = checkable_action(mainWindow,
- u'AutoLanguageItem')
+ u'AutoLanguageItem', LanguageManager.auto_language)
mainWindow.actionList.add_action(self.AutoLanguageItem, u'Settings')
self.LanguageGroup = QtGui.QActionGroup(mainWindow)
self.LanguageGroup.setExclusive(True)
self.LanguageGroup.setObjectName(u'LanguageGroup')
- self.AutoLanguageItem.setChecked(LanguageManager.auto_language)
self.LanguageGroup.setDisabled(LanguageManager.auto_language)
qmList = LanguageManager.get_qm_list()
savedLanguage = LanguageManager.get_language()
for key in sorted(qmList.keys()):
- languageItem = checkable_action(mainWindow, key)
- if qmList[key] == savedLanguage:
- languageItem.setChecked(True)
+ languageItem = checkable_action(
+ mainWindow, key, qmList[key] == savedLanguage)
add_actions(self.LanguageGroup, [languageItem])
self.SettingsShortcutsItem = icon_action(mainWindow,
u'SettingsShortcutsItem',
diff --git a/openlp/plugins/bibles/forms/bibleimportform.py b/openlp/plugins/bibles/forms/bibleimportform.py
index 67996e158..f0d407f09 100644
--- a/openlp/plugins/bibles/forms/bibleimportform.py
+++ b/openlp/plugins/bibles/forms/bibleimportform.py
@@ -568,7 +568,7 @@ class BibleImportForm(OpenLPWizard):
"""
self.getFileName(WizardStrings.OpenTypeFile % UiStrings.OLPV1,
self.openlp1FileEdit, u'%s (*.bible)' %
- translate('BiblesPlugin.ImportWizardForm', 'openlp.org 1.x bible'))
+ translate('BiblesPlugin.ImportWizardForm', 'openlp.org 1.x Bible Files'))
def registerFields(self):
"""
diff --git a/openlp/plugins/bibles/lib/manager.py b/openlp/plugins/bibles/lib/manager.py
index 344d11584..dcbad3e63 100644
--- a/openlp/plugins/bibles/lib/manager.py
+++ b/openlp/plugins/bibles/lib/manager.py
@@ -250,7 +250,7 @@ class BibleManager(object):
if not bible:
Receiver.send_message(u'openlp_information_message', {
u'title': translate('BiblesPlugin.BibleManager',
- 'No Bibles available'),
+ 'No Bibles Available'),
u'message': translate('BiblesPlugin.BibleManager',
'There are no Bibles currently installed. Please use the '
'Import Wizard to install one or more Bibles.')
diff --git a/openlp/plugins/bibles/lib/mediaitem.py b/openlp/plugins/bibles/lib/mediaitem.py
index ab7897828..690564182 100644
--- a/openlp/plugins/bibles/lib/mediaitem.py
+++ b/openlp/plugins/bibles/lib/mediaitem.py
@@ -346,7 +346,7 @@ class BibleMediaItem(MediaManagerItem):
self.advancedSearchButton.setEnabled(False)
critical_error_message_box(
message=translate('BiblePlugin.MediaItem',
- 'Bible not fully loaded'))
+ 'Bible not fully loaded.'))
else:
self.advancedSearchButton.setEnabled(True)
self.adjustComboBox(1, self.chapter_count, self.advancedFromChapter)
@@ -539,8 +539,9 @@ class BibleMediaItem(MediaManagerItem):
self.displayResults(bible, second_bible)
elif critical_error_message_box(
message=translate('BiblePlugin.MediaItem',
- 'You cannot combine single and second bible verses. 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?'),
parent=self, question=True) == QtGui.QMessageBox.Yes:
self.listView.clear()
self.displayResults(bible, second_bible)
@@ -635,7 +636,6 @@ class BibleMediaItem(MediaManagerItem):
bible_text = u''
old_item = None
old_chapter = -1
- raw_footer = []
raw_slides = []
raw_title = []
for item in items:
@@ -656,13 +656,13 @@ class BibleMediaItem(MediaManagerItem):
second_text = self._decodeQtObject(bitem, 'second_text')
verse_text = self.formatVerse(old_chapter, chapter, verse)
footer = u'%s (%s %s %s)' % (book, version, copyright, permissions)
- if footer not in raw_footer:
- raw_footer.append(footer)
+ if footer not in service_item.raw_footer:
+ service_item.raw_footer.append(footer)
if second_bible:
footer = u'%s (%s %s %s)' % (book, second_version,
second_copyright, second_permissions)
- if footer not in raw_footer:
- raw_footer.append(footer)
+ if footer not in service_item.raw_footer:
+ service_item.raw_footer.append(footer)
bible_text = u'%s %s\n\n%s %s' % (verse_text, text,
verse_text, second_text)
raw_slides.append(bible_text.rstrip())
@@ -706,11 +706,6 @@ class BibleMediaItem(MediaManagerItem):
service_item.theme = self.settings.bible_theme
for slide in raw_slides:
service_item.add_from_text(slide[:30], slide)
- if service_item.raw_footer:
- for footer in raw_footer:
- service_item.raw_footer.append(footer)
- else:
- service_item.raw_footer = raw_footer
return True
def formatTitle(self, start_item, old_item):
diff --git a/openlp/plugins/songs/lib/mediaitem.py b/openlp/plugins/songs/lib/mediaitem.py
index d29e18c1d..37a404daa 100644
--- a/openlp/plugins/songs/lib/mediaitem.py
+++ b/openlp/plugins/songs/lib/mediaitem.py
@@ -330,7 +330,6 @@ class SongMediaItem(MediaManagerItem):
def generateSlideData(self, service_item, item=None, xmlVersion=False):
log.debug(u'generateSlideData (%s:%s)' % (service_item, item))
- raw_footer = []
item_id = self._getIdOfItemToGenerate(item, self.remoteSong)
service_item.add_capability(ItemCapabilities.AllowsEdit)
service_item.add_capability(ItemCapabilities.AllowsPreview)
@@ -392,16 +391,15 @@ class SongMediaItem(MediaManagerItem):
service_item.add_from_text(slide[:30], unicode(slide))
service_item.title = song.title
author_list = [unicode(author.display_name) for author in song.authors]
- raw_footer.append(song.title)
- raw_footer.append(u', '.join(author_list))
- raw_footer.append(song.copyright)
+ service_item.raw_footer.append(song.title)
+ service_item.raw_footer.append(u', '.join(author_list))
+ service_item.raw_footer.append(song.copyright)
if QtCore.QSettings().value(u'general/ccli number',
QtCore.QVariant(u'')).toString():
- raw_footer.append(unicode(
+ service_item.raw_footer.append(unicode(
translate('SongsPlugin.MediaItem', 'CCLI License: ') +
QtCore.QSettings().value(u'general/ccli number',
QtCore.QVariant(u'')).toString()))
- service_item.raw_footer = raw_footer
service_item.audit = [
song.title, author_list, song.copyright, unicode(song.ccli_number)
]
diff --git a/resources/i18n/af.ts b/resources/i18n/af.ts
index 1e72b6c1f..f9d3e7117 100644
--- a/resources/i18n/af.ts
+++ b/resources/i18n/af.ts
@@ -7,23 +7,22 @@
Daar is nie 'n parameter gegee om te vervang nie.
-Gaan steeds voort?
-
-
-
-
- Die attent teks bevat nie '<>' nie.
Gaan steeds voort?
-
+ Geen Parameter Gevind nie
+ Geen Plekhouer Gevind nie
+
+
+
+
@@ -48,7 +47,7 @@ Gaan steeds voort?
name singular
-
+ Waarskuwing
@@ -108,7 +107,7 @@ Gaan steeds voort?
-
+ &Parameter:
@@ -157,28 +156,28 @@ Gaan steeds voort?
-
+ Testament invoer... %s
-
+ Testament invoer... voltooi.
-
+ Boek invoer... %s
Importing verses from <book name>...
-
+ Vers invoer vanaf %s...
-
+ Vers invoer... voltooi.
@@ -186,34 +185,34 @@ Gaan steeds voort?
-
+ Aflaai Fout
-
+ Ontleed Fout
-
+ 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.
-
+ Daar was 'n probleem om die vers seleksie te onttrek. As hierdie probleem voortduur, oorweeg dit asseblief om 'n gogga te rapporteer.
BiblePlugin.MediaItem
-
-
+
+
-
-
+
+
@@ -232,37 +231,37 @@ Gaan steeds voort?
-
+ Voer 'n Bybel in
-
+ Voeg 'n nuwe Bybel by
-
+ Redigeer geselekteerde Bybel
-
+ Wis die geselekteerde Bybel uit
-
+ Sien voorskou van die geselekteerde Bybel
-
+ Stuur die geselekteerde Bybel regstreeks
-
+ Voeg die geselekteerde Bybel by die diens
@@ -290,7 +289,7 @@ Gaan steeds voort?
-
+ Geen passende boek kon in hierdie Bybel gevind word nie. Gaan na dat die naam van die boek korrek gespel is.
@@ -303,28 +302,24 @@ Gaan steeds voort?
-
+ Web Bybel kan nie gebruik word nie
-
+ Teks Soektog is nie beskikbaar met Web Bybels nie.
-
-
-
-
-
-
+ Daar is nie 'n soek sleutelwoord ingevoer nie.
+Vir 'n soektog wat alle sleutelwoorde bevat, skei die woorde deur middel van 'n spasie. Vir 'n soektog wat een van die sleutelwoorde bevat, skei die woorde deur middel van 'n komma.
-
+ Huidig is daar geen Bybels geïnstalleer nie. Gebruik asseblief die Invoer Gids om een of meer Bybels te installeer.
@@ -336,6 +331,18 @@ Book Chapter:Verse-Verse
Book Chapter:Verse-Verse,Verse-Verse
Book Chapter:Verse-Verse,Chapter:Verse-Verse
Book Chapter:Verse-Chapter:Verse
+ Die skrif-verwysing word óf nie deur OpenLP ondersteun nie óf is ongeldig. Maak asseblief seker die verwysing voldoen aan een van die volgende patrone:
+
+Boek Hoofstuk
+Boek Hoofstuk-Hoofstuk
+Boek Hoofstuk:Vers-Vers
+Boek Hoofstuk:Vers-Vers, Vers-Vers
+Boek Hoofstuk:Vers-Vers, Hoofstuk:Vers-Vers
+Boek Hoofstuk:Vers-Hoofstuk:Vers
+
+
+
+
@@ -411,7 +418,7 @@ Veranderinge affekteer nie verse wat reeds in die diens is nie.
-
+ Vertoon tweede Bybel se verse
@@ -539,57 +546,58 @@ Veranderinge affekteer nie verse wat reeds in die diens is nie.
-
+ Begin Bybel registrasie...
-
+ Geregistreerde bybel. Neem kennis daarvan dat verse op aanvraag
+afgelaai word en dus word 'n Internet konneksie benodig.
-
+ Toestemming:
-
-
-
-
-
-
+ KGW Lêer
-
+ Bybelbediener
-
+ Bybel lêer:
-
+ Testament lêer:
-
+ Boeke lêer:
-
+ Verse lêer:
+ Daar is nie 'n testament lêer gespesifiser nie. Gaan voort met die invoer?
+
+
+
+
@@ -653,12 +661,12 @@ demand and thus an internet connection is required.
-
+ Tweede:
-
+ Skrif Verwysing
@@ -667,7 +675,7 @@ demand and thus an internet connection is required.
Importing <book name> <chapter>...
-
+ Invoer %s %s...
@@ -675,13 +683,13 @@ demand and thus an internet connection is required.
-
+ Bepaal enkodering (dit mag 'n paar minuute neem)...
Importing <book name> <chapter>...
-
+ Invoer %s %s...
@@ -773,42 +781,42 @@ demand and thus an internet connection is required.
-
+ Voer 'n Persoonlike nutsprogram in
-
+ Laai 'n nuwe Aanpassing
-
+ Voeg 'n nuwe Aanpassing by
-
+ Redigeer die geselekteerde Aanpassing
-
+ Wis die geselekteerde Aanpassing uit
-
+ Sien voorskou van die geselekteerde Aanpassing
-
+ Stuur die geselekteerde Aanpassing regstreeks
-
+ Voeg die geselekteerde Aanpassing by die diens
@@ -820,13 +828,13 @@ demand and thus an internet connection is required.
name plural
-
+ Aanpassings
container title
- Aanpas
+ Aanpasing
@@ -839,37 +847,37 @@ demand and thus an internet connection is required.
-
+ Laai 'n nuwe Beeld
-
+ Voeg 'n nuwe Beeld by
-
+ Redigeer die geselekteerde Beeld
-
+ Wis die geselekteerde Beeld uit
-
+ Sien voorskou van die geselekteerde Beeld
-
+ Stuur die geselekteerde Beeld regstreeks
-
+ Voeg die geselekteerde Beeld by die diens
@@ -881,13 +889,13 @@ demand and thus an internet connection is required.
name plural
-
+ Beelde
container title
-
+ Beelde
@@ -895,7 +903,7 @@ demand and thus an internet connection is required.
-
+ Selekteer Aanhangsel
@@ -918,23 +926,24 @@ demand and thus an internet connection is required.
-
+ Vermisde Beeld(e)
-
+ Die volgende beeld(e) bestaan nie meer nie: %s
-
+ Die volgende beeld(e) bestaan nie meer nie: %s
+Voeg steeds die ander beelde by?
-
+ Daar was 'n probleem om die agtergrond te vervang. Die beeld lêer "%s" bestaan ine meer nie.
@@ -947,37 +956,37 @@ Do you want to add the other images anyway?
-
+ Laai nuwe Media
-
+ Voeg nuwe Media by
-
+ Redigeer die geselekteerde Media
-
+ Wis die geselekteerde Media uit
-
+ Sien voorskou van die geselekteerde Media
-
+ Stuur die geselekteerde Media regstreeks
-
+ Voeg die geselekteerde Media by die diens
@@ -1013,12 +1022,12 @@ Do you want to add the other images anyway?
-
+ Vermisde Media Lêer
-
+ Die lêer %s bestaan nie meer nie.
@@ -1028,12 +1037,12 @@ Do you want to add the other images anyway?
-
+ Daar was 'n probleem om die agtergrond te vervang. Die media lêer "%s" bestaan nie meer nie.
-
+ Videos (%s);;Audio (%s);;%s (*)
@@ -1041,12 +1050,12 @@ Do you want to add the other images anyway?
-
+ Media Vertoning
-
+ Gebruik Phonon om Video terug te speel
@@ -1077,17 +1086,17 @@ 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.
-
+
Krediete
-
+
Lisensie
-
+
Dra By
@@ -1097,38 +1106,21 @@ OpenLP is geskryf en word onderhou deur vrywilligers. As u graag wil sien dat me
bou %s
-
+
-
+
+Ridout, Maikel Stuivenberg, Martin Thompson, Jon Tibble, CarstennTinggaard, Frode Woldsund
+
+
+
+
+
+
+
+
+
+
@@ -1307,32 +1180,32 @@ This General Public License does not permit incorporating your program into prop
-
+ Dubbel-kliek om die items regstreeks te stuur
-
+ Sit die nuwe diens items uit wanneer dit geskep word
-
+ Stel die program in staat om die uitgang bevestiging te vertoon
-
+ Muis Wyser
-
+ Steek die muis wyser weg wanneer dit oor die vertoon venster beweeg
-
+ Verstek Beeld
@@ -1342,12 +1215,12 @@ This General Public License does not permit incorporating your program into prop
-
+ Beeld lêer:
-
+ Maak Lêer oop
@@ -1355,52 +1228,52 @@ This General Public License does not permit incorporating your program into prop
-
+ Redigeer Seleksie
-
+ Opdatteer
-
+ Beskrywing
-
+ Etiket
-
+ Begin etiket
-
+ Eind-etiket
-
+ Verstek
-
+ Etiket id
-
+ Begin Html
-
+ Eind-Html
@@ -1408,17 +1281,17 @@ This General Public License does not permit incorporating your program into prop
-
+ Opdateer Fout
-
+ Etiket "n" alreeds gedefinieër.
-
+ Etiket %s alreeds gedefinieër.
@@ -1436,18 +1309,19 @@ This General Public License does not permit incorporating your program into prop
-
+ Stuur E-pos
-
+ Stoor na Lêer
-
+ Voer asseblief 'n beskrywing in van waarmee jy besig was toe de probleem ontstaan het
+(Mimimum 20 karrakters)
@@ -1537,127 +1411,117 @@ Version: %s
OpenLP.GeneralTab
-
+
Algemeen
-
+
Monitors
-
+
Selekteer monitor vir uitgaande vertoning:
-
+
Vertoon as dit 'n enkel skerm is
-
+
Applikasie Aanskakel
-
+
Vertoon leë skerm waarskuwing
-
+
Maak vanself die laaste diens oop
-
+
Wys die spatsel skerm
-
+
Program Verstellings
-
+
Vra om te stoor voordat 'n nuwe diens begin word
-
+
Wys voorskou van volgende item in diens automaties
-
+
Skyfie herhaal vertraging:
-
+
sek
-
+
CCLI Inligting
-
+
SongSelect gebruikersnaam:
-
+
SongSelect wagwoord:
-
+
Vertoon Posisie
-
+
X
-
+
Y
-
+
Hoogte
-
+
Wydte
-
+
Oorskryf vertoon posisie
-
-
-
-
-
-
-
-
-
-
-
+
@@ -2045,17 +1909,17 @@ Die nuutste weergawe kan afgelaai word vanaf http://openlp.org/.
OpenLP Weergawe is Opdateer
-
+
OpenLP Hoof Vertoning Blanko
-
+
Die Hoof Skerm is afgeskakel
-
+
Verstek Tema: %s
@@ -2071,12 +1935,12 @@ Die nuutste weergawe kan afgelaai word vanaf http://openlp.org/.
-
+
-
+
@@ -2268,6 +2132,19 @@ Die nuutste weergawe kan afgelaai word vanaf http://openlp.org/.
+
+ OpenLP.ScreenList
+
+
+
+
+
+
+
+
+
+
+
OpenLP.ServiceItemEditForm
@@ -2423,7 +2300,7 @@ Die inhoud enkodering is nie UTF-8 nie.
-
+ Maak Lêer oop
@@ -4323,7 +4200,7 @@ The encoding is responsible for the correct character representation.
-
+
@@ -4408,24 +4285,24 @@ The encoding is responsible for the correct character representation.
-
-
-
-
-
-
-
+
+
-
-
+
+
+
+
+
+
+
diff --git a/resources/i18n/de.ts b/resources/i18n/de.ts
index ff91b3c5b..e3a09b405 100644
--- a/resources/i18n/de.ts
+++ b/resources/i18n/de.ts
@@ -7,13 +7,6 @@
Sie haben keinen Parameter angegeben, der ersetzt werden könnte.
-Möchten Sie trotzdem fortfahren?
-
-
-
-
- Der Hinweistext enthält kein '<>'.
Möchten Sie trotzdem fortfahren?
@@ -26,6 +19,12 @@ Möchten Sie trotzdem fortfahren?
+
+
+
+
+
AlertsPlugin
@@ -207,14 +206,14 @@ Möchten Sie trotzdem fortfahren?
BiblePlugin.MediaItem
-
-
- Verse aus Vergleichsübersetzungen können nicht mit Versen einzelner Übersetzungen kombiniert werden. Möchten Sie die Suchergebnisse löschen und eine neue Suche starten?
+
+
+
-
-
- Die Bibelübersetzung ist unvollständig.
+
+
+
@@ -317,11 +316,6 @@ You can separate different keywords by a space to search for all of your keyword
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.
-
-
-
- Keine Übersetzung verfügbar
-
@@ -339,6 +333,11 @@ Book Chapter:Verse-Verse,Chapter:Verse-Verse
Book Chapter:Verse-Chapter:Verse
+
+
+
+
+
BiblesPlugin.BiblesTab
@@ -560,11 +559,6 @@ Daher ist eine Verbindung zum Internet erforderlich.
CSV Datei
-
-
-
- openlp.org 1.x Bibel
-
@@ -595,6 +589,11 @@ Daher ist eine Verbindung zum Internet erforderlich.
+
+
+
+
+
BiblesPlugin.MediaItem
@@ -1081,17 +1080,17 @@ Erkunden Sie OpenLP: http://openlp.org/
OpenLP wird von freiwiligen 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.
-
+
Danksagungen
-
+
Lizenz
-
+
Mitmachen
@@ -1101,38 +1100,21 @@ OpenLP wird von freiwiligen Helfern programmiert und gewartet. Wenn Sie sich meh
build %s
-
+
- Projektleitung
- Raoul »superfly« Snyman
-
-Entwickler
- Tim »TRB143« Bentley
- Jonathan »gushie« Corwin
- Michael »cocooncrash« Gorven
- Scott »sguerrieri« Guerrieri
- Raoul »superfly« Snyman
- Martin »mijiti« Thompson
- Jon »Meths« Tibble
-
-Mitwirkende
- Meinert »m2j« Jordan
- Andreas »googol« Preikschat
- Christian »crichter« Richter
- Philip »Phill« Ridout
- Maikel Stuivenberg
- Carsten »catini« Tingaard
- Frode »frodus« Woldsund
-
-Tester
- Philip »Phill« Ridout
- Wesley »wrst« Stout (lead)
-
-Packetierer
- Thomas »tabthorpe« Abthorpe (FreeBSD)
- Tim »TRB143« Bentley (Fedora)
- Michael »cocooncrash« Gorven (Ubuntu)
- Matthias »matthub« Hub (Mac OS X)
- Raoul »superfly« Snyman (Windows, Ubuntu)
-
-Erstellt mit
- Python: http://www.python.org/
- Qt4: http://qt.nokia.com/
- PyQt4: http://www.riverbankcomputing.co.uk/software/pyqt/intro
- Oxygen Icons: http://oxygen-icons.org/
-
-Schlusswort
- »Denn Gott hat der Welt seine Liebe
- dadurch gezeigt, dass er seinen einzigen
- Sohn für sie hergab, damit jeder, der an
- ihn glaubt, das ewige Leben hat und nicht
- verloren geht.« -- Johannes 3,16
-
- Als Letztes, aber nicht zuletzt, geht unser
- Dank an Gott, unseren Vater, dafür, dass er
- uns seinen Sohn gesandt hat, der am Kreuz
- für uns gestorben ist und uns so von der
- Sünde befreite.
- Wir veröffentlichen dieses Programm frei,
- weil er uns befreit hat.
+
-
+
-
+Ridout, Maikel Stuivenberg, Martin Thompson, Jon Tibble, CarstennTinggaard, Frode Woldsund
+
+
+
+
+
+
+
+
+
+
+
@@ -1594,127 +1406,117 @@ Version: %s
OpenLP.GeneralTab
-
+
Allgemein
-
+
Bildschirme
-
+
Projektionsbildschirm:
-
+
Anzeige bei nur einem Bildschirm
-
+
Programmstart
-
+
Warnung wenn Projektion deaktiviert wurde
-
+
Zuletzt benutzten Ablauf beim Start laden
-
+
Zeige den Startbildschirm
-
+
Anwendungseinstellungen
-
+
Geänderte Abläufe nicht ungefragt ersetzen
-
+
Vorschau des nächsten Ablaufelements
-
+
Schleifenverzögerung:
-
+
sek
-
+
CCLI-Details
-
+
SongSelect Benutzername:
-
+
SongSelect Passwort:
-
+
Anzeigeposition
-
+
X
-
+
Y
-
+
Höhe
-
+
Breite
-
+
Anzeigeposition überschreiben
-
-
- Bildschirm
-
-
-
-
- Hauptbildschirm
-
-
-
+
Prüfe nach Aktualisierungen
@@ -2093,17 +1895,17 @@ Version: %s
Neue OpenLP Version verfügbar
-
+
Hauptbildschirm abgedunkelt
-
+
Die Projektion ist momentan nicht aktiv.
-
+
Standarddesign: %s
@@ -2128,12 +1930,12 @@ Sie können die letzte Version auf http://openlp.org abrufen.
&Tastenkürzel einrichten...
-
+
OpenLP beenden
-
+
Sind Sie sicher, dass OpenLP beendet werden soll?
@@ -2325,6 +2127,19 @@ Sie können die letzte Version auf http://openlp.org abrufen.
Ablauf
+
+ OpenLP.ScreenList
+
+
+
+ Bildschirm
+
+
+
+
+ Hauptbildschirm
+
+
OpenLP.ServiceItemEditForm
@@ -4381,7 +4196,7 @@ Usually you are fine with the preselected choice.
Das Lied benötigt mindestens einen Author.
-
+
Das Lied benötigt mindestens einen Vers.
@@ -4466,26 +4281,26 @@ Usually you are fine with the preselected choice.
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
SongsPlugin.ImportWizardForm
diff --git a/resources/i18n/en.ts b/resources/i18n/en.ts
index 22420089a..0dcfa3e8b 100644
--- a/resources/i18n/en.ts
+++ b/resources/i18n/en.ts
@@ -8,12 +8,6 @@
Do you want to continue anyway?
-
-
-
-
-
@@ -24,6 +18,12 @@ Do want to continue anyway?
+
+
+
+
+
AlertsPlugin
@@ -205,13 +205,13 @@ Do want to continue anyway?
BiblePlugin.MediaItem
-
-
+
+
-
-
+
+
@@ -314,11 +314,6 @@ Do want to continue anyway?
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.
-
-
-
-
-
@@ -336,6 +331,11 @@ Book Chapter:Verse-Verse,Chapter:Verse-Verse
Book Chapter:Verse-Chapter:Verse
+
+
+
+
+
BiblesPlugin.BiblesTab
@@ -538,11 +538,6 @@ Changes do not affect verses already in the service.
-
-
-
-
-
@@ -589,6 +584,11 @@ demand and thus an internet connection is required.
+
+
+
+
+
BiblesPlugin.MediaItem
@@ -1068,17 +1068,17 @@ OpenLP is written and maintained by volunteers. If you would like to see more fr
-
+
-
+
-
+
@@ -1088,38 +1088,21 @@ OpenLP is written and maintained by volunteers. If you would like to see more fr
-
+
-
+
+Ridout, Maikel Stuivenberg, Martin Thompson, Jon Tibble, CarstennTinggaard, Frode Woldsund
+
+
+
+
+
+
+
+
+
+
@@ -1528,127 +1392,117 @@ Version: %s
OpenLP.GeneralTab
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
-
-
-
-
-
-
-
-
-
+
@@ -2034,17 +1888,17 @@ You can download the latest version from http://openlp.org/.
-
+
-
+
-
+
@@ -2060,12 +1914,12 @@ You can download the latest version from http://openlp.org/.
-
+
-
+
@@ -2257,6 +2111,19 @@ You can download the latest version from http://openlp.org/.
+
+ OpenLP.ScreenList
+
+
+
+
+
+
+
+
+
+
+
OpenLP.ServiceItemEditForm
@@ -4310,7 +4177,7 @@ The encoding is responsible for the correct character representation.
-
+
@@ -4400,19 +4267,19 @@ The encoding is responsible for the correct character representation.
-
-
-
-
-
+
+
+
+
+
-
+
diff --git a/resources/i18n/en_GB.ts b/resources/i18n/en_GB.ts
index 23c05c546..9f8f7f560 100644
--- a/resources/i18n/en_GB.ts
+++ b/resources/i18n/en_GB.ts
@@ -8,12 +8,6 @@
Do you want to continue anyway?
-
-
-
-
-
@@ -24,6 +18,12 @@ Do want to continue anyway?
+
+
+
+
+
AlertsPlugin
@@ -205,13 +205,13 @@ Do want to continue anyway?
BiblePlugin.MediaItem
-
-
+
+
-
-
+
+
@@ -314,11 +314,6 @@ Do want to continue anyway?
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.
-
-
-
-
-
@@ -336,6 +331,11 @@ Book Chapter:Verse-Verse,Chapter:Verse-Verse
Book Chapter:Verse-Chapter:Verse
+
+
+
+
+
BiblesPlugin.BiblesTab
@@ -555,11 +555,6 @@ demand and thus an internet connection is required.
-
-
-
-
-
@@ -590,6 +585,11 @@ demand and thus an internet connection is required.
+
+
+
+
+
BiblesPlugin.MediaItem
@@ -1075,17 +1075,17 @@ 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
-
+
Licence
-
+
Contribute
@@ -1095,38 +1095,21 @@ OpenLP is written and maintained by volunteers. If you would like to see more fr
build %s
-
+
-
+
+Ridout, Maikel Stuivenberg, Martin Thompson, Jon Tibble, CarstennTinggaard, Frode Woldsund
+
+
+
+
+
+
+
+
+
+
@@ -1535,127 +1399,117 @@ Version: %s
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
-
-
-
-
-
-
-
-
-
-
-
+
@@ -2042,17 +1896,17 @@ You can download the latest version from http://openlp.org/.
OpenLP Version Updated
-
+
OpenLP Main Display Blanked
-
+
The Main Display has been blanked out
-
+
Default Theme: %s
@@ -2068,12 +1922,12 @@ You can download the latest version from http://openlp.org/.
-
+
-
+
@@ -2265,6 +2119,19 @@ You can download the latest version from http://openlp.org/.
+
+ OpenLP.ScreenList
+
+
+
+
+
+
+
+
+
+
+
OpenLP.ServiceItemEditForm
@@ -4320,7 +4187,7 @@ The encoding is responsible for the correct character representation.
-
+
@@ -4405,24 +4272,24 @@ The encoding is responsible for the correct character representation.
-
-
-
-
-
-
-
+
+
-
-
+
+
+
+
+
+
+
diff --git a/resources/i18n/en_ZA.ts b/resources/i18n/en_ZA.ts
index 686c15aa5..3b6dffb0d 100644
--- a/resources/i18n/en_ZA.ts
+++ b/resources/i18n/en_ZA.ts
@@ -6,23 +6,25 @@
-
-
-
-
-
-
+ You have not entered a parameter to be replaced.
+Do you want to continue anyway?
-
+ No Parameter Found
-
+ No Placeholder Found
+
+
+
+
+ The alert text does not contain '<>'.
+Do you want to continue anyway?
@@ -106,7 +108,7 @@ Do want to continue anyway?
-
+ &Parameter:
@@ -155,28 +157,28 @@ Do want to continue anyway?
-
+ Importing testaments... %s
-
+ Importing testaments... done.
-
+ Importing books... %s
Importing verses from <book name>...
-
+ Importing verses from %s...
-
+ Importing verses... done.
@@ -184,35 +186,35 @@ Do want to continue anyway?
-
+ 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.
BiblePlugin.MediaItem
-
-
- You cannot combine single and second bible verses. Do you want to delete your search results and start a new search?
+
+
+ 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?
@@ -288,7 +290,7 @@ Do want to continue anyway?
-
+ No matching book could be found in this Bible. Check that you have spelled the name of the book correctly.
@@ -312,17 +314,13 @@ Do want to continue anyway?
-
-
-
-
-
-
+ 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.
@@ -334,7 +332,19 @@ Book Chapter:Verse-Verse
Book Chapter:Verse-Verse,Verse-Verse
Book Chapter:Verse-Verse,Chapter:Verse-Verse
Book Chapter:Verse-Chapter:Verse
-
+ Your scripture reference is either not supported by OpenLP or is invalid. Please make sure your reference conforms to one of the following patterns:
+
+Book Chapter
+Book Chapter-Chapter
+Book Chapter:Verse-Verse
+Book Chapter:Verse-Verse,Verse-Verse
+Book Chapter:Verse-Verse,Chapter:Verse-Verse
+Book Chapter:Verse-Chapter:Verse
+
+
+
+
+ No Bibles Available
@@ -555,12 +565,7 @@ demand and thus an internet connection is required.
-
-
-
-
-
-
+ CSV File
@@ -592,6 +597,11 @@ demand and thus an internet connection is required.
+
+
+
+
+
BiblesPlugin.MediaItem
@@ -1077,17 +1087,17 @@ 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
@@ -1097,38 +1107,21 @@ OpenLP is written and maintained by volunteers. If you would like to see more fr
build %s
-
+
-
+
+Ridout, Maikel Stuivenberg, Martin Thompson, Jon Tibble, CarstennTinggaard, Frode Woldsund
+
+
+
+
+
+
+
+
+
+
@@ -1537,127 +1411,117 @@ Version: %s
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
-
+
CCLI Details
-
+
SongSelect username:
-
+
SongSelect password:
-
+
Display Position
-
+
X
-
+
Y
-
+
Height
-
+
Width
-
+
Override display position
-
+
Prompt to save before starting a new service
-
+
Automatically preview next item in service
-
+
Slide loop delay:
-
+
sec
-
-
-
-
-
-
-
-
-
-
-
+
@@ -2036,17 +1900,17 @@ Version: %s
OpenLP Version Updated
-
+
OpenLP Main Display Blanked
-
+
The Main Display has been blanked out
-
+
Default Theme: %s
@@ -2071,12 +1935,12 @@ You can download the latest version from http://openlp.org/.
Configure &Shortcuts...
-
+
-
+
@@ -2268,6 +2132,19 @@ You can download the latest version from http://openlp.org/.
+
+ OpenLP.ScreenList
+
+
+
+
+
+
+
+
+
+
+
OpenLP.ServiceItemEditForm
@@ -4323,7 +4200,7 @@ The encoding is responsible for the correct character representation.
-
+
@@ -4408,24 +4285,24 @@ The encoding is responsible for the correct character representation.
-
-
-
-
-
-
-
+
+
-
-
+
+
+
+
+
+
+
diff --git a/resources/i18n/es.ts b/resources/i18n/es.ts
index 309caee7d..7db94baba 100644
--- a/resources/i18n/es.ts
+++ b/resources/i18n/es.ts
@@ -7,13 +7,6 @@
No ha ingresado un parámetro para reemplazarlo.
-¿Desea continuar de todas maneras?
-
-
-
-
- El texto de alerta no contiene '<>'.
¿Desea continuar de todas maneras?
@@ -26,6 +19,12 @@ Do want to continue anyway?
+
+
+
+
+
AlertsPlugin
@@ -207,13 +206,13 @@ Do want to continue anyway?
BiblePlugin.MediaItem
-
-
+
+
-
-
+
+
@@ -316,11 +315,6 @@ Do want to continue anyway?
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.
-
-
-
-
-
@@ -338,6 +332,11 @@ Book Chapter:Verse-Verse,Chapter:Verse-Verse
Book Chapter:Verse-Chapter:Verse
+
+
+
+
+
BiblesPlugin.BiblesTab
@@ -556,11 +555,6 @@ demand and thus an internet connection is required.
-
-
-
-
-
@@ -591,6 +585,11 @@ demand and thus an internet connection is required.
+
+
+
+
+
BiblesPlugin.MediaItem
@@ -1070,17 +1069,17 @@ OpenLP is written and maintained by volunteers. If you would like to see more fr
-
+
Créditos
-
+
Licencia
-
+
Contribuir
@@ -1090,38 +1089,21 @@ OpenLP is written and maintained by volunteers. If you would like to see more fr
-
+
-
+
+Ridout, Maikel Stuivenberg, Martin Thompson, Jon Tibble, CarstennTinggaard, Frode Woldsund
+
+
+
+
+
+
+
+
+
+
@@ -1530,127 +1393,117 @@ Version: %s
OpenLP.GeneralTab
-
+
General
-
+
Monitores
-
+
Seleccionar monitor para visualizar la salida:
-
+
-
+
Inicio de la Aplicación
-
+
Mostrar advertencia de pantalla en blanco
-
+
Abrir automáticamente el último servicio
-
+
Mostrar pantalla de bienvenida
-
+
Configuración del Programa
-
+
-
+
-
+
-
+
-
+
Detalles de CCLI
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
-
-
-
-
-
-
-
-
-
+
@@ -2036,17 +1889,17 @@ You can download the latest version from http://openlp.org/.
Versión de OpenLP Actualizada
-
+
Pantalla Principal de OpenLP en Blanco
-
+
La Pantalla Principal esta en negro
-
+
@@ -2062,12 +1915,12 @@ You can download the latest version from http://openlp.org/.
-
+
-
+
@@ -2259,6 +2112,19 @@ You can download the latest version from http://openlp.org/.
+
+ OpenLP.ScreenList
+
+
+
+
+
+
+
+
+
+
+
OpenLP.ServiceItemEditForm
@@ -4312,7 +4178,7 @@ The encoding is responsible for the correct character representation.
-
+
@@ -4397,24 +4263,24 @@ The encoding is responsible for the correct character representation.
-
-
-
-
-
-
-
+
+
-
-
+
+
+
+
+
+
+
diff --git a/resources/i18n/et.ts b/resources/i18n/et.ts
index 2e28963da..37b2170ab 100644
--- a/resources/i18n/et.ts
+++ b/resources/i18n/et.ts
@@ -7,23 +7,22 @@
Sa ei ole sisestanud parameetrit, mida asendada.
-Kas tahad sellegipoolest jätkata?
-
-
-
-
- Teate tekst ei sisalda '<>' märke.
-Kas tahad sellegipoolest jätkata?
+Kas tahad sellegi poolest jätkata?
-
+ Parameetreid ei leitud
+ Kohahoidjat ei leitud
+
+
+
+
@@ -207,14 +206,14 @@ Kas tahad sellegipoolest jätkata?
BiblePlugin.MediaItem
-
-
- Ühe- ja kahekeelseid piiblisalme pole võimalik kombineerida. Kas sa tahad kustutada otsingutulemused ja alustada uut otsingut?
+
+
+
-
-
- Piibel pole täielikult laaditud
+
+
+
@@ -317,11 +316,6 @@ You can separate different keywords by a space to search for all of your keyword
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.
-
-
-
- Piibleid pole
-
@@ -337,6 +331,18 @@ Book Chapter:Verse-Verse
Book Chapter:Verse-Verse,Verse-Verse
Book Chapter:Verse-Verse,Chapter:Verse-Verse
Book Chapter:Verse-Chapter:Verse
+ Salmiviide pole toetatud või on vigane. Veendu, et see vastab mõnele järgnevale mustrile:
+
+Raamat peatükk
+Raamat peatükk-peatükk
+Raamat peatükk:salm-salm
+Raamat peatükk:salm-salm,salm-salm
+Raamat peatükk:salm-salm,peatükk:salm-salm
+Raamat peatükk:salm-peatükk:salm
+
+
+
+
@@ -559,11 +565,6 @@ vajadusel, seetõttu on vajalik internetiühendus.
CSV fail
-
-
-
- openlp.org 1.x Piibel
-
@@ -594,6 +595,11 @@ vajadusel, seetõttu on vajalik internetiühendus.
Sa pole määranud testamentide faili. Kas tahad importimisega jätkata?
+
+
+
+
+
BiblesPlugin.MediaItem
@@ -660,7 +666,7 @@ vajadusel, seetõttu on vajalik internetiühendus.
-
+ Salmiviide
@@ -1035,7 +1041,7 @@ Do you want to add the other images anyway?
-
+ Videod (%s);;Audio (%s);;%s (*)
@@ -1062,17 +1068,17 @@ Do you want to add the other images anyway?
OpenLP.AboutForm
-
+
Autorid
-
+
Litsents
-
+
Aita kaasa
@@ -1099,38 +1105,21 @@ 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.
-
+
- Projekti juht
-Raoul "superfly" Snyman
-
-Arendajad
-Tim "TRB143" Bentley
-Jonathan "gushie" Corwin
-Michael "cocooncrash" Gorven
-Scott "sguerrieri" Guerrieri
-Raoul "superfly" Snyman
-Martin "mijiti" Thompson
-Jon "Meths" Tibble
-
-Abilised
-Meinert "m2j" Jordan
-Andreas "googol" Preikschat
-Christian "crichter" Richter
-Philip "Phill" Ridout
-Maikel Stuivenberg
-Carsten "catini" Tingaard
-Frode "frodus" Woldsund
-
-Testijad
-Philip "Phill" Ridout
-Wesley "wrst" Stout (lead)
-
-Pakendajad
-Thomas "tabthorpe" Abthorpe (FreeBSD)
-Tim "TRB143" Bentley (Fedora)
-Michael "cocooncrash" Gorven (Ubuntu)
-Matthias "matthub" Hub (Mac OS X)
-Raoul "superfly" Snyman (Windows, Ubuntu)
-
-Kasutatud tehnoloogiad
-Python: http://www.python.org/
-Qt4: http://qt.nokia.com/
-PyQt4: http://www.riverbankcomputing.co.uk/software/pyqt/intro
-Oxygeni ikoonid: http://oxygen-icons.org/
-
-Lõpptänu
-"Sest nõnda on Jumal maailma armastanud,
-et ta oma ainusündinud Poja on andnud,
-et ükski, kes temasse usub, ei hukkuks,
-vaid et tal oleks igavene elu. -- Johannese 3:16
-
-Lõpuks suurim tänu kuulub Jumalale meie Isale,
-kes saatis oma Poja ristile surema, et vabastada
-meid patust. Me anname selle tarkvara sulle
-tasuta, sest Tema on teinud meid vabaks.
+
-
+
+Ridout, Maikel Stuivenberg, Martin Thompson, Jon Tibble, CarstennTinggaard, Frode Woldsund
+
+
+
+
+
+
+
+
+
+
@@ -1376,27 +1199,27 @@ This General Public License does not permit incorporating your program into prop
-
+ Ekraanil oleva akna kohal peidetakse hiirekursor
-
+ Vaikimisi pilt
- Taustavärvus:
+ Taustapilt:
-
+ Pildifail:
- Faili avamine
+ Faili avamine
@@ -1404,52 +1227,52 @@ This General Public License does not permit incorporating your program into prop
- Valiku muutmine
+ Valiku muutmine
- Uuenda
+ Uuenda
- Kirjeldus
+ Kirjeldus
- Silt
+ Silt
- Alustamise silt
+ Alustamise silt
- Lõpu silt
+ Lõpu silt
- Vaikimisi
+ Vaikimisi
- Sildi ID
+ Sildi ID
- HTMLi algus
+ HTMLi algus
- HTMLi lõpp
+ HTMLi lõpp
@@ -1614,127 +1437,117 @@ Version: %s
OpenLP.GeneralTab
-
+
Üldine
-
+
Monitorid
-
+
Vali väljundkuva ekraan:
-
+
Kuvatakse, kui on ainult üks ekraan
-
+
Rakenduse käivitumine
-
+
Kuvatakse tühja ekraani hoiatust
-
+
Automaatselt avatakse viimane teenistus
-
+
Käivitumisel kuvatakse logo
-
+
Rakenduse sätted
-
+
Enne uue teenistuse alustamist küsitakse, kas salvestada avatud teenistus
-
+
Järgmise teenistuse elemendi automaatne eelvaade
-
+
Slaidi näitamise pikkus korduses:
-
+
sek
-
+
CCLI andmed
-
+
SongSelecti kasutajanimi:
-
+
SongSelecti parool:
-
+
Kuva asukoht
-
+
X
-
+
Y
-
+
Kõrgus
-
+
Laius
-
+
Kuva asukoht määratakse jõuga
-
-
- Ekraan
-
-
-
-
- peamine
-
-
-
+
OpenLP uuenduste kontrollimine
@@ -2113,17 +1926,17 @@ Version: %s
OpenLP uuendus
-
+
OpenLP peakuva on tühi
-
+
Peakuva on tühi
-
+
Vaikimisi kujundus: %s
@@ -2148,12 +1961,12 @@ Sa võid viimase versiooni alla laadida aadressilt http://openlp.org/.&Kiirklahvide seadistamine...
-
+
OpenLP sulgemine
-
+
Kas oled kindel, et tahad OpenLP sulgeda?
@@ -2170,17 +1983,17 @@ Sa võid viimase versiooni alla laadida aadressilt http://openlp.org/.
-
+ &Kuvasiltide seadistamine
-
+ Ava &andmete kataloog...
-
+ Laulude, Piiblite ja muude andmete kataloogi avamine.
@@ -2274,12 +2087,12 @@ Sa võid viimase versiooni alla laadida aadressilt http://openlp.org/.
-
+ Mahuta lehele
-
+ Mahuta laius
@@ -2287,62 +2100,75 @@ Sa võid viimase versiooni alla laadida aadressilt http://openlp.org/.
-
+ Valikud
-
+ Sulge
-
+ Kopeeri
-
+ Kopeeri HTMLina
-
+ Suurendamine
-
+ Vähendamine
-
+ Originaalsuurus
-
+ Muud valikud
-
+ Slaidi teksti, kui saadaval
-
+ Teenistuse kirje märkmed
-
+ Meediakirjete pikkus
- Teenistuse järjekord
+ Teenistuse järjekord
+
+
+
+ OpenLP.ScreenList
+
+
+
+ Ekraan
+
+
+
+
+ peamine
@@ -2545,22 +2371,22 @@ Sisu ei ole UTF-8 kodeeringus.
-
+ &Alguse aeg
-
+ Näita &eelvaadet
-
+ Näita &ekraanil
-
+ Praegust teensitust on muudetud. Kas tahad selle teenistuse salvestada?
@@ -2624,7 +2450,7 @@ Sisu ei ole UTF-8 kodeeringus.
-
+ Muuda
@@ -2738,32 +2564,32 @@ Sisu ei ole UTF-8 kodeeringus.
-
+ Kirje alguse aeg
-
+ Tundi:
-
+ h
-
+ m
-
+ Minutid:
-
+ Sekundit:
@@ -2986,7 +2812,7 @@ Sisu kodeering ei ole UTF-8.
-
+ OpenLP kujundused (*.theme *.otz)
@@ -3305,388 +3131,388 @@ Sisu kodeering ei ole UTF-8.
- Programmist
+ Programmist
- &Lisa
+ &Lisa
- Täpsem
+ Täpsem
- Kõik failid
+ Kõik failid
- All
+ All
- Lehitse...
+ Lehitse...
- Loobu
+ Loobu
- CCLI number:
+ CCLI number:
- Uue teenistuse loomine.
+ Uue teenistuse loomine.
- &Muuda
+ &Muuda
-
+ Tühi väli
-
+ Ekspordi
Abbreviated font pointsize unit
- pt
+ pt
- Pilt
+ Pilt
- Impordi
+ Impordi
-
+ Kestus %s
- Ekraan
+ Ekraan
- Ekraani tausta viga
+ Ekraani tausta viga
-
+ Ekraani paneel
- Laadi
+ Laadi
- Keskel
+ Keskel
- Uus
+ Uus
- Uus teenistus
+ Uus teenistus
- Uus kujundus
+ Uus kujundus
Singular
-
+ Ühtegi faili pole valitud
Plural
-
+ Ühtegi faili pole valitud
Singular
-
+ Ühtegi elementi pole valitud
Plural
- Ühtegi elementi pole valitud
+ Ühtegi elementi pole valitud
- openlp.org 1.x
+ openlp.org 1.x
- OpenLP 2.0
+ OpenLP 2.0
- Teenistuse avamine
+ Teenistuse avamine
- Eelvaade
+ Eelvaade
-
+ Eelvaate paneel
- Teenistuse järjekorra printimine
+ Teenistuse järjekorra printimine
- Tausta asendamine
+ Tausta asendamine
- Ekraani tausta asendamine
+ Ekraani tausta asendamine
- Tausta lähtestamine
+ Tausta lähtestamine
- Ekraani tausta asendamine
+ Ekraani tausta asendamine
The abbreviated unit for seconds
- s
+ s
- Salvesta && eelvaatle
+ Salvesta && eelvaatle
- Otsi
+ Otsi
-
+ Pead valima elemendi, mida tahad kustutada.
- Pead valima kirje, mida muuta.
+ Pead valima elemendi, mida tahad muuta.
-
+ Teenistuse salvestamine
-
+ Teenistus
-
+ Algus %s
Singular
- Kujundus
+ Kujundus
Plural
- Kujundused
+ Kujundused
- Üleval
+ Üleval
-
+ Versioon
-
+ &Vertikaaljoondus:
- Importimine lõpetatud.
+ Importimine lõpetatud.
- Vorming:
+ Vorming:
- Importimine
+ Importimine
- "%s" importimine...
+ "%s" importimine...
- Importimise allika valimine
+ Importimise allika valimine
-
+ Vali importimise vorming ja asukoht, kust importida.
- openlp.org 1.x importija on ühe puuduva Pythoni mooduli pärast keelatud. Kui sa tahad seda importijat kasutada, pead paigaldama mooduli "python-sqlite".
+ openlp.org 1.x importija on ühe puuduva Pythoni mooduli pärast keelatud. Kui sa tahad seda importijat kasutada, pead paigaldama mooduli "python-sqlite".
-
+ %s faili avamine
- %p%
+ %p%
- Valmis.
+ Valmis.
- Importimise alustamine...
+ Importimise alustamine...
A file type e.g. OpenSong
-
+ Pead määrama vähemalt ühe %s faili, millest importida.
- Teretulemast Piibli importimise nõustajasse
+ Tere tulemast Piibli importimise nõustajasse
-
+ Tere tulemast laulude eksportimise nõustajasse
- Tere tulemast laulude importimise nõustajasse
+ Tere tulemast laulude importimise nõustajasse
Singular
-
+ Autor
Plural
- Autorid
+ Autorid
Copyright symbol.
- ©
+ ©
Singular
- Laulik
+ Laulik
Plural
- Laulikud
+ Laulikud
- Laulude haldus
+ Laulude haldus
Singular
- Teema
+ Teema
Plural
- Teemad
+ Teemad
@@ -3694,7 +3520,7 @@ Sisu kodeering ei ole UTF-8.
-
+ Kuvasiltide seadistamine
@@ -3821,7 +3647,7 @@ Sisu kodeering ei ole UTF-8.
-
+ %s (pole saadaval)
@@ -4177,7 +4003,7 @@ Kodeering on vajalik märkide õige esitamise jaoks.
-
+ Eksportimise nõustaja abil laulude eksportimine.
@@ -4404,7 +4230,7 @@ Kodeering on vajalik märkide õige esitamise jaoks.
Pead lisama sellele laulule autori.
-
+
Salm peab sisaldama teksti.
@@ -4432,81 +4258,81 @@ Kodeering on vajalik märkide õige esitamise jaoks.
-
+ Laulude eksportimise nõustaja
-
+ See nõustaja aitab laulud eksportida avatud ülistuslaulude vormingus OpenLyrics.
-
+ Laulude valimine
-
+ Vali laulud, mida tahad eksportida.
-
+ Eemalda märgistus
-
+ Märgi kõik
-
+ Kataloogi valimine
-
+ Vali kataloog, kuhu tahad laulud salvestada.
-
+ Kataloog:
-
+ Eksportimine
-
+ Palun oota, kuni kõik laulud on eksporditud.
-
+ Pead lisama vähemalt ühe laulu, mida tahad eksportida.
-
-
-
-
-
-
+ Salvestamise asukohta pole määratud
+ Eksportimise alustamine...
+
+
+
+
-
+
@@ -4590,27 +4416,27 @@ Kodeering on vajalik märkide õige esitamise jaoks.
-
+ Pead määrama vähemalt ühe dokumendi või esitluse faili, millest tahad importida.
-
+ Songs Of Fellowship laulufailid
-
+ SongBeameri failid
-
+ SongShow Plus laulufailid
-
+ Foilpresenteri laulufailid
@@ -4666,7 +4492,7 @@ Kodeering on vajalik märkide õige esitamise jaoks.
-
+ "%s" eksportimine...
@@ -4697,12 +4523,12 @@ Kodeering on vajalik märkide õige esitamise jaoks.
-
+ Eksportimine lõpetatud.
-
+ Laulude eksportimine nurjus.
diff --git a/resources/i18n/fr.ts b/resources/i18n/fr.ts
index dc809b571..0a58735f8 100644
--- a/resources/i18n/fr.ts
+++ b/resources/i18n/fr.ts
@@ -8,12 +8,6 @@
Do you want to continue anyway?
-
-
-
-
-
@@ -24,6 +18,12 @@ Do want to continue anyway?
+
+
+
+
+
AlertsPlugin
@@ -206,13 +206,13 @@ Do want to continue anyway?
BiblePlugin.MediaItem
-
- Bible pas entièrement chargée
+
+
-
- Vous ne pouvez pas combiner versets biblique unique et deuxième. Voulez-vous supprimer vos résultats de recherche ?
+
+
@@ -293,11 +293,6 @@ Do want to continue anyway?
BiblesPlugin.BibleManager
-
-
-
- Pas de Bible trouvée
-
@@ -337,6 +332,11 @@ Book Chapter:Verse-Verse,Chapter:Verse-Verse
Book Chapter:Verse-Chapter:Verse
+
+
+
+
+
BiblesPlugin.BiblesTab
@@ -545,11 +545,6 @@ Les changement ne s'applique aux versets déjà un service.
Fichier CSV
-
-
-
- Bible openlp.org 1.x
-
@@ -592,6 +587,11 @@ a la demande, une connexion Interner fiable est donc nécessaire.
+
+
+
+
+
BiblesPlugin.MediaItem
@@ -1072,38 +1072,41 @@ OpenLP is written and maintained by volunteers. If you would like to see more fr
-
+
+
+ Crédits
+
+
+
+
+ Licence
+
+
+
+
+ Contribuer
+
+
+
+
+
+
+
+
-
-
- Crédits
-
-
-
-
- Licence
-
-
-
-
- Contribuer
-
-
-
-
-
-
-
-
+
+Ridout, Maikel Stuivenberg, Martin Thompson, Jon Tibble, CarstennTinggaard, Frode Woldsund
+
+
+
+
+
+
+
+
+
+
@@ -1533,130 +1397,120 @@ Version: %s
OpenLP.GeneralTab
-
+
Général
-
+
Monitors
-
+
Select le moniteur pour la sortie d'affichage :
-
+
Affiche si il n'y a qu'un écran
-
+
Démarrage de l'application
-
+
Affiche un écran noir d'avertissement
-
+
Ouvre automatiquement le dernier service
-
+
Affiche l'écran de démarrage
-
+
Regarde s'il y a des mise à jours d'OpenLP
-
+
Préférence d'application
-
+
Demande a sauver avant de commencer un nouveau service
-
+
Prévisualise automatiquement le prochain élément de service
-
+
Délais de boucle des diapositive :
-
+
sec
-
+
CCLI détails
-
+
Nom d'utilisateur SongSelect :
-
+
Mot de passe SongSelect :
-
+
Position d'affichage
-
+
X
-
+
Y
-
+
Hauteur
-
+
Largeur
-
+
Surcharge la position d'affichage
-
-
-
- Écran
-
-
-
-
- primaire
-
OpenLP.LanguageManager
@@ -2046,27 +1900,27 @@ Vous pouvez télécharger la dernière version depuis http://openlp.org/.Version d'OpenLP mis a jours
-
+
OpenLP affichage principale noirci
-
+
L'affichage principale a été noirci
-
+
Ferme OpenLP
-
+
Êtes vous sur de vouloir fermer OpenLP ?
-
+
Thème par défaut : %s
@@ -2264,6 +2118,19 @@ Vous pouvez télécharger la dernière version depuis http://openlp.org/.
+
+ OpenLP.ScreenList
+
+
+
+ Écran
+
+
+
+
+ primaire
+
+
OpenLP.ServiceItemEditForm
@@ -4319,7 +4186,7 @@ The encoding is responsible for the correct character representation.
-
+
@@ -4404,24 +4271,24 @@ The encoding is responsible for the correct character representation.
-
-
-
-
-
-
-
+
+
-
-
+
+
+
+
+
+
+
diff --git a/resources/i18n/hu.ts b/resources/i18n/hu.ts
index 42cf9638e..36d46c94c 100644
--- a/resources/i18n/hu.ts
+++ b/resources/i18n/hu.ts
@@ -8,13 +8,6 @@
Do you want to continue anyway?
Nincs megadva a cserélendő paraméter. Folytatható?
-
-
-
- A figyelmeztető szöveg nem tartalmaz „<>” karaktereket.
-Folytatható?
-
@@ -25,6 +18,12 @@ Folytatható?
+
+
+
+
+
AlertsPlugin
@@ -206,13 +205,13 @@ Folytatható?
BiblePlugin.MediaItem
-
-
- 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?
+
+
+
-
-
+
+
@@ -315,11 +314,6 @@ Folytatható?
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.
-
-
-
-
-
@@ -337,6 +331,11 @@ Book Chapter:Verse-Verse,Chapter:Verse-Verse
Book Chapter:Verse-Chapter:Verse
+
+
+
+
+
BiblesPlugin.BiblesTab
@@ -556,11 +555,6 @@ demand and thus an internet connection is required.
-
-
-
-
-
@@ -591,6 +585,11 @@ demand and thus an internet connection is required.
+
+
+
+
+
BiblesPlugin.MediaItem
@@ -1076,17 +1075,17 @@ 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 részvételt az alábbi gomb igénybevételével.
-
+
Közreműködők
-
+
Licenc
-
+
Részvétel
@@ -1096,38 +1095,21 @@ Az OpenLP-t önkéntesek készítették és tartják karban. Ha szeretnél több
-
+
-
+
+Ridout, Maikel Stuivenberg, Martin Thompson, Jon Tibble, CarstennTinggaard, Frode Woldsund
+
+
+
+
+
+
+
+
+
+
@@ -1536,127 +1399,117 @@ Version: %s
OpenLP.GeneralTab
-
+
Általános
-
+
Monitorok
-
+
Válaszd ki a vetítési képernyőt:
-
+
Megjelenítés egy képernyő esetén
-
+
Alkalmazás indítása
-
+
Figyelmeztetés megjelenítése a fekete képernyőről
-
+
Utolsó szolgálat automatikus megnyitása
-
+
Indító képernyő megjelenítése
-
+
Alkalmazás beállítások
-
+
Rákérdezés mentésre új szolgálat kezdése előtt
-
+
Következő elem automatikus előnézete a szolgálatban
-
+
Időzített diák késleltetése:
-
+
mp
-
+
CCLI részletek
-
+
SongSelect felhasználói név:
-
+
SongSelect jelszó:
-
+
Megjelenítés pozíciója
-
+
-
+
-
+
Magasság
-
+
Szélesség
-
+
Megjelenítési pozíció felülírása
-
-
-
-
-
-
-
-
-
-
-
+
@@ -2044,17 +1897,17 @@ A legfrissebb verzió a http://openlp.org/ oldalról szerezhető be.OpenLP verziófrissítés
-
+
Sötét OpenLP fő képernyő
-
+
A fő képernyő el lett sötétítve
-
+
Alapértelmezett téma: %s
@@ -2070,12 +1923,12 @@ A legfrissebb verzió a http://openlp.org/ oldalról szerezhető be.Magyar
-
+
-
+
@@ -2267,6 +2120,19 @@ A legfrissebb verzió a http://openlp.org/ oldalról szerezhető be.
+
+ OpenLP.ScreenList
+
+
+
+
+
+
+
+
+
+
+
OpenLP.ServiceItemEditForm
@@ -4322,7 +4188,7 @@ The encoding is responsible for the correct character representation.
-
+
@@ -4407,24 +4273,24 @@ The encoding is responsible for the correct character representation.
-
-
-
-
-
-
-
+
+
-
-
+
+
+
+
+
+
+
diff --git a/resources/i18n/id.ts b/resources/i18n/id.ts
index e4476bbff..8900300e6 100644
--- a/resources/i18n/id.ts
+++ b/resources/i18n/id.ts
@@ -7,13 +7,6 @@
Anda belum memasukkan parameter baru.
-Tetap lanjutkan?
-
-
-
-
- Teks peringatan tidak mengandung '<>'.
Tetap lanjutkan?
@@ -26,6 +19,12 @@ Tetap lanjutkan?
+
+
+
+
+
AlertsPlugin
@@ -207,14 +206,14 @@ Tetap lanjutkan?
BiblePlugin.MediaItem
-
-
+
+
-
-
- Alkitab belum termuat sepenuhnya
+
+
+
@@ -316,11 +315,6 @@ Tetap lanjutkan?
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.
-
-
-
- Alkitab tidak tersedia
-
@@ -338,6 +332,11 @@ Book Chapter:Verse-Verse,Chapter:Verse-Verse
Book Chapter:Verse-Chapter:Verse
+
+
+
+
+
BiblesPlugin.BiblesTab
@@ -541,11 +540,6 @@ Perubahan tidak akan mempengaruhi ayat yang kini tampil.
-
-
-
-
-
@@ -592,6 +586,11 @@ demand and thus an internet connection is required.
+
+
+
+
+
BiblesPlugin.MediaItem
@@ -1071,17 +1070,17 @@ OpenLP is written and maintained by volunteers. If you would like to see more fr
-
+
-
+
-
+
@@ -1091,38 +1090,21 @@ OpenLP is written and maintained by volunteers. If you would like to see more fr
-
+
-
+
+Ridout, Maikel Stuivenberg, Martin Thompson, Jon Tibble, CarstennTinggaard, Frode Woldsund
+
+
+
+
+
+
+
+
+
+
@@ -1531,127 +1394,117 @@ Version: %s
OpenLP.GeneralTab
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
-
-
-
-
-
-
-
-
-
+
@@ -2037,17 +1890,17 @@ You can download the latest version from http://openlp.org/.
-
+
-
+
-
+
@@ -2063,12 +1916,12 @@ You can download the latest version from http://openlp.org/.
-
+
-
+
@@ -2260,6 +2113,19 @@ You can download the latest version from http://openlp.org/.
+
+ OpenLP.ScreenList
+
+
+
+
+
+
+
+
+
+
+
OpenLP.ServiceItemEditForm
@@ -4313,7 +4179,7 @@ The encoding is responsible for the correct character representation.
-
+
@@ -4398,24 +4264,24 @@ The encoding is responsible for the correct character representation.
-
-
-
-
-
-
-
+
+
-
-
+
+
+
+
+
+
+
diff --git a/resources/i18n/ja.ts b/resources/i18n/ja.ts
index b175a2fef..4ea5843e4 100644
--- a/resources/i18n/ja.ts
+++ b/resources/i18n/ja.ts
@@ -7,13 +7,6 @@
引数が入力されていません。
-続けますか?
-
-
-
-
- 警告文に「<>」が含まれていません。
続けますか?
@@ -26,6 +19,12 @@ Do want to continue anyway?
+
+
+
+
+
AlertsPlugin
@@ -207,14 +206,14 @@ Do want to continue anyway?
BiblePlugin.MediaItem
-
-
- 二つの訳を一つの礼拝項目に合わせる事はできません。検索結果を削除して、始めから検索しますか?
+
+
+
-
-
- 聖書データは完全に読み込まれていません
+
+
+
@@ -317,11 +316,6 @@ You can separate different keywords by a space to search for all of your keyword
検索語句が入力されていません。
複数の語句をスペースで区切ると全てに該当する箇所を検索し、コンマ(,)で区切るといずれかに該当する箇所を検索します。
-
-
-
- 利用可能な聖書データがありません
-
@@ -339,6 +333,11 @@ Book Chapter:Verse-Verse,Chapter:Verse-Verse
Book Chapter:Verse-Chapter:Verse
+
+
+
+
+
BiblesPlugin.BiblesTab
@@ -557,11 +556,6 @@ demand and thus an internet connection is required.
CSVファイル
-
-
-
-
-
@@ -592,6 +586,11 @@ demand and thus an internet connection is required.
+
+
+
+
+
BiblesPlugin.MediaItem
@@ -1078,17 +1077,17 @@ http://openlp.org/にて詳しくご紹介しております。
OpenLPは、ボランティアの手により開発保守されています。もっと多くのクリスチャンの手によるフリーのソフトウェア開発に興味がある方は、以下のボタンからどうぞ。
-
+
著作情報
-
+
ライセンス
-
+
貢献する
@@ -1098,38 +1097,21 @@ OpenLPは、ボランティアの手により開発保守されています。
ビルド %s
-
+
- プロジェクトリーダ
- Raoul "superfly" Snyman
-
-開発
- Tim "TRB143" Bentley
- Jonathan "gushie" Corwin
- Michael "cocooncrash" Gorven
- Scott "sguerrieri" Guerrieri
- Raoul "superfly" Snyman
- Martin "mijiti" Thompson
- Jon "Meths" Tibble
-
-貢献
- Meinert "m2j" Jordan
- Andreas "googol" Preikschat
- Christian "crichter" Richter
- Philip "Phill" Ridout
- Maikel Stuivenberg
- Carsten "catini" Tingaard
- Frode "frodus" Woldsund
-
-テスター
- Philip "Phill" Ridout
- Wesley "wrst" Stout (lead)
-
-パッケージャ
- Thomas "tabthorpe" Abthorpe (FreeBSD)
- Tim "TRB143" Bentley (Fedora)
- Michael "cocooncrash" Gorven (Ubuntu)
- Matthias "matthub" Hub (Mac OS X)
- Raoul "superfly" Snyman (Windows, Ubuntu)
-
-開発環境
- Python: http://www.python.org/
- Qt4: http://qt.nokia.com/
- PyQt4: http://www.riverbankcomputing.co.uk/software/pyqt/intro
- Oxygen Icons: http://oxygen-icons.org/
-
-功績
- 神は、その独り子をお与えになったほどに、世を
- 愛された。独り子を信じる者が一人も滅びないで、
- 永遠の命を得るためである。
- -- ヨハネによる福音書 3:16
-
- 大事なことをひとつ言い残しましたが、功績は全て
- 私たちの父なる神に帰します。神はひとり子を十字
- 架につけて殺し、私たちを罪から自由にしてくださ
- いました。神が私たちを自由にしてくださったので、
- このソフトウェアも無償で配布します。
+
-
+
+Ridout, Maikel Stuivenberg, Martin Thompson, Jon Tibble, CarstennTinggaard, Frode Woldsund
+
+
+
+
+
+
+
+
+
+
@@ -1613,127 +1428,117 @@ Version: %s
OpenLP.GeneralTab
-
+
一般
-
+
モニタ
-
+
画面出力に使用するスクリーン:
-
+
スクリーンが1つしかなくても表示する
-
+
アプリケーションの起動
-
+
警告中には、ブランク画面を表示する
-
+
自動的に前回の礼拝を開く
-
+
スプラッシュスクリーンを表示
-
+
アプリケーションの設定
-
+
新しい礼拝を開く前に保存を確認する
-
+
自動的に次の項目をプレビューする
-
+
スライド繰返の遅延:
-
+
秒
-
+
CCLI詳細
-
+
SongSelect ユーザー名:
-
+
SongSelect パスワード:
-
+
表示位置
-
+
-
+
-
+
高
-
+
幅
-
+
表示位置を変更する
-
-
- スクリーン
-
-
-
-
- プライマリ
-
-
-
+
OpenLPのバージョン更新の確認
@@ -2121,17 +1926,17 @@ http://openlp.org/から最新版がダウンロード可能です。OpenLPのバージョンアップ完了
-
+
OpenLPのプライマリディスプレイがブランクです
-
+
OpenLPのプライマリディスプレイがブランクになりました
-
+
既定テーマ
@@ -2147,12 +1952,12 @@ http://openlp.org/から最新版がダウンロード可能です。ショートカットの設定(&S)...
-
+
OpenLPの終了
-
+
本当にOpenLPを終了してもよろしいですか?
@@ -2344,6 +2149,19 @@ http://openlp.org/から最新版がダウンロード可能です。礼拝順序シート
+
+ OpenLP.ScreenList
+
+
+
+ スクリーン
+
+
+
+
+ プライマリ
+
+
OpenLP.ServiceItemEditForm
@@ -4400,7 +4218,7 @@ The encoding is responsible for the correct character representation.
アーティストを入力する必要があります。
-
+
バースにテキストを入力する必要があります。
@@ -4490,19 +4308,19 @@ The encoding is responsible for the correct character representation.
-
-
-
-
-
+
+
+
+
+
-
+
diff --git a/resources/i18n/ko.ts b/resources/i18n/ko.ts
index df755520c..49645d279 100644
--- a/resources/i18n/ko.ts
+++ b/resources/i18n/ko.ts
@@ -8,12 +8,6 @@
Do you want to continue anyway?
-
-
-
-
-
@@ -24,6 +18,12 @@ Do want to continue anyway?
+
+
+
+
+
AlertsPlugin
@@ -205,13 +205,13 @@ Do want to continue anyway?
BiblePlugin.MediaItem
-
-
+
+
-
-
+
+
@@ -314,11 +314,6 @@ Do want to continue anyway?
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.
-
-
-
-
-
@@ -336,6 +331,11 @@ Book Chapter:Verse-Verse,Chapter:Verse-Verse
Book Chapter:Verse-Chapter:Verse
+
+
+
+
+
BiblesPlugin.BiblesTab
@@ -555,11 +555,6 @@ demand and thus an internet connection is required.
-
-
-
-
-
@@ -590,6 +585,11 @@ demand and thus an internet connection is required.
+
+
+
+
+
BiblesPlugin.MediaItem
@@ -1069,17 +1069,17 @@ OpenLP is written and maintained by volunteers. If you would like to see more fr
-
+
-
+
-
+
@@ -1089,38 +1089,21 @@ OpenLP is written and maintained by volunteers. If you would like to see more fr
-
+
-
+
+Ridout, Maikel Stuivenberg, Martin Thompson, Jon Tibble, CarstennTinggaard, Frode Woldsund
+
+
+
+
+
+
+
+
+
+
@@ -1529,127 +1393,117 @@ Version: %s
OpenLP.GeneralTab
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
-
-
-
-
-
-
-
-
-
+
@@ -2035,17 +1889,17 @@ You can download the latest version from http://openlp.org/.
-
+
-
+
-
+
@@ -2061,12 +1915,12 @@ You can download the latest version from http://openlp.org/.
-
+
-
+
@@ -2258,6 +2112,19 @@ You can download the latest version from http://openlp.org/.
+
+ OpenLP.ScreenList
+
+
+
+
+
+
+
+
+
+
+
OpenLP.ServiceItemEditForm
@@ -4311,7 +4178,7 @@ The encoding is responsible for the correct character representation.
-
+
@@ -4396,24 +4263,24 @@ The encoding is responsible for the correct character representation.
-
-
-
-
-
-
-
+
+
-
-
+
+
+
+
+
+
+
diff --git a/resources/i18n/nb.ts b/resources/i18n/nb.ts
index 55d7913b2..5eea1673d 100644
--- a/resources/i18n/nb.ts
+++ b/resources/i18n/nb.ts
@@ -8,12 +8,6 @@
Do you want to continue anyway?
-
-
-
-
-
@@ -24,6 +18,12 @@ Do want to continue anyway?
+
+
+
+
+
AlertsPlugin
@@ -205,13 +205,13 @@ Do want to continue anyway?
BiblePlugin.MediaItem
-
-
+
+
-
-
+
+
@@ -314,11 +314,6 @@ Do want to continue anyway?
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.
-
-
-
-
-
@@ -336,6 +331,11 @@ Book Chapter:Verse-Verse,Chapter:Verse-Verse
Book Chapter:Verse-Chapter:Verse
+
+
+
+
+
BiblesPlugin.BiblesTab
@@ -554,11 +554,6 @@ demand and thus an internet connection is required.
-
-
-
-
-
@@ -589,6 +584,11 @@ demand and thus an internet connection is required.
+
+
+
+
+
BiblesPlugin.MediaItem
@@ -1068,17 +1068,17 @@ OpenLP is written and maintained by volunteers. If you would like to see more fr
-
+
-
+
Lisens
-
+
@@ -1088,38 +1088,21 @@ OpenLP is written and maintained by volunteers. If you would like to see more fr
-
+
-
+
+Ridout, Maikel Stuivenberg, Martin Thompson, Jon Tibble, CarstennTinggaard, Frode Woldsund
+
+
+
+
+
+
+
+
+
+
@@ -1528,127 +1392,117 @@ Version: %s
OpenLP.GeneralTab
-
+
-
+
-
+
Velg hvilken skjerm som skal brukes til fremvisning:
-
+
-
+
Programoppstart
-
+
-
+
Åpne forrige møteplan automatisk
-
+
-
+
Programinnstillinger
-
+
-
+
-
+
-
+
-
+
CCLI-detaljer
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
-
-
-
-
-
-
-
-
-
+
@@ -2034,17 +1888,17 @@ You can download the latest version from http://openlp.org/.
OpenLP versjonen har blitt oppdatert
-
+
-
+
-
+
@@ -2060,12 +1914,12 @@ You can download the latest version from http://openlp.org/.
-
+
-
+
@@ -2257,6 +2111,19 @@ You can download the latest version from http://openlp.org/.
+
+ OpenLP.ScreenList
+
+
+
+
+
+
+
+
+
+
+
OpenLP.ServiceItemEditForm
@@ -4310,7 +4177,7 @@ The encoding is responsible for the correct character representation.
-
+
@@ -4395,24 +4262,24 @@ The encoding is responsible for the correct character representation.
-
-
-
-
-
-
-
+
+
-
-
+
+
+
+
+
+
+
diff --git a/resources/i18n/nl.ts b/resources/i18n/nl.ts
index 602705b8a..75f10b76f 100644
--- a/resources/i18n/nl.ts
+++ b/resources/i18n/nl.ts
@@ -7,13 +7,6 @@
U heeft geen parameter opgegeven die vervangen moeten worden
-Toch doorgaan?
-
-
-
-
- De waarschuwingstekst bevat geen '<>'.
Toch doorgaan?
@@ -26,6 +19,12 @@ Toch doorgaan?
+
+
+
+
+
AlertsPlugin
@@ -207,14 +206,14 @@ Toch doorgaan?
BiblePlugin.MediaItem
-
-
- Enkele en meerdere bijbelverzen kun je niet combineren. Wilt u deze zoekopdracht wissen en opnieuw beginnen?
+
+
+
-
-
- Bijbel niet helemaal geladen
+
+
+
@@ -317,11 +316,6 @@ You can separate different keywords by a space to search for all of your keyword
Geen zoekterm opgegeven.
Woorden met een spatie ertussen betekent zoeken naar alle woorden, Woorden met een komma ertussen betekent zoeken naar de afzonderlijke woorden.
-
-
-
- Geen bijbelvertalingen beschikbaar
-
@@ -339,6 +333,11 @@ Book Chapter:Verse-Verse,Chapter:Verse-Verse
Book Chapter:Verse-Chapter:Verse
+
+
+
+
+
BiblesPlugin.BiblesTab
@@ -559,11 +558,6 @@ N.B. bijbelteksten worden gedownload indien nodig internetverbinding is dus nood
CSV bestand
-
-
-
- openlp.org 1.x bijbel
-
@@ -594,6 +588,11 @@ N.B. bijbelteksten worden gedownload indien nodig internetverbinding is dus nood
+
+
+
+
+
BiblesPlugin.MediaItem
@@ -1080,17 +1079,17 @@ 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
-
+
Licentie
-
+
Bijdragen
@@ -1100,38 +1099,21 @@ OpenLP is written and maintained by volunteers. If you would like to see more fr
build %s
-
+
- Project Lead
- Raoul "superfly" Snyman
-
-Developers
- Tim "TRB143" Bentley
- Jonathan "gushie" Corwin
- Michael "cocooncrash" Gorven
- Scott "sguerrieri" Guerrieri
- Raoul "superfly" Snyman
- Martin "mijiti" Thompson
- Jon "Meths" Tibble
-
-Contributors
- Meinert "m2j" Jordan
- Andreas "googol" Preikschat
- Christian "crichter" Richter
- Philip "Phill" Ridout
- Maikel Stuivenberg
- Carsten "catini" Tingaard
- Frode "frodus" Woldsund
-
-Testers
- Philip "Phill" Ridout
- Wesley "wrst" Stout (lead)
-
-Packagers
- Thomas "tabthorpe" Abthorpe (FreeBSD)
- Tim "TRB143" Bentley (Fedora)
- Michael "cocooncrash" Gorven (Ubuntu)
- Matthias "matthub" Hub (Mac OS X)
- Raoul "superfly" Snyman (Windows, Ubuntu)
-
-Built With
- Python: http://www.python.org/
- Qt4: http://qt.nokia.com/
- PyQt4: http://www.riverbankcomputing.co.uk/software/pyqt/intro
- Oxygen Icons: http://oxygen-icons.org/
-
-Final Credit
- "For God so loved the world that He gave
- His one and only Son, so that whoever
- believes in Him will not perish but inherit
- eternal life." -- John 3:16
-
- And last but not least, final credit goes to
- God our Father, for sending His Son to die
- on the cross, setting us free from sin. We
- bring this software to you for free because
- He has set us free.
+
-
+
+Ridout, Maikel Stuivenberg, Martin Thompson, Jon Tibble, CarstennTinggaard, Frode Woldsund
+
+
+
+
+
+
+
+
+
+
@@ -1590,127 +1405,117 @@ Version: %s
OpenLP.GeneralTab
-
+
Algemeen
-
+
Beeldschermen
-
+
Projectiescherm:
-
+
Weergeven bij enkel scherm
-
+
Programma start
-
+
Toon zwart scherm waarschuwing
-
+
Automatisch laatste liturgie openen
-
+
Toon splash screen
-
+
Programma instellingen
-
+
Waarschuw om werk op te slaan bij het beginnen van een nieuwe liturgie
-
+
Automatisch volgend onderdeel van liturgie tonen
-
+
Vertraging bij doorlopende diavoorstelling:
-
+
sec
-
+
CCLI-details
-
+
SongSelect gebruikersnaam:
-
+
SongSelect wachtwoord:
-
+
Weergave positie
-
+
X
-
+
Y
-
+
Hoogte
-
+
Breedte
-
+
Overschrijf scherm positie
-
-
- Beeldscherm
-
-
-
-
- primair scherm
-
-
-
+
@@ -2089,17 +1894,17 @@ Version: %s
Nieuwe OpenLP versie beschikbaar
-
+
OpenLP projectie op zwart
-
+
Projectie is uitgeschakeld: scherm staat op zwart
-
+
Standaardthema: %s
@@ -2124,12 +1929,12 @@ U kunt de laatste versie op http://openlp.org/ downloaden.
&Sneltoetsen instellen...
-
+
OpenLP afsluiten
-
+
OpenLP afsluiten?
@@ -2321,6 +2126,19 @@ U kunt de laatste versie op http://openlp.org/ downloaden.
+
+ OpenLP.ScreenList
+
+
+
+ Beeldscherm
+
+
+
+
+ primair scherm
+
+
OpenLP.ServiceItemEditForm
@@ -4379,7 +4197,7 @@ Meestal voldoet de suggestie van OpenLP.
You need to have an author for this song.
-
+
You need to type some text in to the verse.
@@ -4464,24 +4282,24 @@ Meestal voldoet de suggestie van OpenLP.
-
-
-
-
-
-
-
+
+
-
-
+
+
+
+
+
+
+
diff --git a/resources/i18n/pt_BR.ts b/resources/i18n/pt_BR.ts
index 7e3fabb0c..d12f18edc 100644
--- a/resources/i18n/pt_BR.ts
+++ b/resources/i18n/pt_BR.ts
@@ -7,13 +7,6 @@
Você não entrou com um parâmetro para ser substituído.
-Ainda deseja continuar?
-
-
-
-
- O texto de alerta não contém '<>'.
Ainda deseja continuar?
@@ -26,6 +19,12 @@ Ainda deseja continuar?
+
+
+
+
+
AlertsPlugin
@@ -207,14 +206,14 @@ Ainda deseja continuar?
BiblePlugin.MediaItem
-
-
+
+
-
-
- A Bíblia não foi carregada completamente
+
+
+
@@ -317,11 +316,6 @@ You can separate different keywords by a space to search for all of your keyword
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.
-
-
-
- Nenhuma Bíblia disponível
-
@@ -339,6 +333,11 @@ Book Chapter:Verse-Verse,Chapter:Verse-Verse
Book Chapter:Verse-Chapter:Verse
+
+
+
+
+
BiblesPlugin.BiblesTab
@@ -559,11 +558,6 @@ com o uso, portanto uma conexão com a internet é necessária.
Arquivo CSV
-
-
-
- Bíblia do openlp.org 1.x
-
@@ -594,6 +588,11 @@ com o uso, portanto uma conexão com a internet é necessária.
Você não especificou um arquivo de Testamentos. Deseja prosseguir com a importação?
+
+
+
+
+
BiblesPlugin.MediaItem
@@ -1080,17 +1079,17 @@ 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.
-
+
Créditos
-
+
Licença
-
+
Contribuir
@@ -1100,38 +1099,21 @@ O OpenLP é escrito e mantido por voluntários. Se você gostaria de contribuir
compilação %s
-
+
- Coordenador do Projeto
- Raoul "superfly" Snyman
-
-Desenvolvedores
- Tim "TRB143" Bentley
- Jonathan "gushie" Corwin
- Michael "cocooncrash" Gorven
- Scott "sguerrieri" Guerrieri
- Raoul "superfly" Snyman
- Martin "mijiti" Thompson
- Jon "Meths" Tibble
-
-Contribuidores
- Meinert "m2j" Jordan
- Andreas "googol" Preikschat
- Christian "crichter" Richter
- Philip "Phill" Ridout
- Maikel Stuivenberg
- Carsten "catini" Tingaard
- Frode "frodus" Woldsund
-
-Testers
- Philip "Phill" Ridout
- Wesley "wrst" Stout (lead)
-
-Packagers
- Thomas "tabthorpe" Abthorpe (FreeBSD)
- Tim "TRB143" Bentley (Fedora)
- Michael "cocooncrash" Gorven (Ubuntu)
- Matthias "matthub" Hub (Mac OS X)
- Raoul "superfly" Snyman (Windows, Ubuntu)
-
-Construído com
- Python: http://www.python.org/
- Qt4: http://qt.nokia.com/
- PyQt4: http://www.riverbankcomputing.co.uk/software/pyqt/intro
- Oxygen Icons: http://oxygen-icons.org/
-
-Crédito Final
- "Porque Deus amou o mundo de tal maneira
- que deu o seu Filho unigênito,
- para que todo aquele que nele crê não pereça,
- mas tenha a vida eterna". -- João 3:16
-
- E por fim, mas não menos importante, o crédito final é de
- Deus, nosso Pai, que enviou Seu Filho para morrer
- na cruz, livrando-nos do pecado. Nós
- disponibilizamos este software de forma livre porque
- Ele nos libertou.
+
-
+
+Ridout, Maikel Stuivenberg, Martin Thompson, Jon Tibble, CarstennTinggaard, Frode Woldsund
+
+
+
+
+
+
+
+
+
+
@@ -1617,127 +1432,117 @@ Agradecemos se for possível escrever seu relatório em inglês.
OpenLP.GeneralTab
-
+
Geral
-
+
Monitores
-
+
Selecione um monitor para exibição:
-
+
Exibir em caso de tela única
-
+
Inicialização da Aplicação
-
+
Exibir alerta de tela em branco
-
+
Abrir a última Lista de Exibição automaticamente
-
+
Exibir a tela inicial
-
+
Configurações da Aplicação
-
+
Perguntar sobre salvamento antes de iniciar uma nova lista
-
+
Pré-visualizar automaticamente o próximo item na Lista de Exibição
-
+
Atraso no loop de slide:
-
+
seg
-
+
Detalhes de CCLI
-
+
Usuário SongSelect:
-
+
Senha do SongSelect:
-
+
Posição do Display
-
+
X
-
+
Y
-
+
Altura
-
+
Largura
-
+
Modificar posição do display
-
-
- Tela
-
-
-
-
- primário
-
-
-
+
Procurar por updates do OpenLP
@@ -2125,17 +1930,17 @@ Voce pode baixar a versão mais nova em http://openlp.org/.
Versão do OpenLP Atualizada
-
+
Tela Principal do OpenLP em Branco
-
+
A Tela Principal foi apagada
-
+
Tema padrão: %s
@@ -2151,12 +1956,12 @@ Voce pode baixar a versão mais nova em http://openlp.org/.
Configurar &Atalhos...
-
+
Fechar o OpenLP
-
+
Você tem certeza de que quer fechar o OpenLP?
@@ -2348,6 +2153,19 @@ Voce pode baixar a versão mais nova em http://openlp.org/.
+
+ OpenLP.ScreenList
+
+
+
+ Tela
+
+
+
+
+ primário
+
+
OpenLP.ServiceItemEditForm
@@ -4408,7 +4226,7 @@ A codificação é responsável pela correta representação dos caracteres.Você precisa de um autor para esta música.
-
+
Você precisa digitar algum texto na estrofe.
@@ -4498,19 +4316,19 @@ A codificação é responsável pela correta representação dos caracteres.No Save Location specified
-
-
-
-
-
+
+
+
+
+
-
+
diff --git a/resources/i18n/ru.ts b/resources/i18n/ru.ts
index 8166067e5..5780689e8 100644
--- a/resources/i18n/ru.ts
+++ b/resources/i18n/ru.ts
@@ -7,13 +7,6 @@
Вы не указали параметры для замены.
-Все равно продолжить?
-
-
-
-
- Текст оповещения не содержит '<>'.
Все равно продолжить?
@@ -26,6 +19,12 @@ Do want to continue anyway?
+
+
+
+
+
AlertsPlugin
@@ -208,13 +207,13 @@ Do want to continue anyway?
BiblePlugin.MediaItem
-
- Библия была загружена не полностью
+
+
-
- Вы не можете комбинировать единственный и воторой стихи Библии. Желаете удалить результаты и начать новый поиск?
+
+
@@ -295,11 +294,6 @@ Do want to continue anyway?
BiblesPlugin.BibleManager
-
-
-
- Библии недоступны
-
@@ -339,6 +333,11 @@ Book Chapter:Verse-Verse,Chapter:Verse-Verse
Book Chapter:Verse-Chapter:Verse
+
+
+
+
+
BiblesPlugin.BiblesTab
@@ -551,11 +550,6 @@ Changes do not affect verses already in the service.
-
-
-
-
-
@@ -592,6 +586,11 @@ demand and thus an internet connection is required.
+
+
+
+
+
BiblesPlugin.MediaItem
@@ -1072,38 +1071,41 @@ OpenLP is written and maintained by volunteers. If you would like to see more fr
-
+
+
+
+
+
+
+
+ Лицензия
+
+
+
+
+
+
+
+
+
+ Билд %s
+
+
+
-
-
-
-
-
-
-
- Лицензия
-
-
-
-
-
-
-
-
-
- Билд %s
-
-
-
+
+Ridout, Maikel Stuivenberg, Martin Thompson, Jon Tibble, CarstennTinggaard, Frode Woldsund
+
+
+
+
+
+
+
+
+
+
@@ -1532,130 +1395,120 @@ Version: %s
OpenLP.GeneralTab
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
-
-
-
-
-
-
-
-
OpenLP.LanguageManager
@@ -2053,27 +1906,27 @@ You can download the latest version from http://openlp.org/.
-
+
-
+
-
+
-
+
-
+
@@ -2261,6 +2114,19 @@ You can download the latest version from http://openlp.org/.
+
+ OpenLP.ScreenList
+
+
+
+
+
+
+
+
+
+
+
OpenLP.ServiceItemEditForm
@@ -4314,7 +4180,7 @@ The encoding is responsible for the correct character representation.
Этот сборник песен не существует. Хотите добавить его?
-
+
Вы должны указать какой-то текст в этом куплете.
@@ -4404,19 +4270,19 @@ The encoding is responsible for the correct character representation.
-
-
-
-
-
+
+
+
+
+
-
+
diff --git a/resources/i18n/sv.ts b/resources/i18n/sv.ts
index 9b5f196f5..b421540fa 100644
--- a/resources/i18n/sv.ts
+++ b/resources/i18n/sv.ts
@@ -7,13 +7,6 @@
Du har inte angivit någon parameter som kan ersättas.
-Vill du fortsätta ändå?
-
-
-
-
- Larmtexten innehåller inget '<>'.
Vill du fortsätta ändå?
@@ -26,6 +19,12 @@ Vill du fortsätta ändå?
+
+
+
+
+
AlertsPlugin
@@ -207,13 +206,13 @@ Vill du fortsätta ändå?
BiblePlugin.MediaItem
-
-
- Du kan inte kombinera sökningar av verser med en och två biblar. Vill du ta bort ditt sökresultat och starta en ny sökning?
+
+
+
-
-
+
+
@@ -317,11 +316,6 @@ You can separate different keywords by a space to search for all of your keyword
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.
-
-
-
- Ingen bibel tillgänglig
-
@@ -339,6 +333,11 @@ Book Chapter:Verse-Verse,Chapter:Verse-Verse
Book Chapter:Verse-Chapter:Verse
+
+
+
+
+
BiblesPlugin.BiblesTab
@@ -558,11 +557,6 @@ demand and thus an internet connection is required.
CSV-fil
-
-
-
- openlp.org 1.x bibel
-
@@ -593,6 +587,11 @@ demand and thus an internet connection is required.
+
+
+
+
+
BiblesPlugin.MediaItem
@@ -1073,17 +1072,17 @@ OpenLP is written and maintained by volunteers. If you would like to see more fr
-
+
Lista över medverkande
-
+
Licens
-
+
Bidra
@@ -1093,38 +1092,21 @@ OpenLP is written and maintained by volunteers. If you would like to see more fr
-
+
-
+
+Ridout, Maikel Stuivenberg, Martin Thompson, Jon Tibble, CarstennTinggaard, Frode Woldsund
+
+
+
+
+
+
+
+
+
+
@@ -1533,127 +1396,117 @@ Version: %s
OpenLP.GeneralTab
-
+
Allmänt
-
+
Skärmar
-
+
Välj skärm för utsignal:
-
+
-
+
Programstart
-
+
Visa varning vid tom skärm
-
+
Öppna automatiskt den senaste planeringen
-
+
Visa startbilden
-
+
Programinställningar
-
+
-
+
Automatiskt förhandsgranska nästa post i planeringen
-
+
-
+
sekunder
-
+
CCLI-detaljer
-
+
SongSelect användarnamn:
-
+
SongSelect lösenord:
-
+
-
+
X
-
+
Y
-
+
Höjd
-
+
Bredd
-
+
-
-
-
-
-
-
-
-
-
-
-
+
@@ -2039,17 +1892,17 @@ You can download the latest version from http://openlp.org/.
OpenLP-versionen uppdaterad
-
+
OpenLPs huvuddisplay rensad
-
+
Huvuddisplayen har rensats
-
+
Standardtema: %s
@@ -2065,12 +1918,12 @@ You can download the latest version from http://openlp.org/.
-
+
-
+
@@ -2262,6 +2115,19 @@ You can download the latest version from http://openlp.org/.
+
+ OpenLP.ScreenList
+
+
+
+
+
+
+
+
+
+
+
OpenLP.ServiceItemEditForm
@@ -4315,7 +4181,7 @@ The encoding is responsible for the correct character representation.
-
+
@@ -4400,24 +4266,24 @@ The encoding is responsible for the correct character representation.
-
-
-
-
-
-
-
+
+
-
-
+
+
+
+
+
+
+