From 055b537fba076abc7c5af7e67d5729fa0debf386 Mon Sep 17 00:00:00 2001 From: Tomas Mizera Date: Mon, 27 May 2024 14:31:09 +0200 Subject: [PATCH] Update generic error message in login screen --- app/qml/account/MMAccountController.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/qml/account/MMAccountController.qml b/app/qml/account/MMAccountController.qml index 46fc60b57..f28e8d9bb 100644 --- a/app/qml/account/MMAccountController.qml +++ b/app/qml/account/MMAccountController.qml @@ -95,11 +95,11 @@ Item { } else { if (__merginApi.apiVersionStatus === MM.MerginApiStatus.INCOMPATIBLE) { - qsTr("Please update the app to use the latest features.") + qsTr( "Please update the app to use the latest features." ) } else if (__merginApi.apiVersionStatus === MM.MerginApiStatus.PENDING) { "" } else { - qsTr("Server is currently unavailable - please try again later.") + qsTr( "Server is currently unavailable, check your connection or try again later." ) } } }