From 5f752d4fd2e9257604dffa027630aa6de2647538 Mon Sep 17 00:00:00 2001 From: Max Duval Date: Mon, 10 Jun 2024 11:15:15 +0100 Subject: [PATCH] feat: add more GU team abbreviations (#27210) as requested by the sports desk --- sport/app/football/model/GuTeamCode.scala | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/sport/app/football/model/GuTeamCode.scala b/sport/app/football/model/GuTeamCode.scala index 86deae8d7df7..685cfe63b8b2 100644 --- a/sport/app/football/model/GuTeamCode.scala +++ b/sport/app/football/model/GuTeamCode.scala @@ -17,16 +17,18 @@ object GuTeamCodes { team.name match { case "China PR" => "CHN" case "Costa Rica" => "CRC" + case "Germany" => "GER" case "Japan" => "JPN" case "Morocco" => "MAR" case "Nigeria" => "NGA" case "Netherlands" => "NED" case "North Macedonia" => "MKD" case "New Zealand" => "NZL" + case "Portugal" => "POR" case "Rep of Ireland" => "IRL" case "South Africa" => "RSA" case "South Korea" => "KOR" - case "Spain" => "ESP" + case "Spain" => "SPA" case "Switzerland" => "SUI" case _ => TeamCodes.codeFor(team) }