Skip to content

Commit

Permalink
String changes
Browse files Browse the repository at this point in the history
  • Loading branch information
kovidgoyal committed Apr 4, 2022
1 parent 7f79f21 commit f0c948e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions src/calibre/customize/profiles.py
Original file line number Diff line number Diff line change
Expand Up @@ -705,7 +705,7 @@ class KindlePaperWhiteOutput(KindleOutput):

name = 'Kindle PaperWhite'
short_name = 'kindle_pw'
description = _('This profile is intended for the Amazon Kindle PaperWhite 1 and 2')
description = _('This profile is intended for the Amazon Kindle Paperwhite 1 and 2')

# Screen size is a best guess
screen_size = (658, 940)
Expand All @@ -730,7 +730,7 @@ class KindlePaperWhite3Output(KindleVoyageOutput):

name = 'Kindle PaperWhite 3'
short_name = 'kindle_pw3'
description = _('This profile is intended for the Amazon Kindle PaperWhite 3 and above')
description = _('This profile is intended for the Amazon Kindle Paperwhite 3 and above')
# Screen size is currently just the spec size, actual renderable area will
# depend on someone with the device doing tests.
screen_size = (1072, 1430)
Expand All @@ -742,7 +742,7 @@ class KindleOasisOutput(KindlePaperWhite3Output):

name = 'Kindle Oasis'
short_name = 'kindle_oasis'
description = _('This profile is intended for the Amazon Kindle Oasis 2017, PaperWhite 2021 and above')
description = _('This profile is intended for the Amazon Kindle Oasis 2017, Paperwhite 2021 and above')
# Screen size is currently just the spec size, actual renderable area will
# depend on someone with the device doing tests.
screen_size = (1264, 1680)
Expand Down
2 changes: 1 addition & 1 deletion src/calibre/devices/kindle/driver.py
Original file line number Diff line number Diff line change
Expand Up @@ -328,7 +328,7 @@ def add_annotation_to_library(self, db, db_id, annotation):
class KINDLE2(KINDLE):

name = 'Kindle 2/3/4/Touch/PaperWhite/Voyage Device Interface'
description = _('Communicate with the Kindle 2/3/4/Touch/PaperWhite/Voyage e-book reader.')
description = _('Communicate with the Kindle 2/3/4/Touch/Paperwhite/Voyage e-book reader.')

FORMATS = ['azw', 'mobi', 'azw3', 'prc', 'azw1', 'tpz', 'azw4', 'kfx', 'pobi', 'pdf', 'txt']
DELETE_EXTS = KINDLE.DELETE_EXTS + ['.mbp1', '.mbs', '.sdr', '.han']
Expand Down
2 changes: 1 addition & 1 deletion src/calibre/gui2/dialogs/exim.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ class RunAction(QDialog):

def __init__(self, title, err_msg, action, parent=None):
QDialog.__init__(self, parent)
self.setWindowTitle(_('Working please wait...'))
self.setWindowTitle(_('Working, please wait...'))
self.title, self.action, self.tb, self.err_msg = title, action, None, err_msg
self.abort = Event()
self.setup_ui()
Expand Down

0 comments on commit f0c948e

Please sign in to comment.