mirror of
https://github.com/xiaoyifang/goldendict-ng.git
synced 2024-11-24 04:24:09 +00:00
DICT servers: Add used strategies to dictionary description
This commit is contained in:
parent
9f73066c51
commit
6086223350
|
@ -235,7 +235,8 @@ QString const & DictServerDictionary::getDescription()
|
||||||
if( dictionaryDescription.isEmpty() )
|
if( dictionaryDescription.isEmpty() )
|
||||||
{
|
{
|
||||||
dictionaryDescription = "Url: " + url + "\n";
|
dictionaryDescription = "Url: " + url + "\n";
|
||||||
dictionaryDescription += "Databases: " + databases.join( "," );
|
dictionaryDescription += "Databases: " + databases.join( ", " ) + "\n";
|
||||||
|
dictionaryDescription += "Strategies: " + strategies.join( ", " );
|
||||||
}
|
}
|
||||||
return dictionaryDescription;
|
return dictionaryDescription;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue