mirror of
https://github.com/xiaoyifang/goldendict-ng.git
synced 2024-11-24 00:14:06 +00:00
DICT servers: Translation in dictionary description window
This commit is contained in:
parent
3607529454
commit
75bcb3bcbf
|
@ -236,9 +236,9 @@ QString const & DictServerDictionary::getDescription()
|
|||
{
|
||||
if( dictionaryDescription.isEmpty() )
|
||||
{
|
||||
dictionaryDescription = "Url: " + url + "\n";
|
||||
dictionaryDescription += "Databases: " + databases.join( ", " ) + "\n";
|
||||
dictionaryDescription += "Strategies: " + strategies.join( ", " );
|
||||
dictionaryDescription = QCoreApplication::translate( "DictServer", "Url: " ) + url + "\n";
|
||||
dictionaryDescription += QCoreApplication::translate( "DictServer", "Databases: " ) + databases.join( ", " ) + "\n";
|
||||
dictionaryDescription += QCoreApplication::translate( "DictServer", "Search strategies: " ) + strategies.join( ", " );
|
||||
}
|
||||
return dictionaryDescription;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue