mirror of
https://github.com/xiaoyifang/goldendict-ng.git
synced 2024-11-24 00:14:06 +00:00
+! Add a space between the language and its dialect names.
This commit is contained in:
parent
55749e23c2
commit
32b7e9f9c8
|
@ -830,7 +830,7 @@ vector< DataFiles > findDataFiles( QString const & path )
|
||||||
{
|
{
|
||||||
if ( dictId.size() > 2 && ( dictId[ 2 ] == '-' || dictId[ 2 ] == '_' ) &&
|
if ( dictId.size() > 2 && ( dictId[ 2 ] == '-' || dictId[ 2 ] == '_' ) &&
|
||||||
dictId.mid( 3 ).toLower() != dictBaseId )
|
dictId.mid( 3 ).toLower() != dictBaseId )
|
||||||
dictName += "(" + dictId.mid( 3 ) + ")";
|
dictName += " (" + dictId.mid( 3 ) + ")";
|
||||||
}
|
}
|
||||||
|
|
||||||
dictName = QCoreApplication::translate( "Hunspell", "%1 Morphology" ).arg( dictName );
|
dictName = QCoreApplication::translate( "Hunspell", "%1 Morphology" ).arg( dictName );
|
||||||
|
|
Loading…
Reference in a new issue