mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-05-08 21:34:56 +02:00
string changes
This commit is contained in:
parent
b24589ad57
commit
7f35f289ce
4 changed files with 4 additions and 4 deletions
|
|
@ -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
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -134,7 +134,7 @@ def show_disclaimer(self):
|
|||
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. '
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
|
|
|||
|
|
@ -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'.")
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue