fixed a couple of message -> article things + some others

This commit is contained in:
Martin Rotter 2021-06-28 08:27:52 +02:00
parent 591c345d07
commit 01cbd8f3c6
4 changed files with 13 additions and 13 deletions

View File

@ -174,7 +174,7 @@ void FeedDownloader::updateOneFeed(Feed* feed) {
if (filter.isNull()) {
qCriticalNN << LOGSEC_FEEDDOWNLOADER
<< "Message filter was probably deleted, removing its pointer from list of filters.";
<< "Article filter was probably deleted, removing its pointer from list of filters.";
feed_filters.removeAt(j--);
continue;
}

View File

@ -11,7 +11,7 @@
</rect>
</property>
<property name="windowTitle">
<string>Message filters</string>
<string>Article filters</string>
</property>
<layout class="QVBoxLayout" name="verticalLayout">
<item>
@ -112,7 +112,7 @@
<item row="1" column="0" colspan="2">
<widget class="QGroupBox" name="m_gbDetails">
<property name="title">
<string>Message filter details</string>
<string>Article filter details</string>
</property>
<layout class="QFormLayout" name="formLayout">
<item row="0" column="0">
@ -140,7 +140,7 @@
</size>
</property>
<property name="placeholderText">
<string>Title of message filter</string>
<string>Title of article filter</string>
</property>
</widget>
</item>
@ -163,7 +163,7 @@
</sizepolicy>
</property>
<property name="placeholderText">
<string>Your JavaScript-based message filtering logic</string>
<string>Your JavaScript-based article filtering logic</string>
</property>
</widget>
</item>

View File

@ -36,7 +36,7 @@
<item row="0" column="0">
<widget class="QCheckBox" name="m_checkUpdateAllFeedsOnStartup">
<property name="text">
<string>Download messages for all feeds on application startup with initial delay of</string>
<string>Fetch articles for all feeds on application startup with initial delay of</string>
</property>
</widget>
</item>
@ -56,7 +56,7 @@
<item row="1" column="0">
<widget class="QCheckBox" name="m_checkAutoUpdate">
<property name="text">
<string>Auto-download messages for all feeds every</string>
<string>Auto-fetch articles for all feeds every</string>
</property>
</widget>
</item>
@ -76,7 +76,7 @@
<item row="2" column="0" colspan="2">
<widget class="QCheckBox" name="m_checkAutoUpdateOnlyUnfocused">
<property name="text">
<string>Only auto-download messages when application is unfocused</string>
<string>Only auto-fetch articles if application is unfocused</string>
</property>
</widget>
</item>
@ -164,7 +164,7 @@
<item row="6" column="0">
<widget class="QLabel" name="label_8">
<property name="text">
<string>Message count format in feed list</string>
<string>Article count format in feed list</string>
</property>
<property name="buddy">
<cstring>m_cmbCountsFeedList</cstring>
@ -189,7 +189,7 @@
</font>
</property>
<property name="text">
<string>Enter format for count of messages displayed next to each feed/category in feed list. Use &quot;%all&quot; and &quot;%unread&quot; strings which are placeholders for the actual count of all (or unread) messages.</string>
<string>Enter format for count of articles displayed next to each feed/category in feed list. Use &quot;%all&quot; and &quot;%unread&quot; strings which are placeholders for the actual count of all (or unread) articles.</string>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
@ -202,14 +202,14 @@
<item row="8" column="0" colspan="2">
<widget class="QCheckBox" name="m_cbHideCountsIfNoUnread">
<property name="text">
<string>Hide message counts if there are no unread messages</string>
<string>Hide article counts if there are no unread articles</string>
</property>
</widget>
</item>
<item row="9" column="0" colspan="2">
<widget class="QCheckBox" name="m_checkShowTooltips">
<property name="text">
<string>Display tooltips for feeds and messages</string>
<string>Display tooltips for feeds and articles</string>
</property>
</widget>
</item>

View File

@ -42,7 +42,7 @@ FeedlyAccountDetails::FeedlyAccountDetails(QWidget* parent) : QWidget(parent), m
#endif
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 "
"Feedly permanently caches ALL articles of the feed, so you might "
"end up with thousands of articles which you will never read anyway."));
GuiUtilities::setLabelAsNotice(*m_ui.m_lblInfo, true);