diff --git a/localization/rssguard_en.ts b/localization/rssguard_en.ts index 696962488..ded3199c6 100644 --- a/localization/rssguard_en.ts +++ b/localization/rssguard_en.ts @@ -275,6 +275,16 @@ version by clicking this popup notification. No authentication + + + HTTP Basic + + + + + Token + + Username/token is ok or it is not needed. diff --git a/src/librssguard/services/abstract/gui/authenticationdetails.cpp b/src/librssguard/services/abstract/gui/authenticationdetails.cpp index 761b4c99b..8ac1ea07a 100644 --- a/src/librssguard/services/abstract/gui/authenticationdetails.cpp +++ b/src/librssguard/services/abstract/gui/authenticationdetails.cpp @@ -16,10 +16,10 @@ AuthenticationDetails::AuthenticationDetails(bool only_basic, QWidget* parent) : m_cbAuthType->addItem(tr("No authentication"), QVariant::fromValue(NetworkFactory::NetworkAuthentication::NoAuthentication)); - m_cbAuthType->addItem(QSL("HTTP Basic"), QVariant::fromValue(NetworkFactory::NetworkAuthentication::Basic)); + m_cbAuthType->addItem(tr("HTTP Basic"), QVariant::fromValue(NetworkFactory::NetworkAuthentication::Basic)); if (!only_basic) { - m_cbAuthType->addItem(QSL("Token"), QVariant::fromValue(NetworkFactory::NetworkAuthentication::Token)); + m_cbAuthType->addItem(tr("Token"), QVariant::fromValue(NetworkFactory::NetworkAuthentication::Token)); } connect(m_txtUsername->lineEdit(), &BaseLineEdit::textChanged, this, &AuthenticationDetails::onUsernameChanged);