mirror of https://github.com/BOINC/boinc.git
- 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:
parent
c9be64765c
commit
7bd620e6b5
|
@ -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
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue