Review: Needs Fixing
One small fix I see:

    title = self.trUtf8(u'(N) - %s' % serviceitem.title)

should be
    title = u'%s - %s' % (self.trUtf8('(N)'), serviceitem.title))

The former tries to translate "(N) - name of my service item" whereas the 
latter only translates "(N)" which is what is actually needed - 
serviceitem.title is dynamic so we can't translate it.
-- 
https://code.launchpad.net/~trb143/openlp/futures/+merge/20802
Your team OpenLP Core is subscribed to branch lp:openlp.

_______________________________________________
Mailing list: https://launchpad.net/~openlp-core
Post to     : [email protected]
Unsubscribe : https://launchpad.net/~openlp-core
More help   : https://help.launchpad.net/ListHelp

Reply via email to