Update translator documentation.

Whitespace updates.
L10n/i18n updates.
This commit is contained in:
Siebrand Mazeland
2011-04-07 22:25:16 +02:00
parent 2640232c68
commit a9eaaf6341
4 changed files with 69 additions and 20 deletions

View File

@@ -29,7 +29,6 @@ if (!defined('STATUSNET')) {
*/
class ExtendedProfilePlugin extends Plugin
{
function onPluginVersion(&$versions)
{
$versions[] = array(
@@ -37,8 +36,8 @@ class ExtendedProfilePlugin extends Plugin
'version' => STATUSNET_VERSION,
'author' => 'Brion Vibber, Samantha Doherty, Zach Copley',
'homepage' => 'http://status.net/wiki/Plugin:ExtendedProfile',
'rawdescription' => _m(
'UI extensions for additional profile fields.')
// TRANS: Plugin description.
'rawdescription' => _m('UI extensions for additional profile fields.')
);
return true;
@@ -120,9 +119,9 @@ class ExtendedProfilePlugin extends Plugin
$user = User::staticGet('id', $profile->id);
if ($user) {
$url = common_local_url('profiledetail', array('nickname' => $user->nickname));
// TRANS: Link text on user profile page leading to extended profile page.
$out->element('a', array('href' => $url, 'class' => 'profiledetail'), _m('More details...'));
}
return true;
}
}