Merge with trunk.

This commit is contained in:
Martin Zibricky 2012-08-18 11:47:25 +02:00
commit 39f249647c
38 changed files with 11929 additions and 12097 deletions

View File

@ -72,10 +72,10 @@ class Ui_AboutDialog(object):
self.licenseTabLayout.addWidget(self.licenseTextEdit)
self.aboutNotebook.addTab(self.licenseTab, u'')
self.aboutDialogLayout.addWidget(self.aboutNotebook)
self.contributeButton = create_button(None, u'contributeButton',
icon=u':/system/system_contribute.png')
self.volunteerButton = create_button(None, u'volunteerButton',
icon=u':/system/system_volunteer.png')
self.buttonBox = create_button_box(aboutDialog, u'buttonBox',
[u'close'], [self.contributeButton])
[u'close'], [self.volunteerButton])
self.aboutDialogLayout.addWidget(self.buttonBox)
self.retranslateUi(aboutDialog)
self.aboutNotebook.setCurrentIndex(0)
@ -96,7 +96,7 @@ class Ui_AboutDialog(object):
'\n'
'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.'
'consider volunteering by using the button below.'
))
self.aboutNotebook.setTabText(
self.aboutNotebook.indexOf(self.aboutTab), UiStrings().About)
@ -615,5 +615,5 @@ class Ui_AboutDialog(object):
self.aboutNotebook.setTabText(
self.aboutNotebook.indexOf(self.licenseTab),
translate('OpenLP.AboutForm', 'License'))
self.contributeButton.setText(translate('OpenLP.AboutForm',
'Contribute'))
self.volunteerButton.setText(translate('OpenLP.AboutForm',
'Volunteer'))

View File

@ -54,10 +54,10 @@ class AboutForm(QtGui.QDialog, Ui_AboutDialog):
build_text = u''
about_text = about_text.replace(u'<revision>', build_text)
self.aboutTextEdit.setPlainText(about_text)
QtCore.QObject.connect(self.contributeButton,
QtCore.SIGNAL(u'clicked()'), self.onContributeButtonClicked)
QtCore.QObject.connect(self.volunteerButton,
QtCore.SIGNAL(u'clicked()'), self.onVolunteerButtonClicked)
def onContributeButtonClicked(self):
def onVolunteerButtonClicked(self):
"""
Launch a web browser and go to the contribute page on the site.
"""

View File

@ -580,7 +580,7 @@ class AudioPlayer(QtCore.QObject):
self.playlist.extend(map(Phonon.MediaSource, filenames))
def next(self):
if not self.repeat and self.currentIndex + 1 == len(self.playlist):
if not self.repeat and self.currentIndex + 1 >= len(self.playlist):
return
isPlaying = self.mediaObject.state() == Phonon.PlayingState
self.currentIndex += 1

View File

@ -210,6 +210,8 @@ class Ui_MainWindow(object):
icon=u':/system/system_exit.png',
shortcuts=[QtGui.QKeySequence(u'Alt+F4')],
category=UiStrings().File, triggers=mainWindow.close)
# Give QT Extra Hint that this is the Exit Menu Item
self.fileExitItem.setMenuRole(QtGui.QAction.QuitRole)
action_list.add_category(unicode(UiStrings().Import),
CategoryOrder.standardMenu)
self.importThemeItem = create_action(mainWindow,
@ -304,6 +306,8 @@ class Ui_MainWindow(object):
self.settingsConfigureItem = create_action(mainWindow,
u'settingsConfigureItem', icon=u':/system/system_settings.png',
category=UiStrings().Settings)
# Give QT Extra Hint that this is the Preferences Menu Item
self.settingsConfigureItem.setMenuRole(QtGui.QAction.PreferencesRole)
self.settingsImportItem = create_action(mainWindow,
u'settingsImportItem', category=UiStrings().Settings)
self.settingsExportItem = create_action(mainWindow,
@ -314,6 +318,8 @@ class Ui_MainWindow(object):
icon=u':/system/system_about.png',
shortcuts=[QtGui.QKeySequence(u'Ctrl+F1')],
category=UiStrings().Help, triggers=self.onAboutItemClicked)
# Give QT Extra Hint that this is an About Menu Item
self.aboutItem.setMenuRole(QtGui.QAction.AboutRole)
if os.name == u'nt':
self.localHelpFile = os.path.join(
AppLocation.get_directory(AppLocation.AppDir), 'OpenLP.chm')

View File

@ -43,7 +43,7 @@ log = logging.getLogger(__name__)
class MediaController(object):
"""
The implementation of the Media Controller. The Media Controller adds an own
class for every Player. Currently these are QtWebkit, Phonon and planed Vlc.
class for every Player. Currently these are QtWebkit, Phonon and Vlc.
"""
def __init__(self, parent):

View File

@ -66,6 +66,7 @@ if VLC_AVAILABLE:
AUDIO_EXT = [
u'*.mp3'
, u'*.wav'
, u'*.wma'
, u'*.ogg'
]

View File

@ -122,9 +122,9 @@ class RemoteTab(SettingsTab):
self.androidAppGroupBox.setTitle(
translate('RemotePlugin.RemoteTab', 'Android App'))
self.qrDescriptionLabel.setText(translate('RemotePlugin.RemoteTab',
'Scan the QR code or click <a '
'href="https://market.android.com/details?id=org.openlp.android">'
'download</a> to install the Android app from the Market.'))
'Scan the QR code or click <a href="https://play.google.com/store/'
'apps/details?id=org.openlp.android">download</a> to install the '
'Android app from Google Play.'))
def setUrls(self):
ipAddress = u'localhost'

View File

@ -147,6 +147,7 @@ class SongsPlugin(Plugin):
progressDialog = QtGui.QProgressDialog(
translate('SongsPlugin', 'Reindexing songs...'), UiStrings().Cancel,
0, maxSongs, self.formParent)
progressDialog.setWindowTitle(translate('SongsPlugin', 'Reindexing songs'))
progressDialog.setWindowModality(QtCore.Qt.WindowModal)
songs = self.manager.get_all_objects(Song)
for number, song in enumerate(songs):
@ -247,6 +248,7 @@ class SongsPlugin(Plugin):
return
progress = QtGui.QProgressDialog(self.formParent)
progress.setWindowModality(QtCore.Qt.WindowModal)
progress.setWindowTitle(translate('OpenLP.Ui', 'Importing Songs'))
progress.setLabelText(translate('OpenLP.Ui', 'Starting import...'))
progress.setCancelButton(None)
progress.setRange(0, len(song_dbs))

View File

@ -1,5 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS><TS version="2.0" language="af" sourcelanguage="">
<?xml version="1.0" ?><!DOCTYPE TS><TS language="af" sourcelanguage="" version="2.0">
<context>
<name>AlertsPlugin</name>
<message>
@ -102,7 +101,7 @@ Gaan steeds voort?</translation>
</message>
<message>
<location filename="openlp/plugins/alerts/forms/alertform.py" line="190"/>
<source>The alert text does not contain &apos;&lt;&gt;&apos;.
<source>The alert text does not contain '&lt;&gt;'.
Do you want to continue anyway?</source>
<translation>Die attent-teks bevat nie &apos;&lt;&gt;&apos; nie.
Gaan steeds voort?</translation>
@ -1369,7 +1368,7 @@ vraag afgelaai word en dus is &apos;n internet konneksie nodig.</translation>
<source>Are you sure you want to completely delete &quot;%s&quot; Bible from OpenLP?
You will need to re-import this Bible to use it again.</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
</context>
<context>
@ -1377,7 +1376,7 @@ You will need to re-import this Bible to use it again.</source>
<message>
<location filename="openlp/plugins/bibles/lib/opensong.py" line="118"/>
<source>Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import.</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
</context>
<context>
@ -1701,7 +1700,7 @@ word en dus is &apos;n Internet verbinding nodig.</translation>
<message>
<location filename="openlp/plugins/custom/forms/editcustomslidedialog.py" line="52"/>
<source>Edit Slide</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
</context>
<context>
@ -1709,10 +1708,7 @@ word en dus is &apos;n Internet verbinding nodig.</translation>
<message numerus="yes">
<location filename="openlp/plugins/custom/lib/mediaitem.py" line="179"/>
<source>Are you sure you want to delete the %n selected custom slide(s)?</source>
<translation>
<numerusform>Wis sekerlik die %n gekose aangepasde skyfie uit?</numerusform>
<numerusform>Wis sekerlik die %n gekose aangepasde skyfies uit?</numerusform>
</translation>
<translation><numerusform>Wis sekerlik die %n gekose aangepasde skyfie uit?</numerusform><numerusform>Wis sekerlik die %n gekose aangepasde skyfies uit?</numerusform></translation>
</message>
</context>
<context>
@ -2075,7 +2071,7 @@ Translators
%s
Japanese (ja)
%s
Norwegian Bokm&#xe5;l (nb)
Norwegian Bokmål (nb)
%s
Dutch (nl)
%s
@ -2186,8 +2182,8 @@ OpenLP is geskryf en word onderhou deur vrywilligers. As u graag wil sien dat me
</message>
<message>
<location filename="openlp/core/ui/aboutdialog.py" line="223"/>
<source>Copyright &#xa9; 2004-2012 %s
Portions copyright &#xa9; 2004-2012 %s</source>
<source>Copyright © 2004-2012 %s
Portions copyright © 2004-2012 %s</source>
<translation>Kopiereg © 2004-2012 %s
Gedeeltelike kopiereg © 2004-2012 %s</translation>
</message>
@ -5046,12 +5042,12 @@ Die inhoud enkodering is nie UTF-8 nie.</translation>
<message>
<location filename="openlp/core/ui/themewizard.py" line="554"/>
<source>Preview and Save</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/core/ui/themewizard.py" line="556"/>
<source>Preview the theme and save it.</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
</context>
<context>
@ -5447,7 +5443,7 @@ Die inhoud enkodering is nie UTF-8 nie.</translation>
</message>
<message>
<location filename="openlp/plugins/songs/lib/ui.py" line="42"/>
<source>&#xa9;</source>
<source>©</source>
<comment>Copyright symbol.</comment>
<translation>©</translation>
</message>
@ -6905,37 +6901,37 @@ Die enkodering is verantwoordelik vir die korrekte karrakter voorstelling.</tran
<message>
<location filename="openlp/plugins/songs/lib/importer.py" line="321"/>
<source>SundayPlus Song Files</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/plugins/songs/lib/importer.py" line="172"/>
<source>This importer has been disabled.</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/plugins/songs/lib/importer.py" line="260"/>
<source>MediaShout Database</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/plugins/songs/lib/importer.py" line="262"/>
<source>The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the &quot;pyodbc&quot; module.</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/plugins/songs/lib/importer.py" line="293"/>
<source>SongPro Text Files</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/plugins/songs/lib/importer.py" line="295"/>
<source>SongPro (Export File)</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/plugins/songs/lib/importer.py" line="297"/>
<source>In SongPro, export your songs using the File -&gt; Export menu</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
</context>
<context>
@ -6976,10 +6972,7 @@ Die enkodering is verantwoordelik vir die korrekte karrakter voorstelling.</tran
<message numerus="yes">
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="404"/>
<source>Are you sure you want to delete the %n selected song(s)?</source>
<translation>
<numerusform>Wis regtig die %n geselekteerde lied uit?</numerusform>
<numerusform>Wis regtig die %n geselekteerde liedere uit?</numerusform>
</translation>
<translation><numerusform>Wis regtig die %n geselekteerde lied uit?</numerusform><numerusform>Wis regtig die %n geselekteerde liedere uit?</numerusform></translation>
</message>
<message>
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="150"/>
@ -7023,7 +7016,7 @@ Die enkodering is verantwoordelik vir die korrekte karrakter voorstelling.</tran
<message>
<location filename="openlp/plugins/songs/lib/mediashoutimport.py" line="61"/>
<source>Unable to open the MediaShout database.</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
</context>
<context>
@ -7332,4 +7325,4 @@ Die enkodering is verantwoordelik vir die korrekte karrakter voorstelling.</tran
<translation>Lêer nie geldige ZionWorx CSV formaat nie.</translation>
</message>
</context>
</TS>
</TS>

View File

@ -1,5 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS><TS version="2.0" language="cs" sourcelanguage="">
<?xml version="1.0" ?><!DOCTYPE TS><TS language="cs" sourcelanguage="" version="2.0">
<context>
<name>AlertsPlugin</name>
<message>
@ -102,7 +101,7 @@ Chcete přesto pokračovat?</translation>
</message>
<message>
<location filename="openlp/plugins/alerts/forms/alertform.py" line="190"/>
<source>The alert text does not contain &apos;&lt;&gt;&apos;.
<source>The alert text does not contain '&lt;&gt;'.
Do you want to continue anyway?</source>
<translation>Text upozornění neobsahuje &apos;&lt;&gt;&apos;.
Chcete přesto pokračovat?</translation>
@ -1707,11 +1706,7 @@ Upozornění: Verše z www Bible budou stáhnuty na vyžádání a proto je vyž
<message numerus="yes">
<location filename="openlp/plugins/custom/lib/mediaitem.py" line="179"/>
<source>Are you sure you want to delete the %n selected custom slide(s)?</source>
<translation>
<numerusform>Jste si jisti, že chcete smazat %n vybraný uživatelský snímek?</numerusform>
<numerusform>Jste si jisti, že chcete smazat %n vybrané uživatelské snímky?</numerusform>
<numerusform>Jste si jisti, že chcete smazat %n vybraných uživatelských snímků?</numerusform>
</translation>
<translation><numerusform>Jste si jisti, že chcete smazat %n vybraný uživatelský snímek?</numerusform><numerusform>Jste si jisti, že chcete smazat %n vybrané uživatelské snímky?</numerusform><numerusform>Jste si jisti, že chcete smazat %n vybraných uživatelských snímků?</numerusform></translation>
</message>
</context>
<context>
@ -2076,7 +2071,7 @@ Translators
%s
Japanese (ja)
%s
Norwegian Bokm&#xe5;l (nb)
Norwegian Bokmål (nb)
%s
Dutch (nl)
%s
@ -2186,8 +2181,8 @@ OpenLP vytváří a udržují dobrovolníci. Pokud má existovat více volně do
</message>
<message>
<location filename="openlp/core/ui/aboutdialog.py" line="223"/>
<source>Copyright &#xa9; 2004-2012 %s
Portions copyright &#xa9; 2004-2012 %s</source>
<source>Copyright © 2004-2012 %s
Portions copyright © 2004-2012 %s</source>
<translation>Autorská práva © 2004-2012 %s
Částečná autorská práva © 2004-2012 %s</translation>
</message>
@ -5444,7 +5439,7 @@ Obsah souboru není v kódování UTF-8.</translation>
</message>
<message>
<location filename="openlp/plugins/songs/lib/ui.py" line="42"/>
<source>&#xa9;</source>
<source>©</source>
<comment>Copyright symbol.</comment>
<translation>©</translation>
</message>
@ -6972,11 +6967,7 @@ Kódování zodpovídá za správnou reprezentaci znaků.</translation>
<message numerus="yes">
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="404"/>
<source>Are you sure you want to delete the %n selected song(s)?</source>
<translation>
<numerusform>Jste si jisti, že chcete smazat %n vybranou píseň?</numerusform>
<numerusform>Jste si jisti, že chcete smazat %n vybrané písně?</numerusform>
<numerusform>Jste si jisti, že chcete smazat %n vybraných písní?</numerusform>
</translation>
<translation><numerusform>Jste si jisti, že chcete smazat %n vybranou píseň?</numerusform><numerusform>Jste si jisti, že chcete smazat %n vybrané písně?</numerusform><numerusform>Jste si jisti, že chcete smazat %n vybraných písní?</numerusform></translation>
</message>
<message>
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="150"/>
@ -7329,4 +7320,4 @@ Kódování zodpovídá za správnou reprezentaci znaků.</translation>
<translation>Soubor není platný ZionWorx CSV formát.</translation>
</message>
</context>
</TS>
</TS>

File diff suppressed because it is too large Load Diff

View File

@ -1,5 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS><TS version="2.0" language="de" sourcelanguage="">
<?xml version="1.0" ?><!DOCTYPE TS><TS language="de" sourcelanguage="" version="2.0">
<context>
<name>AlertsPlugin</name>
<message>
@ -102,7 +101,7 @@ Möchten Sie dennoch fortfahren?</translation>
</message>
<message>
<location filename="openlp/plugins/alerts/forms/alertform.py" line="190"/>
<source>The alert text does not contain &apos;&lt;&gt;&apos;.
<source>The alert text does not contain '&lt;&gt;'.
Do you want to continue anyway?</source>
<translation>Der Hinweistext enthält nicht &apos;&lt;&gt;&apos;.
Möchten Sie dennoch fortfahren?</translation>
@ -1371,7 +1370,7 @@ werden. Daher ist eine Internetverbindung erforderlich.</translation>
<source>Are you sure you want to completely delete &quot;%s&quot; Bible from OpenLP?
You will need to re-import this Bible to use it again.</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
</context>
<context>
@ -1379,7 +1378,7 @@ You will need to re-import this Bible to use it again.</source>
<message>
<location filename="openlp/plugins/bibles/lib/opensong.py" line="118"/>
<source>Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import.</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
</context>
<context>
@ -1702,7 +1701,7 @@ Bitte beachten Sie, dass Bibeltexte von Onlinebibeln bei Bedarf heruntergeladen
<message>
<location filename="openlp/plugins/custom/forms/editcustomslidedialog.py" line="52"/>
<source>Edit Slide</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
</context>
<context>
@ -1710,10 +1709,7 @@ Bitte beachten Sie, dass Bibeltexte von Onlinebibeln bei Bedarf heruntergeladen
<message numerus="yes">
<location filename="openlp/plugins/custom/lib/mediaitem.py" line="179"/>
<source>Are you sure you want to delete the %n selected custom slide(s)?</source>
<translation>
<numerusform>Soll die markierte Sonderfolie wirklich gelöscht werden?</numerusform>
<numerusform>Sollen die markierten %n Sonderfolien wirklich gelöscht werden?</numerusform>
</translation>
<translation><numerusform>Soll die markierte Sonderfolie wirklich gelöscht werden?</numerusform><numerusform>Sollen die markierten %n Sonderfolien wirklich gelöscht werden?</numerusform></translation>
</message>
</context>
<context>
@ -2078,7 +2074,7 @@ Translators
%s
Japanese (ja)
%s
Norwegian Bokm&#xe5;l (nb)
Norwegian Bokmål (nb)
%s
Dutch (nl)
%s
@ -2191,8 +2187,8 @@ OpenLP wird von freiwilligen Helfern programmiert und gewartet. Wenn Sie sich me
</message>
<message>
<location filename="openlp/core/ui/aboutdialog.py" line="223"/>
<source>Copyright &#xa9; 2004-2012 %s
Portions copyright &#xa9; 2004-2012 %s</source>
<source>Copyright © 2004-2012 %s
Portions copyright © 2004-2012 %s</source>
<translation>Copyright © 2004-2012 %s
Anteiliges Copyright © 2004-2012 %s</translation>
</message>
@ -5054,12 +5050,12 @@ Der Inhalt ist nicht in UTF-8 kodiert.</translation>
<message>
<location filename="openlp/core/ui/themewizard.py" line="554"/>
<source>Preview and Save</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/core/ui/themewizard.py" line="556"/>
<source>Preview the theme and save it.</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
</context>
<context>
@ -5455,7 +5451,7 @@ Der Inhalt ist nicht in UTF-8 kodiert.</translation>
</message>
<message>
<location filename="openlp/plugins/songs/lib/ui.py" line="42"/>
<source>&#xa9;</source>
<source>©</source>
<comment>Copyright symbol.</comment>
<translation>©</translation>
</message>
@ -6913,37 +6909,37 @@ Easy Worship]</translation>
<message>
<location filename="openlp/plugins/songs/lib/importer.py" line="321"/>
<source>SundayPlus Song Files</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/plugins/songs/lib/importer.py" line="172"/>
<source>This importer has been disabled.</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/plugins/songs/lib/importer.py" line="260"/>
<source>MediaShout Database</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/plugins/songs/lib/importer.py" line="262"/>
<source>The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the &quot;pyodbc&quot; module.</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/plugins/songs/lib/importer.py" line="293"/>
<source>SongPro Text Files</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/plugins/songs/lib/importer.py" line="295"/>
<source>SongPro (Export File)</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/plugins/songs/lib/importer.py" line="297"/>
<source>In SongPro, export your songs using the File -&gt; Export menu</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
</context>
<context>
@ -6984,10 +6980,7 @@ Easy Worship]</translation>
<message numerus="yes">
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="404"/>
<source>Are you sure you want to delete the %n selected song(s)?</source>
<translation>
<numerusform>Soll das markierte Lied wirklich gelöscht werden?</numerusform>
<numerusform>Sollen die markierten %n Lieder wirklich gelöscht werden?</numerusform>
</translation>
<translation><numerusform>Soll das markierte Lied wirklich gelöscht werden?</numerusform><numerusform>Sollen die markierten %n Lieder wirklich gelöscht werden?</numerusform></translation>
</message>
<message>
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="150"/>
@ -7031,7 +7024,7 @@ Easy Worship]</translation>
<message>
<location filename="openlp/plugins/songs/lib/mediashoutimport.py" line="61"/>
<source>Unable to open the MediaShout database.</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
</context>
<context>
@ -7340,4 +7333,4 @@ Easy Worship]</translation>
<translation>Die Datei hat kein gültiges ZionWorx CSV Format.</translation>
</message>
</context>
</TS>
</TS>

View File

@ -1,5 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS><TS version="2.0" language="el" sourcelanguage="">
<?xml version="1.0" ?><!DOCTYPE TS><TS language="el" sourcelanguage="" version="2.0">
<context>
<name>AlertsPlugin</name>
<message>
@ -102,7 +101,7 @@ Do you want to continue anyway?</source>
</message>
<message>
<location filename="openlp/plugins/alerts/forms/alertform.py" line="190"/>
<source>The alert text does not contain &apos;&lt;&gt;&apos;.
<source>The alert text does not contain '&lt;&gt;'.
Do you want to continue anyway?</source>
<translation>Η ειδοποίηση δεν περιέχει &apos;&lt;&gt;&apos;.
Θέλετε να συνεχίσετε οπωσδήποτε;</translation>
@ -1368,7 +1367,7 @@ demand and thus an internet connection is required.</source>
<source>Are you sure you want to completely delete &quot;%s&quot; Bible from OpenLP?
You will need to re-import this Bible to use it again.</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
</context>
<context>
@ -1376,7 +1375,7 @@ You will need to re-import this Bible to use it again.</source>
<message>
<location filename="openlp/plugins/bibles/lib/opensong.py" line="118"/>
<source>Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import.</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
</context>
<context>
@ -1699,7 +1698,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I
<message>
<location filename="openlp/plugins/custom/forms/editcustomslidedialog.py" line="52"/>
<source>Edit Slide</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
</context>
<context>
@ -1707,10 +1706,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I
<message numerus="yes">
<location filename="openlp/plugins/custom/lib/mediaitem.py" line="179"/>
<source>Are you sure you want to delete the %n selected custom slide(s)?</source>
<translation>
<numerusform>Είστε σίγουροι ότι θέλετε να διαγράψετε την %n επιλεγμένη εξατομικευμένη διαφάνεια;</numerusform>
<numerusform>Είστε σίγουροι ότι θέλετε να διαγράψετε τις %n επιλεγμένες εξατομικευμένες διαφάνειες;</numerusform>
</translation>
<translation><numerusform>Είστε σίγουροι ότι θέλετε να διαγράψετε την %n επιλεγμένη εξατομικευμένη διαφάνεια;</numerusform><numerusform>Είστε σίγουροι ότι θέλετε να διαγράψετε τις %n επιλεγμένες εξατομικευμένες διαφάνειες;</numerusform></translation>
</message>
</context>
<context>
@ -2075,7 +2071,7 @@ Translators
%s
Japanese (ja)
%s
Norwegian Bokm&#xe5;l (nb)
Norwegian Bokmål (nb)
%s
Dutch (nl)
%s
@ -2185,8 +2181,8 @@ OpenLP is written and maintained by volunteers. If you would like to see more fr
</message>
<message>
<location filename="openlp/core/ui/aboutdialog.py" line="223"/>
<source>Copyright &#xa9; 2004-2012 %s
Portions copyright &#xa9; 2004-2012 %s</source>
<source>Copyright © 2004-2012 %s
Portions copyright © 2004-2012 %s</source>
<translation>Πνευματικά Δικαιώματα © 2004-2012 %s
Τμηματικά πνευματικά δικαιώματα © 2004-2012 %s</translation>
</message>
@ -5047,12 +5043,12 @@ The content encoding is not UTF-8.</source>
<message>
<location filename="openlp/core/ui/themewizard.py" line="554"/>
<source>Preview and Save</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/core/ui/themewizard.py" line="556"/>
<source>Preview the theme and save it.</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
</context>
<context>
@ -5448,7 +5444,7 @@ The content encoding is not UTF-8.</source>
</message>
<message>
<location filename="openlp/plugins/songs/lib/ui.py" line="42"/>
<source>&#xa9;</source>
<source>©</source>
<comment>Copyright symbol.</comment>
<translation>©</translation>
</message>
@ -6905,37 +6901,37 @@ The encoding is responsible for the correct character representation.</source>
<message>
<location filename="openlp/plugins/songs/lib/importer.py" line="321"/>
<source>SundayPlus Song Files</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/plugins/songs/lib/importer.py" line="172"/>
<source>This importer has been disabled.</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/plugins/songs/lib/importer.py" line="260"/>
<source>MediaShout Database</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/plugins/songs/lib/importer.py" line="262"/>
<source>The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the &quot;pyodbc&quot; module.</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/plugins/songs/lib/importer.py" line="293"/>
<source>SongPro Text Files</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/plugins/songs/lib/importer.py" line="295"/>
<source>SongPro (Export File)</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/plugins/songs/lib/importer.py" line="297"/>
<source>In SongPro, export your songs using the File -&gt; Export menu</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
</context>
<context>
@ -6976,10 +6972,7 @@ The encoding is responsible for the correct character representation.</source>
<message numerus="yes">
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="404"/>
<source>Are you sure you want to delete the %n selected song(s)?</source>
<translation>
<numerusform>Είστε σίγουροι ότι θέλετε να διαγράψετε τον %n επιλεγμένο ύμνο;</numerusform>
<numerusform>Είστε σίγουροι ότι θέλετε να διαγράψετε τους %n επιλεγμένους ύμνους;</numerusform>
</translation>
<translation><numerusform>Είστε σίγουροι ότι θέλετε να διαγράψετε τον %n επιλεγμένο ύμνο;</numerusform><numerusform>Είστε σίγουροι ότι θέλετε να διαγράψετε τους %n επιλεγμένους ύμνους;</numerusform></translation>
</message>
<message>
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="150"/>
@ -7023,7 +7016,7 @@ The encoding is responsible for the correct character representation.</source>
<message>
<location filename="openlp/plugins/songs/lib/mediashoutimport.py" line="61"/>
<source>Unable to open the MediaShout database.</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
</context>
<context>
@ -7332,4 +7325,4 @@ The encoding is responsible for the correct character representation.</source>
<translation>Το αρχείο δεν έχει την κατάλληλη μορφή του ZionWorx CSV.</translation>
</message>
</context>
</TS>
</TS>

View File

@ -1,5 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS><TS version="2.0" language="en" sourcelanguage="">
<?xml version="1.0" ?><!DOCTYPE TS><TS language="en" sourcelanguage="" version="2.0">
<context>
<name>AlertsPlugin</name>
<message>
@ -102,7 +101,7 @@ Do you want to continue anyway?</translation>
</message>
<message>
<location filename="openlp/plugins/alerts/forms/alertform.py" line="190"/>
<source>The alert text does not contain &apos;&lt;&gt;&apos;.
<source>The alert text does not contain '&lt;&gt;'.
Do you want to continue anyway?</source>
<translation>The alert text does not contain &apos;&lt;&gt;&apos;.
Do you want to continue anyway?</translation>
@ -1709,10 +1708,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I
<message numerus="yes">
<location filename="openlp/plugins/custom/lib/mediaitem.py" line="179"/>
<source>Are you sure you want to delete the %n selected custom slide(s)?</source>
<translation>
<numerusform>Are you sure you want to delete the %n selected custom slide(s)?</numerusform>
<numerusform>Are you sure you want to delete the %n selected custom slide(s)?</numerusform>
</translation>
<translation><numerusform>Are you sure you want to delete the %n selected custom slide(s)?</numerusform><numerusform>Are you sure you want to delete the %n selected custom slide(s)?</numerusform></translation>
</message>
</context>
<context>
@ -2077,7 +2073,7 @@ Translators
%s
Japanese (ja)
%s
Norwegian Bokm&#xe5;l (nb)
Norwegian Bokmål (nb)
%s
Dutch (nl)
%s
@ -2187,8 +2183,8 @@ OpenLP is written and maintained by volunteers. If you would like to see more fr
</message>
<message>
<location filename="openlp/core/ui/aboutdialog.py" line="223"/>
<source>Copyright &#xa9; 2004-2012 %s
Portions copyright &#xa9; 2004-2012 %s</source>
<source>Copyright © 2004-2012 %s
Portions copyright © 2004-2012 %s</source>
<translation>Copyright © 2004-2012 %s
Portions copyright © 2004-2012 %s</translation>
</message>
@ -5449,7 +5445,7 @@ The content encoding is not UTF-8.</translation>
</message>
<message>
<location filename="openlp/plugins/songs/lib/ui.py" line="42"/>
<source>&#xa9;</source>
<source>©</source>
<comment>Copyright symbol.</comment>
<translation>©</translation>
</message>
@ -6977,10 +6973,7 @@ The encoding is responsible for the correct character representation.</translati
<message numerus="yes">
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="404"/>
<source>Are you sure you want to delete the %n selected song(s)?</source>
<translation>
<numerusform>Are you sure you want to delete the %n selected song(s)?</numerusform>
<numerusform>Are you sure you want to delete the %n selected song(s)?</numerusform>
</translation>
<translation><numerusform>Are you sure you want to delete the %n selected song(s)?</numerusform><numerusform>Are you sure you want to delete the %n selected song(s)?</numerusform></translation>
</message>
<message>
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="150"/>
@ -7333,4 +7326,4 @@ The encoding is responsible for the correct character representation.</translati
<translation>File not valid ZionWorx CSV format.</translation>
</message>
</context>
</TS>
</TS>

View File

@ -1,5 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS><TS version="2.0" language="en_GB" sourcelanguage="">
<?xml version="1.0" ?><!DOCTYPE TS><TS language="en_GB" sourcelanguage="" version="2.0">
<context>
<name>AlertsPlugin</name>
<message>
@ -102,7 +101,7 @@ Do you want to continue anyway?</translation>
</message>
<message>
<location filename="openlp/plugins/alerts/forms/alertform.py" line="190"/>
<source>The alert text does not contain &apos;&lt;&gt;&apos;.
<source>The alert text does not contain '&lt;&gt;'.
Do you want to continue anyway?</source>
<translation>The alert text does not contain &apos;&lt;&gt;&apos;.
Do you want to continue anyway?</translation>
@ -1709,10 +1708,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I
<message numerus="yes">
<location filename="openlp/plugins/custom/lib/mediaitem.py" line="179"/>
<source>Are you sure you want to delete the %n selected custom slide(s)?</source>
<translation>
<numerusform>Are you sure you want to delete the %n selected custom slide(s)?</numerusform>
<numerusform>Are you sure you want to delete the %n selected custom slide(s)?</numerusform>
</translation>
<translation><numerusform>Are you sure you want to delete the %n selected custom slide(s)?</numerusform><numerusform>Are you sure you want to delete the %n selected custom slide(s)?</numerusform></translation>
</message>
</context>
<context>
@ -2077,7 +2073,7 @@ Translators
%s
Japanese (ja)
%s
Norwegian Bokm&#xe5;l (nb)
Norwegian Bokmål (nb)
%s
Dutch (nl)
%s
@ -2187,8 +2183,8 @@ OpenLP is written and maintained by volunteers. If you would like to see more fr
</message>
<message>
<location filename="openlp/core/ui/aboutdialog.py" line="223"/>
<source>Copyright &#xa9; 2004-2012 %s
Portions copyright &#xa9; 2004-2012 %s</source>
<source>Copyright © 2004-2012 %s
Portions copyright © 2004-2012 %s</source>
<translation>Copyright © 2004-2012 %s
Portions copyright © 2004-2012 %s</translation>
</message>
@ -5448,7 +5444,7 @@ The content encoding is not UTF-8.</translation>
</message>
<message>
<location filename="openlp/plugins/songs/lib/ui.py" line="42"/>
<source>&#xa9;</source>
<source>©</source>
<comment>Copyright symbol.</comment>
<translation>©</translation>
</message>
@ -6976,10 +6972,7 @@ The encoding is responsible for the correct character representation.</translati
<message numerus="yes">
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="404"/>
<source>Are you sure you want to delete the %n selected song(s)?</source>
<translation>
<numerusform>Are you sure you want to delete the %n selected song?</numerusform>
<numerusform>Are you sure you want to delete the %n selected songs?</numerusform>
</translation>
<translation><numerusform>Are you sure you want to delete the %n selected song?</numerusform><numerusform>Are you sure you want to delete the %n selected songs?</numerusform></translation>
</message>
<message>
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="150"/>
@ -7332,4 +7325,4 @@ The encoding is responsible for the correct character representation.</translati
<translation>File not valid ZionWorx CSV format.</translation>
</message>
</context>
</TS>
</TS>

View File

@ -1,5 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS><TS version="2.0" language="en_ZA" sourcelanguage="">
<?xml version="1.0" ?><!DOCTYPE TS><TS language="en_ZA" sourcelanguage="" version="2.0">
<context>
<name>AlertsPlugin</name>
<message>
@ -102,7 +101,7 @@ Do you want to continue anyway?</translation>
</message>
<message>
<location filename="openlp/plugins/alerts/forms/alertform.py" line="190"/>
<source>The alert text does not contain &apos;&lt;&gt;&apos;.
<source>The alert text does not contain '&lt;&gt;'.
Do you want to continue anyway?</source>
<translation>The alert text does not contain &apos;&lt;&gt;&apos;.
Do you want to continue anyway?</translation>
@ -666,44 +665,44 @@ Do you want to continue anyway?</translation>
<message>
<location filename="openlp/plugins/bibles/forms/editbibleform.py" line="156"/>
<source>You need to specify a version name for your Bible.</source>
<translation type="unfinished">You need to specify a version name for your Bible.</translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/plugins/bibles/forms/editbibleform.py" line="162"/>
<source>You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such.</source>
<translation type="unfinished">You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such.</translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/plugins/bibles/forms/editbibleform.py" line="171"/>
<source>Bible Exists</source>
<translation type="unfinished">Bible Exists</translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/plugins/bibles/forms/editbibleform.py" line="171"/>
<source>This Bible already exists. Please import a different Bible or first delete the existing one.</source>
<translation type="unfinished">This Bible already exists. Please import a different Bible or first delete the existing one.</translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/plugins/bibles/forms/editbibleform.py" line="186"/>
<source>You need to specify a book name for &quot;%s&quot;.</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/plugins/bibles/forms/editbibleform.py" line="193"/>
<source>The book name &quot;%s&quot; is not correct.
Numbers can only be used at the beginning and must
be followed by one or more non-numeric characters.</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/plugins/bibles/forms/editbibleform.py" line="205"/>
<source>Duplicate Book Name</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/plugins/bibles/forms/editbibleform.py" line="205"/>
<source>The Book Name &quot;%s&quot; has been entered more than once.</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
</context>
<context>
@ -879,23 +878,23 @@ Please clear this edit line to use the default value.</translation>
<message>
<location filename="openlp/plugins/bibles/lib/biblestab.py" line="281"/>
<source>Default Bible Language</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/plugins/bibles/lib/biblestab.py" line="283"/>
<source>Book name language in search field,
search results and on display:</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/plugins/bibles/lib/biblestab.py" line="286"/>
<source>Bible Language</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/plugins/bibles/lib/biblestab.py" line="288"/>
<source>Application Language</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
</context>
<context>
@ -938,7 +937,7 @@ search results and on display:</source>
<message>
<location filename="openlp/plugins/bibles/forms/booknamedialog.py" line="93"/>
<source>The following book name cannot be matched up internally. Please select the corresponding name from the list.</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
</context>
<context>
@ -973,68 +972,68 @@ search results and on display:</source>
<message>
<location filename="openlp/plugins/bibles/forms/editbibledialog.py" line="146"/>
<source>Bible Editor</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/plugins/bibles/forms/editbibledialog.py" line="152"/>
<source>License Details</source>
<translation type="unfinished">License Details</translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/plugins/bibles/forms/editbibledialog.py" line="154"/>
<source>Version name:</source>
<translation type="unfinished">Version name:</translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/plugins/bibles/forms/editbibledialog.py" line="156"/>
<source>Copyright:</source>
<translation type="unfinished">Copyright:</translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/plugins/bibles/forms/editbibledialog.py" line="158"/>
<source>Permissions:</source>
<translation type="unfinished">Permissions:</translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/plugins/bibles/forms/editbibledialog.py" line="160"/>
<source>Default Bible Language</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/plugins/bibles/forms/editbibledialog.py" line="162"/>
<source>Book name language in search field, search results and on display:</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/plugins/bibles/forms/editbibledialog.py" line="166"/>
<source>Global Settings</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/plugins/bibles/forms/editbibledialog.py" line="168"/>
<source>Bible Language</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/plugins/bibles/forms/editbibledialog.py" line="170"/>
<source>Application Language</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/plugins/bibles/forms/editbibledialog.py" line="173"/>
<source>English</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/plugins/bibles/forms/editbibleform.py" line="82"/>
<source>This is a Web Download Bible.
It is not possible to customize the Book Names.</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/plugins/bibles/forms/editbibleform.py" line="87"/>
<source>To use the customized book names, &quot;Bible language&quot; must be selected on the Meta Data tab or, if &quot;Global settings&quot; is selected, on the Bible page in Configure OpenLP.</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
</context>
<context>
@ -1352,19 +1351,19 @@ demand and thus an internet connection is required.</translation>
<message>
<location filename="openlp/plugins/bibles/lib/mediaitem.py" line="358"/>
<source>Search Scripture Reference...</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/plugins/bibles/lib/mediaitem.py" line="358"/>
<source>Search Text...</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/plugins/bibles/lib/mediaitem.py" line="570"/>
<source>Are you sure you want to completely delete &quot;%s&quot; Bible from OpenLP?
You will need to re-import this Bible to use it again.</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
</context>
<context>
@ -1372,7 +1371,7 @@ You will need to re-import this Bible to use it again.</source>
<message>
<location filename="openlp/plugins/bibles/lib/opensong.py" line="118"/>
<source>Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import.</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
</context>
<context>
@ -1695,7 +1694,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I
<message>
<location filename="openlp/plugins/custom/forms/editcustomslidedialog.py" line="52"/>
<source>Edit Slide</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
</context>
<context>
@ -1703,10 +1702,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I
<message numerus="yes">
<location filename="openlp/plugins/custom/lib/mediaitem.py" line="179"/>
<source>Are you sure you want to delete the %n selected custom slide(s)?</source>
<translation>
<numerusform>Are you sure you want to delete the selected custom slide?</numerusform>
<numerusform>Are you sure you want to delete the %n selected custom slides?</numerusform>
</translation>
<translation><numerusform>Are you sure you want to delete the selected custom slide?</numerusform><numerusform>Are you sure you want to delete the %n selected custom slides?</numerusform></translation>
</message>
</context>
<context>
@ -1838,7 +1834,7 @@ Do you want to add the other images anyway?</translation>
<message>
<location filename="openlp/plugins/images/lib/imagetab.py" line="74"/>
<source>Visible background for images with aspect ratio different to screen.</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
</context>
<context>
@ -2071,7 +2067,7 @@ Translators
%s
Japanese (ja)
%s
Norwegian Bokm&#xe5;l (nb)
Norwegian Bokmål (nb)
%s
Dutch (nl)
%s
@ -2181,8 +2177,8 @@ OpenLP is written and maintained by volunteers. If you would like to see more fr
</message>
<message>
<location filename="openlp/core/ui/aboutdialog.py" line="223"/>
<source>Copyright &#xa9; 2004-2012 %s
Portions copyright &#xa9; 2004-2012 %s</source>
<source>Copyright © 2004-2012 %s
Portions copyright © 2004-2012 %s</source>
<translation>Copyright © 2004-2012 %s
Portions copyright © 2004-2012 %s</translation>
</message>
@ -2379,84 +2375,84 @@ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for
<message>
<location filename="openlp/core/ui/advancedtab.py" line="344"/>
<source>Data Location</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/core/ui/advancedtab.py" line="409"/>
<source>Current path:</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/core/ui/advancedtab.py" line="411"/>
<source>Custom path:</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/core/ui/advancedtab.py" line="413"/>
<source>Browse for new data file location.</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/core/ui/advancedtab.py" line="416"/>
<source>Set the data location to the default.</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/core/ui/advancedtab.py" line="419"/>
<source>Cancel</source>
<translation type="unfinished">Cancel</translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/core/ui/advancedtab.py" line="422"/>
<source>Cancel OpenLP data directory location change.</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/core/ui/advancedtab.py" line="425"/>
<source>Copy data to new location.</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/core/ui/advancedtab.py" line="428"/>
<source>Copy the OpenLP data files to the new location.</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/core/ui/advancedtab.py" line="431"/>
<source>&lt;strong&gt;WARNING:&lt;/strong&gt; New data directory location contains OpenLP data files. These files WILL be replaced during a copy.</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/core/ui/advancedtab.py" line="519"/>
<source>Data Directory Error</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/core/ui/advancedtab.py" line="671"/>
<source>Select Data Directory Location</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/core/ui/advancedtab.py" line="683"/>
<source>Confirm Data Directory Change</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/core/ui/advancedtab.py" line="710"/>
<source>Reset Data Directory</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/core/ui/advancedtab.py" line="710"/>
<source>Are you sure you want to change the location of the OpenLP data directory to the default location?
This location will be used after OpenLP is closed.</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/core/ui/advancedtab.py" line="746"/>
<source>Overwrite Existing Data</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
</context>
<context>
@ -2810,14 +2806,14 @@ Version: %s
<source>No Internet connection was found. The First Time Wizard needs an Internet connection in order to be able to download sample songs, Bibles and themes. Click the Finish button now to start OpenLP with initial settings and no sample data.
To re-run the First Time Wizard and import this sample data at a later time, check your Internet connection and re-run this wizard by selecting &quot;Tools/Re-run First Time Wizard&quot; from OpenLP.</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="242"/>
<source>
To cancel the First Time Wizard completely (and not start OpenLP), click the Cancel button now.</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
</context>
<context>
@ -3114,22 +3110,22 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can
<message>
<location filename="openlp/core/ui/advancedtab.py" line="442"/>
<source>Behavior of next/previous on the last/first slide:</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/core/ui/advancedtab.py" line="444"/>
<source>&amp;Remain on Slide</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/core/ui/advancedtab.py" line="446"/>
<source>&amp;Wrap around</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/core/ui/advancedtab.py" line="448"/>
<source>&amp;Move to next/previous service item</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
</context>
<context>
@ -3636,7 +3632,7 @@ Importing incorrect settings may cause erratic behaviour or OpenLP to terminate
<message>
<location filename="openlp/core/ui/mainwindow.py" line="1520"/>
<source>New Data Directory Error</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
</context>
<context>
@ -4193,12 +4189,12 @@ The content encoding is not UTF-8.</translation>
<message>
<location filename="openlp/core/ui/servicemanager.py" line="566"/>
<source>Error Saving File</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/core/ui/servicemanager.py" line="566"/>
<source>There was an error saving your file.</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
</context>
<context>
@ -5036,12 +5032,12 @@ The content encoding is not UTF-8.</translation>
<message>
<location filename="openlp/core/ui/themewizard.py" line="554"/>
<source>Preview and Save</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/core/ui/themewizard.py" line="556"/>
<source>Preview the theme and save it.</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
</context>
<context>
@ -5437,7 +5433,7 @@ The content encoding is not UTF-8.</translation>
</message>
<message>
<location filename="openlp/plugins/songs/lib/ui.py" line="42"/>
<source>&#xa9;</source>
<source>©</source>
<comment>Copyright symbol.</comment>
<translation>©</translation>
</message>
@ -5636,53 +5632,53 @@ The content encoding is not UTF-8.</translation>
<location filename="openlp/core/lib/ui.py" line="124"/>
<source>Search Themes...</source>
<comment>Search bar place holder text </comment>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/core/lib/ui.py" line="133"/>
<source>Optional &amp;Split</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/core/lib/ui.py" line="84"/>
<source>Invalid Folder Selected</source>
<comment>Singular</comment>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/core/lib/ui.py" line="86"/>
<source>Invalid File Selected</source>
<comment>Singular</comment>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/core/lib/ui.py" line="87"/>
<source>Invalid Files Selected</source>
<comment>Plural</comment>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/core/lib/ui.py" line="102"/>
<source>No Folder Selected</source>
<comment>Singular</comment>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/core/ui/wizard.py" line="65"/>
<source>Open %s Folder</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/core/ui/wizard.py" line="69"/>
<source>You need to specify one %s file to import from.</source>
<comment>A file type e.g. OpenSong</comment>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/core/ui/wizard.py" line="73"/>
<source>You need to specify one %s folder to import from.</source>
<comment>A song format e.g. PowerSong</comment>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
</context>
<context>
@ -5808,12 +5804,12 @@ The content encoding is not UTF-8.</translation>
<message>
<location filename="openlp/plugins/presentations/lib/mediaitem.py" line="294"/>
<source>The presentation %s is incomplete, please reload.</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/plugins/presentations/lib/mediaitem.py" line="305"/>
<source>The presentation %s no longer exists.</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
</context>
<context>
@ -5950,22 +5946,22 @@ The content encoding is not UTF-8.</translation>
<message>
<location filename="openlp/plugins/remotes/lib/httpserver.py" line="295"/>
<source>Home</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/plugins/remotes/lib/httpserver.py" line="298"/>
<source>Theme</source>
<translation type="unfinished">Theme</translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/plugins/remotes/lib/httpserver.py" line="299"/>
<source>Desktop</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/plugins/remotes/lib/httpserver.py" line="308"/>
<source>Add &amp;amp; Go to Service</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
</context>
<context>
@ -6432,12 +6428,12 @@ The encoding is responsible for the correct character representation.</translati
<message>
<location filename="openlp/plugins/bibles/forms/editbibledialog.py" line="149"/>
<source>Meta Data</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/plugins/bibles/forms/editbibledialog.py" line="177"/>
<source>Custom Book Names</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
</context>
<context>
@ -6859,72 +6855,72 @@ The encoding is responsible for the correct character representation.</translati
<message>
<location filename="openlp/plugins/songs/lib/importer.py" line="222"/>
<source>CCLI SongSelect Files</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/plugins/songs/lib/importer.py" line="237"/>
<source>EasySlides XML File</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/plugins/songs/lib/importer.py" line="245"/>
<source>EasyWorship Song Database</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/plugins/songs/lib/importer.py" line="229"/>
<source>DreamBeam Song Files</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/plugins/songs/lib/importer.py" line="278"/>
<source>You need to specify a valid PowerSong 1.0 database folder.</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/plugins/songs/lib/importer.py" line="336"/>
<source>ZionWorx (CSV)</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/plugins/songs/lib/importer.py" line="338"/>
<source>First convert your ZionWorx database to a CSV text file, as explained in the &lt;a href=&quot;http://manual.openlp.org/songs.html#importing-from-zionworx&quot;&gt;User Manual&lt;/a&gt;.</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/plugins/songs/lib/importer.py" line="321"/>
<source>SundayPlus Song Files</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/plugins/songs/lib/importer.py" line="172"/>
<source>This importer has been disabled.</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/plugins/songs/lib/importer.py" line="260"/>
<source>MediaShout Database</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/plugins/songs/lib/importer.py" line="262"/>
<source>The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the &quot;pyodbc&quot; module.</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/plugins/songs/lib/importer.py" line="293"/>
<source>SongPro Text Files</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/plugins/songs/lib/importer.py" line="295"/>
<source>SongPro (Export File)</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/plugins/songs/lib/importer.py" line="297"/>
<source>In SongPro, export your songs using the File -&gt; Export menu</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
</context>
<context>
@ -6965,10 +6961,7 @@ The encoding is responsible for the correct character representation.</translati
<message numerus="yes">
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="404"/>
<source>Are you sure you want to delete the %n selected song(s)?</source>
<translation>
<numerusform>Are you sure you want to delete the %n selected song(s)?</numerusform>
<numerusform>Are you sure you want to delete the %n selected song(s)?</numerusform>
</translation>
<translation><numerusform>Are you sure you want to delete the %n selected song(s)?</numerusform><numerusform>Are you sure you want to delete the %n selected song(s)?</numerusform></translation>
</message>
<message>
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="150"/>
@ -6984,27 +6977,27 @@ The encoding is responsible for the correct character representation.</translati
<message>
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="154"/>
<source>Search Titles...</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="154"/>
<source>Search Entire Song...</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="154"/>
<source>Search Lyrics...</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="154"/>
<source>Search Authors...</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="154"/>
<source>Search Song Books...</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
</context>
<context>
@ -7012,7 +7005,7 @@ The encoding is responsible for the correct character representation.</translati
<message>
<location filename="openlp/plugins/songs/lib/mediashoutimport.py" line="61"/>
<source>Unable to open the MediaShout database.</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
</context>
<context>
@ -7044,12 +7037,12 @@ The encoding is responsible for the correct character representation.</translati
<message>
<location filename="openlp/plugins/songs/lib/powersongimport.py" line="103"/>
<source>No songs to import.</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/plugins/songs/lib/powersongimport.py" line="155"/>
<source>Verses not found. Missing &quot;PART&quot; header.</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
</context>
<context>
@ -7249,7 +7242,7 @@ The encoding is responsible for the correct character representation.</translati
<message>
<location filename="openlp/plugins/songs/lib/songstab.py" line="87"/>
<source>Import missing songs from service files</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
</context>
<context>
@ -7313,12 +7306,12 @@ The encoding is responsible for the correct character representation.</translati
<message>
<location filename="openlp/plugins/songs/lib/zionworximport.py" line="91"/>
<source>Error reading CSV file.</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/plugins/songs/lib/zionworximport.py" line="117"/>
<source>File not valid ZionWorx CSV format.</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
</context>
</TS>
</TS>

View File

@ -1,5 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS><TS version="2.0" language="es" sourcelanguage="">
<?xml version="1.0" ?><!DOCTYPE TS><TS language="es" sourcelanguage="" version="2.0">
<context>
<name>AlertsPlugin</name>
<message>
@ -102,7 +101,7 @@ Do you want to continue anyway?</source>
</message>
<message>
<location filename="openlp/plugins/alerts/forms/alertform.py" line="190"/>
<source>The alert text does not contain &apos;&lt;&gt;&apos;.
<source>The alert text does not contain '&lt;&gt;'.
Do you want to continue anyway?</source>
<translation>El texto de alerta no contiene &apos;&lt;&gt;&apos;.
¿Desea continuar de todos modos?</translation>
@ -1378,7 +1377,7 @@ Deberá reimportar esta Biblia para utilizarla de nuevo.</translation>
<message>
<location filename="openlp/plugins/bibles/lib/opensong.py" line="118"/>
<source>Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import.</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
</context>
<context>
@ -1709,10 +1708,7 @@ Note que los versículos se descargarán según sea necesario, por lo que debe c
<message numerus="yes">
<location filename="openlp/plugins/custom/lib/mediaitem.py" line="179"/>
<source>Are you sure you want to delete the %n selected custom slide(s)?</source>
<translation>
<numerusform>¿Desea borrar la diapositiva seleccionada?</numerusform>
<numerusform>¿Desea borrar las %n diapositivas seleccionadas?</numerusform>
</translation>
<translation><numerusform>¿Desea borrar la diapositiva seleccionada?</numerusform><numerusform>¿Desea borrar las %n diapositivas seleccionadas?</numerusform></translation>
</message>
</context>
<context>
@ -2077,7 +2073,7 @@ Translators
%s
Japanese (ja)
%s
Norwegian Bokm&#xe5;l (nb)
Norwegian Bokmål (nb)
%s
Dutch (nl)
%s
@ -2187,8 +2183,8 @@ OpenLP es desarrollado y mantenido por voluntarios. Si desea apoyar la creación
</message>
<message>
<location filename="openlp/core/ui/aboutdialog.py" line="223"/>
<source>Copyright &#xa9; 2004-2012 %s
Portions copyright &#xa9; 2004-2012 %s</source>
<source>Copyright © 2004-2012 %s
Portions copyright © 2004-2012 %s</source>
<translation>Copyright © 2004-2012 %s
Portions copyright © 2004-2012 %s</translation>
</message>
@ -5450,7 +5446,7 @@ La codificación del contenido no es UTF-8.</translation>
</message>
<message>
<location filename="openlp/plugins/songs/lib/ui.py" line="42"/>
<source>&#xa9;</source>
<source>©</source>
<comment>Copyright symbol.</comment>
<translation>©</translation>
</message>
@ -6917,27 +6913,27 @@ La codificación se encarga de la correcta representación de caracteres.</trans
<message>
<location filename="openlp/plugins/songs/lib/importer.py" line="260"/>
<source>MediaShout Database</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/plugins/songs/lib/importer.py" line="262"/>
<source>The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the &quot;pyodbc&quot; module.</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/plugins/songs/lib/importer.py" line="293"/>
<source>SongPro Text Files</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/plugins/songs/lib/importer.py" line="295"/>
<source>SongPro (Export File)</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/plugins/songs/lib/importer.py" line="297"/>
<source>In SongPro, export your songs using the File -&gt; Export menu</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
</context>
<context>
@ -6978,10 +6974,7 @@ La codificación se encarga de la correcta representación de caracteres.</trans
<message numerus="yes">
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="404"/>
<source>Are you sure you want to delete the %n selected song(s)?</source>
<translation>
<numerusform>¿Desea borrar %n canción seleccionada?</numerusform>
<numerusform>¿Desea borrar las %n canciones seleccionadas?</numerusform>
</translation>
<translation><numerusform>¿Desea borrar %n canción seleccionada?</numerusform><numerusform>¿Desea borrar las %n canciones seleccionadas?</numerusform></translation>
</message>
<message>
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="150"/>
@ -7025,7 +7018,7 @@ La codificación se encarga de la correcta representación de caracteres.</trans
<message>
<location filename="openlp/plugins/songs/lib/mediashoutimport.py" line="61"/>
<source>Unable to open the MediaShout database.</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
</context>
<context>
@ -7334,4 +7327,4 @@ La codificación se encarga de la correcta representación de caracteres.</trans
<translation>Archivo ZionWorx CSV inválido.</translation>
</message>
</context>
</TS>
</TS>

View File

@ -1,5 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS><TS version="2.0" language="et" sourcelanguage="">
<?xml version="1.0" ?><!DOCTYPE TS><TS language="et" sourcelanguage="" version="2.0">
<context>
<name>AlertsPlugin</name>
<message>
@ -102,7 +101,7 @@ Kas tahad siiski jätkata?</translation>
</message>
<message>
<location filename="openlp/plugins/alerts/forms/alertform.py" line="190"/>
<source>The alert text does not contain &apos;&lt;&gt;&apos;.
<source>The alert text does not contain '&lt;&gt;'.
Do you want to continue anyway?</source>
<translation>Teate tekst ei sisalda &apos;&lt;&gt;&apos; märke.
Kas tahad siiski jätkata?</translation>
@ -1708,10 +1707,7 @@ Pane tähele, et veebipiiblite salmid laaditakse internetist vajadusel, seega on
<message numerus="yes">
<location filename="openlp/plugins/custom/lib/mediaitem.py" line="179"/>
<source>Are you sure you want to delete the %n selected custom slide(s)?</source>
<translation>
<numerusform>Kas tahad kindlasti %n valitud kohandatud slaidi kustutada?</numerusform>
<numerusform>Kas tahad kindlasti %n valitud kohandatud slaidi kustutada?</numerusform>
</translation>
<translation><numerusform>Kas tahad kindlasti %n valitud kohandatud slaidi kustutada?</numerusform><numerusform>Kas tahad kindlasti %n valitud kohandatud slaidi kustutada?</numerusform></translation>
</message>
</context>
<context>
@ -2076,7 +2072,7 @@ Translators
%s
Japanese (ja)
%s
Norwegian Bokm&#xe5;l (nb)
Norwegian Bokmål (nb)
%s
Dutch (nl)
%s
@ -2185,8 +2181,8 @@ OpenLP on kirjutanud ja seda haldavad vabatahtlikud. Kui sa tahad näha rohkem t
</message>
<message>
<location filename="openlp/core/ui/aboutdialog.py" line="223"/>
<source>Copyright &#xa9; 2004-2012 %s
Portions copyright &#xa9; 2004-2012 %s</source>
<source>Copyright © 2004-2012 %s
Portions copyright © 2004-2012 %s</source>
<translation>Copyright © 2004-2012 %s
Osaline copyright © 2004-2012 %s</translation>
</message>
@ -5449,7 +5445,7 @@ Sisu ei ole UTF-8 kodeeringus.</translation>
</message>
<message>
<location filename="openlp/plugins/songs/lib/ui.py" line="42"/>
<source>&#xa9;</source>
<source>©</source>
<comment>Copyright symbol.</comment>
<translation>©</translation>
</message>
@ -6976,10 +6972,7 @@ Kodeering on vajalik märkide õige esitamise jaoks.</translation>
<message numerus="yes">
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="404"/>
<source>Are you sure you want to delete the %n selected song(s)?</source>
<translation>
<numerusform>Kas sa oled kindel, et soovid kustutada %n valitud laulu?</numerusform>
<numerusform>Kas sa oled kindel, et soovid kustutada %n valitud laulu?</numerusform>
</translation>
<translation><numerusform>Kas sa oled kindel, et soovid kustutada %n valitud laulu?</numerusform><numerusform>Kas sa oled kindel, et soovid kustutada %n valitud laulu?</numerusform></translation>
</message>
<message>
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="150"/>
@ -7332,4 +7325,4 @@ Kodeering on vajalik märkide õige esitamise jaoks.</translation>
<translation>Fail ei ole korrektses ZionWorx CSV vormingus.</translation>
</message>
</context>
</TS>
</TS>

File diff suppressed because it is too large Load Diff

View File

@ -1,5 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS><TS version="2.0" language="fr" sourcelanguage="">
<?xml version="1.0" ?><!DOCTYPE TS><TS language="fr" sourcelanguage="" version="2.0">
<context>
<name>AlertsPlugin</name>
<message>
@ -102,7 +101,7 @@ Voulez-vous tout de même continuer ?</translation>
</message>
<message>
<location filename="openlp/plugins/alerts/forms/alertform.py" line="190"/>
<source>The alert text does not contain &apos;&lt;&gt;&apos;.
<source>The alert text does not contain '&lt;&gt;'.
Do you want to continue anyway?</source>
<translation>Le texte d&apos;alerte ne contient pas &apos;&lt;&gt;&apos;.
Voulez-vous tout de même continuer ?</translation>
@ -567,92 +566,92 @@ Voulez-vous tout de même continuer ?</translation>
<message>
<location filename="openlp/plugins/bibles/lib/__init__.py" line="158"/>
<source>Judith</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/plugins/bibles/lib/__init__.py" line="159"/>
<source>Wisdom</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/plugins/bibles/lib/__init__.py" line="160"/>
<source>Tobit</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/plugins/bibles/lib/__init__.py" line="161"/>
<source>Sirach</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/plugins/bibles/lib/__init__.py" line="162"/>
<source>Baruch</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/plugins/bibles/lib/__init__.py" line="163"/>
<source>1 Maccabees</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/plugins/bibles/lib/__init__.py" line="164"/>
<source>2 Maccabees</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/plugins/bibles/lib/__init__.py" line="165"/>
<source>3 Maccabees</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/plugins/bibles/lib/__init__.py" line="166"/>
<source>4 Maccabees</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/plugins/bibles/lib/__init__.py" line="167"/>
<source>Rest of Daniel</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/plugins/bibles/lib/__init__.py" line="168"/>
<source>Rest of Esther</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/plugins/bibles/lib/__init__.py" line="169"/>
<source>Prayer of Manasses</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/plugins/bibles/lib/__init__.py" line="170"/>
<source>Letter of Jeremiah</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/plugins/bibles/lib/__init__.py" line="171"/>
<source>Prayer of Azariah</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/plugins/bibles/lib/__init__.py" line="172"/>
<source>Susanna</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/plugins/bibles/lib/__init__.py" line="173"/>
<source>Bel</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/plugins/bibles/lib/__init__.py" line="174"/>
<source>1 Esdras</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/plugins/bibles/lib/__init__.py" line="175"/>
<source>2 Esdras</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/plugins/bibles/lib/__init__.py" line="184"/>
@ -1367,7 +1366,7 @@ demand and thus an internet connection is required.</source>
<source>Are you sure you want to completely delete &quot;%s&quot; Bible from OpenLP?
You will need to re-import this Bible to use it again.</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
</context>
<context>
@ -1375,7 +1374,7 @@ You will need to re-import this Bible to use it again.</source>
<message>
<location filename="openlp/plugins/bibles/lib/opensong.py" line="118"/>
<source>Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import.</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
</context>
<context>
@ -1698,7 +1697,7 @@ Veuillez noter que les versets des Bibles Web seront téléchargés à la demand
<message>
<location filename="openlp/plugins/custom/forms/editcustomslidedialog.py" line="52"/>
<source>Edit Slide</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
</context>
<context>
@ -1706,10 +1705,7 @@ Veuillez noter que les versets des Bibles Web seront téléchargés à la demand
<message numerus="yes">
<location filename="openlp/plugins/custom/lib/mediaitem.py" line="179"/>
<source>Are you sure you want to delete the %n selected custom slide(s)?</source>
<translation>
<numerusform>Etes-vous sur de vouloir supprimer la %n diapositive personnalisée ?</numerusform>
<numerusform>Etes-vous sur de vouloir supprimer les %n diapositives personnalisées ?</numerusform>
</translation>
<translation><numerusform>Etes-vous sur de vouloir supprimer la %n diapositive personnalisée ?</numerusform><numerusform>Etes-vous sur de vouloir supprimer les %n diapositives personnalisées ?</numerusform></translation>
</message>
</context>
<context>
@ -2074,7 +2070,7 @@ Translators
%s
Japanese (ja)
%s
Norwegian Bokm&#xe5;l (nb)
Norwegian Bokmål (nb)
%s
Dutch (nl)
%s
@ -2184,8 +2180,8 @@ OpenLP est écrit et maintenu par des bénévoles. Si vous souhaitez voir plus d
</message>
<message>
<location filename="openlp/core/ui/aboutdialog.py" line="223"/>
<source>Copyright &#xa9; 2004-2012 %s
Portions copyright &#xa9; 2004-2012 %s</source>
<source>Copyright © 2004-2012 %s
Portions copyright © 2004-2012 %s</source>
<translation>Copyright © 2004-2012 %s
Portions copyright © 2004-2012 %s</translation>
</message>
@ -2815,7 +2811,7 @@ Version : %s
<source>No Internet connection was found. The First Time Wizard needs an Internet connection in order to be able to download sample songs, Bibles and themes. Click the Finish button now to start OpenLP with initial settings and no sample data.
To re-run the First Time Wizard and import this sample data at a later time, check your Internet connection and re-run this wizard by selecting &quot;Tools/Re-run First Time Wizard&quot; from OpenLP.</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/core/ui/firsttimewizard.py" line="242"/>
@ -3131,7 +3127,7 @@ Pour annuler complètement le premier assistant (et ne pas lancer OpenLP), cliqu
<message>
<location filename="openlp/core/ui/advancedtab.py" line="446"/>
<source>&amp;Wrap around</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/core/ui/advancedtab.py" line="448"/>
@ -5444,7 +5440,7 @@ Le contenu n&apos;est pas de l&apos;UTF-8.</translation>
</message>
<message>
<location filename="openlp/plugins/songs/lib/ui.py" line="42"/>
<source>&#xa9;</source>
<source>©</source>
<comment>Copyright symbol.</comment>
<translation>©</translation>
</message>
@ -6896,7 +6892,7 @@ L&apos;encodage permet un affichage correct des caractères.</translation>
<message>
<location filename="openlp/plugins/songs/lib/importer.py" line="338"/>
<source>First convert your ZionWorx database to a CSV text file, as explained in the &lt;a href=&quot;http://manual.openlp.org/songs.html#importing-from-zionworx&quot;&gt;User Manual&lt;/a&gt;.</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/plugins/songs/lib/importer.py" line="321"/>
@ -6906,32 +6902,32 @@ L&apos;encodage permet un affichage correct des caractères.</translation>
<message>
<location filename="openlp/plugins/songs/lib/importer.py" line="172"/>
<source>This importer has been disabled.</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/plugins/songs/lib/importer.py" line="260"/>
<source>MediaShout Database</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/plugins/songs/lib/importer.py" line="262"/>
<source>The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the &quot;pyodbc&quot; module.</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/plugins/songs/lib/importer.py" line="293"/>
<source>SongPro Text Files</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/plugins/songs/lib/importer.py" line="295"/>
<source>SongPro (Export File)</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/plugins/songs/lib/importer.py" line="297"/>
<source>In SongPro, export your songs using the File -&gt; Export menu</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
</context>
<context>
@ -6972,10 +6968,7 @@ L&apos;encodage permet un affichage correct des caractères.</translation>
<message numerus="yes">
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="404"/>
<source>Are you sure you want to delete the %n selected song(s)?</source>
<translation>
<numerusform>Êtes-vous sûr de vouloir supprimer le chant %n sélectionné ?</numerusform>
<numerusform>Êtes-vous sûr de vouloir supprimer les chants %n sélectionnés ?</numerusform>
</translation>
<translation><numerusform>Êtes-vous sûr de vouloir supprimer le chant %n sélectionné ?</numerusform><numerusform>Êtes-vous sûr de vouloir supprimer les chants %n sélectionnés ?</numerusform></translation>
</message>
<message>
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="150"/>
@ -7019,7 +7012,7 @@ L&apos;encodage permet un affichage correct des caractères.</translation>
<message>
<location filename="openlp/plugins/songs/lib/mediashoutimport.py" line="61"/>
<source>Unable to open the MediaShout database.</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
</context>
<context>
@ -7328,4 +7321,4 @@ L&apos;encodage permet un affichage correct des caractères.</translation>
<translation>Format de fichier CSV ZionWorx invalide.</translation>
</message>
</context>
</TS>
</TS>

View File

@ -1,5 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS><TS version="2.0" language="hu" sourcelanguage="">
<?xml version="1.0" ?><!DOCTYPE TS><TS language="hu" sourcelanguage="" version="2.0">
<context>
<name>AlertsPlugin</name>
<message>
@ -102,7 +101,7 @@ Folytatható?</translation>
</message>
<message>
<location filename="openlp/plugins/alerts/forms/alertform.py" line="190"/>
<source>The alert text does not contain &apos;&lt;&gt;&apos;.
<source>The alert text does not contain '&lt;&gt;'.
Do you want to continue anyway?</source>
<translation>Az értesítő szöveg nem tartalmaz &lt;&gt; karaktereket.
Folytatható?</translation>
@ -1368,7 +1367,9 @@ demand and thus an internet connection is required.</source>
<source>Are you sure you want to completely delete &quot;%s&quot; Bible from OpenLP?
You will need to re-import this Bible to use it again.</source>
<translation type="unfinished"></translation>
<translation>Valóban teljes egészében törölhető ez a Biblia az OpenLP-ből: %s?
Az esetleges újboli alkalmazásához újra be kell majd importálni.</translation>
</message>
</context>
<context>
@ -1376,7 +1377,7 @@ You will need to re-import this Bible to use it again.</source>
<message>
<location filename="openlp/plugins/bibles/lib/opensong.py" line="118"/>
<source>Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import.</source>
<translation type="unfinished"></translation>
<translation>A megadott Biblia fájl hibás. Az OpenSong bibliák lehet, hogy tömörítve vannak. Ki kell tömöríteni őket importálás előtt.</translation>
</message>
</context>
<context>
@ -1699,7 +1700,7 @@ Megjegyzés: a webes bibliák versei csak kérésre lesznek letöltve és ekkor
<message>
<location filename="openlp/plugins/custom/forms/editcustomslidedialog.py" line="52"/>
<source>Edit Slide</source>
<translation type="unfinished"></translation>
<translation>Dia szerkesztése</translation>
</message>
</context>
<context>
@ -1707,9 +1708,7 @@ Megjegyzés: a webes bibliák versei csak kérésre lesznek letöltve és ekkor
<message numerus="yes">
<location filename="openlp/plugins/custom/lib/mediaitem.py" line="179"/>
<source>Are you sure you want to delete the %n selected custom slide(s)?</source>
<translation>
<numerusform>Valóban törölhető a kijelölt %n speciális dia?</numerusform>
</translation>
<translation><numerusform>Valóban törölhető a kijelölt %n speciális dia?</numerusform><numerusform>Valóban törölhető a kijelölt %n speciális dia?</numerusform></translation>
</message>
</context>
<context>
@ -2074,7 +2073,7 @@ Translators
%s
Japanese (ja)
%s
Norwegian Bokm&#xe5;l (nb)
Norwegian Bokmål (nb)
%s
Dutch (nl)
%s
@ -2185,8 +2184,8 @@ Az OpenLP-t önkéntesek készítették és tartják karban. Ha szeretnél több
</message>
<message>
<location filename="openlp/core/ui/aboutdialog.py" line="223"/>
<source>Copyright &#xa9; 2004-2012 %s
Portions copyright &#xa9; 2004-2012 %s</source>
<source>Copyright © 2004-2012 %s
Portions copyright © 2004-2012 %s</source>
<translation>Szerzői jog © 2004-2012 %s
Részleges szerzői jog © 2004-2012 %s</translation>
</message>
@ -5447,7 +5446,7 @@ A tartalom kódolása nem UTF-8.</translation>
</message>
<message>
<location filename="openlp/plugins/songs/lib/ui.py" line="42"/>
<source>&#xa9;</source>
<source>©</source>
<comment>Copyright symbol.</comment>
<translation>©</translation>
</message>
@ -6908,32 +6907,32 @@ EasyWorshipből kerültek importálásra]</translation>
<message>
<location filename="openlp/plugins/songs/lib/importer.py" line="172"/>
<source>This importer has been disabled.</source>
<translation type="unfinished"></translation>
<translation>Ez az importáló le lett tiltva.</translation>
</message>
<message>
<location filename="openlp/plugins/songs/lib/importer.py" line="260"/>
<source>MediaShout Database</source>
<translation type="unfinished"></translation>
<translation>MediaShout adatbázis</translation>
</message>
<message>
<location filename="openlp/plugins/songs/lib/importer.py" line="262"/>
<source>The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the &quot;pyodbc&quot; module.</source>
<translation type="unfinished"></translation>
<translation>A MediaShout importáló csak Windows alatt támogatott. A hiányzó Python modul miatt le lett tiltva. Alkalmazásához telepíteni kell a &quot;pyodbc&quot; modult.</translation>
</message>
<message>
<location filename="openlp/plugins/songs/lib/importer.py" line="293"/>
<source>SongPro Text Files</source>
<translation type="unfinished"></translation>
<translation>SongPro szövegfájlok</translation>
</message>
<message>
<location filename="openlp/plugins/songs/lib/importer.py" line="295"/>
<source>SongPro (Export File)</source>
<translation type="unfinished"></translation>
<translation>SongPro (export fájl)</translation>
</message>
<message>
<location filename="openlp/plugins/songs/lib/importer.py" line="297"/>
<source>In SongPro, export your songs using the File -&gt; Export menu</source>
<translation type="unfinished"></translation>
<translation>SongPro-ban a Fájl -&gt; Exportálás menüpontban lehet exportálni a dalokat</translation>
</message>
</context>
<context>
@ -6974,9 +6973,7 @@ EasyWorshipből kerültek importálásra]</translation>
<message numerus="yes">
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="404"/>
<source>Are you sure you want to delete the %n selected song(s)?</source>
<translation>
<numerusform>Valóban törölhető a kijelöl %n dal?</numerusform>
</translation>
<translation><numerusform>Valóban törölhető a kijelöl %n dal?</numerusform><numerusform>Valóban törölhető a kijelöl %n dal?</numerusform></translation>
</message>
<message>
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="150"/>
@ -7020,7 +7017,7 @@ EasyWorshipből kerültek importálásra]</translation>
<message>
<location filename="openlp/plugins/songs/lib/mediashoutimport.py" line="61"/>
<source>Unable to open the MediaShout database.</source>
<translation type="unfinished"></translation>
<translation>Nem sikerült megnyitni a MediaShout adatbázist.</translation>
</message>
</context>
<context>
@ -7329,4 +7326,4 @@ EasyWorshipből kerültek importálásra]</translation>
<translation>A fájl nem érvényes ZionWorx CSV formátumú.</translation>
</message>
</context>
</TS>
</TS>

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -1,5 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS><TS version="2.0" language="ja" sourcelanguage="">
<?xml version="1.0" ?><!DOCTYPE TS><TS language="ja" sourcelanguage="" version="2.0">
<context>
<name>AlertsPlugin</name>
<message>
@ -102,7 +101,7 @@ Do you want to continue anyway?</source>
</message>
<message>
<location filename="openlp/plugins/alerts/forms/alertform.py" line="190"/>
<source>The alert text does not contain &apos;&lt;&gt;&apos;.
<source>The alert text does not contain '&lt;&gt;'.
Do you want to continue anyway?</source>
<translation>&apos;&lt;&gt;&apos;
?</translation>
@ -617,7 +616,7 @@ Do you want to continue anyway?</source>
<message>
<location filename="openlp/plugins/bibles/lib/__init__.py" line="168"/>
<source>Rest of Esther</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/plugins/bibles/lib/__init__.py" line="169"/>
@ -632,7 +631,7 @@ Do you want to continue anyway?</source>
<message>
<location filename="openlp/plugins/bibles/lib/__init__.py" line="171"/>
<source>Prayer of Azariah</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/plugins/bibles/lib/__init__.py" line="172"/>
@ -647,18 +646,18 @@ Do you want to continue anyway?</source>
<message>
<location filename="openlp/plugins/bibles/lib/__init__.py" line="174"/>
<source>1 Esdras</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/plugins/bibles/lib/__init__.py" line="175"/>
<source>2 Esdras</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/plugins/bibles/lib/__init__.py" line="184"/>
<source>:|v|V|verse|verses;;-|to;;,|and;;end</source>
<comment>Double-semicolon delimited separators for parsing references. Consult the developers for further information.</comment>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
</context>
<context>
@ -1706,9 +1705,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I
<message numerus="yes">
<location filename="openlp/plugins/custom/lib/mediaitem.py" line="179"/>
<source>Are you sure you want to delete the %n selected custom slide(s)?</source>
<translation>
<numerusform>%n件のカスタムスライドを削除します?</numerusform>
</translation>
<translation><numerusform>%n件のカスタムスライドを削除します?</numerusform></translation>
</message>
</context>
<context>
@ -2073,7 +2070,7 @@ Translators
%s
Japanese (ja)
%s
Norwegian Bokm&#xe5;l (nb)
Norwegian Bokmål (nb)
%s
Dutch (nl)
%s
@ -2185,8 +2182,8 @@ OpenLP は、ボランティアの手で開発保守されています。もっ
</message>
<message>
<location filename="openlp/core/ui/aboutdialog.py" line="223"/>
<source>Copyright &#xa9; 2004-2012 %s
Portions copyright &#xa9; 2004-2012 %s</source>
<source>Copyright © 2004-2012 %s
Portions copyright © 2004-2012 %s</source>
<translation> © 2004-2012 %s
© 2004-2012 %s</translation>
</message>
@ -4197,7 +4194,7 @@ The content encoding is not UTF-8.</source>
<message>
<location filename="openlp/core/ui/servicemanager.py" line="1046"/>
<source>Service copy only</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/core/ui/servicemanager.py" line="566"/>
@ -5446,7 +5443,7 @@ The content encoding is not UTF-8.</source>
</message>
<message>
<location filename="openlp/plugins/songs/lib/ui.py" line="42"/>
<source>&#xa9;</source>
<source>©</source>
<comment>Copyright symbol.</comment>
<translation>©</translation>
</message>
@ -5634,7 +5631,7 @@ The content encoding is not UTF-8.</source>
<message>
<location filename="openlp/core/lib/ui.py" line="139"/>
<source>Stop Play Slides to End</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/core/lib/ui.py" line="101"/>
@ -6971,9 +6968,7 @@ The encoding is responsible for the correct character representation.</source>
<message numerus="yes">
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="404"/>
<source>Are you sure you want to delete the %n selected song(s)?</source>
<translation>
<numerusform>%n件の賛美を削除します?</numerusform>
</translation>
<translation><numerusform>%n件の賛美を削除します?</numerusform></translation>
</message>
<message>
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="150"/>
@ -7326,4 +7321,4 @@ The encoding is responsible for the correct character representation.</source>
<translation>ZionWorx CSV形式ではありません</translation>
</message>
</context>
</TS>
</TS>

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -1,5 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS><TS version="2.0" language="nl" sourcelanguage="">
<?xml version="1.0" ?><!DOCTYPE TS><TS language="nl" sourcelanguage="" version="2.0">
<context>
<name>AlertsPlugin</name>
<message>
@ -102,7 +101,7 @@ Toch doorgaan?</translation>
</message>
<message>
<location filename="openlp/plugins/alerts/forms/alertform.py" line="190"/>
<source>The alert text does not contain &apos;&lt;&gt;&apos;.
<source>The alert text does not contain '&lt;&gt;'.
Do you want to continue anyway?</source>
<translation>De waarschuwing bevat geen &apos;&lt;&gt;&apos;.
Toch doorgaan?</translation>
@ -1368,7 +1367,7 @@ indien nodig en een internetverbinding is dus noodzakelijk.</translation>
<source>Are you sure you want to completely delete &quot;%s&quot; Bible from OpenLP?
You will need to re-import this Bible to use it again.</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
</context>
<context>
@ -1376,7 +1375,7 @@ You will need to re-import this Bible to use it again.</source>
<message>
<location filename="openlp/plugins/bibles/lib/opensong.py" line="118"/>
<source>Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import.</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
</context>
<context>
@ -1699,7 +1698,7 @@ Let op, de bijbelverzen worden gedownload indien nodig en een internetverbinding
<message>
<location filename="openlp/plugins/custom/forms/editcustomslidedialog.py" line="52"/>
<source>Edit Slide</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
</context>
<context>
@ -1707,10 +1706,7 @@ Let op, de bijbelverzen worden gedownload indien nodig en een internetverbinding
<message numerus="yes">
<location filename="openlp/plugins/custom/lib/mediaitem.py" line="179"/>
<source>Are you sure you want to delete the %n selected custom slide(s)?</source>
<translation>
<numerusform>Weet u zeker dat u %n geslecteerde dia(s) wilt verwijderen?</numerusform>
<numerusform>Weet u zeker dat u %n geslecteerde dia(s) wilt verwijderen?</numerusform>
</translation>
<translation><numerusform>Weet u zeker dat u %n geslecteerde dia(s) wilt verwijderen?</numerusform><numerusform>Weet u zeker dat u %n geslecteerde dia(s) wilt verwijderen?</numerusform></translation>
</message>
</context>
<context>
@ -2075,7 +2071,7 @@ Translators
%s
Japanese (ja)
%s
Norwegian Bokm&#xe5;l (nb)
Norwegian Bokmål (nb)
%s
Dutch (nl)
%s
@ -2187,8 +2183,8 @@ OpenLP wordt ontwikkeld en bijgehouden door vrijwilligers. Als u meer vrije soft
</message>
<message>
<location filename="openlp/core/ui/aboutdialog.py" line="223"/>
<source>Copyright &#xa9; 2004-2012 %s
Portions copyright &#xa9; 2004-2012 %s</source>
<source>Copyright © 2004-2012 %s
Portions copyright © 2004-2012 %s</source>
<translation>Copyright © 2004-2012 %s
Portions copyright © 2004-2012 %s</translation>
</message>
@ -5450,7 +5446,7 @@ Tekst codering is geen UTF-8.</translation>
</message>
<message>
<location filename="openlp/plugins/songs/lib/ui.py" line="42"/>
<source>&#xa9;</source>
<source>©</source>
<comment>Copyright symbol.</comment>
<translation>©</translation>
</message>
@ -6912,32 +6908,32 @@ De tekstcodering is verantwoordelijk voor een correcte weergave van lettertekens
<message>
<location filename="openlp/plugins/songs/lib/importer.py" line="172"/>
<source>This importer has been disabled.</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/plugins/songs/lib/importer.py" line="260"/>
<source>MediaShout Database</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/plugins/songs/lib/importer.py" line="262"/>
<source>The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the &quot;pyodbc&quot; module.</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/plugins/songs/lib/importer.py" line="293"/>
<source>SongPro Text Files</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/plugins/songs/lib/importer.py" line="295"/>
<source>SongPro (Export File)</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
<message>
<location filename="openlp/plugins/songs/lib/importer.py" line="297"/>
<source>In SongPro, export your songs using the File -&gt; Export menu</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
</context>
<context>
@ -6978,10 +6974,7 @@ De tekstcodering is verantwoordelijk voor een correcte weergave van lettertekens
<message numerus="yes">
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="404"/>
<source>Are you sure you want to delete the %n selected song(s)?</source>
<translation>
<numerusform>Weet u zeker dat u dit %n lied wilt verwijderen?</numerusform>
<numerusform>Weet u zeker dat u deze %n lied(eren) wilt verwijderen?</numerusform>
</translation>
<translation><numerusform>Weet u zeker dat u dit %n lied wilt verwijderen?</numerusform><numerusform>Weet u zeker dat u deze %n lied(eren) wilt verwijderen?</numerusform></translation>
</message>
<message>
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="150"/>
@ -7025,7 +7018,7 @@ De tekstcodering is verantwoordelijk voor een correcte weergave van lettertekens
<message>
<location filename="openlp/plugins/songs/lib/mediashoutimport.py" line="61"/>
<source>Unable to open the MediaShout database.</source>
<translation type="unfinished"></translation>
<translation type="unfinished"/>
</message>
</context>
<context>
@ -7334,4 +7327,4 @@ De tekstcodering is verantwoordelijk voor een correcte weergave van lettertekens
<translation>Bestand geen geldig ZionWorx CSV indeling.</translation>
</message>
</context>
</TS>
</TS>

File diff suppressed because it is too large Load Diff

View File

@ -1,5 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS><TS version="2.0" language="pt_BR" sourcelanguage="">
<?xml version="1.0" ?><!DOCTYPE TS><TS language="pt_BR" sourcelanguage="" version="2.0">
<context>
<name>AlertsPlugin</name>
<message>
@ -102,7 +101,7 @@ Deseja continuar mesmo assim?</translation>
</message>
<message>
<location filename="openlp/plugins/alerts/forms/alertform.py" line="190"/>
<source>The alert text does not contain &apos;&lt;&gt;&apos;.
<source>The alert text does not contain '&lt;&gt;'.
Do you want to continue anyway?</source>
<translation>O texto de alerta não contém &apos;&lt;&gt;&apos;.
Deseja continuar mesmo assim?</translation>
@ -1708,10 +1707,7 @@ Observe, que versículos das Bíblias Internet serão transferidos sob demanda e
<message numerus="yes">
<location filename="openlp/plugins/custom/lib/mediaitem.py" line="179"/>
<source>Are you sure you want to delete the %n selected custom slide(s)?</source>
<translation>
<numerusform>Tem certeza que deseja excluir o %n slide personalizado selecionado?</numerusform>
<numerusform>Tem certeza que deseja excluir os %n slides personalizados selecionados?</numerusform>
</translation>
<translation><numerusform>Tem certeza que deseja excluir o %n slide personalizado selecionado?</numerusform><numerusform>Tem certeza que deseja excluir os %n slides personalizados selecionados?</numerusform></translation>
</message>
</context>
<context>
@ -2076,7 +2072,7 @@ Translators
%s
Japanese (ja)
%s
Norwegian Bokm&#xe5;l (nb)
Norwegian Bokmål (nb)
%s
Dutch (nl)
%s
@ -2186,8 +2182,8 @@ O OpenLP é escrito e mantido por voluntários. Se você gostaria de ver mais so
</message>
<message>
<location filename="openlp/core/ui/aboutdialog.py" line="223"/>
<source>Copyright &#xa9; 2004-2012 %s
Portions copyright &#xa9; 2004-2012 %s</source>
<source>Copyright © 2004-2012 %s
Portions copyright © 2004-2012 %s</source>
<translation>Copyright © 2004-2012 %s
Porções copyright © 2004-2012 %s</translation>
</message>
@ -5453,7 +5449,7 @@ A codificação do conteúdo não é UTF-8.</translation>
</message>
<message>
<location filename="openlp/plugins/songs/lib/ui.py" line="42"/>
<source>&#xa9;</source>
<source>©</source>
<comment>Copyright symbol.</comment>
<translation>©</translation>
</message>
@ -6981,10 +6977,7 @@ EasyWorship]</translation>
<message numerus="yes">
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="404"/>
<source>Are you sure you want to delete the %n selected song(s)?</source>
<translation>
<numerusform>Tem certeza de que deseja excluir a(s) %n música(s) selecionada(s)?</numerusform>
<numerusform>Tem certeza de que deseja excluir a(s) %n música(s) selecionada(s)?</numerusform>
</translation>
<translation><numerusform>Tem certeza de que deseja excluir a(s) %n música(s) selecionada(s)?</numerusform><numerusform>Tem certeza de que deseja excluir a(s) %n música(s) selecionada(s)?</numerusform></translation>
</message>
<message>
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="150"/>
@ -7337,4 +7330,4 @@ EasyWorship]</translation>
<translation>O arquivo não é um arquivo CSV válido do ZionWorx.</translation>
</message>
</context>
</TS>
</TS>

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -1,5 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS><TS version="2.0" language="sv" sourcelanguage="">
<?xml version="1.0" ?><!DOCTYPE TS><TS language="sv" sourcelanguage="" version="2.0">
<context>
<name>AlertsPlugin</name>
<message>
@ -102,7 +101,7 @@ Vill du fortsätta ändå?</translation>
</message>
<message>
<location filename="openlp/plugins/alerts/forms/alertform.py" line="190"/>
<source>The alert text does not contain &apos;&lt;&gt;&apos;.
<source>The alert text does not contain '&lt;&gt;'.
Do you want to continue anyway?</source>
<translation>Meddelandet innehåller inte &apos;&lt;&gt;&apos;.
Vill du fortsätta ändå?</translation>
@ -1709,10 +1708,7 @@ Observera att verser från webb-biblar kommer att laddas ner vid behov, och där
<message numerus="yes">
<location filename="openlp/plugins/custom/lib/mediaitem.py" line="179"/>
<source>Are you sure you want to delete the %n selected custom slide(s)?</source>
<translation>
<numerusform>Är du säker att du vill ta bort den valda bilden?</numerusform>
<numerusform>Är du säker att du vill ta bort de %n valda bilderna?</numerusform>
</translation>
<translation><numerusform>Är du säker att du vill ta bort den valda bilden?</numerusform><numerusform>Är du säker att du vill ta bort de %n valda bilderna?</numerusform></translation>
</message>
</context>
<context>
@ -2077,7 +2073,7 @@ Translators
%s
Japanese (ja)
%s
Norwegian Bokm&#xe5;l (nb)
Norwegian Bokmål (nb)
%s
Dutch (nl)
%s
@ -2187,8 +2183,8 @@ OpenLP utvecklas och underhålls av frivilliga. Om du vill se mer fri kristen mj
</message>
<message>
<location filename="openlp/core/ui/aboutdialog.py" line="223"/>
<source>Copyright &#xa9; 2004-2012 %s
Portions copyright &#xa9; 2004-2012 %s</source>
<source>Copyright © 2004-2012 %s
Portions copyright © 2004-2012 %s</source>
<translation>Copyright © 2004-2012 %s
Del-copyright © 2004-2012 %s</translation>
</message>
@ -5449,7 +5445,7 @@ Innehållets teckenkodning är inte UTF-8.</translation>
</message>
<message>
<location filename="openlp/plugins/songs/lib/ui.py" line="42"/>
<source>&#xa9;</source>
<source>©</source>
<comment>Copyright symbol.</comment>
<translation>©</translation>
</message>
@ -6977,10 +6973,7 @@ Teckenkodningen ansvarar för rätt teckenrepresentation.</translation>
<message numerus="yes">
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="404"/>
<source>Are you sure you want to delete the %n selected song(s)?</source>
<translation>
<numerusform>Är du säker att du vill ta bort den valda sången?</numerusform>
<numerusform>Är du säker att du vill ta bort de %n valda sångerna?</numerusform>
</translation>
<translation><numerusform>Är du säker att du vill ta bort den valda sången?</numerusform><numerusform>Är du säker att du vill ta bort de %n valda sångerna?</numerusform></translation>
</message>
<message>
<location filename="openlp/plugins/songs/lib/mediaitem.py" line="150"/>
@ -7333,4 +7326,4 @@ Teckenkodningen ansvarar för rätt teckenrepresentation.</translation>
<translation>Filen är inte i giltigt ZionWorx CSV-format.</translation>
</message>
</context>
</TS>
</TS>

File diff suppressed because it is too large Load Diff

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.4 KiB

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -116,7 +116,7 @@
<file>system_help_contents.png</file>
<file>system_online_help.png</file>
<file>system_mediamanager.png</file>
<file>system_contribute.png</file>
<file>system_volunteer.png</file>
<file>system_servicemanager.png</file>
<file>system_thememanager.png</file>
<file>system_exit.png</file>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 822 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB