From 84ce78e3610f60b2f2b8c7c40a33dce48f79f8fc Mon Sep 17 00:00:00 2001 From: Uwe Risse Date: Sat, 20 May 2023 10:02:04 +0200 Subject: [PATCH] Display "United States of America" as "U.S.A." (needed for newer cty.dat files). --- widgets/displaytext.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/widgets/displaytext.cpp b/widgets/displaytext.cpp index 48b914d12..3c72c11ee 100644 --- a/widgets/displaytext.cpp +++ b/widgets/displaytext.cpp @@ -379,6 +379,7 @@ QString DisplayText::appendWorkedB4 (QString message, QString call, QString cons countryName.replace ("Central ", "C. "); countryName.replace (" and ", " & "); countryName.replace ("Republic", "Rep."); + countryName.replace ("United States of America", "U.S.A."); countryName.replace ("United States", "U.S.A."); countryName.replace ("Fed. Rep. of ", ""); countryName.replace ("French ", "Fr.");