summaryrefslogtreecommitdiff
path: root/plugins/UserFlag/flagprofileform.php
diff options
context:
space:
mode:
authorSiebrand Mazeland <s.mazeland@xs4all.nl>2010-10-02 22:25:32 +0200
committerSiebrand Mazeland <s.mazeland@xs4all.nl>2010-10-02 22:25:32 +0200
commit0f4f6fdb0130aacb0d8c7aa04ddfb76baa1b9e6b (patch)
tree90936c1d8161b9ee64cd7473f831647cfd4f5ee8 /plugins/UserFlag/flagprofileform.php
parent08054e85fe4b47b6d28acb83b4c251be92f12316 (diff)
* i18n/L10n review.
* add onPluginVersion()
Diffstat (limited to 'plugins/UserFlag/flagprofileform.php')
-rw-r--r--plugins/UserFlag/flagprofileform.php11
1 files changed, 4 insertions, 7 deletions
diff --git a/plugins/UserFlag/flagprofileform.php b/plugins/UserFlag/flagprofileform.php
index c20929a20..045c9de85 100644
--- a/plugins/UserFlag/flagprofileform.php
+++ b/plugins/UserFlag/flagprofileform.php
@@ -44,7 +44,6 @@ require_once INSTALLDIR.'/lib/form.php';
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
* @link http://status.net/
*/
-
class FlagProfileForm extends ProfileActionForm
{
/**
@@ -53,7 +52,6 @@ class FlagProfileForm extends ProfileActionForm
*
* @return string class of the form
*/
-
function formClass()
{
return 'form_entity_flag';
@@ -64,7 +62,6 @@ class FlagProfileForm extends ProfileActionForm
*
* @return string Name of the action, lowercased.
*/
-
function target()
{
return 'flagprofile';
@@ -75,10 +72,10 @@ class FlagProfileForm extends ProfileActionForm
*
* @return string Title of the form, internationalized
*/
-
function title()
{
- return _('Flag');
+ // TRANS: Form title for flagging a profile for review.
+ return _m('Flag');
}
/**
@@ -86,9 +83,9 @@ class FlagProfileForm extends ProfileActionForm
*
* @return string description of the form, internationalized
*/
-
function description()
{
- return _('Flag profile for review');
+ // TRANS: Form description.
+ return _m('Flag profile for review.');
}
}