diff --git a/src/calibre/gui2/preferences/create_custom_column.py b/src/calibre/gui2/preferences/create_custom_column.py index 29cd097e2c..d8677d25c6 100644 --- a/src/calibre/gui2/preferences/create_custom_column.py +++ b/src/calibre/gui2/preferences/create_custom_column.py @@ -436,7 +436,7 @@ class CreateCustomColumn(QDialog): getattr(self, 'decimals_'+x).setVisible(col_type == 'float') if needs_format: if col_type == 'datetime': - l, dl = _('&Format for dates'), _('Default: dd MMM yyyy.') + l, dl = _('&Format for dates:'), _('Default: dd MMM yyyy.') self.format_box.setToolTip(_( '

Date format.

' '

The formatting codes are:' @@ -467,7 +467,7 @@ class CreateCustomColumn(QDialog): "

  • dd MMMM yy gives 05 January 10
  • \n" " ")) else: - l, dl = _('&Format for numbers'), ( + l, dl = _('&Format for numbers:'), ( '

    ' + _('Default: Not formatted. For format language details see' ' the Python documentation')) if col_type == 'int':