Remove translated debugging output. This being primarily a GUI app.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@41060 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Jonas Sundström 2011-03-20 21:13:59 +00:00
parent eef42c403b
commit 0368c55322
2 changed files with 7 additions and 7 deletions

View File

@ -1029,7 +1029,7 @@ PackageInfo::Parse()
parser_debug("PtcI\n");
break;
} else {
fprintf(stderr, B_TRANSLATE("Unknown file tag %s\n"), buffer);
fprintf(stderr, "Unknown file tag %s\n", buffer);
RETURN_AND_SET_STATUS(B_ERROR);
}
}

View File

@ -130,13 +130,13 @@ PackageInstall::_Install()
// Uninstall the package
err = packageInfo.Uninstall();
if (err != B_OK) {
fprintf(stderr, B_TRANSLATE("Error on uninstall\n"));
fprintf(stderr, "Error on uninstall\n");
return P_MSG_I_ERROR;
}
err = packageInfo.SetTo(info->GetName(), info->GetVersion(), true);
if (err != B_OK) {
fprintf(stderr, B_TRANSLATE("Error on SetTo\n"));
fprintf(stderr, "Error on SetTo\n");
return P_MSG_I_ERROR;
}
} else {
@ -146,13 +146,13 @@ PackageInstall::_Install()
} else if (err == B_ENTRY_NOT_FOUND) {
err = packageInfo.SetTo(info->GetName(), info->GetVersion(), true);
if (err != B_OK) {
fprintf(stderr, B_TRANSLATE("Error on SetTo\n"));
fprintf(stderr, "Error on SetTo\n");
return P_MSG_I_ERROR;
}
} else if (progress->Stopped()) {
return P_MSG_I_ABORT;
} else {
fprintf(stderr, B_TRANSLATE("returning on error\n"));
fprintf(stderr, "returning on error\n");
return P_MSG_I_ERROR;
}
@ -198,7 +198,7 @@ PackageInstall::_Install()
}
if (err != B_OK) {
fprintf(stderr, B_TRANSLATE("Error while writing path\n"));
fprintf(stderr, "Error while writing path\n");
return P_MSG_I_ERROR;
}
@ -224,7 +224,7 @@ PackageInstall::_Install()
fCurrentScript = scr;
if (scr->DoInstall() != B_OK) {
fprintf(stderr, B_TRANSLATE("Error while running script\n"));
fprintf(stderr, "Error while running script\n");
return P_MSG_I_ERROR;
}
fCurrentScriptLocker.Unlock();