This commit is contained in:
Kovid Goyal 2023-03-09 08:45:24 +05:30
commit ae7289b26c
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -459,8 +459,11 @@ class CreateCustomColumn(QDialog):
l = QHBoxLayout() l = QHBoxLayout()
self.composite_in_comments_box = cmc = QCheckBox(_("Show with comments in book details")) self.composite_in_comments_box = cmc = QCheckBox(_("Show with comments in book details"))
cmc.setToolTip('<p>' + _('If you check this box then the column contents ' cmc.setToolTip('<p>' + _('If you check this box then the column contents '
'will show in the Comments section in book details, ' 'will show in the Comments section in book details. '
'which is on the right hand side. The output of the ' 'You can indicate whether not to have a header or '
'to put a header above the column. If you want a '
"header beside the data, don't check this box. "
'If this box is checked then the output of the '
'column template must be plain text or html.') + '</p>') 'column template must be plain text or html.') + '</p>')
l.addWidget(cmc) l.addWidget(cmc)
self.composite_heading_position = chp = QComboBox(self) self.composite_heading_position = chp = QComboBox(self)