X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fcore%2Fsqlauthenticator.cpp;h=b6984d2baa80f75b10c9bbdb01e2bb501964db43;hb=b8e812857ca64834078e1f620bf98fffa48b7768;hp=4977218e091408ae7b908bc0396ced836d2e362a;hpb=f77a0b720ed58a2b68876b9320742b81b6df871f;p=quassel.git diff --git a/src/core/sqlauthenticator.cpp b/src/core/sqlauthenticator.cpp index 4977218e..b6984d2b 100644 --- a/src/core/sqlauthenticator.cpp +++ b/src/core/sqlauthenticator.cpp @@ -46,17 +46,23 @@ bool SqlAuthenticator::isAvailable() const QString SqlAuthenticator::backendId() const { - // We identify the backend to use for the monolithic core by its displayname. + // We identify the backend to use for the monolithic core by this identifier. // so only change this string if you _really_ have to and make sure the core // setup for the mono client still works ;) return QString("Database"); } +QString SqlAuthenticator::displayName() const +{ + return tr("Database"); +} + + QString SqlAuthenticator::description() const { - return tr("Do not auth against any remote authentication service, but instead save a hashed and salted password " - "in the selected database."); + return tr("Do not authenticate against any remote service, but instead save a hashed and salted password " + "in the database selected in the next step."); } @@ -80,6 +86,6 @@ Authenticator::State SqlAuthenticator::init(const QVariantMap &settings) // TODO: FIXME: this should check if the storage provider is ready, but I don't // know if there's an exposed way to do that at the moment. - quInfo() << qPrintable(backendId()) << "Authenticator is ready."; + quInfo() << qPrintable(backendId()) << "authenticator is ready."; return IsReady; }