Renaming and unifications of texts.

This commit is contained in:
Martin Rotter 2021-06-03 11:05:13 +02:00
parent c598d6af53
commit f948152f61
26 changed files with 576 additions and 519 deletions

View file

@ -4,6 +4,7 @@
#include "definitions/definitions.h" #include "definitions/definitions.h"
#include "dynamic-shortcuts/shortcutcatcher.h" #include "dynamic-shortcuts/shortcutcatcher.h"
#include "gui/reusable/squeezelabel.h"
#include <QAction> #include <QAction>
#include <QGridLayout> #include <QGridLayout>
@ -69,10 +70,20 @@ void DynamicShortcutsWidget::populate(QList<QAction*> actions) {
// Add new catcher to our control. // Add new catcher to our control.
auto* action_label = new QLabel(this); auto* action_label = new QLabel(this);
auto act_text = action->text().remove(QSL("&"));
auto act_toolt = action->toolTip();
if (act_text == act_toolt) {
action_label->setText(act_text);
}
else {
action_label->setText(QSL("%1 (%2)").arg(act_text, act_toolt));
}
action_label->setText(action->text().remove(QSL("&")));
action_label->setToolTip(action->toolTip()); action_label->setToolTip(action->toolTip());
action_label->setSizePolicy(QSizePolicy::Minimum, QSizePolicy::Preferred); action_label->setWordWrap(true);
//action_label->setSizePolicy(QSizePolicy::Maximum, QSizePolicy::Preferred);
auto* action_icon = new QLabel(this); auto* action_icon = new QLabel(this);
@ -81,6 +92,7 @@ void DynamicShortcutsWidget::populate(QList<QAction*> actions) {
m_layout->addWidget(action_icon, row_id, 0); m_layout->addWidget(action_icon, row_id, 0);
m_layout->addWidget(action_label, row_id, 1); m_layout->addWidget(action_label, row_id, 1);
m_layout->addWidget(catcher, row_id, 2); m_layout->addWidget(catcher, row_id, 2);
row_id++; row_id++;
connect(catcher, &ShortcutCatcher::shortcutChanged, this, &DynamicShortcutsWidget::setupChanged); connect(catcher, &ShortcutCatcher::shortcutChanged, this, &DynamicShortcutsWidget::setupChanged);
} }

View file

@ -100,7 +100,7 @@
</widget> </widget>
<widget class="QMenu" name="m_menuFeeds"> <widget class="QMenu" name="m_menuFeeds">
<property name="title"> <property name="title">
<string>Feeds &amp;&amp; categories</string> <string>Feeds</string>
</property> </property>
<widget class="QMenu" name="m_menuAddItem"> <widget class="QMenu" name="m_menuAddItem">
<property name="title"> <property name="title">
@ -237,18 +237,21 @@
<bool>true</bool> <bool>true</bool>
</property> </property>
<property name="text"> <property name="text">
<string>View &amp;fullscreen</string> <string>&amp;Fullscreen</string>
</property> </property>
<property name="toolTip"> <property name="toolTip">
<string>Switch fullscreen mode.</string> <string>Switch fullscreen mode.</string>
</property> </property>
<property name="shortcut"> <property name="shortcut">
<string notr="true">F</string> <string notr="true">F11</string>
</property> </property>
</action> </action>
<action name="m_actionUpdateAllItems"> <action name="m_actionUpdateAllItems">
<property name="text"> <property name="text">
<string>&amp;Fetch all feeds</string> <string>&amp;Fetch all</string>
</property>
<property name="toolTip">
<string>Fetch all feeds</string>
</property> </property>
<property name="shortcut"> <property name="shortcut">
<string notr="true">Ctrl+Shift+U</string> <string notr="true">Ctrl+Shift+U</string>
@ -256,7 +259,10 @@
</action> </action>
<action name="m_actionUpdateSelectedItems"> <action name="m_actionUpdateSelectedItems">
<property name="text"> <property name="text">
<string>Fetch &amp;selected feeds</string> <string>Fetch &amp;selected</string>
</property>
<property name="toolTip">
<string>Fetch selected feeds</string>
</property> </property>
<property name="shortcut"> <property name="shortcut">
<string notr="true">Ctrl+U</string> <string notr="true">Ctrl+U</string>
@ -335,7 +341,7 @@
</action> </action>
<action name="m_actionDeleteSelectedMessages"> <action name="m_actionDeleteSelectedMessages">
<property name="text"> <property name="text">
<string>&amp;Delete selected articles</string> <string>&amp;Delete articles</string>
</property> </property>
<property name="shortcut"> <property name="shortcut">
<string notr="true"/> <string notr="true"/>
@ -390,7 +396,7 @@
</action> </action>
<action name="m_actionMarkAllItemsRead"> <action name="m_actionMarkAllItemsRead">
<property name="text"> <property name="text">
<string>&amp;Mark all items read</string> <string>&amp;Mark all read</string>
</property> </property>
<property name="toolTip"> <property name="toolTip">
<string>Marks all messages in all items read. This does not take message filters into account.</string> <string>Marks all messages in all items read. This does not take message filters into account.</string>
@ -443,7 +449,7 @@
</action> </action>
<action name="m_actionClearAllItems"> <action name="m_actionClearAllItems">
<property name="text"> <property name="text">
<string>&amp;Clean all items</string> <string>&amp;Clean all</string>
</property> </property>
<property name="toolTip"> <property name="toolTip">
<string>Deletes all messages from all items.</string> <string>Deletes all messages from all items.</string>
@ -590,7 +596,7 @@
</action> </action>
<action name="m_actionSwitchMessageListOrientation"> <action name="m_actionSwitchMessageListOrientation">
<property name="text"> <property name="text">
<string>Switch layout orientation</string> <string>Switch layout</string>
</property> </property>
<property name="shortcut"> <property name="shortcut">
<string notr="true"/> <string notr="true"/>
@ -652,7 +658,7 @@
</action> </action>
<action name="m_actionRestoreSelectedMessages"> <action name="m_actionRestoreSelectedMessages">
<property name="text"> <property name="text">
<string>&amp;Restore selected articles</string> <string>&amp;Restore articles</string>
</property> </property>
<property name="shortcut"> <property name="shortcut">
<string notr="true"/> <string notr="true"/>
@ -724,7 +730,7 @@
</action> </action>
<action name="m_actionStopRunningItemsUpdate"> <action name="m_actionStopRunningItemsUpdate">
<property name="text"> <property name="text">
<string>Stop ongoing fetching of feeds</string> <string>Stop ongoing fetching</string>
</property> </property>
<property name="shortcut"> <property name="shortcut">
<string notr="true"/> <string notr="true"/>

View file

@ -225,11 +225,11 @@
</sizepolicy> </sizepolicy>
</property> </property>
<property name="currentIndex"> <property name="currentIndex">
<number>1</number> <number>0</number>
</property> </property>
<widget class="QWidget" name="m_tabExistingMessages"> <widget class="QWidget" name="m_tabExistingMessages">
<attribute name="title"> <attribute name="title">
<string>Existing messages</string> <string>Existing articles</string>
</attribute> </attribute>
<layout class="QHBoxLayout" name="horizontalLayout_7"> <layout class="QHBoxLayout" name="horizontalLayout_7">
<property name="leftMargin"> <property name="leftMargin">
@ -261,7 +261,7 @@
</widget> </widget>
<widget class="QWidget" name="m_tabSampleMessage"> <widget class="QWidget" name="m_tabSampleMessage">
<attribute name="title"> <attribute name="title">
<string>Sample message</string> <string>Sample article</string>
</attribute> </attribute>
<layout class="QFormLayout" name="formLayout_2"> <layout class="QFormLayout" name="formLayout_2">
<property name="leftMargin"> <property name="leftMargin">

View file

@ -6,8 +6,8 @@
<rect> <rect>
<x>0</x> <x>0</x>
<y>0</y> <y>0</y>
<width>1030</width> <width>1000</width>
<height>700</height> <height>680</height>
</rect> </rect>
</property> </property>
<property name="windowTitle"> <property name="windowTitle">

View file

@ -6,16 +6,14 @@
<rect> <rect>
<x>0</x> <x>0</x>
<y>0</y> <y>0</y>
<width>607</width> <width>549</width>
<height>326</height> <height>324</height>
</rect> </rect>
</property> </property>
<property name="windowTitle"> <property name="windowTitle">
<string>Check for updates</string> <string>Check for updates</string>
</property> </property>
<layout class="QVBoxLayout" name="verticalLayout"> <layout class="QFormLayout" name="formLayout">
<item>
<layout class="QGridLayout" name="gridLayout">
<item row="0" column="0"> <item row="0" column="0">
<widget class="QLabel" name="label"> <widget class="QLabel" name="label">
<property name="text"> <property name="text">
@ -96,6 +94,9 @@
<family>DejaVu Sans Mono</family> <family>DejaVu Sans Mono</family>
</font> </font>
</property> </property>
<property name="frameShape">
<enum>QFrame::NoFrame</enum>
</property>
<property name="undoRedoEnabled"> <property name="undoRedoEnabled">
<bool>false</bool> <bool>false</bool>
</property> </property>
@ -137,15 +138,17 @@ p, li { white-space: pre-wrap; }
<number>0</number> <number>0</number>
</property> </property>
<item> <item>
<widget class="QListWidget" name="m_listFiles"/> <widget class="QListWidget" name="m_listFiles">
<property name="frameShape">
<enum>QFrame::NoFrame</enum>
</property>
</widget>
</item> </item>
</layout> </layout>
</widget> </widget>
</widget> </widget>
</item> </item>
</layout> <item row="4" column="0" colspan="2">
</item>
<item>
<widget class="QDialogButtonBox" name="m_buttonBox"> <widget class="QDialogButtonBox" name="m_buttonBox">
<property name="orientation"> <property name="orientation">
<enum>Qt::Horizontal</enum> <enum>Qt::Horizontal</enum>

View file

@ -7,7 +7,7 @@
<x>0</x> <x>0</x>
<y>0</y> <y>0</y>
<width>507</width> <width>507</width>
<height>257</height> <height>325</height>
</rect> </rect>
</property> </property>
<property name="windowTitle"> <property name="windowTitle">
@ -142,19 +142,6 @@
</property> </property>
</widget> </widget>
</item> </item>
<item row="5" column="0" colspan="2">
<spacer name="verticalSpacer_2">
<property name="orientation">
<enum>Qt::Vertical</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>20</width>
<height>40</height>
</size>
</property>
</spacer>
</item>
</layout> </layout>
</widget> </widget>
</item> </item>

View file

@ -32,8 +32,15 @@
<attribute name="title"> <attribute name="title">
<string>External web browser</string> <string>External web browser</string>
</attribute> </attribute>
<layout class="QFormLayout" name="formLayout_17"> <layout class="QFormLayout" name="formLayout_2">
<item row="1" column="0" colspan="2"> <item row="1" column="0">
<widget class="QCheckBox" name="m_checkOpenLinksInExternal">
<property name="text">
<string>Always open links from simple internal text browser in external web browser</string>
</property>
</widget>
</item>
<item row="0" column="0" colspan="2">
<widget class="QGroupBox" name="m_grpCustomExternalBrowser"> <widget class="QGroupBox" name="m_grpCustomExternalBrowser">
<property name="toolTip"> <property name="toolTip">
<string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;If unchecked, then default system-wide web browser is used.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string> <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;If unchecked, then default system-wide web browser is used.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
@ -128,12 +135,18 @@
</layout> </layout>
</widget> </widget>
</item> </item>
<item row="2" column="0"> <item row="2" column="0" colspan="2">
<widget class="QCheckBox" name="m_checkOpenLinksInExternal"> <spacer name="verticalSpacer_3">
<property name="text"> <property name="orientation">
<string>Always open links from simple internal text browser in external web browser</string> <enum>Qt::Vertical</enum>
</property> </property>
</widget> <property name="sizeHint" stdset="0">
<size>
<width>20</width>
<height>40</height>
</size>
</property>
</spacer>
</item> </item>
</layout> </layout>
</widget> </widget>

View file

@ -23,7 +23,7 @@
<property name="bottomMargin"> <property name="bottomMargin">
<number>0</number> <number>0</number>
</property> </property>
<item row="1" column="0" colspan="2"> <item row="0" column="0" colspan="2">
<widget class="QCheckBox" name="m_checkUseTransactions"> <widget class="QCheckBox" name="m_checkUseTransactions">
<property name="toolTip"> <property name="toolTip">
<string>Note that turning this option ON will make saving of new messages FASTER, but it might rarely cause some issues with messages saving.</string> <string>Note that turning this option ON will make saving of new messages FASTER, but it might rarely cause some issues with messages saving.</string>
@ -33,7 +33,7 @@
</property> </property>
</widget> </widget>
</item> </item>
<item row="2" column="0" colspan="2"> <item row="1" column="0" colspan="2">
<widget class="QLabel" name="m_lblDataStorageWarning"> <widget class="QLabel" name="m_lblDataStorageWarning">
<property name="styleSheet"> <property name="styleSheet">
<string notr="true">QLabel { <string notr="true">QLabel {
@ -51,7 +51,7 @@
</property> </property>
</widget> </widget>
</item> </item>
<item row="4" column="0"> <item row="2" column="0">
<widget class="QLabel" name="m_lblDatabaseDriver"> <widget class="QLabel" name="m_lblDatabaseDriver">
<property name="text"> <property name="text">
<string>Database driver</string> <string>Database driver</string>
@ -61,10 +61,10 @@
</property> </property>
</widget> </widget>
</item> </item>
<item row="4" column="1"> <item row="2" column="1">
<widget class="QComboBox" name="m_cmbDatabaseDriver"/> <widget class="QComboBox" name="m_cmbDatabaseDriver"/>
</item> </item>
<item row="5" column="0" colspan="2"> <item row="3" column="0" colspan="2">
<widget class="QStackedWidget" name="m_stackedDatabaseDriver"> <widget class="QStackedWidget" name="m_stackedDatabaseDriver">
<property name="currentIndex"> <property name="currentIndex">
<number>1</number> <number>1</number>
@ -138,6 +138,16 @@ Authors of this application are NOT responsible for lost data.</string>
<property name="bottomMargin"> <property name="bottomMargin">
<number>0</number> <number>0</number>
</property> </property>
<item row="0" column="0">
<widget class="QLabel" name="label_2">
<property name="text">
<string>Hostname</string>
</property>
<property name="buddy">
<cstring>m_txtMysqlHostname</cstring>
</property>
</widget>
</item>
<item row="0" column="1"> <item row="0" column="1">
<layout class="QHBoxLayout" name="horizontalLayout_6"> <layout class="QHBoxLayout" name="horizontalLayout_6">
<item> <item>
@ -174,9 +184,26 @@ Authors of this application are NOT responsible for lost data.</string>
</item> </item>
</layout> </layout>
</item> </item>
<item row="1" column="0">
<widget class="QLabel" name="label_11">
<property name="text">
<string>Working database</string>
</property>
</widget>
</item>
<item row="1" column="1"> <item row="1" column="1">
<widget class="LineEditWithStatus" name="m_txtMysqlDatabase" native="true"/> <widget class="LineEditWithStatus" name="m_txtMysqlDatabase" native="true"/>
</item> </item>
<item row="2" column="0">
<widget class="QLabel" name="label_4">
<property name="text">
<string>Username</string>
</property>
<property name="buddy">
<cstring>m_txtMysqlUsername</cstring>
</property>
</widget>
</item>
<item row="2" column="1"> <item row="2" column="1">
<widget class="LineEditWithStatus" name="m_txtMysqlUsername" native="true"/> <widget class="LineEditWithStatus" name="m_txtMysqlUsername" native="true"/>
</item> </item>
@ -243,48 +270,30 @@ Authors of this application are NOT responsible for lost data.</string>
</property> </property>
</widget> </widget>
</item> </item>
<item row="2" column="0">
<widget class="QLabel" name="label_4">
<property name="text">
<string>Username</string>
</property>
<property name="buddy">
<cstring>m_txtMysqlUsername</cstring>
</property>
</widget>
</item>
<item row="1" column="0">
<widget class="QLabel" name="label_11">
<property name="text">
<string>Working database</string>
</property>
</widget>
</item>
<item row="0" column="0">
<widget class="QLabel" name="label_2">
<property name="text">
<string>Hostname</string>
</property>
<property name="buddy">
<cstring>m_txtMysqlHostname</cstring>
</property>
</widget>
</item>
</layout> </layout>
</widget> </widget>
</widget> </widget>
</item> </item>
<item row="4" column="0" colspan="2">
<spacer name="verticalSpacer">
<property name="orientation">
<enum>Qt::Vertical</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>20</width>
<height>40</height>
</size>
</property>
</spacer>
</item>
</layout> </layout>
<zorder>m_lblDatabaseDriver</zorder> <zorder>m_lblDatabaseDriver</zorder>
<zorder>m_cmbDatabaseDriver</zorder> <zorder>m_cmbDatabaseDriver</zorder>
<zorder>m_stackedDatabaseDriver</zorder> <zorder>m_stackedDatabaseDriver</zorder>
<zorder>m_checkUseTransactions</zorder> <zorder>m_checkUseTransactions</zorder>
<zorder>m_lblDataStorageWarning</zorder> <zorder>m_lblDataStorageWarning</zorder>
<zorder>label_2</zorder> <zorder>verticalSpacer</zorder>
<zorder>label_11</zorder>
<zorder>label_4</zorder>
<zorder>label_5</zorder>
<zorder>m_lblMysqlInfo</zorder>
</widget> </widget>
<customwidgets> <customwidgets>
<customwidget> <customwidget>

View file

@ -74,6 +74,19 @@
</item> </item>
</layout> </layout>
</item> </item>
<item row="2" column="0" colspan="2">
<spacer name="verticalSpacer">
<property name="orientation">
<enum>Qt::Vertical</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>20</width>
<height>40</height>
</size>
</property>
</spacer>
</item>
</layout> </layout>
</widget> </widget>
</item> </item>

View file

@ -28,7 +28,7 @@ class SettingsFeedsMessages : public SettingsPanel {
}; };
inline QString SettingsFeedsMessages::title() const { inline QString SettingsFeedsMessages::title() const {
return tr("Feeds & messages"); return tr("Feeds & articles");
} }
#endif // SETTINGSFEEDSMESSAGES_H #endif // SETTINGSFEEDSMESSAGES_H

View file

@ -7,7 +7,7 @@
<x>0</x> <x>0</x>
<y>0</y> <y>0</y>
<width>788</width> <width>788</width>
<height>497</height> <height>433</height>
</rect> </rect>
</property> </property>
<layout class="QHBoxLayout" name="horizontalLayout"> <layout class="QHBoxLayout" name="horizontalLayout">
@ -30,29 +30,21 @@
</property> </property>
<widget class="QWidget" name="m_tabFeeds"> <widget class="QWidget" name="m_tabFeeds">
<attribute name="title"> <attribute name="title">
<string>Feeds &amp;&amp; categories</string> <string>Feeds</string>
</attribute> </attribute>
<layout class="QFormLayout" name="formLayout_2"> <layout class="QFormLayout" name="formLayout_2">
<item row="0" column="0"> <item row="0" column="0">
<layout class="QHBoxLayout" name="horizontalLayout_5">
<item>
<widget class="QCheckBox" name="m_checkUpdateAllFeedsOnStartup"> <widget class="QCheckBox" name="m_checkUpdateAllFeedsOnStartup">
<property name="text"> <property name="text">
<string>Download messages for all feeds on application startup with initial delay of</string> <string>Download messages for all feeds on application startup with initial delay of</string>
</property> </property>
</widget> </widget>
</item> </item>
<item> <item row="0" column="1">
<widget class="TimeSpinBox" name="m_spinStartupUpdateDelay"> <widget class="TimeSpinBox" name="m_spinStartupUpdateDelay">
<property name="enabled"> <property name="enabled">
<bool>false</bool> <bool>false</bool>
</property> </property>
<property name="minimumSize">
<size>
<width>250</width>
<height>28</height>
</size>
</property>
<property name="readOnly"> <property name="readOnly">
<bool>false</bool> <bool>false</bool>
</property> </property>
@ -61,22 +53,39 @@
</property> </property>
</widget> </widget>
</item> </item>
</layout>
</item>
<item row="1" column="0"> <item row="1" column="0">
<widget class="QCheckBox" name="m_checkAutoUpdateNotification"> <widget class="QCheckBox" name="m_checkAutoUpdate">
<property name="text"> <property name="text">
<string>Enable &quot;auto-download started&quot; notification</string> <string>Auto-download messages for all feeds every</string>
</property>
</widget>
</item>
<item row="1" column="1">
<widget class="TimeSpinBox" name="m_spinAutoUpdateInterval">
<property name="enabled">
<bool>false</bool>
</property>
<property name="readOnly">
<bool>false</bool>
</property>
<property name="accelerated">
<bool>true</bool>
</property> </property>
</widget> </widget>
</item> </item>
<item row="4" column="0"> <item row="4" column="0">
<widget class="QGroupBox" name="groupBox_6"> <widget class="QGroupBox" name="groupBox_6">
<property name="sizePolicy">
<sizepolicy hsizetype="Preferred" vsizetype="Maximum">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="title"> <property name="title">
<string>Feed list font</string> <string>Feed list font</string>
</property> </property>
<layout class="QHBoxLayout" name="horizontalLayout_18"> <layout class="QFormLayout" name="formLayout_3">
<item> <item row="0" column="0">
<widget class="QLabel" name="m_lblFeedListFont"> <widget class="QLabel" name="m_lblFeedListFont">
<property name="text"> <property name="text">
<string>Font preview</string> <string>Font preview</string>
@ -86,7 +95,7 @@
</property> </property>
</widget> </widget>
</item> </item>
<item> <item row="0" column="1">
<widget class="QPushButton" name="m_btnChangeFeedListFont"> <widget class="QPushButton" name="m_btnChangeFeedListFont">
<property name="text"> <property name="text">
<string>&amp;Change font</string> <string>&amp;Change font</string>
@ -96,19 +105,7 @@
</layout> </layout>
</widget> </widget>
</item> </item>
<item row="5" column="0"> <item row="5" column="1">
<layout class="QHBoxLayout" name="horizontalLayout_7">
<item>
<widget class="QLabel" name="label_3">
<property name="text">
<string>Feed connection timeout</string>
</property>
<property name="buddy">
<cstring>m_spinFeedUpdateTimeout</cstring>
</property>
</widget>
</item>
<item>
<widget class="QSpinBox" name="m_spinFeedUpdateTimeout"> <widget class="QSpinBox" name="m_spinFeedUpdateTimeout">
<property name="toolTip"> <property name="toolTip">
<string>Connection timeout is time interval which is reserved for downloading new messages for the feed. If this time interval elapses, then download process is aborted.</string> <string>Connection timeout is time interval which is reserved for downloading new messages for the feed. If this time interval elapses, then download process is aborted.</string>
@ -127,11 +124,7 @@
</property> </property>
</widget> </widget>
</item> </item>
</layout>
</item>
<item row="6" column="0"> <item row="6" column="0">
<layout class="QHBoxLayout" name="horizontalLayout_9">
<item>
<widget class="QLabel" name="label_6"> <widget class="QLabel" name="label_6">
<property name="text"> <property name="text">
<string>Height or rows in feed list (-1 = default height)</string> <string>Height or rows in feed list (-1 = default height)</string>
@ -141,7 +134,7 @@
</property> </property>
</widget> </widget>
</item> </item>
<item> <item row="6" column="1">
<widget class="QSpinBox" name="m_spinHeightRowsFeeds"> <widget class="QSpinBox" name="m_spinHeightRowsFeeds">
<property name="minimum"> <property name="minimum">
<number>-1</number> <number>-1</number>
@ -151,11 +144,7 @@
</property> </property>
</widget> </widget>
</item> </item>
</layout>
</item>
<item row="7" column="0"> <item row="7" column="0">
<layout class="QHBoxLayout" name="horizontalLayout_8">
<item>
<widget class="QLabel" name="label_8"> <widget class="QLabel" name="label_8">
<property name="text"> <property name="text">
<string>Message count format in feed list</string> <string>Message count format in feed list</string>
@ -165,7 +154,7 @@
</property> </property>
</widget> </widget>
</item> </item>
<item> <item row="7" column="1">
<widget class="QComboBox" name="m_cmbCountsFeedList"> <widget class="QComboBox" name="m_cmbCountsFeedList">
<property name="toolTip"> <property name="toolTip">
<string notr="true"/> <string notr="true"/>
@ -175,39 +164,7 @@
</property> </property>
</widget> </widget>
</item> </item>
</layout> <item row="8" column="0" colspan="2">
</item>
<item row="2" column="0">
<layout class="QHBoxLayout" name="horizontalLayout_6">
<item>
<widget class="QCheckBox" name="m_checkAutoUpdate">
<property name="text">
<string>Auto-download messages for all feeds every</string>
</property>
</widget>
</item>
<item>
<widget class="TimeSpinBox" name="m_spinAutoUpdateInterval">
<property name="enabled">
<bool>false</bool>
</property>
<property name="minimumSize">
<size>
<width>250</width>
<height>28</height>
</size>
</property>
<property name="readOnly">
<bool>false</bool>
</property>
<property name="accelerated">
<bool>true</bool>
</property>
</widget>
</item>
</layout>
</item>
<item row="10" column="0" colspan="2">
<widget class="QLabel" name="label_9"> <widget class="QLabel" name="label_9">
<property name="font"> <property name="font">
<font> <font>
@ -238,13 +195,30 @@
</property> </property>
</spacer> </spacer>
</item> </item>
<item row="8" column="0" colspan="2"> <item row="5" column="0">
<widget class="QLabel" name="label_3">
<property name="text">
<string>Feed connection timeout</string>
</property>
<property name="buddy">
<cstring>m_spinFeedUpdateTimeout</cstring>
</property>
</widget>
</item>
<item row="9" column="0" colspan="2">
<widget class="QCheckBox" name="m_cbHideCountsIfNoUnread"> <widget class="QCheckBox" name="m_cbHideCountsIfNoUnread">
<property name="text"> <property name="text">
<string>Hide message counts if there are no unread messages</string> <string>Hide message counts if there are no unread messages</string>
</property> </property>
</widget> </widget>
</item> </item>
<item row="10" column="0" colspan="2">
<widget class="QCheckBox" name="m_checkShowTooltips">
<property name="text">
<string>Display tooltips for feeds and messages</string>
</property>
</widget>
</item>
<item row="3" column="0" colspan="2"> <item row="3" column="0" colspan="2">
<widget class="QCheckBox" name="m_checkAutoUpdateOnlyUnfocused"> <widget class="QCheckBox" name="m_checkAutoUpdateOnlyUnfocused">
<property name="text"> <property name="text">
@ -252,10 +226,10 @@
</property> </property>
</widget> </widget>
</item> </item>
<item row="9" column="0" colspan="2"> <item row="2" column="0" colspan="2">
<widget class="QCheckBox" name="m_checkShowTooltips"> <widget class="QCheckBox" name="m_checkAutoUpdateNotification">
<property name="text"> <property name="text">
<string>Display tooltips for feeds and messages</string> <string>Enable &quot;auto-download started&quot; notification</string>
</property> </property>
</widget> </widget>
</item> </item>
@ -263,50 +237,55 @@
</widget> </widget>
<widget class="QWidget" name="m_tabMessages"> <widget class="QWidget" name="m_tabMessages">
<attribute name="title"> <attribute name="title">
<string>Messages</string> <string>Articles</string>
</attribute> </attribute>
<layout class="QFormLayout" name="formLayout"> <layout class="QFormLayout" name="formLayout">
<item row="0" column="0"> <item row="0" column="0" colspan="2">
<widget class="QCheckBox" name="m_checkRemoveReadMessagesOnExit"> <widget class="QCheckBox" name="m_checkRemoveReadMessagesOnExit">
<property name="text"> <property name="text">
<string>Remove all read messages from all feeds on application exit</string> <string>Remove all read articles from all feeds on application exit</string>
</property> </property>
</widget> </widget>
</item> </item>
<item row="1" column="0"> <item row="1" column="0" colspan="2">
<widget class="QCheckBox" name="m_checkDisplayPlaceholders"> <widget class="QCheckBox" name="m_checkDisplayPlaceholders">
<property name="text"> <property name="text">
<string>Display placeholders to indicate locations of pictures</string> <string>Display placeholders to indicate locations of pictures</string>
</property> </property>
</widget> </widget>
</item> </item>
<item row="3" column="0"> <item row="2" column="0" colspan="2">
<widget class="QCheckBox" name="m_checkBringToForegroundAfterMsgOpened"> <widget class="QCheckBox" name="m_checkDisplayFeedIcons">
<property name="text"> <property name="text">
<string>Bring application window to front once message is opened in external web browser</string> <string>Display real icons of feeds in list of articles instead of read/unread icons</string>
</property> </property>
</widget> </widget>
</item> </item>
<item row="4" column="0"> <item row="3" column="0" colspan="2">
<widget class="QCheckBox" name="m_checkBringToForegroundAfterMsgOpened">
<property name="text">
<string>Bring application window to front once article is opened in external web browser</string>
</property>
</widget>
</item>
<item row="4" column="0" colspan="2">
<widget class="QCheckBox" name="m_checkKeppMessagesInTheMiddle"> <widget class="QCheckBox" name="m_checkKeppMessagesInTheMiddle">
<property name="text"> <property name="text">
<string>Keep message selection in the middle of the message list viewport</string> <string>Keep message selection in the middle of the article list viewport</string>
</property> </property>
</widget> </widget>
</item> </item>
<item row="5" column="0"> <item row="5" column="0">
<layout class="QHBoxLayout" name="horizontalLayout_3">
<item>
<widget class="QLabel" name="label_2"> <widget class="QLabel" name="label_2">
<property name="text"> <property name="text">
<string>Height or rows in message list (-1 = default height)</string> <string>Height or rows in article list (-1 = default height)</string>
</property> </property>
<property name="buddy"> <property name="buddy">
<cstring>m_spinHeightRowsMessages</cstring> <cstring>m_spinHeightRowsMessages</cstring>
</property> </property>
</widget> </widget>
</item> </item>
<item> <item row="5" column="1">
<widget class="QSpinBox" name="m_spinHeightRowsMessages"> <widget class="QSpinBox" name="m_spinHeightRowsMessages">
<property name="minimum"> <property name="minimum">
<number>-1</number> <number>-1</number>
@ -316,11 +295,7 @@
</property> </property>
</widget> </widget>
</item> </item>
</layout>
</item>
<item row="6" column="0"> <item row="6" column="0">
<layout class="QHBoxLayout" name="horizontalLayout_2">
<item>
<widget class="QLabel" name="label"> <widget class="QLabel" name="label">
<property name="text"> <property name="text">
<string>Height of image attachments</string> <string>Height of image attachments</string>
@ -330,7 +305,7 @@
</property> </property>
</widget> </widget>
</item> </item>
<item> <item row="6" column="1">
<widget class="QSpinBox" name="m_spinHeightImageAttachments"> <widget class="QSpinBox" name="m_spinHeightImageAttachments">
<property name="minimum"> <property name="minimum">
<number>22</number> <number>22</number>
@ -340,34 +315,12 @@
</property> </property>
</widget> </widget>
</item> </item>
</layout> <item row="8" column="0" colspan="2">
</item>
<item row="7" column="0">
<layout class="QHBoxLayout" name="horizontalLayout_10">
<item>
<widget class="QCheckBox" name="m_checkMessagesDateTimeFormat">
<property name="text">
<string>Use custom date/time format (overrides format loaded from active localization)</string>
</property>
<property name="checkable">
<bool>true</bool>
</property>
<property name="checked">
<bool>true</bool>
</property>
</widget>
</item>
<item>
<widget class="QComboBox" name="m_cmbMessagesDateTimeFormat"/>
</item>
</layout>
</item>
<item row="8" column="0">
<layout class="QHBoxLayout" name="horizontalLayout_4"> <layout class="QHBoxLayout" name="horizontalLayout_4">
<item> <item>
<widget class="QGroupBox" name="groupBox_5"> <widget class="QGroupBox" name="groupBox_5">
<property name="title"> <property name="title">
<string>Message list font</string> <string>Article list font</string>
</property> </property>
<layout class="QHBoxLayout" name="horizontalLayout_17"> <layout class="QHBoxLayout" name="horizontalLayout_17">
<item> <item>
@ -393,7 +346,7 @@
<item> <item>
<widget class="QGroupBox" name="groupBox_4"> <widget class="QGroupBox" name="groupBox_4">
<property name="title"> <property name="title">
<string>Internal message browser font</string> <string>Article browser font</string>
</property> </property>
<layout class="QHBoxLayout" name="horizontalLayout_16"> <layout class="QHBoxLayout" name="horizontalLayout_16">
<item> <item>
@ -416,9 +369,38 @@
</layout> </layout>
</widget> </widget>
</item> </item>
<item>
<spacer name="horizontalSpacer">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>40</width>
<height>20</height>
</size>
</property>
</spacer>
</item>
</layout> </layout>
</item> </item>
<item row="9" column="0" colspan="2"> <item row="7" column="0">
<widget class="QCheckBox" name="m_checkMessagesDateTimeFormat">
<property name="text">
<string>Use custom date/time format (overrides format loaded from active localization)</string>
</property>
<property name="checkable">
<bool>true</bool>
</property>
<property name="checked">
<bool>true</bool>
</property>
</widget>
</item>
<item row="7" column="1">
<widget class="QComboBox" name="m_cmbMessagesDateTimeFormat"/>
</item>
<item row="10" column="0" colspan="2">
<spacer name="verticalSpacer_2"> <spacer name="verticalSpacer_2">
<property name="orientation"> <property name="orientation">
<enum>Qt::Vertical</enum> <enum>Qt::Vertical</enum>
@ -431,13 +413,6 @@
</property> </property>
</spacer> </spacer>
</item> </item>
<item row="2" column="0">
<widget class="QCheckBox" name="m_checkDisplayFeedIcons">
<property name="text">
<string>Display real icons of feeds in list of messages instead of read/unread icons</string>
</property>
</widget>
</item>
</layout> </layout>
</widget> </widget>
</widget> </widget>
@ -455,9 +430,9 @@
<tabstop>m_tabFeedsMessages</tabstop> <tabstop>m_tabFeedsMessages</tabstop>
<tabstop>m_checkUpdateAllFeedsOnStartup</tabstop> <tabstop>m_checkUpdateAllFeedsOnStartup</tabstop>
<tabstop>m_spinStartupUpdateDelay</tabstop> <tabstop>m_spinStartupUpdateDelay</tabstop>
<tabstop>m_checkAutoUpdateNotification</tabstop>
<tabstop>m_checkAutoUpdate</tabstop> <tabstop>m_checkAutoUpdate</tabstop>
<tabstop>m_spinAutoUpdateInterval</tabstop> <tabstop>m_spinAutoUpdateInterval</tabstop>
<tabstop>m_checkAutoUpdateNotification</tabstop>
<tabstop>m_checkAutoUpdateOnlyUnfocused</tabstop> <tabstop>m_checkAutoUpdateOnlyUnfocused</tabstop>
<tabstop>m_btnChangeFeedListFont</tabstop> <tabstop>m_btnChangeFeedListFont</tabstop>
<tabstop>m_spinFeedUpdateTimeout</tabstop> <tabstop>m_spinFeedUpdateTimeout</tabstop>

View file

@ -44,6 +44,19 @@
</property> </property>
</widget> </widget>
</item> </item>
<item row="3" column="0" colspan="2">
<spacer name="verticalSpacer">
<property name="orientation">
<enum>Qt::Vertical</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>20</width>
<height>40</height>
</size>
</property>
</spacer>
</item>
</layout> </layout>
</widget> </widget>
<resources/> <resources/>

View file

@ -119,7 +119,7 @@
<string>Tray area &amp;&amp; notifications</string> <string>Tray area &amp;&amp; notifications</string>
</attribute> </attribute>
<layout class="QFormLayout" name="formLayout_3"> <layout class="QFormLayout" name="formLayout_3">
<item row="2" column="0" colspan="2"> <item row="0" column="0">
<widget class="QGroupBox" name="m_grpTray"> <widget class="QGroupBox" name="m_grpTray">
<property name="title"> <property name="title">
<string>Tray icon</string> <string>Tray icon</string>
@ -169,53 +169,82 @@
</layout> </layout>
</widget> </widget>
</item> </item>
<item row="1" column="0" colspan="2">
<spacer name="verticalSpacer_2">
<property name="orientation">
<enum>Qt::Vertical</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>20</width>
<height>40</height>
</size>
</property>
</spacer>
</item>
</layout> </layout>
</widget> </widget>
<widget class="QWidget" name="m_tabTabs"> <widget class="QWidget" name="m_tabTabs">
<attribute name="title"> <attribute name="title">
<string>Tabs</string> <string>Tabs</string>
</attribute> </attribute>
<layout class="QFormLayout" name="formLayout_7"> <layout class="QFormLayout" name="formLayout_4">
<property name="fieldGrowthPolicy"> <item row="0" column="0">
<enum>QFormLayout::AllNonFixedFieldsGrow</enum>
</property>
<item row="1" column="0" colspan="2">
<widget class="QCheckBox" name="m_checkNewTabDoubleClick">
<property name="text">
<string>Open new tabs with left mouse button double-click on tab bar</string>
</property>
</widget>
</item>
<item row="2" column="0" colspan="2">
<widget class="QCheckBox" name="m_checkHideTabBarIfOneTabVisible">
<property name="text">
<string>Hide tab bar if just one tab is visible</string>
</property>
</widget>
</item>
<item row="0" column="0" colspan="2">
<widget class="QGroupBox" name="m_grbCloseTabs"> <widget class="QGroupBox" name="m_grbCloseTabs">
<property name="sizePolicy">
<sizepolicy hsizetype="Preferred" vsizetype="Maximum">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="title"> <property name="title">
<string>Close tabs with</string> <string>Close tabs with</string>
</property> </property>
<layout class="QFormLayout" name="formLayout_13"> <layout class="QVBoxLayout" name="verticalLayout">
<item row="0" column="0"> <item>
<widget class="QCheckBox" name="m_checkCloseTabsDoubleClick">
<property name="text">
<string>Left mouse button double-click</string>
</property>
</widget>
</item>
<item row="0" column="1">
<widget class="QCheckBox" name="m_checkCloseTabsMiddleClick"> <widget class="QCheckBox" name="m_checkCloseTabsMiddleClick">
<property name="text"> <property name="text">
<string>Middle mouse button single-click</string> <string>Middle mouse button single-click</string>
</property> </property>
</widget> </widget>
</item> </item>
<item>
<widget class="QCheckBox" name="m_checkCloseTabsDoubleClick">
<property name="text">
<string>Left mouse button double-click</string>
</property>
</widget>
</item>
</layout> </layout>
</widget> </widget>
</item> </item>
<item row="1" column="0">
<widget class="QCheckBox" name="m_checkNewTabDoubleClick">
<property name="text">
<string>Open new tabs with left mouse button double-click on tab bar</string>
</property>
</widget>
</item>
<item row="2" column="0">
<widget class="QCheckBox" name="m_checkHideTabBarIfOneTabVisible">
<property name="text">
<string>Hide tab bar if just one tab is visible</string>
</property>
</widget>
</item>
<item row="3" column="0" colspan="2">
<spacer name="verticalSpacer_3">
<property name="orientation">
<enum>Qt::Vertical</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>20</width>
<height>40</height>
</size>
</property>
</spacer>
</item>
</layout> </layout>
</widget> </widget>
<widget class="QWidget" name="m_tabToolBars"> <widget class="QWidget" name="m_tabToolBars">

View file

@ -28,7 +28,7 @@
<item row="0" column="0"> <item row="0" column="0">
<widget class="QLabel" name="m_lblParentCategory"> <widget class="QLabel" name="m_lblParentCategory">
<property name="text"> <property name="text">
<string>Parent category</string> <string>Parent folder</string>
</property> </property>
<property name="buddy"> <property name="buddy">
<cstring>m_cmbParentCategory</cstring> <cstring>m_cmbParentCategory</cstring>

View file

@ -21,13 +21,13 @@
</property> </property>
<widget class="QWidget" name="tabUpdating"> <widget class="QWidget" name="tabUpdating">
<attribute name="title"> <attribute name="title">
<string>Auto-downloading of messages</string> <string>Auto-downloading of articles</string>
</attribute> </attribute>
<layout class="QFormLayout" name="formLayout"> <layout class="QFormLayout" name="formLayout">
<item row="0" column="0"> <item row="0" column="0">
<widget class="QLabel" name="label_6"> <widget class="QLabel" name="label_6">
<property name="text"> <property name="text">
<string>Auto-downloading of messages</string> <string>Auto-downloading of articles</string>
</property> </property>
<property name="buddy"> <property name="buddy">
<cstring>m_cmbAutoUpdateType</cstring> <cstring>m_cmbAutoUpdateType</cstring>

View file

@ -14,8 +14,8 @@ ImportantNode::ImportantNode(RootItem* parent_item) : RootItem(parent_item) {
setKind(RootItem::Kind::Important); setKind(RootItem::Kind::Important);
setId(ID_IMPORTANT); setId(ID_IMPORTANT);
setIcon(qApp->icons()->fromTheme(QSL("mail-mark-important"))); setIcon(qApp->icons()->fromTheme(QSL("mail-mark-important")));
setTitle(tr("Important messages")); setTitle(tr("Important articles"));
setDescription(tr("You can find all important messages here.")); setDescription(tr("You can find all important articles here."));
} }
QList<Message> ImportantNode::undeletedMessages() const { QList<Message> ImportantNode::undeletedMessages() const {

View file

@ -12,8 +12,8 @@ UnreadNode::UnreadNode(RootItem* parent_item) : RootItem(parent_item) {
setKind(RootItem::Kind::Unread); setKind(RootItem::Kind::Unread);
setId(ID_UNREAD); setId(ID_UNREAD);
setIcon(qApp->icons()->fromTheme(QSL("mail-mark-unread"))); setIcon(qApp->icons()->fromTheme(QSL("mail-mark-unread")));
setTitle(tr("Unread messages")); setTitle(tr("Unread articles"));
setDescription(tr("You can find all unread messages here.")); setDescription(tr("You can find all unread articles here."));
} }
QList<Message> UnreadNode::undeletedMessages() const { QList<Message> UnreadNode::undeletedMessages() const {

View file

@ -57,7 +57,7 @@
<item row="0" column="0"> <item row="0" column="0">
<widget class="QLabel" name="label"> <widget class="QLabel" name="label">
<property name="text"> <property name="text">
<string>Only download newest X messages per feed</string> <string>Only download newest X articles per feed</string>
</property> </property>
<property name="buddy"> <property name="buddy">
<cstring>m_spinLimitMessages</cstring> <cstring>m_spinLimitMessages</cstring>
@ -110,15 +110,12 @@
<item row="3" column="0" colspan="2"> <item row="3" column="0" colspan="2">
<widget class="QCheckBox" name="m_checkDownloadOnlyUnreadMessages"> <widget class="QCheckBox" name="m_checkDownloadOnlyUnreadMessages">
<property name="text"> <property name="text">
<string>Download only unread messages</string> <string>Download unread articles only</string>
</property> </property>
</widget> </widget>
</item> </item>
<item row="5" column="0" colspan="2"> <item row="5" column="0" colspan="2">
<widget class="QLabel" name="m_lblLimitMessagesInfo"> <widget class="QLabel" name="m_lblLimitMessagesInfo">
<property name="text">
<string>TextLabel</string>
</property>
<property name="alignment"> <property name="alignment">
<set>Qt::AlignCenter</set> <set>Qt::AlignCenter</set>
</property> </property>
@ -130,18 +127,18 @@
</layout> </layout>
</widget> </widget>
<customwidgets> <customwidgets>
<customwidget>
<class>LineEditWithStatus</class>
<extends>QWidget</extends>
<header>lineeditwithstatus.h</header>
<container>1</container>
</customwidget>
<customwidget> <customwidget>
<class>LabelWithStatus</class> <class>LabelWithStatus</class>
<extends>QWidget</extends> <extends>QWidget</extends>
<header>labelwithstatus.h</header> <header>labelwithstatus.h</header>
<container>1</container> <container>1</container>
</customwidget> </customwidget>
<customwidget>
<class>LineEditWithStatus</class>
<extends>QWidget</extends>
<header>lineeditwithstatus.h</header>
<container>1</container>
</customwidget>
<customwidget> <customwidget>
<class>MessageCountSpinBox</class> <class>MessageCountSpinBox</class>
<extends>QSpinBox</extends> <extends>QSpinBox</extends>

View file

@ -120,7 +120,7 @@
<item row="0" column="0"> <item row="0" column="0">
<widget class="QLabel" name="label"> <widget class="QLabel" name="label">
<property name="text"> <property name="text">
<string>Only download newest X messages per feed</string> <string>Only download newest X articles per feed</string>
</property> </property>
<property name="buddy"> <property name="buddy">
<cstring>m_spinLimitMessages</cstring> <cstring>m_spinLimitMessages</cstring>
@ -173,25 +173,25 @@
<item row="2" column="0" colspan="2"> <item row="2" column="0" colspan="2">
<widget class="QCheckBox" name="m_cbDownloadOnlyUnreadMessages"> <widget class="QCheckBox" name="m_cbDownloadOnlyUnreadMessages">
<property name="text"> <property name="text">
<string>Download only unread messages</string> <string>Download unread articles only</string>
</property> </property>
</widget> </widget>
</item> </item>
</layout> </layout>
</widget> </widget>
<customwidgets> <customwidgets>
<customwidget>
<class>LineEditWithStatus</class>
<extends>QWidget</extends>
<header>lineeditwithstatus.h</header>
<container>1</container>
</customwidget>
<customwidget> <customwidget>
<class>LabelWithStatus</class> <class>LabelWithStatus</class>
<extends>QWidget</extends> <extends>QWidget</extends>
<header>labelwithstatus.h</header> <header>labelwithstatus.h</header>
<container>1</container> <container>1</container>
</customwidget> </customwidget>
<customwidget>
<class>LineEditWithStatus</class>
<extends>QWidget</extends>
<header>lineeditwithstatus.h</header>
<container>1</container>
</customwidget>
<customwidget> <customwidget>
<class>MessageCountSpinBox</class> <class>MessageCountSpinBox</class>
<extends>QSpinBox</extends> <extends>QSpinBox</extends>

View file

@ -39,7 +39,7 @@
<item> <item>
<widget class="QLabel" name="label"> <widget class="QLabel" name="label">
<property name="text"> <property name="text">
<string>Only download newest X messages per feed</string> <string>Only download newest X articles per feed</string>
</property> </property>
<property name="buddy"> <property name="buddy">
<cstring>m_spinLimitMessages</cstring> <cstring>m_spinLimitMessages</cstring>
@ -152,25 +152,25 @@
<item row="4" column="0" colspan="2"> <item row="4" column="0" colspan="2">
<widget class="QCheckBox" name="m_cbDownloadOnlyUnreadMessages"> <widget class="QCheckBox" name="m_cbDownloadOnlyUnreadMessages">
<property name="text"> <property name="text">
<string>Download only unread messages</string> <string>Download unread articles only</string>
</property> </property>
</widget> </widget>
</item> </item>
</layout> </layout>
</widget> </widget>
<customwidgets> <customwidgets>
<customwidget>
<class>LineEditWithStatus</class>
<extends>QWidget</extends>
<header>lineeditwithstatus.h</header>
<container>1</container>
</customwidget>
<customwidget> <customwidget>
<class>LabelWithStatus</class> <class>LabelWithStatus</class>
<extends>QWidget</extends> <extends>QWidget</extends>
<header>labelwithstatus.h</header> <header>labelwithstatus.h</header>
<container>1</container> <container>1</container>
</customwidget> </customwidget>
<customwidget>
<class>LineEditWithStatus</class>
<extends>QWidget</extends>
<header>lineeditwithstatus.h</header>
<container>1</container>
</customwidget>
<customwidget> <customwidget>
<class>MessageCountSpinBox</class> <class>MessageCountSpinBox</class>
<extends>QSpinBox</extends> <extends>QSpinBox</extends>

View file

@ -120,7 +120,7 @@
<item> <item>
<widget class="QLabel" name="label"> <widget class="QLabel" name="label">
<property name="text"> <property name="text">
<string>Only download newest X messages per feed</string> <string>Only download newest X articles per feed</string>
</property> </property>
<property name="buddy"> <property name="buddy">
<cstring>m_spinLimitMessages</cstring> <cstring>m_spinLimitMessages</cstring>
@ -186,25 +186,25 @@
<item row="2" column="0" colspan="2"> <item row="2" column="0" colspan="2">
<widget class="QCheckBox" name="m_cbDownloadOnlyUnreadMessages"> <widget class="QCheckBox" name="m_cbDownloadOnlyUnreadMessages">
<property name="text"> <property name="text">
<string>Download only unread messages</string> <string>Download unread articles only</string>
</property> </property>
</widget> </widget>
</item> </item>
</layout> </layout>
</widget> </widget>
<customwidgets> <customwidgets>
<customwidget>
<class>LineEditWithStatus</class>
<extends>QWidget</extends>
<header>lineeditwithstatus.h</header>
<container>1</container>
</customwidget>
<customwidget> <customwidget>
<class>LabelWithStatus</class> <class>LabelWithStatus</class>
<extends>QWidget</extends> <extends>QWidget</extends>
<header>labelwithstatus.h</header> <header>labelwithstatus.h</header>
<container>1</container> <container>1</container>
</customwidget> </customwidget>
<customwidget>
<class>LineEditWithStatus</class>
<extends>QWidget</extends>
<header>lineeditwithstatus.h</header>
<container>1</container>
</customwidget>
<customwidget> <customwidget>
<class>MessageCountSpinBox</class> <class>MessageCountSpinBox</class>
<extends>QSpinBox</extends> <extends>QSpinBox</extends>

View file

@ -31,7 +31,7 @@
<item row="1" column="0" colspan="2"> <item row="1" column="0" colspan="2">
<widget class="QCheckBox" name="m_checkDownloadOnlyUnreadMessages"> <widget class="QCheckBox" name="m_checkDownloadOnlyUnreadMessages">
<property name="text"> <property name="text">
<string>Download only unread messages</string> <string>Download unread articles only</string>
</property> </property>
</widget> </widget>
</item> </item>
@ -40,7 +40,7 @@
<item> <item>
<widget class="QLabel" name="label"> <widget class="QLabel" name="label">
<property name="text"> <property name="text">
<string>Only download newest X messages per feed</string> <string>Only download newest X articles per feed</string>
</property> </property>
<property name="buddy"> <property name="buddy">
<cstring>m_spinLimitMessages</cstring> <cstring>m_spinLimitMessages</cstring>
@ -180,18 +180,18 @@
</layout> </layout>
</widget> </widget>
<customwidgets> <customwidgets>
<customwidget>
<class>LineEditWithStatus</class>
<extends>QWidget</extends>
<header>lineeditwithstatus.h</header>
<container>1</container>
</customwidget>
<customwidget> <customwidget>
<class>LabelWithStatus</class> <class>LabelWithStatus</class>
<extends>QWidget</extends> <extends>QWidget</extends>
<header>labelwithstatus.h</header> <header>labelwithstatus.h</header>
<container>1</container> <container>1</container>
</customwidget> </customwidget>
<customwidget>
<class>LineEditWithStatus</class>
<extends>QWidget</extends>
<header>lineeditwithstatus.h</header>
<container>1</container>
</customwidget>
<customwidget> <customwidget>
<class>MessageCountSpinBox</class> <class>MessageCountSpinBox</class>
<extends>QSpinBox</extends> <extends>QSpinBox</extends>

View file

@ -100,14 +100,14 @@
<item row="1" column="1"> <item row="1" column="1">
<widget class="QPushButton" name="m_btnCheckAllItems"> <widget class="QPushButton" name="m_btnCheckAllItems">
<property name="text"> <property name="text">
<string>&amp;Check all items</string> <string>&amp;Check all feeds</string>
</property> </property>
</widget> </widget>
</item> </item>
<item row="1" column="2"> <item row="1" column="2">
<widget class="QPushButton" name="m_btnUncheckAllItems"> <widget class="QPushButton" name="m_btnUncheckAllItems">
<property name="text"> <property name="text">
<string>&amp;Uncheck all items</string> <string>&amp;Uncheck all feeds</string>
</property> </property>
</widget> </widget>
</item> </item>
@ -158,7 +158,7 @@
<item> <item>
<widget class="QGroupBox" name="groupBox"> <widget class="QGroupBox" name="groupBox">
<property name="title"> <property name="title">
<string>Operation results</string> <string>Operation result</string>
</property> </property>
<layout class="QFormLayout" name="formLayout_2"> <layout class="QFormLayout" name="formLayout_2">
<property name="leftMargin"> <property name="leftMargin">

View file

@ -17,7 +17,7 @@
<item row="0" column="0"> <item row="0" column="0">
<widget class="QLabel" name="m_lblParentCategory"> <widget class="QLabel" name="m_lblParentCategory">
<property name="text"> <property name="text">
<string>Parent category</string> <string>Parent folder</string>
</property> </property>
<property name="buddy"> <property name="buddy">
<cstring>m_cmbParentCategory</cstring> <cstring>m_cmbParentCategory</cstring>

View file

@ -44,7 +44,7 @@
<item row="1" column="0" colspan="2"> <item row="1" column="0" colspan="2">
<widget class="QCheckBox" name="m_checkDownloadOnlyUnreadMessages"> <widget class="QCheckBox" name="m_checkDownloadOnlyUnreadMessages">
<property name="text"> <property name="text">
<string>Download only unread messages</string> <string>Download unread articles only</string>
</property> </property>
</widget> </widget>
</item> </item>
@ -53,7 +53,7 @@
<item> <item>
<widget class="QLabel" name="label"> <widget class="QLabel" name="label">
<property name="text"> <property name="text">
<string>Only download newest X messages per feed</string> <string>Only download newest X articles per feed</string>
</property> </property>
<property name="buddy"> <property name="buddy">
<cstring>m_spinLimitMessages</cstring> <cstring>m_spinLimitMessages</cstring>
@ -234,18 +234,18 @@
</layout> </layout>
</widget> </widget>
<customwidgets> <customwidgets>
<customwidget>
<class>LineEditWithStatus</class>
<extends>QWidget</extends>
<header>lineeditwithstatus.h</header>
<container>1</container>
</customwidget>
<customwidget> <customwidget>
<class>LabelWithStatus</class> <class>LabelWithStatus</class>
<extends>QWidget</extends> <extends>QWidget</extends>
<header>labelwithstatus.h</header> <header>labelwithstatus.h</header>
<container>1</container> <container>1</container>
</customwidget> </customwidget>
<customwidget>
<class>LineEditWithStatus</class>
<extends>QWidget</extends>
<header>lineeditwithstatus.h</header>
<container>1</container>
</customwidget>
<customwidget> <customwidget>
<class>MessageCountSpinBox</class> <class>MessageCountSpinBox</class>
<extends>QSpinBox</extends> <extends>QSpinBox</extends>

View file

@ -17,7 +17,7 @@
<item row="0" column="0"> <item row="0" column="0">
<widget class="QLabel" name="m_lblParentCategory"> <widget class="QLabel" name="m_lblParentCategory">
<property name="text"> <property name="text">
<string>Parent category</string> <string>Parent folder</string>
</property> </property>
<property name="buddy"> <property name="buddy">
<cstring>m_cmbParentCategory</cstring> <cstring>m_cmbParentCategory</cstring>