summaryrefslogtreecommitdiff
path: root/plugins/Facebook/FBConnectSettings.php
diff options
context:
space:
mode:
authorSiebrand Mazeland <s.mazeland@xs4all.nl>2010-09-19 16:32:19 +0200
committerSiebrand Mazeland <s.mazeland@xs4all.nl>2010-09-19 16:32:19 +0200
commit74785c64f86293a1e81ae8497cc88172fc30ef1b (patch)
treea700653453177c0f1fee7e89c1a7b85aabeb61ed /plugins/Facebook/FBConnectSettings.php
parentecafae84728e05387f3e488b36e583dec9ee3e2b (diff)
* L10n i18n update
* add translator hints * update whitespace * added a bunch of @todos.
Diffstat (limited to 'plugins/Facebook/FBConnectSettings.php')
-rw-r--r--plugins/Facebook/FBConnectSettings.php8
1 files changed, 5 insertions, 3 deletions
diff --git a/plugins/Facebook/FBConnectSettings.php b/plugins/Facebook/FBConnectSettings.php
index ee0b7d13c..701994d0d 100644
--- a/plugins/Facebook/FBConnectSettings.php
+++ b/plugins/Facebook/FBConnectSettings.php
@@ -42,7 +42,6 @@ require_once INSTALLDIR.'/lib/connectsettingsaction.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 FBConnectSettingsAction extends ConnectSettingsAction
{
/**
@@ -52,6 +51,7 @@ class FBConnectSettingsAction extends ConnectSettingsAction
*/
function title()
{
+ // TRANS: Page title.
return _m('Facebook Connect Settings');
}
@@ -62,6 +62,7 @@ class FBConnectSettingsAction extends ConnectSettingsAction
*/
function getInstructions()
{
+ // TRANS: Instructions.
return _m('Manage how your account connects to Facebook');
}
@@ -113,6 +114,7 @@ class FBConnectSettingsAction extends ConnectSettingsAction
$this->elementStart('fieldset');
+ // TRANS: Legend.
$this->element('legend', null, _m('Disconnect my account from Facebook'));
if (!$user->password) {
@@ -139,7 +141,8 @@ class FBConnectSettingsAction extends ConnectSettingsAction
$this->element('p', 'instructions',
sprintf($note, $site, $site));
- $this->submit('disconnect', _m('Disconnect'));
+ // TRANS: Submit button.
+ $this->submit('disconnect', _m('BUTTON','Disconnect'));
}
$this->elementEnd('fieldset');
@@ -196,6 +199,5 @@ class FBConnectSettingsAction extends ConnectSettingsAction
$this->showForm(_m('Not sure what you\'re trying to do.'));
return;
}
-
}
}