diff --git a/src/modules/locale/LocaleNames.cpp b/src/modules/locale/LocaleNames.cpp
index 93e8444461d51a1ec8ecf291f2b36f14c3089dd8..401aa4809f6307de74ad6538c67f8ec7b4625139 100644
--- a/src/modules/locale/LocaleNames.cpp
+++ b/src/modules/locale/LocaleNames.cpp
@@ -84,7 +84,7 @@ LocaleNameParts::similarity( const LocaleNameParts& other ) const
         return 0;
     }
     const auto matched_region = ( region == other.region ? 30 : 0 );
-    const auto matched_country = ( country == other.country ? 20 : 0 );
+    const auto matched_country = ( country == other.country ? ( country.isEmpty() ? 10 : 20 ) : 0 );
     const auto no_other_country_given = ( ( country != other.country && other.country.isEmpty() ) ? 10 : 0 );
     return 50 + matched_region + matched_country + no_other_country_given;
 }