Localization files should be sorted case-insensitive

This commit is contained in:
smallmodel 2025-01-08 21:04:09 +01:00
parent f91d0c1693
commit b84a47ad3f
No known key found for this signature in database
GPG key ID: 9F2D623CEDF08512

View file

@ -67,7 +67,7 @@ int compare_strings( const void *pe1, const void *pe2 )
{
const char *psz1 = ( const char * )pe1;
const char *psz2 = ( const char * )pe2;
return strcmp( psz1, psz2 );
return Q_stricmp( psz1, psz2 );
}
cLocalization::cLocalization()