]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Add content for all 3 Send buttons (2 are the same as far as I can tell)
authorSiebrand Mazeland <s.mazeland@xs4all.nl>
Mon, 1 Mar 2010 14:57:27 +0000 (15:57 +0100)
committerSiebrand Mazeland <s.mazeland@xs4all.nl>
Mon, 1 Mar 2010 14:57:27 +0000 (15:57 +0100)
actions/invite.php
lib/messageform.php
lib/noticeform.php

index f4a44da1c9aefa904a1249672a9f762b7fb03dd9..848607f96aff4941a38d68f998e90e419a2ff794 100644 (file)
@@ -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');
     }
index 0c568e1bd8e12983f94904e2b9d8408926585359..b116964da9d95e9200466f45f4674eeb6579787f 100644 (file)
@@ -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')));
     }
 }
index 62df5c94100c6b2db4b7d1a2a7386b5653f86e74..7278c41a9cf2640323e34430c79c7118d3e6b8e7 100644 (file)
@@ -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')));
     }
 }