X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcore%2Fabstractsqlstorage.cpp;h=d99e32ce1a414c58d51acfcebfff1f24e119c8b6;hp=e092be90f5a324231f2c8e88e475199253af0a83;hb=16f8531e383eade0a75a3b74ea11b909b8b1e049;hpb=8a16d9abf2216047dc22078a1555e72562ce5311 diff --git a/src/core/abstractsqlstorage.cpp b/src/core/abstractsqlstorage.cpp index e092be90..d99e32ce 100644 --- a/src/core/abstractsqlstorage.cpp +++ b/src/core/abstractsqlstorage.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-07 by the Quassel IRC Team * + * Copyright (C) 2005-07 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -100,7 +100,7 @@ bool AbstractSqlStorage::init(const QVariantMap &settings) { } if(installedSchemaVersion() < schemaVersion()) { - qWarning() << "Installed Schema is not up to date. Upgrading..."; + qWarning() << qPrintable(tr("Installed Schema (version %1) is not up to date. Upgrading to version %2...").arg(installedSchemaVersion()).arg(schemaVersion())); if(!upgradeDb()) return false; }