string changes

This commit is contained in:
Kovid Goyal 2021-05-10 07:44:02 +05:30
parent 24c5feff3e
commit 53e42361d5
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
7 changed files with 10 additions and 10 deletions

View File

@ -28,7 +28,7 @@ To begin catalog generation, select the menu item :guilabel:`Convert books > Cre
In :guilabel:`Catalog options`, select **AZW3, EPUB or MOBI** as the Catalog format. In the :guilabel:`Catalog title` field, provide a name that will be used for the generated catalog. If a catalog of the same name and format already exists, it will be replaced with the newly-generated catalog. In :guilabel:`Catalog options`, select **AZW3, EPUB or MOBI** as the Catalog format. In the :guilabel:`Catalog title` field, provide a name that will be used for the generated catalog. If a catalog of the same name and format already exists, it will be replaced with the newly-generated catalog.
.. image:: images/catalog_send_to_device.png .. image:: images/catalog_send_to_device.png
:alt: Catalog send to device :alt: Catalog: send to device automatically option
:align: center :align: center
Enabling :guilabel:`Send catalog to device automatically` will download the generated catalog to a connected device upon completion. Enabling :guilabel:`Send catalog to device automatically` will download the generated catalog to a connected device upon completion.

View File

@ -529,7 +529,7 @@ The Live preview panel
------------------------ ------------------------
.. image:: images/live-preview.png .. image:: images/live-preview.png
:alt: The Live preview Panel :alt: The Live preview panel
:class: float-left-img :class: float-left-img
The :guilabel:`File preview` gives you an overview of the various files inside The :guilabel:`File preview` gives you an overview of the various files inside
@ -590,7 +590,7 @@ The Live CSS panel
--------------------- ---------------------
.. image:: images/live_css.png .. image:: images/live_css.png
:alt: The Live CSS Panel :alt: The Live CSS panel
:class: float-left-img :class: float-left-img
@ -634,7 +634,7 @@ Checking the spelling of words in the book
You can run a spelling checker via :guilabel:`Tools->Check spelling`. You can run a spelling checker via :guilabel:`Tools->Check spelling`.
.. image:: images/edit-book-spell.png .. image:: images/edit-book-spell.png
:alt: The Check Spelling tool :alt: The Check spelling tool
:align: center :align: center
:class: fit-img :class: fit-img

View File

@ -115,7 +115,7 @@ class ChooseLibrary(QDialog, Ui_Dialog):
if not empty: if not empty:
error_dialog(self, _('Not empty'), error_dialog(self, _('Not empty'),
_('The folder %s is not empty. Please choose an empty' _('The folder %s is not empty. Please choose an empty'
' folder')%loc, ' folder.')%loc,
show=True) show=True)
return False return False
if (iswindows and len(loc) > if (iswindows and len(loc) >

View File

@ -11,7 +11,7 @@
</rect> </rect>
</property> </property>
<property name="windowTitle"> <property name="windowTitle">
<string>Configure Viewer</string> <string>Configure viewer</string>
</property> </property>
<property name="windowIcon"> <property name="windowIcon">
<iconset resource="../../../../resources/images.qrc"> <iconset resource="../../../../resources/images.qrc">

View File

@ -227,7 +227,7 @@ class ManageFonts(Dialog):
subset_all_fonts = pyqtSignal() subset_all_fonts = pyqtSignal()
def __init__(self, parent=None): def __init__(self, parent=None):
Dialog.__init__(self, _('Manage Fonts'), 'manage-fonts', parent=parent) Dialog.__init__(self, _('Manage fonts'), 'manage-fonts', parent=parent)
def setup_ui(self): def setup_ui(self):
self.setAttribute(Qt.WidgetAttribute.WA_DeleteOnClose, False) self.setAttribute(Qt.WidgetAttribute.WA_DeleteOnClose, False)

View File

@ -976,7 +976,7 @@ class Main(MainWindow, MainWindowMixin, DeviceMixin, EmailMixin, # {{{
your e-book reader may have trouble with the EPUB. your e-book reader may have trouble with the EPUB.
''') ''')
if not minz: if not minz:
d = error_dialog(self, _('Conversion Failed'), msg, d = error_dialog(self, _('Conversion failed'), msg,
det_msg=job.details) det_msg=job.details)
d.setModal(False) d.setModal(False)
d.show() d.show()

View File

@ -353,13 +353,13 @@ def common_shortcuts(): # {{{
'extend_selection_to_start_of_line': desc( 'extend_selection_to_start_of_line': desc(
v"['Shift+Home']", v"['Shift+Home']",
'ui', 'ui',
_('Extend current selection to the start of the line'), _('Extend the current selection to the start of the line'),
), ),
'extend_selection_to_end_of_line': desc( 'extend_selection_to_end_of_line': desc(
v"['Shift+End']", v"['Shift+End']",
'ui', 'ui',
_('Extend current selection to the end of the line'), _('Extend the current selection to the end of the line'),
), ),
'select_all': desc( 'select_all': desc(