X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=plugins%2FGroupPrivateMessage%2Fgroupmessageform.php;h=c33e4b25a29bd4ca5554f7a68e86832c95581b27;hb=f79aec36feaa4760201a7e88d5b31513a3c458ba;hp=6d440961230d727ad2f7e9a72f8fe60f058ec3c6;hpb=1e73ba00bdd37f46415eb45b1b904dc894fb801c;p=quix0rs-gnu-social.git diff --git a/plugins/GroupPrivateMessage/groupmessageform.php b/plugins/GroupPrivateMessage/groupmessageform.php index 6d44096123..c33e4b25a2 100644 --- a/plugins/GroupPrivateMessage/groupmessageform.php +++ b/plugins/GroupPrivateMessage/groupmessageform.php @@ -4,7 +4,7 @@ * Copyright (C) 2011, StatusNet, Inc. * * Form for posting a group message - * + * * PHP version 5 * * This program is free software: you can redistribute it and/or modify @@ -44,7 +44,6 @@ if (!defined('STATUSNET')) { * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 * @link http://status.net/ */ - class GroupMessageForm extends Form { var $group; @@ -58,7 +57,6 @@ class GroupMessageForm extends Form * * @todo add a drop-down list to post to any group */ - function __construct($out, $group, $content=null) { parent::__construct($out); @@ -71,7 +69,7 @@ class GroupMessageForm extends Form * Action for the form */ function action() - { + { return common_local_url('newgroupmessage', array('nickname' => $this->group->nickname)); } @@ -87,6 +85,7 @@ class GroupMessageForm extends Form { $this->out->element('legend', null, + // TRANS: Form legend for sending private message to group %s. sprintf(_m('Message to %s'), $this->group->nickname)); } @@ -97,7 +96,6 @@ class GroupMessageForm extends Form * * @return */ - function id() { return 'form_notice-group-message'; @@ -110,7 +108,6 @@ class GroupMessageForm extends Form * * @return */ - function formClass() { return 'form_notice'; @@ -123,11 +120,11 @@ class GroupMessageForm extends Form * * @return */ - function formData() { $this->out->element('label', array('for' => 'notice_data-text', 'id' => 'notice_data-text-label'), + // TRANS: Field label for private group message to group %s. sprintf(_m('Direct message to %s'), $this->group->nickname)); $this->out->element('textarea', array('id' => 'notice_data-text', @@ -140,6 +137,7 @@ class GroupMessageForm extends Form if ($contentLimit > 0) { $this->out->elementStart('dl', 'form_note'); + // TRANS: Indicator for number of chatacters still available for notice. $this->out->element('dt', null, _m('Available characters')); $this->out->element('dd', array('class' => 'count'), $contentLimit); @@ -154,13 +152,13 @@ class GroupMessageForm extends Form * * @return */ - function formActions() { $this->out->element('input', array('id' => 'notice_action-submit', 'class' => 'submit', 'name' => 'message_send', 'type' => 'submit', + // TRANS: Send button text for sending private group notice. 'value' => _m('Send button for sending notice', 'Send'))); } }