diff --git a/src/calibre/gui2/preferences/create_custom_column.py b/src/calibre/gui2/preferences/create_custom_column.py
index daf94a6a58..88e29f78af 100644
--- a/src/calibre/gui2/preferences/create_custom_column.py
+++ b/src/calibre/gui2/preferences/create_custom_column.py
@@ -6,7 +6,7 @@
import re
from functools import partial
-from PyQt4.Qt import QDialog, Qt, QListWidgetItem, QVariant, QIcon
+from PyQt4.Qt import QDialog, Qt, QListWidgetItem, QVariant
from calibre.gui2.preferences.create_custom_column_ui import Ui_QCreateCustomColumn
from calibre.gui2 import error_dialog
@@ -47,7 +47,8 @@ def __init__(self, parent, editing, standard_colheads, standard_colnames):
QDialog.__init__(self, parent)
Ui_QCreateCustomColumn.__init__(self)
self.setupUi(self)
- self.setWindowIcon(QIcon(I('column.png')))
+ self.setWindowTitle(_('Create a custom column'))
+ self.heading_label.setText(_('Create a custom column'))
# Remove help icon on title bar
icon = self.windowIcon()
self.setWindowFlags(self.windowFlags()&(~Qt.WindowContextHelpButtonHint))
@@ -79,6 +80,8 @@ def __init__(self, parent, editing, standard_colheads, standard_colnames):
self.datatype_changed()
self.exec_()
return
+ self.setWindowTitle(_('Edit a custom column'))
+ self.heading_label.setText(_('Edit a custom column'))
self.shortcuts.setVisible(False)
idx = parent.opt_columns.currentRow()
if idx < 0:
diff --git a/src/calibre/gui2/preferences/create_custom_column.ui b/src/calibre/gui2/preferences/create_custom_column.ui
index 18130730fe..9df7107d9b 100644
--- a/src/calibre/gui2/preferences/create_custom_column.ui
+++ b/src/calibre/gui2/preferences/create_custom_column.ui
@@ -19,8 +19,9 @@
0
-
- Create or edit custom columns
+
+
+ :/images/column.png:/images/column.png
-
@@ -252,7 +253,7 @@ four values, the first of them being the empty value.
-
-
+
75
@@ -260,7 +261,7 @@ four values, the first of them being the empty value.
- Create or edit custom columns
+
@@ -300,6 +301,8 @@ four values, the first of them being the empty value.
composite_box
button_box
-
+
+
+