From 75f1041d27e97f0c89d9b8e53c402f231906078b Mon Sep 17 00:00:00 2001 From: Andreas Preikschat Date: Sat, 5 May 2012 16:03:48 +0200 Subject: [PATCH] removed occurrences of 'virtual' split --- openlp/plugins/songs/lib/xml.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/openlp/plugins/songs/lib/xml.py b/openlp/plugins/songs/lib/xml.py index e5f5f7ff7..17a8db91e 100644 --- a/openlp/plugins/songs/lib/xml.py +++ b/openlp/plugins/songs/lib/xml.py @@ -33,7 +33,7 @@ The basic XML for storing the lyrics in the song database looks like this:: - + @@ -135,7 +135,7 @@ class SongXML(object): The returned list has the following format:: [[{'type': 'v', 'label': '1'}, - u"virtual slide 1[---]virtual slide 2"], + u"optional slide split 1[---]optional slide split 2"], [{'lang': 'en', 'type': 'c', 'label': '1'}, u"English chorus"]] """ self.song_xml = None @@ -334,7 +334,7 @@ class OpenLyrics(object): self._add_text_to_element(u'verse', lyrics, None, verse_def) if u'lang' in verse[0]: verse_element.set(u'lang', verse[0][u'lang']) - # Create a list with all "virtual" verses. + # Create a list with all "optional" verses. optional_verses = cgi.escape(verse[1]) optional_verses = optional_verses.split(u'[---]') start_tags = u''