instructions for inbox and outbox

darcs-hash:20080916200703-84dde-4984552dfc6865f6660d45670af6e3dc56395ff5.gz
This commit is contained in:
Evan Prodromou 2008-09-16 16:07:03 -04:00
parent 56e9f7894d
commit 827fdc63a0
2 changed files with 9 additions and 0 deletions

View File

@ -47,4 +47,8 @@ class InboxAction extends MailboxAction {
function get_message_profile($message) {
return $message->getFrom();
}
function get_instructions() {
return _('This is your inbox, which lists your incoming private messages.');
}
}

View File

@ -47,4 +47,9 @@ class OutboxAction extends MailboxAction {
function get_message_profile($message) {
return $message->getTo();
}
function get_instructions() {
return _('This is your outbox, which lists private messages you have sent.');
}
}