DICT servers: Add used strategies to dictionary description

This commit is contained in:
Abs62 2014-05-04 18:25:56 +04:00
parent 9f73066c51
commit 6086223350

View file

@ -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;
} }