- scheduler: instead of "app is not available for your type of computer",

say "app is not available for Microsoft Windows (98 or later) running on an Intel x86-compatible CPU" (or whatever)


svn path=/trunk/boinc/; revision=22537
This commit is contained in:
David Anderson 2010-10-15 20:25:51 +00:00
parent c9be64765c
commit 7bd620e6b5
2 changed files with 10 additions and 2 deletions

View File

@ -7385,3 +7385,10 @@ David 15 Oct 2010
work_fetch.cpp
lib/
coproc.h
David 15 Oct 2010
- scheduler: instead of "app is not available for your type of computer",
say "app is not available for Microsoft Windows (98 or later) running on an Intel x86-compatible CPU" (or whatever)
sched/
sched_send.cpp

View File

@ -686,9 +686,10 @@ BEST_APP_VERSION* get_app_version(
}
if (no_version_for_platform) {
sprintf(message,
"%s %s.",
"%s %s %s.",
app->user_friendly_name,
_("is not available for your type of computer")
_("is not available for"),
g_request->platforms.list[0]->user_friendly_name
);
add_no_work_message(message);
}