diff --git a/src/librssguard/services/abstract/gui/formfeeddetails.cpp b/src/librssguard/services/abstract/gui/formfeeddetails.cpp index e761cabcb..ead8ec2ac 100644 --- a/src/librssguard/services/abstract/gui/formfeeddetails.cpp +++ b/src/librssguard/services/abstract/gui/formfeeddetails.cpp @@ -116,6 +116,6 @@ void FormFeedDetails::initialize() { QVariant::fromValue(int(Feed::AutoUpdateType::DefaultAutoUpdate))); m_ui->m_cmbAutoUpdateType->addItem(tr("Fetch articles every"), QVariant::fromValue(int(Feed::AutoUpdateType::SpecificAutoUpdate))); - m_ui->m_cmbAutoUpdateType->addItem(tr("Do not fetch articles at all"), + m_ui->m_cmbAutoUpdateType->addItem(tr("Disable auto-fetching of articles"), QVariant::fromValue(int(Feed::AutoUpdateType::DontAutoUpdate))); } diff --git a/src/librssguard/services/feedly/gui/feedlyaccountdetails.cpp b/src/librssguard/services/feedly/gui/feedlyaccountdetails.cpp index fcf43acc9..b74fbb020 100755 --- a/src/librssguard/services/feedly/gui/feedlyaccountdetails.cpp +++ b/src/librssguard/services/feedly/gui/feedlyaccountdetails.cpp @@ -41,9 +41,9 @@ FeedlyAccountDetails::FeedlyAccountDetails(QWidget* parent) : QWidget(parent), m "each day.").arg(APP_NAME)); #endif - m_ui.m_lblLimitMessagesInfo->setText(tr("Be very careful about downloading too many articles, because " - "Feedly automagically caches ALL articles of a feed forever so you might " - "end with thousands of articles you will never read anyway.")); + m_ui.m_lblLimitMessagesInfo->setText(tr("Beware of downloading too many articles, because " + "Feedly permanently caches ALL articles of the feed forever so you might " + "end up with thousands of articles which you will never read anyway.")); GuiUtilities::setLabelAsNotice(*m_ui.m_lblInfo, true); GuiUtilities::setLabelAsNotice(*m_ui.m_lblLimitMessagesInfo, true); diff --git a/src/librssguard/services/greader/gui/greaderaccountdetails.cpp b/src/librssguard/services/greader/gui/greaderaccountdetails.cpp index 69328ab21..8bd835141 100755 --- a/src/librssguard/services/greader/gui/greaderaccountdetails.cpp +++ b/src/librssguard/services/greader/gui/greaderaccountdetails.cpp @@ -29,10 +29,10 @@ GreaderAccountDetails::GreaderAccountDetails(QWidget* parent) : QWidget(parent) m_ui.m_lblTestResult->setStatus(WidgetWithStatus::StatusType::Information, tr("No test done yet."), tr("Here, results of connection test are shown.")); - m_ui.m_lblLimitMessages->setText(tr("Limiting number of fetched articles per feed makes fetching of " - "articles faster, but if your feed contains bigger number of articles " + m_ui.m_lblLimitMessages->setText(tr("Limiting the number of fetched articles per feed makes fetching of " + "articles faster, but if your feed contains more articles " "than specified limit, then some older articles might not be " - "downloaded at all.")); + "fetched at all.")); GuiUtilities::setLabelAsNotice(*m_ui.m_lblLimitMessages, true);