Add content for all 3 Send buttons (2 are the same as far as I can tell)

This commit is contained in:
Siebrand Mazeland 2010-03-01 15:57:27 +01:00
parent 78ea4c711e
commit 63ff9d86b8
3 changed files with 3 additions and 3 deletions

View File

@ -194,7 +194,7 @@ class InviteAction extends CurrentUserDesignAction
_('Optionally add a personal message to the invitation.')); _('Optionally add a personal message to the invitation.'));
$this->elementEnd('li'); $this->elementEnd('li');
$this->elementEnd('ul'); $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('fieldset');
$this->elementEnd('form'); $this->elementEnd('form');
} }

View File

@ -175,6 +175,6 @@ class MessageForm extends Form
'class' => 'submit', 'class' => 'submit',
'name' => 'message_send', 'name' => 'message_send',
'type' => 'submit', 'type' => 'submit',
'value' => _('Send'))); 'value' => _m('Send button for sending notice', 'Send')));
} }
} }

View File

@ -233,6 +233,6 @@ class NoticeForm extends Form
'class' => 'submit', 'class' => 'submit',
'name' => 'status_submit', 'name' => 'status_submit',
'type' => 'submit', 'type' => 'submit',
'value' => _('Send'))); 'value' => _m('Send button for sending notice', 'Send')));
} }
} }