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
07e11b2201
commit
66cc3507ad
@ -3285,7 +3285,7 @@
|
|||||||
date: 2015-01-30
|
date: 2015-01-30
|
||||||
|
|
||||||
new features:
|
new features:
|
||||||
- title: "Edit book: Add 'Style Classes' and 'Links' report pages to the Reports tool"
|
- title: "Edit book: Add 'Style classes' and 'Links' report pages to the Reports tool"
|
||||||
|
|
||||||
- title: "Tag browser: Allow expanding all children of a node by right clicking and choosing 'Expand all'"
|
- title: "Tag browser: Allow expanding all children of a node by right clicking and choosing 'Expand all'"
|
||||||
tickets: [1414315]
|
tickets: [1414315]
|
||||||
|
@ -78,7 +78,7 @@
|
|||||||
<item>
|
<item>
|
||||||
<widget class="QLabel" name="label_2">
|
<widget class="QLabel" name="label_2">
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>Enable</string>
|
<string>Enable:</string>
|
||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
|
@ -23,7 +23,7 @@
|
|||||||
<item row="0" column="0">
|
<item row="0" column="0">
|
||||||
<widget class="QLabel" name="label">
|
<widget class="QLabel" name="label">
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>Number of seconds to wait for a store to respond</string>
|
<string>Number of seconds to wait for a store to respond:</string>
|
||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
@ -37,7 +37,7 @@
|
|||||||
<item row="1" column="0">
|
<item row="1" column="0">
|
||||||
<widget class="QLabel" name="label_2">
|
<widget class="QLabel" name="label_2">
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>Number of seconds to let a store process results</string>
|
<string>Number of seconds to let a store process results:</string>
|
||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
@ -69,7 +69,7 @@
|
|||||||
<item row="0" column="0">
|
<item row="0" column="0">
|
||||||
<widget class="QLabel" name="label_3">
|
<widget class="QLabel" name="label_3">
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>Maximum number of results to show per store</string>
|
<string>Maximum number of results to show per store:</string>
|
||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
@ -99,7 +99,7 @@
|
|||||||
<item row="0" column="0">
|
<item row="0" column="0">
|
||||||
<widget class="QLabel" name="label_4">
|
<widget class="QLabel" name="label_4">
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>Number of search threads to use</string>
|
<string>Number of search threads to use:</string>
|
||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
@ -113,7 +113,7 @@
|
|||||||
<item row="1" column="0">
|
<item row="1" column="0">
|
||||||
<widget class="QLabel" name="label_5">
|
<widget class="QLabel" name="label_5">
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>Number of cache update threads to use</string>
|
<string>Number of cache update threads to use:</string>
|
||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
@ -127,7 +127,7 @@
|
|||||||
<item row="2" column="0">
|
<item row="2" column="0">
|
||||||
<widget class="QLabel" name="label_6">
|
<widget class="QLabel" name="label_6">
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>Number of cover download threads to use</string>
|
<string>Number of cover download threads to use:</string>
|
||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
@ -141,7 +141,7 @@
|
|||||||
<item row="3" column="0">
|
<item row="3" column="0">
|
||||||
<widget class="QLabel" name="label_7">
|
<widget class="QLabel" name="label_7">
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>Number of details threads to use</string>
|
<string>Number of details threads to use:</string>
|
||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
|
@ -1298,11 +1298,11 @@ class ReportsWidget(QWidget):
|
|||||||
|
|
||||||
self.css = c = CSSWidget(self)
|
self.css = c = CSSWidget(self)
|
||||||
s.addWidget(c)
|
s.addWidget(c)
|
||||||
QListWidgetItem(_('Style Rules'), r)
|
QListWidgetItem(_('Style rules'), r)
|
||||||
|
|
||||||
self.css = c = ClassesWidget(self)
|
self.css = c = ClassesWidget(self)
|
||||||
s.addWidget(c)
|
s.addWidget(c)
|
||||||
QListWidgetItem(_('Style Classes'), r)
|
QListWidgetItem(_('Style classes'), r)
|
||||||
|
|
||||||
self.chars = c = CharsWidget(self)
|
self.chars = c = CharsWidget(self)
|
||||||
s.addWidget(c)
|
s.addWidget(c)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user