This commit is contained in:
Martin Rotter 2013-11-26 22:03:01 +01:00
parent ec5f717f5d
commit 91d99cb58e
3 changed files with 39 additions and 6 deletions

View File

@ -44,7 +44,6 @@
#define APP_CFG_CUTS "keyboard"
#define APP_CFG_BROWSER "browser"
#define APP_HTML_MARKUP "styled_pattern.html"
#define APP_PREFIX "@CMAKE_INSTALL_PREFIX@"
#define APP_REVISION "@APP_REVISION@"

View File

@ -186,7 +186,7 @@
<string>Add tab</string>
</property>
<property name="shortcut">
<string>Ctrl+Shift+T</string>
<string notr="true">Ctrl+Shift+T</string>
</property>
</action>
<action name="m_actionCloseAllTabs">
@ -197,7 +197,7 @@
<string>Close all tabs except current one</string>
</property>
<property name="shortcut">
<string>Ctrl+Shift+O</string>
<string notr="true">Ctrl+Shift+O</string>
</property>
</action>
<action name="m_actionCloseCurrentTab">
@ -205,7 +205,7 @@
<string>Close current &amp;tab</string>
</property>
<property name="shortcut">
<string>Ctrl+Shift+C</string>
<string notr="true">Ctrl+Shift+C</string>
</property>
</action>
<action name="m_actionNoActions">
@ -229,6 +229,9 @@
<property name="toolTip">
<string>Update all feeds.</string>
</property>
<property name="shortcut">
<string notr="true"/>
</property>
</action>
<action name="m_actionUpdateSelectedFeeds">
<property name="text">
@ -237,6 +240,9 @@
<property name="toolTip">
<string>Update selected feeds/categories.</string>
</property>
<property name="shortcut">
<string notr="true"/>
</property>
</action>
<action name="m_actionEditSelectedFeed">
<property name="text">
@ -245,6 +251,9 @@
<property name="toolTip">
<string>Edit selected feed/category.</string>
</property>
<property name="shortcut">
<string notr="true"/>
</property>
</action>
<action name="m_actionDeleteSelectedFeeds">
<property name="text">
@ -253,6 +262,9 @@
<property name="toolTip">
<string>Delete selected feeds/categories.</string>
</property>
<property name="shortcut">
<string notr="true"/>
</property>
</action>
<action name="m_actionMarkSelectedMessagesAsRead">
<property name="text">
@ -261,6 +273,9 @@
<property name="toolTip">
<string>Mark selected messages as read.</string>
</property>
<property name="shortcut">
<string notr="true"/>
</property>
</action>
<action name="m_actionMarkSelectedMessagesAsUnread">
<property name="text">
@ -269,6 +284,9 @@
<property name="toolTip">
<string>Mark selected messages as unread.</string>
</property>
<property name="shortcut">
<string notr="true"/>
</property>
</action>
<action name="m_actionSwitchImportanceOfSelectedMessages">
<property name="text">
@ -277,31 +295,49 @@
<property name="toolTip">
<string>Switch importance of selected messages.</string>
</property>
<property name="shortcut">
<string notr="true"/>
</property>
</action>
<action name="m_actionMarkFeedsAsRead">
<property name="text">
<string>Mark selected as read</string>
</property>
<property name="shortcut">
<string notr="true"/>
</property>
</action>
<action name="m_actionMarkAllMessagesAsRead">
<property name="text">
<string>Mark &amp;all messages read</string>
</property>
<property name="shortcut">
<string notr="true"/>
</property>
</action>
<action name="m_actionMarkAllMessagesAsUnread">
<property name="text">
<string>Mark a&amp;ll messages unread</string>
</property>
<property name="shortcut">
<string notr="true"/>
</property>
</action>
<action name="m_actionDeleteSelectedMessages">
<property name="text">
<string>&amp;Delete selected messages</string>
</property>
<property name="shortcut">
<string notr="true"/>
</property>
</action>
<action name="m_actionDeleteAllMessages">
<property name="text">
<string>Dele&amp;te all messages</string>
</property>
<property name="shortcut">
<string notr="true"/>
</property>
</action>
</widget>
<customwidgets>

View File

@ -27,7 +27,6 @@ FormSettings::FormSettings(QWidget *parent) : QDialog(parent), m_ui(new Ui::Form
// Setup behavior.
m_ui->m_treeLanguages->setColumnCount(5);
m_ui->m_treeLanguages->setHeaderHidden(false);
m_ui->m_treeLanguages->setHeaderLabels(QStringList()
<< tr("Language")
<< tr("Code")
@ -37,7 +36,6 @@ FormSettings::FormSettings(QWidget *parent) : QDialog(parent), m_ui(new Ui::Form
m_ui->m_treeSkins->setColumnCount(4);
m_ui->m_treeSkins->setHeaderHidden(false);
m_ui->m_treeSkins->setHeaderLabels(QStringList()
<< tr("Name")
<< tr("Version")