]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
instructions for inbox and outbox
authorEvan Prodromou <evan@prodromou.name>
Tue, 16 Sep 2008 20:07:03 +0000 (16:07 -0400)
committerEvan Prodromou <evan@prodromou.name>
Tue, 16 Sep 2008 20:07:03 +0000 (16:07 -0400)
darcs-hash:20080916200703-84dde-4984552dfc6865f6660d45670af6e3dc56395ff5.gz

actions/inbox.php
actions/outbox.php

index 73155efd7a77f5c26a64f303888e37e15d705b8a..6e38c80643e1e804b451be1b050e8b38b8cca7f5 100644 (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.');
+       }
 }
index b09cd203278e325537385f5a76a7fbf3dfab6825..5fdd43ddc0d6ac6e130a5d8e56f736b4356d3929 100644 (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.');
+       }
+       
 }