diff options
author | Andy Shaw <qt-info@nokia.com> | 2009-06-06 21:17:29 (GMT) |
---|---|---|
committer | Andy Shaw <qt-info@nokia.com> | 2009-06-06 21:17:29 (GMT) |
commit | 8411fe233021f8609250b7cf47353e3128521406 (patch) | |
tree | 190addee6cde183d60be3e51a7ad96d097088104 /tools | |
parent | f2b307342a0effed58436dd199a0d80c5e651755 (diff) | |
download | Qt-8411fe233021f8609250b7cf47353e3128521406.zip Qt-8411fe233021f8609250b7cf47353e3128521406.tar.gz Qt-8411fe233021f8609250b7cf47353e3128521406.tar.bz2 |
Add a comment for the translator so the placeholders are described
Reviewed-by: TrustMe
Diffstat (limited to 'tools')
-rw-r--r-- | tools/assistant/lib/qhelpdbreader.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/assistant/lib/qhelpdbreader.cpp b/tools/assistant/lib/qhelpdbreader.cpp index 76994a7..27bc4d7 100644 --- a/tools/assistant/lib/qhelpdbreader.cpp +++ b/tools/assistant/lib/qhelpdbreader.cpp @@ -92,6 +92,9 @@ bool QHelpDBReader::init() QSqlDatabase db = QSqlDatabase::addDatabase(QLatin1String("QSQLITE"), m_uniqueId); db.setDatabaseName(m_dbName); if (!db.open()) { + /*: The placeholders are: %1 - The name of the database which cannot be opened + %2 - The unique id for the connection + %3 - The actual error string */ m_error = tr("Cannot open database '%1' '%2': %3").arg(m_dbName, m_uniqueId, db.lastError().text()); QSqlDatabase::removeDatabase(m_uniqueId); return false; |