From 2766838e8118e6d5a3d673eeb5fbd6c7aaf46090 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sat, 16 Apr 2022 21:16:30 +0530 Subject: [PATCH] Add missing colons --- src/calibre/gui2/preferences/create_custom_column.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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':