From: Siebrand Mazeland Date: Mon, 1 Mar 2010 14:57:27 +0000 (+0100) Subject: Add content for all 3 Send buttons (2 are the same as far as I can tell) X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=63ff9d86b8ed4fb65ed3f314b66474fd38cb9eb3;p=quix0rs-gnu-social.git Add content for all 3 Send buttons (2 are the same as far as I can tell) --- diff --git a/actions/invite.php b/actions/invite.php index f4a44da1c9..848607f96a 100644 --- a/actions/invite.php +++ b/actions/invite.php @@ -194,7 +194,7 @@ class InviteAction extends CurrentUserDesignAction _('Optionally add a personal message to the invitation.')); $this->elementEnd('li'); $this->elementEnd('ul'); - $this->submit('send', _m('invite button', 'Send')); + $this->submit('send', _m('Send button for inviting friends', 'Send')); $this->elementEnd('fieldset'); $this->elementEnd('form'); } diff --git a/lib/messageform.php b/lib/messageform.php index 0c568e1bd8..b116964da9 100644 --- a/lib/messageform.php +++ b/lib/messageform.php @@ -175,6 +175,6 @@ class MessageForm extends Form 'class' => 'submit', 'name' => 'message_send', 'type' => 'submit', - 'value' => _('Send'))); + 'value' => _m('Send button for sending notice', 'Send'))); } } diff --git a/lib/noticeform.php b/lib/noticeform.php index 62df5c9410..7278c41a9c 100644 --- a/lib/noticeform.php +++ b/lib/noticeform.php @@ -233,6 +233,6 @@ class NoticeForm extends Form 'class' => 'submit', 'name' => 'status_submit', 'type' => 'submit', - 'value' => _('Send'))); + 'value' => _m('Send button for sending notice', 'Send'))); } }