diff --git a/html/inc/db_ops.inc b/html/inc/db_ops.inc index 64bd85a4b6..c90829eb64 100644 --- a/html/inc/db_ops.inc +++ b/html/inc/db_ops.inc @@ -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"; } diff --git a/html/inc/prefs_project.inc b/html/inc/prefs_project.inc index 38e1a774d7..f42d1bdea1 100644 --- a/html/inc/prefs_project.inc +++ b/html/inc/prefs_project.inc @@ -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 diff --git a/html/inc/result.inc b/html/inc/result.inc index f4366da10e..efde9b975d 100644 --- a/html/inc/result.inc +++ b/html/inc/result.inc @@ -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")); }