← Back to team overview

openlp-core team mailing list archive

[Merge] lp:~meths/openlp/trivialfixes into lp:openlp

 

Jon Tibble has proposed merging lp:~meths/openlp/trivialfixes into lp:openlp.

    Requested reviews:
    Raoul Snyman (raoul-snyman)
    Tim Bentley (trb143)

-- 
https://code.launchpad.net/~meths/openlp/trivialfixes/+merge/14113
Your team OpenLP Core is subscribed to branch lp:openlp.
=== modified file 'openlp/core/lib/settingstab.py'
--- openlp/core/lib/settingstab.py	2009-10-23 13:17:43 +0000
+++ openlp/core/lib/settingstab.py	2009-10-28 21:10:23 +0000
@@ -44,7 +44,8 @@
             to write to when the ``save`` method is called.
         """
         QtGui.QWidget.__init__(self)
-        self.tabTitle = self.trUtf8(title)
+        self.tabTitle = title
+        self.tabTitleVisible = None
         # Use the line below when pulling the translation template file.
         #self.tabTitle = title
         self.setupUi()

=== modified file 'openlp/plugins/bibles/lib/biblestab.py'
--- openlp/plugins/bibles/lib/biblestab.py	2009-10-24 16:40:36 +0000
+++ openlp/plugins/bibles/lib/biblestab.py	2009-10-28 21:10:23 +0000
@@ -42,10 +42,10 @@
         self.show_new_chapters = False
         self.display_style = 0
         SettingsTab.__init__(self, u'Bibles', u'Bibles')
-        #SettingsTab.__init__(self, self.trUtf8(u'Bibles'), u'Bibles')
 
     def setupUi(self):
         self.setObjectName(u'BiblesTab')
+        self.tabTitleVisible = self.trUtf8(u'Bibles')
         self.BibleLayout = QtGui.QHBoxLayout(self)
         self.BibleLayout.setSpacing(8)
         self.BibleLayout.setMargin(8)

=== modified file 'openlp/plugins/images/lib/imagetab.py'
--- openlp/plugins/images/lib/imagetab.py	2009-10-24 16:40:36 +0000
+++ openlp/plugins/images/lib/imagetab.py	2009-10-28 21:10:23 +0000
@@ -31,11 +31,11 @@
     ImageTab is the Image settings tab in the settings dialog.
     """
     def __init__(self):
-        #SettingsTab.__init__(self, self.trUtf8(u'Images'), u'Images')
         SettingsTab.__init__(self, u'Images', u'Images')
 
     def setupUi(self):
         self.setObjectName(u'ImageTab')
+        self.tabTitleVisible = self.trUtf8(u'Images')
         self.ImageLayout = QtGui.QFormLayout(self)
         self.ImageLayout.setObjectName(u'ImageLayout')
         self.ImageSettingsGroupBox = QtGui.QGroupBox(self)

=== modified file 'openlp/plugins/media/lib/mediatab.py'
--- openlp/plugins/media/lib/mediatab.py	2009-10-24 16:40:36 +0000
+++ openlp/plugins/media/lib/mediatab.py	2009-10-28 21:10:23 +0000
@@ -32,10 +32,10 @@
     """
     def __init__(self):
         SettingsTab.__init__(self, u'Media', u'Media')
-        #SettingsTab.__init__(self, self.trUtf8(u'Media'), u'Media')
 
     def setupUi(self):
         self.setObjectName(u'MediaTab')
+        self.tabTitleVisible = self.trUtf8(u'Media')
         self.MediaLayout = QtGui.QFormLayout(self)
         self.MediaLayout.setObjectName(u'MediaLayout')
         self.MediaModeGroupBox = QtGui.QGroupBox(self)

=== modified file 'openlp/plugins/presentations/lib/presentationtab.py'
--- openlp/plugins/presentations/lib/presentationtab.py	2009-10-24 16:40:36 +0000
+++ openlp/plugins/presentations/lib/presentationtab.py	2009-10-28 21:10:23 +0000
@@ -32,10 +32,11 @@
     """
     def __init__(self, controllers):
         self.controllers = controllers
-        SettingsTab.__init__(self, u'Presentation', u'Presentations')
+        SettingsTab.__init__(self, u'Presentations', u'Presentations')
 
     def setupUi(self):
         self.setObjectName(u'PresentationTab')
+        self.tabTitleVisible = self.trUtf8(u'Presentations')
         self.PresentationLayout = QtGui.QHBoxLayout(self)
         self.PresentationLayout.setSpacing(8)
         self.PresentationLayout.setMargin(8)

=== modified file 'openlp/plugins/remotes/lib/remotetab.py'
--- openlp/plugins/remotes/lib/remotetab.py	2009-10-24 16:40:36 +0000
+++ openlp/plugins/remotes/lib/remotetab.py	2009-10-28 21:10:23 +0000
@@ -31,6 +31,7 @@
 
     def setupUi(self):
         self.setObjectName(u'RemoteTab')
+        self.tabTitleVisible = self.trUtf8(u'Remotes')
         self.RemoteLayout = QtGui.QFormLayout(self)
         self.RemoteLayout.setObjectName(u'RemoteLayout')
         self.RemoteModeGroupBox = QtGui.QGroupBox(self)

=== modified file 'openlp/plugins/songs/lib/songstab.py'
--- openlp/plugins/songs/lib/songstab.py	2009-10-26 06:30:08 +0000
+++ openlp/plugins/songs/lib/songstab.py	2009-10-28 21:10:23 +0000
@@ -35,6 +35,7 @@
 
     def setupUi(self):
         self.setObjectName(u'SongsTab')
+        self.tabTitleVisible = self.trUtf8(u'Songs')
         self.SongsLayout = QtGui.QFormLayout(self)
         self.SongsLayout.setObjectName(u'SongsLayout')
         self.SongsModeGroupBox = QtGui.QGroupBox(self)