mirror of
https://github.com/martinrotter/rssguard.git
synced 2025-02-04 11:17:31 +01:00
langs
This commit is contained in:
parent
d8d9efa67a
commit
f84973dfcd
@ -275,6 +275,16 @@ version by clicking this popup notification.</source>
|
|||||||
<source>No authentication</source>
|
<source>No authentication</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../src/librssguard/services/abstract/gui/authenticationdetails.cpp" line="19"/>
|
||||||
|
<source>HTTP Basic</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../src/librssguard/services/abstract/gui/authenticationdetails.cpp" line="22"/>
|
||||||
|
<source>Token</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/librssguard/services/abstract/gui/authenticationdetails.cpp" line="53"/>
|
<location filename="../src/librssguard/services/abstract/gui/authenticationdetails.cpp" line="53"/>
|
||||||
<source>Username/token is ok or it is not needed.</source>
|
<source>Username/token is ok or it is not needed.</source>
|
||||||
|
@ -16,10 +16,10 @@ AuthenticationDetails::AuthenticationDetails(bool only_basic, QWidget* parent) :
|
|||||||
|
|
||||||
m_cbAuthType->addItem(tr("No authentication"),
|
m_cbAuthType->addItem(tr("No authentication"),
|
||||||
QVariant::fromValue(NetworkFactory::NetworkAuthentication::NoAuthentication));
|
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) {
|
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);
|
connect(m_txtUsername->lineEdit(), &BaseLineEdit::textChanged, this, &AuthenticationDetails::onUsernameChanged);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user