Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

web: change "ATI" to "AMD" in a few places #2844

Merged
merged 1 commit into from
Nov 24, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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