diff --git a/Changelog.yaml b/Changelog.yaml index 6011b03313..d6389888de 100644 --- a/Changelog.yaml +++ b/Changelog.yaml @@ -29,7 +29,7 @@ - title: "Cover grid: Vertically center covers that are smaller than the available space." tickets: [1886731] - - title: "Quickview panel: Add a checkbox to easily toggle if virtual libraries are respected." + - title: "Quickview panel: Add a checkbox to easily toggle if Virtual libraries are respected." tickets: [1886347] - title: "When creating custom columns allow specifying a default value to be applied to new books for that column" diff --git a/src/calibre/ebooks/conversion/plugins/pdf_output.py b/src/calibre/ebooks/conversion/plugins/pdf_output.py index 81971289dc..b212e0bdbf 100644 --- a/src/calibre/ebooks/conversion/plugins/pdf_output.py +++ b/src/calibre/ebooks/conversion/plugins/pdf_output.py @@ -54,7 +54,7 @@ class PDFOutput(OutputFormatPlugin): recommended_value=False, help=_('Preserve the aspect ratio of the cover, instead' ' of stretching it to fill the full first page of the' - ' generated pdf.')), + ' generated PDF.')), OptionRecommendation(name='pdf_serif_family', recommended_value='Times', help=_( 'The font family used to render serif fonts. Will work only if the font is available system-wide.')), diff --git a/src/calibre/gui2/dialogs/quickview.ui b/src/calibre/gui2/dialogs/quickview.ui index 735680344c..0747b34c5b 100644 --- a/src/calibre/gui2/dialogs/quickview.ui +++ b/src/calibre/gui2/dialogs/quickview.ui @@ -78,11 +78,11 @@ - &Apply virtual libraries + &Apply Virtual libraries <p>Select to make Quickview show only books in the current - virtual library</p> + Virtual library</p> diff --git a/src/calibre/gui2/dialogs/tag_editor.ui b/src/calibre/gui2/dialogs/tag_editor.ui index 346b2955b4..17b216cbbc 100644 --- a/src/calibre/gui2/dialogs/tag_editor.ui +++ b/src/calibre/gui2/dialogs/tag_editor.ui @@ -124,7 +124,7 @@ - Delete the item from database. This will unapply the item from all books and then remove it from the database. + Delete the selected items from database. This will unapply the items from all books and then remove them from the database. diff --git a/src/calibre/gui2/dialogs/tag_list_editor.ui b/src/calibre/gui2/dialogs/tag_list_editor.ui index 2c178ca048..3123316e9b 100644 --- a/src/calibre/gui2/dialogs/tag_list_editor.ui +++ b/src/calibre/gui2/dialogs/tag_list_editor.ui @@ -141,7 +141,7 @@ - Delete item from database. This will unapply the item from all books and then remove it from the database. + Delete selected items from the database. This will unapply the items from all books and then remove them from the database. ... @@ -177,7 +177,7 @@ - Rename the item in every book where it is used + Rename the items in every book where they are used ... diff --git a/src/calibre/gui2/preferences/create_custom_column.py b/src/calibre/gui2/preferences/create_custom_column.py index 150276d0f7..ed5e7d9cc6 100644 --- a/src/calibre/gui2/preferences/create_custom_column.py +++ b/src/calibre/gui2/preferences/create_custom_column.py @@ -412,7 +412,7 @@ class CreateCustomColumn(QDialog): self.default_value = dv = QLineEdit(self) dv.setToolTip('

' + _('Default value when a new book is added to the ' 'library. For Date columns enter the word "Now", or the date as ' - 'yyyy-mm-dd. For Yes/No columns enter "Yes" "No". For Text with ' + 'yyyy-mm-dd. For Yes/No columns enter "Yes" or "No". For Text with ' 'a fixed set of values enter one of the permitted values. For ' 'Rating columns enter a number between 0 and 5.') + '

') self.default_value_label = add_row(_('Default value'), dv)