X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=lib%2Finviteform.php;h=364ca75b9b32217b05ff245e195286ca6f9db1c2;hb=refs%2Fheads%2Fupstream-changes%2Fgoogle-analytics-removal;hp=da23d312641cb70e8104c982854b8d28676b806a;hpb=37cf7c0e8ccaffb11b743da45eaea4a2897bad94;p=quix0rs-gnu-social.git diff --git a/lib/inviteform.php b/lib/inviteform.php index da23d31264..364ca75b9b 100644 --- a/lib/inviteform.php +++ b/lib/inviteform.php @@ -41,7 +41,6 @@ require_once INSTALLDIR . '/lib/form.php'; * @author Zach Copley * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ - * */ class InviteForm extends Form { @@ -95,21 +94,21 @@ class InviteForm extends Form { $this->out->elementStart('ul', 'form_data'); $this->out->elementStart('li'); - // TRANS: Field label for a list of e-mail addresses. $this->out->textarea( 'addresses', + // TRANS: Field label for a list of e-mail addresses. _('Email addresses'), $this->out->trimmed('addresses'), - // TRANS: Tooltip for field label for a list of e-mail addresses. + // TRANS: Field title for a list of e-mail addresses. _('Addresses of friends to invite (one per line).') ); $this->out->elementEnd('li'); $this->out->elementStart('li'); - // TRANS: Field label for a personal message to send to invitees. $this->out->textarea( + // TRANS: Field label for a personal message to send to invitees. 'personal', _('Personal message'), $this->out->trimmed('personal'), - // TRANS: Tooltip for field label for a personal message to send to invitees. + // TRANS: Field title for a personal message to send to invitees. _('Optionally add a personal message to the invitation.') ); $this->out->elementEnd('li'); @@ -123,13 +122,13 @@ class InviteForm extends Form */ function formActions() { - // TRANS: Send button for inviting friends $this->out->submit( 'send', + // TRANS: Send button for inviting friends _m('BUTTON','Send'), 'submit form_action-primary', - // TRANS: Submit button title. 'send', - _('Send') + // TRANS: Submit button title. + _('Send invitations.') ); } }