mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-09 03:04:10 -04:00
String changes
This commit is contained in:
parent
e54d3160e6
commit
7c5f4bd48b
@ -398,7 +398,7 @@ operates on the intermediate XHTML produced by the conversion pipeline. Use the
|
||||
:ref:`conversion-introduction` to figure out the appropriate settings for your book. There is also a button for a XPath wizard
|
||||
to help with the generation of simple XPath expressions.
|
||||
|
||||
By default, calibre uses the following expression for chapter detection::
|
||||
By default, calibre uses the following expression for detecting chapters::
|
||||
|
||||
//*[((name()='h1' or name()='h2') and re:test(., 'chapter|book|section|part\s+', 'i')) or @class = 'chapter']
|
||||
|
||||
|
@ -44,7 +44,7 @@
|
||||
<item row="0" column="0" colspan="2">
|
||||
<widget class="QLabel" name="label">
|
||||
<property name="text">
|
||||
<string>Choose a folder to put the debug output into. If you specify a folder, calibre will place a lot of debug output into it. This will be useful in understanding the conversion process and figuring out the correct values for conversion parameters like Table of Contents and Chapter Detection.</string>
|
||||
<string>Choose a folder to put the debug output into. If you specify a folder, calibre will place a lot of debug output into it. This will be useful in understanding the conversion process and figuring out the correct values for conversion parameters like Table of Contents and Chapter detection.</string>
|
||||
</property>
|
||||
<property name="wordWrap">
|
||||
<bool>true</bool>
|
||||
|
@ -382,7 +382,7 @@
|
||||
<item>
|
||||
<widget class="QGroupBox" name="opt_filter_css">
|
||||
<property name="title">
|
||||
<string>Filter Style Information</string>
|
||||
<string>Filter style information</string>
|
||||
</property>
|
||||
<layout class="QVBoxLayout" name="verticalLayout_3">
|
||||
<item>
|
||||
|
@ -74,7 +74,7 @@ class Main(MainWindow, Ui_MainWindow):
|
||||
Ui_MainWindow.__init__(self)
|
||||
self.setupUi(self)
|
||||
self.setAttribute(Qt.WidgetAttribute.WA_DeleteOnClose)
|
||||
self.setWindowTitle(__appname__ + _(' - LRF Viewer'))
|
||||
self.setWindowTitle(__appname__ + _(' - LRF viewer'))
|
||||
|
||||
self.logger = logger
|
||||
self.opts = opts
|
||||
|
@ -17,7 +17,7 @@
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="windowTitle">
|
||||
<string>LRF Viewer</string>
|
||||
<string>LRF viewer</string>
|
||||
</property>
|
||||
<property name="windowIcon">
|
||||
<iconset>
|
||||
@ -119,7 +119,7 @@
|
||||
</widget>
|
||||
<widget class="QToolBar" name="tool_bar">
|
||||
<property name="windowTitle">
|
||||
<string>LRF Viewer toolbar</string>
|
||||
<string>LRF viewer toolbar</string>
|
||||
</property>
|
||||
<property name="allowedAreas">
|
||||
<set>Qt::AllToolBarAreas</set>
|
||||
|
@ -967,7 +967,7 @@ class Main(MainWindow, MainWindowMixin, DeviceMixin, EmailMixin, # {{{
|
||||
splitting fails.
|
||||
<p>You can <b>work around the problem</b> by either increasing the
|
||||
maximum split size under <i>EPUB output</i> in the conversion dialog,
|
||||
or by turning on Heuristic Processing, also in the conversion
|
||||
or by turning on Heuristic processing, also in the conversion
|
||||
dialog. Note that if you make the maximum split size too large,
|
||||
your e-book reader may have trouble with the EPUB.
|
||||
''')
|
||||
|
@ -285,7 +285,7 @@ def look_and_feel(container):
|
||||
subhead(_('St&yling'))
|
||||
g = E.div(class_='simple-group')
|
||||
container.appendChild(g)
|
||||
g.appendChild(lineedit('filter_css', _('Filter Style Information'), 40))
|
||||
g.appendChild(lineedit('filter_css', _('Filter style information'), 40))
|
||||
container.appendChild(textarea('extra_css', 'E&xtra CSS'))
|
||||
# }}}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user