* Ported Gtk.Action to GLib.Action in the GearyController. * Removed Gtk.AccelGroups (handled through Gtk.Application now). * Got rid of Gtk.UiManager (now all is done through Gtk.Builder). * Throw away workaround for conflicting Gtk.Actions in ComposerContainer. * Aggregate zoom in/out/normal into one parameterized zoom action. Signed-off-by: Niels De Graef <nielsdegraef@gmail.com>
40 lines
1.4 KiB
XML
40 lines
1.4 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<interface>
|
|
<menu id="empty_menu">
|
|
<item>
|
|
<attribute name="label" translatable="yes">Empty _Spam…</attribute>
|
|
<attribute name="action">win.empty-spam</attribute>
|
|
</item>
|
|
<item>
|
|
<attribute name="label" translatable="yes">Empty _Trash…</attribute>
|
|
<attribute name="action">win.empty-trash</attribute>
|
|
</item>
|
|
</menu>
|
|
|
|
<menu id="mark_message_menu">
|
|
<item>
|
|
<attribute name="label" translatable="yes">Mark as _Read</attribute>
|
|
<attribute name="action">win.mark-message-read</attribute>
|
|
</item>
|
|
<item>
|
|
<attribute name="label" translatable="yes">Mark as _Unread</attribute>
|
|
<attribute name="action">win.mark-message-unread</attribute>
|
|
</item>
|
|
<item>
|
|
<attribute name="label" translatable="yes">_Star</attribute>
|
|
<attribute name="action">win.mark-message-starred</attribute>
|
|
</item>
|
|
<item>
|
|
<attribute name="label" translatable="yes">U_nstar</attribute>
|
|
<attribute name="action">win.mark-message-unstarred</attribute>
|
|
</item>
|
|
<item>
|
|
<attribute name="label" translatable="yes">Mark as S_pam</attribute>
|
|
<attribute name="action">win.mark-message-spam</attribute>
|
|
</item>
|
|
<item>
|
|
<attribute name="label" translatable="yes">Mark as not S_pam</attribute>
|
|
<attribute name="action">win.mark-message-not-spam</attribute>
|
|
</item>
|
|
</menu>
|
|
</interface>
|