String changes

This commit is contained in:
Kovid Goyal 2019-12-23 09:23:06 +05:30
parent d61038d0d1
commit 6b0668960b
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
3 changed files with 3 additions and 3 deletions

View File

@ -153,7 +153,7 @@ The server interface
The server interface is a simplified version of the main calibre interface, The server interface is a simplified version of the main calibre interface,
optimised for use with touch screens. The home screen shows you books optimised for use with touch screens. The home screen shows you books
you are currently reading as well as allowing to choose a calibre library you you are currently reading as well as allowing to choose a calibre library you
want to browse. The server in calibre 3 gives you access to all your libraries, want to browse. The server in calibre gives you access to all your libraries,
not just a single one, as before. not just a single one, as before.
The book list The book list

View File

@ -11,7 +11,7 @@
</rect> </rect>
</property> </property>
<property name="windowTitle"> <property name="windowTitle">
<string>Category Editor</string> <string>Category editor</string>
</property> </property>
<property name="windowIcon"> <property name="windowIcon">
<iconset> <iconset>

View File

@ -77,7 +77,7 @@ def ajax(path, on_complete, on_progress=None, bypass_cache=True, method='GET', q
def set_error(event, is_network_error): def set_error(event, is_network_error):
if is_network_error: if is_network_error:
xhr.error_html = str.format(_('Failed to communicate with "{}", network error, is the server running and accessible?'), xhr.request_path) xhr.error_html = str.format(_('Failed to communicate with "{}", network error. Is the server running and accessible?'), xhr.request_path)
elif event is 'timeout': elif event is 'timeout':
xhr.error_html = str.format(_('Failed to communicate with "{}", timed out after: {} seconds'), xhr.request_path, timeout) xhr.error_html = str.format(_('Failed to communicate with "{}", timed out after: {} seconds'), xhr.request_path, timeout)
elif event is 'abort': elif event is 'abort':