String changes

This commit is contained in:
Kovid Goyal 2020-12-17 22:35:04 +05:30
parent 966faf7dce
commit 08cafd1de0
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
4 changed files with 6 additions and 6 deletions

View File

@ -1363,7 +1363,7 @@ If you turn on dark mode under the Windows Settings->Personalisation->Colors and
- PDF Output: When a link with a fragment points to a non-existent anchor link to the top of the file instead of not linking at all - PDF Output: When a link with a fragment points to a non-existent anchor link to the top of the file instead of not linking at all
- PDF Output: Fix standard svg fullscreen image markup not working - PDF Output: Fix standard SVG fullscreen image markup not working
- [1848701] PDF Output: Fix some books with full screen images failing to convert. - [1848701] PDF Output: Fix some books with full screen images failing to convert.

View File

@ -157,11 +157,11 @@ behavior`.
Following links using only the keyboard Following links using only the keyboard
----------------------------------------------- -----------------------------------------------
The E-book viewer has a :guilabel:`hints mode` that allows you to click links The E-book viewer has a :guilabel:`Hints mode` that allows you to click links
in the text without using the mouse. Press the :kbd:`Alt+f` key and all links in the text without using the mouse. Press the :kbd:`Alt+F` key and all links
in the current screen will be highlighted with a number or letter over them. in the current screen will be highlighted with a number or letter over them.
Press the letter on your keyboard to click the link. Pressing the :kbd:`Esc` Press the letter on your keyboard to click the link. Pressing the :kbd:`Esc`
key will abort the hints mode without selecting any link. key will abort the :guilabel:`Hints mode` without selecting any link.
If more than thirty five links are on-screen then some of them will have If more than thirty five links are on-screen then some of them will have
multiple letters, in which case type the first and second, or the first and multiple letters, in which case type the first and second, or the first and

View File

@ -240,7 +240,7 @@
<item row="5" column="0" colspan="2"> <item row="5" column="0" colspan="2">
<widget class="QCheckBox" name="opt_unsmarten_punctuation"> <widget class="QCheckBox" name="opt_unsmarten_punctuation">
<property name="text"> <property name="text">
<string>&amp;UnSmarten punctuation</string> <string>&amp;Unsmarten punctuation</string>
</property> </property>
</widget> </widget>
</item> </item>

View File

@ -266,7 +266,7 @@ def look_and_feel(container):
{'original': _('Original'), 'left': _('Left align'), 'justify': _('Justify text')} {'original': _('Original'), 'left': _('Left align'), 'justify': _('Justify text')}
)) ))
g.appendChild(checkbox('smarten_punctuation', _('Smarten &punctuation'))) g.appendChild(checkbox('smarten_punctuation', _('Smarten &punctuation')))
g.appendChild(checkbox('unsmarten_punctuation', _('&UnSmarten punctuation'))) g.appendChild(checkbox('unsmarten_punctuation', _('&Unsmarten punctuation')))
g.appendChild(checkbox('asciiize', _('&Transliterate Unicode characters to ASCII'))) g.appendChild(checkbox('asciiize', _('&Transliterate Unicode characters to ASCII')))
subhead(_('Lay&out')) subhead(_('Lay&out'))