string changes

This commit is contained in:
Kovid Goyal 2021-04-24 09:25:57 +05:30
parent b24589ad57
commit 7f35f289ce
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
4 changed files with 4 additions and 4 deletions

View File

@ -398,7 +398,7 @@ def get_version():
def get_appname_for_display():
ans = __appname__
if isportable:
ans = _('{} portable').format(ans)
ans = _('{} Portable').format(ans)
return ans

View File

@ -134,7 +134,7 @@ class StoreAction(InterfaceAction):
confirm(('<p>' +
_('calibre helps you find the e-books you want by searching '
'the websites of various commercial and public domain '
'book sources for you.') +
'book sources.') +
'<p>' +
_('Using the integrated search you can easily find which '
'store has the book you are looking for, at the best price. '

View File

@ -248,7 +248,7 @@
<item row="3" column="3">
<widget class="QToolButton" name="unapply_button">
<property name="toolTip">
<string>Unapply (remove) tag from current tag category</string>
<string>Unapply (remove) selected tags from current tag category</string>
</property>
<property name="text">
<string>...</string>

View File

@ -2028,7 +2028,7 @@ class BuiltinCharacter(BuiltinFormatterFunction):
category = 'String manipulation'
__doc__ = doc = _('character(character_name) -- returns the '
'character named by character_name. For example, '
"character('newline') returns a newline character ('\n'). "
r"character('newline') returns a newline character ('\n'). "
"The supported character names are 'newline', 'return', "
"'tab', and 'backslash'.")