From e824035985f60bebe35ffad285bb4fff7b804c62 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stephan=20A=C3=9Fmus?= Date: Mon, 29 Sep 2014 23:19:25 +0200 Subject: [PATCH] HaikuDepot: Fixed missing space in error alert. --- src/apps/haikudepot/ui/UserLoginWindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/apps/haikudepot/ui/UserLoginWindow.cpp b/src/apps/haikudepot/ui/UserLoginWindow.cpp index a9159a2005..7a57a9b544 100644 --- a/src/apps/haikudepot/ui/UserLoginWindow.cpp +++ b/src/apps/haikudepot/ui/UserLoginWindow.cpp @@ -514,7 +514,7 @@ UserLoginWindow::_CreateAccountThread() } else if (message == "validationerror") { _CollectValidationFailures(result, error); } else { - error << B_TRANSLATE("The web service responded with: "); + error << B_TRANSLATE(" It responded with: "); error << message; } }