Skip to content

Commit

Permalink
Merge pull request #2844 from BOINC/dpa_ati
Browse files Browse the repository at this point in the history
web: change "ATI" to "AMD" in a few places
  • Loading branch information
JuhaSointusalo authored Nov 24, 2018
2 parents f8df9c3 + 5929518 commit 3e127ca
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion html/inc/db_ops.inc
Original file line number Diff line number Diff line change
Expand Up @@ -840,7 +840,7 @@ function resource_name($x) {
switch ($x) {
case 2: return "CPU";
case 3: return "NVIDIA";
case 4: return "ATI";
case 4: return "AMD";
}
return "Unknown resource: $x";
}
Expand Down
4 changes: 2 additions & 2 deletions html/inc/prefs_project.inc
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,8 @@ if ($app_types->cpu) {
}
if ($app_types->ati) {
$project_pref_descs[] = new PREF_BOOL (
tra("Use ATI GPU"),
"Request ATI GPU tasks from this project.",
tra("Use AMD GPU"),
"Request AMD GPU tasks from this project.",
"no_ati",
false,
true
Expand Down
2 changes: 1 addition & 1 deletion html/inc/result.inc
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ function app_version_string($result) {
case ANON_PLATFORM_NVIDIA:
return anon_platform_string($result, tra("NVIDIA GPU"));
case ANON_PLATFORM_ATI:
return anon_platform_string($result, tra("ATI GPU"));
return anon_platform_string($result, tra("AMD GPU"));
case ANON_PLATFORM_INTEL:
return anon_platform_string($result, tra("Intel GPU"));
}
Expand Down

0 comments on commit 3e127ca

Please sign in to comment.