openlp-core team mailing list archive
-
openlp-core team
-
Mailing list archive
-
Message #02023
[Merge] lp:~frodus86/openlp/translate into lp:openlp
Frode Woldsund has proposed merging lp:~frodus86/openlp/translate into lp:openlp.
Requested reviews:
Raoul Snyman (raoul-snyman): approve
Tim Bentley (trb143)
Jon Tibble (meths)
Replaced the last trUtf8() -> translate()
Removed the unicode strings from the translate() functions, And fixed issues regarding the [STRING CLEANUP] task on the mailinglist
--
https://code.launchpad.net/~frodus86/openlp/translate/+merge/28250
Your team OpenLP Core is subscribed to branch lp:openlp.
=== modified file 'openlp/plugins/songs/lib/songimport.py'
--- openlp/plugins/songs/lib/songimport.py 2010-06-21 20:52:25 +0000
+++ openlp/plugins/songs/lib/songimport.py 2010-06-22 21:58:22 +0000
@@ -63,9 +63,9 @@
self.verses = []
self.versecount = 0
self.choruscount = 0
- self.copyright_string = unicode(QtGui.QApplication.translate(
+ self.copyright_string = unicode(translate(
u'SongsPlugin.SongImport', u'copyright'))
- self.copyright_symbol = unicode(QtGui.QApplication.translate(
+ self.copyright_symbol = unicode(translate(
u'SongsPlugin.SongImport', u'\xa9'))
@staticmethod
Follow ups