Remove more exclamation marks from error messages.

This commit is contained in:
Alexander Lakhin
2017-11-01 15:18:07 +00:00
committed by Dave Page
parent 635d944e03
commit 23d431fb54
22 changed files with 35 additions and 35 deletions

View File

@@ -362,7 +362,7 @@ class Connection(BaseConnection):
except Exception as e:
current_app.logger.exception(e)
return False, \
_("Failed to decrypt the saved password!\nError: {0}").format(
_("Failed to decrypt the saved password.\nError: {0}").format(
str(e)
)

View File

@@ -32,7 +32,7 @@ class ConnectionLost(HTTPException):
def get_response(self, environ=None):
return service_unavailable(
_("Connection to the server has been lost!"),
_("Connection to the server has been lost."),
info="CONNECTION_LOST",
data={
'sid': self.sid,