From f13a9d00b5b2fe4ed5bd6a436075116f1b7e6063 Mon Sep 17 00:00:00 2001 From: Samuel Mehrbrodt Date: Wed, 24 Dec 2014 11:42:46 +0100 Subject: [PATCH] Missing translation type Fixes: https://launchpad.net/bugs/1405164 --- openlp/plugins/songs/lib/db.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/openlp/plugins/songs/lib/db.py b/openlp/plugins/songs/lib/db.py index 3afba1b66..48ffe56bf 100644 --- a/openlp/plugins/songs/lib/db.py +++ b/openlp/plugins/songs/lib/db.py @@ -84,13 +84,15 @@ class AuthorType(object): NoType, Words, Music, - WordsAndMusic + WordsAndMusic, + Translation ] TranslatedTypes = [ Types[NoType], Types[Words], Types[Music], - Types[WordsAndMusic] + Types[WordsAndMusic], + Types[Translation] ] @staticmethod