add the special author

This commit is contained in:
Andreas Preikschat 2011-02-19 19:37:01 +01:00
commit 810db5ca55
1 changed files with 3 additions and 3 deletions

View File

@ -35,6 +35,7 @@ from openlp.core.lib.ui import UiStrings
from openlp.plugins.songs.lib import SongMediaItem, SongsTab, SongXML
from openlp.plugins.songs.lib.db import Author, init_schema, Song
from openlp.plugins.songs.lib.importer import SongFormat
from openlp.plugins.songs.lib.ui import SongStrings
log = logging.getLogger(__name__)
@ -147,13 +148,12 @@ class SongsPlugin(Plugin):
counter += 1
# The song does not have any author, add one.
if not song.authors:
name = unicode(translate('SongsPlugin', 'Author unknown',
'Translation must contain a blank character!'))
name = unicode(SongStrings.AuthorUnknownUnT)
author = self.manager.get_object_filtered(Author,
Author.display_name == name)
if author is None:
author = Author.populate(
first_name=name.split(u' ', 1)[:-1],
first_name=u' '.join(name.split(u' ', 1)[:-1]),
last_name=name.split(u' ', 1)[-1], display_name=name)
song.authors.append(author)
if song.title is None: