From 0b5e655d259afa8bfff1082fb4f5f351222ee3a2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Duval?= Date: Sun, 8 Feb 2009 14:19:06 +0000 Subject: [PATCH] Changed the error message for unreadable packages to be a passive one, as suggested by Stephan. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@29162 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/apps/packageinstaller/PackageView.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/apps/packageinstaller/PackageView.cpp b/src/apps/packageinstaller/PackageView.cpp index cfadcd323f..8a15d9c0ff 100644 --- a/src/apps/packageinstaller/PackageView.cpp +++ b/src/apps/packageinstaller/PackageView.cpp @@ -88,7 +88,7 @@ PackageView::AttachedToWindow() status_t ret = fInfo.InitCheck(); if (ret != B_OK && ret != B_NO_INIT) { BAlert *warning = new BAlert(T("parsing_failed"), - T("I was unable to read the given package file.\nOne of the possible " + T("The package file is not readable.\nOne of the possible " "reasons for this might be that the requested file is not a valid " "BeOS .pkg package."), T("OK"), NULL, NULL, B_WIDTH_AS_USUAL, B_WARNING_ALERT);