X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcore%2Fldapauthenticator.cpp;h=227df19dd3dc2837b83c44bb9bce45653d2a603e;hp=b9f99227b60f7a8ea753d16d409cc0b37e6eb16d;hb=423e088804d243368074ab218b2bda2fff3303c9;hpb=d643c4259f24929a2019264180d353b5b4f8939d diff --git a/src/core/ldapauthenticator.cpp b/src/core/ldapauthenticator.cpp index b9f99227..227df19d 100644 --- a/src/core/ldapauthenticator.cpp +++ b/src/core/ldapauthenticator.cpp @@ -65,13 +65,19 @@ bool LdapAuthenticator::isAvailable() const QString LdapAuthenticator::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("LDAP"); } +QString LdapAuthenticator::displayName() const +{ + return tr("LDAP"); +} + + QString LdapAuthenticator::description() const { return tr("Authenticate users using an LDAP server.");