mirror of
https://github.com/martinrotter/rssguard.git
synced 2025-01-27 15:49:47 +01:00
Clarification of some used words/terms.
This commit is contained in:
parent
d80942966c
commit
034cc77c26
@ -83,6 +83,7 @@
|
||||
<file>./graphics/Numix/22/actions/document-properties.svg</file>
|
||||
<file>./graphics/Numix/22/actions/document-revert.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-copy.svg</file>
|
||||
<file>./graphics/Numix/22/actions/format-indent-more.svg</file>
|
||||
|
@ -503,9 +503,9 @@ void FormMain::setupIcons() {
|
||||
// Feeds/messages.
|
||||
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_actionUpdateAllItems->setIcon(icon_theme_factory->fromTheme(QSL("view-refresh")));
|
||||
m_ui->m_actionUpdateSelectedItems->setIcon(icon_theme_factory->fromTheme(QSL("view-refresh")));
|
||||
m_ui->m_actionUpdateSelectedItemsWithCustomTimers->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("download")));
|
||||
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_actionClearAllItems->setIcon(icon_theme_factory->fromTheme(QSL("mail-mark-junk")));
|
||||
m_ui->m_actionDeleteSelectedItem->setIcon(icon_theme_factory->fromTheme(QSL("list-remove")));
|
||||
|
@ -246,7 +246,7 @@
|
||||
</action>
|
||||
<action name="m_actionUpdateAllItems">
|
||||
<property name="text">
|
||||
<string>Update &all items</string>
|
||||
<string>&Download all new messages</string>
|
||||
</property>
|
||||
<property name="shortcut">
|
||||
<string notr="true">Ctrl+Shift+U</string>
|
||||
@ -254,7 +254,7 @@
|
||||
</action>
|
||||
<action name="m_actionUpdateSelectedItems">
|
||||
<property name="text">
|
||||
<string>Update &selected items</string>
|
||||
<string>Download messages for &selected items</string>
|
||||
</property>
|
||||
<property name="shortcut">
|
||||
<string notr="true">Ctrl+U</string>
|
||||
@ -704,7 +704,7 @@
|
||||
</action>
|
||||
<action name="m_actionStopRunningItemsUpdate">
|
||||
<property name="text">
|
||||
<string>Stop running update</string>
|
||||
<string>Stop ongoing downloading of messages</string>
|
||||
</property>
|
||||
<property name="shortcut">
|
||||
<string notr="true"/>
|
||||
@ -774,7 +774,7 @@
|
||||
</action>
|
||||
<action name="m_actionUpdateSelectedItemsWithCustomTimers">
|
||||
<property name="text">
|
||||
<string>Update items with custom &timers</string>
|
||||
<string>Download messages for items with &custom auto-update policy</string>
|
||||
</property>
|
||||
</action>
|
||||
<action name="m_actionAlternateColorsInLists">
|
||||
|
@ -83,7 +83,7 @@ QList<QAction*> ServiceRoot::contextMenuMessagesList(const QList<Message>& messa
|
||||
QList<QAction*> ServiceRoot::serviceMenu() {
|
||||
if (m_serviceMenu.isEmpty()) {
|
||||
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);
|
||||
m_serviceMenu.append(act_sync_tree);
|
||||
|
@ -64,7 +64,7 @@ void FormTtRssFeedDetails::apply() {
|
||||
// Feed was added online.
|
||||
accept();
|
||||
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);
|
||||
QTimer::singleShot(300, root, &TtRssServiceRoot::syncIn);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user