This commit is contained in:
Armin Köhler 2012-04-11 19:39:15 +02:00
parent 35c3c1ce5a
commit 5f16ddc73c
3 changed files with 9 additions and 7 deletions

View File

@ -163,12 +163,12 @@ class Ui_EditBibleDialog(object):
'Book name language in search field, search results and on ' 'Book name language in search field, search results and on '
'display:')) 'display:'))
self.languageSelectionComboBox.setItemText(0, self.languageSelectionComboBox.setItemText(0,
translate('BiblesPlugin.EditBibleForm', 'Global settings')) translate('BiblesPlugin.EditBibleForm', 'Global Settings'))
self.languageSelectionComboBox.setItemText(LanguageSelection.Bible + 1, self.languageSelectionComboBox.setItemText(LanguageSelection.Bible + 1,
translate('BiblesPlugin.EditBibleForm', 'Bible language')) translate('BiblesPlugin.EditBibleForm', 'Bible Language'))
self.languageSelectionComboBox.setItemText( self.languageSelectionComboBox.setItemText(
LanguageSelection.Application + 1, LanguageSelection.Application + 1,
translate('BiblesPlugin.EditBibleForm', 'Application language')) translate('BiblesPlugin.EditBibleForm', 'Application Language'))
self.languageSelectionComboBox.setItemText( self.languageSelectionComboBox.setItemText(
LanguageSelection.English + 1, LanguageSelection.English + 1,
translate('BiblesPlugin.EditBibleForm', 'English')) translate('BiblesPlugin.EditBibleForm', 'English'))

View File

@ -94,12 +94,14 @@ class EditBibleForm(QtGui.QDialog, Ui_EditBibleDialog):
self.bookNameEdit[book[u'abbreviation']].setText( self.bookNameEdit[book[u'abbreviation']].setText(
self.books[book[u'abbreviation']].name) self.books[book[u'abbreviation']].name)
else: else:
# It is nessecary to remove the Widget otherwise there still
# exists the vertical spacing in QFormLayout
self.bookNameWidgetLayout.removeWidget( self.bookNameWidgetLayout.removeWidget(
self.bookNameLabel[book[u'abbreviation']]) self.bookNameLabel[book[u'abbreviation']])
self.bookNameLabel[book[u'abbreviation']].setParent(None) self.bookNameLabel[book[u'abbreviation']].hide()
self.bookNameWidgetLayout.removeWidget( self.bookNameWidgetLayout.removeWidget(
self.bookNameEdit[book[u'abbreviation']]) self.bookNameEdit[book[u'abbreviation']])
self.bookNameEdit[book[u'abbreviation']].setParent(None) self.bookNameEdit[book[u'abbreviation']].hide()
def reject(self): def reject(self):
""" """

View File

@ -282,10 +282,10 @@ class BiblesTab(SettingsTab):
'Book name language in search field,\nsearch results and on ' 'Book name language in search field,\nsearch results and on '
'display:')) 'display:'))
self.languageSelectionComboBox.setItemText(LanguageSelection.Bible, self.languageSelectionComboBox.setItemText(LanguageSelection.Bible,
translate('BiblesPlugin.BiblesTab', 'Bible language')) translate('BiblesPlugin.BiblesTab', 'Bible Language'))
self.languageSelectionComboBox.setItemText( self.languageSelectionComboBox.setItemText(
LanguageSelection.Application, LanguageSelection.Application,
translate('BiblesPlugin.BiblesTab', 'Application language')) translate('BiblesPlugin.BiblesTab', 'Application Language'))
self.languageSelectionComboBox.setItemText(LanguageSelection.English, self.languageSelectionComboBox.setItemText(LanguageSelection.English,
translate('BiblesPlugin.BiblesTab', 'English')) translate('BiblesPlugin.BiblesTab', 'English'))