mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-09 03:04:10 -04:00
Fix #2152 (Typo in GUI)
This commit is contained in:
parent
431c60edd0
commit
e83acb9645
@ -35,7 +35,7 @@ class OEBWriter(object):
|
|||||||
help=_('OPF version to generate. Default is %default.'))
|
help=_('OPF version to generate. Default is %default.'))
|
||||||
oeb('adobe_page_map', ['--adobe-page-map'], default=False,
|
oeb('adobe_page_map', ['--adobe-page-map'], default=False,
|
||||||
help=_('Generate an Adobe "page-map" file if pagination '
|
help=_('Generate an Adobe "page-map" file if pagination '
|
||||||
'information is avaliable.'))
|
'information is available.'))
|
||||||
return cfg
|
return cfg
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
|
@ -23,7 +23,7 @@ class PDBInput(InputFormatPlugin):
|
|||||||
Reader = get_reader(header.ident)
|
Reader = get_reader(header.ident)
|
||||||
|
|
||||||
if Reader is None:
|
if Reader is None:
|
||||||
raise PDBError('No reader avaliable for format within container.\n Identity is %s. Book type is %s' % (header.ident, IDENTITY_TO_NAME.get(header.ident, _('Unknown'))))
|
raise PDBError('No reader available for format within container.\n Identity is %s. Book type is %s' % (header.ident, IDENTITY_TO_NAME.get(header.ident, _('Unknown'))))
|
||||||
|
|
||||||
log.debug('Detected ebook format as: %s with identity: %s' % (IDENTITY_TO_NAME[header.ident], header.ident))
|
log.debug('Detected ebook format as: %s with identity: %s' % (IDENTITY_TO_NAME[header.ident], header.ident))
|
||||||
|
|
||||||
|
@ -42,7 +42,7 @@ class PDBOutput(OutputFormatPlugin):
|
|||||||
Writer = get_writer(opts.format)
|
Writer = get_writer(opts.format)
|
||||||
|
|
||||||
if Writer is None:
|
if Writer is None:
|
||||||
raise PDBError('No writer avaliable for format %s.' % format)
|
raise PDBError('No writer available for format %s.' % format)
|
||||||
|
|
||||||
writer = Writer(opts, log)
|
writer = Writer(opts, log)
|
||||||
|
|
||||||
|
@ -17,7 +17,7 @@
|
|||||||
<item row="0" column="0">
|
<item row="0" column="0">
|
||||||
<widget class="QGroupBox" name="groupBox">
|
<widget class="QGroupBox" name="groupBox">
|
||||||
<property name="title">
|
<property name="title">
|
||||||
<string>Select avaliable formats and their order for this device</string>
|
<string>Select available formats and their order for this device</string>
|
||||||
</property>
|
</property>
|
||||||
<layout class="QVBoxLayout" name="verticalLayout_7">
|
<layout class="QVBoxLayout" name="verticalLayout_7">
|
||||||
<item>
|
<item>
|
||||||
|
File diff suppressed because it is too large
Load Diff
Loading…
x
Reference in New Issue
Block a user