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
This commit is contained in:
Jérôme Duval 2009-02-08 14:19:06 +00:00
parent d5ec51ca02
commit 0b5e655d25

View File

@ -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);