← Back to team overview

openlp-core team mailing list archive

Re: [Merge] lp:~trb143/openlp/cleanups into lp:openlp

 

Review: Needs Fixing
This line's translation is incorrect:

    self.MessageLabel.setText(self.trUtf8(unicode(u'Import processing - %s' % text)))

It should be:

    self.MessageLabel.setText(unicode(self.trUtf8('Import processing')) + ' - %s' % text)

or something like that... the translatable part goes into self.trUtf8() and the dynamic part stays outside the self.trUtf8()
-- 
https://code.launchpad.net/~trb143/openlp/cleanups/+merge/16047
Your team OpenLP Core is subscribed to branch lp:openlp.



References