mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
Remove more exclamation marks from error messages.
This commit is contained in:
committed by
Dave Page
parent
635d944e03
commit
23d431fb54
@@ -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)
|
||||
)
|
||||
|
||||
|
||||
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user