diff --git a/manual/gui.rst b/manual/gui.rst index 1b53c8d362..6454279620 100644 --- a/manual/gui.rst +++ b/manual/gui.rst @@ -355,7 +355,7 @@ for the tag ``Science Fiction`` you would need to search for ``tag:"=science fic ``tag:=science fiction`` you will find all books with the tag 'science' and containing the word 'fiction' in any metadata. -You can build advanced search queries easily using the :guilabel:`Advanced Search Dialog` accessed by +You can build advanced search queries easily using the :guilabel:`Advanced search dialog` accessed by clicking the button |sbi|. Available fields for searching are: ``tag, title, author, publisher, series, series_index, rating, cover, @@ -433,7 +433,7 @@ Identifiers (e.g., isbn, doi, lccn etc) also use an extended syntax. First, note .. figure:: images/search.png :align: center - :guilabel:`Advanced Search Dialog` + :guilabel:`Advanced search dialog` .. _saved_searches: diff --git a/manual/metadata.rst b/manual/metadata.rst index bdd49e50db..78f79678fe 100644 --- a/manual/metadata.rst +++ b/manual/metadata.rst @@ -18,7 +18,7 @@ Click the book you want to edit and then click the :guilabel:`Edit metadata` but * You can click the button in between title and authors to swap them automatically. * You can click the button next to author sort to have calibre automatically fill it in using the sort values stored with each author. Use the :guilabel:`Manage authors` dialog to see and change the authors' sort values. This dialog can be opened by clicking and holding the button next to author sort. - * You can click the button next to tags to use the Tag Editor to manage the tags associated with the book. + * You can click the button next to tags to use the :guilabel:`Tag editor` to manage the tags associated with the book. * The "Ids" box can be used to enter an ISBN (and many other types of id), it will have a red background if you enter an invalid ISBN. It will be green for valid ISBNs. * The author sort box will be red if the author sort value differs from what calibre thinks it should be. diff --git a/manual/snippets.rst b/manual/snippets.rst index eaab1f1c66..f55e82f6ba 100644 --- a/manual/snippets.rst +++ b/manual/snippets.rst @@ -124,8 +124,8 @@ Insert an arbitrary HTML tag [<<] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ This allows you to insert an arbitrary full HTML tag (or wrap previously -selected text in the tag). To use it, simply type ``<<`` and press |ct|.The -editor will expand it to:: +selected text in the tag). To use it, simply type ``<<`` and press |ct|. +The editor will expand it to:: <|> diff --git a/src/calibre/gui2/dialogs/metadata_bulk.ui b/src/calibre/gui2/dialogs/metadata_bulk.ui index 1125006903..4c6028f1de 100644 --- a/src/calibre/gui2/dialogs/metadata_bulk.ui +++ b/src/calibre/gui2/dialogs/metadata_bulk.ui @@ -133,10 +133,10 @@ is completed. This can be slow on large libraries. - Open Tag Editor + Open Tag editor - Open Tag Editor + Open Tag editor diff --git a/src/calibre/gui2/dialogs/plugin_updater.py b/src/calibre/gui2/dialogs/plugin_updater.py index 6d293b06c1..28fbbcb30a 100644 --- a/src/calibre/gui2/dialogs/plugin_updater.py +++ b/src/calibre/gui2/dialogs/plugin_updater.py @@ -475,13 +475,17 @@ class PluginUpdaterDialog(SizePersistedDialog): self.filter_combo = PluginFilterComboBox(self) self.filter_combo.setMinimumContentsLength(20) self.filter_combo.currentIndexChanged[int].connect(self._filter_combo_changed) - header_layout.addWidget(QLabel(_('Filter list of plugins')+':', self)) + la = QLabel(_('Filter list of &plugins')+':', self) + la.setBuddy(self.filter_combo) + header_layout.addWidget(la) header_layout.addWidget(self.filter_combo) header_layout.addStretch(10) # filter plugins by name - header_layout.addWidget(QLabel(_('Filter by name')+':', self)) + la = QLabel(_('Filter by &name')+':', self) + header_layout.addWidget(la) self.filter_by_name_lineedit = QLineEdit(self) + la.setBuddy(self.filter_by_name_lineedit) self.filter_by_name_lineedit.setText("") self.filter_by_name_lineedit.textChanged.connect(self._filter_name_lineedit_changed) diff --git a/src/calibre/gui2/dialogs/search.py b/src/calibre/gui2/dialogs/search.py index d19b8019fa..648d5b1611 100644 --- a/src/calibre/gui2/dialogs/search.py +++ b/src/calibre/gui2/dialogs/search.py @@ -47,7 +47,7 @@ def create_msg_label(self): f.um_label = la = QLabel(_( "

You can also perform other kinds of advanced searches, for example checking" ' for books that have no covers, combining multiple search expression using Boolean' - ' operators and so on. See the The Search Interface for more information.' + ' operators and so on. See the The search interface for more information.' ) % localize_user_manual_link('https://manual.calibre-ebook.com/gui.html#the-search-interface')) la.setMinimumSize(QSize(150, 0)) la.setWordWrap(True) @@ -81,7 +81,7 @@ def create_button_box(self): def create_adv_tab(self): self.adv_tab = w = QWidget(self.tab_widget) - self.tab_widget.addTab(w, _("A&dvanced Search")) + self.tab_widget.addTab(w, _("A&dvanced search")) w.g1 = QGroupBox(_("Find entries that have..."), w) w.g2 = QGroupBox(("But don't show entries that have..."), w) @@ -223,7 +223,7 @@ def create_date_tab(self, db): def setup_ui(self, db): - self.setWindowTitle(_("Advanced Search")) + self.setWindowTitle(_("Advanced search")) self.setWindowIcon(QIcon(I('search.png'))) self.l = l = QVBoxLayout(self) self.h = h = QHBoxLayout() diff --git a/src/calibre/gui2/dialogs/tag_editor.ui b/src/calibre/gui2/dialogs/tag_editor.ui index ee5471ebd6..c18520dbc9 100644 --- a/src/calibre/gui2/dialogs/tag_editor.ui +++ b/src/calibre/gui2/dialogs/tag_editor.ui @@ -11,7 +11,7 @@ - Tag Editor + Tag editor diff --git a/src/calibre/gui2/metadata/single.py b/src/calibre/gui2/metadata/single.py index 54909bce6d..65f2782333 100644 --- a/src/calibre/gui2/metadata/single.py +++ b/src/calibre/gui2/metadata/single.py @@ -227,7 +227,7 @@ class MetadataSingleDialogBase(QDialog): self.tags = TagsEdit(self) self.tags_editor_button = QToolButton(self) - self.tags_editor_button.setToolTip(_('Open Tag Editor')) + self.tags_editor_button.setToolTip(_('Open Tag editor')) self.tags_editor_button.setIcon(QIcon(I('chapters.png'))) self.tags_editor_button.clicked.connect(self.tags_editor) self.clear_tags_button = QToolButton(self) diff --git a/src/calibre/gui2/preferences/plugboard.ui b/src/calibre/gui2/preferences/plugboard.ui index e4ba4a16db..632f85db5f 100644 --- a/src/calibre/gui2/preferences/plugboard.ui +++ b/src/calibre/gui2/preferences/plugboard.ui @@ -77,6 +77,9 @@ One possible use for a plugboard is to alter the title to contain series informa Add new plugboard: + + new_format + @@ -90,6 +93,9 @@ One possible use for a plugboard is to alter the title to contain series informa Edit existing plugboard: + + edit_format + @@ -106,6 +112,9 @@ One possible use for a plugboard is to alter the title to contain series informa Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop + + existing_plugboards + @@ -186,7 +195,7 @@ One possible use for a plugboard is to alter the title to contain series informa - Save plugboard + &Save plugboard @@ -206,7 +215,7 @@ One possible use for a plugboard is to alter the title to contain series informa - Delete plugboard + &Delete plugboard diff --git a/src/calibre/gui2/search_box.py b/src/calibre/gui2/search_box.py index 336fe73562..8a98576413 100644 --- a/src/calibre/gui2/search_box.py +++ b/src/calibre/gui2/search_box.py @@ -437,7 +437,7 @@ class SearchBoxMixin(object): # {{{ def init_search_box_mixin(self): self.search.initialize('main_search_history', colorize=True, - help_text=_('Search (For Advanced search click the button to the left)')) + help_text=_('Search (For advanced search click the button to the left)')) self.search.cleared.connect(self.search_box_cleared) # Queued so that search.current_text will be correct self.search.changed.connect(self.search_box_changed, diff --git a/src/calibre/gui2/store/config/chooser/adv_search_builder.ui b/src/calibre/gui2/store/config/chooser/adv_search_builder.ui index 49064f9b4c..b0777436a1 100644 --- a/src/calibre/gui2/store/config/chooser/adv_search_builder.ui +++ b/src/calibre/gui2/store/config/chooser/adv_search_builder.ui @@ -11,7 +11,7 @@ - Advanced Search + Advanced search diff --git a/src/calibre/gui2/store/search/adv_search_builder.ui b/src/calibre/gui2/store/search/adv_search_builder.ui index 2d87f18c68..b10b18e5f3 100644 --- a/src/calibre/gui2/store/search/adv_search_builder.ui +++ b/src/calibre/gui2/store/search/adv_search_builder.ui @@ -11,7 +11,7 @@ - Advanced Search + Advanced search diff --git a/src/calibre/gui2/tag_mapper.py b/src/calibre/gui2/tag_mapper.py index a727fa5f18..e65268a00c 100644 --- a/src/calibre/gui2/tag_mapper.py +++ b/src/calibre/gui2/tag_mapper.py @@ -101,7 +101,7 @@ class RuleEdit(QWidget): h.addWidget(q) self.tag_editor_button = b = QToolButton(self) b.setIcon(QIcon(I('chapters.png'))) - b.setToolTip(_('Edit the list of tags with the tag editor')) + b.setToolTip(_('Edit the list of tags with the Tag editor')) h.addWidget(b), b.clicked.connect(self.edit_tags) b.setVisible(self.can_use_tag_editor) self.h2 = h = QHBoxLayout() @@ -150,7 +150,7 @@ class RuleEdit(QWidget): def specialise_context_menu(self, menu): if self.can_use_tag_editor: - menu.addAction(_('Use the tag editor to edit the list of tags'), self.edit_tags) + menu.addAction(_('Use the Tag editor to edit the list of tags'), self.edit_tags) def edit_tags(self): from calibre.gui2.dialogs.tag_editor import TagEditor diff --git a/src/calibre/gui2/widgets.py b/src/calibre/gui2/widgets.py index f5be83a506..be274ea0fb 100644 --- a/src/calibre/gui2/widgets.py +++ b/src/calibre/gui2/widgets.py @@ -108,9 +108,9 @@ class FilenamePattern(QWidget, Ui_Form): # {{{ fname = unicode(self.filename.text()) ext = os.path.splitext(fname)[1][1:].lower() if ext not in BOOK_EXTENSIONS: - return warning_dialog(self, _('Test name invalid'), - _('The name %s does not appear to end with a' - ' file extension. The name must end with a file ' + return warning_dialog(self, _('Test file name invalid'), + _('The file name %s does not appear to end with a' + ' file extension. It must end with a file ' ' extension like .epub or .mobi')%fname, show=True) try: