openlp-core team mailing list archive
-
openlp-core team
-
Mailing list archive
-
Message #01114
Re: [Merge] lp:~trb143/openlp/futures into lp:openlp
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.
References