diff --git a/src/calibre/devices/kobo/driver.py b/src/calibre/devices/kobo/driver.py index da4c1dbbe1..dfb14aa2c5 100644 --- a/src/calibre/devices/kobo/driver.py +++ b/src/calibre/devices/kobo/driver.py @@ -1228,7 +1228,7 @@ class KOBO(USBMS): elif user_notes[location]['type'] == 'Highlight': annotations.append( _('Chapter %(chapter)d: %(chapter_title)s
%(typ)s
' - 'Chapter Progress: %(chapter_progress)s%%
Highlight: %(text)s

') % dict( + 'Chapter progress: %(chapter_progress)s%%
Highlight: %(text)s

') % dict( chapter=user_notes[location]['chapter'], dl=user_notes[location]['displayed_location'], typ=user_notes[location]['type'], @@ -1238,7 +1238,7 @@ class KOBO(USBMS): elif user_notes[location]['type'] == 'Annotation': annotations.append( _('Chapter %(chapter)d: %(chapter_title)s
' - '%(typ)s
Chapter Progress: %(chapter_progress)s%%
Highlight: %(text)s
' + '%(typ)s
Chapter progress: %(chapter_progress)s%%
Highlight: %(text)s
' 'Notes: %(annotation)s

') % dict( chapter=user_notes[location]['chapter'], dl=user_notes[location]['displayed_location'], @@ -1250,7 +1250,7 @@ class KOBO(USBMS): else: annotations.append( _('Chapter %(chapter)d: %(chapter_title)s
' - '%(typ)s
Chapter Progress: %(chapter_progress)s%%
Highlight: %(text)s
' + '%(typ)s
Chapter progress: %(chapter_progress)s%%
Highlight: %(text)s
' 'Notes: %(annotation)s

') % dict( chapter=user_notes[location]['chapter'], dl=user_notes[location]['displayed_location'], diff --git a/src/calibre/gui2/convert/look_and_feel.ui b/src/calibre/gui2/convert/look_and_feel.ui index c1fe7e2ae7..5684830475 100644 --- a/src/calibre/gui2/convert/look_and_feel.ui +++ b/src/calibre/gui2/convert/look_and_feel.ui @@ -33,7 +33,7 @@ - Fonts + &Fonts @@ -207,7 +207,7 @@ - Text + T&ext @@ -364,7 +364,7 @@ - Styling + &Styling @@ -477,7 +477,7 @@ - Transform styles + &Transform styles diff --git a/src/calibre/gui2/convert/search_and_replace.ui b/src/calibre/gui2/convert/search_and_replace.ui index 3c948cd90c..4ad7351055 100644 --- a/src/calibre/gui2/convert/search_and_replace.ui +++ b/src/calibre/gui2/convert/search_and_replace.ui @@ -32,7 +32,7 @@ - Edit Search/replace definition + Edit search/replace definition diff --git a/src/calibre/gui2/dialogs/template_line_editor.py b/src/calibre/gui2/dialogs/template_line_editor.py index 8b7ce5a467..a33f691a7c 100644 --- a/src/calibre/gui2/dialogs/template_line_editor.py +++ b/src/calibre/gui2/dialogs/template_line_editor.py @@ -30,7 +30,7 @@ class TemplateLineEditor(QLineEdit): action_clear_field = menu.addAction(_('Remove any template from the box')) action_clear_field.triggered.connect(self.clear_field) - action_open_editor = menu.addAction(_('Open Template Editor')) + action_open_editor = menu.addAction(_('Open template editor')) action_open_editor.triggered.connect(self.open_editor) menu.exec_(event.globalPos()) diff --git a/src/calibre/gui2/layout.py b/src/calibre/gui2/layout.py index c036f85ba4..0410a5719e 100644 --- a/src/calibre/gui2/layout.py +++ b/src/calibre/gui2/layout.py @@ -180,7 +180,7 @@ class SearchBar(QWidget): # {{{ self._layout.setContentsMargins(0,5,0,0) x = QToolButton(self) - x.setText(_('Vi&rtual Library')) + x.setText(_('Vi&rtual library')) x.setIcon(QIcon(I('lt.png'))) x.setObjectName("virtual_library") x.setToolButtonStyle(Qt.ToolButtonTextBesideIcon) diff --git a/src/calibre/gui2/preferences/coloring.py b/src/calibre/gui2/preferences/coloring.py index bce2331202..368afba126 100644 --- a/src/calibre/gui2/preferences/coloring.py +++ b/src/calibre/gui2/preferences/coloring.py @@ -495,7 +495,7 @@ class RuleEditor(QDialog): # {{{ self.color_label.setText('''  {st}   {st}  - '''.format(c=c, bg1=bg1, bg2=bg2, st=_('Sample Text'))) + '''.format(c=c, bg1=bg1, bg2=bg2, st=_('Sample text'))) def sanitize_icon_file_name(self, icon_path): n = lower(sanitize_file_name_unicode( @@ -887,10 +887,10 @@ class EditRules(QWidget): # {{{ l1.setWordWrap(True) l.addWidget(l1, l.rowCount(), 0, 1, 2) - self.add_button = QPushButton(QIcon(I('plus.png')), _('Add rule'), + self.add_button = QPushButton(QIcon(I('plus.png')), _('&Add rule'), self) self.remove_button = QPushButton(QIcon(I('minus.png')), - _('Remove rule(s)'), self) + _('&Remove rule(s)'), self) self.add_button.clicked.connect(self.add_rule) self.remove_button.clicked.connect(self.remove_rule) l.addWidget(self.add_button, l.rowCount(), 0) diff --git a/src/calibre/gui2/preferences/look_feel.py b/src/calibre/gui2/preferences/look_feel.py index 0cbbbde5dc..d552593ee1 100644 --- a/src/calibre/gui2/preferences/look_feel.py +++ b/src/calibre/gui2/preferences/look_feel.py @@ -387,12 +387,12 @@ class ConfigWidget(ConfigWidgetBase, Ui_Form): self.edit_rules = EditRules(self.tabWidget) self.edit_rules.changed.connect(self.changed_signal) self.tabWidget.addTab(self.edit_rules, - QIcon(I('format-fill-color.png')), _('Column coloring')) + QIcon(I('format-fill-color.png')), _('Column &coloring')) self.icon_rules = EditRules(self.tabWidget) self.icon_rules.changed.connect(self.changed_signal) self.tabWidget.addTab(self.icon_rules, - QIcon(I('icon_choose.png')), _('Column icons')) + QIcon(I('icon_choose.png')), _('Column &icons')) self.grid_rules = EditRules(self.emblems_tab) self.grid_rules.changed.connect(self.changed_signal) diff --git a/src/calibre/gui2/preferences/look_feel.ui b/src/calibre/gui2/preferences/look_feel.ui index c8c72e7c06..069e93d5bf 100644 --- a/src/calibre/gui2/preferences/look_feel.ui +++ b/src/calibre/gui2/preferences/look_feel.ui @@ -263,7 +263,7 @@ - Layout + &Layout @@ -520,12 +520,12 @@ A value of zero means calculate automatically. - Emblems + &Emblems - Performance + &Performance @@ -1022,7 +1022,7 @@ see the counts by hovering your mouse over any item. - Template editor + Template &editor diff --git a/src/calibre/gui2/preferences/save_template.ui b/src/calibre/gui2/preferences/save_template.ui index 6f10a4c68f..c1060f815e 100644 --- a/src/calibre/gui2/preferences/save_template.ui +++ b/src/calibre/gui2/preferences/save_template.ui @@ -59,7 +59,7 @@ - Template Editor + Template editor