[Xfce4-commits] <postler:master> Use Mark Important and Mark Unread for according actions
Christian Dywan
noreply at xfce.org
Sat Nov 6 01:16:01 CET 2010
Updating branch refs/heads/master
to a102caa4a8fb4f809386f50eb46046636f7020f6 (commit)
from 32b011cb64dcd7806eb9dac77a799f24ebd5fa42 (commit)
commit a102caa4a8fb4f809386f50eb46046636f7020f6
Author: Daniel P. Fore <Daniel.P.Fore at gmail.com>
Date: Sat Nov 6 01:14:52 2010 +0100
Use Mark Important and Mark Unread for according actions
postler/postler-app.vala | 4 ++++
postler/postler-bureau.vala | 4 ++--
2 files changed, 6 insertions(+), 2 deletions(-)
diff --git a/postler/postler-app.vala b/postler/postler-app.vala
index 7ab373d..1dbf2b6 100644
--- a/postler/postler-app.vala
+++ b/postler/postler-app.vala
@@ -26,6 +26,8 @@ namespace Postler {
const string STOCK_MAIL_FORWARDED = "mail-forwarded";
const string STOCK_MAIL_SEND = "stock_mail-send";
const string STOCK_MAIL_SEND_RECEIVE = "mail-send-receive";
+ const string STOCK_MAIL_MARK_IMPORTANT = "mail-mark-important";
+ const string STOCK_MAIL_MARK_UNREAD = "mail-mark-unread";
const string STOCK_MAIL_MESSAGE_NEW = "mail-message-new";
const string STOCK_MAIL_REPLIED = "mail-replied";
const string STOCK_MAIL_REPLY_SENDER = "mail-reply-sender";
@@ -62,6 +64,8 @@ public class Postler.App : Unique.App {
{ STOCK_MAIL_ATTACHMENT, null, 0, 0, "stock_attach" },
{ STOCK_MAIL_FORWARD, N_("_Forward") },
{ STOCK_MAIL_FORWARDED, "mail-forwarded", 0, 0, STOCK_MAIL_FORWARD },
+ { STOCK_MAIL_MARK_IMPORTANT, null, 0, 0, Gtk.STOCK_NEW },
+ { STOCK_MAIL_MARK_UNREAD, null, 0, 0, STOCK_EMBLEM_IMPORTANT },
{ STOCK_MAIL_MESSAGE_NEW, N_("New _Message") },
{ STOCK_MAIL_REPLIED, "mail-replied", 0, 0, STOCK_MAIL_REPLY_SENDER },
{ STOCK_MAIL_REPLY_SENDER, N_("Reply To _Sender") },
diff --git a/postler/postler-bureau.vala b/postler/postler-bureau.vala
index 8e0446f..2658c6a 100644
--- a/postler/postler-bureau.vala
+++ b/postler/postler-bureau.vala
@@ -335,9 +335,9 @@ public class Postler.Bureau : Gtk.Window {
N_("Reply to all recipients"), action_message_reply_all },
{ "MessageForward", STOCK_MAIL_FORWARD, null, "<Ctrl>f",
N_("Forward message"), action_message_forward },
- { "MessageUnread", Gtk.STOCK_NEW, null, "<Ctrl>u",
+ { "MessageUnread", STOCK_MAIL_MARK_UNREAD, null, "<Ctrl>u",
N_("Mark message as unread"), action_message_unread },
- { "MessageFlag", STOCK_EMBLEM_IMPORTANT, null, "<Ctrl>t",
+ { "MessageFlag", STOCK_MAIL_MARK_IMPORTANT, null, "<Ctrl>t",
N_("Flag message"), action_flag },
{ "MessageArchive", STOCK_ARCHIVE, null, "<Ctrl>e",
N_("Archive message"), action_archive },
More information about the Xfce4-commits
mailing list