private/Get-EngPremierTeamAlternateName.ps1
function Get-EngPremierTeamAlternateName { [CmdletBinding()] param() process{ # Common variations of team names $Names = @{ "Man United" = "Manchester United" "Man City" = "Manchester City" "Wolves" = "Wolverhampton Wanderers" "Brighton" = "Brighton & Hove Albion" "Newcastle" = "Newcastle United" "West Ham" = "West Ham United" "Tottenham" = "Tottenham Hotspur" "Bournemouth" = "AFC Bournemouth" "Nott'm Forest" = "Nottingham Forest" "Ipswich" = "Ipswich Town" "Leicester" = "Leicester City" "Liverpool" = "Liverpool" "Fulham" = "Fulham" "Brentford" = "Brentford" "Crystal Palace" = "Crystal Palace" "Aston Villa" = "Aston Villa" "Chelsea" = "Chelsea" "Southampton" = "Southampton" } return $Names } # process } # function |