Clarification of some used words/terms.

This commit is contained in:
Martin Rotter 2020-12-17 15:10:50 +01:00
parent d80942966c
commit 034cc77c26
5 changed files with 10 additions and 9 deletions

View File

@ -83,6 +83,7 @@
<file>./graphics/Numix/22/actions/document-properties.svg</file> <file>./graphics/Numix/22/actions/document-properties.svg</file>
<file>./graphics/Numix/22/actions/document-revert.svg</file> <file>./graphics/Numix/22/actions/document-revert.svg</file>
<file>./graphics/Numix/22/actions/down.svg</file> <file>./graphics/Numix/22/actions/down.svg</file>
<file>./graphics/Numix/22/actions/download.svg</file>
<file>./graphics/Numix/22/actions/edit-clear.svg</file> <file>./graphics/Numix/22/actions/edit-clear.svg</file>
<file>./graphics/Numix/22/actions/edit-copy.svg</file> <file>./graphics/Numix/22/actions/edit-copy.svg</file>
<file>./graphics/Numix/22/actions/format-indent-more.svg</file> <file>./graphics/Numix/22/actions/format-indent-more.svg</file>

View File

@ -503,9 +503,9 @@ void FormMain::setupIcons() {
// Feeds/messages. // Feeds/messages.
m_ui->m_menuAddItem->setIcon(icon_theme_factory->fromTheme(QSL("list-add"))); m_ui->m_menuAddItem->setIcon(icon_theme_factory->fromTheme(QSL("list-add")));
m_ui->m_actionStopRunningItemsUpdate->setIcon(icon_theme_factory->fromTheme(QSL("process-stop"))); m_ui->m_actionStopRunningItemsUpdate->setIcon(icon_theme_factory->fromTheme(QSL("process-stop")));
m_ui->m_actionUpdateAllItems->setIcon(icon_theme_factory->fromTheme(QSL("view-refresh"))); m_ui->m_actionUpdateAllItems->setIcon(icon_theme_factory->fromTheme(QSL("download")));
m_ui->m_actionUpdateSelectedItems->setIcon(icon_theme_factory->fromTheme(QSL("view-refresh"))); m_ui->m_actionUpdateSelectedItems->setIcon(icon_theme_factory->fromTheme(QSL("download")));
m_ui->m_actionUpdateSelectedItemsWithCustomTimers->setIcon(icon_theme_factory->fromTheme(QSL("view-refresh"))); m_ui->m_actionUpdateSelectedItemsWithCustomTimers->setIcon(icon_theme_factory->fromTheme(QSL("download")));
m_ui->m_actionClearSelectedItems->setIcon(icon_theme_factory->fromTheme(QSL("mail-mark-junk"))); m_ui->m_actionClearSelectedItems->setIcon(icon_theme_factory->fromTheme(QSL("mail-mark-junk")));
m_ui->m_actionClearAllItems->setIcon(icon_theme_factory->fromTheme(QSL("mail-mark-junk"))); m_ui->m_actionClearAllItems->setIcon(icon_theme_factory->fromTheme(QSL("mail-mark-junk")));
m_ui->m_actionDeleteSelectedItem->setIcon(icon_theme_factory->fromTheme(QSL("list-remove"))); m_ui->m_actionDeleteSelectedItem->setIcon(icon_theme_factory->fromTheme(QSL("list-remove")));

View File

@ -246,7 +246,7 @@
</action> </action>
<action name="m_actionUpdateAllItems"> <action name="m_actionUpdateAllItems">
<property name="text"> <property name="text">
<string>Update &amp;all items</string> <string>&amp;Download all new messages</string>
</property> </property>
<property name="shortcut"> <property name="shortcut">
<string notr="true">Ctrl+Shift+U</string> <string notr="true">Ctrl+Shift+U</string>
@ -254,7 +254,7 @@
</action> </action>
<action name="m_actionUpdateSelectedItems"> <action name="m_actionUpdateSelectedItems">
<property name="text"> <property name="text">
<string>Update &amp;selected items</string> <string>Download messages for &amp;selected items</string>
</property> </property>
<property name="shortcut"> <property name="shortcut">
<string notr="true">Ctrl+U</string> <string notr="true">Ctrl+U</string>
@ -704,7 +704,7 @@
</action> </action>
<action name="m_actionStopRunningItemsUpdate"> <action name="m_actionStopRunningItemsUpdate">
<property name="text"> <property name="text">
<string>Stop running update</string> <string>Stop ongoing downloading of messages</string>
</property> </property>
<property name="shortcut"> <property name="shortcut">
<string notr="true"/> <string notr="true"/>
@ -774,7 +774,7 @@
</action> </action>
<action name="m_actionUpdateSelectedItemsWithCustomTimers"> <action name="m_actionUpdateSelectedItemsWithCustomTimers">
<property name="text"> <property name="text">
<string>Update items with custom &amp;timers</string> <string>Download messages for items with &amp;custom auto-update policy</string>
</property> </property>
</action> </action>
<action name="m_actionAlternateColorsInLists"> <action name="m_actionAlternateColorsInLists">

View File

@ -83,7 +83,7 @@ QList<QAction*> ServiceRoot::contextMenuMessagesList(const QList<Message>& messa
QList<QAction*> ServiceRoot::serviceMenu() { QList<QAction*> ServiceRoot::serviceMenu() {
if (m_serviceMenu.isEmpty()) { if (m_serviceMenu.isEmpty()) {
if (isSyncable()) { if (isSyncable()) {
auto* act_sync_tree = new QAction(qApp->icons()->fromTheme(QSL("view-refresh")), tr("Sync in"), this); auto* act_sync_tree = new QAction(qApp->icons()->fromTheme(QSL("view-refresh")), tr("Synchronize folders && other items"), this);
connect(act_sync_tree, &QAction::triggered, this, &ServiceRoot::syncIn); connect(act_sync_tree, &QAction::triggered, this, &ServiceRoot::syncIn);
m_serviceMenu.append(act_sync_tree); m_serviceMenu.append(act_sync_tree);

View File

@ -64,7 +64,7 @@ void FormTtRssFeedDetails::apply() {
// Feed was added online. // Feed was added online.
accept(); accept();
qApp->showGuiMessage(tr("Feed added"), qApp->showGuiMessage(tr("Feed added"),
tr("Feed was added, triggering sync in now."), tr("Feed was added, obtaining new tree of feeds now."),
QSystemTrayIcon::MessageIcon::Information); QSystemTrayIcon::MessageIcon::Information);
QTimer::singleShot(300, root, &TtRssServiceRoot::syncIn); QTimer::singleShot(300, root, &TtRssServiceRoot::syncIn);
} }